diff --git a/VERSION b/VERSION new file mode 100644 index 00000000..fd2726c9 --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +v0.11.0 diff --git a/asset/css/awesome-icons.less b/asset/css/awesome-icons.less new file mode 100644 index 00000000..ba0b5cfc --- /dev/null +++ b/asset/css/awesome-icons.less @@ -0,0 +1,35 @@ +:root, :host { + --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"; + --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"; +} + +@font-face { + font-family: 'Font Awesome 6 Free'; + font-style: normal; + font-weight: 400; + font-display: block; + src: url('@{iplWebAssets}/font/awesome/fa-regular-400.woff2') format('woff2'), + url('@{iplWebAssets}/font/awesome/fa-regular-400.ttf') format('truetype'); +} + +.far, +.fa-regular { + font-family: 'Font Awesome 6 Free'; + font-weight: 400; +} + +@font-face { + font-family: 'Font Awesome 6 Free'; + font-style: normal; + font-weight: 900; + font-display: block; + src: url('@{iplWebAssets}/font/awesome/fa-solid-900.woff2') format('woff2'), + url('@{iplWebAssets}/font/awesome/fa-solid-900.ttf') format('truetype'); +} + +.fa, +.fas, +.fa-solid { + font-family: 'Font Awesome 6 Free'; + font-weight: 900; +} diff --git a/asset/css/balls.less b/asset/css/balls.less new file mode 100644 index 00000000..3b1f4a0a --- /dev/null +++ b/asset/css/balls.less @@ -0,0 +1,148 @@ +@ball-pad: 1/6em; + +.ball { + border-radius: 50%; + display: inline-block; + text-align: center; +} + +.ball-size-xs { + height: 1/3em; + width: 1/3em; +} + +.ball-size-s { + height: 0.5em; + width: 0.5em; +} + +.ball-size-m { + height: 0.75em; + width: 0.75em; + line-height: 0; + + i.icon:before { + font-size: .75 - @ball-pad * 2; + line-height: 1em; + } +} + +.ball-size-ml { + height: 1em; + width: 1em; + line-height: 0; + + i.icon { + line-height: 0.3; + + &:before { + font-size: 0.8 - @ball-pad * 2; + line-height: 1 - @ball-pad * 2; + } + } +} + +.ball-size-l { + height: 1.5em; + width: 1.5em; + line-height: 1em; + + i.icon:before { + font-size: 1 - @ball-pad * 2; + line-height: 1.5 - @ball-pad * 2; + } +} + +.ball-size-xl { + width: 2em; + height: 2em; + + i.icon:before { + line-height: 2 - @ball-pad * 2; + } +} + +.ball-outline(@color) { + border: @ball-pad solid @color; + color: @color; +} + +.ball-solid(@color) { + background-color: @color; + color: var(--default-text-color-inverted, @default-text-color-inverted); + padding: @ball-pad; +} + +.state-ball { + .ball(); + + &.state-pending:not(.ball-size-l):not(.ball-size-xl) { + .ball-solid(var(--state-pending, @state-pending)); + } + + &.state-pending.ball-size-l, + &.state-pending.ball-size-xl { + .ball-outline(var(--state-pending, @state-pending)); + } + + &.state-up:not(.ball-size-l):not(.ball-size-xl) { + .ball-solid(var(--state-up, @state-up)); + } + + &.state-up.ball-size-l, + &.state-up.ball-size-xl { + .ball-outline(var(--state-up, @state-up)); + } + + &.state-down { + .ball-solid(var(--state-down, @state-down)); + } + + &.state-ok:not(.ball-size-l):not(.ball-size-xl) { + .ball-solid(var(--state-ok, @state-ok)); + } + + &.state-ok.ball-size-l, + &.state-ok.ball-size-xl { + .ball-outline(var(--state-ok, @state-ok)); + } + + &.state-warning { + .ball-solid(var(--state-warning, @state-warning)); + } + + &.state-critical { + .ball-solid(var(--state-critical, @state-critical)); + } + + &.state-unknown { + .ball-solid(var(--state-unknown, @state-unknown)); + } + + &.handled { + opacity: 0.6; + } + + i { + text-align: center; + display: block; + + &:before { + margin-right: 0; + } + } + + // Specific icon styles + &.ball-size-l i { + &.fa-sitemap:before { + font-size: 8px; // px to ignore browser min font-size + } + } + + &.ball-size-xl i { + &.fa-sitemap:before { + font-size: .857em; + line-height: (2 - @ball-pad * 2) / .857; + } + } +} diff --git a/asset/css/cancel-button.less b/asset/css/cancel-button.less new file mode 100644 index 00000000..76403991 --- /dev/null +++ b/asset/css/cancel-button.less @@ -0,0 +1,34 @@ +.cancel-button { + display: inline-flex; + align-items: baseline; + padding: .5em 1em; + + .appearance(none); + .rounded-corners(); + line-height: normal; + cursor: pointer; + + background: var(--cancel-button-bg, @cancel-button-bg); + border: 1px solid var(--cancel-button-border-color, @cancel-button-border-color); + color: var(--cancel-button-color, @cancel-button-color); + + &:focus, + &:hover { + background-color: var(--cancel-button-hover-bg, @cancel-button-hover-bg); + color: var(--cancel-button-hover-color, @cancel-button-hover-color); + } + + &[disabled] { + background: none; + cursor: default; + + border: 1px solid var(--control-disabled-color, @control-disabled-color); + color: var(--control-disabled-color, @control-disabled-color); + + &:focus, + &:hover { + background: none; + color: var(--control-disabled-color, @control-disabled-color); + } + } +} diff --git a/asset/css/compat.less b/asset/css/compat.less new file mode 100644 index 00000000..a858a69d --- /dev/null +++ b/asset/css/compat.less @@ -0,0 +1,70 @@ +// General input styles + +.icinga-controls { + .uploaded-files { + background-color: @default-input-bg; + } +} + +form.icinga-form { + .uploaded-files { + flex: 1 1 auto; + width: 0; + } +} + +.icinga-controls { + .uploaded-files { + font-size: inherit; + padding: .5em; + } +} + +// Button styles + +// The `form` selector is only required to overrule the hover effect applied by Icinga Web. +// It's not required if done by Icinga Web itself, only here because this is applied earlier +// as it's part of a library. +form.icinga-controls { + button[type="submit"].remove-uploaded-file { + all: unset; + } +} + +// Schedule Element styles + +.icinga-form > .schedule-element, +.icinga-form > .schedule-element > fieldset { + margin-top: 1em; + + > .control-group:first-child { + margin-top: 0; + } +} + +.icinga-form .schedule-element { + .control-group > fieldset > .weekly, + .control-group > .ordinal, + .control-group > .monthly, + .control-group > .annually { + flex: 1 1 auto; + } + + // TODO: This effectively restricts the weekly fields to always be aligned to the right, + // regardless of the using an icinga-form or not. So this should be removed once we + // have re-implemented the decorators. + .control-group > fieldset > .weekly { + margin-left: 14em; + } +} + +form.icinga-form .control-group { + > .monthly, + > .ordinal { + margin-right: 2em; + } + + > .ordinal.annually { + margin-right: 1em; + } +} diff --git a/asset/css/controls.less b/asset/css/controls.less new file mode 100644 index 00000000..9da43a1b --- /dev/null +++ b/asset/css/controls.less @@ -0,0 +1,151 @@ +.pagination-control { + li > a { + color: var(--control-color, @control-color); + border-radius: .25em; + } + + li > a:hover { + background: var(--control-hover-bg, @control-hover-bg); + } + + .previous-page, + .next-page { + padding: .5em .25em; + + i { + display: block; + } + + i:before { + margin: 0; + } + } + + .previous-page > i { + margin-left: -.125em; + } + + .next-page > i { + margin-right: -.125em; + } +} + +// Style + +.control-button { + .appearance(none); + background: none; + border: none; + color: var(--control-color, @control-color); + .rounded-corners(); + + &:hover, &:focus, &.active { + background-color: var(--control-hover-bg, @control-hover-bg); + text-decoration: none; + } + + &.disabled { + color: var(--control-disabled-color, @control-disabled-color); + + &:hover { + background: none; + } + } + + i.icon:before { + color: inherit; + } +} + +// Layout + +.control-button { + display: inline-block; + padding: .25em .5em; + + > i.icon { + display: inline-flex; + align-items: center; + height: 100%; + } + + i.icon:before { + margin-right: 0; + } +} + +.sort-control { + display: flex; + justify-content: flex-end; + + .form-element { + display: inline-flex; + align-items: baseline; + margin-right: .5em; + + label { + margin-right: .5em; + } + } + + .control-button { + margin: 0; + } +} + +.search-controls { + display: flex; + min-width: 100%; + + .search-bar { + flex: 1 1 auto; + + & ~ .control-button { + margin-left: .5em; + } + } +} + +/** + The default layout of list controls in Icinga Web + + ┌────────────────────────────────────────────────────────────────┐ + │ .pagination-control .limit-control .sort-control │ + │ <-------------------- .search-controls ----------------------> │ + └────────────────────────────────────────────────────────────────┘ + */ +.controls.default-layout { + .box-shadow(0, 0, 0, 1px, @gray-lighter); + z-index: 1; // The content may clip, this ensures the separator is always visible + + > .pagination-control { + float: left; + } + + > .sort-control, + > .limit-control { + float: right; + } + + > .limit-control { + margin-right: .5em; + } + + > .search-controls { + clear: both; + } + + > :not(:only-child) { + margin-bottom: 0.5em; + } + + > .sort-control, + > .search-controls > .control-button:last-child { + margin-right: -.5em; + } + + > .search-controls > .search-bar .search-suggestions { + // Suggestions should be kept at a distance from the bottom of the page + margin-bottom: 2.5em; + } +} diff --git a/asset/css/datetime-picker.less b/asset/css/datetime-picker.less new file mode 100644 index 00000000..3d9d9aca --- /dev/null +++ b/asset/css/datetime-picker.less @@ -0,0 +1,9 @@ +.flatpickr-input + .input { + padding-right: 2em; + + & + .fa-calendar { + margin: .5em 1em 0 -3.5em; + padding: 0 .5em 0 1em; + pointer-events: none; + } +} diff --git a/asset/css/file-element.less b/asset/css/file-element.less new file mode 100644 index 00000000..9d76d037 --- /dev/null +++ b/asset/css/file-element.less @@ -0,0 +1,40 @@ +form .uploaded-files { + list-style-type: none; + padding: 0; + margin: 0; + + > li:not(:last-of-type) { + margin-bottom: .5em; + } + + button[type="submit"].remove-uploaded-file { + .icon { + font-size: 1.2em; + } + + &:focus, &:hover { + cursor: pointer; + + .icon { + color: red; + } + } + } + + // text-overflow: ellipsis layout rules, yes, exclusively + > li { + display: flex; + + > button[type="submit"].remove-uploaded-file { + display: inline-flex; + flex: 1 1 auto; + width: 0; + + > span { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + } + } + } +} diff --git a/asset/css/fontawesome.css b/asset/css/fontawesome.css new file mode 100644 index 00000000..3e4b4467 --- /dev/null +++ b/asset/css/fontawesome.css @@ -0,0 +1,6372 @@ +/*! + * Font Awesome Free 6.3.0 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + * Copyright 2023 Fonticons, Inc. + */ +.fa { + font-family: var(--fa-style-family, "Font Awesome 6 Free"); + font-weight: var(--fa-style, 900); } + +.fa, +.fa-classic, +.fa-sharp, +.fas, +.fa-solid, +.far, +.fa-regular, +.fab, +.fa-brands { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: var(--fa-display, inline-block); + font-style: normal; + font-variant: normal; + line-height: 1; + text-rendering: auto; } + +.fas, +.fa-classic, +.fa-solid, +.far, +.fa-regular { + font-family: 'Font Awesome 6 Free'; } + +.fab, +.fa-brands { + font-family: 'Font Awesome 6 Brands'; } + +.fa-1x { + font-size: 1em; } + +.fa-2x { + font-size: 2em; } + +.fa-3x { + font-size: 3em; } + +.fa-4x { + font-size: 4em; } + +.fa-5x { + font-size: 5em; } + +.fa-6x { + font-size: 6em; } + +.fa-7x { + font-size: 7em; } + +.fa-8x { + font-size: 8em; } + +.fa-9x { + font-size: 9em; } + +.fa-10x { + font-size: 10em; } + +.fa-2xs { + font-size: 0.625em; + line-height: 0.1em; + vertical-align: 0.225em; } + +.fa-xs { + font-size: 0.75em; + line-height: 0.08333em; + vertical-align: 0.125em; } + +.fa-sm { + font-size: 0.875em; + line-height: 0.07143em; + vertical-align: 0.05357em; } + +.fa-lg { + font-size: 1.25em; + line-height: 0.05em; + vertical-align: -0.075em; } + +.fa-xl { + font-size: 1.5em; + line-height: 0.04167em; + vertical-align: -0.125em; } + +.fa-2xl { + font-size: 2em; + line-height: 0.03125em; + vertical-align: -0.1875em; } + +.fa-fw { + text-align: center; + width: 1.25em; } + +.fa-ul { + list-style-type: none; + margin-left: var(--fa-li-margin, 2.5em); + padding-left: 0; } + .fa-ul > li { + position: relative; } + +.fa-li { + left: calc(var(--fa-li-width, 2em) * -1); + position: absolute; + text-align: center; + width: var(--fa-li-width, 2em); + line-height: inherit; } + +.fa-border { + border-color: var(--fa-border-color, #eee); + border-radius: var(--fa-border-radius, 0.1em); + border-style: var(--fa-border-style, solid); + border-width: var(--fa-border-width, 0.08em); + padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); } + +.fa-pull-left { + float: left; + margin-right: var(--fa-pull-margin, 0.3em); } + +.fa-pull-right { + float: right; + margin-left: var(--fa-pull-margin, 0.3em); } + +.fa-beat { + -webkit-animation-name: fa-beat; + animation-name: fa-beat; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); + animation-timing-function: var(--fa-animation-timing, ease-in-out); } + +.fa-bounce { + -webkit-animation-name: fa-bounce; + animation-name: fa-bounce; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); } + +.fa-fade { + -webkit-animation-name: fa-fade; + animation-name: fa-fade; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } + +.fa-beat-fade { + -webkit-animation-name: fa-beat-fade; + animation-name: fa-beat-fade; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); + animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); } + +.fa-flip { + -webkit-animation-name: fa-flip; + animation-name: fa-flip; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out); + animation-timing-function: var(--fa-animation-timing, ease-in-out); } + +.fa-shake { + -webkit-animation-name: fa-shake; + animation-name: fa-shake; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, linear); + animation-timing-function: var(--fa-animation-timing, linear); } + +.fa-spin { + -webkit-animation-name: fa-spin; + animation-name: fa-spin; + -webkit-animation-delay: var(--fa-animation-delay, 0s); + animation-delay: var(--fa-animation-delay, 0s); + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 2s); + animation-duration: var(--fa-animation-duration, 2s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, linear); + animation-timing-function: var(--fa-animation-timing, linear); } + +.fa-spin-reverse { + --fa-animation-direction: reverse; } + +.fa-pulse, +.fa-spin-pulse { + -webkit-animation-name: fa-spin; + animation-name: fa-spin; + -webkit-animation-direction: var(--fa-animation-direction, normal); + animation-direction: var(--fa-animation-direction, normal); + -webkit-animation-duration: var(--fa-animation-duration, 1s); + animation-duration: var(--fa-animation-duration, 1s); + -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite); + animation-iteration-count: var(--fa-animation-iteration-count, infinite); + -webkit-animation-timing-function: var(--fa-animation-timing, steps(8)); + animation-timing-function: var(--fa-animation-timing, steps(8)); } + +@media (prefers-reduced-motion: reduce) { + .fa-beat, + .fa-bounce, + .fa-fade, + .fa-beat-fade, + .fa-flip, + .fa-pulse, + .fa-shake, + .fa-spin, + .fa-spin-pulse { + -webkit-animation-delay: -1ms; + animation-delay: -1ms; + -webkit-animation-duration: 1ms; + animation-duration: 1ms; + -webkit-animation-iteration-count: 1; + animation-iteration-count: 1; + -webkit-transition-delay: 0s; + transition-delay: 0s; + -webkit-transition-duration: 0s; + transition-duration: 0s; } } + +@-webkit-keyframes fa-beat { + 0%, 90% { + -webkit-transform: scale(1); + transform: scale(1); } + 45% { + -webkit-transform: scale(var(--fa-beat-scale, 1.25)); + transform: scale(var(--fa-beat-scale, 1.25)); } } + +@keyframes fa-beat { + 0%, 90% { + -webkit-transform: scale(1); + transform: scale(1); } + 45% { + -webkit-transform: scale(var(--fa-beat-scale, 1.25)); + transform: scale(var(--fa-beat-scale, 1.25)); } } + +@-webkit-keyframes fa-bounce { + 0% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); } + 10% { + -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); + transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } + 30% { + -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); + transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } + 50% { + -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); + transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } + 57% { + -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); + transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } + 64% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); } + 100% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); } } + +@keyframes fa-bounce { + 0% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); } + 10% { + -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); + transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); } + 30% { + -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); + transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); } + 50% { + -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); + transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); } + 57% { + -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); + transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); } + 64% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); } + 100% { + -webkit-transform: scale(1, 1) translateY(0); + transform: scale(1, 1) translateY(0); } } + +@-webkit-keyframes fa-fade { + 50% { + opacity: var(--fa-fade-opacity, 0.4); } } + +@keyframes fa-fade { + 50% { + opacity: var(--fa-fade-opacity, 0.4); } } + +@-webkit-keyframes fa-beat-fade { + 0%, 100% { + opacity: var(--fa-beat-fade-opacity, 0.4); + -webkit-transform: scale(1); + transform: scale(1); } + 50% { + opacity: 1; + -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); + transform: scale(var(--fa-beat-fade-scale, 1.125)); } } + +@keyframes fa-beat-fade { + 0%, 100% { + opacity: var(--fa-beat-fade-opacity, 0.4); + -webkit-transform: scale(1); + transform: scale(1); } + 50% { + opacity: 1; + -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125)); + transform: scale(var(--fa-beat-fade-scale, 1.125)); } } + +@-webkit-keyframes fa-flip { + 50% { + -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); + transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } + +@keyframes fa-flip { + 50% { + -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); + transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } } + +@-webkit-keyframes fa-shake { + 0% { + -webkit-transform: rotate(-15deg); + transform: rotate(-15deg); } + 4% { + -webkit-transform: rotate(15deg); + transform: rotate(15deg); } + 8%, 24% { + -webkit-transform: rotate(-18deg); + transform: rotate(-18deg); } + 12%, 28% { + -webkit-transform: rotate(18deg); + transform: rotate(18deg); } + 16% { + -webkit-transform: rotate(-22deg); + transform: rotate(-22deg); } + 20% { + -webkit-transform: rotate(22deg); + transform: rotate(22deg); } + 32% { + -webkit-transform: rotate(-12deg); + transform: rotate(-12deg); } + 36% { + -webkit-transform: rotate(12deg); + transform: rotate(12deg); } + 40%, 100% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } } + +@keyframes fa-shake { + 0% { + -webkit-transform: rotate(-15deg); + transform: rotate(-15deg); } + 4% { + -webkit-transform: rotate(15deg); + transform: rotate(15deg); } + 8%, 24% { + -webkit-transform: rotate(-18deg); + transform: rotate(-18deg); } + 12%, 28% { + -webkit-transform: rotate(18deg); + transform: rotate(18deg); } + 16% { + -webkit-transform: rotate(-22deg); + transform: rotate(-22deg); } + 20% { + -webkit-transform: rotate(22deg); + transform: rotate(22deg); } + 32% { + -webkit-transform: rotate(-12deg); + transform: rotate(-12deg); } + 36% { + -webkit-transform: rotate(12deg); + transform: rotate(12deg); } + 40%, 100% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } } + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +.fa-rotate-90 { + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } + +.fa-rotate-180 { + -webkit-transform: rotate(180deg); + transform: rotate(180deg); } + +.fa-rotate-270 { + -webkit-transform: rotate(270deg); + transform: rotate(270deg); } + +.fa-flip-horizontal { + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); } + +.fa-flip-vertical { + -webkit-transform: scale(1, -1); + transform: scale(1, -1); } + +.fa-flip-both, +.fa-flip-horizontal.fa-flip-vertical { + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); } + +.fa-rotate-by { + -webkit-transform: rotate(var(--fa-rotate-angle, none)); + transform: rotate(var(--fa-rotate-angle, none)); } + +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2.5em; } + +.fa-stack-1x, +.fa-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; + z-index: var(--fa-stack-z-index, auto); } + +.fa-stack-1x { + line-height: inherit; } + +.fa-stack-2x { + font-size: 2em; } + +.fa-inverse { + color: var(--fa-inverse, #fff); } + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +readers do not read off random characters that represent icons */ + +.fa-0::before { + content: "\30"; } + +.fa-1::before { + content: "\31"; } + +.fa-2::before { + content: "\32"; } + +.fa-3::before { + content: "\33"; } + +.fa-4::before { + content: "\34"; } + +.fa-5::before { + content: "\35"; } + +.fa-6::before { + content: "\36"; } + +.fa-7::before { + content: "\37"; } + +.fa-8::before { + content: "\38"; } + +.fa-9::before { + content: "\39"; } + +.fa-fill-drip::before { + content: "\f576"; } + +.fa-arrows-to-circle::before { + content: "\e4bd"; } + +.fa-circle-chevron-right::before { + content: "\f138"; } + +.fa-chevron-circle-right::before { + content: "\f138"; } + +.fa-at::before { + content: "\40"; } + +.fa-trash-can::before { + content: "\f2ed"; } + +.fa-trash-alt::before { + content: "\f2ed"; } + +.fa-text-height::before { + content: "\f034"; } + +.fa-user-xmark::before { + content: "\f235"; } + +.fa-user-times::before { + content: "\f235"; } + +.fa-stethoscope::before { + content: "\f0f1"; } + +.fa-message::before { + content: "\f27a"; } + +.fa-comment-alt::before { + content: "\f27a"; } + +.fa-info::before { + content: "\f129"; } + +.fa-down-left-and-up-right-to-center::before { + content: "\f422"; } + +.fa-compress-alt::before { + content: "\f422"; } + +.fa-explosion::before { + content: "\e4e9"; } + +.fa-file-lines::before { + content: "\f15c"; } + +.fa-file-alt::before { + content: "\f15c"; } + +.fa-file-text::before { + content: "\f15c"; } + +.fa-wave-square::before { + content: "\f83e"; } + +.fa-ring::before { + content: "\f70b"; } + +.fa-building-un::before { + content: "\e4d9"; } + +.fa-dice-three::before { + content: "\f527"; } + +.fa-calendar-days::before { + content: "\f073"; } + +.fa-calendar-alt::before { + content: "\f073"; } + +.fa-anchor-circle-check::before { + content: "\e4aa"; } + +.fa-building-circle-arrow-right::before { + content: "\e4d1"; } + +.fa-volleyball::before { + content: "\f45f"; } + +.fa-volleyball-ball::before { + content: "\f45f"; } + +.fa-arrows-up-to-line::before { + content: "\e4c2"; } + +.fa-sort-down::before { + content: "\f0dd"; } + +.fa-sort-desc::before { + content: "\f0dd"; } + +.fa-circle-minus::before { + content: "\f056"; } + +.fa-minus-circle::before { + content: "\f056"; } + +.fa-door-open::before { + content: "\f52b"; } + +.fa-right-from-bracket::before { + content: "\f2f5"; } + +.fa-sign-out-alt::before { + content: "\f2f5"; } + +.fa-atom::before { + content: "\f5d2"; } + +.fa-soap::before { + content: "\e06e"; } + +.fa-icons::before { + content: "\f86d"; } + +.fa-heart-music-camera-bolt::before { + content: "\f86d"; } + +.fa-microphone-lines-slash::before { + content: "\f539"; } + +.fa-microphone-alt-slash::before { + content: "\f539"; } + +.fa-bridge-circle-check::before { + content: "\e4c9"; } + +.fa-pump-medical::before { + content: "\e06a"; } + +.fa-fingerprint::before { + content: "\f577"; } + +.fa-hand-point-right::before { + content: "\f0a4"; } + +.fa-magnifying-glass-location::before { + content: "\f689"; } + +.fa-search-location::before { + content: "\f689"; } + +.fa-forward-step::before { + content: "\f051"; } + +.fa-step-forward::before { + content: "\f051"; } + +.fa-face-smile-beam::before { + content: "\f5b8"; } + +.fa-smile-beam::before { + content: "\f5b8"; } + +.fa-flag-checkered::before { + content: "\f11e"; } + +.fa-football::before { + content: "\f44e"; } + +.fa-football-ball::before { + content: "\f44e"; } + +.fa-school-circle-exclamation::before { + content: "\e56c"; } + +.fa-crop::before { + content: "\f125"; } + +.fa-angles-down::before { + content: "\f103"; } + +.fa-angle-double-down::before { + content: "\f103"; } + +.fa-users-rectangle::before { + content: "\e594"; } + +.fa-people-roof::before { + content: "\e537"; } + +.fa-people-line::before { + content: "\e534"; } + +.fa-beer-mug-empty::before { + content: "\f0fc"; } + +.fa-beer::before { + content: "\f0fc"; } + +.fa-diagram-predecessor::before { + content: "\e477"; } + +.fa-arrow-up-long::before { + content: "\f176"; } + +.fa-long-arrow-up::before { + content: "\f176"; } + +.fa-fire-flame-simple::before { + content: "\f46a"; } + +.fa-burn::before { + content: "\f46a"; } + +.fa-person::before { + content: "\f183"; } + +.fa-male::before { + content: "\f183"; } + +.fa-laptop::before { + content: "\f109"; } + +.fa-file-csv::before { + content: "\f6dd"; } + +.fa-menorah::before { + content: "\f676"; } + +.fa-truck-plane::before { + content: "\e58f"; } + +.fa-record-vinyl::before { + content: "\f8d9"; } + +.fa-face-grin-stars::before { + content: "\f587"; } + +.fa-grin-stars::before { + content: "\f587"; } + +.fa-bong::before { + content: "\f55c"; } + +.fa-spaghetti-monster-flying::before { + content: "\f67b"; } + +.fa-pastafarianism::before { + content: "\f67b"; } + +.fa-arrow-down-up-across-line::before { + content: "\e4af"; } + +.fa-spoon::before { + content: "\f2e5"; } + +.fa-utensil-spoon::before { + content: "\f2e5"; } + +.fa-jar-wheat::before { + content: "\e517"; } + +.fa-envelopes-bulk::before { + content: "\f674"; } + +.fa-mail-bulk::before { + content: "\f674"; } + +.fa-file-circle-exclamation::before { + content: "\e4eb"; } + +.fa-circle-h::before { + content: "\f47e"; } + +.fa-hospital-symbol::before { + content: "\f47e"; } + +.fa-pager::before { + content: "\f815"; } + +.fa-address-book::before { + content: "\f2b9"; } + +.fa-contact-book::before { + content: "\f2b9"; } + +.fa-strikethrough::before { + content: "\f0cc"; } + +.fa-k::before { + content: "\4b"; } + +.fa-landmark-flag::before { + content: "\e51c"; } + +.fa-pencil::before { + content: "\f303"; } + +.fa-pencil-alt::before { + content: "\f303"; } + +.fa-backward::before { + content: "\f04a"; } + +.fa-caret-right::before { + content: "\f0da"; } + +.fa-comments::before { + content: "\f086"; } + +.fa-paste::before { + content: "\f0ea"; } + +.fa-file-clipboard::before { + content: "\f0ea"; } + +.fa-code-pull-request::before { + content: "\e13c"; } + +.fa-clipboard-list::before { + content: "\f46d"; } + +.fa-truck-ramp-box::before { + content: "\f4de"; } + +.fa-truck-loading::before { + content: "\f4de"; } + +.fa-user-check::before { + content: "\f4fc"; } + +.fa-vial-virus::before { + content: "\e597"; } + +.fa-sheet-plastic::before { + content: "\e571"; } + +.fa-blog::before { + content: "\f781"; } + +.fa-user-ninja::before { + content: "\f504"; } + +.fa-person-arrow-up-from-line::before { + content: "\e539"; } + +.fa-scroll-torah::before { + content: "\f6a0"; } + +.fa-torah::before { + content: "\f6a0"; } + +.fa-broom-ball::before { + content: "\f458"; } + +.fa-quidditch::before { + content: "\f458"; } + +.fa-quidditch-broom-ball::before { + content: "\f458"; } + +.fa-toggle-off::before { + content: "\f204"; } + +.fa-box-archive::before { + content: "\f187"; } + +.fa-archive::before { + content: "\f187"; } + +.fa-person-drowning::before { + content: "\e545"; } + +.fa-arrow-down-9-1::before { + content: "\f886"; } + +.fa-sort-numeric-desc::before { + content: "\f886"; } + +.fa-sort-numeric-down-alt::before { + content: "\f886"; } + +.fa-face-grin-tongue-squint::before { + content: "\f58a"; } + +.fa-grin-tongue-squint::before { + content: "\f58a"; } + +.fa-spray-can::before { + content: "\f5bd"; } + +.fa-truck-monster::before { + content: "\f63b"; } + +.fa-w::before { + content: "\57"; } + +.fa-earth-africa::before { + content: "\f57c"; } + +.fa-globe-africa::before { + content: "\f57c"; } + +.fa-rainbow::before { + content: "\f75b"; } + +.fa-circle-notch::before { + content: "\f1ce"; } + +.fa-tablet-screen-button::before { + content: "\f3fa"; } + +.fa-tablet-alt::before { + content: "\f3fa"; } + +.fa-paw::before { + content: "\f1b0"; } + +.fa-cloud::before { + content: "\f0c2"; } + +.fa-trowel-bricks::before { + content: "\e58a"; } + +.fa-face-flushed::before { + content: "\f579"; } + +.fa-flushed::before { + content: "\f579"; } + +.fa-hospital-user::before { + content: "\f80d"; } + +.fa-tent-arrow-left-right::before { + content: "\e57f"; } + +.fa-gavel::before { + content: "\f0e3"; } + +.fa-legal::before { + content: "\f0e3"; } + +.fa-binoculars::before { + content: "\f1e5"; } + +.fa-microphone-slash::before { + content: "\f131"; } + +.fa-box-tissue::before { + content: "\e05b"; } + +.fa-motorcycle::before { + content: "\f21c"; } + +.fa-bell-concierge::before { + content: "\f562"; } + +.fa-concierge-bell::before { + content: "\f562"; } + +.fa-pen-ruler::before { + content: "\f5ae"; } + +.fa-pencil-ruler::before { + content: "\f5ae"; } + +.fa-people-arrows::before { + content: "\e068"; } + +.fa-people-arrows-left-right::before { + content: "\e068"; } + +.fa-mars-and-venus-burst::before { + content: "\e523"; } + +.fa-square-caret-right::before { + content: "\f152"; } + +.fa-caret-square-right::before { + content: "\f152"; } + +.fa-scissors::before { + content: "\f0c4"; } + +.fa-cut::before { + content: "\f0c4"; } + +.fa-sun-plant-wilt::before { + content: "\e57a"; } + +.fa-toilets-portable::before { + content: "\e584"; } + +.fa-hockey-puck::before { + content: "\f453"; } + +.fa-table::before { + content: "\f0ce"; } + +.fa-magnifying-glass-arrow-right::before { + content: "\e521"; } + +.fa-tachograph-digital::before { + content: "\f566"; } + +.fa-digital-tachograph::before { + content: "\f566"; } + +.fa-users-slash::before { + content: "\e073"; } + +.fa-clover::before { + content: "\e139"; } + +.fa-reply::before { + content: "\f3e5"; } + +.fa-mail-reply::before { + content: "\f3e5"; } + +.fa-star-and-crescent::before { + content: "\f699"; } + +.fa-house-fire::before { + content: "\e50c"; } + +.fa-square-minus::before { + content: "\f146"; } + +.fa-minus-square::before { + content: "\f146"; } + +.fa-helicopter::before { + content: "\f533"; } + +.fa-compass::before { + content: "\f14e"; } + +.fa-square-caret-down::before { + content: "\f150"; } + +.fa-caret-square-down::before { + content: "\f150"; } + +.fa-file-circle-question::before { + content: "\e4ef"; } + +.fa-laptop-code::before { + content: "\f5fc"; } + +.fa-swatchbook::before { + content: "\f5c3"; } + +.fa-prescription-bottle::before { + content: "\f485"; } + +.fa-bars::before { + content: "\f0c9"; } + +.fa-navicon::before { + content: "\f0c9"; } + +.fa-people-group::before { + content: "\e533"; } + +.fa-hourglass-end::before { + content: "\f253"; } + +.fa-hourglass-3::before { + content: "\f253"; } + +.fa-heart-crack::before { + content: "\f7a9"; } + +.fa-heart-broken::before { + content: "\f7a9"; } + +.fa-square-up-right::before { + content: "\f360"; } + +.fa-external-link-square-alt::before { + content: "\f360"; } + +.fa-face-kiss-beam::before { + content: "\f597"; } + +.fa-kiss-beam::before { + content: "\f597"; } + +.fa-film::before { + content: "\f008"; } + +.fa-ruler-horizontal::before { + content: "\f547"; } + +.fa-people-robbery::before { + content: "\e536"; } + +.fa-lightbulb::before { + content: "\f0eb"; } + +.fa-caret-left::before { + content: "\f0d9"; } + +.fa-circle-exclamation::before { + content: "\f06a"; } + +.fa-exclamation-circle::before { + content: "\f06a"; } + +.fa-school-circle-xmark::before { + content: "\e56d"; } + +.fa-arrow-right-from-bracket::before { + content: "\f08b"; } + +.fa-sign-out::before { + content: "\f08b"; } + +.fa-circle-chevron-down::before { + content: "\f13a"; } + +.fa-chevron-circle-down::before { + content: "\f13a"; } + +.fa-unlock-keyhole::before { + content: "\f13e"; } + +.fa-unlock-alt::before { + content: "\f13e"; } + +.fa-cloud-showers-heavy::before { + content: "\f740"; } + +.fa-headphones-simple::before { + content: "\f58f"; } + +.fa-headphones-alt::before { + content: "\f58f"; } + +.fa-sitemap::before { + content: "\f0e8"; } + +.fa-circle-dollar-to-slot::before { + content: "\f4b9"; } + +.fa-donate::before { + content: "\f4b9"; } + +.fa-memory::before { + content: "\f538"; } + +.fa-road-spikes::before { + content: "\e568"; } + +.fa-fire-burner::before { + content: "\e4f1"; } + +.fa-flag::before { + content: "\f024"; } + +.fa-hanukiah::before { + content: "\f6e6"; } + +.fa-feather::before { + content: "\f52d"; } + +.fa-volume-low::before { + content: "\f027"; } + +.fa-volume-down::before { + content: "\f027"; } + +.fa-comment-slash::before { + content: "\f4b3"; } + +.fa-cloud-sun-rain::before { + content: "\f743"; } + +.fa-compress::before { + content: "\f066"; } + +.fa-wheat-awn::before { + content: "\e2cd"; } + +.fa-wheat-alt::before { + content: "\e2cd"; } + +.fa-ankh::before { + content: "\f644"; } + +.fa-hands-holding-child::before { + content: "\e4fa"; } + +.fa-asterisk::before { + content: "\2a"; } + +.fa-square-check::before { + content: "\f14a"; } + +.fa-check-square::before { + content: "\f14a"; } + +.fa-peseta-sign::before { + content: "\e221"; } + +.fa-heading::before { + content: "\f1dc"; } + +.fa-header::before { + content: "\f1dc"; } + +.fa-ghost::before { + content: "\f6e2"; } + +.fa-list::before { + content: "\f03a"; } + +.fa-list-squares::before { + content: "\f03a"; } + +.fa-square-phone-flip::before { + content: "\f87b"; } + +.fa-phone-square-alt::before { + content: "\f87b"; } + +.fa-cart-plus::before { + content: "\f217"; } + +.fa-gamepad::before { + content: "\f11b"; } + +.fa-circle-dot::before { + content: "\f192"; } + +.fa-dot-circle::before { + content: "\f192"; } + +.fa-face-dizzy::before { + content: "\f567"; } + +.fa-dizzy::before { + content: "\f567"; } + +.fa-egg::before { + content: "\f7fb"; } + +.fa-house-medical-circle-xmark::before { + content: "\e513"; } + +.fa-campground::before { + content: "\f6bb"; } + +.fa-folder-plus::before { + content: "\f65e"; } + +.fa-futbol::before { + content: "\f1e3"; } + +.fa-futbol-ball::before { + content: "\f1e3"; } + +.fa-soccer-ball::before { + content: "\f1e3"; } + +.fa-paintbrush::before { + content: "\f1fc"; } + +.fa-paint-brush::before { + content: "\f1fc"; } + +.fa-lock::before { + content: "\f023"; } + +.fa-gas-pump::before { + content: "\f52f"; } + +.fa-hot-tub-person::before { + content: "\f593"; } + +.fa-hot-tub::before { + content: "\f593"; } + +.fa-map-location::before { + content: "\f59f"; } + +.fa-map-marked::before { + content: "\f59f"; } + +.fa-house-flood-water::before { + content: "\e50e"; } + +.fa-tree::before { + content: "\f1bb"; } + +.fa-bridge-lock::before { + content: "\e4cc"; } + +.fa-sack-dollar::before { + content: "\f81d"; } + +.fa-pen-to-square::before { + content: "\f044"; } + +.fa-edit::before { + content: "\f044"; } + +.fa-car-side::before { + content: "\f5e4"; } + +.fa-share-nodes::before { + content: "\f1e0"; } + +.fa-share-alt::before { + content: "\f1e0"; } + +.fa-heart-circle-minus::before { + content: "\e4ff"; } + +.fa-hourglass-half::before { + content: "\f252"; } + +.fa-hourglass-2::before { + content: "\f252"; } + +.fa-microscope::before { + content: "\f610"; } + +.fa-sink::before { + content: "\e06d"; } + +.fa-bag-shopping::before { + content: "\f290"; } + +.fa-shopping-bag::before { + content: "\f290"; } + +.fa-arrow-down-z-a::before { + content: "\f881"; } + +.fa-sort-alpha-desc::before { + content: "\f881"; } + +.fa-sort-alpha-down-alt::before { + content: "\f881"; } + +.fa-mitten::before { + content: "\f7b5"; } + +.fa-person-rays::before { + content: "\e54d"; } + +.fa-users::before { + content: "\f0c0"; } + +.fa-eye-slash::before { + content: "\f070"; } + +.fa-flask-vial::before { + content: "\e4f3"; } + +.fa-hand::before { + content: "\f256"; } + +.fa-hand-paper::before { + content: "\f256"; } + +.fa-om::before { + content: "\f679"; } + +.fa-worm::before { + content: "\e599"; } + +.fa-house-circle-xmark::before { + content: "\e50b"; } + +.fa-plug::before { + content: "\f1e6"; } + +.fa-chevron-up::before { + content: "\f077"; } + +.fa-hand-spock::before { + content: "\f259"; } + +.fa-stopwatch::before { + content: "\f2f2"; } + +.fa-face-kiss::before { + content: "\f596"; } + +.fa-kiss::before { + content: "\f596"; } + +.fa-bridge-circle-xmark::before { + content: "\e4cb"; } + +.fa-face-grin-tongue::before { + content: "\f589"; } + +.fa-grin-tongue::before { + content: "\f589"; } + +.fa-chess-bishop::before { + content: "\f43a"; } + +.fa-face-grin-wink::before { + content: "\f58c"; } + +.fa-grin-wink::before { + content: "\f58c"; } + +.fa-ear-deaf::before { + content: "\f2a4"; } + +.fa-deaf::before { + content: "\f2a4"; } + +.fa-deafness::before { + content: "\f2a4"; } + +.fa-hard-of-hearing::before { + content: "\f2a4"; } + +.fa-road-circle-check::before { + content: "\e564"; } + +.fa-dice-five::before { + content: "\f523"; } + +.fa-square-rss::before { + content: "\f143"; } + +.fa-rss-square::before { + content: "\f143"; } + +.fa-land-mine-on::before { + content: "\e51b"; } + +.fa-i-cursor::before { + content: "\f246"; } + +.fa-stamp::before { + content: "\f5bf"; } + +.fa-stairs::before { + content: "\e289"; } + +.fa-i::before { + content: "\49"; } + +.fa-hryvnia-sign::before { + content: "\f6f2"; } + +.fa-hryvnia::before { + content: "\f6f2"; } + +.fa-pills::before { + content: "\f484"; } + +.fa-face-grin-wide::before { + content: "\f581"; } + +.fa-grin-alt::before { + content: "\f581"; } + +.fa-tooth::before { + content: "\f5c9"; } + +.fa-v::before { + content: "\56"; } + +.fa-bangladeshi-taka-sign::before { + content: "\e2e6"; } + +.fa-bicycle::before { + content: "\f206"; } + +.fa-staff-snake::before { + content: "\e579"; } + +.fa-rod-asclepius::before { + content: "\e579"; } + +.fa-rod-snake::before { + content: "\e579"; } + +.fa-staff-aesculapius::before { + content: "\e579"; } + +.fa-head-side-cough-slash::before { + content: "\e062"; } + +.fa-truck-medical::before { + content: "\f0f9"; } + +.fa-ambulance::before { + content: "\f0f9"; } + +.fa-wheat-awn-circle-exclamation::before { + content: "\e598"; } + +.fa-snowman::before { + content: "\f7d0"; } + +.fa-mortar-pestle::before { + content: "\f5a7"; } + +.fa-road-barrier::before { + content: "\e562"; } + +.fa-school::before { + content: "\f549"; } + +.fa-igloo::before { + content: "\f7ae"; } + +.fa-joint::before { + content: "\f595"; } + +.fa-angle-right::before { + content: "\f105"; } + +.fa-horse::before { + content: "\f6f0"; } + +.fa-q::before { + content: "\51"; } + +.fa-g::before { + content: "\47"; } + +.fa-notes-medical::before { + content: "\f481"; } + +.fa-temperature-half::before { + content: "\f2c9"; } + +.fa-temperature-2::before { + content: "\f2c9"; } + +.fa-thermometer-2::before { + content: "\f2c9"; } + +.fa-thermometer-half::before { + content: "\f2c9"; } + +.fa-dong-sign::before { + content: "\e169"; } + +.fa-capsules::before { + content: "\f46b"; } + +.fa-poo-storm::before { + content: "\f75a"; } + +.fa-poo-bolt::before { + content: "\f75a"; } + +.fa-face-frown-open::before { + content: "\f57a"; } + +.fa-frown-open::before { + content: "\f57a"; } + +.fa-hand-point-up::before { + content: "\f0a6"; } + +.fa-money-bill::before { + content: "\f0d6"; } + +.fa-bookmark::before { + content: "\f02e"; } + +.fa-align-justify::before { + content: "\f039"; } + +.fa-umbrella-beach::before { + content: "\f5ca"; } + +.fa-helmet-un::before { + content: "\e503"; } + +.fa-bullseye::before { + content: "\f140"; } + +.fa-bacon::before { + content: "\f7e5"; } + +.fa-hand-point-down::before { + content: "\f0a7"; } + +.fa-arrow-up-from-bracket::before { + content: "\e09a"; } + +.fa-folder::before { + content: "\f07b"; } + +.fa-folder-blank::before { + content: "\f07b"; } + +.fa-file-waveform::before { + content: "\f478"; } + +.fa-file-medical-alt::before { + content: "\f478"; } + +.fa-radiation::before { + content: "\f7b9"; } + +.fa-chart-simple::before { + content: "\e473"; } + +.fa-mars-stroke::before { + content: "\f229"; } + +.fa-vial::before { + content: "\f492"; } + +.fa-gauge::before { + content: "\f624"; } + +.fa-dashboard::before { + content: "\f624"; } + +.fa-gauge-med::before { + content: "\f624"; } + +.fa-tachometer-alt-average::before { + content: "\f624"; } + +.fa-wand-magic-sparkles::before { + content: "\e2ca"; } + +.fa-magic-wand-sparkles::before { + content: "\e2ca"; } + +.fa-e::before { + content: "\45"; } + +.fa-pen-clip::before { + content: "\f305"; } + +.fa-pen-alt::before { + content: "\f305"; } + +.fa-bridge-circle-exclamation::before { + content: "\e4ca"; } + +.fa-user::before { + content: "\f007"; } + +.fa-school-circle-check::before { + content: "\e56b"; } + +.fa-dumpster::before { + content: "\f793"; } + +.fa-van-shuttle::before { + content: "\f5b6"; } + +.fa-shuttle-van::before { + content: "\f5b6"; } + +.fa-building-user::before { + content: "\e4da"; } + +.fa-square-caret-left::before { + content: "\f191"; } + +.fa-caret-square-left::before { + content: "\f191"; } + +.fa-highlighter::before { + content: "\f591"; } + +.fa-key::before { + content: "\f084"; } + +.fa-bullhorn::before { + content: "\f0a1"; } + +.fa-globe::before { + content: "\f0ac"; } + +.fa-synagogue::before { + content: "\f69b"; } + +.fa-person-half-dress::before { + content: "\e548"; } + +.fa-road-bridge::before { + content: "\e563"; } + +.fa-location-arrow::before { + content: "\f124"; } + +.fa-c::before { + content: "\43"; } + +.fa-tablet-button::before { + content: "\f10a"; } + +.fa-building-lock::before { + content: "\e4d6"; } + +.fa-pizza-slice::before { + content: "\f818"; } + +.fa-money-bill-wave::before { + content: "\f53a"; } + +.fa-chart-area::before { + content: "\f1fe"; } + +.fa-area-chart::before { + content: "\f1fe"; } + +.fa-house-flag::before { + content: "\e50d"; } + +.fa-person-circle-minus::before { + content: "\e540"; } + +.fa-ban::before { + content: "\f05e"; } + +.fa-cancel::before { + content: "\f05e"; } + +.fa-camera-rotate::before { + content: "\e0d8"; } + +.fa-spray-can-sparkles::before { + content: "\f5d0"; } + +.fa-air-freshener::before { + content: "\f5d0"; } + +.fa-star::before { + content: "\f005"; } + +.fa-repeat::before { + content: "\f363"; } + +.fa-cross::before { + content: "\f654"; } + +.fa-box::before { + content: "\f466"; } + +.fa-venus-mars::before { + content: "\f228"; } + +.fa-arrow-pointer::before { + content: "\f245"; } + +.fa-mouse-pointer::before { + content: "\f245"; } + +.fa-maximize::before { + content: "\f31e"; } + +.fa-expand-arrows-alt::before { + content: "\f31e"; } + +.fa-charging-station::before { + content: "\f5e7"; } + +.fa-shapes::before { + content: "\f61f"; } + +.fa-triangle-circle-square::before { + content: "\f61f"; } + +.fa-shuffle::before { + content: "\f074"; } + +.fa-random::before { + content: "\f074"; } + +.fa-person-running::before { + content: "\f70c"; } + +.fa-running::before { + content: "\f70c"; } + +.fa-mobile-retro::before { + content: "\e527"; } + +.fa-grip-lines-vertical::before { + content: "\f7a5"; } + +.fa-spider::before { + content: "\f717"; } + +.fa-hands-bound::before { + content: "\e4f9"; } + +.fa-file-invoice-dollar::before { + content: "\f571"; } + +.fa-plane-circle-exclamation::before { + content: "\e556"; } + +.fa-x-ray::before { + content: "\f497"; } + +.fa-spell-check::before { + content: "\f891"; } + +.fa-slash::before { + content: "\f715"; } + +.fa-computer-mouse::before { + content: "\f8cc"; } + +.fa-mouse::before { + content: "\f8cc"; } + +.fa-arrow-right-to-bracket::before { + content: "\f090"; } + +.fa-sign-in::before { + content: "\f090"; } + +.fa-shop-slash::before { + content: "\e070"; } + +.fa-store-alt-slash::before { + content: "\e070"; } + +.fa-server::before { + content: "\f233"; } + +.fa-virus-covid-slash::before { + content: "\e4a9"; } + +.fa-shop-lock::before { + content: "\e4a5"; } + +.fa-hourglass-start::before { + content: "\f251"; } + +.fa-hourglass-1::before { + content: "\f251"; } + +.fa-blender-phone::before { + content: "\f6b6"; } + +.fa-building-wheat::before { + content: "\e4db"; } + +.fa-person-breastfeeding::before { + content: "\e53a"; } + +.fa-right-to-bracket::before { + content: "\f2f6"; } + +.fa-sign-in-alt::before { + content: "\f2f6"; } + +.fa-venus::before { + content: "\f221"; } + +.fa-passport::before { + content: "\f5ab"; } + +.fa-heart-pulse::before { + content: "\f21e"; } + +.fa-heartbeat::before { + content: "\f21e"; } + +.fa-people-carry-box::before { + content: "\f4ce"; } + +.fa-people-carry::before { + content: "\f4ce"; } + +.fa-temperature-high::before { + content: "\f769"; } + +.fa-microchip::before { + content: "\f2db"; } + +.fa-crown::before { + content: "\f521"; } + +.fa-weight-hanging::before { + content: "\f5cd"; } + +.fa-xmarks-lines::before { + content: "\e59a"; } + +.fa-file-prescription::before { + content: "\f572"; } + +.fa-weight-scale::before { + content: "\f496"; } + +.fa-weight::before { + content: "\f496"; } + +.fa-user-group::before { + content: "\f500"; } + +.fa-user-friends::before { + content: "\f500"; } + +.fa-arrow-up-a-z::before { + content: "\f15e"; } + +.fa-sort-alpha-up::before { + content: "\f15e"; } + +.fa-chess-knight::before { + content: "\f441"; } + +.fa-face-laugh-squint::before { + content: "\f59b"; } + +.fa-laugh-squint::before { + content: "\f59b"; } + +.fa-wheelchair::before { + content: "\f193"; } + +.fa-circle-arrow-up::before { + content: "\f0aa"; } + +.fa-arrow-circle-up::before { + content: "\f0aa"; } + +.fa-toggle-on::before { + content: "\f205"; } + +.fa-person-walking::before { + content: "\f554"; } + +.fa-walking::before { + content: "\f554"; } + +.fa-l::before { + content: "\4c"; } + +.fa-fire::before { + content: "\f06d"; } + +.fa-bed-pulse::before { + content: "\f487"; } + +.fa-procedures::before { + content: "\f487"; } + +.fa-shuttle-space::before { + content: "\f197"; } + +.fa-space-shuttle::before { + content: "\f197"; } + +.fa-face-laugh::before { + content: "\f599"; } + +.fa-laugh::before { + content: "\f599"; } + +.fa-folder-open::before { + content: "\f07c"; } + +.fa-heart-circle-plus::before { + content: "\e500"; } + +.fa-code-fork::before { + content: "\e13b"; } + +.fa-city::before { + content: "\f64f"; } + +.fa-microphone-lines::before { + content: "\f3c9"; } + +.fa-microphone-alt::before { + content: "\f3c9"; } + +.fa-pepper-hot::before { + content: "\f816"; } + +.fa-unlock::before { + content: "\f09c"; } + +.fa-colon-sign::before { + content: "\e140"; } + +.fa-headset::before { + content: "\f590"; } + +.fa-store-slash::before { + content: "\e071"; } + +.fa-road-circle-xmark::before { + content: "\e566"; } + +.fa-user-minus::before { + content: "\f503"; } + +.fa-mars-stroke-up::before { + content: "\f22a"; } + +.fa-mars-stroke-v::before { + content: "\f22a"; } + +.fa-champagne-glasses::before { + content: "\f79f"; } + +.fa-glass-cheers::before { + content: "\f79f"; } + +.fa-clipboard::before { + content: "\f328"; } + +.fa-house-circle-exclamation::before { + content: "\e50a"; } + +.fa-file-arrow-up::before { + content: "\f574"; } + +.fa-file-upload::before { + content: "\f574"; } + +.fa-wifi::before { + content: "\f1eb"; } + +.fa-wifi-3::before { + content: "\f1eb"; } + +.fa-wifi-strong::before { + content: "\f1eb"; } + +.fa-bath::before { + content: "\f2cd"; } + +.fa-bathtub::before { + content: "\f2cd"; } + +.fa-underline::before { + content: "\f0cd"; } + +.fa-user-pen::before { + content: "\f4ff"; } + +.fa-user-edit::before { + content: "\f4ff"; } + +.fa-signature::before { + content: "\f5b7"; } + +.fa-stroopwafel::before { + content: "\f551"; } + +.fa-bold::before { + content: "\f032"; } + +.fa-anchor-lock::before { + content: "\e4ad"; } + +.fa-building-ngo::before { + content: "\e4d7"; } + +.fa-manat-sign::before { + content: "\e1d5"; } + +.fa-not-equal::before { + content: "\f53e"; } + +.fa-border-top-left::before { + content: "\f853"; } + +.fa-border-style::before { + content: "\f853"; } + +.fa-map-location-dot::before { + content: "\f5a0"; } + +.fa-map-marked-alt::before { + content: "\f5a0"; } + +.fa-jedi::before { + content: "\f669"; } + +.fa-square-poll-vertical::before { + content: "\f681"; } + +.fa-poll::before { + content: "\f681"; } + +.fa-mug-hot::before { + content: "\f7b6"; } + +.fa-car-battery::before { + content: "\f5df"; } + +.fa-battery-car::before { + content: "\f5df"; } + +.fa-gift::before { + content: "\f06b"; } + +.fa-dice-two::before { + content: "\f528"; } + +.fa-chess-queen::before { + content: "\f445"; } + +.fa-glasses::before { + content: "\f530"; } + +.fa-chess-board::before { + content: "\f43c"; } + +.fa-building-circle-check::before { + content: "\e4d2"; } + +.fa-person-chalkboard::before { + content: "\e53d"; } + +.fa-mars-stroke-right::before { + content: "\f22b"; } + +.fa-mars-stroke-h::before { + content: "\f22b"; } + +.fa-hand-back-fist::before { + content: "\f255"; } + +.fa-hand-rock::before { + content: "\f255"; } + +.fa-square-caret-up::before { + content: "\f151"; } + +.fa-caret-square-up::before { + content: "\f151"; } + +.fa-cloud-showers-water::before { + content: "\e4e4"; } + +.fa-chart-bar::before { + content: "\f080"; } + +.fa-bar-chart::before { + content: "\f080"; } + +.fa-hands-bubbles::before { + content: "\e05e"; } + +.fa-hands-wash::before { + content: "\e05e"; } + +.fa-less-than-equal::before { + content: "\f537"; } + +.fa-train::before { + content: "\f238"; } + +.fa-eye-low-vision::before { + content: "\f2a8"; } + +.fa-low-vision::before { + content: "\f2a8"; } + +.fa-crow::before { + content: "\f520"; } + +.fa-sailboat::before { + content: "\e445"; } + +.fa-window-restore::before { + content: "\f2d2"; } + +.fa-square-plus::before { + content: "\f0fe"; } + +.fa-plus-square::before { + content: "\f0fe"; } + +.fa-torii-gate::before { + content: "\f6a1"; } + +.fa-frog::before { + content: "\f52e"; } + +.fa-bucket::before { + content: "\e4cf"; } + +.fa-image::before { + content: "\f03e"; } + +.fa-microphone::before { + content: "\f130"; } + +.fa-cow::before { + content: "\f6c8"; } + +.fa-caret-up::before { + content: "\f0d8"; } + +.fa-screwdriver::before { + content: "\f54a"; } + +.fa-folder-closed::before { + content: "\e185"; } + +.fa-house-tsunami::before { + content: "\e515"; } + +.fa-square-nfi::before { + content: "\e576"; } + +.fa-arrow-up-from-ground-water::before { + content: "\e4b5"; } + +.fa-martini-glass::before { + content: "\f57b"; } + +.fa-glass-martini-alt::before { + content: "\f57b"; } + +.fa-rotate-left::before { + content: "\f2ea"; } + +.fa-rotate-back::before { + content: "\f2ea"; } + +.fa-rotate-backward::before { + content: "\f2ea"; } + +.fa-undo-alt::before { + content: "\f2ea"; } + +.fa-table-columns::before { + content: "\f0db"; } + +.fa-columns::before { + content: "\f0db"; } + +.fa-lemon::before { + content: "\f094"; } + +.fa-head-side-mask::before { + content: "\e063"; } + +.fa-handshake::before { + content: "\f2b5"; } + +.fa-gem::before { + content: "\f3a5"; } + +.fa-dolly::before { + content: "\f472"; } + +.fa-dolly-box::before { + content: "\f472"; } + +.fa-smoking::before { + content: "\f48d"; } + +.fa-minimize::before { + content: "\f78c"; } + +.fa-compress-arrows-alt::before { + content: "\f78c"; } + +.fa-monument::before { + content: "\f5a6"; } + +.fa-snowplow::before { + content: "\f7d2"; } + +.fa-angles-right::before { + content: "\f101"; } + +.fa-angle-double-right::before { + content: "\f101"; } + +.fa-cannabis::before { + content: "\f55f"; } + +.fa-circle-play::before { + content: "\f144"; } + +.fa-play-circle::before { + content: "\f144"; } + +.fa-tablets::before { + content: "\f490"; } + +.fa-ethernet::before { + content: "\f796"; } + +.fa-euro-sign::before { + content: "\f153"; } + +.fa-eur::before { + content: "\f153"; } + +.fa-euro::before { + content: "\f153"; } + +.fa-chair::before { + content: "\f6c0"; } + +.fa-circle-check::before { + content: "\f058"; } + +.fa-check-circle::before { + content: "\f058"; } + +.fa-circle-stop::before { + content: "\f28d"; } + +.fa-stop-circle::before { + content: "\f28d"; } + +.fa-compass-drafting::before { + content: "\f568"; } + +.fa-drafting-compass::before { + content: "\f568"; } + +.fa-plate-wheat::before { + content: "\e55a"; } + +.fa-icicles::before { + content: "\f7ad"; } + +.fa-person-shelter::before { + content: "\e54f"; } + +.fa-neuter::before { + content: "\f22c"; } + +.fa-id-badge::before { + content: "\f2c1"; } + +.fa-marker::before { + content: "\f5a1"; } + +.fa-face-laugh-beam::before { + content: "\f59a"; } + +.fa-laugh-beam::before { + content: "\f59a"; } + +.fa-helicopter-symbol::before { + content: "\e502"; } + +.fa-universal-access::before { + content: "\f29a"; } + +.fa-circle-chevron-up::before { + content: "\f139"; } + +.fa-chevron-circle-up::before { + content: "\f139"; } + +.fa-lari-sign::before { + content: "\e1c8"; } + +.fa-volcano::before { + content: "\f770"; } + +.fa-person-walking-dashed-line-arrow-right::before { + content: "\e553"; } + +.fa-sterling-sign::before { + content: "\f154"; } + +.fa-gbp::before { + content: "\f154"; } + +.fa-pound-sign::before { + content: "\f154"; } + +.fa-viruses::before { + content: "\e076"; } + +.fa-square-person-confined::before { + content: "\e577"; } + +.fa-user-tie::before { + content: "\f508"; } + +.fa-arrow-down-long::before { + content: "\f175"; } + +.fa-long-arrow-down::before { + content: "\f175"; } + +.fa-tent-arrow-down-to-line::before { + content: "\e57e"; } + +.fa-certificate::before { + content: "\f0a3"; } + +.fa-reply-all::before { + content: "\f122"; } + +.fa-mail-reply-all::before { + content: "\f122"; } + +.fa-suitcase::before { + content: "\f0f2"; } + +.fa-person-skating::before { + content: "\f7c5"; } + +.fa-skating::before { + content: "\f7c5"; } + +.fa-filter-circle-dollar::before { + content: "\f662"; } + +.fa-funnel-dollar::before { + content: "\f662"; } + +.fa-camera-retro::before { + content: "\f083"; } + +.fa-circle-arrow-down::before { + content: "\f0ab"; } + +.fa-arrow-circle-down::before { + content: "\f0ab"; } + +.fa-file-import::before { + content: "\f56f"; } + +.fa-arrow-right-to-file::before { + content: "\f56f"; } + +.fa-square-arrow-up-right::before { + content: "\f14c"; } + +.fa-external-link-square::before { + content: "\f14c"; } + +.fa-box-open::before { + content: "\f49e"; } + +.fa-scroll::before { + content: "\f70e"; } + +.fa-spa::before { + content: "\f5bb"; } + +.fa-location-pin-lock::before { + content: "\e51f"; } + +.fa-pause::before { + content: "\f04c"; } + +.fa-hill-avalanche::before { + content: "\e507"; } + +.fa-temperature-empty::before { + content: "\f2cb"; } + +.fa-temperature-0::before { + content: "\f2cb"; } + +.fa-thermometer-0::before { + content: "\f2cb"; } + +.fa-thermometer-empty::before { + content: "\f2cb"; } + +.fa-bomb::before { + content: "\f1e2"; } + +.fa-registered::before { + content: "\f25d"; } + +.fa-address-card::before { + content: "\f2bb"; } + +.fa-contact-card::before { + content: "\f2bb"; } + +.fa-vcard::before { + content: "\f2bb"; } + +.fa-scale-unbalanced-flip::before { + content: "\f516"; } + +.fa-balance-scale-right::before { + content: "\f516"; } + +.fa-subscript::before { + content: "\f12c"; } + +.fa-diamond-turn-right::before { + content: "\f5eb"; } + +.fa-directions::before { + content: "\f5eb"; } + +.fa-burst::before { + content: "\e4dc"; } + +.fa-house-laptop::before { + content: "\e066"; } + +.fa-laptop-house::before { + content: "\e066"; } + +.fa-face-tired::before { + content: "\f5c8"; } + +.fa-tired::before { + content: "\f5c8"; } + +.fa-money-bills::before { + content: "\e1f3"; } + +.fa-smog::before { + content: "\f75f"; } + +.fa-crutch::before { + content: "\f7f7"; } + +.fa-cloud-arrow-up::before { + content: "\f0ee"; } + +.fa-cloud-upload::before { + content: "\f0ee"; } + +.fa-cloud-upload-alt::before { + content: "\f0ee"; } + +.fa-palette::before { + content: "\f53f"; } + +.fa-arrows-turn-right::before { + content: "\e4c0"; } + +.fa-vest::before { + content: "\e085"; } + +.fa-ferry::before { + content: "\e4ea"; } + +.fa-arrows-down-to-people::before { + content: "\e4b9"; } + +.fa-seedling::before { + content: "\f4d8"; } + +.fa-sprout::before { + content: "\f4d8"; } + +.fa-left-right::before { + content: "\f337"; } + +.fa-arrows-alt-h::before { + content: "\f337"; } + +.fa-boxes-packing::before { + content: "\e4c7"; } + +.fa-circle-arrow-left::before { + content: "\f0a8"; } + +.fa-arrow-circle-left::before { + content: "\f0a8"; } + +.fa-group-arrows-rotate::before { + content: "\e4f6"; } + +.fa-bowl-food::before { + content: "\e4c6"; } + +.fa-candy-cane::before { + content: "\f786"; } + +.fa-arrow-down-wide-short::before { + content: "\f160"; } + +.fa-sort-amount-asc::before { + content: "\f160"; } + +.fa-sort-amount-down::before { + content: "\f160"; } + +.fa-cloud-bolt::before { + content: "\f76c"; } + +.fa-thunderstorm::before { + content: "\f76c"; } + +.fa-text-slash::before { + content: "\f87d"; } + +.fa-remove-format::before { + content: "\f87d"; } + +.fa-face-smile-wink::before { + content: "\f4da"; } + +.fa-smile-wink::before { + content: "\f4da"; } + +.fa-file-word::before { + content: "\f1c2"; } + +.fa-file-powerpoint::before { + content: "\f1c4"; } + +.fa-arrows-left-right::before { + content: "\f07e"; } + +.fa-arrows-h::before { + content: "\f07e"; } + +.fa-house-lock::before { + content: "\e510"; } + +.fa-cloud-arrow-down::before { + content: "\f0ed"; } + +.fa-cloud-download::before { + content: "\f0ed"; } + +.fa-cloud-download-alt::before { + content: "\f0ed"; } + +.fa-children::before { + content: "\e4e1"; } + +.fa-chalkboard::before { + content: "\f51b"; } + +.fa-blackboard::before { + content: "\f51b"; } + +.fa-user-large-slash::before { + content: "\f4fa"; } + +.fa-user-alt-slash::before { + content: "\f4fa"; } + +.fa-envelope-open::before { + content: "\f2b6"; } + +.fa-handshake-simple-slash::before { + content: "\e05f"; } + +.fa-handshake-alt-slash::before { + content: "\e05f"; } + +.fa-mattress-pillow::before { + content: "\e525"; } + +.fa-guarani-sign::before { + content: "\e19a"; } + +.fa-arrows-rotate::before { + content: "\f021"; } + +.fa-refresh::before { + content: "\f021"; } + +.fa-sync::before { + content: "\f021"; } + +.fa-fire-extinguisher::before { + content: "\f134"; } + +.fa-cruzeiro-sign::before { + content: "\e152"; } + +.fa-greater-than-equal::before { + content: "\f532"; } + +.fa-shield-halved::before { + content: "\f3ed"; } + +.fa-shield-alt::before { + content: "\f3ed"; } + +.fa-book-atlas::before { + content: "\f558"; } + +.fa-atlas::before { + content: "\f558"; } + +.fa-virus::before { + content: "\e074"; } + +.fa-envelope-circle-check::before { + content: "\e4e8"; } + +.fa-layer-group::before { + content: "\f5fd"; } + +.fa-arrows-to-dot::before { + content: "\e4be"; } + +.fa-archway::before { + content: "\f557"; } + +.fa-heart-circle-check::before { + content: "\e4fd"; } + +.fa-house-chimney-crack::before { + content: "\f6f1"; } + +.fa-house-damage::before { + content: "\f6f1"; } + +.fa-file-zipper::before { + content: "\f1c6"; } + +.fa-file-archive::before { + content: "\f1c6"; } + +.fa-square::before { + content: "\f0c8"; } + +.fa-martini-glass-empty::before { + content: "\f000"; } + +.fa-glass-martini::before { + content: "\f000"; } + +.fa-couch::before { + content: "\f4b8"; } + +.fa-cedi-sign::before { + content: "\e0df"; } + +.fa-italic::before { + content: "\f033"; } + +.fa-church::before { + content: "\f51d"; } + +.fa-comments-dollar::before { + content: "\f653"; } + +.fa-democrat::before { + content: "\f747"; } + +.fa-z::before { + content: "\5a"; } + +.fa-person-skiing::before { + content: "\f7c9"; } + +.fa-skiing::before { + content: "\f7c9"; } + +.fa-road-lock::before { + content: "\e567"; } + +.fa-a::before { + content: "\41"; } + +.fa-temperature-arrow-down::before { + content: "\e03f"; } + +.fa-temperature-down::before { + content: "\e03f"; } + +.fa-feather-pointed::before { + content: "\f56b"; } + +.fa-feather-alt::before { + content: "\f56b"; } + +.fa-p::before { + content: "\50"; } + +.fa-snowflake::before { + content: "\f2dc"; } + +.fa-newspaper::before { + content: "\f1ea"; } + +.fa-rectangle-ad::before { + content: "\f641"; } + +.fa-ad::before { + content: "\f641"; } + +.fa-circle-arrow-right::before { + content: "\f0a9"; } + +.fa-arrow-circle-right::before { + content: "\f0a9"; } + +.fa-filter-circle-xmark::before { + content: "\e17b"; } + +.fa-locust::before { + content: "\e520"; } + +.fa-sort::before { + content: "\f0dc"; } + +.fa-unsorted::before { + content: "\f0dc"; } + +.fa-list-ol::before { + content: "\f0cb"; } + +.fa-list-1-2::before { + content: "\f0cb"; } + +.fa-list-numeric::before { + content: "\f0cb"; } + +.fa-person-dress-burst::before { + content: "\e544"; } + +.fa-money-check-dollar::before { + content: "\f53d"; } + +.fa-money-check-alt::before { + content: "\f53d"; } + +.fa-vector-square::before { + content: "\f5cb"; } + +.fa-bread-slice::before { + content: "\f7ec"; } + +.fa-language::before { + content: "\f1ab"; } + +.fa-face-kiss-wink-heart::before { + content: "\f598"; } + +.fa-kiss-wink-heart::before { + content: "\f598"; } + +.fa-filter::before { + content: "\f0b0"; } + +.fa-question::before { + content: "\3f"; } + +.fa-file-signature::before { + content: "\f573"; } + +.fa-up-down-left-right::before { + content: "\f0b2"; } + +.fa-arrows-alt::before { + content: "\f0b2"; } + +.fa-house-chimney-user::before { + content: "\e065"; } + +.fa-hand-holding-heart::before { + content: "\f4be"; } + +.fa-puzzle-piece::before { + content: "\f12e"; } + +.fa-money-check::before { + content: "\f53c"; } + +.fa-star-half-stroke::before { + content: "\f5c0"; } + +.fa-star-half-alt::before { + content: "\f5c0"; } + +.fa-code::before { + content: "\f121"; } + +.fa-whiskey-glass::before { + content: "\f7a0"; } + +.fa-glass-whiskey::before { + content: "\f7a0"; } + +.fa-building-circle-exclamation::before { + content: "\e4d3"; } + +.fa-magnifying-glass-chart::before { + content: "\e522"; } + +.fa-arrow-up-right-from-square::before { + content: "\f08e"; } + +.fa-external-link::before { + content: "\f08e"; } + +.fa-cubes-stacked::before { + content: "\e4e6"; } + +.fa-won-sign::before { + content: "\f159"; } + +.fa-krw::before { + content: "\f159"; } + +.fa-won::before { + content: "\f159"; } + +.fa-virus-covid::before { + content: "\e4a8"; } + +.fa-austral-sign::before { + content: "\e0a9"; } + +.fa-f::before { + content: "\46"; } + +.fa-leaf::before { + content: "\f06c"; } + +.fa-road::before { + content: "\f018"; } + +.fa-taxi::before { + content: "\f1ba"; } + +.fa-cab::before { + content: "\f1ba"; } + +.fa-person-circle-plus::before { + content: "\e541"; } + +.fa-chart-pie::before { + content: "\f200"; } + +.fa-pie-chart::before { + content: "\f200"; } + +.fa-bolt-lightning::before { + content: "\e0b7"; } + +.fa-sack-xmark::before { + content: "\e56a"; } + +.fa-file-excel::before { + content: "\f1c3"; } + +.fa-file-contract::before { + content: "\f56c"; } + +.fa-fish-fins::before { + content: "\e4f2"; } + +.fa-building-flag::before { + content: "\e4d5"; } + +.fa-face-grin-beam::before { + content: "\f582"; } + +.fa-grin-beam::before { + content: "\f582"; } + +.fa-object-ungroup::before { + content: "\f248"; } + +.fa-poop::before { + content: "\f619"; } + +.fa-location-pin::before { + content: "\f041"; } + +.fa-map-marker::before { + content: "\f041"; } + +.fa-kaaba::before { + content: "\f66b"; } + +.fa-toilet-paper::before { + content: "\f71e"; } + +.fa-helmet-safety::before { + content: "\f807"; } + +.fa-hard-hat::before { + content: "\f807"; } + +.fa-hat-hard::before { + content: "\f807"; } + +.fa-eject::before { + content: "\f052"; } + +.fa-circle-right::before { + content: "\f35a"; } + +.fa-arrow-alt-circle-right::before { + content: "\f35a"; } + +.fa-plane-circle-check::before { + content: "\e555"; } + +.fa-face-rolling-eyes::before { + content: "\f5a5"; } + +.fa-meh-rolling-eyes::before { + content: "\f5a5"; } + +.fa-object-group::before { + content: "\f247"; } + +.fa-chart-line::before { + content: "\f201"; } + +.fa-line-chart::before { + content: "\f201"; } + +.fa-mask-ventilator::before { + content: "\e524"; } + +.fa-arrow-right::before { + content: "\f061"; } + +.fa-signs-post::before { + content: "\f277"; } + +.fa-map-signs::before { + content: "\f277"; } + +.fa-cash-register::before { + content: "\f788"; } + +.fa-person-circle-question::before { + content: "\e542"; } + +.fa-h::before { + content: "\48"; } + +.fa-tarp::before { + content: "\e57b"; } + +.fa-screwdriver-wrench::before { + content: "\f7d9"; } + +.fa-tools::before { + content: "\f7d9"; } + +.fa-arrows-to-eye::before { + content: "\e4bf"; } + +.fa-plug-circle-bolt::before { + content: "\e55b"; } + +.fa-heart::before { + content: "\f004"; } + +.fa-mars-and-venus::before { + content: "\f224"; } + +.fa-house-user::before { + content: "\e1b0"; } + +.fa-home-user::before { + content: "\e1b0"; } + +.fa-dumpster-fire::before { + content: "\f794"; } + +.fa-house-crack::before { + content: "\e3b1"; } + +.fa-martini-glass-citrus::before { + content: "\f561"; } + +.fa-cocktail::before { + content: "\f561"; } + +.fa-face-surprise::before { + content: "\f5c2"; } + +.fa-surprise::before { + content: "\f5c2"; } + +.fa-bottle-water::before { + content: "\e4c5"; } + +.fa-circle-pause::before { + content: "\f28b"; } + +.fa-pause-circle::before { + content: "\f28b"; } + +.fa-toilet-paper-slash::before { + content: "\e072"; } + +.fa-apple-whole::before { + content: "\f5d1"; } + +.fa-apple-alt::before { + content: "\f5d1"; } + +.fa-kitchen-set::before { + content: "\e51a"; } + +.fa-r::before { + content: "\52"; } + +.fa-temperature-quarter::before { + content: "\f2ca"; } + +.fa-temperature-1::before { + content: "\f2ca"; } + +.fa-thermometer-1::before { + content: "\f2ca"; } + +.fa-thermometer-quarter::before { + content: "\f2ca"; } + +.fa-cube::before { + content: "\f1b2"; } + +.fa-bitcoin-sign::before { + content: "\e0b4"; } + +.fa-shield-dog::before { + content: "\e573"; } + +.fa-solar-panel::before { + content: "\f5ba"; } + +.fa-lock-open::before { + content: "\f3c1"; } + +.fa-elevator::before { + content: "\e16d"; } + +.fa-money-bill-transfer::before { + content: "\e528"; } + +.fa-money-bill-trend-up::before { + content: "\e529"; } + +.fa-house-flood-water-circle-arrow-right::before { + content: "\e50f"; } + +.fa-square-poll-horizontal::before { + content: "\f682"; } + +.fa-poll-h::before { + content: "\f682"; } + +.fa-circle::before { + content: "\f111"; } + +.fa-backward-fast::before { + content: "\f049"; } + +.fa-fast-backward::before { + content: "\f049"; } + +.fa-recycle::before { + content: "\f1b8"; } + +.fa-user-astronaut::before { + content: "\f4fb"; } + +.fa-plane-slash::before { + content: "\e069"; } + +.fa-trademark::before { + content: "\f25c"; } + +.fa-basketball::before { + content: "\f434"; } + +.fa-basketball-ball::before { + content: "\f434"; } + +.fa-satellite-dish::before { + content: "\f7c0"; } + +.fa-circle-up::before { + content: "\f35b"; } + +.fa-arrow-alt-circle-up::before { + content: "\f35b"; } + +.fa-mobile-screen-button::before { + content: "\f3cd"; } + +.fa-mobile-alt::before { + content: "\f3cd"; } + +.fa-volume-high::before { + content: "\f028"; } + +.fa-volume-up::before { + content: "\f028"; } + +.fa-users-rays::before { + content: "\e593"; } + +.fa-wallet::before { + content: "\f555"; } + +.fa-clipboard-check::before { + content: "\f46c"; } + +.fa-file-audio::before { + content: "\f1c7"; } + +.fa-burger::before { + content: "\f805"; } + +.fa-hamburger::before { + content: "\f805"; } + +.fa-wrench::before { + content: "\f0ad"; } + +.fa-bugs::before { + content: "\e4d0"; } + +.fa-rupee-sign::before { + content: "\f156"; } + +.fa-rupee::before { + content: "\f156"; } + +.fa-file-image::before { + content: "\f1c5"; } + +.fa-circle-question::before { + content: "\f059"; } + +.fa-question-circle::before { + content: "\f059"; } + +.fa-plane-departure::before { + content: "\f5b0"; } + +.fa-handshake-slash::before { + content: "\e060"; } + +.fa-book-bookmark::before { + content: "\e0bb"; } + +.fa-code-branch::before { + content: "\f126"; } + +.fa-hat-cowboy::before { + content: "\f8c0"; } + +.fa-bridge::before { + content: "\e4c8"; } + +.fa-phone-flip::before { + content: "\f879"; } + +.fa-phone-alt::before { + content: "\f879"; } + +.fa-truck-front::before { + content: "\e2b7"; } + +.fa-cat::before { + content: "\f6be"; } + +.fa-anchor-circle-exclamation::before { + content: "\e4ab"; } + +.fa-truck-field::before { + content: "\e58d"; } + +.fa-route::before { + content: "\f4d7"; } + +.fa-clipboard-question::before { + content: "\e4e3"; } + +.fa-panorama::before { + content: "\e209"; } + +.fa-comment-medical::before { + content: "\f7f5"; } + +.fa-teeth-open::before { + content: "\f62f"; } + +.fa-file-circle-minus::before { + content: "\e4ed"; } + +.fa-tags::before { + content: "\f02c"; } + +.fa-wine-glass::before { + content: "\f4e3"; } + +.fa-forward-fast::before { + content: "\f050"; } + +.fa-fast-forward::before { + content: "\f050"; } + +.fa-face-meh-blank::before { + content: "\f5a4"; } + +.fa-meh-blank::before { + content: "\f5a4"; } + +.fa-square-parking::before { + content: "\f540"; } + +.fa-parking::before { + content: "\f540"; } + +.fa-house-signal::before { + content: "\e012"; } + +.fa-bars-progress::before { + content: "\f828"; } + +.fa-tasks-alt::before { + content: "\f828"; } + +.fa-faucet-drip::before { + content: "\e006"; } + +.fa-cart-flatbed::before { + content: "\f474"; } + +.fa-dolly-flatbed::before { + content: "\f474"; } + +.fa-ban-smoking::before { + content: "\f54d"; } + +.fa-smoking-ban::before { + content: "\f54d"; } + +.fa-terminal::before { + content: "\f120"; } + +.fa-mobile-button::before { + content: "\f10b"; } + +.fa-house-medical-flag::before { + content: "\e514"; } + +.fa-basket-shopping::before { + content: "\f291"; } + +.fa-shopping-basket::before { + content: "\f291"; } + +.fa-tape::before { + content: "\f4db"; } + +.fa-bus-simple::before { + content: "\f55e"; } + +.fa-bus-alt::before { + content: "\f55e"; } + +.fa-eye::before { + content: "\f06e"; } + +.fa-face-sad-cry::before { + content: "\f5b3"; } + +.fa-sad-cry::before { + content: "\f5b3"; } + +.fa-audio-description::before { + content: "\f29e"; } + +.fa-person-military-to-person::before { + content: "\e54c"; } + +.fa-file-shield::before { + content: "\e4f0"; } + +.fa-user-slash::before { + content: "\f506"; } + +.fa-pen::before { + content: "\f304"; } + +.fa-tower-observation::before { + content: "\e586"; } + +.fa-file-code::before { + content: "\f1c9"; } + +.fa-signal::before { + content: "\f012"; } + +.fa-signal-5::before { + content: "\f012"; } + +.fa-signal-perfect::before { + content: "\f012"; } + +.fa-bus::before { + content: "\f207"; } + +.fa-heart-circle-xmark::before { + content: "\e501"; } + +.fa-house-chimney::before { + content: "\e3af"; } + +.fa-home-lg::before { + content: "\e3af"; } + +.fa-window-maximize::before { + content: "\f2d0"; } + +.fa-face-frown::before { + content: "\f119"; } + +.fa-frown::before { + content: "\f119"; } + +.fa-prescription::before { + content: "\f5b1"; } + +.fa-shop::before { + content: "\f54f"; } + +.fa-store-alt::before { + content: "\f54f"; } + +.fa-floppy-disk::before { + content: "\f0c7"; } + +.fa-save::before { + content: "\f0c7"; } + +.fa-vihara::before { + content: "\f6a7"; } + +.fa-scale-unbalanced::before { + content: "\f515"; } + +.fa-balance-scale-left::before { + content: "\f515"; } + +.fa-sort-up::before { + content: "\f0de"; } + +.fa-sort-asc::before { + content: "\f0de"; } + +.fa-comment-dots::before { + content: "\f4ad"; } + +.fa-commenting::before { + content: "\f4ad"; } + +.fa-plant-wilt::before { + content: "\e5aa"; } + +.fa-diamond::before { + content: "\f219"; } + +.fa-face-grin-squint::before { + content: "\f585"; } + +.fa-grin-squint::before { + content: "\f585"; } + +.fa-hand-holding-dollar::before { + content: "\f4c0"; } + +.fa-hand-holding-usd::before { + content: "\f4c0"; } + +.fa-bacterium::before { + content: "\e05a"; } + +.fa-hand-pointer::before { + content: "\f25a"; } + +.fa-drum-steelpan::before { + content: "\f56a"; } + +.fa-hand-scissors::before { + content: "\f257"; } + +.fa-hands-praying::before { + content: "\f684"; } + +.fa-praying-hands::before { + content: "\f684"; } + +.fa-arrow-rotate-right::before { + content: "\f01e"; } + +.fa-arrow-right-rotate::before { + content: "\f01e"; } + +.fa-arrow-rotate-forward::before { + content: "\f01e"; } + +.fa-redo::before { + content: "\f01e"; } + +.fa-biohazard::before { + content: "\f780"; } + +.fa-location-crosshairs::before { + content: "\f601"; } + +.fa-location::before { + content: "\f601"; } + +.fa-mars-double::before { + content: "\f227"; } + +.fa-child-dress::before { + content: "\e59c"; } + +.fa-users-between-lines::before { + content: "\e591"; } + +.fa-lungs-virus::before { + content: "\e067"; } + +.fa-face-grin-tears::before { + content: "\f588"; } + +.fa-grin-tears::before { + content: "\f588"; } + +.fa-phone::before { + content: "\f095"; } + +.fa-calendar-xmark::before { + content: "\f273"; } + +.fa-calendar-times::before { + content: "\f273"; } + +.fa-child-reaching::before { + content: "\e59d"; } + +.fa-head-side-virus::before { + content: "\e064"; } + +.fa-user-gear::before { + content: "\f4fe"; } + +.fa-user-cog::before { + content: "\f4fe"; } + +.fa-arrow-up-1-9::before { + content: "\f163"; } + +.fa-sort-numeric-up::before { + content: "\f163"; } + +.fa-door-closed::before { + content: "\f52a"; } + +.fa-shield-virus::before { + content: "\e06c"; } + +.fa-dice-six::before { + content: "\f526"; } + +.fa-mosquito-net::before { + content: "\e52c"; } + +.fa-bridge-water::before { + content: "\e4ce"; } + +.fa-person-booth::before { + content: "\f756"; } + +.fa-text-width::before { + content: "\f035"; } + +.fa-hat-wizard::before { + content: "\f6e8"; } + +.fa-pen-fancy::before { + content: "\f5ac"; } + +.fa-person-digging::before { + content: "\f85e"; } + +.fa-digging::before { + content: "\f85e"; } + +.fa-trash::before { + content: "\f1f8"; } + +.fa-gauge-simple::before { + content: "\f629"; } + +.fa-gauge-simple-med::before { + content: "\f629"; } + +.fa-tachometer-average::before { + content: "\f629"; } + +.fa-book-medical::before { + content: "\f7e6"; } + +.fa-poo::before { + content: "\f2fe"; } + +.fa-quote-right::before { + content: "\f10e"; } + +.fa-quote-right-alt::before { + content: "\f10e"; } + +.fa-shirt::before { + content: "\f553"; } + +.fa-t-shirt::before { + content: "\f553"; } + +.fa-tshirt::before { + content: "\f553"; } + +.fa-cubes::before { + content: "\f1b3"; } + +.fa-divide::before { + content: "\f529"; } + +.fa-tenge-sign::before { + content: "\f7d7"; } + +.fa-tenge::before { + content: "\f7d7"; } + +.fa-headphones::before { + content: "\f025"; } + +.fa-hands-holding::before { + content: "\f4c2"; } + +.fa-hands-clapping::before { + content: "\e1a8"; } + +.fa-republican::before { + content: "\f75e"; } + +.fa-arrow-left::before { + content: "\f060"; } + +.fa-person-circle-xmark::before { + content: "\e543"; } + +.fa-ruler::before { + content: "\f545"; } + +.fa-align-left::before { + content: "\f036"; } + +.fa-dice-d6::before { + content: "\f6d1"; } + +.fa-restroom::before { + content: "\f7bd"; } + +.fa-j::before { + content: "\4a"; } + +.fa-users-viewfinder::before { + content: "\e595"; } + +.fa-file-video::before { + content: "\f1c8"; } + +.fa-up-right-from-square::before { + content: "\f35d"; } + +.fa-external-link-alt::before { + content: "\f35d"; } + +.fa-table-cells::before { + content: "\f00a"; } + +.fa-th::before { + content: "\f00a"; } + +.fa-file-pdf::before { + content: "\f1c1"; } + +.fa-book-bible::before { + content: "\f647"; } + +.fa-bible::before { + content: "\f647"; } + +.fa-o::before { + content: "\4f"; } + +.fa-suitcase-medical::before { + content: "\f0fa"; } + +.fa-medkit::before { + content: "\f0fa"; } + +.fa-user-secret::before { + content: "\f21b"; } + +.fa-otter::before { + content: "\f700"; } + +.fa-person-dress::before { + content: "\f182"; } + +.fa-female::before { + content: "\f182"; } + +.fa-comment-dollar::before { + content: "\f651"; } + +.fa-business-time::before { + content: "\f64a"; } + +.fa-briefcase-clock::before { + content: "\f64a"; } + +.fa-table-cells-large::before { + content: "\f009"; } + +.fa-th-large::before { + content: "\f009"; } + +.fa-book-tanakh::before { + content: "\f827"; } + +.fa-tanakh::before { + content: "\f827"; } + +.fa-phone-volume::before { + content: "\f2a0"; } + +.fa-volume-control-phone::before { + content: "\f2a0"; } + +.fa-hat-cowboy-side::before { + content: "\f8c1"; } + +.fa-clipboard-user::before { + content: "\f7f3"; } + +.fa-child::before { + content: "\f1ae"; } + +.fa-lira-sign::before { + content: "\f195"; } + +.fa-satellite::before { + content: "\f7bf"; } + +.fa-plane-lock::before { + content: "\e558"; } + +.fa-tag::before { + content: "\f02b"; } + +.fa-comment::before { + content: "\f075"; } + +.fa-cake-candles::before { + content: "\f1fd"; } + +.fa-birthday-cake::before { + content: "\f1fd"; } + +.fa-cake::before { + content: "\f1fd"; } + +.fa-envelope::before { + content: "\f0e0"; } + +.fa-angles-up::before { + content: "\f102"; } + +.fa-angle-double-up::before { + content: "\f102"; } + +.fa-paperclip::before { + content: "\f0c6"; } + +.fa-arrow-right-to-city::before { + content: "\e4b3"; } + +.fa-ribbon::before { + content: "\f4d6"; } + +.fa-lungs::before { + content: "\f604"; } + +.fa-arrow-up-9-1::before { + content: "\f887"; } + +.fa-sort-numeric-up-alt::before { + content: "\f887"; } + +.fa-litecoin-sign::before { + content: "\e1d3"; } + +.fa-border-none::before { + content: "\f850"; } + +.fa-circle-nodes::before { + content: "\e4e2"; } + +.fa-parachute-box::before { + content: "\f4cd"; } + +.fa-indent::before { + content: "\f03c"; } + +.fa-truck-field-un::before { + content: "\e58e"; } + +.fa-hourglass::before { + content: "\f254"; } + +.fa-hourglass-empty::before { + content: "\f254"; } + +.fa-mountain::before { + content: "\f6fc"; } + +.fa-user-doctor::before { + content: "\f0f0"; } + +.fa-user-md::before { + content: "\f0f0"; } + +.fa-circle-info::before { + content: "\f05a"; } + +.fa-info-circle::before { + content: "\f05a"; } + +.fa-cloud-meatball::before { + content: "\f73b"; } + +.fa-camera::before { + content: "\f030"; } + +.fa-camera-alt::before { + content: "\f030"; } + +.fa-square-virus::before { + content: "\e578"; } + +.fa-meteor::before { + content: "\f753"; } + +.fa-car-on::before { + content: "\e4dd"; } + +.fa-sleigh::before { + content: "\f7cc"; } + +.fa-arrow-down-1-9::before { + content: "\f162"; } + +.fa-sort-numeric-asc::before { + content: "\f162"; } + +.fa-sort-numeric-down::before { + content: "\f162"; } + +.fa-hand-holding-droplet::before { + content: "\f4c1"; } + +.fa-hand-holding-water::before { + content: "\f4c1"; } + +.fa-water::before { + content: "\f773"; } + +.fa-calendar-check::before { + content: "\f274"; } + +.fa-braille::before { + content: "\f2a1"; } + +.fa-prescription-bottle-medical::before { + content: "\f486"; } + +.fa-prescription-bottle-alt::before { + content: "\f486"; } + +.fa-landmark::before { + content: "\f66f"; } + +.fa-truck::before { + content: "\f0d1"; } + +.fa-crosshairs::before { + content: "\f05b"; } + +.fa-person-cane::before { + content: "\e53c"; } + +.fa-tent::before { + content: "\e57d"; } + +.fa-vest-patches::before { + content: "\e086"; } + +.fa-check-double::before { + content: "\f560"; } + +.fa-arrow-down-a-z::before { + content: "\f15d"; } + +.fa-sort-alpha-asc::before { + content: "\f15d"; } + +.fa-sort-alpha-down::before { + content: "\f15d"; } + +.fa-money-bill-wheat::before { + content: "\e52a"; } + +.fa-cookie::before { + content: "\f563"; } + +.fa-arrow-rotate-left::before { + content: "\f0e2"; } + +.fa-arrow-left-rotate::before { + content: "\f0e2"; } + +.fa-arrow-rotate-back::before { + content: "\f0e2"; } + +.fa-arrow-rotate-backward::before { + content: "\f0e2"; } + +.fa-undo::before { + content: "\f0e2"; } + +.fa-hard-drive::before { + content: "\f0a0"; } + +.fa-hdd::before { + content: "\f0a0"; } + +.fa-face-grin-squint-tears::before { + content: "\f586"; } + +.fa-grin-squint-tears::before { + content: "\f586"; } + +.fa-dumbbell::before { + content: "\f44b"; } + +.fa-rectangle-list::before { + content: "\f022"; } + +.fa-list-alt::before { + content: "\f022"; } + +.fa-tarp-droplet::before { + content: "\e57c"; } + +.fa-house-medical-circle-check::before { + content: "\e511"; } + +.fa-person-skiing-nordic::before { + content: "\f7ca"; } + +.fa-skiing-nordic::before { + content: "\f7ca"; } + +.fa-calendar-plus::before { + content: "\f271"; } + +.fa-plane-arrival::before { + content: "\f5af"; } + +.fa-circle-left::before { + content: "\f359"; } + +.fa-arrow-alt-circle-left::before { + content: "\f359"; } + +.fa-train-subway::before { + content: "\f239"; } + +.fa-subway::before { + content: "\f239"; } + +.fa-chart-gantt::before { + content: "\e0e4"; } + +.fa-indian-rupee-sign::before { + content: "\e1bc"; } + +.fa-indian-rupee::before { + content: "\e1bc"; } + +.fa-inr::before { + content: "\e1bc"; } + +.fa-crop-simple::before { + content: "\f565"; } + +.fa-crop-alt::before { + content: "\f565"; } + +.fa-money-bill-1::before { + content: "\f3d1"; } + +.fa-money-bill-alt::before { + content: "\f3d1"; } + +.fa-left-long::before { + content: "\f30a"; } + +.fa-long-arrow-alt-left::before { + content: "\f30a"; } + +.fa-dna::before { + content: "\f471"; } + +.fa-virus-slash::before { + content: "\e075"; } + +.fa-minus::before { + content: "\f068"; } + +.fa-subtract::before { + content: "\f068"; } + +.fa-chess::before { + content: "\f439"; } + +.fa-arrow-left-long::before { + content: "\f177"; } + +.fa-long-arrow-left::before { + content: "\f177"; } + +.fa-plug-circle-check::before { + content: "\e55c"; } + +.fa-street-view::before { + content: "\f21d"; } + +.fa-franc-sign::before { + content: "\e18f"; } + +.fa-volume-off::before { + content: "\f026"; } + +.fa-hands-asl-interpreting::before { + content: "\f2a3"; } + +.fa-american-sign-language-interpreting::before { + content: "\f2a3"; } + +.fa-asl-interpreting::before { + content: "\f2a3"; } + +.fa-hands-american-sign-language-interpreting::before { + content: "\f2a3"; } + +.fa-gear::before { + content: "\f013"; } + +.fa-cog::before { + content: "\f013"; } + +.fa-droplet-slash::before { + content: "\f5c7"; } + +.fa-tint-slash::before { + content: "\f5c7"; } + +.fa-mosque::before { + content: "\f678"; } + +.fa-mosquito::before { + content: "\e52b"; } + +.fa-star-of-david::before { + content: "\f69a"; } + +.fa-person-military-rifle::before { + content: "\e54b"; } + +.fa-cart-shopping::before { + content: "\f07a"; } + +.fa-shopping-cart::before { + content: "\f07a"; } + +.fa-vials::before { + content: "\f493"; } + +.fa-plug-circle-plus::before { + content: "\e55f"; } + +.fa-place-of-worship::before { + content: "\f67f"; } + +.fa-grip-vertical::before { + content: "\f58e"; } + +.fa-arrow-turn-up::before { + content: "\f148"; } + +.fa-level-up::before { + content: "\f148"; } + +.fa-u::before { + content: "\55"; } + +.fa-square-root-variable::before { + content: "\f698"; } + +.fa-square-root-alt::before { + content: "\f698"; } + +.fa-clock::before { + content: "\f017"; } + +.fa-clock-four::before { + content: "\f017"; } + +.fa-backward-step::before { + content: "\f048"; } + +.fa-step-backward::before { + content: "\f048"; } + +.fa-pallet::before { + content: "\f482"; } + +.fa-faucet::before { + content: "\e005"; } + +.fa-baseball-bat-ball::before { + content: "\f432"; } + +.fa-s::before { + content: "\53"; } + +.fa-timeline::before { + content: "\e29c"; } + +.fa-keyboard::before { + content: "\f11c"; } + +.fa-caret-down::before { + content: "\f0d7"; } + +.fa-house-chimney-medical::before { + content: "\f7f2"; } + +.fa-clinic-medical::before { + content: "\f7f2"; } + +.fa-temperature-three-quarters::before { + content: "\f2c8"; } + +.fa-temperature-3::before { + content: "\f2c8"; } + +.fa-thermometer-3::before { + content: "\f2c8"; } + +.fa-thermometer-three-quarters::before { + content: "\f2c8"; } + +.fa-mobile-screen::before { + content: "\f3cf"; } + +.fa-mobile-android-alt::before { + content: "\f3cf"; } + +.fa-plane-up::before { + content: "\e22d"; } + +.fa-piggy-bank::before { + content: "\f4d3"; } + +.fa-battery-half::before { + content: "\f242"; } + +.fa-battery-3::before { + content: "\f242"; } + +.fa-mountain-city::before { + content: "\e52e"; } + +.fa-coins::before { + content: "\f51e"; } + +.fa-khanda::before { + content: "\f66d"; } + +.fa-sliders::before { + content: "\f1de"; } + +.fa-sliders-h::before { + content: "\f1de"; } + +.fa-folder-tree::before { + content: "\f802"; } + +.fa-network-wired::before { + content: "\f6ff"; } + +.fa-map-pin::before { + content: "\f276"; } + +.fa-hamsa::before { + content: "\f665"; } + +.fa-cent-sign::before { + content: "\e3f5"; } + +.fa-flask::before { + content: "\f0c3"; } + +.fa-person-pregnant::before { + content: "\e31e"; } + +.fa-wand-sparkles::before { + content: "\f72b"; } + +.fa-ellipsis-vertical::before { + content: "\f142"; } + +.fa-ellipsis-v::before { + content: "\f142"; } + +.fa-ticket::before { + content: "\f145"; } + +.fa-power-off::before { + content: "\f011"; } + +.fa-right-long::before { + content: "\f30b"; } + +.fa-long-arrow-alt-right::before { + content: "\f30b"; } + +.fa-flag-usa::before { + content: "\f74d"; } + +.fa-laptop-file::before { + content: "\e51d"; } + +.fa-tty::before { + content: "\f1e4"; } + +.fa-teletype::before { + content: "\f1e4"; } + +.fa-diagram-next::before { + content: "\e476"; } + +.fa-person-rifle::before { + content: "\e54e"; } + +.fa-house-medical-circle-exclamation::before { + content: "\e512"; } + +.fa-closed-captioning::before { + content: "\f20a"; } + +.fa-person-hiking::before { + content: "\f6ec"; } + +.fa-hiking::before { + content: "\f6ec"; } + +.fa-venus-double::before { + content: "\f226"; } + +.fa-images::before { + content: "\f302"; } + +.fa-calculator::before { + content: "\f1ec"; } + +.fa-people-pulling::before { + content: "\e535"; } + +.fa-n::before { + content: "\4e"; } + +.fa-cable-car::before { + content: "\f7da"; } + +.fa-tram::before { + content: "\f7da"; } + +.fa-cloud-rain::before { + content: "\f73d"; } + +.fa-building-circle-xmark::before { + content: "\e4d4"; } + +.fa-ship::before { + content: "\f21a"; } + +.fa-arrows-down-to-line::before { + content: "\e4b8"; } + +.fa-download::before { + content: "\f019"; } + +.fa-face-grin::before { + content: "\f580"; } + +.fa-grin::before { + content: "\f580"; } + +.fa-delete-left::before { + content: "\f55a"; } + +.fa-backspace::before { + content: "\f55a"; } + +.fa-eye-dropper::before { + content: "\f1fb"; } + +.fa-eye-dropper-empty::before { + content: "\f1fb"; } + +.fa-eyedropper::before { + content: "\f1fb"; } + +.fa-file-circle-check::before { + content: "\e5a0"; } + +.fa-forward::before { + content: "\f04e"; } + +.fa-mobile::before { + content: "\f3ce"; } + +.fa-mobile-android::before { + content: "\f3ce"; } + +.fa-mobile-phone::before { + content: "\f3ce"; } + +.fa-face-meh::before { + content: "\f11a"; } + +.fa-meh::before { + content: "\f11a"; } + +.fa-align-center::before { + content: "\f037"; } + +.fa-book-skull::before { + content: "\f6b7"; } + +.fa-book-dead::before { + content: "\f6b7"; } + +.fa-id-card::before { + content: "\f2c2"; } + +.fa-drivers-license::before { + content: "\f2c2"; } + +.fa-outdent::before { + content: "\f03b"; } + +.fa-dedent::before { + content: "\f03b"; } + +.fa-heart-circle-exclamation::before { + content: "\e4fe"; } + +.fa-house::before { + content: "\f015"; } + +.fa-home::before { + content: "\f015"; } + +.fa-home-alt::before { + content: "\f015"; } + +.fa-home-lg-alt::before { + content: "\f015"; } + +.fa-calendar-week::before { + content: "\f784"; } + +.fa-laptop-medical::before { + content: "\f812"; } + +.fa-b::before { + content: "\42"; } + +.fa-file-medical::before { + content: "\f477"; } + +.fa-dice-one::before { + content: "\f525"; } + +.fa-kiwi-bird::before { + content: "\f535"; } + +.fa-arrow-right-arrow-left::before { + content: "\f0ec"; } + +.fa-exchange::before { + content: "\f0ec"; } + +.fa-rotate-right::before { + content: "\f2f9"; } + +.fa-redo-alt::before { + content: "\f2f9"; } + +.fa-rotate-forward::before { + content: "\f2f9"; } + +.fa-utensils::before { + content: "\f2e7"; } + +.fa-cutlery::before { + content: "\f2e7"; } + +.fa-arrow-up-wide-short::before { + content: "\f161"; } + +.fa-sort-amount-up::before { + content: "\f161"; } + +.fa-mill-sign::before { + content: "\e1ed"; } + +.fa-bowl-rice::before { + content: "\e2eb"; } + +.fa-skull::before { + content: "\f54c"; } + +.fa-tower-broadcast::before { + content: "\f519"; } + +.fa-broadcast-tower::before { + content: "\f519"; } + +.fa-truck-pickup::before { + content: "\f63c"; } + +.fa-up-long::before { + content: "\f30c"; } + +.fa-long-arrow-alt-up::before { + content: "\f30c"; } + +.fa-stop::before { + content: "\f04d"; } + +.fa-code-merge::before { + content: "\f387"; } + +.fa-upload::before { + content: "\f093"; } + +.fa-hurricane::before { + content: "\f751"; } + +.fa-mound::before { + content: "\e52d"; } + +.fa-toilet-portable::before { + content: "\e583"; } + +.fa-compact-disc::before { + content: "\f51f"; } + +.fa-file-arrow-down::before { + content: "\f56d"; } + +.fa-file-download::before { + content: "\f56d"; } + +.fa-caravan::before { + content: "\f8ff"; } + +.fa-shield-cat::before { + content: "\e572"; } + +.fa-bolt::before { + content: "\f0e7"; } + +.fa-zap::before { + content: "\f0e7"; } + +.fa-glass-water::before { + content: "\e4f4"; } + +.fa-oil-well::before { + content: "\e532"; } + +.fa-vault::before { + content: "\e2c5"; } + +.fa-mars::before { + content: "\f222"; } + +.fa-toilet::before { + content: "\f7d8"; } + +.fa-plane-circle-xmark::before { + content: "\e557"; } + +.fa-yen-sign::before { + content: "\f157"; } + +.fa-cny::before { + content: "\f157"; } + +.fa-jpy::before { + content: "\f157"; } + +.fa-rmb::before { + content: "\f157"; } + +.fa-yen::before { + content: "\f157"; } + +.fa-ruble-sign::before { + content: "\f158"; } + +.fa-rouble::before { + content: "\f158"; } + +.fa-rub::before { + content: "\f158"; } + +.fa-ruble::before { + content: "\f158"; } + +.fa-sun::before { + content: "\f185"; } + +.fa-guitar::before { + content: "\f7a6"; } + +.fa-face-laugh-wink::before { + content: "\f59c"; } + +.fa-laugh-wink::before { + content: "\f59c"; } + +.fa-horse-head::before { + content: "\f7ab"; } + +.fa-bore-hole::before { + content: "\e4c3"; } + +.fa-industry::before { + content: "\f275"; } + +.fa-circle-down::before { + content: "\f358"; } + +.fa-arrow-alt-circle-down::before { + content: "\f358"; } + +.fa-arrows-turn-to-dots::before { + content: "\e4c1"; } + +.fa-florin-sign::before { + content: "\e184"; } + +.fa-arrow-down-short-wide::before { + content: "\f884"; } + +.fa-sort-amount-desc::before { + content: "\f884"; } + +.fa-sort-amount-down-alt::before { + content: "\f884"; } + +.fa-less-than::before { + content: "\3c"; } + +.fa-angle-down::before { + content: "\f107"; } + +.fa-car-tunnel::before { + content: "\e4de"; } + +.fa-head-side-cough::before { + content: "\e061"; } + +.fa-grip-lines::before { + content: "\f7a4"; } + +.fa-thumbs-down::before { + content: "\f165"; } + +.fa-user-lock::before { + content: "\f502"; } + +.fa-arrow-right-long::before { + content: "\f178"; } + +.fa-long-arrow-right::before { + content: "\f178"; } + +.fa-anchor-circle-xmark::before { + content: "\e4ac"; } + +.fa-ellipsis::before { + content: "\f141"; } + +.fa-ellipsis-h::before { + content: "\f141"; } + +.fa-chess-pawn::before { + content: "\f443"; } + +.fa-kit-medical::before { + content: "\f479"; } + +.fa-first-aid::before { + content: "\f479"; } + +.fa-person-through-window::before { + content: "\e5a9"; } + +.fa-toolbox::before { + content: "\f552"; } + +.fa-hands-holding-circle::before { + content: "\e4fb"; } + +.fa-bug::before { + content: "\f188"; } + +.fa-credit-card::before { + content: "\f09d"; } + +.fa-credit-card-alt::before { + content: "\f09d"; } + +.fa-car::before { + content: "\f1b9"; } + +.fa-automobile::before { + content: "\f1b9"; } + +.fa-hand-holding-hand::before { + content: "\e4f7"; } + +.fa-book-open-reader::before { + content: "\f5da"; } + +.fa-book-reader::before { + content: "\f5da"; } + +.fa-mountain-sun::before { + content: "\e52f"; } + +.fa-arrows-left-right-to-line::before { + content: "\e4ba"; } + +.fa-dice-d20::before { + content: "\f6cf"; } + +.fa-truck-droplet::before { + content: "\e58c"; } + +.fa-file-circle-xmark::before { + content: "\e5a1"; } + +.fa-temperature-arrow-up::before { + content: "\e040"; } + +.fa-temperature-up::before { + content: "\e040"; } + +.fa-medal::before { + content: "\f5a2"; } + +.fa-bed::before { + content: "\f236"; } + +.fa-square-h::before { + content: "\f0fd"; } + +.fa-h-square::before { + content: "\f0fd"; } + +.fa-podcast::before { + content: "\f2ce"; } + +.fa-temperature-full::before { + content: "\f2c7"; } + +.fa-temperature-4::before { + content: "\f2c7"; } + +.fa-thermometer-4::before { + content: "\f2c7"; } + +.fa-thermometer-full::before { + content: "\f2c7"; } + +.fa-bell::before { + content: "\f0f3"; } + +.fa-superscript::before { + content: "\f12b"; } + +.fa-plug-circle-xmark::before { + content: "\e560"; } + +.fa-star-of-life::before { + content: "\f621"; } + +.fa-phone-slash::before { + content: "\f3dd"; } + +.fa-paint-roller::before { + content: "\f5aa"; } + +.fa-handshake-angle::before { + content: "\f4c4"; } + +.fa-hands-helping::before { + content: "\f4c4"; } + +.fa-location-dot::before { + content: "\f3c5"; } + +.fa-map-marker-alt::before { + content: "\f3c5"; } + +.fa-file::before { + content: "\f15b"; } + +.fa-greater-than::before { + content: "\3e"; } + +.fa-person-swimming::before { + content: "\f5c4"; } + +.fa-swimmer::before { + content: "\f5c4"; } + +.fa-arrow-down::before { + content: "\f063"; } + +.fa-droplet::before { + content: "\f043"; } + +.fa-tint::before { + content: "\f043"; } + +.fa-eraser::before { + content: "\f12d"; } + +.fa-earth-americas::before { + content: "\f57d"; } + +.fa-earth::before { + content: "\f57d"; } + +.fa-earth-america::before { + content: "\f57d"; } + +.fa-globe-americas::before { + content: "\f57d"; } + +.fa-person-burst::before { + content: "\e53b"; } + +.fa-dove::before { + content: "\f4ba"; } + +.fa-battery-empty::before { + content: "\f244"; } + +.fa-battery-0::before { + content: "\f244"; } + +.fa-socks::before { + content: "\f696"; } + +.fa-inbox::before { + content: "\f01c"; } + +.fa-section::before { + content: "\e447"; } + +.fa-gauge-high::before { + content: "\f625"; } + +.fa-tachometer-alt::before { + content: "\f625"; } + +.fa-tachometer-alt-fast::before { + content: "\f625"; } + +.fa-envelope-open-text::before { + content: "\f658"; } + +.fa-hospital::before { + content: "\f0f8"; } + +.fa-hospital-alt::before { + content: "\f0f8"; } + +.fa-hospital-wide::before { + content: "\f0f8"; } + +.fa-wine-bottle::before { + content: "\f72f"; } + +.fa-chess-rook::before { + content: "\f447"; } + +.fa-bars-staggered::before { + content: "\f550"; } + +.fa-reorder::before { + content: "\f550"; } + +.fa-stream::before { + content: "\f550"; } + +.fa-dharmachakra::before { + content: "\f655"; } + +.fa-hotdog::before { + content: "\f80f"; } + +.fa-person-walking-with-cane::before { + content: "\f29d"; } + +.fa-blind::before { + content: "\f29d"; } + +.fa-drum::before { + content: "\f569"; } + +.fa-ice-cream::before { + content: "\f810"; } + +.fa-heart-circle-bolt::before { + content: "\e4fc"; } + +.fa-fax::before { + content: "\f1ac"; } + +.fa-paragraph::before { + content: "\f1dd"; } + +.fa-check-to-slot::before { + content: "\f772"; } + +.fa-vote-yea::before { + content: "\f772"; } + +.fa-star-half::before { + content: "\f089"; } + +.fa-boxes-stacked::before { + content: "\f468"; } + +.fa-boxes::before { + content: "\f468"; } + +.fa-boxes-alt::before { + content: "\f468"; } + +.fa-link::before { + content: "\f0c1"; } + +.fa-chain::before { + content: "\f0c1"; } + +.fa-ear-listen::before { + content: "\f2a2"; } + +.fa-assistive-listening-systems::before { + content: "\f2a2"; } + +.fa-tree-city::before { + content: "\e587"; } + +.fa-play::before { + content: "\f04b"; } + +.fa-font::before { + content: "\f031"; } + +.fa-rupiah-sign::before { + content: "\e23d"; } + +.fa-magnifying-glass::before { + content: "\f002"; } + +.fa-search::before { + content: "\f002"; } + +.fa-table-tennis-paddle-ball::before { + content: "\f45d"; } + +.fa-ping-pong-paddle-ball::before { + content: "\f45d"; } + +.fa-table-tennis::before { + content: "\f45d"; } + +.fa-person-dots-from-line::before { + content: "\f470"; } + +.fa-diagnoses::before { + content: "\f470"; } + +.fa-trash-can-arrow-up::before { + content: "\f82a"; } + +.fa-trash-restore-alt::before { + content: "\f82a"; } + +.fa-naira-sign::before { + content: "\e1f6"; } + +.fa-cart-arrow-down::before { + content: "\f218"; } + +.fa-walkie-talkie::before { + content: "\f8ef"; } + +.fa-file-pen::before { + content: "\f31c"; } + +.fa-file-edit::before { + content: "\f31c"; } + +.fa-receipt::before { + content: "\f543"; } + +.fa-square-pen::before { + content: "\f14b"; } + +.fa-pen-square::before { + content: "\f14b"; } + +.fa-pencil-square::before { + content: "\f14b"; } + +.fa-suitcase-rolling::before { + content: "\f5c1"; } + +.fa-person-circle-exclamation::before { + content: "\e53f"; } + +.fa-chevron-down::before { + content: "\f078"; } + +.fa-battery-full::before { + content: "\f240"; } + +.fa-battery::before { + content: "\f240"; } + +.fa-battery-5::before { + content: "\f240"; } + +.fa-skull-crossbones::before { + content: "\f714"; } + +.fa-code-compare::before { + content: "\e13a"; } + +.fa-list-ul::before { + content: "\f0ca"; } + +.fa-list-dots::before { + content: "\f0ca"; } + +.fa-school-lock::before { + content: "\e56f"; } + +.fa-tower-cell::before { + content: "\e585"; } + +.fa-down-long::before { + content: "\f309"; } + +.fa-long-arrow-alt-down::before { + content: "\f309"; } + +.fa-ranking-star::before { + content: "\e561"; } + +.fa-chess-king::before { + content: "\f43f"; } + +.fa-person-harassing::before { + content: "\e549"; } + +.fa-brazilian-real-sign::before { + content: "\e46c"; } + +.fa-landmark-dome::before { + content: "\f752"; } + +.fa-landmark-alt::before { + content: "\f752"; } + +.fa-arrow-up::before { + content: "\f062"; } + +.fa-tv::before { + content: "\f26c"; } + +.fa-television::before { + content: "\f26c"; } + +.fa-tv-alt::before { + content: "\f26c"; } + +.fa-shrimp::before { + content: "\e448"; } + +.fa-list-check::before { + content: "\f0ae"; } + +.fa-tasks::before { + content: "\f0ae"; } + +.fa-jug-detergent::before { + content: "\e519"; } + +.fa-circle-user::before { + content: "\f2bd"; } + +.fa-user-circle::before { + content: "\f2bd"; } + +.fa-user-shield::before { + content: "\f505"; } + +.fa-wind::before { + content: "\f72e"; } + +.fa-car-burst::before { + content: "\f5e1"; } + +.fa-car-crash::before { + content: "\f5e1"; } + +.fa-y::before { + content: "\59"; } + +.fa-person-snowboarding::before { + content: "\f7ce"; } + +.fa-snowboarding::before { + content: "\f7ce"; } + +.fa-truck-fast::before { + content: "\f48b"; } + +.fa-shipping-fast::before { + content: "\f48b"; } + +.fa-fish::before { + content: "\f578"; } + +.fa-user-graduate::before { + content: "\f501"; } + +.fa-circle-half-stroke::before { + content: "\f042"; } + +.fa-adjust::before { + content: "\f042"; } + +.fa-clapperboard::before { + content: "\e131"; } + +.fa-circle-radiation::before { + content: "\f7ba"; } + +.fa-radiation-alt::before { + content: "\f7ba"; } + +.fa-baseball::before { + content: "\f433"; } + +.fa-baseball-ball::before { + content: "\f433"; } + +.fa-jet-fighter-up::before { + content: "\e518"; } + +.fa-diagram-project::before { + content: "\f542"; } + +.fa-project-diagram::before { + content: "\f542"; } + +.fa-copy::before { + content: "\f0c5"; } + +.fa-volume-xmark::before { + content: "\f6a9"; } + +.fa-volume-mute::before { + content: "\f6a9"; } + +.fa-volume-times::before { + content: "\f6a9"; } + +.fa-hand-sparkles::before { + content: "\e05d"; } + +.fa-grip::before { + content: "\f58d"; } + +.fa-grip-horizontal::before { + content: "\f58d"; } + +.fa-share-from-square::before { + content: "\f14d"; } + +.fa-share-square::before { + content: "\f14d"; } + +.fa-child-combatant::before { + content: "\e4e0"; } + +.fa-child-rifle::before { + content: "\e4e0"; } + +.fa-gun::before { + content: "\e19b"; } + +.fa-square-phone::before { + content: "\f098"; } + +.fa-phone-square::before { + content: "\f098"; } + +.fa-plus::before { + content: "\2b"; } + +.fa-add::before { + content: "\2b"; } + +.fa-expand::before { + content: "\f065"; } + +.fa-computer::before { + content: "\e4e5"; } + +.fa-xmark::before { + content: "\f00d"; } + +.fa-close::before { + content: "\f00d"; } + +.fa-multiply::before { + content: "\f00d"; } + +.fa-remove::before { + content: "\f00d"; } + +.fa-times::before { + content: "\f00d"; } + +.fa-arrows-up-down-left-right::before { + content: "\f047"; } + +.fa-arrows::before { + content: "\f047"; } + +.fa-chalkboard-user::before { + content: "\f51c"; } + +.fa-chalkboard-teacher::before { + content: "\f51c"; } + +.fa-peso-sign::before { + content: "\e222"; } + +.fa-building-shield::before { + content: "\e4d8"; } + +.fa-baby::before { + content: "\f77c"; } + +.fa-users-line::before { + content: "\e592"; } + +.fa-quote-left::before { + content: "\f10d"; } + +.fa-quote-left-alt::before { + content: "\f10d"; } + +.fa-tractor::before { + content: "\f722"; } + +.fa-trash-arrow-up::before { + content: "\f829"; } + +.fa-trash-restore::before { + content: "\f829"; } + +.fa-arrow-down-up-lock::before { + content: "\e4b0"; } + +.fa-lines-leaning::before { + content: "\e51e"; } + +.fa-ruler-combined::before { + content: "\f546"; } + +.fa-copyright::before { + content: "\f1f9"; } + +.fa-equals::before { + content: "\3d"; } + +.fa-blender::before { + content: "\f517"; } + +.fa-teeth::before { + content: "\f62e"; } + +.fa-shekel-sign::before { + content: "\f20b"; } + +.fa-ils::before { + content: "\f20b"; } + +.fa-shekel::before { + content: "\f20b"; } + +.fa-sheqel::before { + content: "\f20b"; } + +.fa-sheqel-sign::before { + content: "\f20b"; } + +.fa-map::before { + content: "\f279"; } + +.fa-rocket::before { + content: "\f135"; } + +.fa-photo-film::before { + content: "\f87c"; } + +.fa-photo-video::before { + content: "\f87c"; } + +.fa-folder-minus::before { + content: "\f65d"; } + +.fa-store::before { + content: "\f54e"; } + +.fa-arrow-trend-up::before { + content: "\e098"; } + +.fa-plug-circle-minus::before { + content: "\e55e"; } + +.fa-sign-hanging::before { + content: "\f4d9"; } + +.fa-sign::before { + content: "\f4d9"; } + +.fa-bezier-curve::before { + content: "\f55b"; } + +.fa-bell-slash::before { + content: "\f1f6"; } + +.fa-tablet::before { + content: "\f3fb"; } + +.fa-tablet-android::before { + content: "\f3fb"; } + +.fa-school-flag::before { + content: "\e56e"; } + +.fa-fill::before { + content: "\f575"; } + +.fa-angle-up::before { + content: "\f106"; } + +.fa-drumstick-bite::before { + content: "\f6d7"; } + +.fa-holly-berry::before { + content: "\f7aa"; } + +.fa-chevron-left::before { + content: "\f053"; } + +.fa-bacteria::before { + content: "\e059"; } + +.fa-hand-lizard::before { + content: "\f258"; } + +.fa-notdef::before { + content: "\e1fe"; } + +.fa-disease::before { + content: "\f7fa"; } + +.fa-briefcase-medical::before { + content: "\f469"; } + +.fa-genderless::before { + content: "\f22d"; } + +.fa-chevron-right::before { + content: "\f054"; } + +.fa-retweet::before { + content: "\f079"; } + +.fa-car-rear::before { + content: "\f5de"; } + +.fa-car-alt::before { + content: "\f5de"; } + +.fa-pump-soap::before { + content: "\e06b"; } + +.fa-video-slash::before { + content: "\f4e2"; } + +.fa-battery-quarter::before { + content: "\f243"; } + +.fa-battery-2::before { + content: "\f243"; } + +.fa-radio::before { + content: "\f8d7"; } + +.fa-baby-carriage::before { + content: "\f77d"; } + +.fa-carriage-baby::before { + content: "\f77d"; } + +.fa-traffic-light::before { + content: "\f637"; } + +.fa-thermometer::before { + content: "\f491"; } + +.fa-vr-cardboard::before { + content: "\f729"; } + +.fa-hand-middle-finger::before { + content: "\f806"; } + +.fa-percent::before { + content: "\25"; } + +.fa-percentage::before { + content: "\25"; } + +.fa-truck-moving::before { + content: "\f4df"; } + +.fa-glass-water-droplet::before { + content: "\e4f5"; } + +.fa-display::before { + content: "\e163"; } + +.fa-face-smile::before { + content: "\f118"; } + +.fa-smile::before { + content: "\f118"; } + +.fa-thumbtack::before { + content: "\f08d"; } + +.fa-thumb-tack::before { + content: "\f08d"; } + +.fa-trophy::before { + content: "\f091"; } + +.fa-person-praying::before { + content: "\f683"; } + +.fa-pray::before { + content: "\f683"; } + +.fa-hammer::before { + content: "\f6e3"; } + +.fa-hand-peace::before { + content: "\f25b"; } + +.fa-rotate::before { + content: "\f2f1"; } + +.fa-sync-alt::before { + content: "\f2f1"; } + +.fa-spinner::before { + content: "\f110"; } + +.fa-robot::before { + content: "\f544"; } + +.fa-peace::before { + content: "\f67c"; } + +.fa-gears::before { + content: "\f085"; } + +.fa-cogs::before { + content: "\f085"; } + +.fa-warehouse::before { + content: "\f494"; } + +.fa-arrow-up-right-dots::before { + content: "\e4b7"; } + +.fa-splotch::before { + content: "\f5bc"; } + +.fa-face-grin-hearts::before { + content: "\f584"; } + +.fa-grin-hearts::before { + content: "\f584"; } + +.fa-dice-four::before { + content: "\f524"; } + +.fa-sim-card::before { + content: "\f7c4"; } + +.fa-transgender::before { + content: "\f225"; } + +.fa-transgender-alt::before { + content: "\f225"; } + +.fa-mercury::before { + content: "\f223"; } + +.fa-arrow-turn-down::before { + content: "\f149"; } + +.fa-level-down::before { + content: "\f149"; } + +.fa-person-falling-burst::before { + content: "\e547"; } + +.fa-award::before { + content: "\f559"; } + +.fa-ticket-simple::before { + content: "\f3ff"; } + +.fa-ticket-alt::before { + content: "\f3ff"; } + +.fa-building::before { + content: "\f1ad"; } + +.fa-angles-left::before { + content: "\f100"; } + +.fa-angle-double-left::before { + content: "\f100"; } + +.fa-qrcode::before { + content: "\f029"; } + +.fa-clock-rotate-left::before { + content: "\f1da"; } + +.fa-history::before { + content: "\f1da"; } + +.fa-face-grin-beam-sweat::before { + content: "\f583"; } + +.fa-grin-beam-sweat::before { + content: "\f583"; } + +.fa-file-export::before { + content: "\f56e"; } + +.fa-arrow-right-from-file::before { + content: "\f56e"; } + +.fa-shield::before { + content: "\f132"; } + +.fa-shield-blank::before { + content: "\f132"; } + +.fa-arrow-up-short-wide::before { + content: "\f885"; } + +.fa-sort-amount-up-alt::before { + content: "\f885"; } + +.fa-house-medical::before { + content: "\e3b2"; } + +.fa-golf-ball-tee::before { + content: "\f450"; } + +.fa-golf-ball::before { + content: "\f450"; } + +.fa-circle-chevron-left::before { + content: "\f137"; } + +.fa-chevron-circle-left::before { + content: "\f137"; } + +.fa-house-chimney-window::before { + content: "\e00d"; } + +.fa-pen-nib::before { + content: "\f5ad"; } + +.fa-tent-arrow-turn-left::before { + content: "\e580"; } + +.fa-tents::before { + content: "\e582"; } + +.fa-wand-magic::before { + content: "\f0d0"; } + +.fa-magic::before { + content: "\f0d0"; } + +.fa-dog::before { + content: "\f6d3"; } + +.fa-carrot::before { + content: "\f787"; } + +.fa-moon::before { + content: "\f186"; } + +.fa-wine-glass-empty::before { + content: "\f5ce"; } + +.fa-wine-glass-alt::before { + content: "\f5ce"; } + +.fa-cheese::before { + content: "\f7ef"; } + +.fa-yin-yang::before { + content: "\f6ad"; } + +.fa-music::before { + content: "\f001"; } + +.fa-code-commit::before { + content: "\f386"; } + +.fa-temperature-low::before { + content: "\f76b"; } + +.fa-person-biking::before { + content: "\f84a"; } + +.fa-biking::before { + content: "\f84a"; } + +.fa-broom::before { + content: "\f51a"; } + +.fa-shield-heart::before { + content: "\e574"; } + +.fa-gopuram::before { + content: "\f664"; } + +.fa-earth-oceania::before { + content: "\e47b"; } + +.fa-globe-oceania::before { + content: "\e47b"; } + +.fa-square-xmark::before { + content: "\f2d3"; } + +.fa-times-square::before { + content: "\f2d3"; } + +.fa-xmark-square::before { + content: "\f2d3"; } + +.fa-hashtag::before { + content: "\23"; } + +.fa-up-right-and-down-left-from-center::before { + content: "\f424"; } + +.fa-expand-alt::before { + content: "\f424"; } + +.fa-oil-can::before { + content: "\f613"; } + +.fa-t::before { + content: "\54"; } + +.fa-hippo::before { + content: "\f6ed"; } + +.fa-chart-column::before { + content: "\e0e3"; } + +.fa-infinity::before { + content: "\f534"; } + +.fa-vial-circle-check::before { + content: "\e596"; } + +.fa-person-arrow-down-to-line::before { + content: "\e538"; } + +.fa-voicemail::before { + content: "\f897"; } + +.fa-fan::before { + content: "\f863"; } + +.fa-person-walking-luggage::before { + content: "\e554"; } + +.fa-up-down::before { + content: "\f338"; } + +.fa-arrows-alt-v::before { + content: "\f338"; } + +.fa-cloud-moon-rain::before { + content: "\f73c"; } + +.fa-calendar::before { + content: "\f133"; } + +.fa-trailer::before { + content: "\e041"; } + +.fa-bahai::before { + content: "\f666"; } + +.fa-haykal::before { + content: "\f666"; } + +.fa-sd-card::before { + content: "\f7c2"; } + +.fa-dragon::before { + content: "\f6d5"; } + +.fa-shoe-prints::before { + content: "\f54b"; } + +.fa-circle-plus::before { + content: "\f055"; } + +.fa-plus-circle::before { + content: "\f055"; } + +.fa-face-grin-tongue-wink::before { + content: "\f58b"; } + +.fa-grin-tongue-wink::before { + content: "\f58b"; } + +.fa-hand-holding::before { + content: "\f4bd"; } + +.fa-plug-circle-exclamation::before { + content: "\e55d"; } + +.fa-link-slash::before { + content: "\f127"; } + +.fa-chain-broken::before { + content: "\f127"; } + +.fa-chain-slash::before { + content: "\f127"; } + +.fa-unlink::before { + content: "\f127"; } + +.fa-clone::before { + content: "\f24d"; } + +.fa-person-walking-arrow-loop-left::before { + content: "\e551"; } + +.fa-arrow-up-z-a::before { + content: "\f882"; } + +.fa-sort-alpha-up-alt::before { + content: "\f882"; } + +.fa-fire-flame-curved::before { + content: "\f7e4"; } + +.fa-fire-alt::before { + content: "\f7e4"; } + +.fa-tornado::before { + content: "\f76f"; } + +.fa-file-circle-plus::before { + content: "\e494"; } + +.fa-book-quran::before { + content: "\f687"; } + +.fa-quran::before { + content: "\f687"; } + +.fa-anchor::before { + content: "\f13d"; } + +.fa-border-all::before { + content: "\f84c"; } + +.fa-face-angry::before { + content: "\f556"; } + +.fa-angry::before { + content: "\f556"; } + +.fa-cookie-bite::before { + content: "\f564"; } + +.fa-arrow-trend-down::before { + content: "\e097"; } + +.fa-rss::before { + content: "\f09e"; } + +.fa-feed::before { + content: "\f09e"; } + +.fa-draw-polygon::before { + content: "\f5ee"; } + +.fa-scale-balanced::before { + content: "\f24e"; } + +.fa-balance-scale::before { + content: "\f24e"; } + +.fa-gauge-simple-high::before { + content: "\f62a"; } + +.fa-tachometer::before { + content: "\f62a"; } + +.fa-tachometer-fast::before { + content: "\f62a"; } + +.fa-shower::before { + content: "\f2cc"; } + +.fa-desktop::before { + content: "\f390"; } + +.fa-desktop-alt::before { + content: "\f390"; } + +.fa-m::before { + content: "\4d"; } + +.fa-table-list::before { + content: "\f00b"; } + +.fa-th-list::before { + content: "\f00b"; } + +.fa-comment-sms::before { + content: "\f7cd"; } + +.fa-sms::before { + content: "\f7cd"; } + +.fa-book::before { + content: "\f02d"; } + +.fa-user-plus::before { + content: "\f234"; } + +.fa-check::before { + content: "\f00c"; } + +.fa-battery-three-quarters::before { + content: "\f241"; } + +.fa-battery-4::before { + content: "\f241"; } + +.fa-house-circle-check::before { + content: "\e509"; } + +.fa-angle-left::before { + content: "\f104"; } + +.fa-diagram-successor::before { + content: "\e47a"; } + +.fa-truck-arrow-right::before { + content: "\e58b"; } + +.fa-arrows-split-up-and-left::before { + content: "\e4bc"; } + +.fa-hand-fist::before { + content: "\f6de"; } + +.fa-fist-raised::before { + content: "\f6de"; } + +.fa-cloud-moon::before { + content: "\f6c3"; } + +.fa-briefcase::before { + content: "\f0b1"; } + +.fa-person-falling::before { + content: "\e546"; } + +.fa-image-portrait::before { + content: "\f3e0"; } + +.fa-portrait::before { + content: "\f3e0"; } + +.fa-user-tag::before { + content: "\f507"; } + +.fa-rug::before { + content: "\e569"; } + +.fa-earth-europe::before { + content: "\f7a2"; } + +.fa-globe-europe::before { + content: "\f7a2"; } + +.fa-cart-flatbed-suitcase::before { + content: "\f59d"; } + +.fa-luggage-cart::before { + content: "\f59d"; } + +.fa-rectangle-xmark::before { + content: "\f410"; } + +.fa-rectangle-times::before { + content: "\f410"; } + +.fa-times-rectangle::before { + content: "\f410"; } + +.fa-window-close::before { + content: "\f410"; } + +.fa-baht-sign::before { + content: "\e0ac"; } + +.fa-book-open::before { + content: "\f518"; } + +.fa-book-journal-whills::before { + content: "\f66a"; } + +.fa-journal-whills::before { + content: "\f66a"; } + +.fa-handcuffs::before { + content: "\e4f8"; } + +.fa-triangle-exclamation::before { + content: "\f071"; } + +.fa-exclamation-triangle::before { + content: "\f071"; } + +.fa-warning::before { + content: "\f071"; } + +.fa-database::before { + content: "\f1c0"; } + +.fa-share::before { + content: "\f064"; } + +.fa-arrow-turn-right::before { + content: "\f064"; } + +.fa-mail-forward::before { + content: "\f064"; } + +.fa-bottle-droplet::before { + content: "\e4c4"; } + +.fa-mask-face::before { + content: "\e1d7"; } + +.fa-hill-rockslide::before { + content: "\e508"; } + +.fa-right-left::before { + content: "\f362"; } + +.fa-exchange-alt::before { + content: "\f362"; } + +.fa-paper-plane::before { + content: "\f1d8"; } + +.fa-road-circle-exclamation::before { + content: "\e565"; } + +.fa-dungeon::before { + content: "\f6d9"; } + +.fa-align-right::before { + content: "\f038"; } + +.fa-money-bill-1-wave::before { + content: "\f53b"; } + +.fa-money-bill-wave-alt::before { + content: "\f53b"; } + +.fa-life-ring::before { + content: "\f1cd"; } + +.fa-hands::before { + content: "\f2a7"; } + +.fa-sign-language::before { + content: "\f2a7"; } + +.fa-signing::before { + content: "\f2a7"; } + +.fa-calendar-day::before { + content: "\f783"; } + +.fa-water-ladder::before { + content: "\f5c5"; } + +.fa-ladder-water::before { + content: "\f5c5"; } + +.fa-swimming-pool::before { + content: "\f5c5"; } + +.fa-arrows-up-down::before { + content: "\f07d"; } + +.fa-arrows-v::before { + content: "\f07d"; } + +.fa-face-grimace::before { + content: "\f57f"; } + +.fa-grimace::before { + content: "\f57f"; } + +.fa-wheelchair-move::before { + content: "\e2ce"; } + +.fa-wheelchair-alt::before { + content: "\e2ce"; } + +.fa-turn-down::before { + content: "\f3be"; } + +.fa-level-down-alt::before { + content: "\f3be"; } + +.fa-person-walking-arrow-right::before { + content: "\e552"; } + +.fa-square-envelope::before { + content: "\f199"; } + +.fa-envelope-square::before { + content: "\f199"; } + +.fa-dice::before { + content: "\f522"; } + +.fa-bowling-ball::before { + content: "\f436"; } + +.fa-brain::before { + content: "\f5dc"; } + +.fa-bandage::before { + content: "\f462"; } + +.fa-band-aid::before { + content: "\f462"; } + +.fa-calendar-minus::before { + content: "\f272"; } + +.fa-circle-xmark::before { + content: "\f057"; } + +.fa-times-circle::before { + content: "\f057"; } + +.fa-xmark-circle::before { + content: "\f057"; } + +.fa-gifts::before { + content: "\f79c"; } + +.fa-hotel::before { + content: "\f594"; } + +.fa-earth-asia::before { + content: "\f57e"; } + +.fa-globe-asia::before { + content: "\f57e"; } + +.fa-id-card-clip::before { + content: "\f47f"; } + +.fa-id-card-alt::before { + content: "\f47f"; } + +.fa-magnifying-glass-plus::before { + content: "\f00e"; } + +.fa-search-plus::before { + content: "\f00e"; } + +.fa-thumbs-up::before { + content: "\f164"; } + +.fa-user-clock::before { + content: "\f4fd"; } + +.fa-hand-dots::before { + content: "\f461"; } + +.fa-allergies::before { + content: "\f461"; } + +.fa-file-invoice::before { + content: "\f570"; } + +.fa-window-minimize::before { + content: "\f2d1"; } + +.fa-mug-saucer::before { + content: "\f0f4"; } + +.fa-coffee::before { + content: "\f0f4"; } + +.fa-brush::before { + content: "\f55d"; } + +.fa-mask::before { + content: "\f6fa"; } + +.fa-magnifying-glass-minus::before { + content: "\f010"; } + +.fa-search-minus::before { + content: "\f010"; } + +.fa-ruler-vertical::before { + content: "\f548"; } + +.fa-user-large::before { + content: "\f406"; } + +.fa-user-alt::before { + content: "\f406"; } + +.fa-train-tram::before { + content: "\e5b4"; } + +.fa-user-nurse::before { + content: "\f82f"; } + +.fa-syringe::before { + content: "\f48e"; } + +.fa-cloud-sun::before { + content: "\f6c4"; } + +.fa-stopwatch-20::before { + content: "\e06f"; } + +.fa-square-full::before { + content: "\f45c"; } + +.fa-magnet::before { + content: "\f076"; } + +.fa-jar::before { + content: "\e516"; } + +.fa-note-sticky::before { + content: "\f249"; } + +.fa-sticky-note::before { + content: "\f249"; } + +.fa-bug-slash::before { + content: "\e490"; } + +.fa-arrow-up-from-water-pump::before { + content: "\e4b6"; } + +.fa-bone::before { + content: "\f5d7"; } + +.fa-user-injured::before { + content: "\f728"; } + +.fa-face-sad-tear::before { + content: "\f5b4"; } + +.fa-sad-tear::before { + content: "\f5b4"; } + +.fa-plane::before { + content: "\f072"; } + +.fa-tent-arrows-down::before { + content: "\e581"; } + +.fa-exclamation::before { + content: "\21"; } + +.fa-arrows-spin::before { + content: "\e4bb"; } + +.fa-print::before { + content: "\f02f"; } + +.fa-turkish-lira-sign::before { + content: "\e2bb"; } + +.fa-try::before { + content: "\e2bb"; } + +.fa-turkish-lira::before { + content: "\e2bb"; } + +.fa-dollar-sign::before { + content: "\24"; } + +.fa-dollar::before { + content: "\24"; } + +.fa-usd::before { + content: "\24"; } + +.fa-x::before { + content: "\58"; } + +.fa-magnifying-glass-dollar::before { + content: "\f688"; } + +.fa-search-dollar::before { + content: "\f688"; } + +.fa-users-gear::before { + content: "\f509"; } + +.fa-users-cog::before { + content: "\f509"; } + +.fa-person-military-pointing::before { + content: "\e54a"; } + +.fa-building-columns::before { + content: "\f19c"; } + +.fa-bank::before { + content: "\f19c"; } + +.fa-institution::before { + content: "\f19c"; } + +.fa-museum::before { + content: "\f19c"; } + +.fa-university::before { + content: "\f19c"; } + +.fa-umbrella::before { + content: "\f0e9"; } + +.fa-trowel::before { + content: "\e589"; } + +.fa-d::before { + content: "\44"; } + +.fa-stapler::before { + content: "\e5af"; } + +.fa-masks-theater::before { + content: "\f630"; } + +.fa-theater-masks::before { + content: "\f630"; } + +.fa-kip-sign::before { + content: "\e1c4"; } + +.fa-hand-point-left::before { + content: "\f0a5"; } + +.fa-handshake-simple::before { + content: "\f4c6"; } + +.fa-handshake-alt::before { + content: "\f4c6"; } + +.fa-jet-fighter::before { + content: "\f0fb"; } + +.fa-fighter-jet::before { + content: "\f0fb"; } + +.fa-square-share-nodes::before { + content: "\f1e1"; } + +.fa-share-alt-square::before { + content: "\f1e1"; } + +.fa-barcode::before { + content: "\f02a"; } + +.fa-plus-minus::before { + content: "\e43c"; } + +.fa-video::before { + content: "\f03d"; } + +.fa-video-camera::before { + content: "\f03d"; } + +.fa-graduation-cap::before { + content: "\f19d"; } + +.fa-mortar-board::before { + content: "\f19d"; } + +.fa-hand-holding-medical::before { + content: "\e05c"; } + +.fa-person-circle-check::before { + content: "\e53e"; } + +.fa-turn-up::before { + content: "\f3bf"; } + +.fa-level-up-alt::before { + content: "\f3bf"; } + +.sr-only, +.fa-sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } + +.sr-only-focusable:not(:focus), +.fa-sr-only-focusable:not(:focus) { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; } diff --git a/asset/css/horizontal-key-value.less b/asset/css/horizontal-key-value.less new file mode 100644 index 00000000..24ff54c8 --- /dev/null +++ b/asset/css/horizontal-key-value.less @@ -0,0 +1,17 @@ +.horizontal-key-value { + display: flex; + padding: .25em 0; + align-items: baseline; + + .key { + color: var(--default-text-color-light, @default-text-color-light); + flex: 0 0 auto; + white-space: nowrap; + width: 12em; + } + + .value { + color: var(--default-text-color, @default-text-color); + flex: 1 1 auto; + } +} diff --git a/asset/css/icinga-icons.less b/asset/css/icinga-icons.less new file mode 100644 index 00000000..3deb7da0 --- /dev/null +++ b/asset/css/icinga-icons.less @@ -0,0 +1,36 @@ +@font-face { + font-family: 'Icinga-Icons'; + src: url('@{iplWebAssets}/font/Icinga-Icons.eot'); + src: url('@{iplWebAssets}/font/Icinga-Icons.eot') format('embedded-opentype'), + url('@{iplWebAssets}/font/Icinga-Icons.ttf') format('truetype'), + url('@{iplWebAssets}/font/Icinga-Icons.woff') format('woff'), + url('@{iplWebAssets}/font/Icinga-Icons.svg') format('svg'); + font-weight: normal; + font-style: normal; + font-display: block; +} + +[class^="iicon-"]:before, [class*=" iicon-"]:before { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'Icinga-Icons'; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1em; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.iicon-minimal:before { + content: "\e900"; +} +.iicon-detailed:before { + content: "\e901"; +} +.iicon-default:before { + content: "\e902"; +} diff --git a/asset/css/icons-base.less b/asset/css/icons-base.less new file mode 100644 index 00000000..301c5055 --- /dev/null +++ b/asset/css/icons-base.less @@ -0,0 +1,12 @@ +i.icon { + vertical-align: middle; // Firefox will place icons weird otherwise + + &:before { + display: inline-block; + min-width: 1em; + margin-right: .2em; + + text-align: center; + text-decoration: inherit; + } +} diff --git a/asset/css/mixin/card.less b/asset/css/mixin/card.less new file mode 100644 index 00000000..3823ba26 --- /dev/null +++ b/asset/css/mixin/card.less @@ -0,0 +1,23 @@ +.card() { + &.card { + .rounded-corners(.5em); + border: 1px solid var(--card-border-color, @card-border-color); + + .card-header { + display: flex; + align-items: baseline; + justify-content: space-between; + padding: .5em; + + border-bottom: 1px solid var(--card-border-color, @card-border-color); + + .meta span { + font-size: 11/12em; + } + } + + .card-body { + padding: .5em; + } + } +} diff --git a/asset/css/mixin/mixins.less b/asset/css/mixin/mixins.less new file mode 100644 index 00000000..3f2f107d --- /dev/null +++ b/asset/css/mixin/mixins.less @@ -0,0 +1,20 @@ +.rounded-corners(@border-radius: 0.4em) { + border-radius: @border-radius; + + -webkit-background-clip: padding-box; + -moz-background-clip: padding; + background-clip: padding-box; +} + +.appearance(@appearance) { + -webkit-appearance: @appearance; + -moz-appearance: @appearance; + -ms-appearance: @appearance; + appearance: @appearance; +} + +.box-shadow(@x: 0.2em; @y: 0.2em; @blur: 0.2em; @spread: 0; @color: rgba(83, 83, 83, 0.25)) { + -webkit-box-shadow: @arguments; + -moz-box-shadow: @arguments; + box-shadow: @arguments; +} diff --git a/asset/css/mixin/state-badges.less b/asset/css/mixin/state-badges.less new file mode 100644 index 00000000..61116cfe --- /dev/null +++ b/asset/css/mixin/state-badges.less @@ -0,0 +1,31 @@ +.state-badges() { + &.state-badges { + padding: 0; + + ul { + padding: 0; + } + + li { + display: inline-block; + } + + li > ul > li:first-child:not(:last-child) .state-badge { + border-bottom-right-radius: 0; + border-top-right-radius: 0; + } + + li > ul > li:last-child:not(:first-child) .state-badge { + border-bottom-left-radius: 0; + border-top-left-radius: 0; + } + + > li:not(:last-child) { + margin-right: .25em; + } + + li > ul > li:last-child { + margin-left: 1px; + } + } +} diff --git a/asset/css/primary-submit-btn-duplicate.less b/asset/css/primary-submit-btn-duplicate.less new file mode 100644 index 00000000..aae545f0 --- /dev/null +++ b/asset/css/primary-submit-btn-duplicate.less @@ -0,0 +1,16 @@ +/** + Automatically set CSS class for duplicated submit buttons + used for implicit form submission that should be invisible + and not take up any space. `display: none` is not an option, + because at least Safari will then ignore the element completely + when submitting a form. + */ +.primary-submit-btn-duplicate { + border: 0; + height: 0; + margin: 0; + padding: 0; + visibility: hidden; + width: 0; + position: absolute; +} diff --git a/asset/css/schedule-element.less b/asset/css/schedule-element.less new file mode 100644 index 00000000..1905a056 --- /dev/null +++ b/asset/css/schedule-element.less @@ -0,0 +1,210 @@ +// Schedule form element + +.schedule-element { + @input-border-radius: .25em; + + .ordinal { + display: flex; + flex-wrap: wrap; + + .radio-label { + flex: 1 1 auto; + } + + select { + flex: 1 1 auto; + + &:first-of-type { + margin-right: 1em; + } + + &:disabled { + color: @schedule-element-fields-disabled-color; + } + } + } + + .radio-label { + width: 100%; + margin-bottom: .5em; + display: flex; + align-items: center; // To center the radio element on safari + } + + .number-specifier > input[type="number"] { + width: 5em; + margin: 0 1em; + } + + .monthly, .ordinal:not(.annually) { + padding: .5em; + margin-left: -.5em; + border: 1px solid @schedule-element-fields-border-color; + .rounded-corners(.75em); + } + + .schedule-element-fields { + list-style-type: none; + margin: 0; + padding: 0; + .rounded-corners(.25em); + overflow: hidden; + display:flex; + flex-wrap: wrap; + + &.disabled { // When the "On the" radio button is checked + pointer-events: none; + + label { + color: @schedule-element-fields-disabled-color; + background-color: @schedule-element-fields-disabled-bg; + } + + input:checked + label { + background: @schedule-element-fields-disabled-selected-bg; + color: @schedule-element-fields-disabled-color; + } + } + + li { + width: calc(100% / 7); /* default for week based cols makes sense */ + + label { + display: block; + width: 100%; + cursor: pointer; + text-align: center; + padding: .75em 0; + background: @schedule-element-fields-bg; + color: @schedule-element-fields-color; + + &:hover { + background-color: @schedule-element-fields-hover-bg; + } + + &:focus { + outline: none; + } + } + + input:checked + label { + background-color: @schedule-element-fields-selected-bg; + color: @schedule-element-fields-selected-color; + } + + input:checked + label:hover { + background-color: @schedule-element-fields-selected-hover-bg; + border-color: @schedule-element-fields-selected-hover-bg; + } + } + + &.multiple-fields { + li:not(:last-child) label { + border-right: 1px solid @schedule-element-fields-border-color; + } + + input:focus + label { + box-shadow: inset 0 0 0 3px @schedule-element-fields-outline-color; + } + + input:checked:focus + label { + box-shadow: inset 0 0 0 3px @schedule-element-fields-selected-outline-color; + } + } + + &.single-fields { + li { + padding-right: 1px; + } + + li label { + .rounded-corners(.25em); + margin-right: 1px; + margin-bottom: 1px; + } + + li label { + border-right: none; + } + + &:focus-within { + outline: 3px solid @schedule-element-fields-outline-color; + outline-offset: 2px; + } + + &:focus-within + .note { + display: block; + } + + input:checked + label:hover { + background-color: @schedule-element-fields-selected-bg; + } + } + } + + .note { + display: none; + padding: .5em; + background: @schedule-element-keyboard-note-bg; + .rounded-corners(.25em); + text-align: center; + margin-top: 1em; + line-height: 1.25; + } + + /* .weekly */ + .weekly { } + + /* .monthly styles */ + .monthly { + li label { + border-top: 1px solid @schedule-element-fields-border-color; + } + + li:first-child, + li:nth-child(2), + li:nth-child(3), + li:nth-child(4), + li:nth-child(5), + li:nth-child(6), + li:nth-child(7) { + label { + border-top: none; + } + } + + /* last of row should not have a border */ + .schedule-element-fields li:nth-child(7n) label { + border-right: none; + } + } + + + /* .annually styles */ + .annually { + li { + width: 25%; // 100% / 4 elements + } + + li:nth-child(4n) label { + margin-right: 0; + } + + .toggle-slider-controls { + display: flex; + column-gap: 1em; + align-items: center; + margin-top: 1em; + margin-bottom: -.6em; + } + } +} + +.schedule-recurrences { + line-height: 1.1em; + padding-top: 0.5625em; + + p { + color: @schedule-element-fields-disabled-color; + } +} diff --git a/asset/css/search-bar.less b/asset/css/search-bar.less new file mode 100644 index 00000000..d73cf275 --- /dev/null +++ b/asset/css/search-bar.less @@ -0,0 +1,316 @@ +// Style +.search-bar { + .rounded-corners(.25em); + background: var(--searchbar-bg, @searchbar-bg); + + // Reset all input styles + input, [type="button"] { + .appearance(none); + border: none; + background: none; + } + + // Submit button styles + input[type=submit], + button[type=submit], + button:not([type]) { + background: var(--primary-button-bg, @primary-button-bg); + color: var(--primary-button-color, @primary-button-color); + border-top-right-radius: .25em; + border-bottom-right-radius: .25em; + } + + // General input styles + input:focus { + outline-offset: -1px; + } + + // Hide the submit button, it must exist, but shouldn't be shown to the user + input[type=submit][value="hidden"] { + display: none; + } + + // Left-most search dropdown style + button.search-options { + i.icon:before { + font-size: 1.2em; + margin-right: 0; + color: var(--control-color, @control-color); + } + + &:disabled { + i.icon:before { + color: var(--control-disabled-color, @control-disabled-color); + } + } + } + + // Scrollbar style + .filter-input-area { + // Firefox + scrollbar-width: thin; + scrollbar-color: var(--searchbar-scrollbar-bg, @searchbar-scrollbar-bg) transparent; + + &::-webkit-scrollbar { + display: none; + height: .5em; + } + + &:hover::-webkit-scrollbar { + display: initial; + } + + &::-webkit-scrollbar-thumb { + border-radius: .25em; + background: var(--searchbar-scrollbar-bg, @searchbar-scrollbar-bg); + } + } + + // Term styles + .filter-condition { + button { + border-radius: .4em 0 0 .4em; + background-color: var(--search-condition-remove-bg, @search-condition-remove-bg); + color: var(--search-condition-remove-color, @search-condition-remove-color); + + &:after { + content: ""; + position: absolute; + width: .4em; + height: 100%; + right: 0; + top: 0; + + background-color: var(--searchbar-bg, @searchbar-bg); + border: .2em solid var(--search-condition-remove-bg, @search-condition-remove-bg); + border-width: 0 0 0 .2em; + border-top-left-radius: .4em; + border-bottom-left-radius: .4em; + } + } + + input { + background-color: var(--search-term-bg, @search-term-bg); + color: var(--search-term-color, @search-term-color); + } + } + + .terms > .filter-condition:first-child button { + border-radius: 0 .4em .4em 0; + + &:before { + content: ""; + position: absolute; + width: .4em; + height: 100%; + left: 0; + top: 0; + + background-color: var(--searchbar-bg, @searchbar-bg); + border: .2em solid var(--search-condition-remove-bg, @search-condition-remove-bg); + border-width: 0 .2em 0 0; + border-top-right-radius: .4em; + border-bottom-right-radius: .4em; + } + + &:after { + content: none; + } + } + + .logical_operator, + .grouping_operator_open, + .grouping_operator_close { + input { + .rounded-corners(); + background-color: var(--search-logical-operator-bg, @search-logical-operator-bg); + color: var(--search-logical-operator-color, @search-logical-operator-color); + } + } + + .operator, + .logical_operator, + .grouping_operator_open, + .grouping_operator_close { + input { + text-align: center; + } + } + + [data-index] input:invalid { + background-color: var(--search-term-invalid-bg, @search-term-invalid-bg); + color: var(--search-term-invalid-color, @search-term-invalid-color); + } + + [data-index] input:disabled { + background-color: var(--search-term-disabled-bg, @search-term-disabled-bg); + } + + .column input { + .rounded-corners(.4em); + } + .column:not(:last-of-type), + .column.last-term { + input { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + } + + .operator:last-of-type:not(.last-term) input { + .rounded-corners(.4em); + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + + .value input { + .rounded-corners(.4em); + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + + .highlighted input { + background-color: var(--search-term-highlighted-bg, @search-term-highlighted-bg); + color: var(--search-term-highlighted-color, @search-term-highlighted-color); + } + + .selected input { + background-color: var(--search-term-selected-bg, @search-term-selected-bg); + color: var(--search-term-selected-color, @search-term-selected-color); + font-style: italic; + } + + ul.comma-separated { + display: inline; + padding: 0; + + list-style-type: none; + + li { + display: inline; + + &:not(:first-of-type):before { + display: inline; + content: ', '; + } + } + } +} + +// Layout +.search-bar { + height: 2em; + display: flex; + position: relative; // Required for the suggestions + + button.search-options { + line-height: 1em; + } + + .filter-input-area { + overflow: auto hidden; + overflow-x: overlay; // Not invalid, but proprietary feature by chrome/webkit + display: flex; + width: 100%; + height: ~"calc(2em + 10px)"; // Search bar height + approximate scrollbar height + padding: 2/12em; // 2 (px) desired / default font size (px) + + // Lets inputs grow based on their contents, Inspired by https://css-tricks.com/auto-growing-inputs-textareas/ + label { + position: relative; + display: inline-block; + min-width: 2em; + + &::after, + input { + width: auto; + padding: 0 .5em; + resize: none; + } + + input { + width: 100%; + position: absolute; + line-height: 20/12; // 20 (px) desired / default font size (px) + } + + &::after { + height: 0; + content: attr(data-label); + visibility: hidden; + white-space: nowrap; + padding: 0 7/12em; // 7 (px) desired / default font size (px) + } + } + + > label { + flex: 1 0 auto; + + &::after, + input { + max-width: none; + min-width: 8em; + } + } + } + + .terms { + display: inline; + flex-shrink: 0; + + .filter-chain, + .filter-condition { + display: inline; + } + + .filter-condition { + position: relative; + + button { + display: none; + z-index: 1; + width: ~"calc(2em + 2px)"; + padding: .15em .6em .15em .4em; + position: absolute; + left: ~"calc(-2em - 2px)"; // That's min-width + margin-right of an operator + line-height: 16/12; // 16 (px) desired / default font size (px) + + i:before { + margin-right: 0; + } + } + + &:not(._hover_delay):hover button { + display: inline; + } + } + + > .filter-condition:first-child button { + padding: .15em .4em .15em .6em; + left: auto; + right: ~"calc(-2em - 1px)"; // That's min-width + margin-left of an operator + } + + label { + margin-right: 1px; + + &.logical_operator, + &.grouping_operator_open, + &.grouping_operator_close { + margin-left: 1px; // adds up to 2px with the previous term + margin-right: 2px; + } + } + } + + &.disabled { + .terms .filter-condition:hover button { + display: none; + } + } + + .search-suggestions { + // 2 (px) desired / default font-size to match .filter-input outline-offset (-1px) + outline-width (3px) + margin-top: 2/12em; + } +} diff --git a/asset/css/search-base.less b/asset/css/search-base.less new file mode 100644 index 00000000..3fe99d8a --- /dev/null +++ b/asset/css/search-base.less @@ -0,0 +1,131 @@ +// Style +.search-suggestions { + background: var(--suggestions-bg, @suggestions-bg); + border: 1px solid var(--suggestions-border-color, @suggestions-border-color); + border-bottom-right-radius: .5em; + border-bottom-left-radius: .5em; + + > ul { + list-style-type: none; + + > li { + border-top: 1px solid var(--suggestions-separation-bg, @suggestions-separation-bg); + } + > li.suggestion-title + li { + border: none; + } + > li:not(.default) + li.suggestion-title { + border: none; + } + } + + .default { + color: var(--suggestions-default-opt-color, @suggestions-default-opt-color); + font-style: italic; + + [type="button"] { + background-color: var(--suggestions-default-opt-bg, @suggestions-default-opt-bg); + } + } + + .suggestion-title { + color: var(--suggestions-color, @suggestions-color); + font-size: 80%; + } + + .failure-message { + font-weight: bold; + + em { + font-weight: normal; + color: var(--suggestions-failure-message-color, @suggestions-failure-message-color); + } + } + + .nothing-to-suggest { + color: var(--suggestions-color, @suggestions-color); + } + + .relation-path { + padding: 0 .2em; + background-color: var(--suggestions-relation-path-bg, @suggestions-relation-path-bg); + } + + [type="button"] { + .appearance(none); + border: none; + background: none; + } + + [type="button"]:focus { + background: var(--suggestions-focus-bg, @suggestions-focus-bg); + color: var(--suggestions-focus-color, @suggestions-focus-color); + outline: none; + + .relation-path { + background-color: var(--suggestions-relation-path-focus-bg, @suggestions-relation-path-focus-bg); + } + } + + [type="button"]:not(:focus):hover { + background: var(--suggestions-hover-bg, @suggestions-hover-bg); + } +} + +// Layout +.search-suggestions { + z-index: 2; // Required so that nothing else can overlap it (such as opaque elements and the impact overlay) + position: absolute; + overflow: auto; + min-width: 5em; + + &:empty { + display: none; + } + + > ul { + margin: 0; + padding: 0; + + li.suggestion-title { + padding: 1.25em .625em 0 .625em; + } + + li.failure-message { + padding: .5em 1em; + + em { + margin-right: .5em; + } + } + + li.nothing-to-suggest { + padding: .5em 1em; + } + } + + [type="button"] { + padding: .5em 1em; + display: block; + width: 100%; + text-align: left; + + &[data-class="operator"], &[data-class="logical_operator"] { + text-align: center; + } + + &.has-details { + display: flex; + align-items: baseline; + justify-content: space-between; + } + + .relation-path { + margin-left: .5em; + + &::first-line { + font-size: .8em; + } + } + } +} diff --git a/asset/css/search-editor.less b/asset/css/search-editor.less new file mode 100644 index 00000000..d32d31cb --- /dev/null +++ b/asset/css/search-editor.less @@ -0,0 +1,268 @@ +// Style + +.search-editor { + ul, ol { + list-style-type: none; + } + + fieldset { + border: none; + } + + button, input[type="submit"] { + .appearance(none); + background: none; + + &:not(.cancel-button) { + border: none; + } + } + + select:not([multiple]) { + .appearance(none); + padding-right: 1.5625em; + background-image: url('@{iplWebAssets}/img/select-icon-text-color.svg'); + background-repeat: no-repeat; + background-position: right center; + background-size: contain; + .rounded-corners(0); + } + + i.icon:before { + color: var(--search-editor-control-color, @search-editor-control-color); + } + + .drag-initiator { + cursor: grab; + } + + input[type="text"], select { + border: none; + background: var(--search-term-bg, @search-term-bg); + color: var(--search-term-color, @search-term-color); + text-overflow: ellipsis; + } + + :not(fieldset) > select { + .rounded-corners(); + } + + fieldset > input[data-type="column"] { + .rounded-corners(.4em 0 0 .4em); + } + + fieldset > input[data-type="value"] { + .rounded-corners(0 .4em .4em 0); + } + + .search-error { + input:invalid { + background: var(--search-term-invalid-bg, @search-term-invalid-bg); + color: var(--search-term-invalid-color, @search-term-invalid-color); + } + + .search-errors { + color: var(--search-editor-error-color, @search-editor-error-color); + font-weight: bold; + } + } + + li > select:not([multiple]) { + background-color: var(--search-logical-operator-bg, @search-logical-operator-bg); + color: var(--search-logical-operator-color, @search-logical-operator-color); + .rounded-corners(); + } + + .sortable-ghost { + border: dashed .2em var(--search-editor-drag-outline-color, @search-editor-drag-outline-color); + + fieldset { + opacity: .5; + } + } + + .buttons { + ul { + .rounded-corners(); + .box-shadow(0, 0, .5em); + border: 1px solid var(--search-editor-context-menu-border-color, @search-editor-context-menu-border-color); + background: var(--search-editor-context-menu-bg, @search-editor-context-menu-bg); + + li:not(:first-child) { + border-top: 1px solid var(--search-editor-context-menu-border-color, @search-editor-context-menu-border-color); + } + + button:hover { + background: var(--primary-button-bg, @primary-button-bg); + color: var(--primary-button-color, @primary-button-color); + } + + // Add rounded corners to buttons as well, otherwise their + // background is not rounded and overlaps the list's corners + :first-child button { + .rounded-corners(); + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + } + :last-child button { + .rounded-corners(); + border-top-left-radius: 0; + border-top-right-radius: 0; + } + + &:before { + // The left pointing arrow + border-bottom: 1px solid var(--search-editor-context-menu-border-color, @search-editor-context-menu-border-color); + border-left: 1px solid var(--search-editor-context-menu-border-color, @search-editor-context-menu-border-color); + background: var(--search-editor-context-menu-bg, @search-editor-context-menu-bg); + } + } + + &:hover i.icon:before { + .rounded-corners(); + background: var(--primary-button-bg, @primary-button-bg); + color: var(--primary-button-color, @primary-button-color); + } + } + + input[type="submit"] { + .rounded-corners(); + background: var(--primary-button-bg, @primary-button-bg); + color: var(--primary-button-color, @primary-button-color); + + &:hover { + background: var(--primary-button-hover-bg, @primary-button-hover-bg); + } + } +} + +// Layout + +.search-editor-opener + a.modal-opener { + display: none; +} + +.search-editor { + padding: 1em; + + @item-spacing: .5em; + + ul, ol { + width: 100%; + margin: 0; + padding: 0; + } + + li { + display: flex; + + > :not(:first-child) { + margin-left: @item-spacing; + } + } + + ol { + padding-left: 1em; + padding-bottom: @item-spacing; + + > li:first-child, + > :not(.filter-chain) + li { + margin-top: @item-spacing; + } + } + + input[type="text"], select { + padding: 0 .5em; + } + + li > select { + margin-right: auto; + } + + fieldset { + display: flex; + flex: 1 1 auto; + margin: 0; + padding: 0; + + input[data-type="value"] { + flex: 1 1 auto; + } + + > :not(:first-child) { + margin-left: .1em; + } + } + + input, button, select { + height: 28/12em; // Target Pixels @ default font size / default font size + } + + .search-errors { + margin-left: .5em; + } + + i.icon:before { + margin: 0; + font-size: 1.5em; + line-height: 1.5; + } + + .buttons { + position: relative; + + ul { + position: absolute; + right: 32/12em; // Target distance @ default font size / default font size + z-index: 1; + width: auto; + padding: 0; + + display: none; + + button { + z-index: 1; + width: 100%; + text-align: left; + white-space: nowrap; + } + + &:before { + // The left pointing arrow + content: ""; + display: block; + height: 1em; + transform: rotate(-135deg); + width: 1em; + z-index: 1; + + position: absolute; + top: ((28/12)/2)-.5em; // ((First row pixels @ default font size / default font size) / 2) - own half width + right: -.5em; + } + } + + &:hover ul { + display: block; + } + + i.icon:before { + padding: ((28/18)-1)/2em; // (Container pixels / default font size) - line height / (padding-top,padding-bottom) + line-height: 1; + } + } + + .cancel-button { + margin-top: 2em - @item-spacing; + } + + input[type="submit"] { + float: right; + width: 6em; + margin-top: 2em - @item-spacing; + } + + input[type="submit"]:not(:last-of-type) { + display: none; + } +} diff --git a/asset/css/state-badge.less b/asset/css/state-badge.less new file mode 100644 index 00000000..355aa85d --- /dev/null +++ b/asset/css/state-badge.less @@ -0,0 +1,47 @@ +.state-badge { + .rounded-corners(); + color: var(--default-text-color-inverted, @default-text-color-inverted); + display: inline-block; + font-size: 1em; + min-width: 2em; + padding: .25em; + text-align: center; + + &.handled { + opacity: .8; + } + + &.state-critical { + background-color: var(--state-critical, @state-critical); + } + + &.state-down { + background-color: var(--state-down, @state-down); + } + + &.state-ok { + background-color: var(--state-ok, @state-ok); + } + + &.state-pending { + background-color: var(--state-pending, @state-pending); + } + + &.state-unknown { + background-color: var(--state-unknown, @state-unknown); + } + + &.state-up { + background-color: var(--state-up, @state-up); + } + + &.state-warning { + background-color: var(--state-warning, @state-warning); + } +} + +a .state-badge { + &:not(.disabled):hover { + filter: brightness(80%); + } +} diff --git a/asset/css/variables.less b/asset/css/variables.less new file mode 100644 index 00000000..494bb80d --- /dev/null +++ b/asset/css/variables.less @@ -0,0 +1,200 @@ +/* + RECOMMENDATION: + Please do not use the base color variables directly, + define a new variable instead that assigns the value of this base variable. + Examples: + - @base-color: red; + - @my-new-var: @base-color; + - @my-second-new-var: @base-color; + + Do not use the same variable for different use cases, but define a new variable for each use case. + + NOTICE: + Color vars identification: + - Vars with `-bg` suffix are background-color vars. Please use only for setting bg-color. + - Vars with `-color` suffix are color vars. Please use only for setting fg-color. + + MODE SUPPORT: + The standard LESS variables represent the dark mode. The LESS detached ruleset `@iplWebLightRules` + contains CSS variables that represent the light mode. It must be used explicitly to have any effect. + If you use media queries to support modes, just call the ruleset inside your media query: + + @media (prefers-color-scheme: light) { + @iplWebLightRules(); + } +*/ + +@default-bg: #282E39; + +@base-gray: #c4c4c4; +@base-gray-light: #5c5c5c; +@base-gray-lighter: #4b4b4b; +@base-disabled: #9a9a9a; + +@base-primary-color: #00C3ED; +@base-primary-bg: #00C3ED; +@base-primary-dark: #0081a6; +@base-primary-light: fade(@base-primary-bg, 50%); + +@default-text-color: #fff; +@default-text-color-light: fade(@default-text-color, 75%); +@default-text-color-inverted: @default-bg; +@default-input-bg: #404d72; + +@state-ok: #44bb77; +@state-up: @state-ok; +@state-warning: #ffaa44; +@state-critical: #ff5566; +@state-down: @state-critical; +@state-pending: #77aaff; +@state-unknown: #aa44ff; + +@primary-button-color: @default-text-color-inverted; +@primary-button-bg: @base-primary-bg; +@primary-button-hover-bg: @base-primary-dark; + +@search-term-bg: @base-gray; +@search-term-color: @default-text-color-inverted; +@search-term-selected-bg: @base-disabled; +@search-term-invalid-bg: @state-critical; +@search-term-invalid-color: @default-text-color-inverted; +@search-term-disabled-bg: @base-disabled; +@search-term-selected-color: @base-gray-light; +@search-term-highlighted-bg: @base-primary-bg; +@search-term-highlighted-color: @default-text-color-inverted; + +@search-condition-remove-bg: @state-critical; +@search-condition-remove-color: @default-text-color-inverted; + +@search-logical-operator-bg: @base-gray-light; +@search-logical-operator-color: @default-text-color-light; + +@searchbar-bg: @default-input-bg; +@searchbar-scrollbar-bg: @base-gray-light; + +@search-editor-error-color: @state-critical; +@search-editor-control-color: @base-gray-light; +@search-editor-logical-op-bg: @base-gray-light; +@search-editor-context-menu-border-color: @base-gray-light; +@search-editor-context-menu-bg: @default-bg; +@search-editor-drag-outline-color: @base-gray; + +@control-color: @base-primary-color; +@control-hover-bg: @base-gray-lighter; +@control-disabled-color: @base-disabled; + +@cancel-button-bg: none; +@cancel-button-border-color: @state-critical; +@cancel-button-color: @state-critical; +@cancel-button-hover-bg: @state-critical; +@cancel-button-hover-color: @default-text-color-inverted; + +@suggestions-bg: @default-bg; +@suggestions-color: @default-text-color-light; +@suggestions-focus-bg: @base-primary-bg; +@suggestions-focus-color: @default-text-color-inverted; +@suggestions-default-opt-bg: fade(@base-primary-bg, 10%); +@suggestions-default-opt-color: @default-text-color-light; +@suggestions-hover-bg: fade(@base-primary-bg, 30%); +@suggestions-border-color: @base-gray-light; +@suggestions-separation-bg: @base-gray-lighter; +@suggestions-failure-message-color: @default-text-color-light; +@suggestions-relation-path-bg: @base-gray-light; +@suggestions-relation-path-focus-bg: @base-gray; + +@card-border-color: @base-gray-light; + +@schedule-element-fields-bg: @default-input-bg; +@schedule-element-fields-color: @base-primary-color; +@schedule-element-fields-border-color: @base-gray-light; +@schedule-element-fields-selected-bg: @primary-button-bg; +@schedule-element-fields-selected-color: @default-text-color-inverted; +@schedule-element-fields-hover-bg: @base-primary-light; +@schedule-element-fields-outline-color: fade(@base-primary-bg, 50%); +@schedule-element-fields-selected-outline-color: fade(#fff, 50%); +@schedule-element-fields-selected-hover-bg: @primary-button-hover-bg; +@schedule-element-fields-disabled-color: @base-gray; +@schedule-element-fields-disabled-bg: @base-gray-lighter; +@schedule-element-fields-disabled-selected-bg: @base-gray-light; +@schedule-element-keyboard-note-bg: @base-gray-light; + +@iplWebLightRules: { + :root { + --base-gray: #819398; + --base-gray-light: #d0d3da; + --base-gray-lighter: #e8ecef; + --base-disabled: var(--base-gray-light); + + --base-remove-bg: @state-critical; + + --default-text-color: #535353; + --default-text-color-light: fade(#535353, 75%); // --default-text-color + --default-text-color-inverted: #F5F9FA; + --default-input-bg: #DEECF1; + + --primary-button-color: var(--default-text-color-inverted); + --primary-button-bg: @primary-button-bg; + --primary-button-hover-bg: @primary-button-hover-bg; + + --searchbar-bg: var(--default-input-bg); + --searchbar-scrollbar-bg: var(--base-gray-light); + + --search-term-bg: var(--base-gray-light); + --search-term-color: var(--default-text-color); + --search-term-selected-bg: var(--base-disabled); + --search-term-invalid-bg: var(--base-remove-bg); + --search-term-invalid-color: var(--default-text-color-inverted); + --search-term-disabled-bg: var(--base-gray-light); + --search-term-selected-color: var(--base-gray); + --search-term-highlighted-bg: var(--primary-button-bg); + --search-term-highlighted-color: var(--default-text-color-inverted); + + --search-condition-remove-bg: var(--base-remove-bg); + --search-condition-remove-color: var(--default-text-color-inverted); + + --search-logical-operator-bg: fade(#819398, 50%); // --base-gray + --search-logical-operator-color: var(--default-text-color-light); + + --search-editor-error-color: var(--base-remove-bg); + --search-editor-control-color: var(--base-gray-light); + --search-editor-logical-op-bg: var(--base-gray-light); + --search-editor-context-menu-border-color: var(--base-gray-light); + --search-editor-context-menu-bg: var(--default-text-color-inverted); + --search-editor-drag-outline-color: var(--base-gray); + + --control-color: var(--primary-button-bg); + --control-hover-bg: var(--base-gray-lighter); + --control-disabled-color: var(--base-gray-light); + + --cancel-button-hover-color: var(--default-text-color-inverted); + + --suggestions-bg: var(--default-text-color-inverted); + --suggestions-color: var(--default-text-color-light); + --suggestions-focus-bg: var(--primary-button-bg); + --suggestions-focus-color: var(--default-text-color-inverted); + --suggestions-default-opt-bg: fade(@primary-button-bg, 10%); + --suggestions-default-opt-color: var(--default-text-color-light); + --suggestions-hover-bg: fade(@primary-button-bg, 30%); + --suggestions-border-color: var(--base-gray-light); + --suggestions-separation-bg: var(--base-gray-lighter); + --suggestions-failure-message-color: var(--default-text-color-light); + --suggestions-relation-path-bg: var(--base-gray-lighter); + --suggestions-relation-path-focus-bg: var(--base-gray); + + --card-border-color: var(--base-gray-light); + + --schedule-element-fields-bg: var(--default-input-bg); + --schedule-element-fields-color: var(--base-primary-color); + --schedule-element-fields-border-color: var(--base-gray-light); + --schedule-element-fields-selected-bg: var(--primary-button-bg); + --schedule-element-fields-selected-color: var(--default-text-color-inverted); + --schedule-element-fields-hover-bg: @base-primary-light; + --schedule-element-fields-outline-color: fade(@base-primary-bg, 50%); + --schedule-element-fields-selected-outline-color: fade(#fff, 50%); + --schedule-element-fields-selected-hover-bg: var(--primary-button-hover-bg); + --schedule-element-fields-disabled-color: var(--base-gray); + --schedule-element-fields-disabled-bg: var(--base-gray-lighter); + --schedule-element-fields-disabled-selected-bg: var(--base-gray-light); + --schedule-element-keyboard-note-bg: var(--base-gray-light); + } +}; diff --git a/asset/css/vendor/flatpickr.css b/asset/css/vendor/flatpickr.css new file mode 100644 index 00000000..be7168c7 --- /dev/null +++ b/asset/css/vendor/flatpickr.css @@ -0,0 +1,791 @@ +.flatpickr-calendar { + background: transparent; + opacity: 0; + display: none; + text-align: center; + visibility: hidden; + padding: 0; + -webkit-animation: none; + animation: none; + direction: ltr; + border: 0; + font-size: 14px; + line-height: 24px; + border-radius: 5px; + position: absolute; + width: 307.875px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + -ms-touch-action: manipulation; + touch-action: manipulation; + background: #fff; + -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08); + box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08); +} +.flatpickr-calendar.open, +.flatpickr-calendar.inline { + opacity: 1; + max-height: 640px; + visibility: visible; +} +.flatpickr-calendar.open { + display: inline-block; + z-index: 99999; +} +.flatpickr-calendar.animate.open { + -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1); + animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1); +} +.flatpickr-calendar.inline { + display: block; + position: relative; + top: 2px; +} +.flatpickr-calendar.static { + position: absolute; + top: calc(100% + 2px); +} +.flatpickr-calendar.static.open { + z-index: 999; + display: block; +} +.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) { + -webkit-box-shadow: none !important; + box-shadow: none !important; +} +.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) { + -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6; + box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6; +} +.flatpickr-calendar .hasWeeks .dayContainer, +.flatpickr-calendar .hasTime .dayContainer { + border-bottom: 0; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.flatpickr-calendar .hasWeeks .dayContainer { + border-left: 0; +} +.flatpickr-calendar.hasTime .flatpickr-time { + height: 40px; + border-top: 1px solid #e6e6e6; +} +.flatpickr-calendar.noCalendar.hasTime .flatpickr-time { + height: auto; +} +.flatpickr-calendar:before, +.flatpickr-calendar:after { + position: absolute; + display: block; + pointer-events: none; + border: solid transparent; + content: ''; + height: 0; + width: 0; + left: 22px; +} +.flatpickr-calendar.rightMost:before, +.flatpickr-calendar.arrowRight:before, +.flatpickr-calendar.rightMost:after, +.flatpickr-calendar.arrowRight:after { + left: auto; + right: 22px; +} +.flatpickr-calendar.arrowCenter:before, +.flatpickr-calendar.arrowCenter:after { + left: 50%; + right: 50%; +} +.flatpickr-calendar:before { + border-width: 5px; + margin: 0 -5px; +} +.flatpickr-calendar:after { + border-width: 4px; + margin: 0 -4px; +} +.flatpickr-calendar.arrowTop:before, +.flatpickr-calendar.arrowTop:after { + bottom: 100%; +} +.flatpickr-calendar.arrowTop:before { + border-bottom-color: #e6e6e6; +} +.flatpickr-calendar.arrowTop:after { + border-bottom-color: #fff; +} +.flatpickr-calendar.arrowBottom:before, +.flatpickr-calendar.arrowBottom:after { + top: 100%; +} +.flatpickr-calendar.arrowBottom:before { + border-top-color: #e6e6e6; +} +.flatpickr-calendar.arrowBottom:after { + border-top-color: #fff; +} +.flatpickr-calendar:focus { + outline: 0; +} +.flatpickr-wrapper { + position: relative; + display: inline-block; +} +.flatpickr-months { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; +} +.flatpickr-months .flatpickr-month { + background: transparent; + color: rgba(0,0,0,0.9); + fill: rgba(0,0,0,0.9); + height: 34px; + line-height: 1; + text-align: center; + position: relative; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + overflow: hidden; + -webkit-box-flex: 1; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; +} +.flatpickr-months .flatpickr-prev-month, +.flatpickr-months .flatpickr-next-month { + text-decoration: none; + cursor: pointer; + position: absolute; + top: 0; + height: 34px; + padding: 10px; + z-index: 3; + color: rgba(0,0,0,0.9); + fill: rgba(0,0,0,0.9); +} +.flatpickr-months .flatpickr-prev-month.flatpickr-disabled, +.flatpickr-months .flatpickr-next-month.flatpickr-disabled { + display: none; +} +.flatpickr-months .flatpickr-prev-month i, +.flatpickr-months .flatpickr-next-month i { + position: relative; +} +.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, +.flatpickr-months .flatpickr-next-month.flatpickr-prev-month { + /* + /*rtl:begin:ignore*/ + /* + */ + left: 0; + /* + /*rtl:end:ignore*/ + /* + */ +} +/* + /*rtl:begin:ignore*/ +/* + /*rtl:end:ignore*/ +.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, +.flatpickr-months .flatpickr-next-month.flatpickr-next-month { + /* + /*rtl:begin:ignore*/ + /* + */ + right: 0; + /* + /*rtl:end:ignore*/ + /* + */ +} +/* + /*rtl:begin:ignore*/ +/* + /*rtl:end:ignore*/ +.flatpickr-months .flatpickr-prev-month:hover, +.flatpickr-months .flatpickr-next-month:hover { + color: #959ea9; +} +.flatpickr-months .flatpickr-prev-month:hover svg, +.flatpickr-months .flatpickr-next-month:hover svg { + fill: #f64747; +} +.flatpickr-months .flatpickr-prev-month svg, +.flatpickr-months .flatpickr-next-month svg { + width: 14px; + height: 14px; +} +.flatpickr-months .flatpickr-prev-month svg path, +.flatpickr-months .flatpickr-next-month svg path { + -webkit-transition: fill 0.1s; + transition: fill 0.1s; + fill: inherit; +} +.numInputWrapper { + position: relative; + height: auto; +} +.numInputWrapper input, +.numInputWrapper span { + display: inline-block; +} +.numInputWrapper input { + width: 100%; +} +.numInputWrapper input::-ms-clear { + display: none; +} +.numInputWrapper input::-webkit-outer-spin-button, +.numInputWrapper input::-webkit-inner-spin-button { + margin: 0; + -webkit-appearance: none; +} +.numInputWrapper span { + position: absolute; + right: 0; + width: 14px; + padding: 0 4px 0 2px; + height: 50%; + line-height: 50%; + opacity: 0; + cursor: pointer; + border: 1px solid rgba(57,57,57,0.15); + -webkit-box-sizing: border-box; + box-sizing: border-box; +} +.numInputWrapper span:hover { + background: rgba(0,0,0,0.1); +} +.numInputWrapper span:active { + background: rgba(0,0,0,0.2); +} +.numInputWrapper span:after { + display: block; + content: ""; + position: absolute; +} +.numInputWrapper span.arrowUp { + top: 0; + border-bottom: 0; +} +.numInputWrapper span.arrowUp:after { + border-left: 4px solid transparent; + border-right: 4px solid transparent; + border-bottom: 4px solid rgba(57,57,57,0.6); + top: 26%; +} +.numInputWrapper span.arrowDown { + top: 50%; +} +.numInputWrapper span.arrowDown:after { + border-left: 4px solid transparent; + border-right: 4px solid transparent; + border-top: 4px solid rgba(57,57,57,0.6); + top: 40%; +} +.numInputWrapper span svg { + width: inherit; + height: auto; +} +.numInputWrapper span svg path { + fill: rgba(0,0,0,0.5); +} +.numInputWrapper:hover { + background: rgba(0,0,0,0.05); +} +.numInputWrapper:hover span { + opacity: 1; +} +.flatpickr-current-month { + font-size: 135%; + line-height: inherit; + font-weight: 300; + color: inherit; + position: absolute; + width: 75%; + left: 12.5%; + padding: 7.48px 0 0 0; + line-height: 1; + height: 34px; + display: inline-block; + text-align: center; + -webkit-transform: translate3d(0px, 0px, 0px); + transform: translate3d(0px, 0px, 0px); +} +.flatpickr-current-month span.cur-month { + font-family: inherit; + font-weight: 700; + color: inherit; + display: inline-block; + margin-left: 0.5ch; + padding: 0; +} +.flatpickr-current-month span.cur-month:hover { + background: rgba(0,0,0,0.05); +} +.flatpickr-current-month .numInputWrapper { + width: 6ch; + width: 7ch\0; + display: inline-block; +} +.flatpickr-current-month .numInputWrapper span.arrowUp:after { + border-bottom-color: rgba(0,0,0,0.9); +} +.flatpickr-current-month .numInputWrapper span.arrowDown:after { + border-top-color: rgba(0,0,0,0.9); +} +.flatpickr-current-month input.cur-year { + background: transparent; + -webkit-box-sizing: border-box; + box-sizing: border-box; + color: inherit; + cursor: text; + padding: 0 0 0 0.5ch; + margin: 0; + display: inline-block; + font-size: inherit; + font-family: inherit; + font-weight: 300; + line-height: inherit; + height: auto; + border: 0; + border-radius: 0; + vertical-align: initial; + -webkit-appearance: textfield; + -moz-appearance: textfield; + appearance: textfield; +} +.flatpickr-current-month input.cur-year:focus { + outline: 0; +} +.flatpickr-current-month input.cur-year[disabled], +.flatpickr-current-month input.cur-year[disabled]:hover { + font-size: 100%; + color: rgba(0,0,0,0.5); + background: transparent; + pointer-events: none; +} +.flatpickr-current-month .flatpickr-monthDropdown-months { + appearance: menulist; + background: transparent; + border: none; + border-radius: 0; + box-sizing: border-box; + color: inherit; + cursor: pointer; + font-size: inherit; + font-family: inherit; + font-weight: 300; + height: auto; + line-height: inherit; + margin: -1px 0 0 0; + outline: none; + padding: 0 0 0 0.5ch; + position: relative; + vertical-align: initial; + -webkit-box-sizing: border-box; + -webkit-appearance: menulist; + -moz-appearance: menulist; + width: auto; +} +.flatpickr-current-month .flatpickr-monthDropdown-months:focus, +.flatpickr-current-month .flatpickr-monthDropdown-months:active { + outline: none; +} +.flatpickr-current-month .flatpickr-monthDropdown-months:hover { + background: rgba(0,0,0,0.05); +} +.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month { + background-color: transparent; + outline: none; + padding: 0; +} +.flatpickr-weekdays { + background: transparent; + text-align: center; + overflow: hidden; + width: 100%; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + height: 28px; +} +.flatpickr-weekdays .flatpickr-weekdaycontainer { + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 1; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; +} +span.flatpickr-weekday { + cursor: default; + font-size: 90%; + background: transparent; + color: rgba(0,0,0,0.54); + line-height: 1; + margin: 0; + text-align: center; + display: block; + -webkit-box-flex: 1; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + font-weight: bolder; +} +.dayContainer, +.flatpickr-weeks { + padding: 1px 0 0 0; +} +.flatpickr-days { + position: relative; + overflow: hidden; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-align: start; + -webkit-align-items: flex-start; + -ms-flex-align: start; + align-items: flex-start; + width: 307.875px; +} +.flatpickr-days:focus { + outline: 0; +} +.dayContainer { + padding: 0; + outline: 0; + text-align: left; + width: 307.875px; + min-width: 307.875px; + max-width: 307.875px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + display: inline-block; + display: -ms-flexbox; + display: -webkit-box; + display: -webkit-flex; + display: flex; + -webkit-flex-wrap: wrap; + flex-wrap: wrap; + -ms-flex-wrap: wrap; + -ms-flex-pack: justify; + -webkit-justify-content: space-around; + justify-content: space-around; + -webkit-transform: translate3d(0px, 0px, 0px); + transform: translate3d(0px, 0px, 0px); + opacity: 1; +} +.dayContainer + .dayContainer { + -webkit-box-shadow: -1px 0 0 #e6e6e6; + box-shadow: -1px 0 0 #e6e6e6; +} +.flatpickr-day { + background: none; + border: 1px solid transparent; + border-radius: 150px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + color: #393939; + cursor: pointer; + font-weight: 400; + width: 14.2857143%; + -webkit-flex-basis: 14.2857143%; + -ms-flex-preferred-size: 14.2857143%; + flex-basis: 14.2857143%; + max-width: 39px; + height: 39px; + line-height: 39px; + margin: 0; + display: inline-block; + position: relative; + -webkit-box-pack: center; + -webkit-justify-content: center; + -ms-flex-pack: center; + justify-content: center; + text-align: center; +} +.flatpickr-day.inRange, +.flatpickr-day.prevMonthDay.inRange, +.flatpickr-day.nextMonthDay.inRange, +.flatpickr-day.today.inRange, +.flatpickr-day.prevMonthDay.today.inRange, +.flatpickr-day.nextMonthDay.today.inRange, +.flatpickr-day:hover, +.flatpickr-day.prevMonthDay:hover, +.flatpickr-day.nextMonthDay:hover, +.flatpickr-day:focus, +.flatpickr-day.prevMonthDay:focus, +.flatpickr-day.nextMonthDay:focus { + cursor: pointer; + outline: 0; + background: #e6e6e6; + border-color: #e6e6e6; +} +.flatpickr-day.today { + border-color: #959ea9; +} +.flatpickr-day.today:hover, +.flatpickr-day.today:focus { + border-color: #959ea9; + background: #959ea9; + color: #fff; +} +.flatpickr-day.selected, +.flatpickr-day.startRange, +.flatpickr-day.endRange, +.flatpickr-day.selected.inRange, +.flatpickr-day.startRange.inRange, +.flatpickr-day.endRange.inRange, +.flatpickr-day.selected:focus, +.flatpickr-day.startRange:focus, +.flatpickr-day.endRange:focus, +.flatpickr-day.selected:hover, +.flatpickr-day.startRange:hover, +.flatpickr-day.endRange:hover, +.flatpickr-day.selected.prevMonthDay, +.flatpickr-day.startRange.prevMonthDay, +.flatpickr-day.endRange.prevMonthDay, +.flatpickr-day.selected.nextMonthDay, +.flatpickr-day.startRange.nextMonthDay, +.flatpickr-day.endRange.nextMonthDay { + background: #569ff7; + -webkit-box-shadow: none; + box-shadow: none; + color: #fff; + border-color: #569ff7; +} +.flatpickr-day.selected.startRange, +.flatpickr-day.startRange.startRange, +.flatpickr-day.endRange.startRange { + border-radius: 50px 0 0 50px; +} +.flatpickr-day.selected.endRange, +.flatpickr-day.startRange.endRange, +.flatpickr-day.endRange.endRange { + border-radius: 0 50px 50px 0; +} +.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), +.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), +.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) { + -webkit-box-shadow: -10px 0 0 #569ff7; + box-shadow: -10px 0 0 #569ff7; +} +.flatpickr-day.selected.startRange.endRange, +.flatpickr-day.startRange.startRange.endRange, +.flatpickr-day.endRange.startRange.endRange { + border-radius: 50px; +} +.flatpickr-day.inRange { + border-radius: 0; + -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6; + box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6; +} +.flatpickr-day.flatpickr-disabled, +.flatpickr-day.flatpickr-disabled:hover, +.flatpickr-day.prevMonthDay, +.flatpickr-day.nextMonthDay, +.flatpickr-day.notAllowed, +.flatpickr-day.notAllowed.prevMonthDay, +.flatpickr-day.notAllowed.nextMonthDay { + color: rgba(57,57,57,0.3); + background: transparent; + border-color: transparent; + cursor: default; +} +.flatpickr-day.flatpickr-disabled, +.flatpickr-day.flatpickr-disabled:hover { + cursor: not-allowed; + color: rgba(57,57,57,0.1); +} +.flatpickr-day.week.selected { + border-radius: 0; + -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7; + box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7; +} +.flatpickr-day.hidden { + visibility: hidden; +} +.rangeMode .flatpickr-day { + margin-top: 1px; +} +.flatpickr-weekwrapper { + float: left; +} +.flatpickr-weekwrapper .flatpickr-weeks { + padding: 0 12px; + -webkit-box-shadow: 1px 0 0 #e6e6e6; + box-shadow: 1px 0 0 #e6e6e6; +} +.flatpickr-weekwrapper .flatpickr-weekday { + float: none; + width: 100%; + line-height: 28px; +} +.flatpickr-weekwrapper span.flatpickr-day, +.flatpickr-weekwrapper span.flatpickr-day:hover { + display: block; + width: 100%; + max-width: none; + color: rgba(57,57,57,0.3); + background: transparent; + cursor: default; + border: none; +} +.flatpickr-innerContainer { + display: block; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-box-sizing: border-box; + box-sizing: border-box; + overflow: hidden; +} +.flatpickr-rContainer { + display: inline-block; + padding: 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; +} +.flatpickr-time { + text-align: center; + outline: 0; + display: block; + height: 0; + line-height: 40px; + max-height: 40px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + overflow: hidden; + display: -webkit-box; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; +} +.flatpickr-time:after { + content: ""; + display: table; + clear: both; +} +.flatpickr-time .numInputWrapper { + -webkit-box-flex: 1; + -webkit-flex: 1; + -ms-flex: 1; + flex: 1; + width: 40%; + height: 40px; + float: left; +} +.flatpickr-time .numInputWrapper span.arrowUp:after { + border-bottom-color: #393939; +} +.flatpickr-time .numInputWrapper span.arrowDown:after { + border-top-color: #393939; +} +.flatpickr-time.hasSeconds .numInputWrapper { + width: 26%; +} +.flatpickr-time.time24hr .numInputWrapper { + width: 49%; +} +.flatpickr-time input { + background: transparent; + -webkit-box-shadow: none; + box-shadow: none; + border: 0; + border-radius: 0; + text-align: center; + margin: 0; + padding: 0; + height: inherit; + line-height: inherit; + color: #393939; + font-size: 14px; + position: relative; + -webkit-box-sizing: border-box; + box-sizing: border-box; + -webkit-appearance: textfield; + -moz-appearance: textfield; + appearance: textfield; +} +.flatpickr-time input.flatpickr-hour { + font-weight: bold; +} +.flatpickr-time input.flatpickr-minute, +.flatpickr-time input.flatpickr-second { + font-weight: 400; +} +.flatpickr-time input:focus { + outline: 0; + border: 0; +} +.flatpickr-time .flatpickr-time-separator, +.flatpickr-time .flatpickr-am-pm { + height: inherit; + float: left; + line-height: inherit; + color: #393939; + font-weight: bold; + width: 2%; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -webkit-align-self: center; + -ms-flex-item-align: center; + align-self: center; +} +.flatpickr-time .flatpickr-am-pm { + outline: 0; + width: 18%; + cursor: pointer; + text-align: center; + font-weight: 400; +} +.flatpickr-time input:hover, +.flatpickr-time .flatpickr-am-pm:hover, +.flatpickr-time input:focus, +.flatpickr-time .flatpickr-am-pm:focus { + background: #eee; +} +.flatpickr-input[readonly] { + cursor: pointer; +} +@-webkit-keyframes fpFadeInDown { + from { + opacity: 0; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + } + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +@keyframes fpFadeInDown { + from { + opacity: 0; + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + } + to { + opacity: 1; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} diff --git a/asset/css/vendor/flatpickr.vars.less b/asset/css/vendor/flatpickr.vars.less new file mode 100644 index 00000000..24096670 --- /dev/null +++ b/asset/css/vendor/flatpickr.vars.less @@ -0,0 +1,327 @@ +/** + * This file's only purpose is to make the flatpickr themeable. DO NOT add ANY custom style here! + * Also, DO NOT re-arrange the CSS blocks to make them more LESS like. They're based off of the + * pre-compiled flatpickr.css file and so can easily identified when updating to a new version. + * + * Non-standard LESS variables were added to allow usage of CSS variables. All of them hold a + * value calculated by LESS functions. If not temporarily stored in another LESS variable, + * they wouldn't be available to CSS variable usage. + * + * Latest state from version: v4.6.9 + */ + +@fp-calendarBackground: #ffffff; +@fp-calendarBorderColor: #e6e6e6; + +@fp-arrowColor: fadeout(@fp-dayForeground, 40%); // Non-standard variable +@fp-arrow_hover_color: #f64747; + +@fp-monthForeground: fadeout(black, 10%); +@fp-monthBackground: transparent; + +@fp-weekdaysBackground: transparent; +@fp-weekdaysForeground: fadeout(black, 46%); +@fp-weekNumberForeground: fadeout(@fp-dayForeground, 70%); // Non-standard variable + +@fp-dayForeground: #393939; +@fp-dayHoverBackground: #e6e6e6; +@fp-disabledDayForeground: fadeout(@fp-dayForeground, 90%); // Non-standard variable +@fp-outsideRangeDayForeground: @fp-weekNumberForeground; // Non-standard variable +@fp-selectedDayBackground: #569FF7; +@fp-todayColor: #959ea9; + +@fp-timeHoverBg: lighten(@fp-dayHoverBackground, 3); // Non-standard variable + +@fp-invertedBg: black; +@fp-hoverInvertedBg: fadeout(@fp-invertedBg, 95%); // Non-standard variable + +@fp-numChooserSvgFillColor: fadeout(@fp-monthForeground, 50%); // Non-standard variable +@fp-hoverNumChooserBg: fadeout(@fp-invertedBg, 90%); // Non-standard variable +@fp-numChooserBorderColor: fadeout(@fp-dayForeground, 85%); // Non-standard variable + +.icinga-datetime-picker { + &.flatpickr-calendar { + background: @fp-calendarBackground; + background: var(--fp-calendarBackground, @fp-calendarBackground); + box-shadow: 1px 0 0 @fp-calendarBorderColor, + -1px 0 0 @fp-calendarBorderColor, + 0 1px 0 @fp-calendarBorderColor, + 0 -1px 0 @fp-calendarBorderColor, + 0 3px 13px fadeout(black, 92%); + box-shadow: 1px 0 0 var(--fp-calendarBorderColor, @fp-calendarBorderColor), + -1px 0 0 var(--fp-calendarBorderColor, @fp-calendarBorderColor), + 0 1px 0 var(--fp-calendarBorderColor, @fp-calendarBorderColor), + 0 -1px 0 var(--fp-calendarBorderColor, @fp-calendarBorderColor), + 0 3px 13px fadeout(black, 92%); + } + + &.flatpickr-calendar.arrowTop:before { + border-bottom-color: @fp-calendarBorderColor; + border-bottom-color: var(--fp-calendarBorderColor, @fp-calendarBorderColor); + } + &.flatpickr-calendar.arrowTop:after { + border-bottom-color: @fp-calendarBackground; + border-bottom-color: var(--fp-calendarBackground, @fp-calendarBackground); + } + &.flatpickr-calendar.arrowBottom:before { + border-top-color: @fp-calendarBorderColor; + border-top-color: var(--fp-calendarBorderColor, @fp-calendarBorderColor); + } + &.flatpickr-calendar.arrowBottom:after { + border-top-color: @fp-calendarBackground; + border-top-color: var(--fp-calendarBackground, @fp-calendarBackground); + } + + &.flatpickr-calendar.hasTime .flatpickr-time { + border-top-color: @fp-calendarBorderColor; + border-top-color: var(--fp-calendarBorderColor, @fp-calendarBorderColor); + } + + .dayContainer + .dayContainer { + -webkit-box-shadow: -1px 0 0 @fp-calendarBorderColor; + -webkit-box-shadow: -1px 0 0 var(--fp-calendarBorderColor, @fp-calendarBorderColor); + box-shadow: -1px 0 0 @fp-calendarBorderColor; + box-shadow: -1px 0 0 var(--fp-calendarBorderColor, @fp-calendarBorderColor); + } + + .flatpickr-day { + color: @fp-dayForeground; + color: var(--fp-dayForeground, @fp-dayForeground); + } + .flatpickr-day.today { + border-color: @fp-todayColor; + border-color: var(--fp-todayColor, @fp-todayColor); + } + .flatpickr-day.today:hover, + .flatpickr-day.today:focus { + border-color: @fp-todayColor; + border-color: var(--fp-todayColor, @fp-todayColor); + background: @fp-todayColor; + background: var(--fp-todayColor, @fp-todayColor); + color: @fp-calendarBackground; + color: var(--fp-calendarBackground, @fp-calendarBackground); + } + .flatpickr-day.selected, + .flatpickr-day.startRange, + .flatpickr-day.endRange, + .flatpickr-day.selected.inRange, + .flatpickr-day.startRange.inRange, + .flatpickr-day.endRange.inRange, + .flatpickr-day.selected:focus, + .flatpickr-day.startRange:focus, + .flatpickr-day.endRange:focus, + .flatpickr-day.selected:hover, + .flatpickr-day.startRange:hover, + .flatpickr-day.endRange:hover, + .flatpickr-day.selected.prevMonthDay, + .flatpickr-day.startRange.prevMonthDay, + .flatpickr-day.endRange.prevMonthDay, + .flatpickr-day.selected.nextMonthDay, + .flatpickr-day.startRange.nextMonthDay, + .flatpickr-day.endRange.nextMonthDay { + color: @fp-calendarBackground; + color: var(--fp-calendarBackground, @fp-calendarBackground); + } + .flatpickr-day.inRange, + .flatpickr-day.prevMonthDay.inRange, + .flatpickr-day.nextMonthDay.inRange, + .flatpickr-day.today.inRange, + .flatpickr-day.prevMonthDay.today.inRange, + .flatpickr-day.nextMonthDay.today.inRange, + .flatpickr-day:hover, + .flatpickr-day.prevMonthDay:hover, + .flatpickr-day.nextMonthDay:hover, + .flatpickr-day:focus, + .flatpickr-day.nextMonthDay:focus { + background: @fp-dayHoverBackground; + background: var(--fp-dayHoverBackground, @fp-dayHoverBackground); + border-color: @fp-dayHoverBackground; + border-color: var(--fp-dayHoverBackground, @fp-dayHoverBackground); + } + .flatpickr-day.inRange { + -webkit-box-shadow: -5px 0 0 @fp-dayHoverBackground, 5px 0 0 @fp-dayHoverBackground; + -webkit-box-shadow: -5px 0 0 var(--fp-dayHoverBackground, @fp-dayHoverBackground), + 5px 0 0 var(--fp-dayHoverBackground, @fp-dayHoverBackground); + box-shadow: -5px 0 0 @fp-dayHoverBackground, 5px 0 0 @fp-dayHoverBackground; + box-shadow: -5px 0 0 var(--fp-dayHoverBackground, @fp-dayHoverBackground), + 5px 0 0 var(--fp-dayHoverBackground, @fp-dayHoverBackground); + } + .flatpickr-day.prevMonthDay, + .flatpickr-day.nextMonthDay, + .flatpickr-day.notAllowed, + .flatpickr-day.notAllowed.prevMonthDay, + .flatpickr-day.notAllowed.nextMonthDay { + color: @fp-outsideRangeDayForeground; + color: var(--fp-outsideRangeDayForeground, @fp-outsideRangeDayForeground); + } + .flatpickr-day.flatpickr-disabled, + .flatpickr-day.flatpickr-disabled:hover { + color: @fp-disabledDayForeground; + color: var(--fp-disabledDayForeground, @fp-disabledDayForeground); + } + .flatpickr-day.selected, + .flatpickr-day.startRange, + .flatpickr-day.endRange, + .flatpickr-day.selected.inRange, + .flatpickr-day.startRange.inRange, + .flatpickr-day.endRange.inRange, + .flatpickr-day.selected:focus, + .flatpickr-day.startRange:focus, + .flatpickr-day.endRange:focus, + .flatpickr-day.selected:hover, + .flatpickr-day.startRange:hover, + .flatpickr-day.endRange:hover, + .flatpickr-day.selected.prevMonthDay, + .flatpickr-day.startRange.prevMonthDay, + .flatpickr-day.endRange.prevMonthDay, + .flatpickr-day.selected.nextMonthDay, + .flatpickr-day.startRange.nextMonthDay, + .flatpickr-day.endRange.nextMonthDay { + background: @fp-selectedDayBackground; + background: var(--fp-selectedDayBackground, @fp-selectedDayBackground); + border-color: @fp-selectedDayBackground; + border-color: var(--fp-selectedDayBackground, @fp-selectedDayBackground); + } + .flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), + .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), + .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) { + -webkit-box-shadow: -10px 0 0 @fp-selectedDayBackground; + -webkit-box-shadow: -10px 0 0 var(--fp-selectedDayBackground, @fp-selectedDayBackground); + box-shadow: -10px 0 0 @fp-selectedDayBackground; + box-shadow: -10px 0 0 var(--fp-selectedDayBackground, @fp-selectedDayBackground); + } + .flatpickr-day.week.selected { + -webkit-box-shadow: -5px 0 0 @fp-selectedDayBackground, 5px 0 0 @fp-selectedDayBackground; + -webkit-box-shadow: -5px 0 0 var(--fp-selectedDayBackground, @fp-selectedDayBackground), + 5px 0 0 var(--fp-selectedDayBackground, @fp-selectedDayBackground); + box-shadow: -5px 0 0 @fp-selectedDayBackground, 5px 0 0 @fp-selectedDayBackground; + box-shadow: -5px 0 0 var(--fp-selectedDayBackground, @fp-selectedDayBackground), + 5px 0 0 var(--fp-selectedDayBackground, @fp-selectedDayBackground); + } + + .flatpickr-weekwrapper .flatpickr-weeks { + -webkit-box-shadow: 1px 0 0 @fp-calendarBorderColor; + -webkit-box-shadow: 1px 0 0 var(--fp-calendarBorderColor, @fp-calendarBorderColor); + box-shadow: 1px 0 0 @fp-calendarBorderColor; + box-shadow: 1px 0 0 var(--fp-calendarBorderColor, @fp-calendarBorderColor); + } + .flatpickr-weekwrapper span.flatpickr-day, + .flatpickr-weekwrapper span.flatpickr-day:hover { + color: @fp-weekNumberForeground; + color: var(--fp-weekNumberForeground, @fp-weekNumberForeground); + } + .flatpickr-weekdays { + background: @fp-weekdaysBackground; + background: var(--fp-weekdaysBackground, @fp-weekdaysBackground); + } + span.flatpickr-weekday { + background: @fp-monthBackground; + background: var(--fp-monthBackground, @fp-monthBackground); + color: @fp-weekdaysForeground; + color: var(--fp-weekdaysForeground, @fp-weekdaysForeground); + } + + .flatpickr-months .flatpickr-month { + background: @fp-monthBackground; + background: var(--fp-monthBackground, @fp-monthBackground); + color: @fp-monthForeground; + color: var(--fp-monthForeground, @fp-monthForeground); + fill: @fp-monthForeground; + fill: var(--fp-monthForeground, @fp-monthForeground); + } + .flatpickr-months .flatpickr-prev-month, + .flatpickr-months .flatpickr-next-month { + color: @fp-monthForeground; + color: var(--fp-monthForeground, @fp-monthForeground); + fill: @fp-monthForeground; + fill: var(--fp-monthForeground, @fp-monthForeground); + } + .flatpickr-months .flatpickr-prev-month:hover, + .flatpickr-months .flatpickr-next-month:hover { + color: @fp-todayColor; + color: var(--fp-todayColor, @fp-todayColor); + } + .flatpickr-months .flatpickr-prev-month:hover svg, + .flatpickr-months .flatpickr-next-month:hover svg { + fill: @fp-arrow_hover_color; + fill: var(--fp-arrow_hover_color, @fp-arrow_hover_color); + } + .flatpickr-current-month .flatpickr-monthDropdown-months { + background: @fp-monthBackground; + background: var(--fp-monthBackground, @fp-monthBackground); + } + .flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month { + background-color: @fp-monthBackground; + background-color: var(--fp-monthBackground, @fp-monthBackground); + } + .flatpickr-current-month .numInputWrapper span.arrowUp:after { + border-bottom-color: @fp-monthForeground; + border-bottom-color: var(--fp-monthForeground, @fp-monthForeground); + } + .flatpickr-current-month .numInputWrapper span.arrowDown:after { + border-top-color: @fp-monthForeground; + border-top-color: var(--fp-monthForeground, @fp-monthForeground); + } + + .numInputWrapper span { + border-color: @fp-numChooserBorderColor; + border-color: var(--fp-numChooserBorderColor, @fp-numChooserBorderColor); + } + .numInputWrapper span:hover { + background: @fp-hoverNumChooserBg; + background: var(--fp-hoverNumChooserBg, @fp-hoverNumChooserBg); + } + .numInputWrapper span:active { + background: @fp-hoverNumChooserBg; + background: var(--fp-hoverNumChooserBg, @fp-hoverNumChooserBg); + } + .numInputWrapper span svg path { + fill: @fp-numChooserSvgFillColor; + fill: var(--fp-numChooserSvgFillColor, @fp-numChooserSvgFillColor); + } + .numInputWrapper span.arrowUp:after { + border-bottom-color: @fp-arrowColor; + border-bottom-color: var(--fp-arrowColor, @fp-arrowColor); + } + .numInputWrapper span.arrowDown:after { + border-top-color: @fp-arrowColor; + border-top-color: var(--fp-arrowColor, @fp-arrowColor); + } + .numInputWrapper:hover { + background: @fp-hoverInvertedBg; + background: var(--fp-hoverInvertedBg, @fp-hoverInvertedBg); + } + .flatpickr-current-month span.cur-month:hover { + background: @fp-hoverInvertedBg; + background: var(--fp-hoverInvertedBg, @fp-hoverInvertedBg); + } + .flatpickr-current-month .flatpickr-monthDropdown-months:hover { + background: @fp-hoverInvertedBg; + background: var(--fp-hoverInvertedBg, @fp-hoverInvertedBg); + } + + .flatpickr-time input:hover, + .flatpickr-time .flatpickr-am-pm:hover, + .flatpickr-time input:focus, + .flatpickr-time .flatpickr-am-pm:focus { + background: @fp-timeHoverBg; + background: var(--fp-timeHoverBg, @fp-timeHoverBg); + } + .flatpickr-time .numInputWrapper span.arrowUp:after { + border-bottom-color: @fp-dayForeground; + border-bottom-color: var(--fp-dayForeground, @fp-dayForeground); + } + .flatpickr-time .numInputWrapper span.arrowDown:after { + border-top-color: @fp-dayForeground; + border-top-color: var(--fp-dayForeground, @fp-dayForeground); + } + .flatpickr-time input { + color: @fp-dayForeground; + color: var(--fp-dayForeground, @fp-dayForeground); + } + .flatpickr-time .flatpickr-time-separator, + .flatpickr-time .flatpickr-am-pm { + color: @fp-dayForeground; + color: var(--fp-dayForeground, @fp-dayForeground); + } +} diff --git a/asset/css/vertical-key-value.less b/asset/css/vertical-key-value.less new file mode 100644 index 00000000..3d315a4a --- /dev/null +++ b/asset/css/vertical-key-value.less @@ -0,0 +1,17 @@ +.vertical-key-value { + display: inline-block; + line-height: .75; + text-align: center; + vertical-align: middle; + + .key { + font-size: 10/12em; + color: var(--default-text-color-light, @default-text-color-light); + } + + .value { + color: var(--default-text-color, @default-text-color); + font-size: 1.5em; + font-weight: bold; + } +} diff --git a/asset/js/notjQuery.js b/asset/js/notjQuery.js new file mode 100644 index 00000000..d24cd90a --- /dev/null +++ b/asset/js/notjQuery.js @@ -0,0 +1,161 @@ +define(function () { + + "use strict"; + + class notjQuery { + /** + * Create a new notjQuery object + * + * @param {Element} element + */ + constructor(element) { + if (! element) { + throw new Error("Can't create a notjQuery object for `" + element + "`"); + } + + this.element = element; + } + + /** + * Add an event listener to the element + * + * @param {string} type + * @param {string} selector + * @param {function} handler + * @param {object} context + */ + on(type, selector, handler, context = null) { + if (typeof selector === 'function') { + context = handler; + handler = selector; + selector = null; + } + + if (selector === null) { + this.element.addEventListener(type, e => { + if (type === 'focusin' && e.target.receivesCustomFocus) { + // Ignore native focus event if a custom one follows + if (e instanceof FocusEvent) { + delete e.target.receivesCustomFocus; + e.stopImmediatePropagation(); + return; + } + } + + if (context === null) { + handler.apply(e.currentTarget, [e]); + } else { + handler.apply(context, [e]); + } + }); + } else { + this.element.addEventListener(type, e => { + if (type === 'focusin' && e.target.receivesCustomFocus) { + // Ignore native focus event if a custom one follows + if (e instanceof FocusEvent) { + delete e.target.receivesCustomFocus; + e.stopImmediatePropagation(); + return; + } + } + + Object.defineProperty(e, 'currentTarget', { value: e.currentTarget, writable: true }); + + let currentParent = e.currentTarget.parentNode; + for (let target = e.target; target && target !== currentParent; target = target.parentNode) { + if (target.matches(selector)) { + e.currentTarget = target; + if (context === null) { + handler.apply(target, [e]); + } else { + handler.apply(context, [e]); + } + + break; + } + } + }, false); + } + } + + /** + * Trigger a custom event on the element, asynchronously + * + * The event will bubble and is not cancelable. + * + * @param {string} type + * @param {{}} detail + */ + trigger(type, detail = null) { + setTimeout(() => { + this.element.dispatchEvent(new CustomEvent(type, { + cancelable: true, // TODO: this should depend on whether it's a native or custom event + bubbles: true, + detail: detail + })); + }, 0); + } + + /** + * Focus the element + * + * Any other option than `preventScroll` is used as `event.detail`. + * + * @param {{}} options + */ + focus(options = {}) { + let { preventScroll = false, ...data } = options; + + const hasData = Object.keys(data).length > 0; + if (hasData) { + this.element.receivesCustomFocus = true; + } + + // Put separately on the event loop because focus() forces layout. + setTimeout(() => this.element.focus({ preventScroll: preventScroll }), 0); + + if (hasData) { + this.trigger('focusin', data); + } + } + + /** + * Render the element string as DOM Element + * + * @param {string} html + * @return {Element} + */ + static render(html) { + if (typeof html !== 'string') { + throw new Error("Can\'t render `" + html + "`"); + } + + let template = document.createElement('template'); + template.innerHTML = html; + return template.content.firstChild; + } + } + + /** + * Return a notjQuery object for the given element + * + * @param {Element} element + * @return {notjQuery} + */ + let factory = function (element) { + return new notjQuery(element); + } + + // Define the static methods on the factory + for (let name of Object.getOwnPropertyNames(notjQuery)) { + if (['length', 'prototype', 'name'].includes(name)) { + continue; + } + + Object.defineProperty(factory, name, { + value: notjQuery[name] + }); + } + + return factory; +}); diff --git a/asset/js/vendor/Sortable.js b/asset/js/vendor/Sortable.js new file mode 100644 index 00000000..89497207 --- /dev/null +++ b/asset/js/vendor/Sortable.js @@ -0,0 +1,3721 @@ +/**! + * Sortable 1.13.0 + * @author RubaXa + * @author owenm + * @license MIT + */ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : + typeof define === 'function' && define.icinga ? define(factory) : + (global = global || self, global.Sortable = factory()); +}(this, function () { 'use strict'; + + function _typeof(obj) { + if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { + _typeof = function (obj) { + return typeof obj; + }; + } else { + _typeof = function (obj) { + return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; + }; + } + + return _typeof(obj); + } + + function _defineProperty(obj, key, value) { + if (key in obj) { + Object.defineProperty(obj, key, { + value: value, + enumerable: true, + configurable: true, + writable: true + }); + } else { + obj[key] = value; + } + + return obj; + } + + function _extends() { + _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; + }; + + return _extends.apply(this, arguments); + } + + function _objectSpread(target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i] != null ? arguments[i] : {}; + var ownKeys = Object.keys(source); + + if (typeof Object.getOwnPropertySymbols === 'function') { + ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { + return Object.getOwnPropertyDescriptor(source, sym).enumerable; + })); + } + + ownKeys.forEach(function (key) { + _defineProperty(target, key, source[key]); + }); + } + + return target; + } + + function _objectWithoutPropertiesLoose(source, excluded) { + if (source == null) return {}; + var target = {}; + var sourceKeys = Object.keys(source); + var key, i; + + for (i = 0; i < sourceKeys.length; i++) { + key = sourceKeys[i]; + if (excluded.indexOf(key) >= 0) continue; + target[key] = source[key]; + } + + return target; + } + + function _objectWithoutProperties(source, excluded) { + if (source == null) return {}; + + var target = _objectWithoutPropertiesLoose(source, excluded); + + var key, i; + + if (Object.getOwnPropertySymbols) { + var sourceSymbolKeys = Object.getOwnPropertySymbols(source); + + for (i = 0; i < sourceSymbolKeys.length; i++) { + key = sourceSymbolKeys[i]; + if (excluded.indexOf(key) >= 0) continue; + if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; + target[key] = source[key]; + } + } + + return target; + } + + function _toConsumableArray(arr) { + return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _nonIterableSpread(); + } + + function _arrayWithoutHoles(arr) { + if (Array.isArray(arr)) { + for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) arr2[i] = arr[i]; + + return arr2; + } + } + + function _iterableToArray(iter) { + if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); + } + + function _nonIterableSpread() { + throw new TypeError("Invalid attempt to spread non-iterable instance"); + } + + var version = "1.13.0"; + + function userAgent(pattern) { + if (typeof window !== 'undefined' && window.navigator) { + return !! + /*@__PURE__*/ + navigator.userAgent.match(pattern); + } + } + + var IE11OrLess = userAgent(/(?:Trident.*rv[ :]?11\.|msie|iemobile|Windows Phone)/i); + var Edge = userAgent(/Edge/i); + var FireFox = userAgent(/firefox/i); + var Safari = userAgent(/safari/i) && !userAgent(/chrome/i) && !userAgent(/android/i); + var IOS = userAgent(/iP(ad|od|hone)/i); + var ChromeForAndroid = userAgent(/chrome/i) && userAgent(/android/i); + + var captureMode = { + capture: false, + passive: false + }; + + function on(el, event, fn) { + el.addEventListener(event, fn, !IE11OrLess && captureMode); + } + + function off(el, event, fn) { + el.removeEventListener(event, fn, !IE11OrLess && captureMode); + } + + function matches( + /**HTMLElement*/ + el, + /**String*/ + selector) { + if (!selector) return; + selector[0] === '>' && (selector = selector.substring(1)); + + if (el) { + try { + if (el.matches) { + return el.matches(selector); + } else if (el.msMatchesSelector) { + return el.msMatchesSelector(selector); + } else if (el.webkitMatchesSelector) { + return el.webkitMatchesSelector(selector); + } + } catch (_) { + return false; + } + } + + return false; + } + + function getParentOrHost(el) { + return el.host && el !== document && el.host.nodeType ? el.host : el.parentNode; + } + + function closest( + /**HTMLElement*/ + el, + /**String*/ + selector, + /**HTMLElement*/ + ctx, includeCTX) { + if (el) { + ctx = ctx || document; + + do { + if (selector != null && (selector[0] === '>' ? el.parentNode === ctx && matches(el, selector) : matches(el, selector)) || includeCTX && el === ctx) { + return el; + } + + if (el === ctx) break; + /* jshint boss:true */ + } while (el = getParentOrHost(el)); + } + + return null; + } + + var R_SPACE = /\s+/g; + + function toggleClass(el, name, state) { + if (el && name) { + if (el.classList) { + el.classList[state ? 'add' : 'remove'](name); + } else { + var className = (' ' + el.className + ' ').replace(R_SPACE, ' ').replace(' ' + name + ' ', ' '); + el.className = (className + (state ? ' ' + name : '')).replace(R_SPACE, ' '); + } + } + } + + function css(el, prop, val) { + var style = el && el.style; + + if (style) { + if (val === void 0) { + if (document.defaultView && document.defaultView.getComputedStyle) { + val = document.defaultView.getComputedStyle(el, ''); + } else if (el.currentStyle) { + val = el.currentStyle; + } + + return prop === void 0 ? val : val[prop]; + } else { + if (!(prop in style) && prop.indexOf('webkit') === -1) { + prop = '-webkit-' + prop; + } + + style[prop] = val + (typeof val === 'string' ? '' : 'px'); + } + } + } + + function matrix(el, selfOnly) { + var appliedTransforms = ''; + + if (typeof el === 'string') { + appliedTransforms = el; + } else { + do { + var transform = css(el, 'transform'); + + if (transform && transform !== 'none') { + appliedTransforms = transform + ' ' + appliedTransforms; + } + /* jshint boss:true */ + + } while (!selfOnly && (el = el.parentNode)); + } + + var matrixFn = window.DOMMatrix || window.WebKitCSSMatrix || window.CSSMatrix || window.MSCSSMatrix; + /*jshint -W056 */ + + return matrixFn && new matrixFn(appliedTransforms); + } + + function find(ctx, tagName, iterator) { + if (ctx) { + var list = ctx.getElementsByTagName(tagName), + i = 0, + n = list.length; + + if (iterator) { + for (; i < n; i++) { + iterator(list[i], i); + } + } + + return list; + } + + return []; + } + + function getWindowScrollingElement() { + var scrollingElement = document.scrollingElement; + + if (scrollingElement) { + return scrollingElement; + } else { + return document.documentElement; + } + } + /** + * Returns the "bounding client rect" of given element + * @param {HTMLElement} el The element whose boundingClientRect is wanted + * @param {[Boolean]} relativeToContainingBlock Whether the rect should be relative to the containing block of (including) the container + * @param {[Boolean]} relativeToNonStaticParent Whether the rect should be relative to the relative parent of (including) the contaienr + * @param {[Boolean]} undoScale Whether the container's scale() should be undone + * @param {[HTMLElement]} container The parent the element will be placed in + * @return {Object} The boundingClientRect of el, with specified adjustments + */ + + + function getRect(el, relativeToContainingBlock, relativeToNonStaticParent, undoScale, container) { + if (!el.getBoundingClientRect && el !== window) return; + var elRect, top, left, bottom, right, height, width; + + if (el !== window && el.parentNode && el !== getWindowScrollingElement()) { + elRect = el.getBoundingClientRect(); + top = elRect.top; + left = elRect.left; + bottom = elRect.bottom; + right = elRect.right; + height = elRect.height; + width = elRect.width; + } else { + top = 0; + left = 0; + bottom = window.innerHeight; + right = window.innerWidth; + height = window.innerHeight; + width = window.innerWidth; + } + + if ((relativeToContainingBlock || relativeToNonStaticParent) && el !== window) { + // Adjust for translate() + container = container || el.parentNode; // solves #1123 (see: https://stackoverflow.com/a/37953806/6088312) + // Not needed on <= IE11 + + if (!IE11OrLess) { + do { + if (container && container.getBoundingClientRect && (css(container, 'transform') !== 'none' || relativeToNonStaticParent && css(container, 'position') !== 'static')) { + var containerRect = container.getBoundingClientRect(); // Set relative to edges of padding box of container + + top -= containerRect.top + parseInt(css(container, 'border-top-width')); + left -= containerRect.left + parseInt(css(container, 'border-left-width')); + bottom = top + elRect.height; + right = left + elRect.width; + break; + } + /* jshint boss:true */ + + } while (container = container.parentNode); + } + } + + if (undoScale && el !== window) { + // Adjust for scale() + var elMatrix = matrix(container || el), + scaleX = elMatrix && elMatrix.a, + scaleY = elMatrix && elMatrix.d; + + if (elMatrix) { + top /= scaleY; + left /= scaleX; + width /= scaleX; + height /= scaleY; + bottom = top + height; + right = left + width; + } + } + + return { + top: top, + left: left, + bottom: bottom, + right: right, + width: width, + height: height + }; + } + /** + * Checks if a side of an element is scrolled past a side of its parents + * @param {HTMLElement} el The element who's side being scrolled out of view is in question + * @param {String} elSide Side of the element in question ('top', 'left', 'right', 'bottom') + * @param {String} parentSide Side of the parent in question ('top', 'left', 'right', 'bottom') + * @return {HTMLElement} The parent scroll element that the el's side is scrolled past, or null if there is no such element + */ + + + function isScrolledPast(el, elSide, parentSide) { + var parent = getParentAutoScrollElement(el, true), + elSideVal = getRect(el)[elSide]; + /* jshint boss:true */ + + while (parent) { + var parentSideVal = getRect(parent)[parentSide], + visible = void 0; + + if (parentSide === 'top' || parentSide === 'left') { + visible = elSideVal >= parentSideVal; + } else { + visible = elSideVal <= parentSideVal; + } + + if (!visible) return parent; + if (parent === getWindowScrollingElement()) break; + parent = getParentAutoScrollElement(parent, false); + } + + return false; + } + /** + * Gets nth child of el, ignoring hidden children, sortable's elements (does not ignore clone if it's visible) + * and non-draggable elements + * @param {HTMLElement} el The parent element + * @param {Number} childNum The index of the child + * @param {Object} options Parent Sortable's options + * @return {HTMLElement} The child at index childNum, or null if not found + */ + + + function getChild(el, childNum, options) { + var currentChild = 0, + i = 0, + children = el.children; + + while (i < children.length) { + if (children[i].style.display !== 'none' && children[i] !== Sortable.ghost && children[i] !== Sortable.dragged && closest(children[i], options.draggable, el, false)) { + if (currentChild === childNum) { + return children[i]; + } + + currentChild++; + } + + i++; + } + + return null; + } + /** + * Gets the last child in the el, ignoring ghostEl or invisible elements (clones) + * @param {HTMLElement} el Parent element + * @param {selector} selector Any other elements that should be ignored + * @return {HTMLElement} The last child, ignoring ghostEl + */ + + + function lastChild(el, selector) { + var last = el.lastElementChild; + + while (last && (last === Sortable.ghost || css(last, 'display') === 'none' || selector && !matches(last, selector))) { + last = last.previousElementSibling; + } + + return last || null; + } + /** + * Returns the index of an element within its parent for a selected set of + * elements + * @param {HTMLElement} el + * @param {selector} selector + * @return {number} + */ + + + function index(el, selector) { + var index = 0; + + if (!el || !el.parentNode) { + return -1; + } + /* jshint boss:true */ + + + while (el = el.previousElementSibling) { + if (el.nodeName.toUpperCase() !== 'TEMPLATE' && el !== Sortable.clone && (!selector || matches(el, selector))) { + index++; + } + } + + return index; + } + /** + * Returns the scroll offset of the given element, added with all the scroll offsets of parent elements. + * The value is returned in real pixels. + * @param {HTMLElement} el + * @return {Array} Offsets in the format of [left, top] + */ + + + function getRelativeScrollOffset(el) { + var offsetLeft = 0, + offsetTop = 0, + winScroller = getWindowScrollingElement(); + + if (el) { + do { + var elMatrix = matrix(el), + scaleX = elMatrix.a, + scaleY = elMatrix.d; + offsetLeft += el.scrollLeft * scaleX; + offsetTop += el.scrollTop * scaleY; + } while (el !== winScroller && (el = el.parentNode)); + } + + return [offsetLeft, offsetTop]; + } + /** + * Returns the index of the object within the given array + * @param {Array} arr Array that may or may not hold the object + * @param {Object} obj An object that has a key-value pair unique to and identical to a key-value pair in the object you want to find + * @return {Number} The index of the object in the array, or -1 + */ + + + function indexOfObject(arr, obj) { + for (var i in arr) { + if (!arr.hasOwnProperty(i)) continue; + + for (var key in obj) { + if (obj.hasOwnProperty(key) && obj[key] === arr[i][key]) return Number(i); + } + } + + return -1; + } + + function getParentAutoScrollElement(el, includeSelf) { + // skip to window + if (!el || !el.getBoundingClientRect) return getWindowScrollingElement(); + var elem = el; + var gotSelf = false; + + do { + // we don't need to get elem css if it isn't even overflowing in the first place (performance) + if (elem.clientWidth < elem.scrollWidth || elem.clientHeight < elem.scrollHeight) { + var elemCSS = css(elem); + + if (elem.clientWidth < elem.scrollWidth && (elemCSS.overflowX == 'auto' || elemCSS.overflowX == 'scroll') || elem.clientHeight < elem.scrollHeight && (elemCSS.overflowY == 'auto' || elemCSS.overflowY == 'scroll')) { + if (!elem.getBoundingClientRect || elem === document.body) return getWindowScrollingElement(); + if (gotSelf || includeSelf) return elem; + gotSelf = true; + } + } + /* jshint boss:true */ + + } while (elem = elem.parentNode); + + return getWindowScrollingElement(); + } + + function extend(dst, src) { + if (dst && src) { + for (var key in src) { + if (src.hasOwnProperty(key)) { + dst[key] = src[key]; + } + } + } + + return dst; + } + + function isRectEqual(rect1, rect2) { + return Math.round(rect1.top) === Math.round(rect2.top) && Math.round(rect1.left) === Math.round(rect2.left) && Math.round(rect1.height) === Math.round(rect2.height) && Math.round(rect1.width) === Math.round(rect2.width); + } + + var _throttleTimeout; + + function throttle(callback, ms) { + return function () { + if (!_throttleTimeout) { + var args = arguments, + _this = this; + + if (args.length === 1) { + callback.call(_this, args[0]); + } else { + callback.apply(_this, args); + } + + _throttleTimeout = setTimeout(function () { + _throttleTimeout = void 0; + }, ms); + } + }; + } + + function cancelThrottle() { + clearTimeout(_throttleTimeout); + _throttleTimeout = void 0; + } + + function scrollBy(el, x, y) { + el.scrollLeft += x; + el.scrollTop += y; + } + + function clone(el) { + var Polymer = window.Polymer; + var $ = window.jQuery || window.Zepto; + + if (Polymer && Polymer.dom) { + return Polymer.dom(el).cloneNode(true); + } else if ($) { + return $(el).clone(true)[0]; + } else { + return el.cloneNode(true); + } + } + + function setRect(el, rect) { + css(el, 'position', 'absolute'); + css(el, 'top', rect.top); + css(el, 'left', rect.left); + css(el, 'width', rect.width); + css(el, 'height', rect.height); + } + + function unsetRect(el) { + css(el, 'position', ''); + css(el, 'top', ''); + css(el, 'left', ''); + css(el, 'width', ''); + css(el, 'height', ''); + } + + var expando = 'Sortable' + new Date().getTime(); + + function AnimationStateManager() { + var animationStates = [], + animationCallbackId; + return { + captureAnimationState: function captureAnimationState() { + animationStates = []; + if (!this.options.animation) return; + var children = [].slice.call(this.el.children); + children.forEach(function (child) { + if (css(child, 'display') === 'none' || child === Sortable.ghost) return; + animationStates.push({ + target: child, + rect: getRect(child) + }); + + var fromRect = _objectSpread({}, animationStates[animationStates.length - 1].rect); // If animating: compensate for current animation + + + if (child.thisAnimationDuration) { + var childMatrix = matrix(child, true); + + if (childMatrix) { + fromRect.top -= childMatrix.f; + fromRect.left -= childMatrix.e; + } + } + + child.fromRect = fromRect; + }); + }, + addAnimationState: function addAnimationState(state) { + animationStates.push(state); + }, + removeAnimationState: function removeAnimationState(target) { + animationStates.splice(indexOfObject(animationStates, { + target: target + }), 1); + }, + animateAll: function animateAll(callback) { + var _this = this; + + if (!this.options.animation) { + clearTimeout(animationCallbackId); + if (typeof callback === 'function') callback(); + return; + } + + var animating = false, + animationTime = 0; + animationStates.forEach(function (state) { + var time = 0, + target = state.target, + fromRect = target.fromRect, + toRect = getRect(target), + prevFromRect = target.prevFromRect, + prevToRect = target.prevToRect, + animatingRect = state.rect, + targetMatrix = matrix(target, true); + + if (targetMatrix) { + // Compensate for current animation + toRect.top -= targetMatrix.f; + toRect.left -= targetMatrix.e; + } + + target.toRect = toRect; + + if (target.thisAnimationDuration) { + // Could also check if animatingRect is between fromRect and toRect + if (isRectEqual(prevFromRect, toRect) && !isRectEqual(fromRect, toRect) && // Make sure animatingRect is on line between toRect & fromRect + (animatingRect.top - toRect.top) / (animatingRect.left - toRect.left) === (fromRect.top - toRect.top) / (fromRect.left - toRect.left)) { + // If returning to same place as started from animation and on same axis + time = calculateRealTime(animatingRect, prevFromRect, prevToRect, _this.options); + } + } // if fromRect != toRect: animate + + + if (!isRectEqual(toRect, fromRect)) { + target.prevFromRect = fromRect; + target.prevToRect = toRect; + + if (!time) { + time = _this.options.animation; + } + + _this.animate(target, animatingRect, toRect, time); + } + + if (time) { + animating = true; + animationTime = Math.max(animationTime, time); + clearTimeout(target.animationResetTimer); + target.animationResetTimer = setTimeout(function () { + target.animationTime = 0; + target.prevFromRect = null; + target.fromRect = null; + target.prevToRect = null; + target.thisAnimationDuration = null; + }, time); + target.thisAnimationDuration = time; + } + }); + clearTimeout(animationCallbackId); + + if (!animating) { + if (typeof callback === 'function') callback(); + } else { + animationCallbackId = setTimeout(function () { + if (typeof callback === 'function') callback(); + }, animationTime); + } + + animationStates = []; + }, + animate: function animate(target, currentRect, toRect, duration) { + if (duration) { + css(target, 'transition', ''); + css(target, 'transform', ''); + var elMatrix = matrix(this.el), + scaleX = elMatrix && elMatrix.a, + scaleY = elMatrix && elMatrix.d, + translateX = (currentRect.left - toRect.left) / (scaleX || 1), + translateY = (currentRect.top - toRect.top) / (scaleY || 1); + target.animatingX = !!translateX; + target.animatingY = !!translateY; + css(target, 'transform', 'translate3d(' + translateX + 'px,' + translateY + 'px,0)'); + this.forRepaintDummy = repaint(target); // repaint + + css(target, 'transition', 'transform ' + duration + 'ms' + (this.options.easing ? ' ' + this.options.easing : '')); + css(target, 'transform', 'translate3d(0,0,0)'); + typeof target.animated === 'number' && clearTimeout(target.animated); + target.animated = setTimeout(function () { + css(target, 'transition', ''); + css(target, 'transform', ''); + target.animated = false; + target.animatingX = false; + target.animatingY = false; + }, duration); + } + } + }; + } + + function repaint(target) { + return target.offsetWidth; + } + + function calculateRealTime(animatingRect, fromRect, toRect, options) { + return Math.sqrt(Math.pow(fromRect.top - animatingRect.top, 2) + Math.pow(fromRect.left - animatingRect.left, 2)) / Math.sqrt(Math.pow(fromRect.top - toRect.top, 2) + Math.pow(fromRect.left - toRect.left, 2)) * options.animation; + } + + var plugins = []; + var defaults = { + initializeByDefault: true + }; + var PluginManager = { + mount: function mount(plugin) { + // Set default static properties + for (var option in defaults) { + if (defaults.hasOwnProperty(option) && !(option in plugin)) { + plugin[option] = defaults[option]; + } + } + + plugins.forEach(function (p) { + if (p.pluginName === plugin.pluginName) { + throw "Sortable: Cannot mount plugin ".concat(plugin.pluginName, " more than once"); + } + }); + plugins.push(plugin); + }, + pluginEvent: function pluginEvent(eventName, sortable, evt) { + var _this = this; + + this.eventCanceled = false; + + evt.cancel = function () { + _this.eventCanceled = true; + }; + + var eventNameGlobal = eventName + 'Global'; + plugins.forEach(function (plugin) { + if (!sortable[plugin.pluginName]) return; // Fire global events if it exists in this sortable + + if (sortable[plugin.pluginName][eventNameGlobal]) { + sortable[plugin.pluginName][eventNameGlobal](_objectSpread({ + sortable: sortable + }, evt)); + } // Only fire plugin event if plugin is enabled in this sortable, + // and plugin has event defined + + + if (sortable.options[plugin.pluginName] && sortable[plugin.pluginName][eventName]) { + sortable[plugin.pluginName][eventName](_objectSpread({ + sortable: sortable + }, evt)); + } + }); + }, + initializePlugins: function initializePlugins(sortable, el, defaults, options) { + plugins.forEach(function (plugin) { + var pluginName = plugin.pluginName; + if (!sortable.options[pluginName] && !plugin.initializeByDefault) return; + var initialized = new plugin(sortable, el, sortable.options); + initialized.sortable = sortable; + initialized.options = sortable.options; + sortable[pluginName] = initialized; // Add default options from plugin + + _extends(defaults, initialized.defaults); + }); + + for (var option in sortable.options) { + if (!sortable.options.hasOwnProperty(option)) continue; + var modified = this.modifyOption(sortable, option, sortable.options[option]); + + if (typeof modified !== 'undefined') { + sortable.options[option] = modified; + } + } + }, + getEventProperties: function getEventProperties(name, sortable) { + var eventProperties = {}; + plugins.forEach(function (plugin) { + if (typeof plugin.eventProperties !== 'function') return; + + _extends(eventProperties, plugin.eventProperties.call(sortable[plugin.pluginName], name)); + }); + return eventProperties; + }, + modifyOption: function modifyOption(sortable, name, value) { + var modifiedValue; + plugins.forEach(function (plugin) { + // Plugin must exist on the Sortable + if (!sortable[plugin.pluginName]) return; // If static option listener exists for this option, call in the context of the Sortable's instance of this plugin + + if (plugin.optionListeners && typeof plugin.optionListeners[name] === 'function') { + modifiedValue = plugin.optionListeners[name].call(sortable[plugin.pluginName], value); + } + }); + return modifiedValue; + } + }; + + function dispatchEvent(_ref) { + var sortable = _ref.sortable, + rootEl = _ref.rootEl, + name = _ref.name, + targetEl = _ref.targetEl, + cloneEl = _ref.cloneEl, + toEl = _ref.toEl, + fromEl = _ref.fromEl, + oldIndex = _ref.oldIndex, + newIndex = _ref.newIndex, + oldDraggableIndex = _ref.oldDraggableIndex, + newDraggableIndex = _ref.newDraggableIndex, + originalEvent = _ref.originalEvent, + putSortable = _ref.putSortable, + extraEventProperties = _ref.extraEventProperties; + sortable = sortable || rootEl && rootEl[expando]; + if (!sortable) return; + var evt, + options = sortable.options, + onName = 'on' + name.charAt(0).toUpperCase() + name.substr(1); // Support for new CustomEvent feature + + if (window.CustomEvent && !IE11OrLess && !Edge) { + evt = new CustomEvent(name, { + bubbles: true, + cancelable: true + }); + } else { + evt = document.createEvent('Event'); + evt.initEvent(name, true, true); + } + + evt.to = toEl || rootEl; + evt.from = fromEl || rootEl; + evt.item = targetEl || rootEl; + evt.clone = cloneEl; + evt.oldIndex = oldIndex; + evt.newIndex = newIndex; + evt.oldDraggableIndex = oldDraggableIndex; + evt.newDraggableIndex = newDraggableIndex; + evt.originalEvent = originalEvent; + evt.pullMode = putSortable ? putSortable.lastPutMode : undefined; + + var allEventProperties = _objectSpread({}, extraEventProperties, PluginManager.getEventProperties(name, sortable)); + + for (var option in allEventProperties) { + evt[option] = allEventProperties[option]; + } + + if (rootEl) { + rootEl.dispatchEvent(evt); + } + + if (options[onName]) { + options[onName].call(sortable, evt); + } + } + + var pluginEvent = function pluginEvent(eventName, sortable) { + var _ref = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}, + originalEvent = _ref.evt, + data = _objectWithoutProperties(_ref, ["evt"]); + + PluginManager.pluginEvent.bind(Sortable)(eventName, sortable, _objectSpread({ + dragEl: dragEl, + parentEl: parentEl, + ghostEl: ghostEl, + rootEl: rootEl, + nextEl: nextEl, + lastDownEl: lastDownEl, + cloneEl: cloneEl, + cloneHidden: cloneHidden, + dragStarted: moved, + putSortable: putSortable, + activeSortable: Sortable.active, + originalEvent: originalEvent, + oldIndex: oldIndex, + oldDraggableIndex: oldDraggableIndex, + newIndex: newIndex, + newDraggableIndex: newDraggableIndex, + hideGhostForTarget: _hideGhostForTarget, + unhideGhostForTarget: _unhideGhostForTarget, + cloneNowHidden: function cloneNowHidden() { + cloneHidden = true; + }, + cloneNowShown: function cloneNowShown() { + cloneHidden = false; + }, + dispatchSortableEvent: function dispatchSortableEvent(name) { + _dispatchEvent({ + sortable: sortable, + name: name, + originalEvent: originalEvent + }); + } + }, data)); + }; + + function _dispatchEvent(info) { + dispatchEvent(_objectSpread({ + putSortable: putSortable, + cloneEl: cloneEl, + targetEl: dragEl, + rootEl: rootEl, + oldIndex: oldIndex, + oldDraggableIndex: oldDraggableIndex, + newIndex: newIndex, + newDraggableIndex: newDraggableIndex + }, info)); + } + + var dragEl, + parentEl, + ghostEl, + rootEl, + nextEl, + lastDownEl, + cloneEl, + cloneHidden, + oldIndex, + newIndex, + oldDraggableIndex, + newDraggableIndex, + activeGroup, + putSortable, + awaitingDragStarted = false, + ignoreNextClick = false, + sortables = [], + tapEvt, + touchEvt, + lastDx, + lastDy, + tapDistanceLeft, + tapDistanceTop, + moved, + lastTarget, + lastDirection, + pastFirstInvertThresh = false, + isCircumstantialInvert = false, + targetMoveDistance, + // For positioning ghost absolutely + ghostRelativeParent, + ghostRelativeParentInitialScroll = [], + // (left, top) + _silent = false, + savedInputChecked = []; + /** @const */ + + var documentExists = typeof document !== 'undefined', + PositionGhostAbsolutely = IOS, + CSSFloatProperty = Edge || IE11OrLess ? 'cssFloat' : 'float', + // This will not pass for IE9, because IE9 DnD only works on anchors + supportDraggable = documentExists && !ChromeForAndroid && !IOS && 'draggable' in document.createElement('div'), + supportCssPointerEvents = function () { + if (!documentExists) return; // false when <= IE11 + + if (IE11OrLess) { + return false; + } + + var el = document.createElement('x'); + el.style.cssText = 'pointer-events:auto'; + return el.style.pointerEvents === 'auto'; + }(), + _detectDirection = function _detectDirection(el, options) { + var elCSS = css(el), + elWidth = parseInt(elCSS.width) - parseInt(elCSS.paddingLeft) - parseInt(elCSS.paddingRight) - parseInt(elCSS.borderLeftWidth) - parseInt(elCSS.borderRightWidth), + child1 = getChild(el, 0, options), + child2 = getChild(el, 1, options), + firstChildCSS = child1 && css(child1), + secondChildCSS = child2 && css(child2), + firstChildWidth = firstChildCSS && parseInt(firstChildCSS.marginLeft) + parseInt(firstChildCSS.marginRight) + getRect(child1).width, + secondChildWidth = secondChildCSS && parseInt(secondChildCSS.marginLeft) + parseInt(secondChildCSS.marginRight) + getRect(child2).width; + + if (elCSS.display === 'flex') { + return elCSS.flexDirection === 'column' || elCSS.flexDirection === 'column-reverse' ? 'vertical' : 'horizontal'; + } + + if (elCSS.display === 'grid') { + return elCSS.gridTemplateColumns.split(' ').length <= 1 ? 'vertical' : 'horizontal'; + } + + if (child1 && firstChildCSS["float"] && firstChildCSS["float"] !== 'none') { + var touchingSideChild2 = firstChildCSS["float"] === 'left' ? 'left' : 'right'; + return child2 && (secondChildCSS.clear === 'both' || secondChildCSS.clear === touchingSideChild2) ? 'vertical' : 'horizontal'; + } + + return child1 && (firstChildCSS.display === 'block' || firstChildCSS.display === 'flex' || firstChildCSS.display === 'table' || firstChildCSS.display === 'grid' || firstChildWidth >= elWidth && elCSS[CSSFloatProperty] === 'none' || child2 && elCSS[CSSFloatProperty] === 'none' && firstChildWidth + secondChildWidth > elWidth) ? 'vertical' : 'horizontal'; + }, + _dragElInRowColumn = function _dragElInRowColumn(dragRect, targetRect, vertical) { + var dragElS1Opp = vertical ? dragRect.left : dragRect.top, + dragElS2Opp = vertical ? dragRect.right : dragRect.bottom, + dragElOppLength = vertical ? dragRect.width : dragRect.height, + targetS1Opp = vertical ? targetRect.left : targetRect.top, + targetS2Opp = vertical ? targetRect.right : targetRect.bottom, + targetOppLength = vertical ? targetRect.width : targetRect.height; + return dragElS1Opp === targetS1Opp || dragElS2Opp === targetS2Opp || dragElS1Opp + dragElOppLength / 2 === targetS1Opp + targetOppLength / 2; + }, + + /** + * Detects first nearest empty sortable to X and Y position using emptyInsertThreshold. + * @param {Number} x X position + * @param {Number} y Y position + * @return {HTMLElement} Element of the first found nearest Sortable + */ + _detectNearestEmptySortable = function _detectNearestEmptySortable(x, y) { + var ret; + sortables.some(function (sortable) { + if (lastChild(sortable)) return; + var rect = getRect(sortable), + threshold = sortable[expando].options.emptyInsertThreshold, + insideHorizontally = x >= rect.left - threshold && x <= rect.right + threshold, + insideVertically = y >= rect.top - threshold && y <= rect.bottom + threshold; + + if (threshold && insideHorizontally && insideVertically) { + return ret = sortable; + } + }); + return ret; + }, + _prepareGroup = function _prepareGroup(options) { + function toFn(value, pull) { + return function (to, from, dragEl, evt) { + var sameGroup = to.options.group.name && from.options.group.name && to.options.group.name === from.options.group.name; + + if (value == null && (pull || sameGroup)) { + // Default pull value + // Default pull and put value if same group + return true; + } else if (value == null || value === false) { + return false; + } else if (pull && value === 'clone') { + return value; + } else if (typeof value === 'function') { + return toFn(value(to, from, dragEl, evt), pull)(to, from, dragEl, evt); + } else { + var otherGroup = (pull ? to : from).options.group.name; + return value === true || typeof value === 'string' && value === otherGroup || value.join && value.indexOf(otherGroup) > -1; + } + }; + } + + var group = {}; + var originalGroup = options.group; + + if (!originalGroup || _typeof(originalGroup) != 'object') { + originalGroup = { + name: originalGroup + }; + } + + group.name = originalGroup.name; + group.checkPull = toFn(originalGroup.pull, true); + group.checkPut = toFn(originalGroup.put); + group.revertClone = originalGroup.revertClone; + options.group = group; + }, + _hideGhostForTarget = function _hideGhostForTarget() { + if (!supportCssPointerEvents && ghostEl) { + css(ghostEl, 'display', 'none'); + } + }, + _unhideGhostForTarget = function _unhideGhostForTarget() { + if (!supportCssPointerEvents && ghostEl) { + css(ghostEl, 'display', ''); + } + }; // #1184 fix - Prevent click event on fallback if dragged but item not changed position + + + if (documentExists) { + document.addEventListener('click', function (evt) { + if (ignoreNextClick) { + evt.preventDefault(); + evt.stopPropagation && evt.stopPropagation(); + evt.stopImmediatePropagation && evt.stopImmediatePropagation(); + ignoreNextClick = false; + return false; + } + }, true); + } + + var nearestEmptyInsertDetectEvent = function nearestEmptyInsertDetectEvent(evt) { + if (dragEl) { + evt = evt.touches ? evt.touches[0] : evt; + + var nearest = _detectNearestEmptySortable(evt.clientX, evt.clientY); + + if (nearest) { + // Create imitation event + var event = {}; + + for (var i in evt) { + if (evt.hasOwnProperty(i)) { + event[i] = evt[i]; + } + } + + event.target = event.rootEl = nearest; + event.preventDefault = void 0; + event.stopPropagation = void 0; + + nearest[expando]._onDragOver(event); + } + } + }; + + var _checkOutsideTargetEl = function _checkOutsideTargetEl(evt) { + if (dragEl) { + dragEl.parentNode[expando]._isOutsideThisEl(evt.target); + } + }; + /** + * @class Sortable + * @param {HTMLElement} el + * @param {Object} [options] + */ + + + function Sortable(el, options) { + if (!(el && el.nodeType && el.nodeType === 1)) { + throw "Sortable: `el` must be an HTMLElement, not ".concat({}.toString.call(el)); + } + + this.el = el; // root element + + this.options = options = _extends({}, options); // Export instance + + el[expando] = this; + var defaults = { + group: null, + sort: true, + disabled: false, + store: null, + handle: null, + draggable: /^[uo]l$/i.test(el.nodeName) ? '>li' : '>*', + swapThreshold: 1, + // percentage; 0 <= x <= 1 + invertSwap: false, + // invert always + invertedSwapThreshold: null, + // will be set to same as swapThreshold if default + removeCloneOnHide: true, + direction: function direction() { + return _detectDirection(el, this.options); + }, + ghostClass: 'sortable-ghost', + chosenClass: 'sortable-chosen', + dragClass: 'sortable-drag', + ignore: 'a, img', + filter: null, + preventOnFilter: true, + animation: 0, + easing: null, + setData: function setData(dataTransfer, dragEl) { + dataTransfer.setData('Text', dragEl.textContent); + }, + dropBubble: false, + dragoverBubble: false, + dataIdAttr: 'data-id', + delay: 0, + delayOnTouchOnly: false, + touchStartThreshold: (Number.parseInt ? Number : window).parseInt(window.devicePixelRatio, 10) || 1, + forceFallback: false, + fallbackClass: 'sortable-fallback', + fallbackOnBody: false, + fallbackTolerance: 0, + fallbackOffset: { + x: 0, + y: 0 + }, + supportPointer: Sortable.supportPointer !== false && 'PointerEvent' in window && !Safari, + emptyInsertThreshold: 5 + }; + PluginManager.initializePlugins(this, el, defaults); // Set default options + + for (var name in defaults) { + !(name in options) && (options[name] = defaults[name]); + } + + _prepareGroup(options); // Bind all private methods + + + for (var fn in this) { + if (fn.charAt(0) === '_' && typeof this[fn] === 'function') { + this[fn] = this[fn].bind(this); + } + } // Setup drag mode + + + this.nativeDraggable = options.forceFallback ? false : supportDraggable; + + if (this.nativeDraggable) { + // Touch start threshold cannot be greater than the native dragstart threshold + this.options.touchStartThreshold = 1; + } // Bind events + + + if (options.supportPointer) { + on(el, 'pointerdown', this._onTapStart); + } else { + on(el, 'mousedown', this._onTapStart); + on(el, 'touchstart', this._onTapStart); + } + + if (this.nativeDraggable) { + on(el, 'dragover', this); + on(el, 'dragenter', this); + } + + sortables.push(this.el); // Restore sorting + + options.store && options.store.get && this.sort(options.store.get(this) || []); // Add animation state manager + + _extends(this, AnimationStateManager()); + } + + Sortable.prototype = + /** @lends Sortable.prototype */ + { + constructor: Sortable, + _isOutsideThisEl: function _isOutsideThisEl(target) { + if (!this.el.contains(target) && target !== this.el) { + lastTarget = null; + } + }, + _getDirection: function _getDirection(evt, target) { + return typeof this.options.direction === 'function' ? this.options.direction.call(this, evt, target, dragEl) : this.options.direction; + }, + _onTapStart: function _onTapStart( + /** Event|TouchEvent */ + evt) { + if (!evt.cancelable) return; + + var _this = this, + el = this.el, + options = this.options, + preventOnFilter = options.preventOnFilter, + type = evt.type, + touch = evt.touches && evt.touches[0] || evt.pointerType && evt.pointerType === 'touch' && evt, + target = (touch || evt).target, + originalTarget = evt.target.shadowRoot && (evt.path && evt.path[0] || evt.composedPath && evt.composedPath()[0]) || target, + filter = options.filter; + + _saveInputCheckedState(el); // Don't trigger start event when an element is been dragged, otherwise the evt.oldindex always wrong when set option.group. + + + if (dragEl) { + return; + } + + if (/mousedown|pointerdown/.test(type) && evt.button !== 0 || options.disabled) { + return; // only left button and enabled + } // cancel dnd if original target is content editable + + + if (originalTarget.isContentEditable) { + return; + } // Safari ignores further event handling after mousedown + + + if (!this.nativeDraggable && Safari && target && target.tagName.toUpperCase() === 'SELECT') { + return; + } + + target = closest(target, options.draggable, el, false); + + if (target && target.animated) { + return; + } + + if (lastDownEl === target) { + // Ignoring duplicate `down` + return; + } // Get the index of the dragged element within its parent + + + oldIndex = index(target); + oldDraggableIndex = index(target, options.draggable); // Check filter + + if (typeof filter === 'function') { + if (filter.call(this, evt, target, this)) { + _dispatchEvent({ + sortable: _this, + rootEl: originalTarget, + name: 'filter', + targetEl: target, + toEl: el, + fromEl: el + }); + + pluginEvent('filter', _this, { + evt: evt + }); + preventOnFilter && evt.cancelable && evt.preventDefault(); + return; // cancel dnd + } + } else if (filter) { + filter = filter.split(',').some(function (criteria) { + criteria = closest(originalTarget, criteria.trim(), el, false); + + if (criteria) { + _dispatchEvent({ + sortable: _this, + rootEl: criteria, + name: 'filter', + targetEl: target, + fromEl: el, + toEl: el + }); + + pluginEvent('filter', _this, { + evt: evt + }); + return true; + } + }); + + if (filter) { + preventOnFilter && evt.cancelable && evt.preventDefault(); + return; // cancel dnd + } + } + + if (options.handle && !closest(originalTarget, options.handle, el, false)) { + return; + } // Prepare `dragstart` + + + this._prepareDragStart(evt, touch, target); + }, + _prepareDragStart: function _prepareDragStart( + /** Event */ + evt, + /** Touch */ + touch, + /** HTMLElement */ + target) { + var _this = this, + el = _this.el, + options = _this.options, + ownerDocument = el.ownerDocument, + dragStartFn; + + if (target && !dragEl && target.parentNode === el) { + var dragRect = getRect(target); + rootEl = el; + dragEl = target; + parentEl = dragEl.parentNode; + nextEl = dragEl.nextSibling; + lastDownEl = target; + activeGroup = options.group; + Sortable.dragged = dragEl; + tapEvt = { + target: dragEl, + clientX: (touch || evt).clientX, + clientY: (touch || evt).clientY + }; + tapDistanceLeft = tapEvt.clientX - dragRect.left; + tapDistanceTop = tapEvt.clientY - dragRect.top; + this._lastX = (touch || evt).clientX; + this._lastY = (touch || evt).clientY; + dragEl.style['will-change'] = 'all'; + + dragStartFn = function dragStartFn() { + pluginEvent('delayEnded', _this, { + evt: evt + }); + + if (Sortable.eventCanceled) { + _this._onDrop(); + + return; + } // Delayed drag has been triggered + // we can re-enable the events: touchmove/mousemove + + + _this._disableDelayedDragEvents(); + + if (!FireFox && _this.nativeDraggable) { + dragEl.draggable = true; + } // Bind the events: dragstart/dragend + + + _this._triggerDragStart(evt, touch); // Drag start event + + + _dispatchEvent({ + sortable: _this, + name: 'choose', + originalEvent: evt + }); // Chosen item + + + toggleClass(dragEl, options.chosenClass, true); + }; // Disable "draggable" + + + options.ignore.split(',').forEach(function (criteria) { + find(dragEl, criteria.trim(), _disableDraggable); + }); + on(ownerDocument, 'dragover', nearestEmptyInsertDetectEvent); + on(ownerDocument, 'mousemove', nearestEmptyInsertDetectEvent); + on(ownerDocument, 'touchmove', nearestEmptyInsertDetectEvent); + on(ownerDocument, 'mouseup', _this._onDrop); + on(ownerDocument, 'touchend', _this._onDrop); + on(ownerDocument, 'touchcancel', _this._onDrop); // Make dragEl draggable (must be before delay for FireFox) + + if (FireFox && this.nativeDraggable) { + this.options.touchStartThreshold = 4; + dragEl.draggable = true; + } + + pluginEvent('delayStart', this, { + evt: evt + }); // Delay is impossible for native DnD in Edge or IE + + if (options.delay && (!options.delayOnTouchOnly || touch) && (!this.nativeDraggable || !(Edge || IE11OrLess))) { + if (Sortable.eventCanceled) { + this._onDrop(); + + return; + } // If the user moves the pointer or let go the click or touch + // before the delay has been reached: + // disable the delayed drag + + + on(ownerDocument, 'mouseup', _this._disableDelayedDrag); + on(ownerDocument, 'touchend', _this._disableDelayedDrag); + on(ownerDocument, 'touchcancel', _this._disableDelayedDrag); + on(ownerDocument, 'mousemove', _this._delayedDragTouchMoveHandler); + on(ownerDocument, 'touchmove', _this._delayedDragTouchMoveHandler); + options.supportPointer && on(ownerDocument, 'pointermove', _this._delayedDragTouchMoveHandler); + _this._dragStartTimer = setTimeout(dragStartFn, options.delay); + } else { + dragStartFn(); + } + } + }, + _delayedDragTouchMoveHandler: function _delayedDragTouchMoveHandler( + /** TouchEvent|PointerEvent **/ + e) { + var touch = e.touches ? e.touches[0] : e; + + if (Math.max(Math.abs(touch.clientX - this._lastX), Math.abs(touch.clientY - this._lastY)) >= Math.floor(this.options.touchStartThreshold / (this.nativeDraggable && window.devicePixelRatio || 1))) { + this._disableDelayedDrag(); + } + }, + _disableDelayedDrag: function _disableDelayedDrag() { + dragEl && _disableDraggable(dragEl); + clearTimeout(this._dragStartTimer); + + this._disableDelayedDragEvents(); + }, + _disableDelayedDragEvents: function _disableDelayedDragEvents() { + var ownerDocument = this.el.ownerDocument; + off(ownerDocument, 'mouseup', this._disableDelayedDrag); + off(ownerDocument, 'touchend', this._disableDelayedDrag); + off(ownerDocument, 'touchcancel', this._disableDelayedDrag); + off(ownerDocument, 'mousemove', this._delayedDragTouchMoveHandler); + off(ownerDocument, 'touchmove', this._delayedDragTouchMoveHandler); + off(ownerDocument, 'pointermove', this._delayedDragTouchMoveHandler); + }, + _triggerDragStart: function _triggerDragStart( + /** Event */ + evt, + /** Touch */ + touch) { + touch = touch || evt.pointerType == 'touch' && evt; + + if (!this.nativeDraggable || touch) { + if (this.options.supportPointer) { + on(document, 'pointermove', this._onTouchMove); + } else if (touch) { + on(document, 'touchmove', this._onTouchMove); + } else { + on(document, 'mousemove', this._onTouchMove); + } + } else { + on(dragEl, 'dragend', this); + on(rootEl, 'dragstart', this._onDragStart); + } + + try { + if (document.selection) { + // Timeout neccessary for IE9 + _nextTick(function () { + document.selection.empty(); + }); + } else { + window.getSelection().removeAllRanges(); + } + } catch (err) {} + }, + _dragStarted: function _dragStarted(fallback, evt) { + + awaitingDragStarted = false; + + if (rootEl && dragEl) { + pluginEvent('dragStarted', this, { + evt: evt + }); + + if (this.nativeDraggable) { + on(document, 'dragover', _checkOutsideTargetEl); + } + + var options = this.options; // Apply effect + + !fallback && toggleClass(dragEl, options.dragClass, false); + toggleClass(dragEl, options.ghostClass, true); + Sortable.active = this; + fallback && this._appendGhost(); // Drag start event + + _dispatchEvent({ + sortable: this, + name: 'start', + originalEvent: evt + }); + } else { + this._nulling(); + } + }, + _emulateDragOver: function _emulateDragOver() { + if (touchEvt) { + this._lastX = touchEvt.clientX; + this._lastY = touchEvt.clientY; + + _hideGhostForTarget(); + + var target = document.elementFromPoint(touchEvt.clientX, touchEvt.clientY); + var parent = target; + + while (target && target.shadowRoot) { + target = target.shadowRoot.elementFromPoint(touchEvt.clientX, touchEvt.clientY); + if (target === parent) break; + parent = target; + } + + dragEl.parentNode[expando]._isOutsideThisEl(target); + + if (parent) { + do { + if (parent[expando]) { + var inserted = void 0; + inserted = parent[expando]._onDragOver({ + clientX: touchEvt.clientX, + clientY: touchEvt.clientY, + target: target, + rootEl: parent + }); + + if (inserted && !this.options.dragoverBubble) { + break; + } + } + + target = parent; // store last element + } + /* jshint boss:true */ + while (parent = parent.parentNode); + } + + _unhideGhostForTarget(); + } + }, + _onTouchMove: function _onTouchMove( + /**TouchEvent*/ + evt) { + if (tapEvt) { + var options = this.options, + fallbackTolerance = options.fallbackTolerance, + fallbackOffset = options.fallbackOffset, + touch = evt.touches ? evt.touches[0] : evt, + ghostMatrix = ghostEl && matrix(ghostEl, true), + scaleX = ghostEl && ghostMatrix && ghostMatrix.a, + scaleY = ghostEl && ghostMatrix && ghostMatrix.d, + relativeScrollOffset = PositionGhostAbsolutely && ghostRelativeParent && getRelativeScrollOffset(ghostRelativeParent), + dx = (touch.clientX - tapEvt.clientX + fallbackOffset.x) / (scaleX || 1) + (relativeScrollOffset ? relativeScrollOffset[0] - ghostRelativeParentInitialScroll[0] : 0) / (scaleX || 1), + dy = (touch.clientY - tapEvt.clientY + fallbackOffset.y) / (scaleY || 1) + (relativeScrollOffset ? relativeScrollOffset[1] - ghostRelativeParentInitialScroll[1] : 0) / (scaleY || 1); // only set the status to dragging, when we are actually dragging + + if (!Sortable.active && !awaitingDragStarted) { + if (fallbackTolerance && Math.max(Math.abs(touch.clientX - this._lastX), Math.abs(touch.clientY - this._lastY)) < fallbackTolerance) { + return; + } + + this._onDragStart(evt, true); + } + + if (ghostEl) { + if (ghostMatrix) { + ghostMatrix.e += dx - (lastDx || 0); + ghostMatrix.f += dy - (lastDy || 0); + } else { + ghostMatrix = { + a: 1, + b: 0, + c: 0, + d: 1, + e: dx, + f: dy + }; + } + + var cssMatrix = "matrix(".concat(ghostMatrix.a, ",").concat(ghostMatrix.b, ",").concat(ghostMatrix.c, ",").concat(ghostMatrix.d, ",").concat(ghostMatrix.e, ",").concat(ghostMatrix.f, ")"); + css(ghostEl, 'webkitTransform', cssMatrix); + css(ghostEl, 'mozTransform', cssMatrix); + css(ghostEl, 'msTransform', cssMatrix); + css(ghostEl, 'transform', cssMatrix); + lastDx = dx; + lastDy = dy; + touchEvt = touch; + } + + evt.cancelable && evt.preventDefault(); + } + }, + _appendGhost: function _appendGhost() { + // Bug if using scale(): https://stackoverflow.com/questions/2637058 + // Not being adjusted for + if (!ghostEl) { + var container = this.options.fallbackOnBody ? document.body : rootEl, + rect = getRect(dragEl, true, PositionGhostAbsolutely, true, container), + options = this.options; // Position absolutely + + if (PositionGhostAbsolutely) { + // Get relatively positioned parent + ghostRelativeParent = container; + + while (css(ghostRelativeParent, 'position') === 'static' && css(ghostRelativeParent, 'transform') === 'none' && ghostRelativeParent !== document) { + ghostRelativeParent = ghostRelativeParent.parentNode; + } + + if (ghostRelativeParent !== document.body && ghostRelativeParent !== document.documentElement) { + if (ghostRelativeParent === document) ghostRelativeParent = getWindowScrollingElement(); + rect.top += ghostRelativeParent.scrollTop; + rect.left += ghostRelativeParent.scrollLeft; + } else { + ghostRelativeParent = getWindowScrollingElement(); + } + + ghostRelativeParentInitialScroll = getRelativeScrollOffset(ghostRelativeParent); + } + + ghostEl = dragEl.cloneNode(true); + toggleClass(ghostEl, options.ghostClass, false); + toggleClass(ghostEl, options.fallbackClass, true); + toggleClass(ghostEl, options.dragClass, true); + css(ghostEl, 'transition', ''); + css(ghostEl, 'transform', ''); + css(ghostEl, 'box-sizing', 'border-box'); + css(ghostEl, 'margin', 0); + css(ghostEl, 'top', rect.top); + css(ghostEl, 'left', rect.left); + css(ghostEl, 'width', rect.width); + css(ghostEl, 'height', rect.height); + css(ghostEl, 'opacity', '0.8'); + css(ghostEl, 'position', PositionGhostAbsolutely ? 'absolute' : 'fixed'); + css(ghostEl, 'zIndex', '100000'); + css(ghostEl, 'pointerEvents', 'none'); + Sortable.ghost = ghostEl; + container.appendChild(ghostEl); // Set transform-origin + + css(ghostEl, 'transform-origin', tapDistanceLeft / parseInt(ghostEl.style.width) * 100 + '% ' + tapDistanceTop / parseInt(ghostEl.style.height) * 100 + '%'); + } + }, + _onDragStart: function _onDragStart( + /**Event*/ + evt, + /**boolean*/ + fallback) { + var _this = this; + + var dataTransfer = evt.dataTransfer; + var options = _this.options; + pluginEvent('dragStart', this, { + evt: evt + }); + + if (Sortable.eventCanceled) { + this._onDrop(); + + return; + } + + pluginEvent('setupClone', this); + + if (!Sortable.eventCanceled) { + cloneEl = clone(dragEl); + cloneEl.draggable = false; + cloneEl.style['will-change'] = ''; + + this._hideClone(); + + toggleClass(cloneEl, this.options.chosenClass, false); + Sortable.clone = cloneEl; + } // #1143: IFrame support workaround + + + _this.cloneId = _nextTick(function () { + pluginEvent('clone', _this); + if (Sortable.eventCanceled) return; + + if (!_this.options.removeCloneOnHide) { + rootEl.insertBefore(cloneEl, dragEl); + } + + _this._hideClone(); + + _dispatchEvent({ + sortable: _this, + name: 'clone' + }); + }); + !fallback && toggleClass(dragEl, options.dragClass, true); // Set proper drop events + + if (fallback) { + ignoreNextClick = true; + _this._loopId = setInterval(_this._emulateDragOver, 50); + } else { + // Undo what was set in _prepareDragStart before drag started + off(document, 'mouseup', _this._onDrop); + off(document, 'touchend', _this._onDrop); + off(document, 'touchcancel', _this._onDrop); + + if (dataTransfer) { + dataTransfer.effectAllowed = 'move'; + options.setData && options.setData.call(_this, dataTransfer, dragEl); + } + + on(document, 'drop', _this); // #1276 fix: + + css(dragEl, 'transform', 'translateZ(0)'); + } + + awaitingDragStarted = true; + _this._dragStartId = _nextTick(_this._dragStarted.bind(_this, fallback, evt)); + on(document, 'selectstart', _this); + moved = true; + + if (Safari) { + css(document.body, 'user-select', 'none'); + } + }, + // Returns true - if no further action is needed (either inserted or another condition) + _onDragOver: function _onDragOver( + /**Event*/ + evt) { + var el = this.el, + target = evt.target, + dragRect, + targetRect, + revert, + options = this.options, + group = options.group, + activeSortable = Sortable.active, + isOwner = activeGroup === group, + canSort = options.sort, + fromSortable = putSortable || activeSortable, + vertical, + _this = this, + completedFired = false; + + if (_silent) return; + + function dragOverEvent(name, extra) { + pluginEvent(name, _this, _objectSpread({ + evt: evt, + isOwner: isOwner, + axis: vertical ? 'vertical' : 'horizontal', + revert: revert, + dragRect: dragRect, + targetRect: targetRect, + canSort: canSort, + fromSortable: fromSortable, + target: target, + completed: completed, + onMove: function onMove(target, after) { + return _onMove(rootEl, el, dragEl, dragRect, target, getRect(target), evt, after); + }, + changed: changed + }, extra)); + } // Capture animation state + + + function capture() { + dragOverEvent('dragOverAnimationCapture'); + + _this.captureAnimationState(); + + if (_this !== fromSortable) { + fromSortable.captureAnimationState(); + } + } // Return invocation when dragEl is inserted (or completed) + + + function completed(insertion) { + dragOverEvent('dragOverCompleted', { + insertion: insertion + }); + + if (insertion) { + // Clones must be hidden before folding animation to capture dragRectAbsolute properly + if (isOwner) { + activeSortable._hideClone(); + } else { + activeSortable._showClone(_this); + } + + if (_this !== fromSortable) { + // Set ghost class to new sortable's ghost class + toggleClass(dragEl, putSortable ? putSortable.options.ghostClass : activeSortable.options.ghostClass, false); + toggleClass(dragEl, options.ghostClass, true); + } + + if (putSortable !== _this && _this !== Sortable.active) { + putSortable = _this; + } else if (_this === Sortable.active && putSortable) { + putSortable = null; + } // Animation + + + if (fromSortable === _this) { + _this._ignoreWhileAnimating = target; + } + + _this.animateAll(function () { + dragOverEvent('dragOverAnimationComplete'); + _this._ignoreWhileAnimating = null; + }); + + if (_this !== fromSortable) { + fromSortable.animateAll(); + fromSortable._ignoreWhileAnimating = null; + } + } // Null lastTarget if it is not inside a previously swapped element + + + if (target === dragEl && !dragEl.animated || target === el && !target.animated) { + lastTarget = null; + } // no bubbling and not fallback + + + if (!options.dragoverBubble && !evt.rootEl && target !== document) { + dragEl.parentNode[expando]._isOutsideThisEl(evt.target); // Do not detect for empty insert if already inserted + + + !insertion && nearestEmptyInsertDetectEvent(evt); + } + + !options.dragoverBubble && evt.stopPropagation && evt.stopPropagation(); + return completedFired = true; + } // Call when dragEl has been inserted + + + function changed() { + newIndex = index(dragEl); + newDraggableIndex = index(dragEl, options.draggable); + + _dispatchEvent({ + sortable: _this, + name: 'change', + toEl: el, + newIndex: newIndex, + newDraggableIndex: newDraggableIndex, + originalEvent: evt + }); + } + + if (evt.preventDefault !== void 0) { + evt.cancelable && evt.preventDefault(); + } + + target = closest(target, options.draggable, el, true); + dragOverEvent('dragOver'); + if (Sortable.eventCanceled) return completedFired; + + if (dragEl.contains(evt.target) || target.animated && target.animatingX && target.animatingY || _this._ignoreWhileAnimating === target) { + return completed(false); + } + + ignoreNextClick = false; + + if (activeSortable && !options.disabled && (isOwner ? canSort || (revert = !rootEl.contains(dragEl)) // Reverting item into the original list + : putSortable === this || (this.lastPutMode = activeGroup.checkPull(this, activeSortable, dragEl, evt)) && group.checkPut(this, activeSortable, dragEl, evt))) { + vertical = this._getDirection(evt, target) === 'vertical'; + dragRect = getRect(dragEl); + dragOverEvent('dragOverValid'); + if (Sortable.eventCanceled) return completedFired; + + if (revert) { + parentEl = rootEl; // actualization + + capture(); + + this._hideClone(); + + dragOverEvent('revert'); + + if (!Sortable.eventCanceled) { + if (nextEl) { + rootEl.insertBefore(dragEl, nextEl); + } else { + rootEl.appendChild(dragEl); + } + } + + return completed(true); + } + + var elLastChild = lastChild(el, options.draggable); + + if (!elLastChild || _ghostIsLast(evt, vertical, this) && !elLastChild.animated) { + // If already at end of list: Do not insert + if (elLastChild === dragEl) { + return completed(false); + } // assign target only if condition is true + + + if (elLastChild && el === evt.target) { + target = elLastChild; + } + + if (target) { + targetRect = getRect(target); + } + + if (_onMove(rootEl, el, dragEl, dragRect, target, targetRect, evt, !!target) !== false) { + capture(); + el.appendChild(dragEl); + parentEl = el; // actualization + + changed(); + return completed(true); + } + } else if (target.parentNode === el) { + targetRect = getRect(target); + var direction = 0, + targetBeforeFirstSwap, + differentLevel = dragEl.parentNode !== el, + differentRowCol = !_dragElInRowColumn(dragEl.animated && dragEl.toRect || dragRect, target.animated && target.toRect || targetRect, vertical), + side1 = vertical ? 'top' : 'left', + scrolledPastTop = isScrolledPast(target, 'top', 'top') || isScrolledPast(dragEl, 'top', 'top'), + scrollBefore = scrolledPastTop ? scrolledPastTop.scrollTop : void 0; + + if (lastTarget !== target) { + targetBeforeFirstSwap = targetRect[side1]; + pastFirstInvertThresh = false; + isCircumstantialInvert = !differentRowCol && options.invertSwap || differentLevel; + } + + direction = _getSwapDirection(evt, target, targetRect, vertical, differentRowCol ? 1 : options.swapThreshold, options.invertedSwapThreshold == null ? options.swapThreshold : options.invertedSwapThreshold, isCircumstantialInvert, lastTarget === target); + var sibling; + + if (direction !== 0) { + // Check if target is beside dragEl in respective direction (ignoring hidden elements) + var dragIndex = index(dragEl); + + do { + dragIndex -= direction; + sibling = parentEl.children[dragIndex]; + } while (sibling && (css(sibling, 'display') === 'none' || sibling === ghostEl)); + } // If dragEl is already beside target: Do not insert + + + if (direction === 0 || sibling === target) { + return completed(false); + } + + lastTarget = target; + lastDirection = direction; + var nextSibling = target.nextElementSibling, + after = false; + after = direction === 1; + + var moveVector = _onMove(rootEl, el, dragEl, dragRect, target, targetRect, evt, after); + + if (moveVector !== false) { + if (moveVector === 1 || moveVector === -1) { + after = moveVector === 1; + } + + _silent = true; + setTimeout(_unsilent, 30); + capture(); + + if (after && !nextSibling) { + el.appendChild(dragEl); + } else { + target.parentNode.insertBefore(dragEl, after ? nextSibling : target); + } // Undo chrome's scroll adjustment (has no effect on other browsers) + + + if (scrolledPastTop) { + scrollBy(scrolledPastTop, 0, scrollBefore - scrolledPastTop.scrollTop); + } + + parentEl = dragEl.parentNode; // actualization + // must be done before animation + + if (targetBeforeFirstSwap !== undefined && !isCircumstantialInvert) { + targetMoveDistance = Math.abs(targetBeforeFirstSwap - getRect(target)[side1]); + } + + changed(); + return completed(true); + } + } + + if (el.contains(dragEl)) { + return completed(false); + } + } + + return false; + }, + _ignoreWhileAnimating: null, + _offMoveEvents: function _offMoveEvents() { + off(document, 'mousemove', this._onTouchMove); + off(document, 'touchmove', this._onTouchMove); + off(document, 'pointermove', this._onTouchMove); + off(document, 'dragover', nearestEmptyInsertDetectEvent); + off(document, 'mousemove', nearestEmptyInsertDetectEvent); + off(document, 'touchmove', nearestEmptyInsertDetectEvent); + }, + _offUpEvents: function _offUpEvents() { + var ownerDocument = this.el.ownerDocument; + off(ownerDocument, 'mouseup', this._onDrop); + off(ownerDocument, 'touchend', this._onDrop); + off(ownerDocument, 'pointerup', this._onDrop); + off(ownerDocument, 'touchcancel', this._onDrop); + off(document, 'selectstart', this); + }, + _onDrop: function _onDrop( + /**Event*/ + evt) { + var el = this.el, + options = this.options; // Get the index of the dragged element within its parent + + newIndex = index(dragEl); + newDraggableIndex = index(dragEl, options.draggable); + pluginEvent('drop', this, { + evt: evt + }); + parentEl = dragEl && dragEl.parentNode; // Get again after plugin event + + newIndex = index(dragEl); + newDraggableIndex = index(dragEl, options.draggable); + + if (Sortable.eventCanceled) { + this._nulling(); + + return; + } + + awaitingDragStarted = false; + isCircumstantialInvert = false; + pastFirstInvertThresh = false; + clearInterval(this._loopId); + clearTimeout(this._dragStartTimer); + + _cancelNextTick(this.cloneId); + + _cancelNextTick(this._dragStartId); // Unbind events + + + if (this.nativeDraggable) { + off(document, 'drop', this); + off(el, 'dragstart', this._onDragStart); + } + + this._offMoveEvents(); + + this._offUpEvents(); + + if (Safari) { + css(document.body, 'user-select', ''); + } + + css(dragEl, 'transform', ''); + + if (evt) { + if (moved) { + evt.cancelable && evt.preventDefault(); + !options.dropBubble && evt.stopPropagation(); + } + + ghostEl && ghostEl.parentNode && ghostEl.parentNode.removeChild(ghostEl); + + if (rootEl === parentEl || putSortable && putSortable.lastPutMode !== 'clone') { + // Remove clone(s) + cloneEl && cloneEl.parentNode && cloneEl.parentNode.removeChild(cloneEl); + } + + if (dragEl) { + if (this.nativeDraggable) { + off(dragEl, 'dragend', this); + } + + _disableDraggable(dragEl); + + dragEl.style['will-change'] = ''; // Remove classes + // ghostClass is added in dragStarted + + if (moved && !awaitingDragStarted) { + toggleClass(dragEl, putSortable ? putSortable.options.ghostClass : this.options.ghostClass, false); + } + + toggleClass(dragEl, this.options.chosenClass, false); // Drag stop event + + _dispatchEvent({ + sortable: this, + name: 'unchoose', + toEl: parentEl, + newIndex: null, + newDraggableIndex: null, + originalEvent: evt + }); + + if (rootEl !== parentEl) { + if (newIndex >= 0) { + // Add event + _dispatchEvent({ + rootEl: parentEl, + name: 'add', + toEl: parentEl, + fromEl: rootEl, + originalEvent: evt + }); // Remove event + + + _dispatchEvent({ + sortable: this, + name: 'remove', + toEl: parentEl, + originalEvent: evt + }); // drag from one list and drop into another + + + _dispatchEvent({ + rootEl: parentEl, + name: 'sort', + toEl: parentEl, + fromEl: rootEl, + originalEvent: evt + }); + + _dispatchEvent({ + sortable: this, + name: 'sort', + toEl: parentEl, + originalEvent: evt + }); + } + + putSortable && putSortable.save(); + } else { + if (newIndex !== oldIndex) { + if (newIndex >= 0) { + // drag & drop within the same list + _dispatchEvent({ + sortable: this, + name: 'update', + toEl: parentEl, + originalEvent: evt + }); + + _dispatchEvent({ + sortable: this, + name: 'sort', + toEl: parentEl, + originalEvent: evt + }); + } + } + } + + if (Sortable.active) { + /* jshint eqnull:true */ + if (newIndex == null || newIndex === -1) { + newIndex = oldIndex; + newDraggableIndex = oldDraggableIndex; + } + + _dispatchEvent({ + sortable: this, + name: 'end', + toEl: parentEl, + originalEvent: evt + }); // Save sorting + + + this.save(); + } + } + } + + this._nulling(); + }, + _nulling: function _nulling() { + pluginEvent('nulling', this); + rootEl = dragEl = parentEl = ghostEl = nextEl = cloneEl = lastDownEl = cloneHidden = tapEvt = touchEvt = moved = newIndex = newDraggableIndex = oldIndex = oldDraggableIndex = lastTarget = lastDirection = putSortable = activeGroup = Sortable.dragged = Sortable.ghost = Sortable.clone = Sortable.active = null; + savedInputChecked.forEach(function (el) { + el.checked = true; + }); + savedInputChecked.length = lastDx = lastDy = 0; + }, + handleEvent: function handleEvent( + /**Event*/ + evt) { + switch (evt.type) { + case 'drop': + case 'dragend': + this._onDrop(evt); + + break; + + case 'dragenter': + case 'dragover': + if (dragEl) { + this._onDragOver(evt); + + _globalDragOver(evt); + } + + break; + + case 'selectstart': + evt.preventDefault(); + break; + } + }, + + /** + * Serializes the item into an array of string. + * @returns {String[]} + */ + toArray: function toArray() { + var order = [], + el, + children = this.el.children, + i = 0, + n = children.length, + options = this.options; + + for (; i < n; i++) { + el = children[i]; + + if (closest(el, options.draggable, this.el, false)) { + order.push(el.getAttribute(options.dataIdAttr) || _generateId(el)); + } + } + + return order; + }, + + /** + * Sorts the elements according to the array. + * @param {String[]} order order of the items + */ + sort: function sort(order, useAnimation) { + var items = {}, + rootEl = this.el; + this.toArray().forEach(function (id, i) { + var el = rootEl.children[i]; + + if (closest(el, this.options.draggable, rootEl, false)) { + items[id] = el; + } + }, this); + useAnimation && this.captureAnimationState(); + order.forEach(function (id) { + if (items[id]) { + rootEl.removeChild(items[id]); + rootEl.appendChild(items[id]); + } + }); + useAnimation && this.animateAll(); + }, + + /** + * Save the current sorting + */ + save: function save() { + var store = this.options.store; + store && store.set && store.set(this); + }, + + /** + * For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree. + * @param {HTMLElement} el + * @param {String} [selector] default: `options.draggable` + * @returns {HTMLElement|null} + */ + closest: function closest$1(el, selector) { + return closest(el, selector || this.options.draggable, this.el, false); + }, + + /** + * Set/get option + * @param {string} name + * @param {*} [value] + * @returns {*} + */ + option: function option(name, value) { + var options = this.options; + + if (value === void 0) { + return options[name]; + } else { + var modifiedValue = PluginManager.modifyOption(this, name, value); + + if (typeof modifiedValue !== 'undefined') { + options[name] = modifiedValue; + } else { + options[name] = value; + } + + if (name === 'group') { + _prepareGroup(options); + } + } + }, + + /** + * Destroy + */ + destroy: function destroy() { + pluginEvent('destroy', this); + var el = this.el; + el[expando] = null; + off(el, 'mousedown', this._onTapStart); + off(el, 'touchstart', this._onTapStart); + off(el, 'pointerdown', this._onTapStart); + + if (this.nativeDraggable) { + off(el, 'dragover', this); + off(el, 'dragenter', this); + } // Remove draggable attributes + + + Array.prototype.forEach.call(el.querySelectorAll('[draggable]'), function (el) { + el.removeAttribute('draggable'); + }); + + this._onDrop(); + + this._disableDelayedDragEvents(); + + sortables.splice(sortables.indexOf(this.el), 1); + this.el = el = null; + }, + _hideClone: function _hideClone() { + if (!cloneHidden) { + pluginEvent('hideClone', this); + if (Sortable.eventCanceled) return; + css(cloneEl, 'display', 'none'); + + if (this.options.removeCloneOnHide && cloneEl.parentNode) { + cloneEl.parentNode.removeChild(cloneEl); + } + + cloneHidden = true; + } + }, + _showClone: function _showClone(putSortable) { + if (putSortable.lastPutMode !== 'clone') { + this._hideClone(); + + return; + } + + if (cloneHidden) { + pluginEvent('showClone', this); + if (Sortable.eventCanceled) return; // show clone at dragEl or original position + + if (dragEl.parentNode == rootEl && !this.options.group.revertClone) { + rootEl.insertBefore(cloneEl, dragEl); + } else if (nextEl) { + rootEl.insertBefore(cloneEl, nextEl); + } else { + rootEl.appendChild(cloneEl); + } + + if (this.options.group.revertClone) { + this.animate(dragEl, cloneEl); + } + + css(cloneEl, 'display', ''); + cloneHidden = false; + } + } + }; + + function _globalDragOver( + /**Event*/ + evt) { + if (evt.dataTransfer) { + evt.dataTransfer.dropEffect = 'move'; + } + + evt.cancelable && evt.preventDefault(); + } + + function _onMove(fromEl, toEl, dragEl, dragRect, targetEl, targetRect, originalEvent, willInsertAfter) { + var evt, + sortable = fromEl[expando], + onMoveFn = sortable.options.onMove, + retVal; // Support for new CustomEvent feature + + if (window.CustomEvent && !IE11OrLess && !Edge) { + evt = new CustomEvent('move', { + bubbles: true, + cancelable: true + }); + } else { + evt = document.createEvent('Event'); + evt.initEvent('move', true, true); + } + + evt.to = toEl; + evt.from = fromEl; + evt.dragged = dragEl; + evt.draggedRect = dragRect; + evt.related = targetEl || toEl; + evt.relatedRect = targetRect || getRect(toEl); + evt.willInsertAfter = willInsertAfter; + evt.originalEvent = originalEvent; + fromEl.dispatchEvent(evt); + + if (onMoveFn) { + retVal = onMoveFn.call(sortable, evt, originalEvent); + } + + return retVal; + } + + function _disableDraggable(el) { + el.draggable = false; + } + + function _unsilent() { + _silent = false; + } + + function _ghostIsLast(evt, vertical, sortable) { + var rect = getRect(lastChild(sortable.el, sortable.options.draggable)); + var spacer = 10; + return vertical ? evt.clientX > rect.right + spacer || evt.clientX <= rect.right && evt.clientY > rect.bottom && evt.clientX >= rect.left : evt.clientX > rect.right && evt.clientY > rect.top || evt.clientX <= rect.right && evt.clientY > rect.bottom + spacer; + } + + function _getSwapDirection(evt, target, targetRect, vertical, swapThreshold, invertedSwapThreshold, invertSwap, isLastTarget) { + var mouseOnAxis = vertical ? evt.clientY : evt.clientX, + targetLength = vertical ? targetRect.height : targetRect.width, + targetS1 = vertical ? targetRect.top : targetRect.left, + targetS2 = vertical ? targetRect.bottom : targetRect.right, + invert = false; + + if (!invertSwap) { + // Never invert or create dragEl shadow when target movemenet causes mouse to move past the end of regular swapThreshold + if (isLastTarget && targetMoveDistance < targetLength * swapThreshold) { + // multiplied only by swapThreshold because mouse will already be inside target by (1 - threshold) * targetLength / 2 + // check if past first invert threshold on side opposite of lastDirection + if (!pastFirstInvertThresh && (lastDirection === 1 ? mouseOnAxis > targetS1 + targetLength * invertedSwapThreshold / 2 : mouseOnAxis < targetS2 - targetLength * invertedSwapThreshold / 2)) { + // past first invert threshold, do not restrict inverted threshold to dragEl shadow + pastFirstInvertThresh = true; + } + + if (!pastFirstInvertThresh) { + // dragEl shadow (target move distance shadow) + if (lastDirection === 1 ? mouseOnAxis < targetS1 + targetMoveDistance // over dragEl shadow + : mouseOnAxis > targetS2 - targetMoveDistance) { + return -lastDirection; + } + } else { + invert = true; + } + } else { + // Regular + if (mouseOnAxis > targetS1 + targetLength * (1 - swapThreshold) / 2 && mouseOnAxis < targetS2 - targetLength * (1 - swapThreshold) / 2) { + return _getInsertDirection(target); + } + } + } + + invert = invert || invertSwap; + + if (invert) { + // Invert of regular + if (mouseOnAxis < targetS1 + targetLength * invertedSwapThreshold / 2 || mouseOnAxis > targetS2 - targetLength * invertedSwapThreshold / 2) { + return mouseOnAxis > targetS1 + targetLength / 2 ? 1 : -1; + } + } + + return 0; + } + /** + * Gets the direction dragEl must be swapped relative to target in order to make it + * seem that dragEl has been "inserted" into that element's position + * @param {HTMLElement} target The target whose position dragEl is being inserted at + * @return {Number} Direction dragEl must be swapped + */ + + + function _getInsertDirection(target) { + if (index(dragEl) < index(target)) { + return 1; + } else { + return -1; + } + } + /** + * Generate id + * @param {HTMLElement} el + * @returns {String} + * @private + */ + + + function _generateId(el) { + var str = el.tagName + el.className + el.src + el.href + el.textContent, + i = str.length, + sum = 0; + + while (i--) { + sum += str.charCodeAt(i); + } + + return sum.toString(36); + } + + function _saveInputCheckedState(root) { + savedInputChecked.length = 0; + var inputs = root.getElementsByTagName('input'); + var idx = inputs.length; + + while (idx--) { + var el = inputs[idx]; + el.checked && savedInputChecked.push(el); + } + } + + function _nextTick(fn) { + return setTimeout(fn, 0); + } + + function _cancelNextTick(id) { + return clearTimeout(id); + } // Fixed #973: + + + if (documentExists) { + on(document, 'touchmove', function (evt) { + if ((Sortable.active || awaitingDragStarted) && evt.cancelable) { + evt.preventDefault(); + } + }); + } // Export utils + + + Sortable.utils = { + on: on, + off: off, + css: css, + find: find, + is: function is(el, selector) { + return !!closest(el, selector, el, false); + }, + extend: extend, + throttle: throttle, + closest: closest, + toggleClass: toggleClass, + clone: clone, + index: index, + nextTick: _nextTick, + cancelNextTick: _cancelNextTick, + detectDirection: _detectDirection, + getChild: getChild + }; + /** + * Get the Sortable instance of an element + * @param {HTMLElement} element The element + * @return {Sortable|undefined} The instance of Sortable + */ + + Sortable.get = function (element) { + return element[expando]; + }; + /** + * Mount a plugin to Sortable + * @param {...SortablePlugin|SortablePlugin[]} plugins Plugins being mounted + */ + + + Sortable.mount = function () { + for (var _len = arguments.length, plugins = new Array(_len), _key = 0; _key < _len; _key++) { + plugins[_key] = arguments[_key]; + } + + if (plugins[0].constructor === Array) plugins = plugins[0]; + plugins.forEach(function (plugin) { + if (!plugin.prototype || !plugin.prototype.constructor) { + throw "Sortable: Mounted plugin must be a constructor function, not ".concat({}.toString.call(plugin)); + } + + if (plugin.utils) Sortable.utils = _objectSpread({}, Sortable.utils, plugin.utils); + PluginManager.mount(plugin); + }); + }; + /** + * Create sortable instance + * @param {HTMLElement} el + * @param {Object} [options] + */ + + + Sortable.create = function (el, options) { + return new Sortable(el, options); + }; // Export + + + Sortable.version = version; + + var autoScrolls = [], + scrollEl, + scrollRootEl, + scrolling = false, + lastAutoScrollX, + lastAutoScrollY, + touchEvt$1, + pointerElemChangedInterval; + + function AutoScrollPlugin() { + function AutoScroll() { + this.defaults = { + scroll: true, + scrollSensitivity: 30, + scrollSpeed: 10, + bubbleScroll: true + }; // Bind all private methods + + for (var fn in this) { + if (fn.charAt(0) === '_' && typeof this[fn] === 'function') { + this[fn] = this[fn].bind(this); + } + } + } + + AutoScroll.prototype = { + dragStarted: function dragStarted(_ref) { + var originalEvent = _ref.originalEvent; + + if (this.sortable.nativeDraggable) { + on(document, 'dragover', this._handleAutoScroll); + } else { + if (this.options.supportPointer) { + on(document, 'pointermove', this._handleFallbackAutoScroll); + } else if (originalEvent.touches) { + on(document, 'touchmove', this._handleFallbackAutoScroll); + } else { + on(document, 'mousemove', this._handleFallbackAutoScroll); + } + } + }, + dragOverCompleted: function dragOverCompleted(_ref2) { + var originalEvent = _ref2.originalEvent; + + // For when bubbling is canceled and using fallback (fallback 'touchmove' always reached) + if (!this.options.dragOverBubble && !originalEvent.rootEl) { + this._handleAutoScroll(originalEvent); + } + }, + drop: function drop() { + if (this.sortable.nativeDraggable) { + off(document, 'dragover', this._handleAutoScroll); + } else { + off(document, 'pointermove', this._handleFallbackAutoScroll); + off(document, 'touchmove', this._handleFallbackAutoScroll); + off(document, 'mousemove', this._handleFallbackAutoScroll); + } + + clearPointerElemChangedInterval(); + clearAutoScrolls(); + cancelThrottle(); + }, + nulling: function nulling() { + touchEvt$1 = scrollRootEl = scrollEl = scrolling = pointerElemChangedInterval = lastAutoScrollX = lastAutoScrollY = null; + autoScrolls.length = 0; + }, + _handleFallbackAutoScroll: function _handleFallbackAutoScroll(evt) { + this._handleAutoScroll(evt, true); + }, + _handleAutoScroll: function _handleAutoScroll(evt, fallback) { + var _this = this; + + var x = (evt.touches ? evt.touches[0] : evt).clientX, + y = (evt.touches ? evt.touches[0] : evt).clientY, + elem = document.elementFromPoint(x, y); + touchEvt$1 = evt; // IE does not seem to have native autoscroll, + // Edge's autoscroll seems too conditional, + // MACOS Safari does not have autoscroll, + // Firefox and Chrome are good + + if (fallback || Edge || IE11OrLess || Safari) { + autoScroll(evt, this.options, elem, fallback); // Listener for pointer element change + + var ogElemScroller = getParentAutoScrollElement(elem, true); + + if (scrolling && (!pointerElemChangedInterval || x !== lastAutoScrollX || y !== lastAutoScrollY)) { + pointerElemChangedInterval && clearPointerElemChangedInterval(); // Detect for pointer elem change, emulating native DnD behaviour + + pointerElemChangedInterval = setInterval(function () { + var newElem = getParentAutoScrollElement(document.elementFromPoint(x, y), true); + + if (newElem !== ogElemScroller) { + ogElemScroller = newElem; + clearAutoScrolls(); + } + + autoScroll(evt, _this.options, newElem, fallback); + }, 10); + lastAutoScrollX = x; + lastAutoScrollY = y; + } + } else { + // if DnD is enabled (and browser has good autoscrolling), first autoscroll will already scroll, so get parent autoscroll of first autoscroll + if (!this.options.bubbleScroll || getParentAutoScrollElement(elem, true) === getWindowScrollingElement()) { + clearAutoScrolls(); + return; + } + + autoScroll(evt, this.options, getParentAutoScrollElement(elem, false), false); + } + } + }; + return _extends(AutoScroll, { + pluginName: 'scroll', + initializeByDefault: true + }); + } + + function clearAutoScrolls() { + autoScrolls.forEach(function (autoScroll) { + clearInterval(autoScroll.pid); + }); + autoScrolls = []; + } + + function clearPointerElemChangedInterval() { + clearInterval(pointerElemChangedInterval); + } + + var autoScroll = throttle(function (evt, options, rootEl, isFallback) { + // Bug: https://bugzilla.mozilla.org/show_bug.cgi?id=505521 + if (!options.scroll) return; + var x = (evt.touches ? evt.touches[0] : evt).clientX, + y = (evt.touches ? evt.touches[0] : evt).clientY, + sens = options.scrollSensitivity, + speed = options.scrollSpeed, + winScroller = getWindowScrollingElement(); + var scrollThisInstance = false, + scrollCustomFn; // New scroll root, set scrollEl + + if (scrollRootEl !== rootEl) { + scrollRootEl = rootEl; + clearAutoScrolls(); + scrollEl = options.scroll; + scrollCustomFn = options.scrollFn; + + if (scrollEl === true) { + scrollEl = getParentAutoScrollElement(rootEl, true); + } + } + + var layersOut = 0; + var currentParent = scrollEl; + + do { + var el = currentParent, + rect = getRect(el), + top = rect.top, + bottom = rect.bottom, + left = rect.left, + right = rect.right, + width = rect.width, + height = rect.height, + canScrollX = void 0, + canScrollY = void 0, + scrollWidth = el.scrollWidth, + scrollHeight = el.scrollHeight, + elCSS = css(el), + scrollPosX = el.scrollLeft, + scrollPosY = el.scrollTop; + + if (el === winScroller) { + canScrollX = width < scrollWidth && (elCSS.overflowX === 'auto' || elCSS.overflowX === 'scroll' || elCSS.overflowX === 'visible'); + canScrollY = height < scrollHeight && (elCSS.overflowY === 'auto' || elCSS.overflowY === 'scroll' || elCSS.overflowY === 'visible'); + } else { + canScrollX = width < scrollWidth && (elCSS.overflowX === 'auto' || elCSS.overflowX === 'scroll'); + canScrollY = height < scrollHeight && (elCSS.overflowY === 'auto' || elCSS.overflowY === 'scroll'); + } + + var vx = canScrollX && (Math.abs(right - x) <= sens && scrollPosX + width < scrollWidth) - (Math.abs(left - x) <= sens && !!scrollPosX); + var vy = canScrollY && (Math.abs(bottom - y) <= sens && scrollPosY + height < scrollHeight) - (Math.abs(top - y) <= sens && !!scrollPosY); + + if (!autoScrolls[layersOut]) { + for (var i = 0; i <= layersOut; i++) { + if (!autoScrolls[i]) { + autoScrolls[i] = {}; + } + } + } + + if (autoScrolls[layersOut].vx != vx || autoScrolls[layersOut].vy != vy || autoScrolls[layersOut].el !== el) { + autoScrolls[layersOut].el = el; + autoScrolls[layersOut].vx = vx; + autoScrolls[layersOut].vy = vy; + clearInterval(autoScrolls[layersOut].pid); + + if (vx != 0 || vy != 0) { + scrollThisInstance = true; + /* jshint loopfunc:true */ + + autoScrolls[layersOut].pid = setInterval(function () { + // emulate drag over during autoscroll (fallback), emulating native DnD behaviour + if (isFallback && this.layer === 0) { + Sortable.active._onTouchMove(touchEvt$1); // To move ghost if it is positioned absolutely + + } + + var scrollOffsetY = autoScrolls[this.layer].vy ? autoScrolls[this.layer].vy * speed : 0; + var scrollOffsetX = autoScrolls[this.layer].vx ? autoScrolls[this.layer].vx * speed : 0; + + if (typeof scrollCustomFn === 'function') { + if (scrollCustomFn.call(Sortable.dragged.parentNode[expando], scrollOffsetX, scrollOffsetY, evt, touchEvt$1, autoScrolls[this.layer].el) !== 'continue') { + return; + } + } + + scrollBy(autoScrolls[this.layer].el, scrollOffsetX, scrollOffsetY); + }.bind({ + layer: layersOut + }), 24); + } + } + + layersOut++; + } while (options.bubbleScroll && currentParent !== winScroller && (currentParent = getParentAutoScrollElement(currentParent, false))); + + scrolling = scrollThisInstance; // in case another function catches scrolling as false in between when it is not + }, 30); + + var drop = function drop(_ref) { + var originalEvent = _ref.originalEvent, + putSortable = _ref.putSortable, + dragEl = _ref.dragEl, + activeSortable = _ref.activeSortable, + dispatchSortableEvent = _ref.dispatchSortableEvent, + hideGhostForTarget = _ref.hideGhostForTarget, + unhideGhostForTarget = _ref.unhideGhostForTarget; + if (!originalEvent) return; + var toSortable = putSortable || activeSortable; + hideGhostForTarget(); + var touch = originalEvent.changedTouches && originalEvent.changedTouches.length ? originalEvent.changedTouches[0] : originalEvent; + var target = document.elementFromPoint(touch.clientX, touch.clientY); + unhideGhostForTarget(); + + if (toSortable && !toSortable.el.contains(target)) { + dispatchSortableEvent('spill'); + this.onSpill({ + dragEl: dragEl, + putSortable: putSortable + }); + } + }; + + function Revert() {} + + Revert.prototype = { + startIndex: null, + dragStart: function dragStart(_ref2) { + var oldDraggableIndex = _ref2.oldDraggableIndex; + this.startIndex = oldDraggableIndex; + }, + onSpill: function onSpill(_ref3) { + var dragEl = _ref3.dragEl, + putSortable = _ref3.putSortable; + this.sortable.captureAnimationState(); + + if (putSortable) { + putSortable.captureAnimationState(); + } + + var nextSibling = getChild(this.sortable.el, this.startIndex, this.options); + + if (nextSibling) { + this.sortable.el.insertBefore(dragEl, nextSibling); + } else { + this.sortable.el.appendChild(dragEl); + } + + this.sortable.animateAll(); + + if (putSortable) { + putSortable.animateAll(); + } + }, + drop: drop + }; + + _extends(Revert, { + pluginName: 'revertOnSpill' + }); + + function Remove() {} + + Remove.prototype = { + onSpill: function onSpill(_ref4) { + var dragEl = _ref4.dragEl, + putSortable = _ref4.putSortable; + var parentSortable = putSortable || this.sortable; + parentSortable.captureAnimationState(); + dragEl.parentNode && dragEl.parentNode.removeChild(dragEl); + parentSortable.animateAll(); + }, + drop: drop + }; + + _extends(Remove, { + pluginName: 'removeOnSpill' + }); + + var lastSwapEl; + + function SwapPlugin() { + function Swap() { + this.defaults = { + swapClass: 'sortable-swap-highlight' + }; + } + + Swap.prototype = { + dragStart: function dragStart(_ref) { + var dragEl = _ref.dragEl; + lastSwapEl = dragEl; + }, + dragOverValid: function dragOverValid(_ref2) { + var completed = _ref2.completed, + target = _ref2.target, + onMove = _ref2.onMove, + activeSortable = _ref2.activeSortable, + changed = _ref2.changed, + cancel = _ref2.cancel; + if (!activeSortable.options.swap) return; + var el = this.sortable.el, + options = this.options; + + if (target && target !== el) { + var prevSwapEl = lastSwapEl; + + if (onMove(target) !== false) { + toggleClass(target, options.swapClass, true); + lastSwapEl = target; + } else { + lastSwapEl = null; + } + + if (prevSwapEl && prevSwapEl !== lastSwapEl) { + toggleClass(prevSwapEl, options.swapClass, false); + } + } + + changed(); + completed(true); + cancel(); + }, + drop: function drop(_ref3) { + var activeSortable = _ref3.activeSortable, + putSortable = _ref3.putSortable, + dragEl = _ref3.dragEl; + var toSortable = putSortable || this.sortable; + var options = this.options; + lastSwapEl && toggleClass(lastSwapEl, options.swapClass, false); + + if (lastSwapEl && (options.swap || putSortable && putSortable.options.swap)) { + if (dragEl !== lastSwapEl) { + toSortable.captureAnimationState(); + if (toSortable !== activeSortable) activeSortable.captureAnimationState(); + swapNodes(dragEl, lastSwapEl); + toSortable.animateAll(); + if (toSortable !== activeSortable) activeSortable.animateAll(); + } + } + }, + nulling: function nulling() { + lastSwapEl = null; + } + }; + return _extends(Swap, { + pluginName: 'swap', + eventProperties: function eventProperties() { + return { + swapItem: lastSwapEl + }; + } + }); + } + + function swapNodes(n1, n2) { + var p1 = n1.parentNode, + p2 = n2.parentNode, + i1, + i2; + if (!p1 || !p2 || p1.isEqualNode(n2) || p2.isEqualNode(n1)) return; + i1 = index(n1); + i2 = index(n2); + + if (p1.isEqualNode(p2) && i1 < i2) { + i2++; + } + + p1.insertBefore(n2, p1.children[i1]); + p2.insertBefore(n1, p2.children[i2]); + } + + var multiDragElements = [], + multiDragClones = [], + lastMultiDragSelect, + // for selection with modifier key down (SHIFT) + multiDragSortable, + initialFolding = false, + // Initial multi-drag fold when drag started + folding = false, + // Folding any other time + dragStarted = false, + dragEl$1, + clonesFromRect, + clonesHidden; + + function MultiDragPlugin() { + function MultiDrag(sortable) { + // Bind all private methods + for (var fn in this) { + if (fn.charAt(0) === '_' && typeof this[fn] === 'function') { + this[fn] = this[fn].bind(this); + } + } + + if (sortable.options.supportPointer) { + on(document, 'pointerup', this._deselectMultiDrag); + } else { + on(document, 'mouseup', this._deselectMultiDrag); + on(document, 'touchend', this._deselectMultiDrag); + } + + on(document, 'keydown', this._checkKeyDown); + on(document, 'keyup', this._checkKeyUp); + this.defaults = { + selectedClass: 'sortable-selected', + multiDragKey: null, + setData: function setData(dataTransfer, dragEl) { + var data = ''; + + if (multiDragElements.length && multiDragSortable === sortable) { + multiDragElements.forEach(function (multiDragElement, i) { + data += (!i ? '' : ', ') + multiDragElement.textContent; + }); + } else { + data = dragEl.textContent; + } + + dataTransfer.setData('Text', data); + } + }; + } + + MultiDrag.prototype = { + multiDragKeyDown: false, + isMultiDrag: false, + delayStartGlobal: function delayStartGlobal(_ref) { + var dragged = _ref.dragEl; + dragEl$1 = dragged; + }, + delayEnded: function delayEnded() { + this.isMultiDrag = ~multiDragElements.indexOf(dragEl$1); + }, + setupClone: function setupClone(_ref2) { + var sortable = _ref2.sortable, + cancel = _ref2.cancel; + if (!this.isMultiDrag) return; + + for (var i = 0; i < multiDragElements.length; i++) { + multiDragClones.push(clone(multiDragElements[i])); + multiDragClones[i].sortableIndex = multiDragElements[i].sortableIndex; + multiDragClones[i].draggable = false; + multiDragClones[i].style['will-change'] = ''; + toggleClass(multiDragClones[i], this.options.selectedClass, false); + multiDragElements[i] === dragEl$1 && toggleClass(multiDragClones[i], this.options.chosenClass, false); + } + + sortable._hideClone(); + + cancel(); + }, + clone: function clone(_ref3) { + var sortable = _ref3.sortable, + rootEl = _ref3.rootEl, + dispatchSortableEvent = _ref3.dispatchSortableEvent, + cancel = _ref3.cancel; + if (!this.isMultiDrag) return; + + if (!this.options.removeCloneOnHide) { + if (multiDragElements.length && multiDragSortable === sortable) { + insertMultiDragClones(true, rootEl); + dispatchSortableEvent('clone'); + cancel(); + } + } + }, + showClone: function showClone(_ref4) { + var cloneNowShown = _ref4.cloneNowShown, + rootEl = _ref4.rootEl, + cancel = _ref4.cancel; + if (!this.isMultiDrag) return; + insertMultiDragClones(false, rootEl); + multiDragClones.forEach(function (clone) { + css(clone, 'display', ''); + }); + cloneNowShown(); + clonesHidden = false; + cancel(); + }, + hideClone: function hideClone(_ref5) { + var _this = this; + + var sortable = _ref5.sortable, + cloneNowHidden = _ref5.cloneNowHidden, + cancel = _ref5.cancel; + if (!this.isMultiDrag) return; + multiDragClones.forEach(function (clone) { + css(clone, 'display', 'none'); + + if (_this.options.removeCloneOnHide && clone.parentNode) { + clone.parentNode.removeChild(clone); + } + }); + cloneNowHidden(); + clonesHidden = true; + cancel(); + }, + dragStartGlobal: function dragStartGlobal(_ref6) { + var sortable = _ref6.sortable; + + if (!this.isMultiDrag && multiDragSortable) { + multiDragSortable.multiDrag._deselectMultiDrag(); + } + + multiDragElements.forEach(function (multiDragElement) { + multiDragElement.sortableIndex = index(multiDragElement); + }); // Sort multi-drag elements + + multiDragElements = multiDragElements.sort(function (a, b) { + return a.sortableIndex - b.sortableIndex; + }); + dragStarted = true; + }, + dragStarted: function dragStarted(_ref7) { + var _this2 = this; + + var sortable = _ref7.sortable; + if (!this.isMultiDrag) return; + + if (this.options.sort) { + // Capture rects, + // hide multi drag elements (by positioning them absolute), + // set multi drag elements rects to dragRect, + // show multi drag elements, + // animate to rects, + // unset rects & remove from DOM + sortable.captureAnimationState(); + + if (this.options.animation) { + multiDragElements.forEach(function (multiDragElement) { + if (multiDragElement === dragEl$1) return; + css(multiDragElement, 'position', 'absolute'); + }); + var dragRect = getRect(dragEl$1, false, true, true); + multiDragElements.forEach(function (multiDragElement) { + if (multiDragElement === dragEl$1) return; + setRect(multiDragElement, dragRect); + }); + folding = true; + initialFolding = true; + } + } + + sortable.animateAll(function () { + folding = false; + initialFolding = false; + + if (_this2.options.animation) { + multiDragElements.forEach(function (multiDragElement) { + unsetRect(multiDragElement); + }); + } // Remove all auxiliary multidrag items from el, if sorting enabled + + + if (_this2.options.sort) { + removeMultiDragElements(); + } + }); + }, + dragOver: function dragOver(_ref8) { + var target = _ref8.target, + completed = _ref8.completed, + cancel = _ref8.cancel; + + if (folding && ~multiDragElements.indexOf(target)) { + completed(false); + cancel(); + } + }, + revert: function revert(_ref9) { + var fromSortable = _ref9.fromSortable, + rootEl = _ref9.rootEl, + sortable = _ref9.sortable, + dragRect = _ref9.dragRect; + + if (multiDragElements.length > 1) { + // Setup unfold animation + multiDragElements.forEach(function (multiDragElement) { + sortable.addAnimationState({ + target: multiDragElement, + rect: folding ? getRect(multiDragElement) : dragRect + }); + unsetRect(multiDragElement); + multiDragElement.fromRect = dragRect; + fromSortable.removeAnimationState(multiDragElement); + }); + folding = false; + insertMultiDragElements(!this.options.removeCloneOnHide, rootEl); + } + }, + dragOverCompleted: function dragOverCompleted(_ref10) { + var sortable = _ref10.sortable, + isOwner = _ref10.isOwner, + insertion = _ref10.insertion, + activeSortable = _ref10.activeSortable, + parentEl = _ref10.parentEl, + putSortable = _ref10.putSortable; + var options = this.options; + + if (insertion) { + // Clones must be hidden before folding animation to capture dragRectAbsolute properly + if (isOwner) { + activeSortable._hideClone(); + } + + initialFolding = false; // If leaving sort:false root, or already folding - Fold to new location + + if (options.animation && multiDragElements.length > 1 && (folding || !isOwner && !activeSortable.options.sort && !putSortable)) { + // Fold: Set all multi drag elements's rects to dragEl's rect when multi-drag elements are invisible + var dragRectAbsolute = getRect(dragEl$1, false, true, true); + multiDragElements.forEach(function (multiDragElement) { + if (multiDragElement === dragEl$1) return; + setRect(multiDragElement, dragRectAbsolute); // Move element(s) to end of parentEl so that it does not interfere with multi-drag clones insertion if they are inserted + // while folding, and so that we can capture them again because old sortable will no longer be fromSortable + + parentEl.appendChild(multiDragElement); + }); + folding = true; + } // Clones must be shown (and check to remove multi drags) after folding when interfering multiDragElements are moved out + + + if (!isOwner) { + // Only remove if not folding (folding will remove them anyways) + if (!folding) { + removeMultiDragElements(); + } + + if (multiDragElements.length > 1) { + var clonesHiddenBefore = clonesHidden; + + activeSortable._showClone(sortable); // Unfold animation for clones if showing from hidden + + + if (activeSortable.options.animation && !clonesHidden && clonesHiddenBefore) { + multiDragClones.forEach(function (clone) { + activeSortable.addAnimationState({ + target: clone, + rect: clonesFromRect + }); + clone.fromRect = clonesFromRect; + clone.thisAnimationDuration = null; + }); + } + } else { + activeSortable._showClone(sortable); + } + } + } + }, + dragOverAnimationCapture: function dragOverAnimationCapture(_ref11) { + var dragRect = _ref11.dragRect, + isOwner = _ref11.isOwner, + activeSortable = _ref11.activeSortable; + multiDragElements.forEach(function (multiDragElement) { + multiDragElement.thisAnimationDuration = null; + }); + + if (activeSortable.options.animation && !isOwner && activeSortable.multiDrag.isMultiDrag) { + clonesFromRect = _extends({}, dragRect); + var dragMatrix = matrix(dragEl$1, true); + clonesFromRect.top -= dragMatrix.f; + clonesFromRect.left -= dragMatrix.e; + } + }, + dragOverAnimationComplete: function dragOverAnimationComplete() { + if (folding) { + folding = false; + removeMultiDragElements(); + } + }, + drop: function drop(_ref12) { + var evt = _ref12.originalEvent, + rootEl = _ref12.rootEl, + parentEl = _ref12.parentEl, + sortable = _ref12.sortable, + dispatchSortableEvent = _ref12.dispatchSortableEvent, + oldIndex = _ref12.oldIndex, + putSortable = _ref12.putSortable; + var toSortable = putSortable || this.sortable; + if (!evt) return; + var options = this.options, + children = parentEl.children; // Multi-drag selection + + if (!dragStarted) { + if (options.multiDragKey && !this.multiDragKeyDown) { + this._deselectMultiDrag(); + } + + toggleClass(dragEl$1, options.selectedClass, !~multiDragElements.indexOf(dragEl$1)); + + if (!~multiDragElements.indexOf(dragEl$1)) { + multiDragElements.push(dragEl$1); + dispatchEvent({ + sortable: sortable, + rootEl: rootEl, + name: 'select', + targetEl: dragEl$1, + originalEvt: evt + }); // Modifier activated, select from last to dragEl + + if (evt.shiftKey && lastMultiDragSelect && sortable.el.contains(lastMultiDragSelect)) { + var lastIndex = index(lastMultiDragSelect), + currentIndex = index(dragEl$1); + + if (~lastIndex && ~currentIndex && lastIndex !== currentIndex) { + // Must include lastMultiDragSelect (select it), in case modified selection from no selection + // (but previous selection existed) + var n, i; + + if (currentIndex > lastIndex) { + i = lastIndex; + n = currentIndex; + } else { + i = currentIndex; + n = lastIndex + 1; + } + + for (; i < n; i++) { + if (~multiDragElements.indexOf(children[i])) continue; + toggleClass(children[i], options.selectedClass, true); + multiDragElements.push(children[i]); + dispatchEvent({ + sortable: sortable, + rootEl: rootEl, + name: 'select', + targetEl: children[i], + originalEvt: evt + }); + } + } + } else { + lastMultiDragSelect = dragEl$1; + } + + multiDragSortable = toSortable; + } else { + multiDragElements.splice(multiDragElements.indexOf(dragEl$1), 1); + lastMultiDragSelect = null; + dispatchEvent({ + sortable: sortable, + rootEl: rootEl, + name: 'deselect', + targetEl: dragEl$1, + originalEvt: evt + }); + } + } // Multi-drag drop + + + if (dragStarted && this.isMultiDrag) { + // Do not "unfold" after around dragEl if reverted + if ((parentEl[expando].options.sort || parentEl !== rootEl) && multiDragElements.length > 1) { + var dragRect = getRect(dragEl$1), + multiDragIndex = index(dragEl$1, ':not(.' + this.options.selectedClass + ')'); + if (!initialFolding && options.animation) dragEl$1.thisAnimationDuration = null; + toSortable.captureAnimationState(); + + if (!initialFolding) { + if (options.animation) { + dragEl$1.fromRect = dragRect; + multiDragElements.forEach(function (multiDragElement) { + multiDragElement.thisAnimationDuration = null; + + if (multiDragElement !== dragEl$1) { + var rect = folding ? getRect(multiDragElement) : dragRect; + multiDragElement.fromRect = rect; // Prepare unfold animation + + toSortable.addAnimationState({ + target: multiDragElement, + rect: rect + }); + } + }); + } // Multi drag elements are not necessarily removed from the DOM on drop, so to reinsert + // properly they must all be removed + + + removeMultiDragElements(); + multiDragElements.forEach(function (multiDragElement) { + if (children[multiDragIndex]) { + parentEl.insertBefore(multiDragElement, children[multiDragIndex]); + } else { + parentEl.appendChild(multiDragElement); + } + + multiDragIndex++; + }); // If initial folding is done, the elements may have changed position because they are now + // unfolding around dragEl, even though dragEl may not have his index changed, so update event + // must be fired here as Sortable will not. + + if (oldIndex === index(dragEl$1)) { + var update = false; + multiDragElements.forEach(function (multiDragElement) { + if (multiDragElement.sortableIndex !== index(multiDragElement)) { + update = true; + return; + } + }); + + if (update) { + dispatchSortableEvent('update'); + } + } + } // Must be done after capturing individual rects (scroll bar) + + + multiDragElements.forEach(function (multiDragElement) { + unsetRect(multiDragElement); + }); + toSortable.animateAll(); + } + + multiDragSortable = toSortable; + } // Remove clones if necessary + + + if (rootEl === parentEl || putSortable && putSortable.lastPutMode !== 'clone') { + multiDragClones.forEach(function (clone) { + clone.parentNode && clone.parentNode.removeChild(clone); + }); + } + }, + nullingGlobal: function nullingGlobal() { + this.isMultiDrag = dragStarted = false; + multiDragClones.length = 0; + }, + destroyGlobal: function destroyGlobal() { + this._deselectMultiDrag(); + + off(document, 'pointerup', this._deselectMultiDrag); + off(document, 'mouseup', this._deselectMultiDrag); + off(document, 'touchend', this._deselectMultiDrag); + off(document, 'keydown', this._checkKeyDown); + off(document, 'keyup', this._checkKeyUp); + }, + _deselectMultiDrag: function _deselectMultiDrag(evt) { + if (typeof dragStarted !== "undefined" && dragStarted) return; // Only deselect if selection is in this sortable + + if (multiDragSortable !== this.sortable) return; // Only deselect if target is not item in this sortable + + if (evt && closest(evt.target, this.options.draggable, this.sortable.el, false)) return; // Only deselect if left click + + if (evt && evt.button !== 0) return; + + while (multiDragElements.length) { + var el = multiDragElements[0]; + toggleClass(el, this.options.selectedClass, false); + multiDragElements.shift(); + dispatchEvent({ + sortable: this.sortable, + rootEl: this.sortable.el, + name: 'deselect', + targetEl: el, + originalEvt: evt + }); + } + }, + _checkKeyDown: function _checkKeyDown(evt) { + if (evt.key === this.options.multiDragKey) { + this.multiDragKeyDown = true; + } + }, + _checkKeyUp: function _checkKeyUp(evt) { + if (evt.key === this.options.multiDragKey) { + this.multiDragKeyDown = false; + } + } + }; + return _extends(MultiDrag, { + // Static methods & properties + pluginName: 'multiDrag', + utils: { + /** + * Selects the provided multi-drag item + * @param {HTMLElement} el The element to be selected + */ + select: function select(el) { + var sortable = el.parentNode[expando]; + if (!sortable || !sortable.options.multiDrag || ~multiDragElements.indexOf(el)) return; + + if (multiDragSortable && multiDragSortable !== sortable) { + multiDragSortable.multiDrag._deselectMultiDrag(); + + multiDragSortable = sortable; + } + + toggleClass(el, sortable.options.selectedClass, true); + multiDragElements.push(el); + }, + + /** + * Deselects the provided multi-drag item + * @param {HTMLElement} el The element to be deselected + */ + deselect: function deselect(el) { + var sortable = el.parentNode[expando], + index = multiDragElements.indexOf(el); + if (!sortable || !sortable.options.multiDrag || !~index) return; + toggleClass(el, sortable.options.selectedClass, false); + multiDragElements.splice(index, 1); + } + }, + eventProperties: function eventProperties() { + var _this3 = this; + + var oldIndicies = [], + newIndicies = []; + multiDragElements.forEach(function (multiDragElement) { + oldIndicies.push({ + multiDragElement: multiDragElement, + index: multiDragElement.sortableIndex + }); // multiDragElements will already be sorted if folding + + var newIndex; + + if (folding && multiDragElement !== dragEl$1) { + newIndex = -1; + } else if (folding) { + newIndex = index(multiDragElement, ':not(.' + _this3.options.selectedClass + ')'); + } else { + newIndex = index(multiDragElement); + } + + newIndicies.push({ + multiDragElement: multiDragElement, + index: newIndex + }); + }); + return { + items: _toConsumableArray(multiDragElements), + clones: [].concat(multiDragClones), + oldIndicies: oldIndicies, + newIndicies: newIndicies + }; + }, + optionListeners: { + multiDragKey: function multiDragKey(key) { + key = key.toLowerCase(); + + if (key === 'ctrl') { + key = 'Control'; + } else if (key.length > 1) { + key = key.charAt(0).toUpperCase() + key.substr(1); + } + + return key; + } + } + }); + } + + function insertMultiDragElements(clonesInserted, rootEl) { + multiDragElements.forEach(function (multiDragElement, i) { + var target = rootEl.children[multiDragElement.sortableIndex + (clonesInserted ? Number(i) : 0)]; + + if (target) { + rootEl.insertBefore(multiDragElement, target); + } else { + rootEl.appendChild(multiDragElement); + } + }); + } + /** + * Insert multi-drag clones + * @param {[Boolean]} elementsInserted Whether the multi-drag elements are inserted + * @param {HTMLElement} rootEl + */ + + + function insertMultiDragClones(elementsInserted, rootEl) { + multiDragClones.forEach(function (clone, i) { + var target = rootEl.children[clone.sortableIndex + (elementsInserted ? Number(i) : 0)]; + + if (target) { + rootEl.insertBefore(clone, target); + } else { + rootEl.appendChild(clone); + } + }); + } + + function removeMultiDragElements() { + multiDragElements.forEach(function (multiDragElement) { + if (multiDragElement === dragEl$1) return; + multiDragElement.parentNode && multiDragElement.parentNode.removeChild(multiDragElement); + }); + } + + Sortable.mount(new AutoScrollPlugin()); + Sortable.mount(Remove, Revert); + + Sortable.mount(new SwapPlugin()); + Sortable.mount(new MultiDragPlugin()); + + return Sortable; + +})); diff --git a/asset/js/vendor/Sortable.min.js b/asset/js/vendor/Sortable.min.js new file mode 100644 index 00000000..ad0275a5 --- /dev/null +++ b/asset/js/vendor/Sortable.min.js @@ -0,0 +1,2 @@ +/*! Sortable 1.13.0 - MIT | git://github.com/SortableJS/Sortable.git */ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.icinga?define(e):(t=t||self).Sortable=e()}(this,function(){"use strict";function o(t){return(o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function a(){return(a=Object.assign||function(t){for(var e=1;e"===e[0]&&(e=e.substring(1)),t)try{if(t.matches)return t.matches(e);if(t.msMatchesSelector)return t.msMatchesSelector(e);if(t.webkitMatchesSelector)return t.webkitMatchesSelector(e)}catch(t){return!1}return!1}}function P(t,e,n,o){if(t){n=n||document;do{if(null!=e&&(">"===e[0]?t.parentNode===n&&h(t,e):h(t,e))||o&&t===n)return t;if(t===n)break}while(t=(i=t).host&&i!==document&&i.host.nodeType?i.host:i.parentNode)}var i;return null}var f,p=/\s+/g;function k(t,e,n){if(t&&e)if(t.classList)t.classList[n?"add":"remove"](e);else{var o=(" "+t.className+" ").replace(p," ").replace(" "+e+" "," ");t.className=(o+(n?" "+e:"")).replace(p," ")}}function R(t,e,n){var o=t&&t.style;if(o){if(void 0===n)return document.defaultView&&document.defaultView.getComputedStyle?n=document.defaultView.getComputedStyle(t,""):t.currentStyle&&(n=t.currentStyle),void 0===e?n:n[e];e in o||-1!==e.indexOf("webkit")||(e="-webkit-"+e),o[e]=n+("string"==typeof n?"":"px")}}function v(t,e){var n="";if("string"==typeof t)n=t;else do{var o=R(t,"transform");o&&"none"!==o&&(n=o+" "+n)}while(!e&&(t=t.parentNode));var i=window.DOMMatrix||window.WebKitCSSMatrix||window.CSSMatrix||window.MSCSSMatrix;return i&&new i(n)}function g(t,e,n){if(t){var o=t.getElementsByTagName(e),i=0,r=o.length;if(n)for(;i=e.left-n&&r<=e.right+n,i=a>=e.top-n&&a<=e.bottom+n;return n&&o&&i?l=t:void 0}}),l}((t=t.touches?t.touches[0]:t).clientX,t.clientY);if(e){var n={};for(var o in t)t.hasOwnProperty(o)&&(n[o]=t[o]);n.target=n.rootEl=e,n.preventDefault=void 0,n.stopPropagation=void 0,e[j]._onDragOver(n)}}}function kt(t){z&&z.parentNode[j]._isOutsideThisEl(t.target)}function Rt(t,e){if(!t||!t.nodeType||1!==t.nodeType)throw"Sortable: `el` must be an HTMLElement, not ".concat({}.toString.call(t));this.el=t,this.options=e=a({},e),t[j]=this;var n={group:null,sort:!0,disabled:!1,store:null,handle:null,draggable:/^[uo]l$/i.test(t.nodeName)?">li":">*",swapThreshold:1,invertSwap:!1,invertedSwapThreshold:null,removeCloneOnHide:!0,direction:function(){return Ot(t,this.options)},ghostClass:"sortable-ghost",chosenClass:"sortable-chosen",dragClass:"sortable-drag",ignore:"a, img",filter:null,preventOnFilter:!0,animation:0,easing:null,setData:function(t,e){t.setData("Text",e.textContent)},dropBubble:!1,dragoverBubble:!1,dataIdAttr:"data-id",delay:0,delayOnTouchOnly:!1,touchStartThreshold:(Number.parseInt?Number:window).parseInt(window.devicePixelRatio,10)||1,forceFallback:!1,fallbackClass:"sortable-fallback",fallbackOnBody:!1,fallbackTolerance:0,fallbackOffset:{x:0,y:0},supportPointer:!1!==Rt.supportPointer&&"PointerEvent"in window&&!u,emptyInsertThreshold:5};for(var o in O.initializePlugins(this,t,n),n)o in e||(e[o]=n[o]);for(var i in Nt(e),this)"_"===i.charAt(0)&&"function"==typeof this[i]&&(this[i]=this[i].bind(this));this.nativeDraggable=!e.forceFallback&&xt,this.nativeDraggable&&(this.options.touchStartThreshold=1),e.supportPointer?d(t,"pointerdown",this._onTapStart):(d(t,"mousedown",this._onTapStart),d(t,"touchstart",this._onTapStart)),this.nativeDraggable&&(d(t,"dragover",this),d(t,"dragenter",this)),bt.push(this.el),e.store&&e.store.get&&this.sort(e.store.get(this)||[]),a(this,T())}function Xt(t,e,n,o,i,r,a,l){var s,c,u=t[j],d=u.options.onMove;return!window.CustomEvent||w||E?(s=document.createEvent("Event")).initEvent("move",!0,!0):s=new CustomEvent("move",{bubbles:!0,cancelable:!0}),s.to=e,s.from=t,s.dragged=n,s.draggedRect=o,s.related=i||e,s.relatedRect=r||X(e),s.willInsertAfter=l,s.originalEvent=a,t.dispatchEvent(s),d&&(c=d.call(u,s,a)),c}function Yt(t){t.draggable=!1}function Bt(){Dt=!1}function Ft(t){for(var e=t.tagName+t.className+t.src+t.href+t.textContent,n=e.length,o=0;n--;)o+=e.charCodeAt(n);return o.toString(36)}function Ht(t){return setTimeout(t,0)}function Lt(t){return clearTimeout(t)}Rt.prototype={constructor:Rt,_isOutsideThisEl:function(t){this.el.contains(t)||t===this.el||(ht=null)},_getDirection:function(t,e){return"function"==typeof this.options.direction?this.options.direction.call(this,t,e,z):this.options.direction},_onTapStart:function(e){if(e.cancelable){var n=this,o=this.el,t=this.options,i=t.preventOnFilter,r=e.type,a=e.touches&&e.touches[0]||e.pointerType&&"touch"===e.pointerType&&e,l=(a||e).target,s=e.target.shadowRoot&&(e.path&&e.path[0]||e.composedPath&&e.composedPath()[0])||l,c=t.filter;if(function(t){St.length=0;var e=t.getElementsByTagName("input"),n=e.length;for(;n--;){var o=e[n];o.checked&&St.push(o)}}(o),!z&&!(/mousedown|pointerdown/.test(r)&&0!==e.button||t.disabled)&&!s.isContentEditable&&(this.nativeDraggable||!u||!l||"SELECT"!==l.tagName.toUpperCase())&&!((l=P(l,t.draggable,o,!1))&&l.animated||Z===l)){if(J=F(l),et=F(l,t.draggable),"function"==typeof c){if(c.call(this,e,l,this))return W({sortable:n,rootEl:s,name:"filter",targetEl:l,toEl:o,fromEl:o}),K("filter",n,{evt:e}),void(i&&e.cancelable&&e.preventDefault())}else if(c&&(c=c.split(",").some(function(t){if(t=P(s,t.trim(),o,!1))return W({sortable:n,rootEl:t,name:"filter",targetEl:l,fromEl:o,toEl:o}),K("filter",n,{evt:e}),!0})))return void(i&&e.cancelable&&e.preventDefault());t.handle&&!P(s,t.handle,o,!1)||this._prepareDragStart(e,a,l)}}},_prepareDragStart:function(t,e,n){var o,i=this,r=i.el,a=i.options,l=r.ownerDocument;if(n&&!z&&n.parentNode===r){var s=X(n);if(q=r,G=(z=n).parentNode,V=z.nextSibling,Z=n,ot=a.group,rt={target:Rt.dragged=z,clientX:(e||t).clientX,clientY:(e||t).clientY},ct=rt.clientX-s.left,ut=rt.clientY-s.top,this._lastX=(e||t).clientX,this._lastY=(e||t).clientY,z.style["will-change"]="all",o=function(){K("delayEnded",i,{evt:t}),Rt.eventCanceled?i._onDrop():(i._disableDelayedDragEvents(),!c&&i.nativeDraggable&&(z.draggable=!0),i._triggerDragStart(t,e),W({sortable:i,name:"choose",originalEvent:t}),k(z,a.chosenClass,!0))},a.ignore.split(",").forEach(function(t){g(z,t.trim(),Yt)}),d(l,"dragover",Pt),d(l,"mousemove",Pt),d(l,"touchmove",Pt),d(l,"mouseup",i._onDrop),d(l,"touchend",i._onDrop),d(l,"touchcancel",i._onDrop),c&&this.nativeDraggable&&(this.options.touchStartThreshold=4,z.draggable=!0),K("delayStart",this,{evt:t}),!a.delay||a.delayOnTouchOnly&&!e||this.nativeDraggable&&(E||w))o();else{if(Rt.eventCanceled)return void this._onDrop();d(l,"mouseup",i._disableDelayedDrag),d(l,"touchend",i._disableDelayedDrag),d(l,"touchcancel",i._disableDelayedDrag),d(l,"mousemove",i._delayedDragTouchMoveHandler),d(l,"touchmove",i._delayedDragTouchMoveHandler),a.supportPointer&&d(l,"pointermove",i._delayedDragTouchMoveHandler),i._dragStartTimer=setTimeout(o,a.delay)}}},_delayedDragTouchMoveHandler:function(t){var e=t.touches?t.touches[0]:t;Math.max(Math.abs(e.clientX-this._lastX),Math.abs(e.clientY-this._lastY))>=Math.floor(this.options.touchStartThreshold/(this.nativeDraggable&&window.devicePixelRatio||1))&&this._disableDelayedDrag()},_disableDelayedDrag:function(){z&&Yt(z),clearTimeout(this._dragStartTimer),this._disableDelayedDragEvents()},_disableDelayedDragEvents:function(){var t=this.el.ownerDocument;s(t,"mouseup",this._disableDelayedDrag),s(t,"touchend",this._disableDelayedDrag),s(t,"touchcancel",this._disableDelayedDrag),s(t,"mousemove",this._delayedDragTouchMoveHandler),s(t,"touchmove",this._delayedDragTouchMoveHandler),s(t,"pointermove",this._delayedDragTouchMoveHandler)},_triggerDragStart:function(t,e){e=e||"touch"==t.pointerType&&t,!this.nativeDraggable||e?this.options.supportPointer?d(document,"pointermove",this._onTouchMove):d(document,e?"touchmove":"mousemove",this._onTouchMove):(d(z,"dragend",this),d(q,"dragstart",this._onDragStart));try{document.selection?Ht(function(){document.selection.empty()}):window.getSelection().removeAllRanges()}catch(t){}},_dragStarted:function(t,e){if(vt=!1,q&&z){K("dragStarted",this,{evt:e}),this.nativeDraggable&&d(document,"dragover",kt);var n=this.options;t||k(z,n.dragClass,!1),k(z,n.ghostClass,!0),Rt.active=this,t&&this._appendGhost(),W({sortable:this,name:"start",originalEvent:e})}else this._nulling()},_emulateDragOver:function(){if(at){this._lastX=at.clientX,this._lastY=at.clientY,At();for(var t=document.elementFromPoint(at.clientX,at.clientY),e=t;t&&t.shadowRoot&&(t=t.shadowRoot.elementFromPoint(at.clientX,at.clientY))!==e;)e=t;if(z.parentNode[j]._isOutsideThisEl(t),e)do{if(e[j]){if(e[j]._onDragOver({clientX:at.clientX,clientY:at.clientY,target:t,rootEl:e})&&!this.options.dragoverBubble)break}t=e}while(e=e.parentNode);It()}},_onTouchMove:function(t){if(rt){var e=this.options,n=e.fallbackTolerance,o=e.fallbackOffset,i=t.touches?t.touches[0]:t,r=U&&v(U,!0),a=U&&r&&r.a,l=U&&r&&r.d,s=Ct&>&&b(gt),c=(i.clientX-rt.clientX+o.x)/(a||1)+(s?s[0]-Et[0]:0)/(a||1),u=(i.clientY-rt.clientY+o.y)/(l||1)+(s?s[1]-Et[1]:0)/(l||1);if(!Rt.active&&!vt){if(n&&Math.max(Math.abs(i.clientX-this._lastX),Math.abs(i.clientY-this._lastY))o.right+10||t.clientX<=o.right&&t.clientY>o.bottom&&t.clientX>=o.left:t.clientX>o.right&&t.clientY>o.top||t.clientX<=o.right&&t.clientY>o.bottom+10}(n,a,this)&&!g.animated){if(g===z)return N(!1);if(g&&l===n.target&&(s=g),s&&(i=X(s)),!1!==Xt(q,l,z,o,s,i,n,!!s))return O(),l.appendChild(z),G=l,A(),N(!0)}else if(s.parentNode===l){i=X(s);var v,m,b,y=z.parentNode!==l,w=!function(t,e,n){var o=n?t.left:t.top,i=n?t.right:t.bottom,r=n?t.width:t.height,a=n?e.left:e.top,l=n?e.right:e.bottom,s=n?e.width:e.height;return o===a||i===l||o+r/2===a+s/2}(z.animated&&z.toRect||o,s.animated&&s.toRect||i,a),E=a?"top":"left",D=Y(s,"top","top")||Y(z,"top","top"),S=D?D.scrollTop:void 0;if(ht!==s&&(m=i[E],yt=!1,wt=!w&&e.invertSwap||y),0!==(v=function(t,e,n,o,i,r,a,l){var s=o?t.clientY:t.clientX,c=o?n.height:n.width,u=o?n.top:n.left,d=o?n.bottom:n.right,h=!1;if(!a)if(l&&pt", + noCalendar: false, + now: new Date(), + onChange: [], + onClose: [], + onDayCreate: [], + onDestroy: [], + onKeyDown: [], + onMonthChange: [], + onOpen: [], + onParseConfig: [], + onReady: [], + onValueUpdate: [], + onYearChange: [], + onPreCalendarPosition: [], + plugins: [], + position: "auto", + positionElement: undefined, + prevArrow: "", + shorthandCurrentMonth: false, + showMonths: 1, + static: false, + time_24hr: false, + weekNumbers: false, + wrap: false, + }; + + var english = { + weekdays: { + shorthand: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], + longhand: [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday", + ], + }, + months: { + shorthand: [ + "Jan", + "Feb", + "Mar", + "Apr", + "May", + "Jun", + "Jul", + "Aug", + "Sep", + "Oct", + "Nov", + "Dec", + ], + longhand: [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December", + ], + }, + daysInMonth: [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], + firstDayOfWeek: 0, + ordinal: function (nth) { + var s = nth % 100; + if (s > 3 && s < 21) + return "th"; + switch (s % 10) { + case 1: + return "st"; + case 2: + return "nd"; + case 3: + return "rd"; + default: + return "th"; + } + }, + rangeSeparator: " to ", + weekAbbreviation: "Wk", + scrollTitle: "Scroll to increment", + toggleTitle: "Click to toggle", + amPM: ["AM", "PM"], + yearAriaLabel: "Year", + monthAriaLabel: "Month", + hourAriaLabel: "Hour", + minuteAriaLabel: "Minute", + time_24hr: false, + }; + + var pad = function (number, length) { + if (length === void 0) { length = 2; } + return ("000" + number).slice(length * -1); + }; + var int = function (bool) { return (bool === true ? 1 : 0); }; + /* istanbul ignore next */ + function debounce(fn, wait) { + var t; + return function () { + var _this = this; + var args = arguments; + clearTimeout(t); + t = setTimeout(function () { return fn.apply(_this, args); }, wait); + }; + } + var arrayify = function (obj) { + return obj instanceof Array ? obj : [obj]; + }; + + function toggleClass(elem, className, bool) { + if (bool === true) + return elem.classList.add(className); + elem.classList.remove(className); + } + function createElement(tag, className, content) { + var e = window.document.createElement(tag); + className = className || ""; + content = content || ""; + e.className = className; + if (content !== undefined) + e.textContent = content; + return e; + } + function clearNode(node) { + while (node.firstChild) + node.removeChild(node.firstChild); + } + function findParent(node, condition) { + if (condition(node)) + return node; + else if (node.parentNode) + return findParent(node.parentNode, condition); + return undefined; // nothing found + } + function createNumberInput(inputClassName, opts) { + var wrapper = createElement("div", "numInputWrapper"), numInput = createElement("input", "numInput " + inputClassName), arrowUp = createElement("span", "arrowUp"), arrowDown = createElement("span", "arrowDown"); + if (navigator.userAgent.indexOf("MSIE 9.0") === -1) { + numInput.type = "number"; + } + else { + numInput.type = "text"; + numInput.pattern = "\\d*"; + } + if (opts !== undefined) + for (var key in opts) + numInput.setAttribute(key, opts[key]); + wrapper.appendChild(numInput); + wrapper.appendChild(arrowUp); + wrapper.appendChild(arrowDown); + return wrapper; + } + function getEventTarget(event) { + try { + if (typeof event.composedPath === "function") { + var path = event.composedPath(); + return path[0]; + } + return event.target; + } + catch (error) { + return event.target; + } + } + + var doNothing = function () { return undefined; }; + var monthToStr = function (monthNumber, shorthand, locale) { return locale.months[shorthand ? "shorthand" : "longhand"][monthNumber]; }; + var revFormat = { + D: doNothing, + F: function (dateObj, monthName, locale) { + dateObj.setMonth(locale.months.longhand.indexOf(monthName)); + }, + G: function (dateObj, hour) { + dateObj.setHours(parseFloat(hour)); + }, + H: function (dateObj, hour) { + dateObj.setHours(parseFloat(hour)); + }, + J: function (dateObj, day) { + dateObj.setDate(parseFloat(day)); + }, + K: function (dateObj, amPM, locale) { + dateObj.setHours((dateObj.getHours() % 12) + + 12 * int(new RegExp(locale.amPM[1], "i").test(amPM))); + }, + M: function (dateObj, shortMonth, locale) { + dateObj.setMonth(locale.months.shorthand.indexOf(shortMonth)); + }, + S: function (dateObj, seconds) { + dateObj.setSeconds(parseFloat(seconds)); + }, + U: function (_, unixSeconds) { return new Date(parseFloat(unixSeconds) * 1000); }, + W: function (dateObj, weekNum, locale) { + var weekNumber = parseInt(weekNum); + var date = new Date(dateObj.getFullYear(), 0, 2 + (weekNumber - 1) * 7, 0, 0, 0, 0); + date.setDate(date.getDate() - date.getDay() + locale.firstDayOfWeek); + return date; + }, + Y: function (dateObj, year) { + dateObj.setFullYear(parseFloat(year)); + }, + Z: function (_, ISODate) { return new Date(ISODate); }, + d: function (dateObj, day) { + dateObj.setDate(parseFloat(day)); + }, + h: function (dateObj, hour) { + dateObj.setHours(parseFloat(hour)); + }, + i: function (dateObj, minutes) { + dateObj.setMinutes(parseFloat(minutes)); + }, + j: function (dateObj, day) { + dateObj.setDate(parseFloat(day)); + }, + l: doNothing, + m: function (dateObj, month) { + dateObj.setMonth(parseFloat(month) - 1); + }, + n: function (dateObj, month) { + dateObj.setMonth(parseFloat(month) - 1); + }, + s: function (dateObj, seconds) { + dateObj.setSeconds(parseFloat(seconds)); + }, + u: function (_, unixMillSeconds) { + return new Date(parseFloat(unixMillSeconds)); + }, + w: doNothing, + y: function (dateObj, year) { + dateObj.setFullYear(2000 + parseFloat(year)); + }, + }; + var tokenRegex = { + D: "(\\w+)", + F: "(\\w+)", + G: "(\\d\\d|\\d)", + H: "(\\d\\d|\\d)", + J: "(\\d\\d|\\d)\\w+", + K: "", + M: "(\\w+)", + S: "(\\d\\d|\\d)", + U: "(.+)", + W: "(\\d\\d|\\d)", + Y: "(\\d{4})", + Z: "(.+)", + d: "(\\d\\d|\\d)", + h: "(\\d\\d|\\d)", + i: "(\\d\\d|\\d)", + j: "(\\d\\d|\\d)", + l: "(\\w+)", + m: "(\\d\\d|\\d)", + n: "(\\d\\d|\\d)", + s: "(\\d\\d|\\d)", + u: "(.+)", + w: "(\\d\\d|\\d)", + y: "(\\d{2})", + }; + var formats = { + // get the date in UTC + Z: function (date) { return date.toISOString(); }, + // weekday name, short, e.g. Thu + D: function (date, locale, options) { + return locale.weekdays.shorthand[formats.w(date, locale, options)]; + }, + // full month name e.g. January + F: function (date, locale, options) { + return monthToStr(formats.n(date, locale, options) - 1, false, locale); + }, + // padded hour 1-12 + G: function (date, locale, options) { + return pad(formats.h(date, locale, options)); + }, + // hours with leading zero e.g. 03 + H: function (date) { return pad(date.getHours()); }, + // day (1-30) with ordinal suffix e.g. 1st, 2nd + J: function (date, locale) { + return locale.ordinal !== undefined + ? date.getDate() + locale.ordinal(date.getDate()) + : date.getDate(); + }, + // AM/PM + K: function (date, locale) { return locale.amPM[int(date.getHours() > 11)]; }, + // shorthand month e.g. Jan, Sep, Oct, etc + M: function (date, locale) { + return monthToStr(date.getMonth(), true, locale); + }, + // seconds 00-59 + S: function (date) { return pad(date.getSeconds()); }, + // unix timestamp + U: function (date) { return date.getTime() / 1000; }, + W: function (date, _, options) { + return options.getWeek(date); + }, + // full year e.g. 2016, padded (0001-9999) + Y: function (date) { return pad(date.getFullYear(), 4); }, + // day in month, padded (01-30) + d: function (date) { return pad(date.getDate()); }, + // hour from 1-12 (am/pm) + h: function (date) { return (date.getHours() % 12 ? date.getHours() % 12 : 12); }, + // minutes, padded with leading zero e.g. 09 + i: function (date) { return pad(date.getMinutes()); }, + // day in month (1-30) + j: function (date) { return date.getDate(); }, + // weekday name, full, e.g. Thursday + l: function (date, locale) { + return locale.weekdays.longhand[date.getDay()]; + }, + // padded month number (01-12) + m: function (date) { return pad(date.getMonth() + 1); }, + // the month number (1-12) + n: function (date) { return date.getMonth() + 1; }, + // seconds 0-59 + s: function (date) { return date.getSeconds(); }, + // Unix Milliseconds + u: function (date) { return date.getTime(); }, + // number of the day of the week + w: function (date) { return date.getDay(); }, + // last two digits of year e.g. 16 for 2016 + y: function (date) { return String(date.getFullYear()).substring(2); }, + }; + + var createDateFormatter = function (_a) { + var _b = _a.config, config = _b === void 0 ? defaults : _b, _c = _a.l10n, l10n = _c === void 0 ? english : _c, _d = _a.isMobile, isMobile = _d === void 0 ? false : _d; + return function (dateObj, frmt, overrideLocale) { + var locale = overrideLocale || l10n; + if (config.formatDate !== undefined && !isMobile) { + return config.formatDate(dateObj, frmt, locale); + } + return frmt + .split("") + .map(function (c, i, arr) { + return formats[c] && arr[i - 1] !== "\\" + ? formats[c](dateObj, locale, config) + : c !== "\\" + ? c + : ""; + }) + .join(""); + }; + }; + var createDateParser = function (_a) { + var _b = _a.config, config = _b === void 0 ? defaults : _b, _c = _a.l10n, l10n = _c === void 0 ? english : _c; + return function (date, givenFormat, timeless, customLocale) { + if (date !== 0 && !date) + return undefined; + var locale = customLocale || l10n; + var parsedDate; + var dateOrig = date; + if (date instanceof Date) + parsedDate = new Date(date.getTime()); + else if (typeof date !== "string" && + date.toFixed !== undefined // timestamp + ) + // create a copy + parsedDate = new Date(date); + else if (typeof date === "string") { + // date string + var format = givenFormat || (config || defaults).dateFormat; + var datestr = String(date).trim(); + if (datestr === "today") { + parsedDate = new Date(); + timeless = true; + } + else if (config && config.parseDate) { + parsedDate = config.parseDate(date, format); + } + else if (/Z$/.test(datestr) || + /GMT$/.test(datestr) // datestrings w/ timezone + ) { + parsedDate = new Date(date); + } + else { + var matched = void 0, ops = []; + for (var i = 0, matchIndex = 0, regexStr = ""; i < format.length; i++) { + var token_1 = format[i]; + var isBackSlash = token_1 === "\\"; + var escaped = format[i - 1] === "\\" || isBackSlash; + if (tokenRegex[token_1] && !escaped) { + regexStr += tokenRegex[token_1]; + var match = new RegExp(regexStr).exec(date); + if (match && (matched = true)) { + ops[token_1 !== "Y" ? "push" : "unshift"]({ + fn: revFormat[token_1], + val: match[++matchIndex], + }); + } + } + else if (!isBackSlash) + regexStr += "."; // don't really care + } + parsedDate = + !config || !config.noCalendar + ? new Date(new Date().getFullYear(), 0, 1, 0, 0, 0, 0) + : new Date(new Date().setHours(0, 0, 0, 0)); + ops.forEach(function (_a) { + var fn = _a.fn, val = _a.val; + return (parsedDate = fn(parsedDate, val, locale) || parsedDate); + }); + parsedDate = matched ? parsedDate : undefined; + } + } + /* istanbul ignore next */ + if (!(parsedDate instanceof Date && !isNaN(parsedDate.getTime()))) { + config.errorHandler(new Error("Invalid date provided: " + dateOrig)); + return undefined; + } + if (timeless === true) + parsedDate.setHours(0, 0, 0, 0); + return parsedDate; + }; + }; + /** + * Compute the difference in dates, measured in ms + */ + function compareDates(date1, date2, timeless) { + if (timeless === void 0) { timeless = true; } + if (timeless !== false) { + return (new Date(date1.getTime()).setHours(0, 0, 0, 0) - + new Date(date2.getTime()).setHours(0, 0, 0, 0)); + } + return date1.getTime() - date2.getTime(); + } + var isBetween = function (ts, ts1, ts2) { + return ts > Math.min(ts1, ts2) && ts < Math.max(ts1, ts2); + }; + var calculateSecondsSinceMidnight = function (hours, minutes, seconds) { + return hours * 3600 + minutes * 60 + seconds; + }; + var parseSeconds = function (secondsSinceMidnight) { + var hours = Math.floor(secondsSinceMidnight / 3600), minutes = (secondsSinceMidnight - hours * 3600) / 60; + return [hours, minutes, secondsSinceMidnight - hours * 3600 - minutes * 60]; + }; + var duration = { + DAY: 86400000, + }; + function getDefaultHours(config) { + var hours = config.defaultHour; + var minutes = config.defaultMinute; + var seconds = config.defaultSeconds; + if (config.minDate !== undefined) { + var minHour = config.minDate.getHours(); + var minMinutes = config.minDate.getMinutes(); + var minSeconds = config.minDate.getSeconds(); + if (hours < minHour) { + hours = minHour; + } + if (hours === minHour && minutes < minMinutes) { + minutes = minMinutes; + } + if (hours === minHour && minutes === minMinutes && seconds < minSeconds) + seconds = config.minDate.getSeconds(); + } + if (config.maxDate !== undefined) { + var maxHr = config.maxDate.getHours(); + var maxMinutes = config.maxDate.getMinutes(); + hours = Math.min(hours, maxHr); + if (hours === maxHr) + minutes = Math.min(maxMinutes, minutes); + if (hours === maxHr && minutes === maxMinutes) + seconds = config.maxDate.getSeconds(); + } + return { hours: hours, minutes: minutes, seconds: seconds }; + } + + if (typeof Object.assign !== "function") { + Object.assign = function (target) { + var args = []; + for (var _i = 1; _i < arguments.length; _i++) { + args[_i - 1] = arguments[_i]; + } + if (!target) { + throw TypeError("Cannot convert undefined or null to object"); + } + var _loop_1 = function (source) { + if (source) { + Object.keys(source).forEach(function (key) { return (target[key] = source[key]); }); + } + }; + for (var _a = 0, args_1 = args; _a < args_1.length; _a++) { + var source = args_1[_a]; + _loop_1(source); + } + return target; + }; + } + + var DEBOUNCED_CHANGE_MS = 300; + function FlatpickrInstance(element, instanceConfig) { + var self = { + config: __assign(__assign({}, defaults), flatpickr.defaultConfig), + l10n: english, + }; + self.parseDate = createDateParser({ config: self.config, l10n: self.l10n }); + self._handlers = []; + self.pluginElements = []; + self.loadedPlugins = []; + self._bind = bind; + self._setHoursFromDate = setHoursFromDate; + self._positionCalendar = positionCalendar; + self.changeMonth = changeMonth; + self.changeYear = changeYear; + self.clear = clear; + self.close = close; + self._createElement = createElement; + self.destroy = destroy; + self.isEnabled = isEnabled; + self.jumpToDate = jumpToDate; + self.open = open; + self.redraw = redraw; + self.set = set; + self.setDate = setDate; + self.toggle = toggle; + function setupHelperFunctions() { + self.utils = { + getDaysInMonth: function (month, yr) { + if (month === void 0) { month = self.currentMonth; } + if (yr === void 0) { yr = self.currentYear; } + if (month === 1 && ((yr % 4 === 0 && yr % 100 !== 0) || yr % 400 === 0)) + return 29; + return self.l10n.daysInMonth[month]; + }, + }; + } + function init() { + self.element = self.input = element; + self.isOpen = false; + parseConfig(); + setupLocale(); + setupInputs(); + setupDates(); + setupHelperFunctions(); + if (!self.isMobile) + build(); + bindEvents(); + if (self.selectedDates.length || self.config.noCalendar) { + if (self.config.enableTime) { + setHoursFromDate(self.config.noCalendar ? self.latestSelectedDateObj : undefined); + } + updateValue(false); + } + setCalendarWidth(); + var isSafari = /^((?!chrome|android).)*safari/i.test(navigator.userAgent); + /* TODO: investigate this further + + Currently, there is weird positioning behavior in safari causing pages + to scroll up. https://github.com/chmln/flatpickr/issues/563 + + However, most browsers are not Safari and positioning is expensive when used + in scale. https://github.com/chmln/flatpickr/issues/1096 + */ + if (!self.isMobile && isSafari) { + positionCalendar(); + } + triggerEvent("onReady"); + } + function bindToInstance(fn) { + return fn.bind(self); + } + function setCalendarWidth() { + var config = self.config; + if (config.weekNumbers === false && config.showMonths === 1) { + return; + } + else if (config.noCalendar !== true) { + window.requestAnimationFrame(function () { + if (self.calendarContainer !== undefined) { + self.calendarContainer.style.visibility = "hidden"; + self.calendarContainer.style.display = "block"; + } + if (self.daysContainer !== undefined) { + var daysWidth = (self.days.offsetWidth + 1) * config.showMonths; + self.daysContainer.style.width = daysWidth + "px"; + self.calendarContainer.style.width = + daysWidth + + (self.weekWrapper !== undefined + ? self.weekWrapper.offsetWidth + : 0) + + "px"; + self.calendarContainer.style.removeProperty("visibility"); + self.calendarContainer.style.removeProperty("display"); + } + }); + } + } + /** + * The handler for all events targeting the time inputs + */ + function updateTime(e) { + if (self.selectedDates.length === 0) { + var defaultDate = self.config.minDate === undefined || + compareDates(new Date(), self.config.minDate) >= 0 + ? new Date() + : new Date(self.config.minDate.getTime()); + var defaults = getDefaultHours(self.config); + defaultDate.setHours(defaults.hours, defaults.minutes, defaults.seconds, defaultDate.getMilliseconds()); + self.selectedDates = [defaultDate]; + self.latestSelectedDateObj = defaultDate; + } + if (e !== undefined && e.type !== "blur") { + timeWrapper(e); + } + var prevValue = self._input.value; + setHoursFromInputs(); + updateValue(); + if (self._input.value !== prevValue) { + self._debouncedChange(); + } + } + function ampm2military(hour, amPM) { + return (hour % 12) + 12 * int(amPM === self.l10n.amPM[1]); + } + function military2ampm(hour) { + switch (hour % 24) { + case 0: + case 12: + return 12; + default: + return hour % 12; + } + } + /** + * Syncs the selected date object time with user's time input + */ + function setHoursFromInputs() { + if (self.hourElement === undefined || self.minuteElement === undefined) + return; + var hours = (parseInt(self.hourElement.value.slice(-2), 10) || 0) % 24, minutes = (parseInt(self.minuteElement.value, 10) || 0) % 60, seconds = self.secondElement !== undefined + ? (parseInt(self.secondElement.value, 10) || 0) % 60 + : 0; + if (self.amPM !== undefined) { + hours = ampm2military(hours, self.amPM.textContent); + } + var limitMinHours = self.config.minTime !== undefined || + (self.config.minDate && + self.minDateHasTime && + self.latestSelectedDateObj && + compareDates(self.latestSelectedDateObj, self.config.minDate, true) === + 0); + var limitMaxHours = self.config.maxTime !== undefined || + (self.config.maxDate && + self.maxDateHasTime && + self.latestSelectedDateObj && + compareDates(self.latestSelectedDateObj, self.config.maxDate, true) === + 0); + if (self.config.maxTime !== undefined && + self.config.minTime !== undefined && + self.config.minTime > self.config.maxTime) { + var minBound = calculateSecondsSinceMidnight(self.config.minTime.getHours(), self.config.minTime.getMinutes(), self.config.minTime.getSeconds()); + var maxBound = calculateSecondsSinceMidnight(self.config.maxTime.getHours(), self.config.maxTime.getMinutes(), self.config.maxTime.getSeconds()); + var currentTime = calculateSecondsSinceMidnight(hours, minutes, seconds); + if (currentTime > maxBound && currentTime < minBound) { + var result = parseSeconds(minBound); + hours = result[0]; + minutes = result[1]; + seconds = result[2]; + } + } + else { + if (limitMaxHours) { + var maxTime = self.config.maxTime !== undefined + ? self.config.maxTime + : self.config.maxDate; + hours = Math.min(hours, maxTime.getHours()); + if (hours === maxTime.getHours()) + minutes = Math.min(minutes, maxTime.getMinutes()); + if (minutes === maxTime.getMinutes()) + seconds = Math.min(seconds, maxTime.getSeconds()); + } + if (limitMinHours) { + var minTime = self.config.minTime !== undefined + ? self.config.minTime + : self.config.minDate; + hours = Math.max(hours, minTime.getHours()); + if (hours === minTime.getHours() && minutes < minTime.getMinutes()) + minutes = minTime.getMinutes(); + if (minutes === minTime.getMinutes()) + seconds = Math.max(seconds, minTime.getSeconds()); + } + } + setHours(hours, minutes, seconds); + } + /** + * Syncs time input values with a date + */ + function setHoursFromDate(dateObj) { + var date = dateObj || self.latestSelectedDateObj; + if (date) { + setHours(date.getHours(), date.getMinutes(), date.getSeconds()); + } + } + /** + * Sets the hours, minutes, and optionally seconds + * of the latest selected date object and the + * corresponding time inputs + * @param {Number} hours the hour. whether its military + * or am-pm gets inferred from config + * @param {Number} minutes the minutes + * @param {Number} seconds the seconds (optional) + */ + function setHours(hours, minutes, seconds) { + if (self.latestSelectedDateObj !== undefined) { + self.latestSelectedDateObj.setHours(hours % 24, minutes, seconds || 0, 0); + } + if (!self.hourElement || !self.minuteElement || self.isMobile) + return; + self.hourElement.value = pad(!self.config.time_24hr + ? ((12 + hours) % 12) + 12 * int(hours % 12 === 0) + : hours); + self.minuteElement.value = pad(minutes); + if (self.amPM !== undefined) + self.amPM.textContent = self.l10n.amPM[int(hours >= 12)]; + if (self.secondElement !== undefined) + self.secondElement.value = pad(seconds); + } + /** + * Handles the year input and incrementing events + * @param {Event} event the keyup or increment event + */ + function onYearInput(event) { + var eventTarget = getEventTarget(event); + var year = parseInt(eventTarget.value) + (event.delta || 0); + if (year / 1000 > 1 || + (event.key === "Enter" && !/[^\d]/.test(year.toString()))) { + changeYear(year); + } + } + /** + * Essentially addEventListener + tracking + * @param {Element} element the element to addEventListener to + * @param {String} event the event name + * @param {Function} handler the event handler + */ + function bind(element, event, handler, options) { + if (event instanceof Array) + return event.forEach(function (ev) { return bind(element, ev, handler, options); }); + if (element instanceof Array) + return element.forEach(function (el) { return bind(el, event, handler, options); }); + element.addEventListener(event, handler, options); + self._handlers.push({ + remove: function () { return element.removeEventListener(event, handler); }, + }); + } + function triggerChange() { + triggerEvent("onChange"); + } + /** + * Adds all the necessary event listeners + */ + function bindEvents() { + if (self.config.wrap) { + ["open", "close", "toggle", "clear"].forEach(function (evt) { + Array.prototype.forEach.call(self.element.querySelectorAll("[data-" + evt + "]"), function (el) { + return bind(el, "click", self[evt]); + }); + }); + } + if (self.isMobile) { + setupMobile(); + return; + } + var debouncedResize = debounce(onResize, 50); + self._debouncedChange = debounce(triggerChange, DEBOUNCED_CHANGE_MS); + if (self.daysContainer && !/iPhone|iPad|iPod/i.test(navigator.userAgent)) + bind(self.daysContainer, "mouseover", function (e) { + if (self.config.mode === "range") + onMouseOver(getEventTarget(e)); + }); + bind(self._input, "keydown", onKeyDown); + if (self.calendarContainer !== undefined) { + bind(self.calendarContainer, "keydown", onKeyDown); + } + if (!self.config.inline && !self.config.static) + bind(window, "resize", debouncedResize); + if (window.ontouchstart !== undefined) + bind(window.document, "touchstart", documentClick); + else + bind(window.document, "mousedown", documentClick); + bind(window.document, "focus", documentClick, { capture: true }); + if (self.config.clickOpens === true) { + bind(self._input, "focus", self.open); + bind(self._input, "click", self.open); + } + if (self.daysContainer !== undefined) { + bind(self.monthNav, "click", onMonthNavClick); + bind(self.monthNav, ["keyup", "increment"], onYearInput); + bind(self.daysContainer, "click", selectDate); + } + if (self.timeContainer !== undefined && + self.minuteElement !== undefined && + self.hourElement !== undefined) { + var selText = function (e) { + return getEventTarget(e).select(); + }; + bind(self.timeContainer, ["increment"], updateTime); + bind(self.timeContainer, "blur", updateTime, { capture: true }); + bind(self.timeContainer, "click", timeIncrement); + bind([self.hourElement, self.minuteElement], ["focus", "click"], selText); + if (self.secondElement !== undefined) + bind(self.secondElement, "focus", function () { return self.secondElement && self.secondElement.select(); }); + if (self.amPM !== undefined) { + bind(self.amPM, "click", function (e) { + updateTime(e); + triggerChange(); + }); + } + } + if (self.config.allowInput) { + bind(self._input, "blur", onBlur); + } + } + /** + * Set the calendar view to a particular date. + * @param {Date} jumpDate the date to set the view to + * @param {boolean} triggerChange if change events should be triggered + */ + function jumpToDate(jumpDate, triggerChange) { + var jumpTo = jumpDate !== undefined + ? self.parseDate(jumpDate) + : self.latestSelectedDateObj || + (self.config.minDate && self.config.minDate > self.now + ? self.config.minDate + : self.config.maxDate && self.config.maxDate < self.now + ? self.config.maxDate + : self.now); + var oldYear = self.currentYear; + var oldMonth = self.currentMonth; + try { + if (jumpTo !== undefined) { + self.currentYear = jumpTo.getFullYear(); + self.currentMonth = jumpTo.getMonth(); + } + } + catch (e) { + /* istanbul ignore next */ + e.message = "Invalid date supplied: " + jumpTo; + self.config.errorHandler(e); + } + if (triggerChange && self.currentYear !== oldYear) { + triggerEvent("onYearChange"); + buildMonthSwitch(); + } + if (triggerChange && + (self.currentYear !== oldYear || self.currentMonth !== oldMonth)) { + triggerEvent("onMonthChange"); + } + self.redraw(); + } + /** + * The up/down arrow handler for time inputs + * @param {Event} e the click event + */ + function timeIncrement(e) { + var eventTarget = getEventTarget(e); + if (~eventTarget.className.indexOf("arrow")) + incrementNumInput(e, eventTarget.classList.contains("arrowUp") ? 1 : -1); + } + /** + * Increments/decrements the value of input associ- + * ated with the up/down arrow by dispatching an + * "increment" event on the input. + * + * @param {Event} e the click event + * @param {Number} delta the diff (usually 1 or -1) + * @param {Element} inputElem the input element + */ + function incrementNumInput(e, delta, inputElem) { + var target = e && getEventTarget(e); + var input = inputElem || + (target && target.parentNode && target.parentNode.firstChild); + var event = createEvent("increment"); + event.delta = delta; + input && input.dispatchEvent(event); + } + function build() { + var fragment = window.document.createDocumentFragment(); + self.calendarContainer = createElement("div", "flatpickr-calendar"); + self.calendarContainer.tabIndex = -1; + if (!self.config.noCalendar) { + fragment.appendChild(buildMonthNav()); + self.innerContainer = createElement("div", "flatpickr-innerContainer"); + if (self.config.weekNumbers) { + var _a = buildWeeks(), weekWrapper = _a.weekWrapper, weekNumbers = _a.weekNumbers; + self.innerContainer.appendChild(weekWrapper); + self.weekNumbers = weekNumbers; + self.weekWrapper = weekWrapper; + } + self.rContainer = createElement("div", "flatpickr-rContainer"); + self.rContainer.appendChild(buildWeekdays()); + if (!self.daysContainer) { + self.daysContainer = createElement("div", "flatpickr-days"); + self.daysContainer.tabIndex = -1; + } + buildDays(); + self.rContainer.appendChild(self.daysContainer); + self.innerContainer.appendChild(self.rContainer); + fragment.appendChild(self.innerContainer); + } + if (self.config.enableTime) { + fragment.appendChild(buildTime()); + } + toggleClass(self.calendarContainer, "rangeMode", self.config.mode === "range"); + toggleClass(self.calendarContainer, "animate", self.config.animate === true); + toggleClass(self.calendarContainer, "multiMonth", self.config.showMonths > 1); + self.calendarContainer.appendChild(fragment); + var customAppend = self.config.appendTo !== undefined && + self.config.appendTo.nodeType !== undefined; + if (self.config.inline || self.config.static) { + self.calendarContainer.classList.add(self.config.inline ? "inline" : "static"); + if (self.config.inline) { + if (!customAppend && self.element.parentNode) + self.element.parentNode.insertBefore(self.calendarContainer, self._input.nextSibling); + else if (self.config.appendTo !== undefined) + self.config.appendTo.appendChild(self.calendarContainer); + } + if (self.config.static) { + var wrapper = createElement("div", "flatpickr-wrapper"); + if (self.element.parentNode) + self.element.parentNode.insertBefore(wrapper, self.element); + wrapper.appendChild(self.element); + if (self.altInput) + wrapper.appendChild(self.altInput); + wrapper.appendChild(self.calendarContainer); + } + } + if (!self.config.static && !self.config.inline) + (self.config.appendTo !== undefined + ? self.config.appendTo + : window.document.body).appendChild(self.calendarContainer); + } + function createDay(className, date, dayNumber, i) { + var dateIsEnabled = isEnabled(date, true), dayElement = createElement("span", "flatpickr-day " + className, date.getDate().toString()); + dayElement.dateObj = date; + dayElement.$i = i; + dayElement.setAttribute("aria-label", self.formatDate(date, self.config.ariaDateFormat)); + if (className.indexOf("hidden") === -1 && + compareDates(date, self.now) === 0) { + self.todayDateElem = dayElement; + dayElement.classList.add("today"); + dayElement.setAttribute("aria-current", "date"); + } + if (dateIsEnabled) { + dayElement.tabIndex = -1; + if (isDateSelected(date)) { + dayElement.classList.add("selected"); + self.selectedDateElem = dayElement; + if (self.config.mode === "range") { + toggleClass(dayElement, "startRange", self.selectedDates[0] && + compareDates(date, self.selectedDates[0], true) === 0); + toggleClass(dayElement, "endRange", self.selectedDates[1] && + compareDates(date, self.selectedDates[1], true) === 0); + if (className === "nextMonthDay") + dayElement.classList.add("inRange"); + } + } + } + else { + dayElement.classList.add("flatpickr-disabled"); + } + if (self.config.mode === "range") { + if (isDateInRange(date) && !isDateSelected(date)) + dayElement.classList.add("inRange"); + } + if (self.weekNumbers && + self.config.showMonths === 1 && + className !== "prevMonthDay" && + dayNumber % 7 === 1) { + self.weekNumbers.insertAdjacentHTML("beforeend", "" + self.config.getWeek(date) + ""); + } + triggerEvent("onDayCreate", dayElement); + return dayElement; + } + function focusOnDayElem(targetNode) { + targetNode.focus(); + if (self.config.mode === "range") + onMouseOver(targetNode); + } + function getFirstAvailableDay(delta) { + var startMonth = delta > 0 ? 0 : self.config.showMonths - 1; + var endMonth = delta > 0 ? self.config.showMonths : -1; + for (var m = startMonth; m != endMonth; m += delta) { + var month = self.daysContainer.children[m]; + var startIndex = delta > 0 ? 0 : month.children.length - 1; + var endIndex = delta > 0 ? month.children.length : -1; + for (var i = startIndex; i != endIndex; i += delta) { + var c = month.children[i]; + if (c.className.indexOf("hidden") === -1 && isEnabled(c.dateObj)) + return c; + } + } + return undefined; + } + function getNextAvailableDay(current, delta) { + var givenMonth = current.className.indexOf("Month") === -1 + ? current.dateObj.getMonth() + : self.currentMonth; + var endMonth = delta > 0 ? self.config.showMonths : -1; + var loopDelta = delta > 0 ? 1 : -1; + for (var m = givenMonth - self.currentMonth; m != endMonth; m += loopDelta) { + var month = self.daysContainer.children[m]; + var startIndex = givenMonth - self.currentMonth === m + ? current.$i + delta + : delta < 0 + ? month.children.length - 1 + : 0; + var numMonthDays = month.children.length; + for (var i = startIndex; i >= 0 && i < numMonthDays && i != (delta > 0 ? numMonthDays : -1); i += loopDelta) { + var c = month.children[i]; + if (c.className.indexOf("hidden") === -1 && + isEnabled(c.dateObj) && + Math.abs(current.$i - i) >= Math.abs(delta)) + return focusOnDayElem(c); + } + } + self.changeMonth(loopDelta); + focusOnDay(getFirstAvailableDay(loopDelta), 0); + return undefined; + } + function focusOnDay(current, offset) { + var dayFocused = isInView(document.activeElement || document.body); + var startElem = current !== undefined + ? current + : dayFocused + ? document.activeElement + : self.selectedDateElem !== undefined && isInView(self.selectedDateElem) + ? self.selectedDateElem + : self.todayDateElem !== undefined && isInView(self.todayDateElem) + ? self.todayDateElem + : getFirstAvailableDay(offset > 0 ? 1 : -1); + if (startElem === undefined) { + self._input.focus(); + } + else if (!dayFocused) { + focusOnDayElem(startElem); + } + else { + getNextAvailableDay(startElem, offset); + } + } + function buildMonthDays(year, month) { + var firstOfMonth = (new Date(year, month, 1).getDay() - self.l10n.firstDayOfWeek + 7) % 7; + var prevMonthDays = self.utils.getDaysInMonth((month - 1 + 12) % 12, year); + var daysInMonth = self.utils.getDaysInMonth(month, year), days = window.document.createDocumentFragment(), isMultiMonth = self.config.showMonths > 1, prevMonthDayClass = isMultiMonth ? "prevMonthDay hidden" : "prevMonthDay", nextMonthDayClass = isMultiMonth ? "nextMonthDay hidden" : "nextMonthDay"; + var dayNumber = prevMonthDays + 1 - firstOfMonth, dayIndex = 0; + // prepend days from the ending of previous month + for (; dayNumber <= prevMonthDays; dayNumber++, dayIndex++) { + days.appendChild(createDay(prevMonthDayClass, new Date(year, month - 1, dayNumber), dayNumber, dayIndex)); + } + // Start at 1 since there is no 0th day + for (dayNumber = 1; dayNumber <= daysInMonth; dayNumber++, dayIndex++) { + days.appendChild(createDay("", new Date(year, month, dayNumber), dayNumber, dayIndex)); + } + // append days from the next month + for (var dayNum = daysInMonth + 1; dayNum <= 42 - firstOfMonth && + (self.config.showMonths === 1 || dayIndex % 7 !== 0); dayNum++, dayIndex++) { + days.appendChild(createDay(nextMonthDayClass, new Date(year, month + 1, dayNum % daysInMonth), dayNum, dayIndex)); + } + //updateNavigationCurrentMonth(); + var dayContainer = createElement("div", "dayContainer"); + dayContainer.appendChild(days); + return dayContainer; + } + function buildDays() { + if (self.daysContainer === undefined) { + return; + } + clearNode(self.daysContainer); + // TODO: week numbers for each month + if (self.weekNumbers) + clearNode(self.weekNumbers); + var frag = document.createDocumentFragment(); + for (var i = 0; i < self.config.showMonths; i++) { + var d = new Date(self.currentYear, self.currentMonth, 1); + d.setMonth(self.currentMonth + i); + frag.appendChild(buildMonthDays(d.getFullYear(), d.getMonth())); + } + self.daysContainer.appendChild(frag); + self.days = self.daysContainer.firstChild; + if (self.config.mode === "range" && self.selectedDates.length === 1) { + onMouseOver(); + } + } + function buildMonthSwitch() { + if (self.config.showMonths > 1 || + self.config.monthSelectorType !== "dropdown") + return; + var shouldBuildMonth = function (month) { + if (self.config.minDate !== undefined && + self.currentYear === self.config.minDate.getFullYear() && + month < self.config.minDate.getMonth()) { + return false; + } + return !(self.config.maxDate !== undefined && + self.currentYear === self.config.maxDate.getFullYear() && + month > self.config.maxDate.getMonth()); + }; + self.monthsDropdownContainer.tabIndex = -1; + self.monthsDropdownContainer.innerHTML = ""; + for (var i = 0; i < 12; i++) { + if (!shouldBuildMonth(i)) + continue; + var month = createElement("option", "flatpickr-monthDropdown-month"); + month.value = new Date(self.currentYear, i).getMonth().toString(); + month.textContent = monthToStr(i, self.config.shorthandCurrentMonth, self.l10n); + month.tabIndex = -1; + if (self.currentMonth === i) { + month.selected = true; + } + self.monthsDropdownContainer.appendChild(month); + } + } + function buildMonth() { + var container = createElement("div", "flatpickr-month"); + var monthNavFragment = window.document.createDocumentFragment(); + var monthElement; + if (self.config.showMonths > 1 || + self.config.monthSelectorType === "static") { + monthElement = createElement("span", "cur-month"); + } + else { + self.monthsDropdownContainer = createElement("select", "flatpickr-monthDropdown-months"); + self.monthsDropdownContainer.setAttribute("aria-label", self.l10n.monthAriaLabel); + bind(self.monthsDropdownContainer, "change", function (e) { + var target = getEventTarget(e); + var selectedMonth = parseInt(target.value, 10); + self.changeMonth(selectedMonth - self.currentMonth); + triggerEvent("onMonthChange"); + }); + buildMonthSwitch(); + monthElement = self.monthsDropdownContainer; + } + var yearInput = createNumberInput("cur-year", { tabindex: "-1" }); + var yearElement = yearInput.getElementsByTagName("input")[0]; + yearElement.setAttribute("aria-label", self.l10n.yearAriaLabel); + if (self.config.minDate) { + yearElement.setAttribute("min", self.config.minDate.getFullYear().toString()); + } + if (self.config.maxDate) { + yearElement.setAttribute("max", self.config.maxDate.getFullYear().toString()); + yearElement.disabled = + !!self.config.minDate && + self.config.minDate.getFullYear() === self.config.maxDate.getFullYear(); + } + var currentMonth = createElement("div", "flatpickr-current-month"); + currentMonth.appendChild(monthElement); + currentMonth.appendChild(yearInput); + monthNavFragment.appendChild(currentMonth); + container.appendChild(monthNavFragment); + return { + container: container, + yearElement: yearElement, + monthElement: monthElement, + }; + } + function buildMonths() { + clearNode(self.monthNav); + self.monthNav.appendChild(self.prevMonthNav); + if (self.config.showMonths) { + self.yearElements = []; + self.monthElements = []; + } + for (var m = self.config.showMonths; m--;) { + var month = buildMonth(); + self.yearElements.push(month.yearElement); + self.monthElements.push(month.monthElement); + self.monthNav.appendChild(month.container); + } + self.monthNav.appendChild(self.nextMonthNav); + } + function buildMonthNav() { + self.monthNav = createElement("div", "flatpickr-months"); + self.yearElements = []; + self.monthElements = []; + self.prevMonthNav = createElement("span", "flatpickr-prev-month"); + self.prevMonthNav.innerHTML = self.config.prevArrow; + self.nextMonthNav = createElement("span", "flatpickr-next-month"); + self.nextMonthNav.innerHTML = self.config.nextArrow; + buildMonths(); + Object.defineProperty(self, "_hidePrevMonthArrow", { + get: function () { return self.__hidePrevMonthArrow; }, + set: function (bool) { + if (self.__hidePrevMonthArrow !== bool) { + toggleClass(self.prevMonthNav, "flatpickr-disabled", bool); + self.__hidePrevMonthArrow = bool; + } + }, + }); + Object.defineProperty(self, "_hideNextMonthArrow", { + get: function () { return self.__hideNextMonthArrow; }, + set: function (bool) { + if (self.__hideNextMonthArrow !== bool) { + toggleClass(self.nextMonthNav, "flatpickr-disabled", bool); + self.__hideNextMonthArrow = bool; + } + }, + }); + self.currentYearElement = self.yearElements[0]; + updateNavigationCurrentMonth(); + return self.monthNav; + } + function buildTime() { + self.calendarContainer.classList.add("hasTime"); + if (self.config.noCalendar) + self.calendarContainer.classList.add("noCalendar"); + var defaults = getDefaultHours(self.config); + self.timeContainer = createElement("div", "flatpickr-time"); + self.timeContainer.tabIndex = -1; + var separator = createElement("span", "flatpickr-time-separator", ":"); + var hourInput = createNumberInput("flatpickr-hour", { + "aria-label": self.l10n.hourAriaLabel, + }); + self.hourElement = hourInput.getElementsByTagName("input")[0]; + var minuteInput = createNumberInput("flatpickr-minute", { + "aria-label": self.l10n.minuteAriaLabel, + }); + self.minuteElement = minuteInput.getElementsByTagName("input")[0]; + self.hourElement.tabIndex = self.minuteElement.tabIndex = -1; + self.hourElement.value = pad(self.latestSelectedDateObj + ? self.latestSelectedDateObj.getHours() + : self.config.time_24hr + ? defaults.hours + : military2ampm(defaults.hours)); + self.minuteElement.value = pad(self.latestSelectedDateObj + ? self.latestSelectedDateObj.getMinutes() + : defaults.minutes); + self.hourElement.setAttribute("step", self.config.hourIncrement.toString()); + self.minuteElement.setAttribute("step", self.config.minuteIncrement.toString()); + self.hourElement.setAttribute("min", self.config.time_24hr ? "0" : "1"); + self.hourElement.setAttribute("max", self.config.time_24hr ? "23" : "12"); + self.hourElement.setAttribute("maxlength", "2"); + self.minuteElement.setAttribute("min", "0"); + self.minuteElement.setAttribute("max", "59"); + self.minuteElement.setAttribute("maxlength", "2"); + self.timeContainer.appendChild(hourInput); + self.timeContainer.appendChild(separator); + self.timeContainer.appendChild(minuteInput); + if (self.config.time_24hr) + self.timeContainer.classList.add("time24hr"); + if (self.config.enableSeconds) { + self.timeContainer.classList.add("hasSeconds"); + var secondInput = createNumberInput("flatpickr-second"); + self.secondElement = secondInput.getElementsByTagName("input")[0]; + self.secondElement.value = pad(self.latestSelectedDateObj + ? self.latestSelectedDateObj.getSeconds() + : defaults.seconds); + self.secondElement.setAttribute("step", self.minuteElement.getAttribute("step")); + self.secondElement.setAttribute("min", "0"); + self.secondElement.setAttribute("max", "59"); + self.secondElement.setAttribute("maxlength", "2"); + self.timeContainer.appendChild(createElement("span", "flatpickr-time-separator", ":")); + self.timeContainer.appendChild(secondInput); + } + if (!self.config.time_24hr) { + // add self.amPM if appropriate + self.amPM = createElement("span", "flatpickr-am-pm", self.l10n.amPM[int((self.latestSelectedDateObj + ? self.hourElement.value + : self.config.defaultHour) > 11)]); + self.amPM.title = self.l10n.toggleTitle; + self.amPM.tabIndex = -1; + self.timeContainer.appendChild(self.amPM); + } + return self.timeContainer; + } + function buildWeekdays() { + if (!self.weekdayContainer) + self.weekdayContainer = createElement("div", "flatpickr-weekdays"); + else + clearNode(self.weekdayContainer); + for (var i = self.config.showMonths; i--;) { + var container = createElement("div", "flatpickr-weekdaycontainer"); + self.weekdayContainer.appendChild(container); + } + updateWeekdays(); + return self.weekdayContainer; + } + function updateWeekdays() { + if (!self.weekdayContainer) { + return; + } + var firstDayOfWeek = self.l10n.firstDayOfWeek; + var weekdays = __spreadArrays(self.l10n.weekdays.shorthand); + if (firstDayOfWeek > 0 && firstDayOfWeek < weekdays.length) { + weekdays = __spreadArrays(weekdays.splice(firstDayOfWeek, weekdays.length), weekdays.splice(0, firstDayOfWeek)); + } + for (var i = self.config.showMonths; i--;) { + self.weekdayContainer.children[i].innerHTML = "\n \n " + weekdays.join("") + "\n \n "; + } + } + /* istanbul ignore next */ + function buildWeeks() { + self.calendarContainer.classList.add("hasWeeks"); + var weekWrapper = createElement("div", "flatpickr-weekwrapper"); + weekWrapper.appendChild(createElement("span", "flatpickr-weekday", self.l10n.weekAbbreviation)); + var weekNumbers = createElement("div", "flatpickr-weeks"); + weekWrapper.appendChild(weekNumbers); + return { + weekWrapper: weekWrapper, + weekNumbers: weekNumbers, + }; + } + function changeMonth(value, isOffset) { + if (isOffset === void 0) { isOffset = true; } + var delta = isOffset ? value : value - self.currentMonth; + if ((delta < 0 && self._hidePrevMonthArrow === true) || + (delta > 0 && self._hideNextMonthArrow === true)) + return; + self.currentMonth += delta; + if (self.currentMonth < 0 || self.currentMonth > 11) { + self.currentYear += self.currentMonth > 11 ? 1 : -1; + self.currentMonth = (self.currentMonth + 12) % 12; + triggerEvent("onYearChange"); + buildMonthSwitch(); + } + buildDays(); + triggerEvent("onMonthChange"); + updateNavigationCurrentMonth(); + } + function clear(triggerChangeEvent, toInitial) { + if (triggerChangeEvent === void 0) { triggerChangeEvent = true; } + if (toInitial === void 0) { toInitial = true; } + self.input.value = ""; + if (self.altInput !== undefined) + self.altInput.value = ""; + if (self.mobileInput !== undefined) + self.mobileInput.value = ""; + self.selectedDates = []; + self.latestSelectedDateObj = undefined; + if (toInitial === true) { + self.currentYear = self._initialDate.getFullYear(); + self.currentMonth = self._initialDate.getMonth(); + } + if (self.config.enableTime === true) { + var _a = getDefaultHours(self.config), hours = _a.hours, minutes = _a.minutes, seconds = _a.seconds; + setHours(hours, minutes, seconds); + } + self.redraw(); + if (triggerChangeEvent) + // triggerChangeEvent is true (default) or an Event + triggerEvent("onChange"); + } + function close() { + self.isOpen = false; + if (!self.isMobile) { + if (self.calendarContainer !== undefined) { + self.calendarContainer.classList.remove("open"); + } + if (self._input !== undefined) { + self._input.classList.remove("active"); + } + } + triggerEvent("onClose"); + } + function destroy() { + if (self.config !== undefined) + triggerEvent("onDestroy"); + for (var i = self._handlers.length; i--;) { + self._handlers[i].remove(); + } + self._handlers = []; + if (self.mobileInput) { + if (self.mobileInput.parentNode) + self.mobileInput.parentNode.removeChild(self.mobileInput); + self.mobileInput = undefined; + } + else if (self.calendarContainer && self.calendarContainer.parentNode) { + if (self.config.static && self.calendarContainer.parentNode) { + var wrapper = self.calendarContainer.parentNode; + wrapper.lastChild && wrapper.removeChild(wrapper.lastChild); + if (wrapper.parentNode) { + while (wrapper.firstChild) + wrapper.parentNode.insertBefore(wrapper.firstChild, wrapper); + wrapper.parentNode.removeChild(wrapper); + } + } + else + self.calendarContainer.parentNode.removeChild(self.calendarContainer); + } + if (self.altInput) { + self.input.type = "text"; + if (self.altInput.parentNode) + self.altInput.parentNode.removeChild(self.altInput); + delete self.altInput; + } + if (self.input) { + self.input.type = self.input._type; + self.input.classList.remove("flatpickr-input"); + self.input.removeAttribute("readonly"); + } + [ + "_showTimeInput", + "latestSelectedDateObj", + "_hideNextMonthArrow", + "_hidePrevMonthArrow", + "__hideNextMonthArrow", + "__hidePrevMonthArrow", + "isMobile", + "isOpen", + "selectedDateElem", + "minDateHasTime", + "maxDateHasTime", + "days", + "daysContainer", + "_input", + "_positionElement", + "innerContainer", + "rContainer", + "monthNav", + "todayDateElem", + "calendarContainer", + "weekdayContainer", + "prevMonthNav", + "nextMonthNav", + "monthsDropdownContainer", + "currentMonthElement", + "currentYearElement", + "navigationCurrentMonth", + "selectedDateElem", + "config", + ].forEach(function (k) { + try { + delete self[k]; + } + catch (_) { } + }); + } + function isCalendarElem(elem) { + if (self.config.appendTo && self.config.appendTo.contains(elem)) + return true; + return self.calendarContainer.contains(elem); + } + function documentClick(e) { + if (self.isOpen && !self.config.inline) { + var eventTarget_1 = getEventTarget(e); + var isCalendarElement = isCalendarElem(eventTarget_1); + var isInput = eventTarget_1 === self.input || + eventTarget_1 === self.altInput || + self.element.contains(eventTarget_1) || + // web components + // e.path is not present in all browsers. circumventing typechecks + (e.path && + e.path.indexOf && + (~e.path.indexOf(self.input) || + ~e.path.indexOf(self.altInput))); + var lostFocus = e.type === "blur" + ? isInput && + e.relatedTarget && + !isCalendarElem(e.relatedTarget) + : !isInput && + !isCalendarElement && + !isCalendarElem(e.relatedTarget); + var isIgnored = !self.config.ignoredFocusElements.some(function (elem) { + return elem.contains(eventTarget_1); + }); + if (lostFocus && isIgnored) { + if (self.timeContainer !== undefined && + self.minuteElement !== undefined && + self.hourElement !== undefined && + self.input.value !== "" && + self.input.value !== undefined) { + updateTime(); + } + self.close(); + if (self.config && + self.config.mode === "range" && + self.selectedDates.length === 1) { + self.clear(false); + self.redraw(); + } + } + } + } + function changeYear(newYear) { + if (!newYear || + (self.config.minDate && newYear < self.config.minDate.getFullYear()) || + (self.config.maxDate && newYear > self.config.maxDate.getFullYear())) + return; + var newYearNum = newYear, isNewYear = self.currentYear !== newYearNum; + self.currentYear = newYearNum || self.currentYear; + if (self.config.maxDate && + self.currentYear === self.config.maxDate.getFullYear()) { + self.currentMonth = Math.min(self.config.maxDate.getMonth(), self.currentMonth); + } + else if (self.config.minDate && + self.currentYear === self.config.minDate.getFullYear()) { + self.currentMonth = Math.max(self.config.minDate.getMonth(), self.currentMonth); + } + if (isNewYear) { + self.redraw(); + triggerEvent("onYearChange"); + buildMonthSwitch(); + } + } + function isEnabled(date, timeless) { + var _a; + if (timeless === void 0) { timeless = true; } + var dateToCheck = self.parseDate(date, undefined, timeless); // timeless + if ((self.config.minDate && + dateToCheck && + compareDates(dateToCheck, self.config.minDate, timeless !== undefined ? timeless : !self.minDateHasTime) < 0) || + (self.config.maxDate && + dateToCheck && + compareDates(dateToCheck, self.config.maxDate, timeless !== undefined ? timeless : !self.maxDateHasTime) > 0)) + return false; + if (!self.config.enable && self.config.disable.length === 0) + return true; + if (dateToCheck === undefined) + return false; + var bool = !!self.config.enable, array = (_a = self.config.enable) !== null && _a !== void 0 ? _a : self.config.disable; + for (var i = 0, d = void 0; i < array.length; i++) { + d = array[i]; + if (typeof d === "function" && + d(dateToCheck) // disabled by function + ) + return bool; + else if (d instanceof Date && + dateToCheck !== undefined && + d.getTime() === dateToCheck.getTime()) + // disabled by date + return bool; + else if (typeof d === "string") { + // disabled by date string + var parsed = self.parseDate(d, undefined, true); + return parsed && parsed.getTime() === dateToCheck.getTime() + ? bool + : !bool; + } + else if ( + // disabled by range + typeof d === "object" && + dateToCheck !== undefined && + d.from && + d.to && + dateToCheck.getTime() >= d.from.getTime() && + dateToCheck.getTime() <= d.to.getTime()) + return bool; + } + return !bool; + } + function isInView(elem) { + if (self.daysContainer !== undefined) + return (elem.className.indexOf("hidden") === -1 && + elem.className.indexOf("flatpickr-disabled") === -1 && + self.daysContainer.contains(elem)); + return false; + } + function onBlur(e) { + var isInput = e.target === self._input; + if (isInput && + (self.selectedDates.length > 0 || self._input.value.length > 0) && + !(e.relatedTarget && isCalendarElem(e.relatedTarget))) { + self.setDate(self._input.value, true, e.target === self.altInput + ? self.config.altFormat + : self.config.dateFormat); + } + } + function onKeyDown(e) { + // e.key e.keyCode + // "Backspace" 8 + // "Tab" 9 + // "Enter" 13 + // "Escape" (IE "Esc") 27 + // "ArrowLeft" (IE "Left") 37 + // "ArrowUp" (IE "Up") 38 + // "ArrowRight" (IE "Right") 39 + // "ArrowDown" (IE "Down") 40 + // "Delete" (IE "Del") 46 + var eventTarget = getEventTarget(e); + var isInput = self.config.wrap + ? element.contains(eventTarget) + : eventTarget === self._input; + var allowInput = self.config.allowInput; + var allowKeydown = self.isOpen && (!allowInput || !isInput); + var allowInlineKeydown = self.config.inline && isInput && !allowInput; + if (e.keyCode === 13 && isInput) { + if (allowInput) { + self.setDate(self._input.value, true, eventTarget === self.altInput + ? self.config.altFormat + : self.config.dateFormat); + return eventTarget.blur(); + } + else { + self.open(); + } + } + else if (isCalendarElem(eventTarget) || + allowKeydown || + allowInlineKeydown) { + var isTimeObj = !!self.timeContainer && + self.timeContainer.contains(eventTarget); + switch (e.keyCode) { + case 13: + if (isTimeObj) { + e.preventDefault(); + updateTime(); + focusAndClose(); + } + else + selectDate(e); + break; + case 27: // escape + e.preventDefault(); + focusAndClose(); + break; + case 8: + case 46: + if (isInput && !self.config.allowInput) { + e.preventDefault(); + self.clear(); + } + break; + case 37: + case 39: + if (!isTimeObj && !isInput) { + e.preventDefault(); + if (self.daysContainer !== undefined && + (allowInput === false || + (document.activeElement && isInView(document.activeElement)))) { + var delta_1 = e.keyCode === 39 ? 1 : -1; + if (!e.ctrlKey) + focusOnDay(undefined, delta_1); + else { + e.stopPropagation(); + changeMonth(delta_1); + focusOnDay(getFirstAvailableDay(1), 0); + } + } + } + else if (self.hourElement) + self.hourElement.focus(); + break; + case 38: + case 40: + e.preventDefault(); + var delta = e.keyCode === 40 ? 1 : -1; + if ((self.daysContainer && + eventTarget.$i !== undefined) || + eventTarget === self.input || + eventTarget === self.altInput) { + if (e.ctrlKey) { + e.stopPropagation(); + changeYear(self.currentYear - delta); + focusOnDay(getFirstAvailableDay(1), 0); + } + else if (!isTimeObj) + focusOnDay(undefined, delta * 7); + } + else if (eventTarget === self.currentYearElement) { + changeYear(self.currentYear - delta); + } + else if (self.config.enableTime) { + if (!isTimeObj && self.hourElement) + self.hourElement.focus(); + updateTime(e); + self._debouncedChange(); + } + break; + case 9: + if (isTimeObj) { + var elems = [ + self.hourElement, + self.minuteElement, + self.secondElement, + self.amPM, + ] + .concat(self.pluginElements) + .filter(function (x) { return x; }); + var i = elems.indexOf(eventTarget); + if (i !== -1) { + var target = elems[i + (e.shiftKey ? -1 : 1)]; + e.preventDefault(); + (target || self._input).focus(); + } + } + else if (!self.config.noCalendar && + self.daysContainer && + self.daysContainer.contains(eventTarget) && + e.shiftKey) { + e.preventDefault(); + self._input.focus(); + } + break; + } + } + if (self.amPM !== undefined && eventTarget === self.amPM) { + switch (e.key) { + case self.l10n.amPM[0].charAt(0): + case self.l10n.amPM[0].charAt(0).toLowerCase(): + self.amPM.textContent = self.l10n.amPM[0]; + setHoursFromInputs(); + updateValue(); + break; + case self.l10n.amPM[1].charAt(0): + case self.l10n.amPM[1].charAt(0).toLowerCase(): + self.amPM.textContent = self.l10n.amPM[1]; + setHoursFromInputs(); + updateValue(); + break; + } + } + if (isInput || isCalendarElem(eventTarget)) { + triggerEvent("onKeyDown", e); + } + } + function onMouseOver(elem) { + if (self.selectedDates.length !== 1 || + (elem && + (!elem.classList.contains("flatpickr-day") || + elem.classList.contains("flatpickr-disabled")))) + return; + var hoverDate = elem + ? elem.dateObj.getTime() + : self.days.firstElementChild.dateObj.getTime(), initialDate = self.parseDate(self.selectedDates[0], undefined, true).getTime(), rangeStartDate = Math.min(hoverDate, self.selectedDates[0].getTime()), rangeEndDate = Math.max(hoverDate, self.selectedDates[0].getTime()); + var containsDisabled = false; + var minRange = 0, maxRange = 0; + for (var t = rangeStartDate; t < rangeEndDate; t += duration.DAY) { + if (!isEnabled(new Date(t), true)) { + containsDisabled = + containsDisabled || (t > rangeStartDate && t < rangeEndDate); + if (t < initialDate && (!minRange || t > minRange)) + minRange = t; + else if (t > initialDate && (!maxRange || t < maxRange)) + maxRange = t; + } + } + for (var m = 0; m < self.config.showMonths; m++) { + var month = self.daysContainer.children[m]; + var _loop_1 = function (i, l) { + var dayElem = month.children[i], date = dayElem.dateObj; + var timestamp = date.getTime(); + var outOfRange = (minRange > 0 && timestamp < minRange) || + (maxRange > 0 && timestamp > maxRange); + if (outOfRange) { + dayElem.classList.add("notAllowed"); + ["inRange", "startRange", "endRange"].forEach(function (c) { + dayElem.classList.remove(c); + }); + return "continue"; + } + else if (containsDisabled && !outOfRange) + return "continue"; + ["startRange", "inRange", "endRange", "notAllowed"].forEach(function (c) { + dayElem.classList.remove(c); + }); + if (elem !== undefined) { + elem.classList.add(hoverDate <= self.selectedDates[0].getTime() + ? "startRange" + : "endRange"); + if (initialDate < hoverDate && timestamp === initialDate) + dayElem.classList.add("startRange"); + else if (initialDate > hoverDate && timestamp === initialDate) + dayElem.classList.add("endRange"); + if (timestamp >= minRange && + (maxRange === 0 || timestamp <= maxRange) && + isBetween(timestamp, initialDate, hoverDate)) + dayElem.classList.add("inRange"); + } + }; + for (var i = 0, l = month.children.length; i < l; i++) { + _loop_1(i, l); + } + } + } + function onResize() { + if (self.isOpen && !self.config.static && !self.config.inline) + positionCalendar(); + } + function open(e, positionElement) { + if (positionElement === void 0) { positionElement = self._positionElement; } + if (self.isMobile === true) { + if (e) { + e.preventDefault(); + var eventTarget = getEventTarget(e); + if (eventTarget) { + eventTarget.blur(); + } + } + if (self.mobileInput !== undefined) { + self.mobileInput.focus(); + self.mobileInput.click(); + } + triggerEvent("onOpen"); + return; + } + else if (self._input.disabled || self.config.inline) { + return; + } + var wasOpen = self.isOpen; + self.isOpen = true; + if (!wasOpen) { + self.calendarContainer.classList.add("open"); + self._input.classList.add("active"); + triggerEvent("onOpen"); + positionCalendar(positionElement); + } + if (self.config.enableTime === true && self.config.noCalendar === true) { + if (self.config.allowInput === false && + (e === undefined || + !self.timeContainer.contains(e.relatedTarget))) { + setTimeout(function () { return self.hourElement.select(); }, 50); + } + } + } + function minMaxDateSetter(type) { + return function (date) { + var dateObj = (self.config["_" + type + "Date"] = self.parseDate(date, self.config.dateFormat)); + var inverseDateObj = self.config["_" + (type === "min" ? "max" : "min") + "Date"]; + if (dateObj !== undefined) { + self[type === "min" ? "minDateHasTime" : "maxDateHasTime"] = + dateObj.getHours() > 0 || + dateObj.getMinutes() > 0 || + dateObj.getSeconds() > 0; + } + if (self.selectedDates) { + self.selectedDates = self.selectedDates.filter(function (d) { return isEnabled(d); }); + if (!self.selectedDates.length && type === "min") + setHoursFromDate(dateObj); + updateValue(); + } + if (self.daysContainer) { + redraw(); + if (dateObj !== undefined) + self.currentYearElement[type] = dateObj.getFullYear().toString(); + else + self.currentYearElement.removeAttribute(type); + self.currentYearElement.disabled = + !!inverseDateObj && + dateObj !== undefined && + inverseDateObj.getFullYear() === dateObj.getFullYear(); + } + }; + } + function parseConfig() { + var boolOpts = [ + "wrap", + "weekNumbers", + "allowInput", + "allowInvalidPreload", + "clickOpens", + "time_24hr", + "enableTime", + "noCalendar", + "altInput", + "shorthandCurrentMonth", + "inline", + "static", + "enableSeconds", + "disableMobile", + ]; + var userConfig = __assign(__assign({}, JSON.parse(JSON.stringify(element.dataset || {}))), instanceConfig); + var formats = {}; + self.config.parseDate = userConfig.parseDate; + self.config.formatDate = userConfig.formatDate; + Object.defineProperty(self.config, "enable", { + get: function () { return self.config._enable; }, + set: function (dates) { + self.config._enable = parseDateRules(dates); + }, + }); + Object.defineProperty(self.config, "disable", { + get: function () { return self.config._disable; }, + set: function (dates) { + self.config._disable = parseDateRules(dates); + }, + }); + var timeMode = userConfig.mode === "time"; + if (!userConfig.dateFormat && (userConfig.enableTime || timeMode)) { + var defaultDateFormat = flatpickr.defaultConfig.dateFormat || defaults.dateFormat; + formats.dateFormat = + userConfig.noCalendar || timeMode + ? "H:i" + (userConfig.enableSeconds ? ":S" : "") + : defaultDateFormat + " H:i" + (userConfig.enableSeconds ? ":S" : ""); + } + if (userConfig.altInput && + (userConfig.enableTime || timeMode) && + !userConfig.altFormat) { + var defaultAltFormat = flatpickr.defaultConfig.altFormat || defaults.altFormat; + formats.altFormat = + userConfig.noCalendar || timeMode + ? "h:i" + (userConfig.enableSeconds ? ":S K" : " K") + : defaultAltFormat + (" h:i" + (userConfig.enableSeconds ? ":S" : "") + " K"); + } + Object.defineProperty(self.config, "minDate", { + get: function () { return self.config._minDate; }, + set: minMaxDateSetter("min"), + }); + Object.defineProperty(self.config, "maxDate", { + get: function () { return self.config._maxDate; }, + set: minMaxDateSetter("max"), + }); + var minMaxTimeSetter = function (type) { return function (val) { + self.config[type === "min" ? "_minTime" : "_maxTime"] = self.parseDate(val, "H:i:S"); + }; }; + Object.defineProperty(self.config, "minTime", { + get: function () { return self.config._minTime; }, + set: minMaxTimeSetter("min"), + }); + Object.defineProperty(self.config, "maxTime", { + get: function () { return self.config._maxTime; }, + set: minMaxTimeSetter("max"), + }); + if (userConfig.mode === "time") { + self.config.noCalendar = true; + self.config.enableTime = true; + } + Object.assign(self.config, formats, userConfig); + for (var i = 0; i < boolOpts.length; i++) + // https://github.com/microsoft/TypeScript/issues/31663 + self.config[boolOpts[i]] = + self.config[boolOpts[i]] === true || + self.config[boolOpts[i]] === "true"; + HOOKS.filter(function (hook) { return self.config[hook] !== undefined; }).forEach(function (hook) { + self.config[hook] = arrayify(self.config[hook] || []).map(bindToInstance); + }); + self.isMobile = + !self.config.disableMobile && + !self.config.inline && + self.config.mode === "single" && + !self.config.disable.length && + !self.config.enable && + !self.config.weekNumbers && + /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent); + for (var i = 0; i < self.config.plugins.length; i++) { + var pluginConf = self.config.plugins[i](self) || {}; + for (var key in pluginConf) { + if (HOOKS.indexOf(key) > -1) { + self.config[key] = arrayify(pluginConf[key]) + .map(bindToInstance) + .concat(self.config[key]); + } + else if (typeof userConfig[key] === "undefined") + self.config[key] = pluginConf[key]; + } + } + if (!userConfig.altInputClass) { + self.config.altInputClass = + getInputElem().className + " " + self.config.altInputClass; + } + triggerEvent("onParseConfig"); + } + function getInputElem() { + return self.config.wrap + ? element.querySelector("[data-input]") + : element; + } + function setupLocale() { + if (typeof self.config.locale !== "object" && + typeof flatpickr.l10ns[self.config.locale] === "undefined") + self.config.errorHandler(new Error("flatpickr: invalid locale " + self.config.locale)); + self.l10n = __assign(__assign({}, flatpickr.l10ns.default), (typeof self.config.locale === "object" + ? self.config.locale + : self.config.locale !== "default" + ? flatpickr.l10ns[self.config.locale] + : undefined)); + tokenRegex.K = "(" + self.l10n.amPM[0] + "|" + self.l10n.amPM[1] + "|" + self.l10n.amPM[0].toLowerCase() + "|" + self.l10n.amPM[1].toLowerCase() + ")"; + var userConfig = __assign(__assign({}, instanceConfig), JSON.parse(JSON.stringify(element.dataset || {}))); + if (userConfig.time_24hr === undefined && + flatpickr.defaultConfig.time_24hr === undefined) { + self.config.time_24hr = self.l10n.time_24hr; + } + self.formatDate = createDateFormatter(self); + self.parseDate = createDateParser({ config: self.config, l10n: self.l10n }); + } + function positionCalendar(customPositionElement) { + if (typeof self.config.position === "function") { + return void self.config.position(self, customPositionElement); + } + if (self.calendarContainer === undefined) + return; + triggerEvent("onPreCalendarPosition"); + var positionElement = customPositionElement || self._positionElement; + var calendarHeight = Array.prototype.reduce.call(self.calendarContainer.children, (function (acc, child) { return acc + child.offsetHeight; }), 0), calendarWidth = self.calendarContainer.offsetWidth, configPos = self.config.position.split(" "), configPosVertical = configPos[0], configPosHorizontal = configPos.length > 1 ? configPos[1] : null, inputBounds = positionElement.getBoundingClientRect(), distanceFromBottom = window.innerHeight - inputBounds.bottom, showOnTop = configPosVertical === "above" || + (configPosVertical !== "below" && + distanceFromBottom < calendarHeight && + inputBounds.top > calendarHeight); + var top = window.pageYOffset + + inputBounds.top + + (!showOnTop ? positionElement.offsetHeight + 2 : -calendarHeight - 2); + toggleClass(self.calendarContainer, "arrowTop", !showOnTop); + toggleClass(self.calendarContainer, "arrowBottom", showOnTop); + if (self.config.inline) + return; + var left = window.pageXOffset + inputBounds.left; + var isCenter = false; + var isRight = false; + if (configPosHorizontal === "center") { + left -= (calendarWidth - inputBounds.width) / 2; + isCenter = true; + } + else if (configPosHorizontal === "right") { + left -= calendarWidth - inputBounds.width; + isRight = true; + } + toggleClass(self.calendarContainer, "arrowLeft", !isCenter && !isRight); + toggleClass(self.calendarContainer, "arrowCenter", isCenter); + toggleClass(self.calendarContainer, "arrowRight", isRight); + var right = window.document.body.offsetWidth - + (window.pageXOffset + inputBounds.right); + var rightMost = left + calendarWidth > window.document.body.offsetWidth; + var centerMost = right + calendarWidth > window.document.body.offsetWidth; + toggleClass(self.calendarContainer, "rightMost", rightMost); + if (self.config.static) + return; + self.calendarContainer.style.top = top + "px"; + if (!rightMost) { + self.calendarContainer.style.left = left + "px"; + self.calendarContainer.style.right = "auto"; + } + else if (!centerMost) { + self.calendarContainer.style.left = "auto"; + self.calendarContainer.style.right = right + "px"; + } + else { + var doc = getDocumentStyleSheet(); + // some testing environments don't have css support + if (doc === undefined) + return; + var bodyWidth = window.document.body.offsetWidth; + var centerLeft = Math.max(0, bodyWidth / 2 - calendarWidth / 2); + var centerBefore = ".flatpickr-calendar.centerMost:before"; + var centerAfter = ".flatpickr-calendar.centerMost:after"; + var centerIndex = doc.cssRules.length; + var centerStyle = "{left:" + inputBounds.left + "px;right:auto;}"; + toggleClass(self.calendarContainer, "rightMost", false); + toggleClass(self.calendarContainer, "centerMost", true); + doc.insertRule(centerBefore + "," + centerAfter + centerStyle, centerIndex); + self.calendarContainer.style.left = centerLeft + "px"; + self.calendarContainer.style.right = "auto"; + } + } + function getDocumentStyleSheet() { + var editableSheet = null; + for (var i = 0; i < document.styleSheets.length; i++) { + var sheet = document.styleSheets[i]; + try { + sheet.cssRules; + } + catch (err) { + continue; + } + editableSheet = sheet; + break; + } + return editableSheet != null ? editableSheet : createStyleSheet(); + } + function createStyleSheet() { + var style = document.createElement("style"); + document.head.appendChild(style); + return style.sheet; + } + function redraw() { + if (self.config.noCalendar || self.isMobile) + return; + buildMonthSwitch(); + updateNavigationCurrentMonth(); + buildDays(); + } + function focusAndClose() { + self._input.focus(); + if (window.navigator.userAgent.indexOf("MSIE") !== -1 || + navigator.msMaxTouchPoints !== undefined) { + // hack - bugs in the way IE handles focus keeps the calendar open + setTimeout(self.close, 0); + } + else { + self.close(); + } + } + function selectDate(e) { + e.preventDefault(); + e.stopPropagation(); + var isSelectable = function (day) { + return day.classList && + day.classList.contains("flatpickr-day") && + !day.classList.contains("flatpickr-disabled") && + !day.classList.contains("notAllowed"); + }; + var t = findParent(getEventTarget(e), isSelectable); + if (t === undefined) + return; + var target = t; + var selectedDate = (self.latestSelectedDateObj = new Date(target.dateObj.getTime())); + var shouldChangeMonth = (selectedDate.getMonth() < self.currentMonth || + selectedDate.getMonth() > + self.currentMonth + self.config.showMonths - 1) && + self.config.mode !== "range"; + self.selectedDateElem = target; + if (self.config.mode === "single") + self.selectedDates = [selectedDate]; + else if (self.config.mode === "multiple") { + var selectedIndex = isDateSelected(selectedDate); + if (selectedIndex) + self.selectedDates.splice(parseInt(selectedIndex), 1); + else + self.selectedDates.push(selectedDate); + } + else if (self.config.mode === "range") { + if (self.selectedDates.length === 2) { + self.clear(false, false); + } + self.latestSelectedDateObj = selectedDate; + self.selectedDates.push(selectedDate); + // unless selecting same date twice, sort ascendingly + if (compareDates(selectedDate, self.selectedDates[0], true) !== 0) + self.selectedDates.sort(function (a, b) { return a.getTime() - b.getTime(); }); + } + setHoursFromInputs(); + if (shouldChangeMonth) { + var isNewYear = self.currentYear !== selectedDate.getFullYear(); + self.currentYear = selectedDate.getFullYear(); + self.currentMonth = selectedDate.getMonth(); + if (isNewYear) { + triggerEvent("onYearChange"); + buildMonthSwitch(); + } + triggerEvent("onMonthChange"); + } + updateNavigationCurrentMonth(); + buildDays(); + updateValue(); + // maintain focus + if (!shouldChangeMonth && + self.config.mode !== "range" && + self.config.showMonths === 1) + focusOnDayElem(target); + else if (self.selectedDateElem !== undefined && + self.hourElement === undefined) { + self.selectedDateElem && self.selectedDateElem.focus(); + } + if (self.hourElement !== undefined) + self.hourElement !== undefined && self.hourElement.focus(); + if (self.config.closeOnSelect) { + var single = self.config.mode === "single" && !self.config.enableTime; + var range = self.config.mode === "range" && + self.selectedDates.length === 2 && + !self.config.enableTime; + if (single || range) { + focusAndClose(); + } + } + triggerChange(); + } + var CALLBACKS = { + locale: [setupLocale, updateWeekdays], + showMonths: [buildMonths, setCalendarWidth, buildWeekdays], + minDate: [jumpToDate], + maxDate: [jumpToDate], + positionElement: [updatePositionElement], + clickOpens: [ + function () { + if (self.config.clickOpens === true) { + bind(self._input, "focus", self.open); + bind(self._input, "click", self.open); + } + else { + self._input.removeEventListener("focus", self.open); + self._input.removeEventListener("click", self.open); + } + }, + ], + }; + function set(option, value) { + if (option !== null && typeof option === "object") { + Object.assign(self.config, option); + for (var key in option) { + if (CALLBACKS[key] !== undefined) + CALLBACKS[key].forEach(function (x) { return x(); }); + } + } + else { + self.config[option] = value; + if (CALLBACKS[option] !== undefined) + CALLBACKS[option].forEach(function (x) { return x(); }); + else if (HOOKS.indexOf(option) > -1) + self.config[option] = arrayify(value); + } + self.redraw(); + updateValue(true); + } + function setSelectedDate(inputDate, format) { + var dates = []; + if (inputDate instanceof Array) + dates = inputDate.map(function (d) { return self.parseDate(d, format); }); + else if (inputDate instanceof Date || typeof inputDate === "number") + dates = [self.parseDate(inputDate, format)]; + else if (typeof inputDate === "string") { + switch (self.config.mode) { + case "single": + case "time": + dates = [self.parseDate(inputDate, format)]; + break; + case "multiple": + dates = inputDate + .split(self.config.conjunction) + .map(function (date) { return self.parseDate(date, format); }); + break; + case "range": + dates = inputDate + .split(self.l10n.rangeSeparator) + .map(function (date) { return self.parseDate(date, format); }); + break; + } + } + else + self.config.errorHandler(new Error("Invalid date supplied: " + JSON.stringify(inputDate))); + self.selectedDates = (self.config.allowInvalidPreload + ? dates + : dates.filter(function (d) { return d instanceof Date && isEnabled(d, false); })); + if (self.config.mode === "range") + self.selectedDates.sort(function (a, b) { return a.getTime() - b.getTime(); }); + } + function setDate(date, triggerChange, format) { + if (triggerChange === void 0) { triggerChange = false; } + if (format === void 0) { format = self.config.dateFormat; } + if ((date !== 0 && !date) || (date instanceof Array && date.length === 0)) + return self.clear(triggerChange); + setSelectedDate(date, format); + self.latestSelectedDateObj = + self.selectedDates[self.selectedDates.length - 1]; + self.redraw(); + jumpToDate(undefined, triggerChange); + setHoursFromDate(); + if (self.selectedDates.length === 0) { + self.clear(false); + } + updateValue(triggerChange); + if (triggerChange) + triggerEvent("onChange"); + } + function parseDateRules(arr) { + return arr + .slice() + .map(function (rule) { + if (typeof rule === "string" || + typeof rule === "number" || + rule instanceof Date) { + return self.parseDate(rule, undefined, true); + } + else if (rule && + typeof rule === "object" && + rule.from && + rule.to) + return { + from: self.parseDate(rule.from, undefined), + to: self.parseDate(rule.to, undefined), + }; + return rule; + }) + .filter(function (x) { return x; }); // remove falsy values + } + function setupDates() { + self.selectedDates = []; + self.now = self.parseDate(self.config.now) || new Date(); + // Workaround IE11 setting placeholder as the input's value + var preloadedDate = self.config.defaultDate || + ((self.input.nodeName === "INPUT" || + self.input.nodeName === "TEXTAREA") && + self.input.placeholder && + self.input.value === self.input.placeholder + ? null + : self.input.value); + if (preloadedDate) + setSelectedDate(preloadedDate, self.config.dateFormat); + self._initialDate = + self.selectedDates.length > 0 + ? self.selectedDates[0] + : self.config.minDate && + self.config.minDate.getTime() > self.now.getTime() + ? self.config.minDate + : self.config.maxDate && + self.config.maxDate.getTime() < self.now.getTime() + ? self.config.maxDate + : self.now; + self.currentYear = self._initialDate.getFullYear(); + self.currentMonth = self._initialDate.getMonth(); + if (self.selectedDates.length > 0) + self.latestSelectedDateObj = self.selectedDates[0]; + if (self.config.minTime !== undefined) + self.config.minTime = self.parseDate(self.config.minTime, "H:i"); + if (self.config.maxTime !== undefined) + self.config.maxTime = self.parseDate(self.config.maxTime, "H:i"); + self.minDateHasTime = + !!self.config.minDate && + (self.config.minDate.getHours() > 0 || + self.config.minDate.getMinutes() > 0 || + self.config.minDate.getSeconds() > 0); + self.maxDateHasTime = + !!self.config.maxDate && + (self.config.maxDate.getHours() > 0 || + self.config.maxDate.getMinutes() > 0 || + self.config.maxDate.getSeconds() > 0); + } + function setupInputs() { + self.input = getInputElem(); + /* istanbul ignore next */ + if (!self.input) { + self.config.errorHandler(new Error("Invalid input element specified")); + return; + } + // hack: store previous type to restore it after destroy() + self.input._type = self.input.type; + self.input.type = "text"; + self.input.classList.add("flatpickr-input"); + self._input = self.input; + if (self.config.altInput) { + // replicate self.element + self.altInput = createElement(self.input.nodeName, self.config.altInputClass); + self._input = self.altInput; + self.altInput.placeholder = self.input.placeholder; + self.altInput.disabled = self.input.disabled; + self.altInput.required = self.input.required; + self.altInput.tabIndex = self.input.tabIndex; + self.altInput.type = "text"; + self.input.setAttribute("type", "hidden"); + if (!self.config.static && self.input.parentNode) + self.input.parentNode.insertBefore(self.altInput, self.input.nextSibling); + } + if (!self.config.allowInput) + self._input.setAttribute("readonly", "readonly"); + updatePositionElement(); + } + function updatePositionElement() { + self._positionElement = self.config.positionElement || self._input; + } + function setupMobile() { + var inputType = self.config.enableTime + ? self.config.noCalendar + ? "time" + : "datetime-local" + : "date"; + self.mobileInput = createElement("input", self.input.className + " flatpickr-mobile"); + self.mobileInput.tabIndex = 1; + self.mobileInput.type = inputType; + self.mobileInput.disabled = self.input.disabled; + self.mobileInput.required = self.input.required; + self.mobileInput.placeholder = self.input.placeholder; + self.mobileFormatStr = + inputType === "datetime-local" + ? "Y-m-d\\TH:i:S" + : inputType === "date" + ? "Y-m-d" + : "H:i:S"; + if (self.selectedDates.length > 0) { + self.mobileInput.defaultValue = self.mobileInput.value = self.formatDate(self.selectedDates[0], self.mobileFormatStr); + } + if (self.config.minDate) + self.mobileInput.min = self.formatDate(self.config.minDate, "Y-m-d"); + if (self.config.maxDate) + self.mobileInput.max = self.formatDate(self.config.maxDate, "Y-m-d"); + if (self.input.getAttribute("step")) + self.mobileInput.step = String(self.input.getAttribute("step")); + self.input.type = "hidden"; + if (self.altInput !== undefined) + self.altInput.type = "hidden"; + try { + if (self.input.parentNode) + self.input.parentNode.insertBefore(self.mobileInput, self.input.nextSibling); + } + catch (_a) { } + bind(self.mobileInput, "change", function (e) { + self.setDate(getEventTarget(e).value, false, self.mobileFormatStr); + triggerEvent("onChange"); + triggerEvent("onClose"); + }); + } + function toggle(e) { + if (self.isOpen === true) + return self.close(); + self.open(e); + } + function triggerEvent(event, data) { + // If the instance has been destroyed already, all hooks have been removed + if (self.config === undefined) + return; + var hooks = self.config[event]; + if (hooks !== undefined && hooks.length > 0) { + for (var i = 0; hooks[i] && i < hooks.length; i++) + hooks[i](self.selectedDates, self.input.value, self, data); + } + if (event === "onChange") { + self.input.dispatchEvent(createEvent("change")); + // many front-end frameworks bind to the input event + self.input.dispatchEvent(createEvent("input")); + } + } + function createEvent(name) { + var e = document.createEvent("Event"); + e.initEvent(name, true, true); + return e; + } + function isDateSelected(date) { + for (var i = 0; i < self.selectedDates.length; i++) { + if (compareDates(self.selectedDates[i], date) === 0) + return "" + i; + } + return false; + } + function isDateInRange(date) { + if (self.config.mode !== "range" || self.selectedDates.length < 2) + return false; + return (compareDates(date, self.selectedDates[0]) >= 0 && + compareDates(date, self.selectedDates[1]) <= 0); + } + function updateNavigationCurrentMonth() { + if (self.config.noCalendar || self.isMobile || !self.monthNav) + return; + self.yearElements.forEach(function (yearElement, i) { + var d = new Date(self.currentYear, self.currentMonth, 1); + d.setMonth(self.currentMonth + i); + if (self.config.showMonths > 1 || + self.config.monthSelectorType === "static") { + self.monthElements[i].textContent = + monthToStr(d.getMonth(), self.config.shorthandCurrentMonth, self.l10n) + " "; + } + else { + self.monthsDropdownContainer.value = d.getMonth().toString(); + } + yearElement.value = d.getFullYear().toString(); + }); + self._hidePrevMonthArrow = + self.config.minDate !== undefined && + (self.currentYear === self.config.minDate.getFullYear() + ? self.currentMonth <= self.config.minDate.getMonth() + : self.currentYear < self.config.minDate.getFullYear()); + self._hideNextMonthArrow = + self.config.maxDate !== undefined && + (self.currentYear === self.config.maxDate.getFullYear() + ? self.currentMonth + 1 > self.config.maxDate.getMonth() + : self.currentYear > self.config.maxDate.getFullYear()); + } + function getDateStr(format) { + return self.selectedDates + .map(function (dObj) { return self.formatDate(dObj, format); }) + .filter(function (d, i, arr) { + return self.config.mode !== "range" || + self.config.enableTime || + arr.indexOf(d) === i; + }) + .join(self.config.mode !== "range" + ? self.config.conjunction + : self.l10n.rangeSeparator); + } + /** + * Updates the values of inputs associated with the calendar + */ + function updateValue(triggerChange) { + if (triggerChange === void 0) { triggerChange = true; } + if (self.mobileInput !== undefined && self.mobileFormatStr) { + self.mobileInput.value = + self.latestSelectedDateObj !== undefined + ? self.formatDate(self.latestSelectedDateObj, self.mobileFormatStr) + : ""; + } + self.input.value = getDateStr(self.config.dateFormat); + if (self.altInput !== undefined) { + self.altInput.value = getDateStr(self.config.altFormat); + } + if (triggerChange !== false) + triggerEvent("onValueUpdate"); + } + function onMonthNavClick(e) { + var eventTarget = getEventTarget(e); + var isPrevMonth = self.prevMonthNav.contains(eventTarget); + var isNextMonth = self.nextMonthNav.contains(eventTarget); + if (isPrevMonth || isNextMonth) { + changeMonth(isPrevMonth ? -1 : 1); + } + else if (self.yearElements.indexOf(eventTarget) >= 0) { + eventTarget.select(); + } + else if (eventTarget.classList.contains("arrowUp")) { + self.changeYear(self.currentYear + 1); + } + else if (eventTarget.classList.contains("arrowDown")) { + self.changeYear(self.currentYear - 1); + } + } + function timeWrapper(e) { + e.preventDefault(); + var isKeyDown = e.type === "keydown", eventTarget = getEventTarget(e), input = eventTarget; + if (self.amPM !== undefined && eventTarget === self.amPM) { + self.amPM.textContent = + self.l10n.amPM[int(self.amPM.textContent === self.l10n.amPM[0])]; + } + var min = parseFloat(input.getAttribute("min")), max = parseFloat(input.getAttribute("max")), step = parseFloat(input.getAttribute("step")), curValue = parseInt(input.value, 10), delta = e.delta || + (isKeyDown ? (e.which === 38 ? 1 : -1) : 0); + var newValue = curValue + step * delta; + if (typeof input.value !== "undefined" && input.value.length === 2) { + var isHourElem = input === self.hourElement, isMinuteElem = input === self.minuteElement; + if (newValue < min) { + newValue = + max + + newValue + + int(!isHourElem) + + (int(isHourElem) && int(!self.amPM)); + if (isMinuteElem) + incrementNumInput(undefined, -1, self.hourElement); + } + else if (newValue > max) { + newValue = + input === self.hourElement ? newValue - max - int(!self.amPM) : min; + if (isMinuteElem) + incrementNumInput(undefined, 1, self.hourElement); + } + if (self.amPM && + isHourElem && + (step === 1 + ? newValue + curValue === 23 + : Math.abs(newValue - curValue) > step)) { + self.amPM.textContent = + self.l10n.amPM[int(self.amPM.textContent === self.l10n.amPM[0])]; + } + input.value = pad(newValue); + } + } + init(); + return self; + } + /* istanbul ignore next */ + function _flatpickr(nodeList, config) { + // static list + var nodes = Array.prototype.slice + .call(nodeList) + .filter(function (x) { return x instanceof HTMLElement; }); + var instances = []; + for (var i = 0; i < nodes.length; i++) { + var node = nodes[i]; + try { + if (node.getAttribute("data-fp-omit") !== null) + continue; + if (node._flatpickr !== undefined) { + node._flatpickr.destroy(); + node._flatpickr = undefined; + } + node._flatpickr = FlatpickrInstance(node, config || {}); + instances.push(node._flatpickr); + } + catch (e) { + console.error(e); + } + } + return instances.length === 1 ? instances[0] : instances; + } + /* istanbul ignore next */ + if (typeof HTMLElement !== "undefined" && + typeof HTMLCollection !== "undefined" && + typeof NodeList !== "undefined") { + // browser env + HTMLCollection.prototype.flatpickr = NodeList.prototype.flatpickr = function (config) { + return _flatpickr(this, config); + }; + HTMLElement.prototype.flatpickr = function (config) { + return _flatpickr([this], config); + }; + } + /* istanbul ignore next */ + var flatpickr = function (selector, config) { + if (typeof selector === "string") { + return _flatpickr(window.document.querySelectorAll(selector), config); + } + else if (selector instanceof Node) { + return _flatpickr([selector], config); + } + else { + return _flatpickr(selector, config); + } + }; + /* istanbul ignore next */ + flatpickr.defaultConfig = {}; + flatpickr.l10ns = { + en: __assign({}, english), + default: __assign({}, english), + }; + flatpickr.localize = function (l10n) { + flatpickr.l10ns.default = __assign(__assign({}, flatpickr.l10ns.default), l10n); + }; + flatpickr.setDefaults = function (config) { + flatpickr.defaultConfig = __assign(__assign({}, flatpickr.defaultConfig), config); + }; + flatpickr.parseDate = createDateParser({}); + flatpickr.formatDate = createDateFormatter({}); + flatpickr.compareDates = compareDates; + /* istanbul ignore next */ + if (typeof jQuery !== "undefined" && typeof jQuery.fn !== "undefined") { + jQuery.fn.flatpickr = function (config) { + return _flatpickr(this, config); + }; + } + Date.prototype.fp_incr = function (days) { + return new Date(this.getFullYear(), this.getMonth(), this.getDate() + (typeof days === "string" ? parseInt(days, 10) : days)); + }; + if (typeof window !== "undefined") { + window.flatpickr = flatpickr; + } + + return flatpickr; + +}))); diff --git a/asset/js/vendor/flatpickr.min.js b/asset/js/vendor/flatpickr.min.js new file mode 100644 index 00000000..286f1def --- /dev/null +++ b/asset/js/vendor/flatpickr.min.js @@ -0,0 +1,2 @@ +/* flatpickr v4.6.9,, @license MIT */ +!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.icinga?define(n):(e="undefined"!=typeof globalThis?globalThis:e||self).flatpickr=n()}(this,(function(){"use strict";var e=function(){return(e=Object.assign||function(e){for(var n,t=1,a=arguments.length;t",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:"auto",positionElement:void 0,prevArrow:"",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},i={weekdays:{shorthand:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},months:{shorthand:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longhand:["January","February","March","April","May","June","July","August","September","October","November","December"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(e){var n=e%100;if(n>3&&n<21)return"th";switch(n%10){case 1:return"st";case 2:return"nd";case 3:return"rd";default:return"th"}},rangeSeparator:" to ",weekAbbreviation:"Wk",scrollTitle:"Scroll to increment",toggleTitle:"Click to toggle",amPM:["AM","PM"],yearAriaLabel:"Year",monthAriaLabel:"Month",hourAriaLabel:"Hour",minuteAriaLabel:"Minute",time_24hr:!1},o=function(e,n){return void 0===n&&(n=2),("000"+e).slice(-1*n)},r=function(e){return!0===e?1:0};function l(e,n){var t;return function(){var a=this,i=arguments;clearTimeout(t),t=setTimeout((function(){return e.apply(a,i)}),n)}}var c=function(e){return e instanceof Array?e:[e]};function s(e,n,t){if(!0===t)return e.classList.add(n);e.classList.remove(n)}function d(e,n,t){var a=window.document.createElement(e);return n=n||"",t=t||"",a.className=n,void 0!==t&&(a.textContent=t),a}function u(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function f(e,n){return n(e)?e:e.parentNode?f(e.parentNode,n):void 0}function m(e,n){var t=d("div","numInputWrapper"),a=d("input","numInput "+e),i=d("span","arrowUp"),o=d("span","arrowDown");if(-1===navigator.userAgent.indexOf("MSIE 9.0")?a.type="number":(a.type="text",a.pattern="\\d*"),void 0!==n)for(var r in n)a.setAttribute(r,n[r]);return t.appendChild(a),t.appendChild(i),t.appendChild(o),t}function g(e){try{return"function"==typeof e.composedPath?e.composedPath()[0]:e.target}catch(n){return e.target}}var p=function(){},h=function(e,n,t){return t.months[n?"shorthand":"longhand"][e]},v={D:p,F:function(e,n,t){e.setMonth(t.months.longhand.indexOf(n))},G:function(e,n){e.setHours(parseFloat(n))},H:function(e,n){e.setHours(parseFloat(n))},J:function(e,n){e.setDate(parseFloat(n))},K:function(e,n,t){e.setHours(e.getHours()%12+12*r(new RegExp(t.amPM[1],"i").test(n)))},M:function(e,n,t){e.setMonth(t.months.shorthand.indexOf(n))},S:function(e,n){e.setSeconds(parseFloat(n))},U:function(e,n){return new Date(1e3*parseFloat(n))},W:function(e,n,t){var a=parseInt(n),i=new Date(e.getFullYear(),0,2+7*(a-1),0,0,0,0);return i.setDate(i.getDate()-i.getDay()+t.firstDayOfWeek),i},Y:function(e,n){e.setFullYear(parseFloat(n))},Z:function(e,n){return new Date(n)},d:function(e,n){e.setDate(parseFloat(n))},h:function(e,n){e.setHours(parseFloat(n))},i:function(e,n){e.setMinutes(parseFloat(n))},j:function(e,n){e.setDate(parseFloat(n))},l:p,m:function(e,n){e.setMonth(parseFloat(n)-1)},n:function(e,n){e.setMonth(parseFloat(n)-1)},s:function(e,n){e.setSeconds(parseFloat(n))},u:function(e,n){return new Date(parseFloat(n))},w:p,y:function(e,n){e.setFullYear(2e3+parseFloat(n))}},D={D:"(\\w+)",F:"(\\w+)",G:"(\\d\\d|\\d)",H:"(\\d\\d|\\d)",J:"(\\d\\d|\\d)\\w+",K:"",M:"(\\w+)",S:"(\\d\\d|\\d)",U:"(.+)",W:"(\\d\\d|\\d)",Y:"(\\d{4})",Z:"(.+)",d:"(\\d\\d|\\d)",h:"(\\d\\d|\\d)",i:"(\\d\\d|\\d)",j:"(\\d\\d|\\d)",l:"(\\w+)",m:"(\\d\\d|\\d)",n:"(\\d\\d|\\d)",s:"(\\d\\d|\\d)",u:"(.+)",w:"(\\d\\d|\\d)",y:"(\\d{2})"},w={Z:function(e){return e.toISOString()},D:function(e,n,t){return n.weekdays.shorthand[w.w(e,n,t)]},F:function(e,n,t){return h(w.n(e,n,t)-1,!1,n)},G:function(e,n,t){return o(w.h(e,n,t))},H:function(e){return o(e.getHours())},J:function(e,n){return void 0!==n.ordinal?e.getDate()+n.ordinal(e.getDate()):e.getDate()},K:function(e,n){return n.amPM[r(e.getHours()>11)]},M:function(e,n){return h(e.getMonth(),!0,n)},S:function(e){return o(e.getSeconds())},U:function(e){return e.getTime()/1e3},W:function(e,n,t){return t.getWeek(e)},Y:function(e){return o(e.getFullYear(),4)},d:function(e){return o(e.getDate())},h:function(e){return e.getHours()%12?e.getHours()%12:12},i:function(e){return o(e.getMinutes())},j:function(e){return e.getDate()},l:function(e,n){return n.weekdays.longhand[e.getDay()]},m:function(e){return o(e.getMonth()+1)},n:function(e){return e.getMonth()+1},s:function(e){return e.getSeconds()},u:function(e){return e.getTime()},w:function(e){return e.getDay()},y:function(e){return String(e.getFullYear()).substring(2)}},b=function(e){var n=e.config,t=void 0===n?a:n,o=e.l10n,r=void 0===o?i:o,l=e.isMobile,c=void 0!==l&&l;return function(e,n,a){var i=a||r;return void 0===t.formatDate||c?n.split("").map((function(n,a,o){return w[n]&&"\\"!==o[a-1]?w[n](e,i,t):"\\"!==n?n:""})).join(""):t.formatDate(e,n,i)}},C=function(e){var n=e.config,t=void 0===n?a:n,o=e.l10n,r=void 0===o?i:o;return function(e,n,i,o){if(0===e||e){var l,c=o||r,s=e;if(e instanceof Date)l=new Date(e.getTime());else if("string"!=typeof e&&void 0!==e.toFixed)l=new Date(e);else if("string"==typeof e){var d=n||(t||a).dateFormat,u=String(e).trim();if("today"===u)l=new Date,i=!0;else if(t&&t.parseDate)l=t.parseDate(e,d);else if(/Z$/.test(u)||/GMT$/.test(u))l=new Date(e);else{for(var f=void 0,m=[],g=0,p=0,h="";g=0?new Date:new Date(w.config.minDate.getTime()),t=E(w.config);n.setHours(t.hours,t.minutes,t.seconds,n.getMilliseconds()),w.selectedDates=[n],w.latestSelectedDateObj=n}void 0!==e&&"blur"!==e.type&&function(e){e.preventDefault();var n="keydown"===e.type,t=g(e),a=t;void 0!==w.amPM&&t===w.amPM&&(w.amPM.textContent=w.l10n.amPM[r(w.amPM.textContent===w.l10n.amPM[0])]);var i=parseFloat(a.getAttribute("min")),l=parseFloat(a.getAttribute("max")),c=parseFloat(a.getAttribute("step")),s=parseInt(a.value,10),d=e.delta||(n?38===e.which?1:-1:0),u=s+c*d;if(void 0!==a.value&&2===a.value.length){var f=a===w.hourElement,m=a===w.minuteElement;ul&&(u=a===w.hourElement?u-l-r(!w.amPM):i,m&&j(void 0,1,w.hourElement)),w.amPM&&f&&(1===c?u+s===23:Math.abs(u-s)>c)&&(w.amPM.textContent=w.l10n.amPM[r(w.amPM.textContent===w.l10n.amPM[0])]),a.value=o(u)}}(e);var a=w._input.value;_(),Me(),w._input.value!==a&&w._debouncedChange()}function _(){if(void 0!==w.hourElement&&void 0!==w.minuteElement){var e,n,t=(parseInt(w.hourElement.value.slice(-2),10)||0)%24,a=(parseInt(w.minuteElement.value,10)||0)%60,i=void 0!==w.secondElement?(parseInt(w.secondElement.value,10)||0)%60:0;void 0!==w.amPM&&(e=t,n=w.amPM.textContent,t=e%12+12*r(n===w.l10n.amPM[1]));var o=void 0!==w.config.minTime||w.config.minDate&&w.minDateHasTime&&w.latestSelectedDateObj&&0===M(w.latestSelectedDateObj,w.config.minDate,!0),l=void 0!==w.config.maxTime||w.config.maxDate&&w.maxDateHasTime&&w.latestSelectedDateObj&&0===M(w.latestSelectedDateObj,w.config.maxDate,!0);if(void 0!==w.config.maxTime&&void 0!==w.config.minTime&&w.config.minTime>w.config.maxTime){var c=y(w.config.minTime.getHours(),w.config.minTime.getMinutes(),w.config.minTime.getSeconds()),s=y(w.config.maxTime.getHours(),w.config.maxTime.getMinutes(),w.config.maxTime.getSeconds()),d=y(t,a,i);if(d>s&&d=12)]),void 0!==w.secondElement&&(w.secondElement.value=o(t)))}function A(e){var n=g(e),t=parseInt(n.value)+(e.delta||0);(t/1e3>1||"Enter"===e.key&&!/[^\d]/.test(t.toString()))&&X(t)}function N(e,n,t,a){return n instanceof Array?n.forEach((function(n){return N(e,n,t,a)})):e instanceof Array?e.forEach((function(e){return N(e,n,t,a)})):(e.addEventListener(n,t,a),void w._handlers.push({remove:function(){return e.removeEventListener(n,t)}}))}function P(){ve("onChange")}function Y(e,n){var t=void 0!==e?w.parseDate(e):w.latestSelectedDateObj||(w.config.minDate&&w.config.minDate>w.now?w.config.minDate:w.config.maxDate&&w.config.maxDate=0&&M(e,w.selectedDates[1])<=0)}(n)&&!we(n)&&o.classList.add("inRange"),w.weekNumbers&&1===w.config.showMonths&&"prevMonthDay"!==e&&t%7==1&&w.weekNumbers.insertAdjacentHTML("beforeend",""+w.config.getWeek(n)+""),ve("onDayCreate",o),o}function W(e){e.focus(),"range"===w.config.mode&&ie(e)}function R(e){for(var n=e>0?0:w.config.showMonths-1,t=e>0?w.config.showMonths:-1,a=n;a!=t;a+=e)for(var i=w.daysContainer.children[a],o=e>0?0:i.children.length-1,r=e>0?i.children.length:-1,l=o;l!=r;l+=e){var c=i.children[l];if(-1===c.className.indexOf("hidden")&&ee(c.dateObj))return c}}function B(e,n){var t=ne(document.activeElement||document.body),a=void 0!==e?e:t?document.activeElement:void 0!==w.selectedDateElem&&ne(w.selectedDateElem)?w.selectedDateElem:void 0!==w.todayDateElem&&ne(w.todayDateElem)?w.todayDateElem:R(n>0?1:-1);void 0===a?w._input.focus():t?function(e,n){for(var t=-1===e.className.indexOf("Month")?e.dateObj.getMonth():w.currentMonth,a=n>0?w.config.showMonths:-1,i=n>0?1:-1,o=t-w.currentMonth;o!=a;o+=i)for(var r=w.daysContainer.children[o],l=t-w.currentMonth===o?e.$i+n:n<0?r.children.length-1:0,c=r.children.length,s=l;s>=0&&s0?c:-1);s+=i){var d=r.children[s];if(-1===d.className.indexOf("hidden")&&ee(d.dateObj)&&Math.abs(e.$i-s)>=Math.abs(n))return W(d)}w.changeMonth(i),B(R(i),0)}(a,n):W(a)}function J(e,n){for(var t=(new Date(e,n,1).getDay()-w.l10n.firstDayOfWeek+7)%7,a=w.utils.getDaysInMonth((n-1+12)%12,e),i=w.utils.getDaysInMonth(n,e),o=window.document.createDocumentFragment(),r=w.config.showMonths>1,l=r?"prevMonthDay hidden":"prevMonthDay",c=r?"nextMonthDay hidden":"nextMonthDay",s=a+1-t,u=0;s<=a;s++,u++)o.appendChild(L(l,new Date(e,n-1,s),s,u));for(s=1;s<=i;s++,u++)o.appendChild(L("",new Date(e,n,s),s,u));for(var f=i+1;f<=42-t&&(1===w.config.showMonths||u%7!=0);f++,u++)o.appendChild(L(c,new Date(e,n+1,f%i),f,u));var m=d("div","dayContainer");return m.appendChild(o),m}function K(){if(void 0!==w.daysContainer){u(w.daysContainer),w.weekNumbers&&u(w.weekNumbers);for(var e=document.createDocumentFragment(),n=0;n1||"dropdown"!==w.config.monthSelectorType)){var e=function(e){return!(void 0!==w.config.minDate&&w.currentYear===w.config.minDate.getFullYear()&&ew.config.maxDate.getMonth())};w.monthsDropdownContainer.tabIndex=-1,w.monthsDropdownContainer.innerHTML="";for(var n=0;n<12;n++)if(e(n)){var t=d("option","flatpickr-monthDropdown-month");t.value=new Date(w.currentYear,n).getMonth().toString(),t.textContent=h(n,w.config.shorthandCurrentMonth,w.l10n),t.tabIndex=-1,w.currentMonth===n&&(t.selected=!0),w.monthsDropdownContainer.appendChild(t)}}}function q(){var e,n=d("div","flatpickr-month"),t=window.document.createDocumentFragment();w.config.showMonths>1||"static"===w.config.monthSelectorType?e=d("span","cur-month"):(w.monthsDropdownContainer=d("select","flatpickr-monthDropdown-months"),w.monthsDropdownContainer.setAttribute("aria-label",w.l10n.monthAriaLabel),N(w.monthsDropdownContainer,"change",(function(e){var n=g(e),t=parseInt(n.value,10);w.changeMonth(t-w.currentMonth),ve("onMonthChange")})),U(),e=w.monthsDropdownContainer);var a=m("cur-year",{tabindex:"-1"}),i=a.getElementsByTagName("input")[0];i.setAttribute("aria-label",w.l10n.yearAriaLabel),w.config.minDate&&i.setAttribute("min",w.config.minDate.getFullYear().toString()),w.config.maxDate&&(i.setAttribute("max",w.config.maxDate.getFullYear().toString()),i.disabled=!!w.config.minDate&&w.config.minDate.getFullYear()===w.config.maxDate.getFullYear());var o=d("div","flatpickr-current-month");return o.appendChild(e),o.appendChild(a),t.appendChild(o),n.appendChild(t),{container:n,yearElement:i,monthElement:e}}function $(){u(w.monthNav),w.monthNav.appendChild(w.prevMonthNav),w.config.showMonths&&(w.yearElements=[],w.monthElements=[]);for(var e=w.config.showMonths;e--;){var n=q();w.yearElements.push(n.yearElement),w.monthElements.push(n.monthElement),w.monthNav.appendChild(n.container)}w.monthNav.appendChild(w.nextMonthNav)}function z(){w.weekdayContainer?u(w.weekdayContainer):w.weekdayContainer=d("div","flatpickr-weekdays");for(var e=w.config.showMonths;e--;){var n=d("div","flatpickr-weekdaycontainer");w.weekdayContainer.appendChild(n)}return G(),w.weekdayContainer}function G(){if(w.weekdayContainer){var e=w.l10n.firstDayOfWeek,t=n(w.l10n.weekdays.shorthand);e>0&&e\n "+t.join("")+"\n \n "}}function V(e,n){void 0===n&&(n=!0);var t=n?e:e-w.currentMonth;t<0&&!0===w._hidePrevMonthArrow||t>0&&!0===w._hideNextMonthArrow||(w.currentMonth+=t,(w.currentMonth<0||w.currentMonth>11)&&(w.currentYear+=w.currentMonth>11?1:-1,w.currentMonth=(w.currentMonth+12)%12,ve("onYearChange"),U()),K(),ve("onMonthChange"),be())}function Z(e){return!(!w.config.appendTo||!w.config.appendTo.contains(e))||w.calendarContainer.contains(e)}function Q(e){if(w.isOpen&&!w.config.inline){var n=g(e),t=Z(n),a=n===w.input||n===w.altInput||w.element.contains(n)||e.path&&e.path.indexOf&&(~e.path.indexOf(w.input)||~e.path.indexOf(w.altInput)),i="blur"===e.type?a&&e.relatedTarget&&!Z(e.relatedTarget):!a&&!t&&!Z(e.relatedTarget),o=!w.config.ignoredFocusElements.some((function(e){return e.contains(n)}));i&&o&&(void 0!==w.timeContainer&&void 0!==w.minuteElement&&void 0!==w.hourElement&&""!==w.input.value&&void 0!==w.input.value&&I(),w.close(),w.config&&"range"===w.config.mode&&1===w.selectedDates.length&&(w.clear(!1),w.redraw()))}}function X(e){if(!(!e||w.config.minDate&&ew.config.maxDate.getFullYear())){var n=e,t=w.currentYear!==n;w.currentYear=n||w.currentYear,w.config.maxDate&&w.currentYear===w.config.maxDate.getFullYear()?w.currentMonth=Math.min(w.config.maxDate.getMonth(),w.currentMonth):w.config.minDate&&w.currentYear===w.config.minDate.getFullYear()&&(w.currentMonth=Math.max(w.config.minDate.getMonth(),w.currentMonth)),t&&(w.redraw(),ve("onYearChange"),U())}}function ee(e,n){var t;void 0===n&&(n=!0);var a=w.parseDate(e,void 0,n);if(w.config.minDate&&a&&M(a,w.config.minDate,void 0!==n?n:!w.minDateHasTime)<0||w.config.maxDate&&a&&M(a,w.config.maxDate,void 0!==n?n:!w.maxDateHasTime)>0)return!1;if(!w.config.enable&&0===w.config.disable.length)return!0;if(void 0===a)return!1;for(var i=!!w.config.enable,o=null!==(t=w.config.enable)&&void 0!==t?t:w.config.disable,r=0,l=void 0;r=l.from.getTime()&&a.getTime()<=l.to.getTime())return i}return!i}function ne(e){return void 0!==w.daysContainer&&(-1===e.className.indexOf("hidden")&&-1===e.className.indexOf("flatpickr-disabled")&&w.daysContainer.contains(e))}function te(e){!(e.target===w._input)||!(w.selectedDates.length>0||w._input.value.length>0)||e.relatedTarget&&Z(e.relatedTarget)||w.setDate(w._input.value,!0,e.target===w.altInput?w.config.altFormat:w.config.dateFormat)}function ae(e){var n=g(e),t=w.config.wrap?p.contains(n):n===w._input,a=w.config.allowInput,i=w.isOpen&&(!a||!t),o=w.config.inline&&t&&!a;if(13===e.keyCode&&t){if(a)return w.setDate(w._input.value,!0,n===w.altInput?w.config.altFormat:w.config.dateFormat),n.blur();w.open()}else if(Z(n)||i||o){var r=!!w.timeContainer&&w.timeContainer.contains(n);switch(e.keyCode){case 13:r?(e.preventDefault(),I(),ue()):fe(e);break;case 27:e.preventDefault(),ue();break;case 8:case 46:t&&!w.config.allowInput&&(e.preventDefault(),w.clear());break;case 37:case 39:if(r||t)w.hourElement&&w.hourElement.focus();else if(e.preventDefault(),void 0!==w.daysContainer&&(!1===a||document.activeElement&&ne(document.activeElement))){var l=39===e.keyCode?1:-1;e.ctrlKey?(e.stopPropagation(),V(l),B(R(1),0)):B(void 0,l)}break;case 38:case 40:e.preventDefault();var c=40===e.keyCode?1:-1;w.daysContainer&&void 0!==n.$i||n===w.input||n===w.altInput?e.ctrlKey?(e.stopPropagation(),X(w.currentYear-c),B(R(1),0)):r||B(void 0,7*c):n===w.currentYearElement?X(w.currentYear-c):w.config.enableTime&&(!r&&w.hourElement&&w.hourElement.focus(),I(e),w._debouncedChange());break;case 9:if(r){var s=[w.hourElement,w.minuteElement,w.secondElement,w.amPM].concat(w.pluginElements).filter((function(e){return e})),d=s.indexOf(n);if(-1!==d){var u=s[d+(e.shiftKey?-1:1)];e.preventDefault(),(u||w._input).focus()}}else!w.config.noCalendar&&w.daysContainer&&w.daysContainer.contains(n)&&e.shiftKey&&(e.preventDefault(),w._input.focus())}}if(void 0!==w.amPM&&n===w.amPM)switch(e.key){case w.l10n.amPM[0].charAt(0):case w.l10n.amPM[0].charAt(0).toLowerCase():w.amPM.textContent=w.l10n.amPM[0],_(),Me();break;case w.l10n.amPM[1].charAt(0):case w.l10n.amPM[1].charAt(0).toLowerCase():w.amPM.textContent=w.l10n.amPM[1],_(),Me()}(t||Z(n))&&ve("onKeyDown",e)}function ie(e){if(1===w.selectedDates.length&&(!e||e.classList.contains("flatpickr-day")&&!e.classList.contains("flatpickr-disabled"))){for(var n=e?e.dateObj.getTime():w.days.firstElementChild.dateObj.getTime(),t=w.parseDate(w.selectedDates[0],void 0,!0).getTime(),a=Math.min(n,w.selectedDates[0].getTime()),i=Math.max(n,w.selectedDates[0].getTime()),o=!1,r=0,l=0,c=a;ca&&cr)?r=c:c>t&&(!l||c0&&m0&&m>l;return g?(f.classList.add("notAllowed"),["inRange","startRange","endRange"].forEach((function(e){f.classList.remove(e)})),"continue"):o&&!g?"continue":(["startRange","inRange","endRange","notAllowed"].forEach((function(e){f.classList.remove(e)})),void(void 0!==e&&(e.classList.add(n<=w.selectedDates[0].getTime()?"startRange":"endRange"),tn&&m===t&&f.classList.add("endRange"),m>=r&&(0===l||m<=l)&&(s=t,u=n,(c=m)>Math.min(s,u)&&c0||t.getMinutes()>0||t.getSeconds()>0),w.selectedDates&&(w.selectedDates=w.selectedDates.filter((function(e){return ee(e)})),w.selectedDates.length||"min"!==e||O(t),Me()),w.daysContainer&&(de(),void 0!==t?w.currentYearElement[e]=t.getFullYear().toString():w.currentYearElement.removeAttribute(e),w.currentYearElement.disabled=!!a&&void 0!==t&&a.getFullYear()===t.getFullYear())}}function le(){return w.config.wrap?p.querySelector("[data-input]"):p}function ce(){"object"!=typeof w.config.locale&&void 0===S.l10ns[w.config.locale]&&w.config.errorHandler(new Error("flatpickr: invalid locale "+w.config.locale)),w.l10n=e(e({},S.l10ns.default),"object"==typeof w.config.locale?w.config.locale:"default"!==w.config.locale?S.l10ns[w.config.locale]:void 0),D.K="("+w.l10n.amPM[0]+"|"+w.l10n.amPM[1]+"|"+w.l10n.amPM[0].toLowerCase()+"|"+w.l10n.amPM[1].toLowerCase()+")",void 0===e(e({},v),JSON.parse(JSON.stringify(p.dataset||{}))).time_24hr&&void 0===S.defaultConfig.time_24hr&&(w.config.time_24hr=w.l10n.time_24hr),w.formatDate=b(w),w.parseDate=C({config:w.config,l10n:w.l10n})}function se(e){if("function"!=typeof w.config.position){if(void 0!==w.calendarContainer){ve("onPreCalendarPosition");var n=e||w._positionElement,t=Array.prototype.reduce.call(w.calendarContainer.children,(function(e,n){return e+n.offsetHeight}),0),a=w.calendarContainer.offsetWidth,i=w.config.position.split(" "),o=i[0],r=i.length>1?i[1]:null,l=n.getBoundingClientRect(),c=window.innerHeight-l.bottom,d="above"===o||"below"!==o&&ct,u=window.pageYOffset+l.top+(d?-t-2:n.offsetHeight+2);if(s(w.calendarContainer,"arrowTop",!d),s(w.calendarContainer,"arrowBottom",d),!w.config.inline){var f=window.pageXOffset+l.left,m=!1,g=!1;"center"===r?(f-=(a-l.width)/2,m=!0):"right"===r&&(f-=a-l.width,g=!0),s(w.calendarContainer,"arrowLeft",!m&&!g),s(w.calendarContainer,"arrowCenter",m),s(w.calendarContainer,"arrowRight",g);var p=window.document.body.offsetWidth-(window.pageXOffset+l.right),h=f+a>window.document.body.offsetWidth,v=p+a>window.document.body.offsetWidth;if(s(w.calendarContainer,"rightMost",h),!w.config.static)if(w.calendarContainer.style.top=u+"px",h)if(v){var D=function(){for(var e=null,n=0;nw.currentMonth+w.config.showMonths-1)&&"range"!==w.config.mode;if(w.selectedDateElem=t,"single"===w.config.mode)w.selectedDates=[a];else if("multiple"===w.config.mode){var o=we(a);o?w.selectedDates.splice(parseInt(o),1):w.selectedDates.push(a)}else"range"===w.config.mode&&(2===w.selectedDates.length&&w.clear(!1,!1),w.latestSelectedDateObj=a,w.selectedDates.push(a),0!==M(a,w.selectedDates[0],!0)&&w.selectedDates.sort((function(e,n){return e.getTime()-n.getTime()})));if(_(),i){var r=w.currentYear!==a.getFullYear();w.currentYear=a.getFullYear(),w.currentMonth=a.getMonth(),r&&(ve("onYearChange"),U()),ve("onMonthChange")}if(be(),K(),Me(),i||"range"===w.config.mode||1!==w.config.showMonths?void 0!==w.selectedDateElem&&void 0===w.hourElement&&w.selectedDateElem&&w.selectedDateElem.focus():W(t),void 0!==w.hourElement&&void 0!==w.hourElement&&w.hourElement.focus(),w.config.closeOnSelect){var l="single"===w.config.mode&&!w.config.enableTime,c="range"===w.config.mode&&2===w.selectedDates.length&&!w.config.enableTime;(l||c)&&ue()}P()}}w.parseDate=C({config:w.config,l10n:w.l10n}),w._handlers=[],w.pluginElements=[],w.loadedPlugins=[],w._bind=N,w._setHoursFromDate=O,w._positionCalendar=se,w.changeMonth=V,w.changeYear=X,w.clear=function(e,n){void 0===e&&(e=!0);void 0===n&&(n=!0);w.input.value="",void 0!==w.altInput&&(w.altInput.value="");void 0!==w.mobileInput&&(w.mobileInput.value="");w.selectedDates=[],w.latestSelectedDateObj=void 0,!0===n&&(w.currentYear=w._initialDate.getFullYear(),w.currentMonth=w._initialDate.getMonth());if(!0===w.config.enableTime){var t=E(w.config),a=t.hours,i=t.minutes,o=t.seconds;F(a,i,o)}w.redraw(),e&&ve("onChange")},w.close=function(){w.isOpen=!1,w.isMobile||(void 0!==w.calendarContainer&&w.calendarContainer.classList.remove("open"),void 0!==w._input&&w._input.classList.remove("active"));ve("onClose")},w._createElement=d,w.destroy=function(){void 0!==w.config&&ve("onDestroy");for(var e=w._handlers.length;e--;)w._handlers[e].remove();if(w._handlers=[],w.mobileInput)w.mobileInput.parentNode&&w.mobileInput.parentNode.removeChild(w.mobileInput),w.mobileInput=void 0;else if(w.calendarContainer&&w.calendarContainer.parentNode)if(w.config.static&&w.calendarContainer.parentNode){var n=w.calendarContainer.parentNode;if(n.lastChild&&n.removeChild(n.lastChild),n.parentNode){for(;n.firstChild;)n.parentNode.insertBefore(n.firstChild,n);n.parentNode.removeChild(n)}}else w.calendarContainer.parentNode.removeChild(w.calendarContainer);w.altInput&&(w.input.type="text",w.altInput.parentNode&&w.altInput.parentNode.removeChild(w.altInput),delete w.altInput);w.input&&(w.input.type=w.input._type,w.input.classList.remove("flatpickr-input"),w.input.removeAttribute("readonly"));["_showTimeInput","latestSelectedDateObj","_hideNextMonthArrow","_hidePrevMonthArrow","__hideNextMonthArrow","__hidePrevMonthArrow","isMobile","isOpen","selectedDateElem","minDateHasTime","maxDateHasTime","days","daysContainer","_input","_positionElement","innerContainer","rContainer","monthNav","todayDateElem","calendarContainer","weekdayContainer","prevMonthNav","nextMonthNav","monthsDropdownContainer","currentMonthElement","currentYearElement","navigationCurrentMonth","selectedDateElem","config"].forEach((function(e){try{delete w[e]}catch(e){}}))},w.isEnabled=ee,w.jumpToDate=Y,w.open=function(e,n){void 0===n&&(n=w._positionElement);if(!0===w.isMobile){if(e){e.preventDefault();var t=g(e);t&&t.blur()}return void 0!==w.mobileInput&&(w.mobileInput.focus(),w.mobileInput.click()),void ve("onOpen")}if(w._input.disabled||w.config.inline)return;var a=w.isOpen;w.isOpen=!0,a||(w.calendarContainer.classList.add("open"),w._input.classList.add("active"),ve("onOpen"),se(n));!0===w.config.enableTime&&!0===w.config.noCalendar&&(!1!==w.config.allowInput||void 0!==e&&w.timeContainer.contains(e.relatedTarget)||setTimeout((function(){return w.hourElement.select()}),50))},w.redraw=de,w.set=function(e,n){if(null!==e&&"object"==typeof e)for(var a in Object.assign(w.config,e),e)void 0!==me[a]&&me[a].forEach((function(e){return e()}));else w.config[e]=n,void 0!==me[e]?me[e].forEach((function(e){return e()})):t.indexOf(e)>-1&&(w.config[e]=c(n));w.redraw(),Me(!0)},w.setDate=function(e,n,t){void 0===n&&(n=!1);void 0===t&&(t=w.config.dateFormat);if(0!==e&&!e||e instanceof Array&&0===e.length)return w.clear(n);ge(e,t),w.latestSelectedDateObj=w.selectedDates[w.selectedDates.length-1],w.redraw(),Y(void 0,n),O(),0===w.selectedDates.length&&w.clear(!1);Me(n),n&&ve("onChange")},w.toggle=function(e){if(!0===w.isOpen)return w.close();w.open(e)};var me={locale:[ce,G],showMonths:[$,k,z],minDate:[Y],maxDate:[Y],positionElement:[he],clickOpens:[function(){!0===w.config.clickOpens?(N(w._input,"focus",w.open),N(w._input,"click",w.open)):(w._input.removeEventListener("focus",w.open),w._input.removeEventListener("click",w.open))}]};function ge(e,n){var t=[];if(e instanceof Array)t=e.map((function(e){return w.parseDate(e,n)}));else if(e instanceof Date||"number"==typeof e)t=[w.parseDate(e,n)];else if("string"==typeof e)switch(w.config.mode){case"single":case"time":t=[w.parseDate(e,n)];break;case"multiple":t=e.split(w.config.conjunction).map((function(e){return w.parseDate(e,n)}));break;case"range":t=e.split(w.l10n.rangeSeparator).map((function(e){return w.parseDate(e,n)}))}else w.config.errorHandler(new Error("Invalid date supplied: "+JSON.stringify(e)));w.selectedDates=w.config.allowInvalidPreload?t:t.filter((function(e){return e instanceof Date&&ee(e,!1)})),"range"===w.config.mode&&w.selectedDates.sort((function(e,n){return e.getTime()-n.getTime()}))}function pe(e){return e.slice().map((function(e){return"string"==typeof e||"number"==typeof e||e instanceof Date?w.parseDate(e,void 0,!0):e&&"object"==typeof e&&e.from&&e.to?{from:w.parseDate(e.from,void 0),to:w.parseDate(e.to,void 0)}:e})).filter((function(e){return e}))}function he(){w._positionElement=w.config.positionElement||w._input}function ve(e,n){if(void 0!==w.config){var t=w.config[e];if(void 0!==t&&t.length>0)for(var a=0;t[a]&&a1||"static"===w.config.monthSelectorType?w.monthElements[n].textContent=h(t.getMonth(),w.config.shorthandCurrentMonth,w.l10n)+" ":w.monthsDropdownContainer.value=t.getMonth().toString(),e.value=t.getFullYear().toString()})),w._hidePrevMonthArrow=void 0!==w.config.minDate&&(w.currentYear===w.config.minDate.getFullYear()?w.currentMonth<=w.config.minDate.getMonth():w.currentYearw.config.maxDate.getMonth():w.currentYear>w.config.maxDate.getFullYear()))}function Ce(e){return w.selectedDates.map((function(n){return w.formatDate(n,e)})).filter((function(e,n,t){return"range"!==w.config.mode||w.config.enableTime||t.indexOf(e)===n})).join("range"!==w.config.mode?w.config.conjunction:w.l10n.rangeSeparator)}function Me(e){void 0===e&&(e=!0),void 0!==w.mobileInput&&w.mobileFormatStr&&(w.mobileInput.value=void 0!==w.latestSelectedDateObj?w.formatDate(w.latestSelectedDateObj,w.mobileFormatStr):""),w.input.value=Ce(w.config.dateFormat),void 0!==w.altInput&&(w.altInput.value=Ce(w.config.altFormat)),!1!==e&&ve("onValueUpdate")}function ye(e){var n=g(e),t=w.prevMonthNav.contains(n),a=w.nextMonthNav.contains(n);t||a?V(t?-1:1):w.yearElements.indexOf(n)>=0?n.select():n.classList.contains("arrowUp")?w.changeYear(w.currentYear+1):n.classList.contains("arrowDown")&&w.changeYear(w.currentYear-1)}return function(){w.element=w.input=p,w.isOpen=!1,function(){var n=["wrap","weekNumbers","allowInput","allowInvalidPreload","clickOpens","time_24hr","enableTime","noCalendar","altInput","shorthandCurrentMonth","inline","static","enableSeconds","disableMobile"],i=e(e({},JSON.parse(JSON.stringify(p.dataset||{}))),v),o={};w.config.parseDate=i.parseDate,w.config.formatDate=i.formatDate,Object.defineProperty(w.config,"enable",{get:function(){return w.config._enable},set:function(e){w.config._enable=pe(e)}}),Object.defineProperty(w.config,"disable",{get:function(){return w.config._disable},set:function(e){w.config._disable=pe(e)}});var r="time"===i.mode;if(!i.dateFormat&&(i.enableTime||r)){var l=S.defaultConfig.dateFormat||a.dateFormat;o.dateFormat=i.noCalendar||r?"H:i"+(i.enableSeconds?":S":""):l+" H:i"+(i.enableSeconds?":S":"")}if(i.altInput&&(i.enableTime||r)&&!i.altFormat){var s=S.defaultConfig.altFormat||a.altFormat;o.altFormat=i.noCalendar||r?"h:i"+(i.enableSeconds?":S K":" K"):s+" h:i"+(i.enableSeconds?":S":"")+" K"}Object.defineProperty(w.config,"minDate",{get:function(){return w.config._minDate},set:re("min")}),Object.defineProperty(w.config,"maxDate",{get:function(){return w.config._maxDate},set:re("max")});var d=function(e){return function(n){w.config["min"===e?"_minTime":"_maxTime"]=w.parseDate(n,"H:i:S")}};Object.defineProperty(w.config,"minTime",{get:function(){return w.config._minTime},set:d("min")}),Object.defineProperty(w.config,"maxTime",{get:function(){return w.config._maxTime},set:d("max")}),"time"===i.mode&&(w.config.noCalendar=!0,w.config.enableTime=!0);Object.assign(w.config,o,i);for(var u=0;u-1?w.config[m]=c(f[m]).map(T).concat(w.config[m]):void 0===i[m]&&(w.config[m]=f[m])}i.altInputClass||(w.config.altInputClass=le().className+" "+w.config.altInputClass);ve("onParseConfig")}(),ce(),function(){if(w.input=le(),!w.input)return void w.config.errorHandler(new Error("Invalid input element specified"));w.input._type=w.input.type,w.input.type="text",w.input.classList.add("flatpickr-input"),w._input=w.input,w.config.altInput&&(w.altInput=d(w.input.nodeName,w.config.altInputClass),w._input=w.altInput,w.altInput.placeholder=w.input.placeholder,w.altInput.disabled=w.input.disabled,w.altInput.required=w.input.required,w.altInput.tabIndex=w.input.tabIndex,w.altInput.type="text",w.input.setAttribute("type","hidden"),!w.config.static&&w.input.parentNode&&w.input.parentNode.insertBefore(w.altInput,w.input.nextSibling));w.config.allowInput||w._input.setAttribute("readonly","readonly");he()}(),function(){w.selectedDates=[],w.now=w.parseDate(w.config.now)||new Date;var e=w.config.defaultDate||("INPUT"!==w.input.nodeName&&"TEXTAREA"!==w.input.nodeName||!w.input.placeholder||w.input.value!==w.input.placeholder?w.input.value:null);e&&ge(e,w.config.dateFormat);w._initialDate=w.selectedDates.length>0?w.selectedDates[0]:w.config.minDate&&w.config.minDate.getTime()>w.now.getTime()?w.config.minDate:w.config.maxDate&&w.config.maxDate.getTime()0&&(w.latestSelectedDateObj=w.selectedDates[0]);void 0!==w.config.minTime&&(w.config.minTime=w.parseDate(w.config.minTime,"H:i"));void 0!==w.config.maxTime&&(w.config.maxTime=w.parseDate(w.config.maxTime,"H:i"));w.minDateHasTime=!!w.config.minDate&&(w.config.minDate.getHours()>0||w.config.minDate.getMinutes()>0||w.config.minDate.getSeconds()>0),w.maxDateHasTime=!!w.config.maxDate&&(w.config.maxDate.getHours()>0||w.config.maxDate.getMinutes()>0||w.config.maxDate.getSeconds()>0)}(),w.utils={getDaysInMonth:function(e,n){return void 0===e&&(e=w.currentMonth),void 0===n&&(n=w.currentYear),1===e&&(n%4==0&&n%100!=0||n%400==0)?29:w.l10n.daysInMonth[e]}},w.isMobile||function(){var e=window.document.createDocumentFragment();if(w.calendarContainer=d("div","flatpickr-calendar"),w.calendarContainer.tabIndex=-1,!w.config.noCalendar){if(e.appendChild((w.monthNav=d("div","flatpickr-months"),w.yearElements=[],w.monthElements=[],w.prevMonthNav=d("span","flatpickr-prev-month"),w.prevMonthNav.innerHTML=w.config.prevArrow,w.nextMonthNav=d("span","flatpickr-next-month"),w.nextMonthNav.innerHTML=w.config.nextArrow,$(),Object.defineProperty(w,"_hidePrevMonthArrow",{get:function(){return w.__hidePrevMonthArrow},set:function(e){w.__hidePrevMonthArrow!==e&&(s(w.prevMonthNav,"flatpickr-disabled",e),w.__hidePrevMonthArrow=e)}}),Object.defineProperty(w,"_hideNextMonthArrow",{get:function(){return w.__hideNextMonthArrow},set:function(e){w.__hideNextMonthArrow!==e&&(s(w.nextMonthNav,"flatpickr-disabled",e),w.__hideNextMonthArrow=e)}}),w.currentYearElement=w.yearElements[0],be(),w.monthNav)),w.innerContainer=d("div","flatpickr-innerContainer"),w.config.weekNumbers){var n=function(){w.calendarContainer.classList.add("hasWeeks");var e=d("div","flatpickr-weekwrapper");e.appendChild(d("span","flatpickr-weekday",w.l10n.weekAbbreviation));var n=d("div","flatpickr-weeks");return e.appendChild(n),{weekWrapper:e,weekNumbers:n}}(),t=n.weekWrapper,a=n.weekNumbers;w.innerContainer.appendChild(t),w.weekNumbers=a,w.weekWrapper=t}w.rContainer=d("div","flatpickr-rContainer"),w.rContainer.appendChild(z()),w.daysContainer||(w.daysContainer=d("div","flatpickr-days"),w.daysContainer.tabIndex=-1),K(),w.rContainer.appendChild(w.daysContainer),w.innerContainer.appendChild(w.rContainer),e.appendChild(w.innerContainer)}w.config.enableTime&&e.appendChild(function(){w.calendarContainer.classList.add("hasTime"),w.config.noCalendar&&w.calendarContainer.classList.add("noCalendar");var e=E(w.config);w.timeContainer=d("div","flatpickr-time"),w.timeContainer.tabIndex=-1;var n=d("span","flatpickr-time-separator",":"),t=m("flatpickr-hour",{"aria-label":w.l10n.hourAriaLabel});w.hourElement=t.getElementsByTagName("input")[0];var a=m("flatpickr-minute",{"aria-label":w.l10n.minuteAriaLabel});w.minuteElement=a.getElementsByTagName("input")[0],w.hourElement.tabIndex=w.minuteElement.tabIndex=-1,w.hourElement.value=o(w.latestSelectedDateObj?w.latestSelectedDateObj.getHours():w.config.time_24hr?e.hours:function(e){switch(e%24){case 0:case 12:return 12;default:return e%12}}(e.hours)),w.minuteElement.value=o(w.latestSelectedDateObj?w.latestSelectedDateObj.getMinutes():e.minutes),w.hourElement.setAttribute("step",w.config.hourIncrement.toString()),w.minuteElement.setAttribute("step",w.config.minuteIncrement.toString()),w.hourElement.setAttribute("min",w.config.time_24hr?"0":"1"),w.hourElement.setAttribute("max",w.config.time_24hr?"23":"12"),w.hourElement.setAttribute("maxlength","2"),w.minuteElement.setAttribute("min","0"),w.minuteElement.setAttribute("max","59"),w.minuteElement.setAttribute("maxlength","2"),w.timeContainer.appendChild(t),w.timeContainer.appendChild(n),w.timeContainer.appendChild(a),w.config.time_24hr&&w.timeContainer.classList.add("time24hr");if(w.config.enableSeconds){w.timeContainer.classList.add("hasSeconds");var i=m("flatpickr-second");w.secondElement=i.getElementsByTagName("input")[0],w.secondElement.value=o(w.latestSelectedDateObj?w.latestSelectedDateObj.getSeconds():e.seconds),w.secondElement.setAttribute("step",w.minuteElement.getAttribute("step")),w.secondElement.setAttribute("min","0"),w.secondElement.setAttribute("max","59"),w.secondElement.setAttribute("maxlength","2"),w.timeContainer.appendChild(d("span","flatpickr-time-separator",":")),w.timeContainer.appendChild(i)}w.config.time_24hr||(w.amPM=d("span","flatpickr-am-pm",w.l10n.amPM[r((w.latestSelectedDateObj?w.hourElement.value:w.config.defaultHour)>11)]),w.amPM.title=w.l10n.toggleTitle,w.amPM.tabIndex=-1,w.timeContainer.appendChild(w.amPM));return w.timeContainer}());s(w.calendarContainer,"rangeMode","range"===w.config.mode),s(w.calendarContainer,"animate",!0===w.config.animate),s(w.calendarContainer,"multiMonth",w.config.showMonths>1),w.calendarContainer.appendChild(e);var i=void 0!==w.config.appendTo&&void 0!==w.config.appendTo.nodeType;if((w.config.inline||w.config.static)&&(w.calendarContainer.classList.add(w.config.inline?"inline":"static"),w.config.inline&&(!i&&w.element.parentNode?w.element.parentNode.insertBefore(w.calendarContainer,w._input.nextSibling):void 0!==w.config.appendTo&&w.config.appendTo.appendChild(w.calendarContainer)),w.config.static)){var l=d("div","flatpickr-wrapper");w.element.parentNode&&w.element.parentNode.insertBefore(l,w.element),l.appendChild(w.element),w.altInput&&l.appendChild(w.altInput),l.appendChild(w.calendarContainer)}w.config.static||w.config.inline||(void 0!==w.config.appendTo?w.config.appendTo:window.document.body).appendChild(w.calendarContainer)}(),function(){w.config.wrap&&["open","close","toggle","clear"].forEach((function(e){Array.prototype.forEach.call(w.element.querySelectorAll("[data-"+e+"]"),(function(n){return N(n,"click",w[e])}))}));if(w.isMobile)return void function(){var e=w.config.enableTime?w.config.noCalendar?"time":"datetime-local":"date";w.mobileInput=d("input",w.input.className+" flatpickr-mobile"),w.mobileInput.tabIndex=1,w.mobileInput.type=e,w.mobileInput.disabled=w.input.disabled,w.mobileInput.required=w.input.required,w.mobileInput.placeholder=w.input.placeholder,w.mobileFormatStr="datetime-local"===e?"Y-m-d\\TH:i:S":"date"===e?"Y-m-d":"H:i:S",w.selectedDates.length>0&&(w.mobileInput.defaultValue=w.mobileInput.value=w.formatDate(w.selectedDates[0],w.mobileFormatStr));w.config.minDate&&(w.mobileInput.min=w.formatDate(w.config.minDate,"Y-m-d"));w.config.maxDate&&(w.mobileInput.max=w.formatDate(w.config.maxDate,"Y-m-d"));w.input.getAttribute("step")&&(w.mobileInput.step=String(w.input.getAttribute("step")));w.input.type="hidden",void 0!==w.altInput&&(w.altInput.type="hidden");try{w.input.parentNode&&w.input.parentNode.insertBefore(w.mobileInput,w.input.nextSibling)}catch(e){}N(w.mobileInput,"change",(function(e){w.setDate(g(e).value,!1,w.mobileFormatStr),ve("onChange"),ve("onClose")}))}();var e=l(oe,50);w._debouncedChange=l(P,300),w.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&N(w.daysContainer,"mouseover",(function(e){"range"===w.config.mode&&ie(g(e))}));N(w._input,"keydown",ae),void 0!==w.calendarContainer&&N(w.calendarContainer,"keydown",ae);w.config.inline||w.config.static||N(window,"resize",e);void 0!==window.ontouchstart?N(window.document,"touchstart",Q):N(window.document,"mousedown",Q);N(window.document,"focus",Q,{capture:!0}),!0===w.config.clickOpens&&(N(w._input,"focus",w.open),N(w._input,"click",w.open));void 0!==w.daysContainer&&(N(w.monthNav,"click",ye),N(w.monthNav,["keyup","increment"],A),N(w.daysContainer,"click",fe));if(void 0!==w.timeContainer&&void 0!==w.minuteElement&&void 0!==w.hourElement){var n=function(e){return g(e).select()};N(w.timeContainer,["increment"],I),N(w.timeContainer,"blur",I,{capture:!0}),N(w.timeContainer,"click",H),N([w.hourElement,w.minuteElement],["focus","click"],n),void 0!==w.secondElement&&N(w.secondElement,"focus",(function(){return w.secondElement&&w.secondElement.select()})),void 0!==w.amPM&&N(w.amPM,"click",(function(e){I(e),P()}))}w.config.allowInput&&N(w._input,"blur",te)}(),(w.selectedDates.length||w.config.noCalendar)&&(w.config.enableTime&&O(w.config.noCalendar?w.latestSelectedDateObj:void 0),Me(!1)),k();var n=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);!w.isMobile&&n&&se(),ve("onReady")}(),w}function k(e,n){for(var t=Array.prototype.slice.call(e).filter((function(e){return e instanceof HTMLElement})),a=[],i=0;i 1) + return ""; + return "er"; + }, + rangeSeparator: " au ", + weekAbbreviation: "Sem", + scrollTitle: "Défiler pour augmenter la valeur", + toggleTitle: "Cliquer pour basculer", + time_24hr: true, + }; + fp.l10ns.fr = French; + var fr = fp.l10ns; + + exports.French = French; + exports.default = fr; + + Object.defineProperty(exports, '__esModule', { value: true }); + +}))); diff --git a/asset/js/vendor/flatpickr/l10n/it.js b/asset/js/vendor/flatpickr/l10n/it.js new file mode 100644 index 00000000..674f172d --- /dev/null +++ b/asset/js/vendor/flatpickr/l10n/it.js @@ -0,0 +1,71 @@ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.icinga ? define(["exports"], factory) : + (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.it = {})); +}(this, (function (exports) { 'use strict'; + + var fp = typeof window !== "undefined" && window.flatpickr !== undefined + ? window.flatpickr + : { + l10ns: {}, + }; + var Italian = { + weekdays: { + shorthand: ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab"], + longhand: [ + "Domenica", + "Lunedì", + "Martedì", + "Mercoledì", + "Giovedì", + "Venerdì", + "Sabato", + ], + }, + months: { + shorthand: [ + "Gen", + "Feb", + "Mar", + "Apr", + "Mag", + "Giu", + "Lug", + "Ago", + "Set", + "Ott", + "Nov", + "Dic", + ], + longhand: [ + "Gennaio", + "Febbraio", + "Marzo", + "Aprile", + "Maggio", + "Giugno", + "Luglio", + "Agosto", + "Settembre", + "Ottobre", + "Novembre", + "Dicembre", + ], + }, + firstDayOfWeek: 1, + ordinal: function () { return "°"; }, + rangeSeparator: " al ", + weekAbbreviation: "Se", + scrollTitle: "Scrolla per aumentare", + toggleTitle: "Clicca per cambiare", + time_24hr: true, + }; + fp.l10ns.it = Italian; + var it = fp.l10ns; + + exports.Italian = Italian; + exports.default = it; + + Object.defineProperty(exports, '__esModule', { value: true }); + +}))); diff --git a/asset/js/vendor/flatpickr/l10n/ja.js b/asset/js/vendor/flatpickr/l10n/ja.js new file mode 100644 index 00000000..fd15e340 --- /dev/null +++ b/asset/js/vendor/flatpickr/l10n/ja.js @@ -0,0 +1,71 @@ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.icinga ? define(["exports"], factory) : + (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.ja = {})); +}(this, (function (exports) { 'use strict'; + + var fp = typeof window !== "undefined" && window.flatpickr !== undefined + ? window.flatpickr + : { + l10ns: {}, + }; + var Japanese = { + weekdays: { + shorthand: ["日", "月", "火", "水", "木", "金", "土"], + longhand: [ + "日曜日", + "月曜日", + "火曜日", + "水曜日", + "木曜日", + "金曜日", + "土曜日", + ], + }, + months: { + shorthand: [ + "1月", + "2月", + "3月", + "4月", + "5月", + "6月", + "7月", + "8月", + "9月", + "10月", + "11月", + "12月", + ], + longhand: [ + "1月", + "2月", + "3月", + "4月", + "5月", + "6月", + "7月", + "8月", + "9月", + "10月", + "11月", + "12月", + ], + }, + time_24hr: true, + rangeSeparator: " から ", + monthAriaLabel: "月", + amPM: ["午前", "午後"], + yearAriaLabel: "年", + hourAriaLabel: "時間", + minuteAriaLabel: "分", + }; + fp.l10ns.ja = Japanese; + var ja = fp.l10ns; + + exports.Japanese = Japanese; + exports.default = ja; + + Object.defineProperty(exports, '__esModule', { value: true }); + +}))); diff --git a/asset/js/vendor/flatpickr/l10n/pt.js b/asset/js/vendor/flatpickr/l10n/pt.js new file mode 100644 index 00000000..7d6c6057 --- /dev/null +++ b/asset/js/vendor/flatpickr/l10n/pt.js @@ -0,0 +1,66 @@ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.icinga ? define(["exports"], factory) : + (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.pt = {})); +}(this, (function (exports) { 'use strict'; + + var fp = typeof window !== "undefined" && window.flatpickr !== undefined + ? window.flatpickr + : { + l10ns: {}, + }; + var Portuguese = { + weekdays: { + shorthand: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb"], + longhand: [ + "Domingo", + "Segunda-feira", + "Terça-feira", + "Quarta-feira", + "Quinta-feira", + "Sexta-feira", + "Sábado", + ], + }, + months: { + shorthand: [ + "Jan", + "Fev", + "Mar", + "Abr", + "Mai", + "Jun", + "Jul", + "Ago", + "Set", + "Out", + "Nov", + "Dez", + ], + longhand: [ + "Janeiro", + "Fevereiro", + "Março", + "Abril", + "Maio", + "Junho", + "Julho", + "Agosto", + "Setembro", + "Outubro", + "Novembro", + "Dezembro", + ], + }, + rangeSeparator: " até ", + time_24hr: true, + }; + fp.l10ns.pt = Portuguese; + var pt = fp.l10ns; + + exports.Portuguese = Portuguese; + exports.default = pt; + + Object.defineProperty(exports, '__esModule', { value: true }); + +}))); diff --git a/asset/js/vendor/flatpickr/l10n/ru.js b/asset/js/vendor/flatpickr/l10n/ru.js new file mode 100644 index 00000000..5065f0b1 --- /dev/null +++ b/asset/js/vendor/flatpickr/l10n/ru.js @@ -0,0 +1,75 @@ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.icinga ? define(["exports"], factory) : + (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.ru = {})); +}(this, (function (exports) { 'use strict'; + + var fp = typeof window !== "undefined" && window.flatpickr !== undefined + ? window.flatpickr + : { + l10ns: {}, + }; + var Russian = { + weekdays: { + shorthand: ["Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"], + longhand: [ + "Воскресенье", + "Понедельник", + "Вторник", + "Среда", + "Четверг", + "Пятница", + "Суббота", + ], + }, + months: { + shorthand: [ + "Янв", + "Фев", + "Март", + "Апр", + "Май", + "Июнь", + "Июль", + "Авг", + "Сен", + "Окт", + "Ноя", + "Дек", + ], + longhand: [ + "Январь", + "Февраль", + "Март", + "Апрель", + "Май", + "Июнь", + "Июль", + "Август", + "Сентябрь", + "Октябрь", + "Ноябрь", + "Декабрь", + ], + }, + firstDayOfWeek: 1, + ordinal: function () { + return ""; + }, + rangeSeparator: " — ", + weekAbbreviation: "Нед.", + scrollTitle: "Прокрутите для увеличения", + toggleTitle: "Нажмите для переключения", + amPM: ["ДП", "ПП"], + yearAriaLabel: "Год", + time_24hr: true, + }; + fp.l10ns.ru = Russian; + var ru = fp.l10ns; + + exports.Russian = Russian; + exports.default = ru; + + Object.defineProperty(exports, '__esModule', { value: true }); + +}))); diff --git a/asset/js/vendor/flatpickr/l10n/uk.js b/asset/js/vendor/flatpickr/l10n/uk.js new file mode 100644 index 00000000..a2eaa711 --- /dev/null +++ b/asset/js/vendor/flatpickr/l10n/uk.js @@ -0,0 +1,66 @@ +(function (global, factory) { + typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : + typeof define === 'function' && define.icinga ? define(["exports"], factory) : + (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.uk = {})); +}(this, (function (exports) { 'use strict'; + + var fp = typeof window !== "undefined" && window.flatpickr !== undefined + ? window.flatpickr + : { + l10ns: {}, + }; + var Ukrainian = { + firstDayOfWeek: 1, + weekdays: { + shorthand: ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб"], + longhand: [ + "Неділя", + "Понеділок", + "Вівторок", + "Середа", + "Четвер", + "П'ятниця", + "Субота", + ], + }, + months: { + shorthand: [ + "Січ", + "Лют", + "Бер", + "Кві", + "Тра", + "Чер", + "Лип", + "Сер", + "Вер", + "Жов", + "Лис", + "Гру", + ], + longhand: [ + "Січень", + "Лютий", + "Березень", + "Квітень", + "Травень", + "Червень", + "Липень", + "Серпень", + "Вересень", + "Жовтень", + "Листопад", + "Грудень", + ], + }, + time_24hr: true, + }; + fp.l10ns.uk = Ukrainian; + var uk = fp.l10ns; + + exports.Ukrainian = Ukrainian; + exports.default = uk; + + Object.defineProperty(exports, '__esModule', { value: true }); + +}))); diff --git a/asset/js/widget/BaseInput.js b/asset/js/widget/BaseInput.js new file mode 100644 index 00000000..0a05580d --- /dev/null +++ b/asset/js/widget/BaseInput.js @@ -0,0 +1,899 @@ +define(["../notjQuery", "Completer"], function ($, Completer) { + + "use strict"; + + class BaseInput { + constructor(input) { + this.input = input; + this.disabled = false; + this.separator = ''; + this.usedTerms = []; + this.completer = null; + this.lastCompletedTerm = null; + this._dataInput = null; + this._termInput = null; + this._termContainer = null; + } + + get dataInput() { + if (this._dataInput === null) { + this._dataInput = document.querySelector(this.input.dataset.dataInput); + } + + return this._dataInput; + } + + get termInput() { + if (this._termInput === null) { + this._termInput = document.querySelector(this.input.dataset.termInput); + } + + return this._termInput; + } + + get termContainer() { + if (this._termContainer === null) { + this._termContainer = document.querySelector(this.input.dataset.termContainer); + } + + return this._termContainer; + } + + bind() { + // Form submissions + $(this.input.form).on('submit', this.onSubmit, this); + $(this.input.form).on( + 'click', 'button:not([type]), button[type="submit"], input[type="submit"]', this.onButtonClick, this); + + // User interactions + $(this.input).on('input', this.onInput, this); + $(this.input).on('keydown', this.onKeyDown, this); + $(this.input).on('keyup', this.onKeyUp, this); + $(this.input).on('blur', this.onInputBlur, this); + $(this.input).on('focusin', this.onTermFocus, this); + $(this.termContainer).on('input', '[data-label]', this.onInput, this); + $(this.termContainer).on('keydown', '[data-label]', this.onKeyDown, this); + $(this.termContainer).on('keyup', '[data-label]', this.onKeyUp, this); + $(this.termContainer).on('focusout', '[data-index]', this.onTermFocusOut, this); + $(this.termContainer).on('focusin', '[data-index]', this.onTermFocus, this); + + // Copy/Paste + $(this.input).on('paste', this.onPaste, this); + $(this.input).on('copy', this.onCopyAndCut, this); + $(this.input).on('cut', this.onCopyAndCut, this); + + // Should terms be completed? + if (this.input.dataset.suggestUrl) { + if (this.completer === null) { + this.completer = new Completer(this.input, true); + this.completer.bind(this.termContainer); + } + + $(this.input).on('suggestion', this.onSuggestion, this); + $(this.input).on('completion', this.onCompletion, this); + $(this.termContainer).on('suggestion', '[data-label]', this.onSuggestion, this); + $(this.termContainer).on('completion', '[data-label]', this.onCompletion, this); + } + + return this; + } + + refresh(input) { + if (input === this.input) { + // If the DOM node is still the same, nothing has changed + return; + } + + this._termInput = null; + this._termContainer = null; + + this.input = input; + this.bind(); + + if (this.completer !== null) { + this.completer.refresh(input, this.termContainer); + } + + if (! this.restoreTerms()) { + this.reset(); + } + } + + reset() { + this.usedTerms = []; + this.lastCompletedTerm = null; + + this.togglePlaceholder(); + this.termInput.value = ''; + this.termContainer.innerHTML = ''; + } + + destroy() { + this._termContainer = null; + this._termInput = null; + this.input = null; + + if (this.completer !== null) { + this.completer.destroy(); + this.completer = null; + } + } + + disable() { + this.disabled = true; + this.input.disabled = true; + this.input.form.classList.add('disabled'); + this.termContainer.querySelectorAll('[data-index]').forEach(el => el.firstChild.disabled = true); + + if (this.completer !== null) { + this.completer.reset(); + } + } + + enable() { + this.input.disabled = false; + this.input.form.classList.remove('disabled'); + this.termContainer.querySelectorAll('[data-index]').forEach(el => el.firstChild.disabled = false); + this.disabled = false; + } + + restoreTerms() { + if (this.hasTerms()) { + this.usedTerms.forEach((termData, termIndex) => this.addTerm(termData, termIndex)); + this.togglePlaceholder(); + this.clearPartialTerm(this.input); + } else { + this.registerTerms(); + this.togglePlaceholder(); + } + + return this.hasTerms(); + } + + registerTerms() { + this.termContainer.querySelectorAll('[data-index]').forEach((label) => { + let termData = { ...label.dataset }; + delete termData.index; + + if (label.className) { + termData['class'] = label.className; + } + + if (label.title) { + termData['title'] = label.title; + } + + this.registerTerm(this.decodeTerm(termData), label.dataset.index); + }); + } + + registerTerm(termData, termIndex = null) { + if (termIndex !== null) { + this.usedTerms.splice(termIndex, 0, termData); + return termIndex; + } else { + return this.usedTerms.push(termData) - 1; + } + } + + updateTerms(changedTerms) { + // Reset the data input, otherwise the value remains and is sent continuously with subsequent requests + this.dataInput.value = ''; + + for (const termIndex of Object.keys(changedTerms)) { + let label = this.termContainer.querySelector(`[data-index="${ termIndex }"]`); + if (! label) { + continue; + } + + let input = label.firstChild; + let termData = changedTerms[termIndex]; + + if (termData.label) { + this.writePartialTerm(termData.label, input); + } + + this.updateTermData(termData, input); + this.usedTerms[termIndex] = termData; + } + } + + clearPartialTerm(input) { + if (this.completer !== null) { + this.completer.reset(); + } + + this.writePartialTerm('', input); + } + + writePartialTerm(value, input) { + input.value = value; + this.updateTermData({ label: value }, input); + } + + readPartialTerm(input) { + return input.value.trim(); + } + + readFullTerm(input, termIndex = null) { + let value = this.readPartialTerm(input); + if (! value) { + return false; + } + + let termData = {}; + + if (termIndex !== null) { + termData = { ...this.usedTerms[termIndex] }; + } + + termData.label = value; + termData.search = value; + + if (this.lastCompletedTerm !== null) { + if (termData.label === this.lastCompletedTerm.label) { + Object.assign(termData, this.lastCompletedTerm); + } + + this.lastCompletedTerm = null; + } + + return termData; + } + + exchangeTerm() { + if (this.completer !== null) { + this.completer.reset(); + } + + let termData = this.readFullTerm(this.input); + if (! termData) { + return {}; + } + + let addedTerms = {}; + if (Array.isArray(termData)) { + for (let data of termData) { + this.addTerm(data); + addedTerms[this.usedTerms.length - 1] = data; + } + } else { + this.addTerm(termData); + addedTerms[this.usedTerms.length - 1] = termData; + } + + this.clearPartialTerm(this.input); + + return addedTerms; + } + + insertTerm(termData, termIndex) { + this.reIndexTerms(termIndex, 1, true); + this.registerTerm(termData, termIndex); + return this.insertRenderedTerm(this.renderTerm(termData, termIndex)); + } + + insertRenderedTerm(label) { + let next = this.termContainer.querySelector(`[data-index="${ label.dataset.index + 1 }"]`); + this.termContainer.insertBefore(label, next); + return label; + } + + addTerm(termData, termIndex = null) { + if (termIndex === null) { + termIndex = this.registerTerm(termData); + } + + this.addRenderedTerm(this.renderTerm(termData, termIndex)); + } + + addRenderedTerm(label) { + this.termContainer.appendChild(label); + } + + hasTerms() { + return this.usedTerms.length > 0; + } + + hasSyntaxError(input) { + if (typeof input === 'undefined') { + input = this.input; + } + + return 'hasSyntaxError' in input.dataset; + } + + clearSyntaxError(input) { + if (typeof input === 'undefined') { + input = this.input; + } + + delete input.dataset.hasSyntaxError; + input.removeAttribute('pattern'); + input.removeAttribute('title'); + } + + getQueryString() { + return this.termsToQueryString(this.usedTerms); + } + + saveTerm(input, updateDOM = true, force = false) { + let termIndex = input.parentNode.dataset.index; + let termData = this.readFullTerm(input, termIndex); + + // Only save if something has changed, unless forced + if (termData === false) { + console.warn('[BaseInput] Input is empty, cannot save'); + } else if (force || this.usedTerms[termIndex].label !== termData.label) { + let oldTermData = this.usedTerms[termIndex]; + this.usedTerms[termIndex] = termData; + this.updateTermData(termData, input); + + return oldTermData; + } + + return false; + } + + updateTermData(termData, input) { + let label = input.parentNode; + label.dataset.label = termData.label; + + if (!! termData.search || termData.search === '') { + label.dataset.search = termData.search; + } + + if (!! termData.title) { + label.title = termData.title; + } else { + label.title = ''; + } + } + + termsToQueryString(terms) { + return terms.map(e => this.encodeTerm(e).search).join(this.separator).trim(); + } + + lastTerm() { + if (! this.hasTerms()) { + return null; + } + + return this.usedTerms[this.usedTerms.length - 1]; + } + + popTerm() { + let lastTermIndex = this.usedTerms.length - 1; + return this.removeTerm(this.termContainer.querySelector(`[data-index="${ lastTermIndex }"]`)); + } + + removeTerm(label, updateDOM = true) { + if (this.completer !== null) { + this.completer.reset(); + } + + let termIndex = Number(label.dataset.index); + + // Re-index following remaining terms + this.reIndexTerms(termIndex); + + // Cut the term's data + let [termData] = this.usedTerms.splice(termIndex, 1); + + // Avoid saving the term, it's removed after all + label.firstChild.skipSaveOnBlur = true; + + if (updateDOM) { + // Remove it from the DOM + this.removeRenderedTerm(label); + } + + return termData; + } + + removeRenderedTerm(label) { + label.remove(); + } + + removeRange(labels) { + let from = Number(labels[0].dataset.index); + let to = Number(labels[labels.length - 1].dataset.index); + let deleteCount = to - from + 1; + + if (to < this.usedTerms.length - 1) { + // Only re-index if there's something left + this.reIndexTerms(to, deleteCount); + } + + let removedData = this.usedTerms.splice(from, deleteCount); + + this.removeRenderedRange(labels); + + let removedTerms = {}; + for (let i = from; removedData.length; i++) { + removedTerms[i] = removedData.shift(); + } + + return removedTerms; + } + + removeRenderedRange(labels) { + labels.forEach(label => this.removeRenderedTerm(label)); + } + + reIndexTerms(from, howMuch = 1, forward = false) { + if (forward) { + for (let i = this.usedTerms.length - 1; i >= from; i--) { + let label = this.termContainer.querySelector(`[data-index="${ i }"]`); + label.dataset.index = `${ i + howMuch }`; + } + } else { + for (let i = ++from; i < this.usedTerms.length; i++) { + let label = this.termContainer.querySelector(`[data-index="${ i }"]`); + label.dataset.index = `${ i - howMuch }`; + } + } + } + + complete(input, data) { + if (this.completer !== null) { + $(input).trigger('complete', data); + } + } + + selectTerms() { + this.termContainer.querySelectorAll('[data-index]').forEach(el => el.classList.add('selected')); + } + + deselectTerms() { + this.termContainer.querySelectorAll('.selected').forEach(el => el.classList.remove('selected')); + } + + clearSelectedTerms() { + if (this.hasTerms()) { + let labels = this.termContainer.querySelectorAll('.selected'); + if (labels.length) { + return this.removeRange(Array.from(labels)); + } + } + + return {}; + } + + togglePlaceholder() { + let placeholder = ''; + + if (! this.hasTerms()) { + if (this.input.dataset.placeholder) { + placeholder = this.input.dataset.placeholder; + } else { + return; + } + } else if (this.input.placeholder) { + if (! this.input.dataset.placeholder) { + this.input.dataset.placeholder = this.input.placeholder; + } + } + + this.input.placeholder = placeholder; + } + + renderTerm(termData, termIndex) { + let label = $.render(''); + + if (termData.class) { + label.classList.add(termData.class); + } + + if (termData.title) { + label.title = termData.title; + } + + label.dataset.label = termData.label; + label.dataset.search = termData.search; + label.dataset.index = termIndex; + + label.firstChild.value = termData.label; + + return label; + } + + encodeTerm(termData) { + termData = { ...termData }; + termData.search = encodeURIComponent(termData.search); + + return termData; + } + + decodeTerm(termData) { + termData.search = decodeURIComponent(termData.search); + + return termData; + } + + shouldNotAutoSubmit() { + return 'noAutoSubmit' in this.input.dataset; + } + + autoSubmit(input, changeType, changedTerms) { + if (this.shouldNotAutoSubmit()) { + return; + } + + if (changeType === 'save') { + // Replace old term data with the new one, as required by the backend + for (const termIndex of Object.keys(changedTerms)) { + changedTerms[termIndex] = this.usedTerms[termIndex]; + } + } + + this.dataInput.value = JSON.stringify({ + type: changeType, + terms: changedTerms + }); + + if (Object.keys(changedTerms).length) { + $(this.input.form).trigger('submit', { submittedBy: input }); + } + } + + submitTerms(terms) { + $(this.input.form).trigger( + 'submit', + { terms: terms } + ); + } + + moveFocusForward(from = null) { + let toFocus; + + let inputs = Array.from(this.termContainer.querySelectorAll('input')); + if (from === null) { + let focused = this.termContainer.querySelector('input:focus'); + from = inputs.indexOf(focused); + } + + if (from === -1) { + toFocus = inputs.shift(); + } else if (from + 1 < inputs.length) { + toFocus = inputs[from + 1]; + } else { + toFocus = this.input; + } + + toFocus.selectionStart = toFocus.selectionEnd = 0; + $(toFocus).focus(); + + return toFocus; + } + + moveFocusBackward(from = null) { + let toFocus; + + let inputs = Array.from(this.termContainer.querySelectorAll('input')); + if (from === null) { + let focused = this.termContainer.querySelector('input:focus'); + from = inputs.indexOf(focused); + } + + if (from === -1) { + toFocus = inputs.pop(); + } else if (from > 0 && from - 1 < inputs.length) { + toFocus = inputs[from - 1]; + } else { + toFocus = this.input; + } + + toFocus.selectionStart = toFocus.selectionEnd = toFocus.value.length; + $(toFocus).focus(); + + return toFocus; + } + + /** + * Event listeners + */ + + onSubmit(event) { + // Unset the input's name, to prevent its submission (It may actually have a name, as no-js fallback) + this.input.name = ''; + + // Set the hidden input's value, it's what's sent + if (event.detail && 'terms' in event.detail) { + this.termInput.value = event.detail.terms; + } else { + let renderedTerms = this.termsToQueryString(this.usedTerms); + if (this.hasSyntaxError()) { + renderedTerms += this.input.value; + } + + this.termInput.value = renderedTerms; + } + + // Enable the hidden input, otherwise it's not submitted + this.termInput.disabled = false; + } + + onSuggestion(event) { + let data = event.detail; + let input = event.target; + + let termData; + if (typeof data === 'object') { + termData = data; + } else { + termData = { label: data, search: data }; + } + + this.lastCompletedTerm = termData; + this.writePartialTerm(termData.label, input); + } + + onCompletion(event) { + let input = event.target; + let termData = event.detail; + let termIndex = Number(input.parentNode.dataset.index); + + this.lastCompletedTerm = termData; + this.writePartialTerm(termData.label, input); + + if (termIndex >= 0) { + this.autoSubmit(input, 'save', { [termIndex]: this.saveTerm(input, false, true) }); + } else { + this.autoSubmit(input, 'exchange', this.exchangeTerm()); + this.togglePlaceholder(); + } + } + + onInput(event) { + let input = event.target; + let isTerm = input.parentNode.dataset.index >= 0; + + let termData = { label: this.readPartialTerm(input) }; + this.updateTermData(termData, input); + + if (! input.value && this.hasSyntaxError(input)) { + this.clearSyntaxError(input); + } + + if (! this.hasSyntaxError(input)) { + this.complete(input, { term: termData }); + } + + if (! isTerm) { + this.autoSubmit(this.input, 'remove', this.clearSelectedTerms()); + this.togglePlaceholder(); + } + } + + onKeyDown(event) { + let input = event.target; + let termIndex = Number(input.parentNode.dataset.index); + + if (this.hasSyntaxError(input) && ! (/[A-Z]/.test(event.key.charAt(0)) || event.ctrlKey || event.metaKey)) { + // Clear syntax error flag if the user types entirely new input after having selected the entire input + // (This way the input isn't empty but switches from input to input immediately, causing the clearing + // in onInput to not work) + if (input.selectionEnd - input.selectionStart === input.value.length) { + this.clearSyntaxError(input); + } + } + + let removedTerms; + switch (event.key) { + case ' ': + if (! this.readPartialTerm(input)) { + this.complete(input, { term: { label: '' } }); + event.preventDefault(); + } + break; + case 'Backspace': + removedTerms = this.clearSelectedTerms(); + + if (termIndex >= 0 && ! input.value) { + let removedTerm = this.removeTerm(input.parentNode); + if (removedTerm !== false) { + input = this.moveFocusBackward(termIndex); + if (event.ctrlKey || event.metaKey) { + this.clearPartialTerm(input); + } else { + this.writePartialTerm(input.value.slice(0, -1), input); + } + + removedTerms[termIndex] = removedTerm; + event.preventDefault(); + } + } else if (isNaN(termIndex)) { + if (! input.value && this.hasTerms()) { + let termData = this.popTerm(); + if (! event.ctrlKey && ! event.metaKey) { + // Removing the last char programmatically is not + // necessary since the browser default is not prevented + this.writePartialTerm(termData.label, input); + } + + removedTerms[this.usedTerms.length] = termData; + } + } + + this.togglePlaceholder(); + this.autoSubmit(input, 'remove', removedTerms); + break; + case 'Delete': + removedTerms = this.clearSelectedTerms(); + + if (termIndex >= 0 && ! input.value) { + let removedTerm = this.removeTerm(input.parentNode); + if (removedTerm !== false) { + input = this.moveFocusForward(termIndex - 1); + if (event.ctrlKey || event.metaKey) { + this.clearPartialTerm(input); + } else { + this.writePartialTerm(input.value.slice(1), input); + } + + removedTerms[termIndex] = removedTerm; + event.preventDefault(); + } + } + + this.togglePlaceholder(); + this.autoSubmit(input, 'remove', removedTerms); + break; + case 'Enter': + if (termIndex >= 0) { + if (this.readPartialTerm(input)) { + this.saveTerm(input, false); + } else { + this.removeTerm(input.parentNode, false); + } + } + break; + case 'ArrowLeft': + if (input.selectionStart === 0 && this.hasTerms()) { + event.preventDefault(); + this.moveFocusBackward(); + } + break; + case 'ArrowRight': + if (input.selectionStart === input.value.length && this.hasTerms()) { + event.preventDefault(); + this.moveFocusForward(); + } + break; + case 'a': + if ((event.ctrlKey || event.metaKey) && ! this.readPartialTerm(input)) { + this.selectTerms(); + } + } + } + + onKeyUp(event) { + if (event.target.parentNode.dataset.index >= 0) { + return; + } + + switch (event.key) { + case 'End': + case 'ArrowLeft': + case 'ArrowRight': + this.deselectTerms(); + break; + case 'Home': + if (this.input.selectionStart === 0 && this.input.selectionEnd === 0) { + if (event.shiftKey) { + this.selectTerms(); + } else { + this.deselectTerms(); + } + } + + break; + case 'Delete': + this.autoSubmit(event.target, 'remove', this.clearSelectedTerms()); + this.togglePlaceholder(); + break; + } + } + + onInputBlur() { + this.deselectTerms(); + } + + onTermFocusOut(event) { + let input = event.target; + if (this.hasSyntaxError(input)) { + return; + } + + // skipSaveOnBlur is set if the input is about to be removed anyway. + // If we remove the input as well, the other removal will fail without + // any chance to handle it. (Element.remove() blurs the input) + if (typeof input.skipSaveOnBlur === 'undefined' || ! input.skipSaveOnBlur) { + setTimeout(() => { + if (this.completer === null || ! this.completer.isBeingCompleted(input)) { + let termIndex = Number(input.parentNode.dataset.index); + if (this.readPartialTerm(input)) { + let previousTerm = this.saveTerm(input); + if (previousTerm !== false) { + this.autoSubmit(input, 'save', { [termIndex]: previousTerm }); + } + } else { + this.autoSubmit(input, 'remove', { [termIndex]: this.removeTerm(input.parentNode) }); + } + } + }, 0); + } + } + + onTermFocus(event) { + if (event.detail.scripted) { + // Only request suggestions if the user manually focuses the term + return; + } + + this.deselectTerms(); + + let input = event.target; + if (! this.hasSyntaxError(input) && ! this.completer.isBeingCompleted(input, false)) { + // Only request suggestions if the input is valid and not already being completed + let value = this.readPartialTerm(input); + this.complete(input, { trigger: 'script', term: { label: value } }); + } + } + + onButtonClick(event) { + if (! this.hasSyntaxError()) { + // Register current input value, otherwise it's not included + this.exchangeTerm(); + } + + if (this.hasTerms()) { + this.input.required = false; + + // This is not part of `onSubmit()` because otherwise it would override what `autoSubmit()` does + this.dataInput.value = JSON.stringify({ type: 'submit', terms: this.usedTerms }); + } else if (typeof this.input.dataset.manageRequired !== 'undefined') { + this.input.required = true; + } + } + + onPaste(event) { + if (this.hasTerms() || this.input.value) { + return; + } + + this.submitTerms(event.clipboardData.getData('text/plain')); + + event.preventDefault(); + } + + onCopyAndCut(event) { + if (! this.hasTerms()) { + return; + } + + let data = ''; + + let selectedTerms = this.termContainer.querySelectorAll('.selected'); + if (selectedTerms.length) { + data = Array.from(selectedTerms).map(label => label.dataset.search).join(this.separator); + } + + if (this.input.selectionStart < this.input.selectionEnd) { + data += this.separator + this.input.value.slice(this.input.selectionStart, this.input.selectionEnd); + } + + event.clipboardData.setData('text/plain', data); + event.preventDefault(); + + if (event.type === 'cut') { + this.clearPartialTerm(this.input); + this.autoSubmit(this.input, 'remove', this.clearSelectedTerms()); + this.togglePlaceholder(); + } + } + } + + return BaseInput; +}); diff --git a/asset/js/widget/Completer.js b/asset/js/widget/Completer.js new file mode 100644 index 00000000..09f59bd6 --- /dev/null +++ b/asset/js/widget/Completer.js @@ -0,0 +1,523 @@ +define(["../notjQuery"], function ($) { + + "use strict"; + + class Completer { + constructor(input, instrumented = false) { + this.input = input; + this.instrumented = instrumented; + this.nextSuggestion = null; + this.activeSuggestion = null; + this.suggestionKiller = null; + this.completedInput = null; + this.completedValue = null; + this.completedData = null; + this._termSuggestions = null; + } + + get termSuggestions() { + if (this._termSuggestions === null) { + this._termSuggestions = document.querySelector(this.input.dataset.termSuggestions); + } + + return this._termSuggestions; + } + + bind(to = null) { + // Form submissions + $(this.input.form).on('submit', this.onSubmit, this); + + // User interactions + $(this.termSuggestions).on('focusout', '[type="button"]', this.onFocusOut, this); + $(this.termSuggestions).on('click', '[type="button"]', this.onSuggestionClick, this); + $(this.termSuggestions).on('keydown', '[type="button"]', this.onSuggestionKeyDown, this); + + if (this.instrumented) { + if (to !== null) { + $(to).on('focusout', 'input[type="text"]', this.onFocusOut, this); + $(to).on('keydown', 'input[type="text"]', this.onKeyDown, this); + $(to).on('complete', 'input[type="text"]', this.onComplete, this); + } + + $(this.input).on('complete', this.onComplete, this); + } else { + $(this.input).on('input', this.onInput, this); + } + + $(this.input).on('focusout', this.onFocusOut, this); + $(this.input).on('keydown', this.onKeyDown, this); + + return this; + } + + refresh(input, bindTo = null) { + if (input === this.input) { + // If the DOM node is still the same, nothing has changed + return; + } + + this._termSuggestions = null; + this.abort(); + + this.input = input; + this.bind(bindTo); + } + + reset() { + this.abort(); + this.hideSuggestions(); + } + + destroy() { + this._termSuggestions = null; + this.input = null; + } + + renderSuggestions(html) { + let template = document.createElement('template'); + template.innerHTML = html; + + return template.content; + } + + showSuggestions(suggestions, input) { + this.termSuggestions.innerHTML = ''; + this.termSuggestions.appendChild(suggestions); + this.termSuggestions.style.display = ''; + + let containingBlock = this.termSuggestions.offsetParent || document.body; + let containingBlockRect = containingBlock.getBoundingClientRect(); + let inputRect = input.getBoundingClientRect(); + let inputPosX = inputRect.left - containingBlockRect.left; + let inputPosY = inputRect.bottom - containingBlockRect.top; + let suggestionWidth = this.termSuggestions.offsetWidth; + + let maxAvailableHeight = document.body.clientHeight - inputRect.bottom; + let localMarginBottom = window.getComputedStyle(this.termSuggestions).marginBottom; + + this.termSuggestions.style.top = `${ inputPosY }px`; + this.termSuggestions.style.maxHeight = `calc(${maxAvailableHeight}px - ${localMarginBottom})`; + if (inputPosX + suggestionWidth > containingBlockRect.right - containingBlockRect.left) { + this.termSuggestions.style.left = + `${ containingBlockRect.right - containingBlockRect.left - suggestionWidth }px`; + } else { + this.termSuggestions.style.left = `${ inputPosX }px`; + } + } + + hasSuggestions() { + return this.termSuggestions.childNodes.length > 0; + } + + hideSuggestions() { + if (this.nextSuggestion !== null || this.activeSuggestion !== null) { + return; + } + + if (this.suggestionKiller !== null) { + // onFocusOut initiates this timer in order to hide the suggestions if the user + // doesn't navigate them. Since it does this by checking after a short interval + // if the focus is inside the suggestions, the interval has to be long enough to + // have a chance to detect the focus. `focusout` runs before `blur` and `focus`, + // so this may lead to a race condition which is addressed by the timeout. Though, + // to not close the newly opened suggestions of the next input the timer has to + // be cancelled here since it's purpose is already fulfilled. + clearTimeout(this.suggestionKiller); + this.suggestionKiller = null; + } + + this.termSuggestions.style.display = 'none'; + this.termSuggestions.innerHTML = ''; + + this.completedInput = null; + this.completedValue = null; + this.completedData = null; + } + + prepareCompletionData(input, data = null) { + if (data === null) { + data = { term: { ...input.dataset } }; + data.term.label = input.value; + } + + let value = data.term.label; + data.term.search = value; + data.term.label = this.addWildcards(value); + + if (input.parentElement instanceof HTMLFieldSetElement) { + for (let element of input.parentElement.elements) { + if (element !== input + && element.name !== input.name + '-search' + && (element.name.substr(-7) === '-search' + || typeof input.form[element.name + '-search'] === 'undefined') + ) { + // Make sure we'll use a key that the server can understand.. + let dataName = element.name; + if (dataName.substr(-7) === '-search') { + dataName = dataName.substr(0, dataName.length - 7); + } + if (dataName.substr(0, input.parentElement.name.length) === input.parentElement.name) { + dataName = dataName.substr(input.parentElement.name.length); + } + + if (! dataName in data || element.value) { + data[dataName] = element.value; + } + } + } + } + + return [value, data]; + } + + addWildcards(value) { + if (! value) { + return '*'; + } + + if (value.slice(0, 1) !== '*' && value.slice(-1) !== '*') { + return '*' + value + '*'; + } + + return value; + } + + abort() { + if (this.activeSuggestion !== null) { + this.activeSuggestion.abort(); + this.activeSuggestion = null; + } + + if (this.nextSuggestion !== null) { + clearTimeout(this.nextSuggestion); + this.nextSuggestion = null; + } + } + + requestCompletion(input, data, trigger = 'user') { + this.abort(); + + this.nextSuggestion = setTimeout(() => { + let req = new XMLHttpRequest(); + req.open('POST', this.input.dataset.suggestUrl, true); + req.setRequestHeader('Content-Type', 'application/json'); + + if (typeof icinga !== 'undefined') { + let windowId = icinga.ui.getWindowId(); + let containerId = icinga.ui.getUniqueContainerId(this.termSuggestions); + if (containerId) { + req.setRequestHeader('X-Icinga-WindowId', windowId + '_' + containerId); + } else { + req.setRequestHeader('X-Icinga-WindowId', windowId); + } + } + + req.addEventListener('loadend', () => { + if (req.readyState > 0) { + if (req.responseText) { + let suggestions = this.renderSuggestions(req.responseText); + if (trigger === 'script') { + // If the suggestions are to be displayed due to a scripted event, + // show them only if the completed input is still focused.. + if (document.activeElement === input) { + this.showSuggestions(suggestions, input); + } + } else { + this.showSuggestions(suggestions, input); + } + } else { + this.hideSuggestions(); + } + } + + this.activeSuggestion = null; + this.nextSuggestion = null; + }); + + req.send(JSON.stringify(data)); + + this.activeSuggestion = req; + }, 200); + } + + suggest(input, value, data = {}) { + if (this.instrumented) { + if (! Object.keys(data).length) { + data = value; + } + + $(input).trigger('suggestion', data); + } else { + input.value = value; + } + } + + complete(input, value, data) { + $(input).focus({ scripted: true }); + + if (this.instrumented) { + if (! Object.keys(data).length) { + data = value; + } + + $(input).trigger('completion', data); + } else { + input.value = value; + + for (let name in data) { + let dataElement = input.form[input.name + '-' + name]; + if (typeof dataElement !== 'undefined') { + if (dataElement instanceof RadioNodeList) { + dataElement = dataElement[dataElement.length - 1]; + } + + dataElement.value = data[name]; + } else if (name === 'title') { + input.title = data[name]; + } + } + } + + this.hideSuggestions(); + } + + moveToSuggestion(backwards = false) { + let focused = this.termSuggestions.querySelector('[type="button"]:focus'); + let inputs = Array.from(this.termSuggestions.querySelectorAll('[type="button"]')); + + let input; + if (focused !== null) { + let sibling = inputs[backwards ? inputs.indexOf(focused) - 1 : inputs.indexOf(focused) + 1]; + if (sibling) { + input = sibling; + } else { + input = this.completedInput; + } + } else { + input = inputs[backwards ? inputs.length - 1 : 0]; + } + + $(input).focus(); + + if (this.completedValue !== null) { + if (input === this.completedInput) { + this.suggest(this.completedInput, this.completedValue); + } else { + this.suggest(this.completedInput, input.value, { ...input.dataset }); + } + } + + return input; + } + + isBeingCompleted(input, activeElement = null) { + if (activeElement === null) { + activeElement = document.activeElement; + } + + return input === this.completedInput && ( + (! activeElement && this.hasSuggestions()) + || (activeElement && this.termSuggestions.contains(activeElement)) + ); + } + + /** + * Event listeners + */ + + onSubmit(event) { + // Reset all states, the user is about to navigate away + this.reset(); + } + + onFocusOut(event) { + if (this.completedInput === null) { + // If there are multiple instances of Completer bound to the same suggestion container + // all of them try to handle the event. Though, only one of them is responsible and + // that's the one which has a completed input set. + return; + } + + let input = event.target; + let completedInput = this.completedInput; + this.suggestionKiller = setTimeout(() => { + if (completedInput !== this.completedInput) { + // Don't hide another input's suggestions + } else if (document.activeElement !== completedInput + && ! this.termSuggestions.contains(document.activeElement) + ) { + // Hide the suggestions if the user doesn't navigate them + if (input !== completedInput) { + // Restore input if a suggestion lost focus + this.suggest(completedInput, this.completedValue); + } + + this.hideSuggestions(); + } + }, 250); + } + + onSuggestionKeyDown(event) { + if (this.completedInput === null) { + return; + } + + switch (event.key) { + case 'Escape': + $(this.completedInput).focus({ scripted: true }); + this.suggest(this.completedInput, this.completedValue); + break; + case 'Tab': + event.preventDefault(); + this.moveToSuggestion(event.shiftKey); + break; + case 'ArrowLeft': + case 'ArrowUp': + event.preventDefault(); + this.moveToSuggestion(true); + break; + case 'ArrowRight': + case 'ArrowDown': + event.preventDefault(); + this.moveToSuggestion(); + break; + } + } + + onSuggestionClick(event) { + if (this.completedInput === null) { + return; + } + + let input = event.currentTarget; + + this.complete(this.completedInput, input.value, { ...input.dataset }); + } + + onKeyDown(event) { + let suggestions; + + switch (event.key) { + case ' ': + if (this.instrumented) { + break; + } + + let input = event.target; + + if (! input.value) { + if (input.minLength <= 0) { + let [value, data] = this.prepareCompletionData(input); + this.completedInput = input; + this.completedValue = value; + this.completedData = data; + this.requestCompletion(input, data); + } + + event.preventDefault(); + } + + break; + case 'Tab': + suggestions = this.termSuggestions.querySelectorAll('[type="button"]'); + if (suggestions.length === 1) { + event.preventDefault(); + let input = event.target; + let suggestion = suggestions[0]; + + this.complete(input, suggestion.value, { ...suggestion.dataset }); + } + + break; + case 'Enter': + let defaultSuggestion = this.termSuggestions.querySelector('.default > [type="button"]'); + if (defaultSuggestion !== null) { + event.preventDefault(); + let input = event.target; + + this.complete(input, defaultSuggestion.value, { ...defaultSuggestion.dataset }); + } + + break; + case 'Escape': + if (this.hasSuggestions()) { + this.hideSuggestions() + event.preventDefault(); + } + + break; + case 'ArrowUp': + suggestions = this.termSuggestions.querySelectorAll('[type="button"]'); + if (suggestions.length) { + event.preventDefault(); + this.moveToSuggestion(true); + } + + break; + case 'ArrowDown': + suggestions = this.termSuggestions.querySelectorAll('[type="button"]'); + if (suggestions.length) { + event.preventDefault(); + this.moveToSuggestion(); + } + + break; + default: + if (/[A-Z]/.test(event.key.charAt(0)) || event.key === '"') { + // Ignore control keys not resulting in new input data + break; + } + + let typedSuggestion = this.termSuggestions.querySelector(`[value="${ event.key }"]`); + if (typedSuggestion !== null) { + this.hideSuggestions(); + } + } + } + + onInput(event) { + let input = event.target; + + if (input.minLength > 0 && input.value.length < input.minLength) { + return; + } + + // Set the input's value as search value. This ensures that if the user doesn't + // choose a suggestion, an up2date contextual value will be transmitted with + // completion requests and the server can properly identify a new value upon submit + input.dataset.search = input.value; + if (typeof input.form[input.name + '-search'] !== 'undefined') { + let dataElement = input.form[input.name + '-search']; + if (dataElement instanceof RadioNodeList) { + dataElement = dataElement[dataElement.length - 1]; + } + + dataElement.value = input.value; + } + + let [value, data] = this.prepareCompletionData(input); + this.completedInput = input; + this.completedValue = value; + this.completedData = data; + this.requestCompletion(input, data); + } + + onComplete(event) { + let input = event.target; + let { trigger = 'user' , ...detail } = event.detail; + + let [value, data] = this.prepareCompletionData(input, detail); + this.completedInput = input; + this.completedValue = value; + this.completedData = data; + + if (typeof data.suggestions !== 'undefined') { + this.showSuggestions(data.suggestions, input); + } else { + this.requestCompletion(input, data, trigger); + } + } + } + + return Completer; +}); diff --git a/asset/js/widget/FilterInput.js b/asset/js/widget/FilterInput.js new file mode 100644 index 00000000..97a35778 --- /dev/null +++ b/asset/js/widget/FilterInput.js @@ -0,0 +1,1557 @@ +define(["../notjQuery", "BaseInput"], function ($, BaseInput) { + + "use strict"; + + class FilterInput extends BaseInput { + constructor(input) { + super(input); + + this.termType = 'column'; + + /** + * The negation operator + * + * @type {{}} + */ + this.negationOperator = { label: '!', search: '!', class: 'logical_operator', type: 'negation_operator' }; + + /** + * Supported grouping operators + * + * @type {{close: {}, open: {}}} + */ + this.grouping_operators = { + open: { label: '(', search: '(', class: 'grouping_operator_open', type: 'grouping_operator' }, + close: { label: ')', search: ')', class: 'grouping_operator_close', type: 'grouping_operator' } + }; + + /** + * Supported logical operators + * + * The first is also the default. + * + * @type {{}[]} + */ + this.logical_operators = [ + { label: '&', search: '&', class: 'logical_operator', type: 'logical_operator', default: true }, + { label: '|', search: '|', class: 'logical_operator', type: 'logical_operator' }, + ]; + + /** + * Supported relational operators + * + * The first is also the default. + * + * @type {{}[]} + */ + this.relational_operators = [ + { label: '=', search: '=', class: 'operator', type: 'operator', default: true }, + { label: '!=', search: '!=', class: 'operator', type: 'operator' }, + { label: '>', search: '>', class: 'operator', type: 'operator' }, + { label: '<', search: '<', class: 'operator', type: 'operator' }, + { label: '>=', search: '>=', class: 'operator', type: 'operator' }, + { label: '<=', search: '<=', class: 'operator', type: 'operator' } + ]; + } + + bind() { + $(this.termContainer).on('click', '[data-group-type="condition"] > button', this.onRemoveCondition, this); + $(this.termContainer).on('click', '[data-index]', this.onTermClick, this); + $(this.termContainer).on('mouseover', '[data-index]', this.onTermHover, this); + $(this.termContainer).on('mouseout', '[data-index]', this.onTermLeave, this); + return super.bind(); + } + + reset() { + super.reset(); + + this.termType = 'column'; + } + + restoreTerms() { + if (super.restoreTerms()) { + this.reportValidity(this.input.form); + return true; + } + + return false; + } + + registerTerms() { + super.registerTerms(); + + if (this.hasTerms()) { + this.termType = this.nextTermType(this.lastTerm()); + } + } + + registerTerm(termData, termIndex = null) { + termIndex = super.registerTerm(termData, termIndex); + + if (termData.type === 'grouping_operator' && typeof termData.counterpart === 'undefined') { + let counterpart; + if (this.isGroupOpen(termData)) { + counterpart = this.nextPendingGroupClose(termIndex); + } else { + counterpart = this.lastPendingGroupOpen(termIndex); + } + + if (counterpart !== null) { + termData.counterpart = counterpart; + this.usedTerms[counterpart].counterpart = termIndex; + } + } + + return termIndex; + } + + updateTermData(termData, input) { + super.updateTermData(termData, input); + + if (termData.pattern) { + input.pattern = termData.pattern; + delete termData.pattern; + + if (termData.invalidMsg) { + input.dataset.invalidMsg = termData.invalidMsg; + delete termData.invalidMsg; + } + + if (! this.checkValidity(input)) { + this.reportValidity(input); + } + } + } + + readFullTerm(input, termIndex = null) { + let termData = super.readFullTerm(input, termIndex); + if (termData === false) { + return false; + } + + if (termData.type === 'terms') { + termData = JSON.parse(termData.terms); + } else { + if (! termData.type) { + termData.type = this.termType; + } + } + + return termData; + } + + insertTerm(termData, termIndex) { + let label = super.insertTerm(termData, termIndex); + + if (termIndex === this.usedTerms.length - 1) { + this.termType = this.nextTermType(termData); + } else { + let next = this.termContainer.querySelector(`[data-index="${ termIndex + 1 }"]`); + this.checkValidity(next.firstChild, next.dataset.type, termIndex + 1); + } + + return label; + } + + insertRenderedTerm(label) { + let termIndex = Number(label.dataset.index); + if (label.dataset.counterpart >= 0) { + let otherLabel = this.termContainer.querySelector(`[data-index="${ label.dataset.counterpart }"]`); + if (otherLabel !== null) { + otherLabel.dataset.counterpart = termIndex; + this.checkValidity(otherLabel.firstChild); + } + } + + let previous = this.termContainer.querySelector(`[data-index="${ termIndex - 1 }"]`); + switch (label.dataset.type) { + case 'column': + let newCondition = this.renderCondition(); + newCondition.appendChild(label); + + if (previous) { + previous.parentNode.insertBefore(newCondition, previous.nextSibling); + } else { + this.termContainer.insertBefore(newCondition, this.termContainer.firstChild); + } + + break; + case 'operator': + case 'value': + previous.parentNode.appendChild(label); + break; + case 'logical_operator': + if (previous) { + if (previous.parentNode.dataset.groupType === 'condition') { + previous.parentNode.parentNode.insertBefore(label, previous.parentNode.nextSibling); + } else { + previous.parentNode.insertBefore(label, previous.nextSibling); + } + } else { + this.termContainer.insertBefore(label, this.termContainer.firstChild); + } + + break; + case 'negation_operator': + if (previous) { + previous.parentNode.insertBefore(label, previous.nextSibling); + } else { + this.termContainer.insertBefore(label, this.termContainer.firstChild); + } + + break; + case 'grouping_operator': + if (this.isGroupOpen(label.dataset)) { + if (label.dataset.counterpart >= 0) { + let counterpart = this.termContainer.querySelector( + `[data-index="${ label.dataset.counterpart }"]` + ); + counterpart.parentNode.insertBefore(label, counterpart.parentNode.firstChild); + } else { + let newGroup = this.renderChain(); + newGroup.appendChild(label); + + let sibling = previous ? previous.nextSibling : this.termContainer.firstChild; + while (sibling !== null && sibling.dataset.type !== 'grouping_operator') { + let nextSibling = sibling.nextSibling; + newGroup.appendChild(sibling); + sibling = nextSibling; + } + + if (previous) { + previous.parentNode.insertBefore(newGroup, previous.nextSibling); + } else { + // newGroup should be now the only child then + this.termContainer.appendChild(newGroup); + } + } + } else { + let chain = this.termContainer.querySelector( + `[data-index="${ label.dataset.counterpart }"]` + ).parentNode; + if (previous.parentNode.dataset.groupType && previous.parentNode !== chain) { + previous = previous.parentNode; + } + + if (previous.parentNode !== chain) { + // The op is being moved by the user again, after it was already moved + let sibling = previous; + let lastSibling = null; + while (sibling !== null && sibling !== chain) { + let previousSibling = sibling.previousSibling; + chain.insertBefore(sibling, lastSibling); + lastSibling = sibling; + sibling = previousSibling; + } + } + + // There may be terms following in the same level which now should be a level above + let sibling = previous.nextSibling; + let refNode = chain.nextSibling; + while (sibling !== null) { + let nextSibling = sibling.nextSibling; + chain.parentNode.insertBefore(sibling, refNode); + sibling = nextSibling; + } + + chain.appendChild(label); + } + } + + if (termIndex === this.usedTerms.length - 1) { + this.identifyLastRenderedTerm(); + } + + return label; + } + + addTerm(termData, termIndex = null) { + super.addTerm(termData, termIndex); + + if (termData.counterpart >= 0) { + let otherLabel = this.termContainer.querySelector(`[data-index="${ termData.counterpart }"]`); + if (otherLabel !== null) { + otherLabel.dataset.counterpart = termIndex || this.usedTerms[termData.counterpart].counterpart; + this.checkValidity(otherLabel.firstChild); + } + } + + this.termType = this.nextTermType(termData); + } + + addRenderedTerm(label) { + let newGroup = null; + let leaveGroup = false; + let currentGroup = null; + + switch (label.dataset.type) { + case 'column': + newGroup = this.renderCondition(); + break; + case 'grouping_operator': + if (this.isGroupOpen(label.dataset)) { + newGroup = this.renderChain(); + } else { + let termIndex = Number(label.dataset.index); + let previous = this.termContainer.querySelector(`[data-index="${ termIndex - 1 }"]`); + + currentGroup = this.termContainer.querySelector( + `[data-index="${ label.dataset.counterpart }"]` + ).parentNode; + if (previous.parentNode.dataset.groupType && previous.parentNode !== currentGroup) { + previous = previous.parentNode; + } + + if (previous.parentNode !== currentGroup) { + // The op is being moved by the user again, after it was already moved + let sibling = previous; + let lastSibling = null; + while (sibling !== null && sibling !== currentGroup) { + let previousSibling = sibling.previousSibling; + currentGroup.insertBefore(sibling, lastSibling); + lastSibling = sibling; + sibling = previousSibling; + } + } + } + + break; + case 'logical_operator': + currentGroup = this.currentGroup; + leaveGroup = currentGroup.dataset.groupType === 'condition'; + } + + if (currentGroup === null) { + currentGroup = this.currentGroup; + } + + if (newGroup !== null) { + newGroup.appendChild(label); + currentGroup.appendChild(newGroup); + } else if (leaveGroup) { + currentGroup.parentNode.appendChild(label); + } else { + currentGroup.appendChild(label); + } + + this.identifyLastRenderedTerm(); + } + + identifyLastRenderedTerm() { + let lastTerm = Array.from(this.termContainer.querySelectorAll('[data-index]')).pop(); + if (! lastTerm) { + return; + } + + let lastLabel = this.termContainer.querySelector('.last-term'); + if (lastLabel !== null) { + if (lastLabel === lastTerm) { + return; + } + + lastLabel.classList.remove('last-term'); + } + + lastTerm.classList.add('last-term'); + } + + saveTerm(input, updateDOM = true, force = false) { + if (! this.checkValidity(input)) { + return false; + } + + return super.saveTerm(input, updateDOM, force); + } + + termsToQueryString(terms) { + if (! this.input.form.checkValidity()) { + let filtered = []; + for (let i = 0; i < terms.length; i++) { + const input = this.termContainer.querySelector(`[data-index="${ i }"] > input`); + if (input === null || this.isGroupOpen(terms[i]) || input.checkValidity()) { + filtered.push(terms[i]); + } else if (input) { + // Ignore all terms after an invalid one + break; + } + } + + terms = filtered; + } + + return super.termsToQueryString(terms); + } + + removeTerm(label, updateDOM = true) { + let termIndex = Number(label.dataset.index); + if (termIndex < this.usedTerms.length - 1) { + // It's not the last term + if (! this.checkValidity(label.firstChild, label.dataset.type, termIndex)) { + this.reportValidity(label.firstChild); + return false; + } + } + + let termData = super.removeTerm(label, updateDOM); + + if (this.hasTerms()) { + if (termIndex === this.usedTerms.length) { + // It's been the last term + this.termType = this.nextTermType(this.lastTerm()); + } + + if (termData.counterpart >= 0) { + let otherLabel = this.termContainer.querySelector(`[data-index="${ termData.counterpart }"]`); + delete this.usedTerms[otherLabel.dataset.index].counterpart; + delete otherLabel.dataset.counterpart; + this.checkValidity(otherLabel.firstChild); + } + } else { + this.termType = 'column'; + } + + return termData; + } + + removeRange(labels) { + let removedTerms = super.removeRange(labels); + + if (this.hasTerms()) { + this.termType = this.nextTermType(this.lastTerm()); + + labels.forEach((label) => { + if (label.dataset.counterpart >= 0) { + let otherLabel = this.termContainer.querySelector( + `[data-counterpart="${ label.dataset.index }"]` + ); + if (otherLabel !== null) { + delete this.usedTerms[otherLabel.dataset.index].counterpart; + delete otherLabel.dataset.counterpart; + this.checkValidity(otherLabel.firstChild); + } + } + }); + } else { + this.termType = 'column'; + } + + return removedTerms; + } + + removeRenderedTerm(label) { + let parent = label.parentNode; + let children = parent.querySelectorAll(':scope > [data-index], :scope > [data-group-type]'); + if (parent.dataset.groupType && children.length === 1) { + // If the parent is a group and the label is the only child, we can remove the entire group + parent.remove(); + } else { + super.removeRenderedTerm(label); + + if (parent.dataset.groupType === 'chain') { + // Get a new nodes list first, otherwise the removed label is still part of it + children = parent.querySelectorAll(':scope > [data-index], :scope > [data-group-type]'); + let hasNoGroupOperators = children[0].dataset.type !== 'grouping_operator' + && children[children.length - 1].dataset.type !== 'grouping_operator'; + if (hasNoGroupOperators) { + // Unwrap remaining terms, remove the resulting empty group + Array.from(children).forEach(child => parent.parentNode.insertBefore(child, parent)); + parent.remove(); + } + } + } + + if (Number(label.dataset.index) >= this.usedTerms.length - 1) { + this.identifyLastRenderedTerm(); + } + } + + removeRenderedRange(labels) { + let to = Number(labels[labels.length - 1].dataset.index); + + while (labels.length) { + let label = labels.shift(); + let parent = label.parentNode; + if (parent.dataset.groupType && label === parent.firstChild) { + let counterpartIndex = Number(label.dataset.counterpart); + if (isNaN(counterpartIndex)) { + counterpartIndex = Number( + Array.from(parent.querySelectorAll(':scope > [data-index]')).pop().dataset.index + ); + } + + if (counterpartIndex <= to) { + // If the parent's terms are all to be removed, we'll remove the + // entire parent to keep the DOM operations as efficient as possible + parent.remove(); + + labels.splice(0, counterpartIndex - Number(label.dataset.index)); + continue; + } + } + + this.removeRenderedTerm(label); + } + } + + reIndexTerms(from, howMuch = 1, forward = false) { + let fromLabel = this.termContainer.querySelector(`[data-index="${ from }"]`); + + super.reIndexTerms(from, howMuch, forward); + + let _this = this; + this.termContainer.querySelectorAll('[data-counterpart]').forEach(label => { + let counterpartIndex = Number(label.dataset.counterpart); + if ((forward && counterpartIndex >= from) || (! forward && counterpartIndex > from)) { + counterpartIndex += forward ? howMuch : -howMuch; + + let termIndex = Number(label.dataset.index); + if ( + (! forward && termIndex > from - howMuch && label !== fromLabel) + || (forward && termIndex >= from) + ) { + // Make sure to use the previous index to access usedTerms, it's not adjusted yet + termIndex += forward ? -howMuch : howMuch; + } + + label.dataset.counterpart = `${ counterpartIndex }`; + _this.usedTerms[termIndex].counterpart = `${ counterpartIndex }`; + } + }); + } + + complete(input, data) { + let termIndex = Number(input.parentNode.dataset.index); + if (termIndex >= 0) { + data.term.type = this.usedTerms[termIndex].type; + } else { + termIndex = this.usedTerms.length; + data.term.type = this.termType; + } + + // Special cases + switch (data.term.type) { + case 'grouping_operator': + case 'negation_operator': + return; + case 'column': + data.showQuickSearch = termIndex === this.usedTerms.length; + break; + case 'value': + let terms = [ ...this.usedTerms ]; + terms.splice(termIndex - 2, 3, { type: 'column', search: '' }, + { type: 'operator', search: '' }, { type: 'value', search: '' }); + + data.searchFilter = this.termsToQueryString(terms); + break; + case 'operator': + case 'logical_operator': + let suggestions = this.validOperator( + data.trigger === 'script' ? '': data.term.label, data.term.type, termIndex); + if (suggestions.exactMatch) { + // User typed a suggestion manually, don't show the same suggestion again + return; + } + + data.suggestions = this.renderSuggestions(suggestions); + } + + // Additional metadata + switch (data.term.type) { + case 'value': + data.operator = this.usedTerms[--termIndex].search; + case 'operator': + data.column = this.usedTerms[--termIndex].search; + } + + super.complete(input, data); + } + + nextTermType(termData) { + switch (termData.type) { + case 'column': + return 'operator'; + case 'operator': + return 'value'; + case 'value': + return 'logical_operator'; + case 'logical_operator': + case 'negation_operator': + return 'column'; + case 'grouping_operator': + return this.isGroupOpen(termData) ? 'column' : 'logical_operator'; + } + } + + get currentGroup() { + let label = Array.from(this.termContainer.querySelectorAll('[data-index]')).pop(); + if (! label) { + return this.termContainer; + } + + let termData = this.usedTerms[label.dataset.index]; + switch (termData.type) { + case 'grouping_operator': + if (this.isGroupOpen(termData)) { + break; + } + case 'value': + return label.parentNode.parentNode; + } + + return label.parentNode; + } + + lastPendingGroupOpen(before) { + let level = 0; + for (let i = before - 1; i >= 0 && i < this.usedTerms.length; i--) { + let termData = this.usedTerms[i]; + + if (termData.type === 'grouping_operator') { + if (this.isGroupOpen(termData)) { + if (level === 0) { + return typeof termData.counterpart === 'undefined' ? i : null; + } + + level++; + } else { + if (termData.counterpart >= 0) { + i = termData.counterpart; + } else { + level--; + } + } + } + } + + return null; + } + + nextPendingGroupClose(after) { + let level = 0; + for (let i = after + 1; i < this.usedTerms.length; i++) { + let termData = this.usedTerms[i]; + + if (termData.type === 'grouping_operator') { + if (this.isGroupClose(termData)) { + if (level === 0) { + return typeof termData.counterpart === 'undefined' ? i : null; + } + + level--; + } else { + if (termData.counterpart >= 0) { + i = termData.counterpart; + } else { + level++; + } + } + } + } + + return null; + } + + isGroupOpen(termData) { + return termData.type === 'grouping_operator' && termData.search === this.grouping_operators.open.search; + } + + isGroupClose(termData) { + return termData.type === 'grouping_operator' && termData.search === this.grouping_operators.close.search; + } + + getOperator(value, termType = null) { + if (termType === null) { + termType = this.termType; + } + + let operators; + switch (termType) { + case 'operator': + operators = this.relational_operators; + break; + case 'logical_operator': + operators = this.logical_operators; + break; + } + + value = value.toLowerCase(); + return operators.find((term) => { + return value === term.label.toLowerCase() || value === term.search.toLowerCase(); + }) || null; + } + + matchOperators(operators, value) { + value = value.toLowerCase(); + + let exactMatch = false; + let partialMatch = false; + let filtered = operators.filter((op) => { + let label = op.label.toLowerCase(); + let search = op.search.toLowerCase(); + + if ( + (value.length < label.length && value === label.slice(0, value.length)) + || (value.length < search.length && value === search.slice(0, value.length)) + ) { + partialMatch = true; + return true; + } + + if (value === label || value === search) { + exactMatch = true; + return true; + } + + return false; + }); + + if (exactMatch || partialMatch) { + operators = filtered; + } + + operators.exactMatch = exactMatch && ! partialMatch; + operators.partialMatches = partialMatch; + + return operators; + } + + nextOperator(value, currentValue, termType = null, termIndex = null) { + let operators = []; + + if (termType === null) { + termType = this.termType; + } + + if (termIndex === null && termType === 'column' && ! currentValue) { + switch (true) { + case ! this.hasTerms(): + case this.lastTerm().type === 'logical_operator': + case this.isGroupOpen(this.lastTerm()): + operators.push(this.grouping_operators.open); + operators.push(this.negationOperator); + } + } else if (termIndex === -1) { + // This is more of a `previousOperator` thing here + switch (termType) { + case 'column': + operators = operators.concat(this.logical_operators); + case 'logical_operator': + operators.push(this.grouping_operators.open); + operators.push(this.negationOperator); + break; + case 'negation_operator': + operators = operators.concat(this.logical_operators); + operators.push(this.grouping_operators.open); + break; + case 'grouping_operator': + if (this.isGroupOpen(this.usedTerms[0])) { + operators.push(this.grouping_operators.open); + operators.push(this.negationOperator); + } + } + } else { + let nextIndex = termIndex === null ? this.usedTerms.length : termIndex + 1; + switch (termType) { + case 'column': + operators = operators.concat(this.relational_operators); + + if (! currentValue || (termIndex !== null && termIndex < this.usedTerms.length)) { + operators.push(this.grouping_operators.open); + operators.push(this.negationOperator); + } + case 'operator': + case 'value': + operators = operators.concat(this.logical_operators); + + if (this.lastPendingGroupOpen(nextIndex) !== null) { + operators.push(this.grouping_operators.close); + } + + break; + case 'logical_operator': + if (this.lastPendingGroupOpen(nextIndex) !== null) { + operators.push(this.grouping_operators.close); + } + + if (termIndex !== null && termIndex < this.usedTerms.length) { + operators.push(this.grouping_operators.open); + operators.push(this.negationOperator); + } + + break; + case 'negation_operator': + operators.push(this.grouping_operators.open); + + break; + case 'grouping_operator': + let termData = this.usedTerms[termIndex]; + if (this.isGroupOpen(termData)) { + operators.push(this.grouping_operators.open); + operators.push(this.negationOperator); + } else { + operators = operators.concat(this.logical_operators); + + if (this.lastPendingGroupOpen(nextIndex)) { + operators.push(this.grouping_operators.close); + } + } + } + } + + return value ? this.matchOperators(operators, value) : operators; + } + + validOperator(value, termType = null, termIndex = null) { + let operators = []; + + if (termType === null) { + termType = this.termType; + } + + switch (termType) { + case 'operator': + operators = operators.concat(this.relational_operators); + break; + case 'logical_operator': + operators = operators.concat(this.logical_operators); + break; + case 'negation_operator': + operators.push(this.negationOperator); + break; + case 'grouping_operator': + let termData = this.usedTerms[termIndex]; + if (termData.counterpart >= 0) { + let counterpart = this.usedTerms[termData.counterpart]; + if (this.isGroupOpen(counterpart)) { + operators.push(this.grouping_operators.close); + } else { + operators.push(this.grouping_operators.open); + } + } + } + + return value ? this.matchOperators(operators, value) : operators; + } + + checkValidity(input, type = null, termIndex = null) { + if (type === null) { + type = input.parentNode.dataset.type; + } + + if (input.pattern && ! input.checkValidity()) { + if (! input.value.match(input.pattern)) { + if (input.dataset.invalidMsg) { + input.setCustomValidity(input.dataset.invalidMsg); + } + + return false; + } + + input.setCustomValidity(''); + } + + if (! type || type === 'value') { + // type is undefined for the main input, values have no special validity rules + return input.checkValidity(); + } + + if (termIndex === null && input.parentNode.dataset.index >= 0) { + termIndex = Number(input.parentNode.dataset.index); + } + + let value = this.readPartialTerm(input); + + let options; + switch (type) { + case 'operator': + case 'logical_operator': + case 'negation_operator': + case 'grouping_operator': + options = this.validOperator(value, type, termIndex); + } + + let message = ''; + if (type === 'column') { + let nextTermAt = termIndex + 1; + if (! value && nextTermAt < this.usedTerms.length && this.usedTerms[nextTermAt].type === 'operator') { + message = this.input.dataset.chooseColumn; + } + } else { + let isRequired = ! options.exactMatch; + if ((options.partialMatches && options.length > 1) || (type === 'negation_operator' && ! value)) { + isRequired = false; + } else if (type === 'operator' && ! value) { + let nextTermAt = termIndex + 1; + isRequired = nextTermAt < this.usedTerms.length && this.usedTerms[nextTermAt].type === 'value'; + } else if (type === 'logical_operator' && ! value) { + if (termIndex === 0 || termIndex === this.usedTerms.length - 1) { + isRequired = false; + } else { + isRequired = ! this.isGroupOpen(this.usedTerms[termIndex - 1]) + && ! this.isGroupClose(this.usedTerms[termIndex + 1]) + && this.usedTerms[termIndex - 1].type !== 'logical_operator' + && this.usedTerms[termIndex + 1].type !== 'logical_operator'; + } + } else if (type === 'grouping_operator') { + if (typeof this.usedTerms[termIndex].counterpart === 'undefined') { + if (value) { + message = this.input.dataset.incompleteGroup; + } + + isRequired = false; + } else if (! value) { + isRequired = false; + } + } + + if (isRequired) { + message = this.input.dataset.chooseTemplate.replace( + '%s', + options.map(e => e.label).join(', ') + ); + } + } + + if (! message && termIndex > 0 && type !== 'logical_operator') { + let previousTerm = this.usedTerms[termIndex - 1]; + + let missingLogicalOp = true; + switch (type) { + case 'column': + missingLogicalOp = ! ['logical_operator', 'negation_operator'].includes(previousTerm.type) + && ! this.isGroupOpen(previousTerm); + break; + case 'operator': + missingLogicalOp = previousTerm.type !== 'column'; + break; + case 'value': + missingLogicalOp = previousTerm.type !== 'operator'; + break; + case 'negation_operator': + missingLogicalOp = previousTerm.type !== 'logical_operator' + && ! this.isGroupOpen(previousTerm); + break; + case 'grouping_operator': + if (value === this.grouping_operators.open.label) { + missingLogicalOp = ! ['logical_operator', 'negation_operator'].includes(previousTerm.type) + && ! this.isGroupOpen(previousTerm); + } else { + missingLogicalOp = false; + } + } + + if (missingLogicalOp) { + message = this.input.dataset.missingLogOp; + } + } + + input.setCustomValidity(message); + return input.checkValidity(); + } + + reportValidity(element) { + setTimeout(() => element.reportValidity(), 0); + } + + renderSuggestions(suggestions) { + let itemTemplate = $.render('
  • '); + + let list = document.createElement('ul'); + + suggestions.forEach((term) => { + let item = itemTemplate.cloneNode(true); + item.firstChild.value = term.label; + + for (let name in term) { + if (name === 'default') { + if (term[name]) { + item.classList.add('default'); + } + } else { + item.firstChild.dataset[name] = term[name]; + } + } + + list.appendChild(item); + }); + + return list; + } + + renderPreview(content) { + return $.render('' + content + ''); + } + + renderCondition() { + return $.render( + '
    ' + + '' + + '
    ' + ); + } + + renderChain() { + return $.render('
    '); + } + + renderTerm(termData, termIndex) { + let label = super.renderTerm(termData, termIndex); + label.dataset.type = termData.type; + + if (! termData.class) { + label.classList.add(termData.type); + } + + if (termData.counterpart >= 0) { + label.dataset.counterpart = termData.counterpart; + } + + return label; + } + + autoSubmit(input, changeType, changedTerms) { + if (this.shouldNotAutoSubmit()) { + return; + } + + let changedIndices = Object.keys(changedTerms).sort((a, b) => a - b); + if (! changedIndices.length) { + return; + } + + let lastTermAt; + switch (changeType) { + case 'add': + case 'exchange': + lastTermAt = changedIndices.pop(); + if (changedTerms[lastTermAt].type === 'value') { + if (! changedIndices.length) { + changedTerms = { + ...{ + [lastTermAt - 2]: this.usedTerms[lastTermAt - 2], + [lastTermAt - 1]: this.usedTerms[lastTermAt - 1] + }, + ...changedTerms + }; + } + + break; + } else if (this.isGroupClose(changedTerms[lastTermAt])) { + break; + } + + return; + case 'insert': + lastTermAt = changedIndices.pop(); + if ((changedTerms[lastTermAt].type === 'value' && changedIndices.length) + || this.isGroupClose(changedTerms[lastTermAt]) + || (changedTerms[lastTermAt].type === 'negation_operator' + && lastTermAt < this.usedTerms.length - 1 + ) + ) { + break; + } + + return; + case 'save': + let updateAt = changedIndices[0]; + let valueAt = updateAt; + switch (changedTerms[updateAt].type) { + case 'column': + if (changedTerms[updateAt].label !== this.usedTerms[updateAt].label) { + return; + } + + valueAt++; + case 'operator': + valueAt++; + } + + if (valueAt === updateAt) { + if (changedIndices.length === 1) { + changedTerms = { + ...{ + [valueAt - 2]: this.usedTerms[valueAt - 2], + [valueAt - 1]: this.usedTerms[valueAt - 1] + }, + ...changedTerms + }; + } + + break; + } else if (this.usedTerms.length > valueAt && this.usedTerms[valueAt].type === 'value') { + break; + } + + return; + case 'remove': + let firstTermAt = changedIndices.shift(); + if (changedTerms[firstTermAt].type === 'column' + || this.isGroupOpen(changedTerms[firstTermAt]) + || changedTerms[firstTermAt].type === 'negation_operator' + || (changedTerms[firstTermAt].type === 'logical_operator' && changedIndices.length) + ) { + break; + } + + return; + } + + super.autoSubmit(input, changeType, changedTerms); + } + + encodeTerm(termData) { + if (termData.type === 'column' || termData.type === 'value') { + termData = super.encodeTerm(termData); + termData.search = termData.search.replace( + /[()]/g, + function(c) { + return '%' + c.charCodeAt(0).toString(16); + } + ); + } + + return termData; + } + + highlightTerm(label, highlightedBy = null) { + label.classList.add('highlighted'); + + let canBeHighlighted = (label) => ! ('highlightedBy' in label.dataset) + && label.firstChild !== document.activeElement + && (this.completer === null + || ! this.completer.isBeingCompleted(label.firstChild) + ); + + if (highlightedBy !== null) { + if (canBeHighlighted(label)) { + label.dataset.highlightedBy = highlightedBy; + } + } else { + highlightedBy = label.dataset.index; + } + + let negationAt, previousIndex, nextIndex; + switch (label.dataset.type) { + case 'column': + case 'operator': + case 'value': + label.parentNode.querySelectorAll(':scope > [data-index]').forEach((otherLabel) => { + if (otherLabel !== label && canBeHighlighted(otherLabel)) { + otherLabel.classList.add('highlighted'); + otherLabel.dataset.highlightedBy = highlightedBy; + } + }); + + negationAt = Number(label.dataset.index) - ( + label.dataset.type === 'column' + ? 1 : label.dataset.type === 'operator' + ? 2 : 3 + ); + if (negationAt >= 0 && this.usedTerms[negationAt].type === 'negation_operator') { + let negationLabel = this.termContainer.querySelector(`[data-index="${ negationAt }"]`); + if (negationLabel !== null && canBeHighlighted(negationLabel)) { + negationLabel.classList.add('highlighted'); + negationLabel.dataset.highlightedBy = highlightedBy; + } + } + + break; + case 'logical_operator': + previousIndex = Number(label.dataset.index) - 1; + if (previousIndex >= 0 && this.usedTerms[previousIndex].type !== 'logical_operator') { + this.highlightTerm( + this.termContainer.querySelector(`[data-index="${ previousIndex }"]`), + highlightedBy + ); + } + + nextIndex = Number(label.dataset.index) + 1; + if (nextIndex < this.usedTerms.length && this.usedTerms[nextIndex].type !== 'logical_operator') { + this.highlightTerm( + this.termContainer.querySelector(`[data-index="${ nextIndex }"]`), + highlightedBy + ); + } + + break; + case 'negation_operator': + nextIndex = Number(label.dataset.index) + 1; + if (nextIndex < this.usedTerms.length) { + this.highlightTerm( + this.termContainer.querySelector(`[data-index="${ nextIndex }"]`), + highlightedBy + ); + } + + break; + case 'grouping_operator': + negationAt = null; + if (this.isGroupOpen(label.dataset)) { + negationAt = Number(label.dataset.index) - 1; + } + + if (label.dataset.counterpart >= 0) { + let otherLabel = this.termContainer.querySelector( + `[data-index="${ label.dataset.counterpart }"]` + ); + if (otherLabel !== null) { + if (negationAt === null) { + negationAt = Number(otherLabel.dataset.index) - 1; + } + + if (canBeHighlighted(otherLabel)) { + otherLabel.classList.add('highlighted'); + otherLabel.dataset.highlightedBy = highlightedBy; + } + } + } + + if (negationAt >= 0 && this.usedTerms[negationAt].type === 'negation_operator') { + let negationLabel = this.termContainer.querySelector(`[data-index="${ negationAt }"]`); + if (negationLabel !== null && canBeHighlighted(negationLabel)) { + negationLabel.classList.add('highlighted'); + negationLabel.dataset.highlightedBy = highlightedBy; + } + } + } + } + + deHighlightTerm(label) { + if (! ('highlightedBy' in label.dataset)) { + label.classList.remove('highlighted'); + } + + this.termContainer.querySelectorAll(`[data-highlighted-by="${ label.dataset.index }"]`).forEach( + (label) => { + label.classList.remove('highlighted'); + delete label.dataset.highlightedBy; + } + ); + } + + /** + * Event listeners + */ + + onTermFocusOut(event) { + let label = event.currentTarget; + if (this.completer === null || ! this.completer.isBeingCompleted(label.firstChild, event.relatedTarget)) { + this.deHighlightTerm(label); + } + + if (['column', 'value'].includes(label.dataset.type) || ! this.readPartialTerm(label.firstChild)) { + super.onTermFocusOut(event); + } + } + + onTermFocus(event) { + let input = event.target; + let termType = input.parentNode.dataset.type || this.termType; + + if (input.parentNode.dataset.index >= 0) { + if ( + ! this.checkValidity(input, termType) + && termType !== 'operator' + && termType !== 'logical_operator' + ) { + this.reportValidity(input); + } + + this.highlightTerm(input.parentNode); + } + + let value = this.readPartialTerm(input); + if (! value && (termType === 'column' || termType === 'value')) { + // No automatic suggestions without input + return; + } + + super.onTermFocus(event); + } + + onTermClick(event) { + if (this.disabled) { + return; + } + + let input = event.target; + let termType = input.parentNode.dataset.type; + + if (['logical_operator', 'operator'].includes(termType)) { + this.complete(input, { trigger: 'script', term: { label: this.readPartialTerm(input) } }); + } + } + + onTermHover(event) { + if (this.disabled) { + return; + } + + let label = event.currentTarget; + + if (['column', 'operator', 'value'].includes(label.dataset.type)) { + // This adds a class to delay the remove button. If it's shown instantly upon hover + // it's too easy to accidentally click it instead of the desired grouping operator. + label.parentNode.classList.add('_hover_delay'); + setTimeout(function () { + label.parentNode.classList.remove('_hover_delay'); + }, 500); + } + + this.highlightTerm(label); + } + + onTermLeave(event) { + if (this.disabled) { + return; + } + + let label = event.currentTarget; + if (label.firstChild !== document.activeElement + && (this.completer === null || ! this.completer.isBeingCompleted(label.firstChild)) + ) { + this.deHighlightTerm(label); + } + } + + onRemoveCondition(event) { + let button = event.target.closest('button'); + let labels = Array.from(button.parentNode.querySelectorAll(':scope > [data-index]')); + + let previous = button.parentNode.previousSibling; + let next = button.parentNode.nextSibling; + + while (previous !== null || next !== null) { + if (previous !== null && previous.dataset.type === 'negation_operator') { + labels.unshift(previous); + previous = previous.previousSibling; + } + + if (next !== null && next.dataset.type === 'logical_operator') { + labels.push(next); + next = next.nextSibling; + } else if (previous !== null && previous.dataset.type === 'logical_operator') { + labels.unshift(previous); + previous = previous.previousSibling; + } + + if ( + previous && previous.dataset.type === 'grouping_operator' + && next && next.dataset.type === 'grouping_operator' + ) { + labels.unshift(previous); + labels.push(next); + previous = next.parentNode !== null ? next.parentNode.previousSibling : null; + next = next.parentNode !== null ? next.parentNode.nextSibling : null; + } else { + break + } + } + + this.autoSubmit(this.input, 'remove', this.removeRange(labels)); + this.togglePlaceholder(); + } + + onCompletion(event) { + super.onCompletion(event); + + let input = event.target; + this.checkValidity(input); + + if (input.parentNode.dataset.index >= 0) { + return; + } + + if (this.termType === 'operator' || this.termType === 'logical_operator') { + this.complete(this.input, { term: { label: '' } }); + } + } + + onKeyDown(event) { + super.onKeyDown(event); + if (event.defaultPrevented) { + return; + } + + let input = event.target; + let isTerm = input.parentNode.dataset.index >= 0; + + if (this.hasSyntaxError(input)) { + return; + } + + let currentValue = this.readPartialTerm(input); + if (isTerm && ! currentValue) { + // Switching contexts requires input first + return; + } else if (input.selectionStart !== input.selectionEnd) { + // In case the user selected a range of text, do nothing + return; + } else if (/[A-Z]/.test(event.key.charAt(0)) || event.ctrlKey || event.metaKey) { + // Ignore control keys not resulting in new input data + // TODO: Remove this and move the entire block into `onInput` + // once Safari supports `InputEvent.data` + return; + } + + let termIndex = null; + let termType = this.termType; + if (isTerm) { + if (input.selectionEnd === input.value.length) { + // Cursor is at the end of the input + termIndex = Number(input.parentNode.dataset.index); + termType = input.parentNode.dataset.type; + } else if (input.selectionStart === 0) { + // Cursor is at the start of the input + termIndex = Number(input.parentNode.dataset.index); + if (termIndex === 0) { + // TODO: This is bad, if it causes problems, replace it + // with a proper `previousOperator` implementation + termType = this.usedTerms[termIndex].type; + termIndex -= 1; + } else { + termIndex -= 1; + termType = this.usedTerms[termIndex].type; + } + } else { + // In case the cursor is somewhere in between, do nothing + return; + } + + if (termIndex > -1 && termIndex < this.usedTerms.length - 1) { + let nextTerm = this.usedTerms[termIndex + 1]; + if (nextTerm.type === 'operator' || nextTerm.type === 'value') { + // In between parts of a condition there's no context switch possible at all + return; + } + } + } else if (input.selectionEnd !== input.value.length) { + // Main input processing only happens at the end of the input + return; + } + + let operators; + let value = event.key; + if (! isTerm || termType === 'operator') { + operators = this.validOperator( + termType === 'operator' ? currentValue + value : value, termType, termIndex); + if (! operators.exactMatch && ! operators.partialMatches) { + operators = this.nextOperator(value, currentValue, termType, termIndex); + } + } else { + operators = this.nextOperator(value, currentValue, termType, termIndex); + } + + if (isTerm) { + let newTerm = null; + if (operators.exactMatch && operators[0].label.toLowerCase() !== value.toLowerCase()) { + // The user completes a partial match + } else if (operators.exactMatch && (termType !== 'operator' || operators[0].type !== 'operator')) { + newTerm = { ...operators[0] }; + } else if (operators.partialMatches && termType !== 'operator') { + newTerm = { ...operators[0], label: value, search: value }; + } else { + // If no match is found, the user continues typing + switch (termType) { + case 'operator': + newTerm = { label: value, search: value, type: 'value' }; + break; + case 'logical_operator': + case 'negation_operator': + newTerm = { label: value, search: value, type: 'column' }; + break; + } + } + + if (newTerm !== null) { + let label = this.insertTerm(newTerm, termIndex + 1); + this.autoSubmit(label.firstChild, 'insert', { [termIndex + 1]: newTerm }); + this.complete(label.firstChild, { term: newTerm }); + $(label.firstChild).focus({ scripted: true }); + event.preventDefault(); + } + } else { + if (operators.partialMatches) { + this.exchangeTerm(); + this.togglePlaceholder(); + } else if (operators.exactMatch) { + if (termType !== operators[0].type) { + this.autoSubmit(input, 'exchange', this.exchangeTerm()); + } else { + this.clearPartialTerm(input); + } + + this.addTerm({ ...operators[0] }); + this.autoSubmit(input, 'add', { [this.usedTerms.length - 1]: operators[0] }); + this.togglePlaceholder(); + event.preventDefault(); + } else if (termType === 'operator') { + let partialOperator = this.getOperator(currentValue); + if (partialOperator !== null) { + // If no match is found, the user seems to want the partial operator. + this.addTerm({ ...partialOperator }); + this.clearPartialTerm(input); + } + } + } + } + + onInput(event) { + let input = event.target; + let termIndex = Number(input.parentNode.dataset.index); + + if (this.hasSyntaxError(input)) { + // pass + } else if (termIndex >= 0) { + let value = this.readPartialTerm(input); + if (! this.checkValidity(input)) { + this.reportValidity(input); + // Let inputs also grow upon invalid input + this.updateTermData({ label: value }, input); + return; + } else if (value && ! ['column', 'value'].includes(input.parentNode.dataset.type)) { + this.autoSubmit(input, 'save', { [termIndex]: this.saveTerm(input) }); + } + } else if (this.termType === 'operator' || this.termType === 'logical_operator') { + let value = this.readPartialTerm(input); + + if (value && ! this.validOperator(value).partialMatches) { + let defaultTerm = this.termType === 'operator' + ? { ...this.relational_operators[0] } + : { ...this.logical_operators[0] }; + + if (value !== defaultTerm.label) { + this.addTerm(defaultTerm); + this.togglePlaceholder(); + } else { + this.exchangeTerm(); + this.togglePlaceholder(); + } + } + } + + super.onInput(event); + } + + onPaste(event) { + if (! this.hasTerms()) { + super.onPaste(event); + } else if (! this.input.value) { + let terms = event.clipboardData.getData('text/plain'); + if (this.termType === 'logical_operator') { + if (! this.validOperator(terms[0]).exactMatch) { + this.registerTerm({ ...this.logical_operators[0] }); + } + } else if (this.termType !== 'column') { + return; + } + + this.submitTerms(this.termsToQueryString(this.usedTerms) + terms); + event.preventDefault(); + } + } + } + + return FilterInput; +}); diff --git a/asset/js/widget/SearchBar.js b/asset/js/widget/SearchBar.js new file mode 100644 index 00000000..276de171 --- /dev/null +++ b/asset/js/widget/SearchBar.js @@ -0,0 +1,81 @@ +define(["../notjQuery"], function ($) { + + "use strict"; + + class SearchBar { + constructor(form) { + this.form = form; + this.filterInput = null; + } + + bind() { + $(this.form.parentNode).on('click', '[data-search-editor-url]', this.onOpenerClick, this); + + return this; + } + + refresh(form) { + if (form === this.form) { + // If the DOM node is still the same, nothing has changed + return; + } + + this.form = form; + this.bind(); + } + + destroy() { + this.form = null; + this.filterInput = null; + } + + setFilterInput(filterInput) { + this.filterInput = filterInput; + + return this; + } + + onOpenerClick(event) { + let opener = event.currentTarget; + let editorUrl = opener.dataset.searchEditorUrl; + let filterQueryString = this.filterInput.getQueryString(); + let layout = document.getElementById('layout'); + + editorUrl += (editorUrl.indexOf('?') > -1 ? '&' : '?') + filterQueryString; + + // Disable pointer events to block further function calls + opener.style.pointerEvents = 'none'; + + let observer = new MutationObserver((mutations) => { + for (let mutation of mutations) { + if (mutation.type === 'childList') { + mutation.removedNodes.forEach((node) => { + // Remove the pointerEvent none style to make the button clickable again + // after the modal has been removed + if (node.id === 'modal') { + opener.style.pointerEvents = ''; + observer.disconnect(); + } + }); + } + } + }); + + observer.observe(layout, {childList: true}); + + // The search editor should open in a modal. We simulate a click on an anchor + // appropriately prepared so that Icinga Web 2 will handle it natively. + let a = document.createElement('a'); + a.classList.add('modal-opener'); + a.href = editorUrl; + a.dataset.noIcingaAjax = ''; + a.dataset.icingaModal = ''; + + opener.parentNode.insertBefore(a, opener.nextSibling); + a.click(); + a.remove(); + } + } + + return SearchBar; +}); diff --git a/asset/js/widget/SearchEditor.js b/asset/js/widget/SearchEditor.js new file mode 100644 index 00000000..b8235f0b --- /dev/null +++ b/asset/js/widget/SearchEditor.js @@ -0,0 +1,79 @@ +define(["../notjQuery", "../vendor/Sortable"], function ($, Sortable) { + + "use strict"; + + class SearchEditor { + constructor(form) { + this.form = form; + } + + bind() { + $(this.form).on('end', this.onRuleDropped, this); + + this.form.querySelectorAll('ol').forEach(sortable => { + let options = { + scroll: true, + group: 'rules', + direction: 'vertical', + invertSwap: true, + handle: '.drag-initiator' + }; + + Sortable.create(sortable, options); + }); + + return this; + } + + refresh(form) { + if (form === this.form) { + // If the DOM node is still the same, nothing has changed + return; + } + + this.form = form; + this.bind(); + } + + destroy() { + this.form = null; + this.filterInput = null; + } + + onRuleDropped(event) { + if (event.to === event.from && event.newIndex === event.oldIndex) { + // The user dropped the rule at its previous position + return; + } + + let placement = 'before'; + let neighbour = event.to.querySelector(':scope > :nth-child(' + (event.newIndex + 2) + ')'); + if (! neighbour) { + // User dropped the rule at the end of a group + placement = 'after'; + neighbour = event.to.querySelector(':scope > :nth-child(' + event.newIndex + ')') + if (! neighbour) { + // User dropped the rule into an empty group + placement = 'to'; + neighbour = event.to.closest('[id]'); + } + } + + // It's a submit element, the very first one, otherwise Icinga Web 2 sends another "structural-change" + this.form.insertBefore( + $.render( + '' + ), + this.form.firstChild + ); + this.form.insertBefore( + $.render(''), + this.form.firstChild + ); + + $(this.form).trigger('submit'); + } + } + + return SearchEditor; +}); diff --git a/asset/js/widget/TermInput.js b/asset/js/widget/TermInput.js new file mode 100644 index 00000000..f85115f7 --- /dev/null +++ b/asset/js/widget/TermInput.js @@ -0,0 +1,128 @@ +define(["BaseInput"], function (BaseInput) { + + "use strict"; + + class TermInput extends BaseInput { + constructor(input) { + super(input); + + this.separator = ' '; + this.ignoreSpaceUntil = null; + this.ignoreSpaceSince = null; + } + + reset() { + super.reset(); + + this.ignoreSpaceUntil = null; + this.ignoreSpaceSince = null; + } + + writePartialTerm(value, input) { + if (this.ignoreSpaceUntil !== null && this.ignoreSpaceSince === 0) { + value = this.ignoreSpaceUntil + value; + } + + super.writePartialTerm(value, input); + } + + readFullTerm(input, termIndex = null) { + let termData = super.readFullTerm(input, termIndex); + if (this.ignoreSpaceUntil !== null && termData.label[this.ignoreSpaceSince] === this.ignoreSpaceUntil) { + if (termData.label.length - 1 === this.ignoreSpaceSince + || termData.label.slice(-1) !== this.ignoreSpaceUntil + || (this.ignoreSpaceSince === 0 && (termData.label.length < 2 + || termData.label.slice(0, 1) !== this.ignoreSpaceUntil) + ) + ) { + return false; + } + } + + return termData; + } + + addTerm(termData, termIndex = null) { + if (this.ignoreSpaceUntil !== null) { + if (this.ignoreSpaceSince === 0 && termData.label[this.ignoreSpaceSince] === this.ignoreSpaceUntil) { + termData.label = termData.label.slice(1, -1); + } + + this.ignoreSpaceUntil = null; + this.ignoreSpaceSince = null; + } + + super.addTerm(termData, termIndex); + } + + complete(input, data) { + data.exclude = this.usedTerms.map(termData => termData.search); + + super.complete(input, data); + } + + /** + * Event listeners + */ + + onSubmit(event) { + super.onSubmit(event); + + this.ignoreSpaceUntil = null; + this.ignoreSpaceSince = null; + } + + onKeyDown(event) { + super.onKeyDown(event); + if (event.defaultPrevented) { + return; + } + + let label = event.target.parentNode; + if (label.dataset.index >= 0) { + return; + } + + if (event.key !== this.separator) { + return; + } + + let addedTerms = this.exchangeTerm(); + if (addedTerms.length) { + this.togglePlaceholder(); + event.preventDefault(); + this.autoSubmit(this.input, 'exchange', addedTerms); + } + } + + onKeyUp(event) { + super.onKeyUp(event); + + let label = event.target.parentNode; + if (label.dataset.index >= 0) { + return; + } + + if (this.ignoreSpaceUntil !== null) { + // Reset if the user changes/removes the source char + let value = event.target.value; + if (value[this.ignoreSpaceSince] !== this.ignoreSpaceUntil) { + this.ignoreSpaceUntil = null; + this.ignoreSpaceSince = null; + } + } + + let input = event.target; + switch (event.key) { + case '"': + case "'": + if (this.ignoreSpaceUntil === null) { + this.ignoreSpaceUntil = event.key; + this.ignoreSpaceSince = input.selectionStart - 1; + } + } + } + } + + return TermInput; +}); diff --git a/asset/static/font/Icinga-Icons.eot b/asset/static/font/Icinga-Icons.eot new file mode 100644 index 00000000..b492a29c Binary files /dev/null and b/asset/static/font/Icinga-Icons.eot differ diff --git a/asset/static/font/Icinga-Icons.svg b/asset/static/font/Icinga-Icons.svg new file mode 100644 index 00000000..697a9514 --- /dev/null +++ b/asset/static/font/Icinga-Icons.svg @@ -0,0 +1,13 @@ + + + +Generated by IcoMoon + + + + + + + + + \ No newline at end of file diff --git a/asset/static/font/Icinga-Icons.ttf b/asset/static/font/Icinga-Icons.ttf new file mode 100644 index 00000000..192416e1 Binary files /dev/null and b/asset/static/font/Icinga-Icons.ttf differ diff --git a/asset/static/font/Icinga-Icons.woff b/asset/static/font/Icinga-Icons.woff new file mode 100644 index 00000000..f7617298 Binary files /dev/null and b/asset/static/font/Icinga-Icons.woff differ diff --git a/asset/static/font/awesome/fa-brands-400.ttf b/asset/static/font/awesome/fa-brands-400.ttf new file mode 100644 index 00000000..911775ec Binary files /dev/null and b/asset/static/font/awesome/fa-brands-400.ttf differ diff --git a/asset/static/font/awesome/fa-brands-400.woff2 b/asset/static/font/awesome/fa-brands-400.woff2 new file mode 100644 index 00000000..ffec3955 Binary files /dev/null and b/asset/static/font/awesome/fa-brands-400.woff2 differ diff --git a/asset/static/font/awesome/fa-regular-400.ttf b/asset/static/font/awesome/fa-regular-400.ttf new file mode 100644 index 00000000..7c7df7fa Binary files /dev/null and b/asset/static/font/awesome/fa-regular-400.ttf differ diff --git a/asset/static/font/awesome/fa-regular-400.woff2 b/asset/static/font/awesome/fa-regular-400.woff2 new file mode 100644 index 00000000..eccc8c8f Binary files /dev/null and b/asset/static/font/awesome/fa-regular-400.woff2 differ diff --git a/asset/static/font/awesome/fa-solid-900.ttf b/asset/static/font/awesome/fa-solid-900.ttf new file mode 100644 index 00000000..94135a20 Binary files /dev/null and b/asset/static/font/awesome/fa-solid-900.ttf differ diff --git a/asset/static/font/awesome/fa-solid-900.woff2 b/asset/static/font/awesome/fa-solid-900.woff2 new file mode 100644 index 00000000..7e62f26e Binary files /dev/null and b/asset/static/font/awesome/fa-solid-900.woff2 differ diff --git a/asset/static/font/awesome/fa-v4compatibility.ttf b/asset/static/font/awesome/fa-v4compatibility.ttf new file mode 100644 index 00000000..9cc7d017 Binary files /dev/null and b/asset/static/font/awesome/fa-v4compatibility.ttf differ diff --git a/asset/static/font/awesome/fa-v4compatibility.woff2 b/asset/static/font/awesome/fa-v4compatibility.woff2 new file mode 100644 index 00000000..87600727 Binary files /dev/null and b/asset/static/font/awesome/fa-v4compatibility.woff2 differ diff --git a/asset/static/img/select-icon-text-color.svg b/asset/static/img/select-icon-text-color.svg new file mode 100644 index 00000000..b2dc8571 --- /dev/null +++ b/asset/static/img/select-icon-text-color.svg @@ -0,0 +1 @@ + diff --git a/asset/static/img/select-icon.svg b/asset/static/img/select-icon.svg new file mode 100644 index 00000000..cc8a0114 --- /dev/null +++ b/asset/static/img/select-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/composer.lock b/composer.lock new file mode 100644 index 00000000..b40ff62e --- /dev/null +++ b/composer.lock @@ -0,0 +1,1410 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "dc5044681ff17fc6999f7c99e9f98731", + "packages": [ + { + "name": "doctrine/collections", + "version": "1.8.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/collections.git", + "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/collections/zipball/2b44dd4cbca8b5744327de78bafef5945c7e7b5e", + "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e", + "shasum": "" + }, + "require": { + "doctrine/deprecations": "^0.5.3 || ^1", + "php": "^7.1.3 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9.0 || ^10.0", + "phpstan/phpstan": "^1.4.8", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5", + "vimeo/psalm": "^4.22" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", + "homepage": "https://www.doctrine-project.org/projects/collections.html", + "keywords": [ + "array", + "collections", + "iterators", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/collections/issues", + "source": "https://github.com/doctrine/collections/tree/1.8.0" + }, + "time": "2022-09-01T20:12:10+00:00" + }, + { + "name": "doctrine/deprecations", + "version": "v1.0.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/deprecations.git", + "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", + "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", + "shasum": "" + }, + "require": { + "php": "^7.1|^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9", + "phpunit/phpunit": "^7.5|^8.5|^9.5", + "psr/log": "^1|^2|^3" + }, + "suggest": { + "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", + "homepage": "https://www.doctrine-project.org/", + "support": { + "issues": "https://github.com/doctrine/deprecations/issues", + "source": "https://github.com/doctrine/deprecations/tree/v1.0.0" + }, + "time": "2022-05-02T15:47:09+00:00" + }, + { + "name": "dragonmantank/cron-expression", + "version": "v3.3.2", + "source": { + "type": "git", + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8", + "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "webmozart/assert": "^1.0" + }, + "replace": { + "mtdowling/cron-expression": "^1.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-webmozart-assert": "^1.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": [ + "cron", + "schedule" + ], + "support": { + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2" + }, + "funding": [ + { + "url": "https://github.com/dragonmantank", + "type": "github" + } + ], + "time": "2022-09-10T18:51:20+00:00" + }, + { + "name": "evenement/evenement", + "version": "v3.0.1", + "source": { + "type": "git", + "url": "https://github.com/igorw/evenement.git", + "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/igorw/evenement/zipball/531bfb9d15f8aa57454f5f0285b18bec903b8fb7", + "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7", + "shasum": "" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "autoload": { + "psr-0": { + "Evenement": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" + } + ], + "description": "Événement is a very simple event dispatching library for PHP", + "keywords": [ + "event-dispatcher", + "event-emitter" + ], + "support": { + "issues": "https://github.com/igorw/evenement/issues", + "source": "https://github.com/igorw/evenement/tree/master" + }, + "time": "2017-07-23T21:35:13+00:00" + }, + { + "name": "fortawesome/font-awesome", + "version": "6.3.0", + "source": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome.git", + "reference": "d02961b018153506364077343b0edcde0a39d27e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FortAwesome/Font-Awesome/zipball/d02961b018153506364077343b0edcde0a39d27e", + "reference": "d02961b018153506364077343b0edcde0a39d27e", + "shasum": "" + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "CC-BY-4.0", + "OFL-1.1", + "MIT" + ], + "authors": [ + { + "name": "The Font Awesome Team", + "homepage": "https://github.com/orgs/FortAwesome/people" + } + ], + "description": "The iconic font, CSS, and SVG framework", + "homepage": "https://fontawesome.com", + "keywords": [ + "FontAwesome", + "awesome", + "bootstrap", + "font", + "icon", + "svg" + ], + "support": { + "docs": "http://fontawesome.com/docs", + "email": "hello@fontawesome.com", + "issues": "https://github.com/FortAwesome/Font-Awesome/issues", + "source": "https://github.com/FortAwesome/Font-Awesome" + }, + "time": "2023-02-07T19:23:03+00:00" + }, + { + "name": "guzzlehttp/psr7", + "version": "1.9.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/e98e3e6d4f86621a9b75f623996e6bbdeb4b9318", + "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318", + "shasum": "" + }, + "require": { + "php": ">=5.4.0", + "psr/http-message": "~1.0", + "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" + }, + "provide": { + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "ext-zlib": "*", + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/1.9.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" + } + ], + "time": "2022-06-20T21:43:03+00:00" + }, + { + "name": "ipl/html", + "version": "v0.7.0", + "source": { + "type": "git", + "url": "https://github.com/Icinga/ipl-html.git", + "reference": "8740b9efd42607e1b03a792897a9d3d51bc01e7f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Icinga/ipl-html/zipball/8740b9efd42607e1b03a792897a9d3d51bc01e7f", + "reference": "8740b9efd42607e1b03a792897a9d3d51bc01e7f", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "guzzlehttp/psr7": "^1", + "ipl/stdlib": ">=0.12.0", + "ipl/validator": ">=0.5.0", + "php": ">=7.2", + "psr/http-message": "~1.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "ipl\\Html\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Icinga PHP Library - HTML abstraction layer", + "homepage": "https://github.com/Icinga/ipl-html", + "keywords": [ + "html" + ], + "support": { + "issues": "https://github.com/Icinga/ipl-html/issues", + "source": "https://github.com/Icinga/ipl-html/tree/v0.7.0" + }, + "time": "2023-03-22T08:46:36+00:00" + }, + { + "name": "ipl/i18n", + "version": "v0.2.0", + "source": { + "type": "git", + "url": "https://github.com/Icinga/ipl-i18n.git", + "reference": "3ee2a8c0c38879cb743c866d9202f8620d4c2800" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Icinga/ipl-i18n/zipball/3ee2a8c0c38879cb743c866d9202f8620d4c2800", + "reference": "3ee2a8c0c38879cb743c866d9202f8620d4c2800", + "shasum": "" + }, + "require": { + "ext-gettext": "*", + "ext-intl": "*", + "ipl/stdlib": ">=0.12.0", + "php": ">=7.2" + }, + "type": "library", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "ipl\\I18n\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Icinga PHP Library - Internationalization", + "homepage": "https://github.com/Icinga/ipl-i18n", + "keywords": [ + "gettext", + "i18n", + "internationalization", + "localization", + "translation" + ], + "support": { + "issues": "https://github.com/Icinga/ipl-i18n/issues", + "source": "https://github.com/Icinga/ipl-i18n/tree/v0.2.0" + }, + "time": "2022-06-15T07:33:40+00:00" + }, + { + "name": "ipl/orm", + "version": "v0.5.0", + "source": { + "type": "git", + "url": "https://github.com/Icinga/ipl-orm.git", + "reference": "e5d980123f679c3fb24d3000a0b54c400760407c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Icinga/ipl-orm/zipball/e5d980123f679c3fb24d3000a0b54c400760407c", + "reference": "e5d980123f679c3fb24d3000a0b54c400760407c", + "shasum": "" + }, + "require": { + "ext-pdo": "*", + "ipl/sql": ">=0.6.0", + "ipl/stdlib": ">=0.12.0", + "php": ">=7.2" + }, + "require-dev": { + "ext-pdo_sqlite": "*" + }, + "type": "library", + "autoload": { + "psr-4": { + "ipl\\Orm\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Icinga PHP Library - ORM", + "homepage": "https://github.com/Icinga/ipl-orm", + "keywords": [ + "database", + "orm", + "sql" + ], + "support": { + "issues": "https://github.com/Icinga/ipl-orm/issues", + "source": "https://github.com/Icinga/ipl-orm/tree/v0.5.0" + }, + "time": "2023-03-21T16:07:35+00:00" + }, + { + "name": "ipl/scheduler", + "version": "v0.1.0", + "source": { + "type": "git", + "url": "https://github.com/Icinga/ipl-scheduler.git", + "reference": "af643e1a9576dcb7940835ccaeff3f7f4c754662" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Icinga/ipl-scheduler/zipball/af643e1a9576dcb7940835ccaeff3f7f4c754662", + "reference": "af643e1a9576dcb7940835ccaeff3f7f4c754662", + "shasum": "" + }, + "require": { + "dragonmantank/cron-expression": "^3", + "ext-json": "*", + "ipl/stdlib": ">=0.12.0", + "php": ">=7.2", + "psr/log": "^1", + "ramsey/uuid": "^3", + "react/event-loop": "^1", + "react/promise": "^2", + "simshaun/recurr": "^5" + }, + "suggest": { + "ext-ev": "Improves performance, efficiency and avoids system limitations. Highly recommended! (See https://www.php.net/manual/en/intro.ev.php for details)" + }, + "type": "library", + "autoload": { + "files": [ + "src/register_cron_aliases.php" + ], + "psr-4": { + "ipl\\Scheduler\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Icinga PHP Library - Tasks scheduler", + "homepage": "https://github.com/Icinga/ipl-scheduler", + "keywords": [ + "cron", + "job", + "scheduler", + "task" + ], + "support": { + "issues": "https://github.com/Icinga/ipl-scheduler/issues", + "source": "https://github.com/Icinga/ipl-scheduler/tree/v0.1.0" + }, + "time": "2023-03-20T09:38:36+00:00" + }, + { + "name": "ipl/sql", + "version": "v0.6.0", + "source": { + "type": "git", + "url": "https://github.com/Icinga/ipl-sql.git", + "reference": "cb4f5a239bfb5046a4ad7206d77a1c1d82d6cdce" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Icinga/ipl-sql/zipball/cb4f5a239bfb5046a4ad7206d77a1c1d82d6cdce", + "reference": "cb4f5a239bfb5046a4ad7206d77a1c1d82d6cdce", + "shasum": "" + }, + "require": { + "ext-pdo": "*", + "ipl/stdlib": ">=0.12.0", + "php": ">=7.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "ipl\\Sql\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Icinga PHP Library - SQL abstraction layer", + "homepage": "https://github.com/Icinga/ipl-sql", + "keywords": [ + "database", + "sql" + ], + "support": { + "issues": "https://github.com/Icinga/ipl-sql/issues", + "source": "https://github.com/Icinga/ipl-sql/tree/v0.6.0" + }, + "time": "2022-12-13T13:28:14+00:00" + }, + { + "name": "ipl/stdlib", + "version": "v0.12.1", + "source": { + "type": "git", + "url": "https://github.com/Icinga/ipl-stdlib.git", + "reference": "be75213aa3ba1c73756368f17be20a2bcbdeb835" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Icinga/ipl-stdlib/zipball/be75213aa3ba1c73756368f17be20a2bcbdeb835", + "reference": "be75213aa3ba1c73756368f17be20a2bcbdeb835", + "shasum": "" + }, + "require": { + "evenement/evenement": "^3", + "ext-openssl": "*", + "php": ">=7.2" + }, + "type": "library", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "ipl\\Stdlib\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "ipl Standard Library", + "support": { + "issues": "https://github.com/Icinga/ipl-stdlib/issues", + "source": "https://github.com/Icinga/ipl-stdlib/tree/v0.12.1" + }, + "time": "2022-11-25T14:28:31+00:00" + }, + { + "name": "ipl/validator", + "version": "v0.5.0", + "source": { + "type": "git", + "url": "https://github.com/Icinga/ipl-validator.git", + "reference": "a601fae0ed330e63cea50e4a2a6659ca1ad97bde" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Icinga/ipl-validator/zipball/a601fae0ed330e63cea50e4a2a6659ca1ad97bde", + "reference": "a601fae0ed330e63cea50e4a2a6659ca1ad97bde", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "ext-openssl": "*", + "ipl/i18n": ">=0.2.0", + "ipl/stdlib": ">=0.12.0", + "php": ">=7.2", + "psr/http-message": "~1.0" + }, + "require-dev": { + "guzzlehttp/psr7": "^1" + }, + "type": "library", + "autoload": { + "psr-4": { + "ipl\\Validator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Icinga PHP Library - Common validators and validator chaining", + "homepage": "https://github.com/Icinga/ipl-validator", + "support": { + "issues": "https://github.com/Icinga/ipl-validator/issues", + "source": "https://github.com/Icinga/ipl-validator/tree/v0.5.0" + }, + "time": "2023-03-21T15:59:00+00:00" + }, + { + "name": "ipl/web", + "version": "v0.7.0", + "source": { + "type": "git", + "url": "https://github.com/Icinga/ipl-web.git", + "reference": "a4581be0125801e51984a55f96fba7091c707d45" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Icinga/ipl-web/zipball/a4581be0125801e51984a55f96fba7091c707d45", + "reference": "a4581be0125801e51984a55f96fba7091c707d45", + "shasum": "" + }, + "require": { + "ext-json": "*", + "fortawesome/font-awesome": "^6", + "ipl/html": ">=0.7.0", + "ipl/i18n": ">=0.2.0", + "ipl/scheduler": ">=0.1.0", + "ipl/stdlib": ">=0.12.0", + "php": ">=7.2", + "psr/http-message": "^1.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "ipl\\Web\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Icinga PHP Library - Web Components", + "homepage": "https://github.com/Icinga/ipl-web", + "keywords": [ + "html" + ], + "support": { + "issues": "https://github.com/Icinga/ipl-web/issues", + "source": "https://github.com/Icinga/ipl-web/tree/v0.7.0" + }, + "time": "2023-03-22T08:54:16+00:00" + }, + { + "name": "paragonie/random_compat", + "version": "v9.99.100", + "source": { + "type": "git", + "url": "https://github.com/paragonie/random_compat.git", + "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a", + "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a", + "shasum": "" + }, + "require": { + "php": ">= 7" + }, + "require-dev": { + "phpunit/phpunit": "4.*|5.*", + "vimeo/psalm": "^1" + }, + "suggest": { + "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." + }, + "type": "library", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com" + } + ], + "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", + "keywords": [ + "csprng", + "polyfill", + "pseudorandom", + "random" + ], + "support": { + "email": "info@paragonie.com", + "issues": "https://github.com/paragonie/random_compat/issues", + "source": "https://github.com/paragonie/random_compat" + }, + "time": "2020-10-15T08:29:30+00:00" + }, + { + "name": "psr/http-message", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/master" + }, + "time": "2016-08-06T14:39:51+00:00" + }, + { + "name": "psr/log", + "version": "1.1.4", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "d49695b909c3b7628b6289db5479a1c204601f11" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", + "reference": "d49695b909c3b7628b6289db5479a1c204601f11", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "Psr/Log/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/1.1.4" + }, + "time": "2021-05-03T11:20:27+00:00" + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, + "time": "2019-03-08T08:55:37+00:00" + }, + { + "name": "ramsey/uuid", + "version": "3.9.7", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "dc75aa439eb4c1b77f5379fd958b3dc0e6014178" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/dc75aa439eb4c1b77f5379fd958b3dc0e6014178", + "reference": "dc75aa439eb4c1b77f5379fd958b3dc0e6014178", + "shasum": "" + }, + "require": { + "ext-json": "*", + "paragonie/random_compat": "^1 | ^2 | ^9.99.99", + "php": "^5.4 | ^7.0 | ^8.0", + "symfony/polyfill-ctype": "^1.8" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "codeception/aspect-mock": "^1 | ^2", + "doctrine/annotations": "^1.2", + "goaop/framework": "1.0.0-alpha.2 | ^1 | >=2.1.0 <=2.3.2", + "mockery/mockery": "^0.9.11 | ^1", + "moontoast/math": "^1.1", + "nikic/php-parser": "<=4.5.0", + "paragonie/random-lib": "^2", + "php-mock/php-mock-phpunit": "^0.3 | ^1.1 | ^2.6", + "php-parallel-lint/php-parallel-lint": "^1.3", + "phpunit/phpunit": ">=4.8.36 <9.0.0 | >=9.3.0", + "squizlabs/php_codesniffer": "^3.5", + "yoast/phpunit-polyfills": "^1.0" + }, + "suggest": { + "ext-ctype": "Provides support for PHP Ctype functions", + "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator", + "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator", + "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator", + "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).", + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", + "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + }, + "type": "library", + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Ramsey\\Uuid\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + }, + { + "name": "Marijn Huizendveld", + "email": "marijn.huizendveld@gmail.com" + }, + { + "name": "Thibaud Fabre", + "email": "thibaud@aztech.io" + } + ], + "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", + "homepage": "https://github.com/ramsey/uuid", + "keywords": [ + "guid", + "identifier", + "uuid" + ], + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "rss": "https://github.com/ramsey/uuid/releases.atom", + "source": "https://github.com/ramsey/uuid", + "wiki": "https://github.com/ramsey/uuid/wiki" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", + "type": "tidelift" + } + ], + "time": "2022-12-19T21:55:10+00:00" + }, + { + "name": "react/event-loop", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/event-loop.git", + "reference": "187fb56f46d424afb6ec4ad089269c72eec2e137" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/event-loop/zipball/187fb56f46d424afb6ec4ad089269c72eec2e137", + "reference": "187fb56f46d424afb6ec4ad089269c72eec2e137", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35" + }, + "suggest": { + "ext-event": "~1.0 for ExtEventLoop", + "ext-pcntl": "For signal handling support when using the StreamSelectLoop", + "ext-uv": "* for ExtUvLoop" + }, + "type": "library", + "autoload": { + "psr-4": { + "React\\EventLoop\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.", + "keywords": [ + "asynchronous", + "event-loop" + ], + "support": { + "issues": "https://github.com/reactphp/event-loop/issues", + "source": "https://github.com/reactphp/event-loop/tree/v1.3.0" + }, + "funding": [ + { + "url": "https://github.com/WyriHaximus", + "type": "github" + }, + { + "url": "https://github.com/clue", + "type": "github" + } + ], + "time": "2022-03-17T11:10:22+00:00" + }, + { + "name": "react/promise", + "version": "v2.9.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/promise.git", + "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/promise/zipball/234f8fd1023c9158e2314fa9d7d0e6a83db42910", + "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910", + "shasum": "" + }, + "require": { + "php": ">=5.4.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36" + }, + "type": "library", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "React\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "A lightweight implementation of CommonJS Promises/A for PHP", + "keywords": [ + "promise", + "promises" + ], + "support": { + "issues": "https://github.com/reactphp/promise/issues", + "source": "https://github.com/reactphp/promise/tree/v2.9.0" + }, + "funding": [ + { + "url": "https://github.com/WyriHaximus", + "type": "github" + }, + { + "url": "https://github.com/clue", + "type": "github" + } + ], + "time": "2022-02-11T10:27:51+00:00" + }, + { + "name": "simshaun/recurr", + "version": "v5.0.1", + "source": { + "type": "git", + "url": "https://github.com/simshaun/recurr.git", + "reference": "6887b7bd7075de97c8c69835e0939ff68d23c47e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/simshaun/recurr/zipball/6887b7bd7075de97c8c69835e0939ff68d23c47e", + "reference": "6887b7bd7075de97c8c69835e0939ff68d23c47e", + "shasum": "" + }, + "require": { + "doctrine/collections": "~1.6", + "php": "^7.2||^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.16", + "symfony/yaml": "^5.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Recurr\\": "src/Recurr/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Shaun Simmons", + "email": "shaun@shaun.pub", + "homepage": "https://shaun.pub" + } + ], + "description": "PHP library for working with recurrence rules", + "homepage": "https://github.com/simshaun/recurr", + "keywords": [ + "dates", + "events", + "recurrence", + "recurring", + "rrule" + ], + "support": { + "issues": "https://github.com/simshaun/recurr/issues", + "source": "https://github.com/simshaun/recurr/tree/v5.0.1" + }, + "time": "2022-09-09T05:37:22+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.27.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "5bbc823adecdae860bb64756d639ecfec17b050a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a", + "reference": "5bbc823adecdae860bb64756d639ecfec17b050a", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2022-11-03T14:55:06+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.0" + }, + "time": "2022-06-03T18:03:27+00:00" + } + ], + "packages-dev": [], + "aliases": [], + "minimum-stability": "stable", + "stability-flags": [], + "prefer-stable": false, + "prefer-lowest": false, + "platform": { + "php": ">=7.2" + }, + "platform-dev": [], + "platform-overrides": { + "php": "7.2" + }, + "plugin-api-version": "2.3.0" +} diff --git a/vendor/autoload.php b/vendor/autoload.php new file mode 100644 index 00000000..96df62fc --- /dev/null +++ b/vendor/autoload.php @@ -0,0 +1,25 @@ + + * Jordi Boggiano + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Composer\Autoload; + +/** + * ClassLoader implements a PSR-0, PSR-4 and classmap class loader. + * + * $loader = new \Composer\Autoload\ClassLoader(); + * + * // register classes with namespaces + * $loader->add('Symfony\Component', __DIR__.'/component'); + * $loader->add('Symfony', __DIR__.'/framework'); + * + * // activate the autoloader + * $loader->register(); + * + * // to enable searching the include path (eg. for PEAR packages) + * $loader->setUseIncludePath(true); + * + * In this example, if you try to use a class in the Symfony\Component + * namespace or one of its children (Symfony\Component\Console for instance), + * the autoloader will first look for the class under the component/ + * directory, and it will then fallback to the framework/ directory if not + * found before giving up. + * + * This class is loosely based on the Symfony UniversalClassLoader. + * + * @author Fabien Potencier + * @author Jordi Boggiano + * @see https://www.php-fig.org/psr/psr-0/ + * @see https://www.php-fig.org/psr/psr-4/ + */ +class ClassLoader +{ + /** @var \Closure(string):void */ + private static $includeFile; + + /** @var ?string */ + private $vendorDir; + + // PSR-4 + /** + * @var array[] + * @psalm-var array> + */ + private $prefixLengthsPsr4 = array(); + /** + * @var array[] + * @psalm-var array> + */ + private $prefixDirsPsr4 = array(); + /** + * @var array[] + * @psalm-var array + */ + private $fallbackDirsPsr4 = array(); + + // PSR-0 + /** + * @var array[] + * @psalm-var array> + */ + private $prefixesPsr0 = array(); + /** + * @var array[] + * @psalm-var array + */ + private $fallbackDirsPsr0 = array(); + + /** @var bool */ + private $useIncludePath = false; + + /** + * @var string[] + * @psalm-var array + */ + private $classMap = array(); + + /** @var bool */ + private $classMapAuthoritative = false; + + /** + * @var bool[] + * @psalm-var array + */ + private $missingClasses = array(); + + /** @var ?string */ + private $apcuPrefix; + + /** + * @var self[] + */ + private static $registeredLoaders = array(); + + /** + * @param ?string $vendorDir + */ + public function __construct($vendorDir = null) + { + $this->vendorDir = $vendorDir; + self::initializeIncludeClosure(); + } + + /** + * @return string[] + */ + public function getPrefixes() + { + if (!empty($this->prefixesPsr0)) { + return call_user_func_array('array_merge', array_values($this->prefixesPsr0)); + } + + return array(); + } + + /** + * @return array[] + * @psalm-return array> + */ + public function getPrefixesPsr4() + { + return $this->prefixDirsPsr4; + } + + /** + * @return array[] + * @psalm-return array + */ + public function getFallbackDirs() + { + return $this->fallbackDirsPsr0; + } + + /** + * @return array[] + * @psalm-return array + */ + public function getFallbackDirsPsr4() + { + return $this->fallbackDirsPsr4; + } + + /** + * @return string[] Array of classname => path + * @psalm-return array + */ + public function getClassMap() + { + return $this->classMap; + } + + /** + * @param string[] $classMap Class to filename map + * @psalm-param array $classMap + * + * @return void + */ + public function addClassMap(array $classMap) + { + if ($this->classMap) { + $this->classMap = array_merge($this->classMap, $classMap); + } else { + $this->classMap = $classMap; + } + } + + /** + * Registers a set of PSR-0 directories for a given prefix, either + * appending or prepending to the ones previously set for this prefix. + * + * @param string $prefix The prefix + * @param string[]|string $paths The PSR-0 root directories + * @param bool $prepend Whether to prepend the directories + * + * @return void + */ + public function add($prefix, $paths, $prepend = false) + { + if (!$prefix) { + if ($prepend) { + $this->fallbackDirsPsr0 = array_merge( + (array) $paths, + $this->fallbackDirsPsr0 + ); + } else { + $this->fallbackDirsPsr0 = array_merge( + $this->fallbackDirsPsr0, + (array) $paths + ); + } + + return; + } + + $first = $prefix[0]; + if (!isset($this->prefixesPsr0[$first][$prefix])) { + $this->prefixesPsr0[$first][$prefix] = (array) $paths; + + return; + } + if ($prepend) { + $this->prefixesPsr0[$first][$prefix] = array_merge( + (array) $paths, + $this->prefixesPsr0[$first][$prefix] + ); + } else { + $this->prefixesPsr0[$first][$prefix] = array_merge( + $this->prefixesPsr0[$first][$prefix], + (array) $paths + ); + } + } + + /** + * Registers a set of PSR-4 directories for a given namespace, either + * appending or prepending to the ones previously set for this namespace. + * + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param string[]|string $paths The PSR-4 base directories + * @param bool $prepend Whether to prepend the directories + * + * @throws \InvalidArgumentException + * + * @return void + */ + public function addPsr4($prefix, $paths, $prepend = false) + { + if (!$prefix) { + // Register directories for the root namespace. + if ($prepend) { + $this->fallbackDirsPsr4 = array_merge( + (array) $paths, + $this->fallbackDirsPsr4 + ); + } else { + $this->fallbackDirsPsr4 = array_merge( + $this->fallbackDirsPsr4, + (array) $paths + ); + } + } elseif (!isset($this->prefixDirsPsr4[$prefix])) { + // Register directories for a new namespace. + $length = strlen($prefix); + if ('\\' !== $prefix[$length - 1]) { + throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); + } + $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; + $this->prefixDirsPsr4[$prefix] = (array) $paths; + } elseif ($prepend) { + // Prepend directories for an already registered namespace. + $this->prefixDirsPsr4[$prefix] = array_merge( + (array) $paths, + $this->prefixDirsPsr4[$prefix] + ); + } else { + // Append directories for an already registered namespace. + $this->prefixDirsPsr4[$prefix] = array_merge( + $this->prefixDirsPsr4[$prefix], + (array) $paths + ); + } + } + + /** + * Registers a set of PSR-0 directories for a given prefix, + * replacing any others previously set for this prefix. + * + * @param string $prefix The prefix + * @param string[]|string $paths The PSR-0 base directories + * + * @return void + */ + public function set($prefix, $paths) + { + if (!$prefix) { + $this->fallbackDirsPsr0 = (array) $paths; + } else { + $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; + } + } + + /** + * Registers a set of PSR-4 directories for a given namespace, + * replacing any others previously set for this namespace. + * + * @param string $prefix The prefix/namespace, with trailing '\\' + * @param string[]|string $paths The PSR-4 base directories + * + * @throws \InvalidArgumentException + * + * @return void + */ + public function setPsr4($prefix, $paths) + { + if (!$prefix) { + $this->fallbackDirsPsr4 = (array) $paths; + } else { + $length = strlen($prefix); + if ('\\' !== $prefix[$length - 1]) { + throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); + } + $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; + $this->prefixDirsPsr4[$prefix] = (array) $paths; + } + } + + /** + * Turns on searching the include path for class files. + * + * @param bool $useIncludePath + * + * @return void + */ + public function setUseIncludePath($useIncludePath) + { + $this->useIncludePath = $useIncludePath; + } + + /** + * Can be used to check if the autoloader uses the include path to check + * for classes. + * + * @return bool + */ + public function getUseIncludePath() + { + return $this->useIncludePath; + } + + /** + * Turns off searching the prefix and fallback directories for classes + * that have not been registered with the class map. + * + * @param bool $classMapAuthoritative + * + * @return void + */ + public function setClassMapAuthoritative($classMapAuthoritative) + { + $this->classMapAuthoritative = $classMapAuthoritative; + } + + /** + * Should class lookup fail if not found in the current class map? + * + * @return bool + */ + public function isClassMapAuthoritative() + { + return $this->classMapAuthoritative; + } + + /** + * APCu prefix to use to cache found/not-found classes, if the extension is enabled. + * + * @param string|null $apcuPrefix + * + * @return void + */ + public function setApcuPrefix($apcuPrefix) + { + $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; + } + + /** + * The APCu prefix in use, or null if APCu caching is not enabled. + * + * @return string|null + */ + public function getApcuPrefix() + { + return $this->apcuPrefix; + } + + /** + * Registers this instance as an autoloader. + * + * @param bool $prepend Whether to prepend the autoloader or not + * + * @return void + */ + public function register($prepend = false) + { + spl_autoload_register(array($this, 'loadClass'), true, $prepend); + + if (null === $this->vendorDir) { + return; + } + + if ($prepend) { + self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders; + } else { + unset(self::$registeredLoaders[$this->vendorDir]); + self::$registeredLoaders[$this->vendorDir] = $this; + } + } + + /** + * Unregisters this instance as an autoloader. + * + * @return void + */ + public function unregister() + { + spl_autoload_unregister(array($this, 'loadClass')); + + if (null !== $this->vendorDir) { + unset(self::$registeredLoaders[$this->vendorDir]); + } + } + + /** + * Loads the given class or interface. + * + * @param string $class The name of the class + * @return true|null True if loaded, null otherwise + */ + public function loadClass($class) + { + if ($file = $this->findFile($class)) { + $includeFile = self::$includeFile; + $includeFile($file); + + return true; + } + + return null; + } + + /** + * Finds the path to the file where the class is defined. + * + * @param string $class The name of the class + * + * @return string|false The path if found, false otherwise + */ + public function findFile($class) + { + // class map lookup + if (isset($this->classMap[$class])) { + return $this->classMap[$class]; + } + if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { + return false; + } + if (null !== $this->apcuPrefix) { + $file = apcu_fetch($this->apcuPrefix.$class, $hit); + if ($hit) { + return $file; + } + } + + $file = $this->findFileWithExtension($class, '.php'); + + // Search for Hack files if we are running on HHVM + if (false === $file && defined('HHVM_VERSION')) { + $file = $this->findFileWithExtension($class, '.hh'); + } + + if (null !== $this->apcuPrefix) { + apcu_add($this->apcuPrefix.$class, $file); + } + + if (false === $file) { + // Remember that this class does not exist. + $this->missingClasses[$class] = true; + } + + return $file; + } + + /** + * Returns the currently registered loaders indexed by their corresponding vendor directories. + * + * @return self[] + */ + public static function getRegisteredLoaders() + { + return self::$registeredLoaders; + } + + /** + * @param string $class + * @param string $ext + * @return string|false + */ + private function findFileWithExtension($class, $ext) + { + // PSR-4 lookup + $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; + + $first = $class[0]; + if (isset($this->prefixLengthsPsr4[$first])) { + $subPath = $class; + while (false !== $lastPos = strrpos($subPath, '\\')) { + $subPath = substr($subPath, 0, $lastPos); + $search = $subPath . '\\'; + if (isset($this->prefixDirsPsr4[$search])) { + $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); + foreach ($this->prefixDirsPsr4[$search] as $dir) { + if (file_exists($file = $dir . $pathEnd)) { + return $file; + } + } + } + } + } + + // PSR-4 fallback dirs + foreach ($this->fallbackDirsPsr4 as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { + return $file; + } + } + + // PSR-0 lookup + if (false !== $pos = strrpos($class, '\\')) { + // namespaced class name + $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) + . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); + } else { + // PEAR-like class name + $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; + } + + if (isset($this->prefixesPsr0[$first])) { + foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { + if (0 === strpos($class, $prefix)) { + foreach ($dirs as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { + return $file; + } + } + } + } + } + + // PSR-0 fallback dirs + foreach ($this->fallbackDirsPsr0 as $dir) { + if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { + return $file; + } + } + + // PSR-0 include paths. + if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { + return $file; + } + + return false; + } + + /** + * @return void + */ + private static function initializeIncludeClosure() + { + if (self::$includeFile !== null) { + return; + } + + /** + * Scope isolated include. + * + * Prevents access to $this/self from included files. + * + * @param string $file + * @return void + */ + self::$includeFile = \Closure::bind(static function($file) { + include $file; + }, null, null); + } +} diff --git a/vendor/composer/InstalledVersions.php b/vendor/composer/InstalledVersions.php new file mode 100644 index 00000000..c6b54af7 --- /dev/null +++ b/vendor/composer/InstalledVersions.php @@ -0,0 +1,352 @@ + + * Jordi Boggiano + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Composer; + +use Composer\Autoload\ClassLoader; +use Composer\Semver\VersionParser; + +/** + * This class is copied in every Composer installed project and available to all + * + * See also https://getcomposer.org/doc/07-runtime.md#installed-versions + * + * To require its presence, you can require `composer-runtime-api ^2.0` + * + * @final + */ +class InstalledVersions +{ + /** + * @var mixed[]|null + * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array}|array{}|null + */ + private static $installed; + + /** + * @var bool|null + */ + private static $canGetVendors; + + /** + * @var array[] + * @psalm-var array}> + */ + private static $installedByVendor = array(); + + /** + * Returns a list of all package names which are present, either by being installed, replaced or provided + * + * @return string[] + * @psalm-return list + */ + public static function getInstalledPackages() + { + $packages = array(); + foreach (self::getInstalled() as $installed) { + $packages[] = array_keys($installed['versions']); + } + + if (1 === \count($packages)) { + return $packages[0]; + } + + return array_keys(array_flip(\call_user_func_array('array_merge', $packages))); + } + + /** + * Returns a list of all package names with a specific type e.g. 'library' + * + * @param string $type + * @return string[] + * @psalm-return list + */ + public static function getInstalledPackagesByType($type) + { + $packagesByType = array(); + + foreach (self::getInstalled() as $installed) { + foreach ($installed['versions'] as $name => $package) { + if (isset($package['type']) && $package['type'] === $type) { + $packagesByType[] = $name; + } + } + } + + return $packagesByType; + } + + /** + * Checks whether the given package is installed + * + * This also returns true if the package name is provided or replaced by another package + * + * @param string $packageName + * @param bool $includeDevRequirements + * @return bool + */ + public static function isInstalled($packageName, $includeDevRequirements = true) + { + foreach (self::getInstalled() as $installed) { + if (isset($installed['versions'][$packageName])) { + return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']); + } + } + + return false; + } + + /** + * Checks whether the given package satisfies a version constraint + * + * e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call: + * + * Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3') + * + * @param VersionParser $parser Install composer/semver to have access to this class and functionality + * @param string $packageName + * @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package + * @return bool + */ + public static function satisfies(VersionParser $parser, $packageName, $constraint) + { + $constraint = $parser->parseConstraints($constraint); + $provided = $parser->parseConstraints(self::getVersionRanges($packageName)); + + return $provided->matches($constraint); + } + + /** + * Returns a version constraint representing all the range(s) which are installed for a given package + * + * It is easier to use this via isInstalled() with the $constraint argument if you need to check + * whether a given version of a package is installed, and not just whether it exists + * + * @param string $packageName + * @return string Version constraint usable with composer/semver + */ + public static function getVersionRanges($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + $ranges = array(); + if (isset($installed['versions'][$packageName]['pretty_version'])) { + $ranges[] = $installed['versions'][$packageName]['pretty_version']; + } + if (array_key_exists('aliases', $installed['versions'][$packageName])) { + $ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']); + } + if (array_key_exists('replaced', $installed['versions'][$packageName])) { + $ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']); + } + if (array_key_exists('provided', $installed['versions'][$packageName])) { + $ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']); + } + + return implode(' || ', $ranges); + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present + */ + public static function getVersion($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + if (!isset($installed['versions'][$packageName]['version'])) { + return null; + } + + return $installed['versions'][$packageName]['version']; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present + */ + public static function getPrettyVersion($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + if (!isset($installed['versions'][$packageName]['pretty_version'])) { + return null; + } + + return $installed['versions'][$packageName]['pretty_version']; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference + */ + public static function getReference($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + if (!isset($installed['versions'][$packageName]['reference'])) { + return null; + } + + return $installed['versions'][$packageName]['reference']; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @param string $packageName + * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path. + */ + public static function getInstallPath($packageName) + { + foreach (self::getInstalled() as $installed) { + if (!isset($installed['versions'][$packageName])) { + continue; + } + + return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; + } + + throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); + } + + /** + * @return array + * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool} + */ + public static function getRootPackage() + { + $installed = self::getInstalled(); + + return $installed[0]['root']; + } + + /** + * Returns the raw installed.php data for custom implementations + * + * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect. + * @return array[] + * @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array} + */ + public static function getRawData() + { + @trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED); + + if (null === self::$installed) { + // only require the installed.php file if this file is loaded from its dumped location, + // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 + if (substr(__DIR__, -8, 1) !== 'C') { + self::$installed = include __DIR__ . '/installed.php'; + } else { + self::$installed = array(); + } + } + + return self::$installed; + } + + /** + * Returns the raw data of all installed.php which are currently loaded for custom implementations + * + * @return array[] + * @psalm-return list}> + */ + public static function getAllRawData() + { + return self::getInstalled(); + } + + /** + * Lets you reload the static array from another file + * + * This is only useful for complex integrations in which a project needs to use + * this class but then also needs to execute another project's autoloader in process, + * and wants to ensure both projects have access to their version of installed.php. + * + * A typical case would be PHPUnit, where it would need to make sure it reads all + * the data it needs from this class, then call reload() with + * `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure + * the project in which it runs can then also use this class safely, without + * interference between PHPUnit's dependencies and the project's dependencies. + * + * @param array[] $data A vendor/composer/installed.php data set + * @return void + * + * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array} $data + */ + public static function reload($data) + { + self::$installed = $data; + self::$installedByVendor = array(); + } + + /** + * @return array[] + * @psalm-return list}> + */ + private static function getInstalled() + { + if (null === self::$canGetVendors) { + self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders'); + } + + $installed = array(); + + if (self::$canGetVendors) { + foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) { + if (isset(self::$installedByVendor[$vendorDir])) { + $installed[] = self::$installedByVendor[$vendorDir]; + } elseif (is_file($vendorDir.'/composer/installed.php')) { + $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php'; + if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) { + self::$installed = $installed[count($installed) - 1]; + } + } + } + } + + if (null === self::$installed) { + // only require the installed.php file if this file is loaded from its dumped location, + // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 + if (substr(__DIR__, -8, 1) !== 'C') { + self::$installed = require __DIR__ . '/installed.php'; + } else { + self::$installed = array(); + } + } + $installed[] = self::$installed; + + return $installed; + } +} diff --git a/vendor/composer/LICENSE b/vendor/composer/LICENSE new file mode 100644 index 00000000..f27399a0 --- /dev/null +++ b/vendor/composer/LICENSE @@ -0,0 +1,21 @@ + +Copyright (c) Nils Adermann, Jordi Boggiano + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php new file mode 100644 index 00000000..0fb0a2c1 --- /dev/null +++ b/vendor/composer/autoload_classmap.php @@ -0,0 +1,10 @@ + $vendorDir . '/composer/InstalledVersions.php', +); diff --git a/vendor/composer/autoload_files.php b/vendor/composer/autoload_files.php new file mode 100644 index 00000000..59542c0b --- /dev/null +++ b/vendor/composer/autoload_files.php @@ -0,0 +1,17 @@ + $vendorDir . '/ipl/stdlib/src/functions_include.php', + '6076de347104821999fcfc82c8f19bc5' => $vendorDir . '/ipl/i18n/src/functions_include.php', + '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php', + '320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php', + 'a0edc8309cc5e1d60e3047b5df6b7052' => $vendorDir . '/guzzlehttp/psr7/src/functions_include.php', + 'e39a8b23c42d4e1452234d762b03835a' => $vendorDir . '/ramsey/uuid/src/functions.php', + 'ad155f8f1cf0d418fe49e248db8c661b' => $vendorDir . '/react/promise/src/functions_include.php', + '8e4ccce73649a2b516ec3b4571432da5' => $vendorDir . '/ipl/scheduler/src/register_cron_aliases.php', +); diff --git a/vendor/composer/autoload_namespaces.php b/vendor/composer/autoload_namespaces.php new file mode 100644 index 00000000..46791af8 --- /dev/null +++ b/vendor/composer/autoload_namespaces.php @@ -0,0 +1,11 @@ + array($vendorDir . '/evenement/evenement/src'), + 'AssetLoader' => array($baseDir . '/'), +); diff --git a/vendor/composer/autoload_psr4.php b/vendor/composer/autoload_psr4.php new file mode 100644 index 00000000..c87ee905 --- /dev/null +++ b/vendor/composer/autoload_psr4.php @@ -0,0 +1,29 @@ + array($vendorDir . '/ipl/web/src'), + 'ipl\\Validator\\' => array($vendorDir . '/ipl/validator/src'), + 'ipl\\Stdlib\\' => array($vendorDir . '/ipl/stdlib/src'), + 'ipl\\Sql\\' => array($vendorDir . '/ipl/sql/src'), + 'ipl\\Scheduler\\' => array($vendorDir . '/ipl/scheduler/src'), + 'ipl\\Orm\\' => array($vendorDir . '/ipl/orm/src'), + 'ipl\\I18n\\' => array($vendorDir . '/ipl/i18n/src'), + 'ipl\\Html\\' => array($vendorDir . '/ipl/html/src'), + 'Webmozart\\Assert\\' => array($vendorDir . '/webmozart/assert/src'), + 'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'), + 'Recurr\\' => array($vendorDir . '/simshaun/recurr/src/Recurr'), + 'React\\Promise\\' => array($vendorDir . '/react/promise/src'), + 'React\\EventLoop\\' => array($vendorDir . '/react/event-loop/src'), + 'Ramsey\\Uuid\\' => array($vendorDir . '/ramsey/uuid/src'), + 'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'), + 'Psr\\Http\\Message\\' => array($vendorDir . '/psr/http-message/src'), + 'GuzzleHttp\\Psr7\\' => array($vendorDir . '/guzzlehttp/psr7/src'), + 'Doctrine\\Deprecations\\' => array($vendorDir . '/doctrine/deprecations/lib/Doctrine/Deprecations'), + 'Doctrine\\Common\\Collections\\' => array($vendorDir . '/doctrine/collections/lib/Doctrine/Common/Collections'), + 'Cron\\' => array($vendorDir . '/dragonmantank/cron-expression/src/Cron'), +); diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php new file mode 100644 index 00000000..3297dc10 --- /dev/null +++ b/vendor/composer/autoload_real.php @@ -0,0 +1,50 @@ +register(true); + + $filesToLoad = \Composer\Autoload\ComposerStaticInite88feb5c897873e255ff292302ab54b2::$files; + $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { + if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { + $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; + + require $file; + } + }, null, null); + foreach ($filesToLoad as $fileIdentifier => $file) { + $requireFile($fileIdentifier, $file); + } + + return $loader; + } +} diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php new file mode 100644 index 00000000..227f0fcc --- /dev/null +++ b/vendor/composer/autoload_static.php @@ -0,0 +1,181 @@ + __DIR__ . '/..' . '/ipl/stdlib/src/functions_include.php', + '6076de347104821999fcfc82c8f19bc5' => __DIR__ . '/..' . '/ipl/i18n/src/functions_include.php', + '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php', + '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php', + 'a0edc8309cc5e1d60e3047b5df6b7052' => __DIR__ . '/..' . '/guzzlehttp/psr7/src/functions_include.php', + 'e39a8b23c42d4e1452234d762b03835a' => __DIR__ . '/..' . '/ramsey/uuid/src/functions.php', + 'ad155f8f1cf0d418fe49e248db8c661b' => __DIR__ . '/..' . '/react/promise/src/functions_include.php', + '8e4ccce73649a2b516ec3b4571432da5' => __DIR__ . '/..' . '/ipl/scheduler/src/register_cron_aliases.php', + ); + + public static $prefixLengthsPsr4 = array ( + 'i' => + array ( + 'ipl\\Web\\' => 8, + 'ipl\\Validator\\' => 14, + 'ipl\\Stdlib\\' => 11, + 'ipl\\Sql\\' => 8, + 'ipl\\Scheduler\\' => 14, + 'ipl\\Orm\\' => 8, + 'ipl\\I18n\\' => 9, + 'ipl\\Html\\' => 9, + ), + 'W' => + array ( + 'Webmozart\\Assert\\' => 17, + ), + 'S' => + array ( + 'Symfony\\Polyfill\\Ctype\\' => 23, + ), + 'R' => + array ( + 'Recurr\\' => 7, + 'React\\Promise\\' => 14, + 'React\\EventLoop\\' => 16, + 'Ramsey\\Uuid\\' => 12, + ), + 'P' => + array ( + 'Psr\\Log\\' => 8, + 'Psr\\Http\\Message\\' => 17, + ), + 'G' => + array ( + 'GuzzleHttp\\Psr7\\' => 16, + ), + 'D' => + array ( + 'Doctrine\\Deprecations\\' => 22, + 'Doctrine\\Common\\Collections\\' => 28, + ), + 'C' => + array ( + 'Cron\\' => 5, + ), + ); + + public static $prefixDirsPsr4 = array ( + 'ipl\\Web\\' => + array ( + 0 => __DIR__ . '/..' . '/ipl/web/src', + ), + 'ipl\\Validator\\' => + array ( + 0 => __DIR__ . '/..' . '/ipl/validator/src', + ), + 'ipl\\Stdlib\\' => + array ( + 0 => __DIR__ . '/..' . '/ipl/stdlib/src', + ), + 'ipl\\Sql\\' => + array ( + 0 => __DIR__ . '/..' . '/ipl/sql/src', + ), + 'ipl\\Scheduler\\' => + array ( + 0 => __DIR__ . '/..' . '/ipl/scheduler/src', + ), + 'ipl\\Orm\\' => + array ( + 0 => __DIR__ . '/..' . '/ipl/orm/src', + ), + 'ipl\\I18n\\' => + array ( + 0 => __DIR__ . '/..' . '/ipl/i18n/src', + ), + 'ipl\\Html\\' => + array ( + 0 => __DIR__ . '/..' . '/ipl/html/src', + ), + 'Webmozart\\Assert\\' => + array ( + 0 => __DIR__ . '/..' . '/webmozart/assert/src', + ), + 'Symfony\\Polyfill\\Ctype\\' => + array ( + 0 => __DIR__ . '/..' . '/symfony/polyfill-ctype', + ), + 'Recurr\\' => + array ( + 0 => __DIR__ . '/..' . '/simshaun/recurr/src/Recurr', + ), + 'React\\Promise\\' => + array ( + 0 => __DIR__ . '/..' . '/react/promise/src', + ), + 'React\\EventLoop\\' => + array ( + 0 => __DIR__ . '/..' . '/react/event-loop/src', + ), + 'Ramsey\\Uuid\\' => + array ( + 0 => __DIR__ . '/..' . '/ramsey/uuid/src', + ), + 'Psr\\Log\\' => + array ( + 0 => __DIR__ . '/..' . '/psr/log/Psr/Log', + ), + 'Psr\\Http\\Message\\' => + array ( + 0 => __DIR__ . '/..' . '/psr/http-message/src', + ), + 'GuzzleHttp\\Psr7\\' => + array ( + 0 => __DIR__ . '/..' . '/guzzlehttp/psr7/src', + ), + 'Doctrine\\Deprecations\\' => + array ( + 0 => __DIR__ . '/..' . '/doctrine/deprecations/lib/Doctrine/Deprecations', + ), + 'Doctrine\\Common\\Collections\\' => + array ( + 0 => __DIR__ . '/..' . '/doctrine/collections/lib/Doctrine/Common/Collections', + ), + 'Cron\\' => + array ( + 0 => __DIR__ . '/..' . '/dragonmantank/cron-expression/src/Cron', + ), + ); + + public static $prefixesPsr0 = array ( + 'E' => + array ( + 'Evenement' => + array ( + 0 => __DIR__ . '/..' . '/evenement/evenement/src', + ), + ), + 'A' => + array ( + 'AssetLoader' => + array ( + 0 => __DIR__ . '/../..' . '/', + ), + ), + ); + + public static $classMap = array ( + 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', + ); + + public static function getInitializer(ClassLoader $loader) + { + return \Closure::bind(function () use ($loader) { + $loader->prefixLengthsPsr4 = ComposerStaticInite88feb5c897873e255ff292302ab54b2::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInite88feb5c897873e255ff292302ab54b2::$prefixDirsPsr4; + $loader->prefixesPsr0 = ComposerStaticInite88feb5c897873e255ff292302ab54b2::$prefixesPsr0; + $loader->classMap = ComposerStaticInite88feb5c897873e255ff292302ab54b2::$classMap; + + }, null, ClassLoader::class); + } +} diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json new file mode 100644 index 00000000..15b2c437 --- /dev/null +++ b/vendor/composer/installed.json @@ -0,0 +1,1464 @@ +{ + "packages": [ + { + "name": "doctrine/collections", + "version": "1.8.0", + "version_normalized": "1.8.0.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/collections.git", + "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/collections/zipball/2b44dd4cbca8b5744327de78bafef5945c7e7b5e", + "reference": "2b44dd4cbca8b5744327de78bafef5945c7e7b5e", + "shasum": "" + }, + "require": { + "doctrine/deprecations": "^0.5.3 || ^1", + "php": "^7.1.3 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9.0 || ^10.0", + "phpstan/phpstan": "^1.4.8", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5", + "vimeo/psalm": "^4.22" + }, + "time": "2022-09-01T20:12:10+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", + "homepage": "https://www.doctrine-project.org/projects/collections.html", + "keywords": [ + "array", + "collections", + "iterators", + "php" + ], + "support": { + "issues": "https://github.com/doctrine/collections/issues", + "source": "https://github.com/doctrine/collections/tree/1.8.0" + }, + "install-path": "../doctrine/collections" + }, + { + "name": "doctrine/deprecations", + "version": "v1.0.0", + "version_normalized": "1.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/deprecations.git", + "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", + "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", + "shasum": "" + }, + "require": { + "php": "^7.1|^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^9", + "phpunit/phpunit": "^7.5|^8.5|^9.5", + "psr/log": "^1|^2|^3" + }, + "suggest": { + "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + }, + "time": "2022-05-02T15:47:09+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", + "homepage": "https://www.doctrine-project.org/", + "support": { + "issues": "https://github.com/doctrine/deprecations/issues", + "source": "https://github.com/doctrine/deprecations/tree/v1.0.0" + }, + "install-path": "../doctrine/deprecations" + }, + { + "name": "dragonmantank/cron-expression", + "version": "v3.3.2", + "version_normalized": "3.3.2.0", + "source": { + "type": "git", + "url": "https://github.com/dragonmantank/cron-expression.git", + "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/782ca5968ab8b954773518e9e49a6f892a34b2a8", + "reference": "782ca5968ab8b954773518e9e49a6f892a34b2a8", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0", + "webmozart/assert": "^1.0" + }, + "replace": { + "mtdowling/cron-expression": "^1.0" + }, + "require-dev": { + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-webmozart-assert": "^1.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0" + }, + "time": "2022-09-10T18:51:20+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": [ + "cron", + "schedule" + ], + "support": { + "issues": "https://github.com/dragonmantank/cron-expression/issues", + "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.2" + }, + "funding": [ + { + "url": "https://github.com/dragonmantank", + "type": "github" + } + ], + "install-path": "../dragonmantank/cron-expression" + }, + { + "name": "evenement/evenement", + "version": "v3.0.1", + "version_normalized": "3.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/igorw/evenement.git", + "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/igorw/evenement/zipball/531bfb9d15f8aa57454f5f0285b18bec903b8fb7", + "reference": "531bfb9d15f8aa57454f5f0285b18bec903b8fb7", + "shasum": "" + }, + "require": { + "php": ">=7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "time": "2017-07-23T21:35:13+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-0": { + "Evenement": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" + } + ], + "description": "Événement is a very simple event dispatching library for PHP", + "keywords": [ + "event-dispatcher", + "event-emitter" + ], + "support": { + "issues": "https://github.com/igorw/evenement/issues", + "source": "https://github.com/igorw/evenement/tree/master" + }, + "install-path": "../evenement/evenement" + }, + { + "name": "fortawesome/font-awesome", + "version": "6.3.0", + "version_normalized": "6.3.0.0", + "source": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome.git", + "reference": "d02961b018153506364077343b0edcde0a39d27e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FortAwesome/Font-Awesome/zipball/d02961b018153506364077343b0edcde0a39d27e", + "reference": "d02961b018153506364077343b0edcde0a39d27e", + "shasum": "" + }, + "time": "2023-02-07T19:23:03+00:00", + "type": "library", + "installation-source": "dist", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "CC-BY-4.0", + "OFL-1.1", + "MIT" + ], + "authors": [ + { + "name": "The Font Awesome Team", + "homepage": "https://github.com/orgs/FortAwesome/people" + } + ], + "description": "The iconic font, CSS, and SVG framework", + "homepage": "https://fontawesome.com", + "keywords": [ + "FontAwesome", + "awesome", + "bootstrap", + "font", + "icon", + "svg" + ], + "support": { + "docs": "http://fontawesome.com/docs", + "email": "hello@fontawesome.com", + "issues": "https://github.com/FortAwesome/Font-Awesome/issues", + "source": "https://github.com/FortAwesome/Font-Awesome" + }, + "install-path": "../fortawesome/font-awesome" + }, + { + "name": "guzzlehttp/psr7", + "version": "1.9.0", + "version_normalized": "1.9.0.0", + "source": { + "type": "git", + "url": "https://github.com/guzzle/psr7.git", + "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/e98e3e6d4f86621a9b75f623996e6bbdeb4b9318", + "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318", + "shasum": "" + }, + "require": { + "php": ">=5.4.0", + "psr/http-message": "~1.0", + "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" + }, + "provide": { + "psr/http-message-implementation": "1.0" + }, + "require-dev": { + "ext-zlib": "*", + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "time": "2022-06-20T21:43:03+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "installation-source": "dist", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": [ + "http", + "message", + "psr-7", + "request", + "response", + "stream", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/1.9.0" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://github.com/Nyholm", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", + "type": "tidelift" + } + ], + "install-path": "../guzzlehttp/psr7" + }, + { + "name": "ipl/html", + "version": "v0.7.0", + "version_normalized": "0.7.0.0", + "source": { + "type": "git", + "url": "https://github.com/Icinga/ipl-html.git", + "reference": "8740b9efd42607e1b03a792897a9d3d51bc01e7f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Icinga/ipl-html/zipball/8740b9efd42607e1b03a792897a9d3d51bc01e7f", + "reference": "8740b9efd42607e1b03a792897a9d3d51bc01e7f", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "guzzlehttp/psr7": "^1", + "ipl/stdlib": ">=0.12.0", + "ipl/validator": ">=0.5.0", + "php": ">=7.2", + "psr/http-message": "~1.0" + }, + "time": "2023-03-22T08:46:36+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "ipl\\Html\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Icinga PHP Library - HTML abstraction layer", + "homepage": "https://github.com/Icinga/ipl-html", + "keywords": [ + "html" + ], + "support": { + "issues": "https://github.com/Icinga/ipl-html/issues", + "source": "https://github.com/Icinga/ipl-html/tree/v0.7.0" + }, + "install-path": "../ipl/html" + }, + { + "name": "ipl/i18n", + "version": "v0.2.0", + "version_normalized": "0.2.0.0", + "source": { + "type": "git", + "url": "https://github.com/Icinga/ipl-i18n.git", + "reference": "3ee2a8c0c38879cb743c866d9202f8620d4c2800" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Icinga/ipl-i18n/zipball/3ee2a8c0c38879cb743c866d9202f8620d4c2800", + "reference": "3ee2a8c0c38879cb743c866d9202f8620d4c2800", + "shasum": "" + }, + "require": { + "ext-gettext": "*", + "ext-intl": "*", + "ipl/stdlib": ">=0.12.0", + "php": ">=7.2" + }, + "time": "2022-06-15T07:33:40+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "ipl\\I18n\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Icinga PHP Library - Internationalization", + "homepage": "https://github.com/Icinga/ipl-i18n", + "keywords": [ + "gettext", + "i18n", + "internationalization", + "localization", + "translation" + ], + "support": { + "issues": "https://github.com/Icinga/ipl-i18n/issues", + "source": "https://github.com/Icinga/ipl-i18n/tree/v0.2.0" + }, + "install-path": "../ipl/i18n" + }, + { + "name": "ipl/orm", + "version": "v0.5.0", + "version_normalized": "0.5.0.0", + "source": { + "type": "git", + "url": "https://github.com/Icinga/ipl-orm.git", + "reference": "e5d980123f679c3fb24d3000a0b54c400760407c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Icinga/ipl-orm/zipball/e5d980123f679c3fb24d3000a0b54c400760407c", + "reference": "e5d980123f679c3fb24d3000a0b54c400760407c", + "shasum": "" + }, + "require": { + "ext-pdo": "*", + "ipl/sql": ">=0.6.0", + "ipl/stdlib": ">=0.12.0", + "php": ">=7.2" + }, + "require-dev": { + "ext-pdo_sqlite": "*" + }, + "time": "2023-03-21T16:07:35+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "ipl\\Orm\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Icinga PHP Library - ORM", + "homepage": "https://github.com/Icinga/ipl-orm", + "keywords": [ + "database", + "orm", + "sql" + ], + "support": { + "issues": "https://github.com/Icinga/ipl-orm/issues", + "source": "https://github.com/Icinga/ipl-orm/tree/v0.5.0" + }, + "install-path": "../ipl/orm" + }, + { + "name": "ipl/scheduler", + "version": "v0.1.0", + "version_normalized": "0.1.0.0", + "source": { + "type": "git", + "url": "https://github.com/Icinga/ipl-scheduler.git", + "reference": "af643e1a9576dcb7940835ccaeff3f7f4c754662" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Icinga/ipl-scheduler/zipball/af643e1a9576dcb7940835ccaeff3f7f4c754662", + "reference": "af643e1a9576dcb7940835ccaeff3f7f4c754662", + "shasum": "" + }, + "require": { + "dragonmantank/cron-expression": "^3", + "ext-json": "*", + "ipl/stdlib": ">=0.12.0", + "php": ">=7.2", + "psr/log": "^1", + "ramsey/uuid": "^3", + "react/event-loop": "^1", + "react/promise": "^2", + "simshaun/recurr": "^5" + }, + "suggest": { + "ext-ev": "Improves performance, efficiency and avoids system limitations. Highly recommended! (See https://www.php.net/manual/en/intro.ev.php for details)" + }, + "time": "2023-03-20T09:38:36+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "src/register_cron_aliases.php" + ], + "psr-4": { + "ipl\\Scheduler\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Icinga PHP Library - Tasks scheduler", + "homepage": "https://github.com/Icinga/ipl-scheduler", + "keywords": [ + "cron", + "job", + "scheduler", + "task" + ], + "support": { + "issues": "https://github.com/Icinga/ipl-scheduler/issues", + "source": "https://github.com/Icinga/ipl-scheduler/tree/v0.1.0" + }, + "install-path": "../ipl/scheduler" + }, + { + "name": "ipl/sql", + "version": "v0.6.0", + "version_normalized": "0.6.0.0", + "source": { + "type": "git", + "url": "https://github.com/Icinga/ipl-sql.git", + "reference": "cb4f5a239bfb5046a4ad7206d77a1c1d82d6cdce" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Icinga/ipl-sql/zipball/cb4f5a239bfb5046a4ad7206d77a1c1d82d6cdce", + "reference": "cb4f5a239bfb5046a4ad7206d77a1c1d82d6cdce", + "shasum": "" + }, + "require": { + "ext-pdo": "*", + "ipl/stdlib": ">=0.12.0", + "php": ">=7.2" + }, + "time": "2022-12-13T13:28:14+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "ipl\\Sql\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Icinga PHP Library - SQL abstraction layer", + "homepage": "https://github.com/Icinga/ipl-sql", + "keywords": [ + "database", + "sql" + ], + "support": { + "issues": "https://github.com/Icinga/ipl-sql/issues", + "source": "https://github.com/Icinga/ipl-sql/tree/v0.6.0" + }, + "install-path": "../ipl/sql" + }, + { + "name": "ipl/stdlib", + "version": "v0.12.1", + "version_normalized": "0.12.1.0", + "source": { + "type": "git", + "url": "https://github.com/Icinga/ipl-stdlib.git", + "reference": "be75213aa3ba1c73756368f17be20a2bcbdeb835" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Icinga/ipl-stdlib/zipball/be75213aa3ba1c73756368f17be20a2bcbdeb835", + "reference": "be75213aa3ba1c73756368f17be20a2bcbdeb835", + "shasum": "" + }, + "require": { + "evenement/evenement": "^3", + "ext-openssl": "*", + "php": ">=7.2" + }, + "time": "2022-11-25T14:28:31+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "ipl\\Stdlib\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "ipl Standard Library", + "support": { + "issues": "https://github.com/Icinga/ipl-stdlib/issues", + "source": "https://github.com/Icinga/ipl-stdlib/tree/v0.12.1" + }, + "install-path": "../ipl/stdlib" + }, + { + "name": "ipl/validator", + "version": "v0.5.0", + "version_normalized": "0.5.0.0", + "source": { + "type": "git", + "url": "https://github.com/Icinga/ipl-validator.git", + "reference": "a601fae0ed330e63cea50e4a2a6659ca1ad97bde" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Icinga/ipl-validator/zipball/a601fae0ed330e63cea50e4a2a6659ca1ad97bde", + "reference": "a601fae0ed330e63cea50e4a2a6659ca1ad97bde", + "shasum": "" + }, + "require": { + "ext-mbstring": "*", + "ext-openssl": "*", + "ipl/i18n": ">=0.2.0", + "ipl/stdlib": ">=0.12.0", + "php": ">=7.2", + "psr/http-message": "~1.0" + }, + "require-dev": { + "guzzlehttp/psr7": "^1" + }, + "time": "2023-03-21T15:59:00+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "ipl\\Validator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Icinga PHP Library - Common validators and validator chaining", + "homepage": "https://github.com/Icinga/ipl-validator", + "support": { + "issues": "https://github.com/Icinga/ipl-validator/issues", + "source": "https://github.com/Icinga/ipl-validator/tree/v0.5.0" + }, + "install-path": "../ipl/validator" + }, + { + "name": "ipl/web", + "version": "v0.7.0", + "version_normalized": "0.7.0.0", + "source": { + "type": "git", + "url": "https://github.com/Icinga/ipl-web.git", + "reference": "a4581be0125801e51984a55f96fba7091c707d45" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Icinga/ipl-web/zipball/a4581be0125801e51984a55f96fba7091c707d45", + "reference": "a4581be0125801e51984a55f96fba7091c707d45", + "shasum": "" + }, + "require": { + "ext-json": "*", + "fortawesome/font-awesome": "^6", + "ipl/html": ">=0.7.0", + "ipl/i18n": ">=0.2.0", + "ipl/scheduler": ">=0.1.0", + "ipl/stdlib": ">=0.12.0", + "php": ">=7.2", + "psr/http-message": "^1.0" + }, + "time": "2023-03-22T08:54:16+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "ipl\\Web\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Icinga PHP Library - Web Components", + "homepage": "https://github.com/Icinga/ipl-web", + "keywords": [ + "html" + ], + "support": { + "issues": "https://github.com/Icinga/ipl-web/issues", + "source": "https://github.com/Icinga/ipl-web/tree/v0.7.0" + }, + "install-path": "../ipl/web" + }, + { + "name": "paragonie/random_compat", + "version": "v9.99.100", + "version_normalized": "9.99.100.0", + "source": { + "type": "git", + "url": "https://github.com/paragonie/random_compat.git", + "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a", + "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a", + "shasum": "" + }, + "require": { + "php": ">= 7" + }, + "require-dev": { + "phpunit/phpunit": "4.*|5.*", + "vimeo/psalm": "^1" + }, + "suggest": { + "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." + }, + "time": "2020-10-15T08:29:30+00:00", + "type": "library", + "installation-source": "dist", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com" + } + ], + "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", + "keywords": [ + "csprng", + "polyfill", + "pseudorandom", + "random" + ], + "support": { + "email": "info@paragonie.com", + "issues": "https://github.com/paragonie/random_compat/issues", + "source": "https://github.com/paragonie/random_compat" + }, + "install-path": "../paragonie/random_compat" + }, + { + "name": "psr/http-message", + "version": "1.0.1", + "version_normalized": "1.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/http-message.git", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "time": "2016-08-06T14:39:51+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for HTTP messages", + "homepage": "https://github.com/php-fig/http-message", + "keywords": [ + "http", + "http-message", + "psr", + "psr-7", + "request", + "response" + ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/master" + }, + "install-path": "../psr/http-message" + }, + { + "name": "psr/log", + "version": "1.1.4", + "version_normalized": "1.1.4.0", + "source": { + "type": "git", + "url": "https://github.com/php-fig/log.git", + "reference": "d49695b909c3b7628b6289db5479a1c204601f11" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", + "reference": "d49695b909c3b7628b6289db5479a1c204601f11", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "time": "2021-05-03T11:20:27+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Psr\\Log\\": "Psr/Log/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "description": "Common interface for logging libraries", + "homepage": "https://github.com/php-fig/log", + "keywords": [ + "log", + "psr", + "psr-3" + ], + "support": { + "source": "https://github.com/php-fig/log/tree/1.1.4" + }, + "install-path": "../psr/log" + }, + { + "name": "ralouphie/getallheaders", + "version": "3.0.3", + "version_normalized": "3.0.3.0", + "source": { + "type": "git", + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "time": "2019-03-08T08:55:37+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, + "install-path": "../ralouphie/getallheaders" + }, + { + "name": "ramsey/uuid", + "version": "3.9.7", + "version_normalized": "3.9.7.0", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "dc75aa439eb4c1b77f5379fd958b3dc0e6014178" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/dc75aa439eb4c1b77f5379fd958b3dc0e6014178", + "reference": "dc75aa439eb4c1b77f5379fd958b3dc0e6014178", + "shasum": "" + }, + "require": { + "ext-json": "*", + "paragonie/random_compat": "^1 | ^2 | ^9.99.99", + "php": "^5.4 | ^7.0 | ^8.0", + "symfony/polyfill-ctype": "^1.8" + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "require-dev": { + "codeception/aspect-mock": "^1 | ^2", + "doctrine/annotations": "^1.2", + "goaop/framework": "1.0.0-alpha.2 | ^1 | >=2.1.0 <=2.3.2", + "mockery/mockery": "^0.9.11 | ^1", + "moontoast/math": "^1.1", + "nikic/php-parser": "<=4.5.0", + "paragonie/random-lib": "^2", + "php-mock/php-mock-phpunit": "^0.3 | ^1.1 | ^2.6", + "php-parallel-lint/php-parallel-lint": "^1.3", + "phpunit/phpunit": ">=4.8.36 <9.0.0 | >=9.3.0", + "squizlabs/php_codesniffer": "^3.5", + "yoast/phpunit-polyfills": "^1.0" + }, + "suggest": { + "ext-ctype": "Provides support for PHP Ctype functions", + "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator", + "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator", + "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator", + "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).", + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", + "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." + }, + "time": "2022-12-19T21:55:10+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "src/functions.php" + ], + "psr-4": { + "Ramsey\\Uuid\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + }, + { + "name": "Marijn Huizendveld", + "email": "marijn.huizendveld@gmail.com" + }, + { + "name": "Thibaud Fabre", + "email": "thibaud@aztech.io" + } + ], + "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", + "homepage": "https://github.com/ramsey/uuid", + "keywords": [ + "guid", + "identifier", + "uuid" + ], + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "rss": "https://github.com/ramsey/uuid/releases.atom", + "source": "https://github.com/ramsey/uuid", + "wiki": "https://github.com/ramsey/uuid/wiki" + }, + "funding": [ + { + "url": "https://github.com/ramsey", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", + "type": "tidelift" + } + ], + "install-path": "../ramsey/uuid" + }, + { + "name": "react/event-loop", + "version": "v1.3.0", + "version_normalized": "1.3.0.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/event-loop.git", + "reference": "187fb56f46d424afb6ec4ad089269c72eec2e137" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/event-loop/zipball/187fb56f46d424afb6ec4ad089269c72eec2e137", + "reference": "187fb56f46d424afb6ec4ad089269c72eec2e137", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35" + }, + "suggest": { + "ext-event": "~1.0 for ExtEventLoop", + "ext-pcntl": "For signal handling support when using the StreamSelectLoop", + "ext-uv": "* for ExtUvLoop" + }, + "time": "2022-03-17T11:10:22+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "React\\EventLoop\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.", + "keywords": [ + "asynchronous", + "event-loop" + ], + "support": { + "issues": "https://github.com/reactphp/event-loop/issues", + "source": "https://github.com/reactphp/event-loop/tree/v1.3.0" + }, + "funding": [ + { + "url": "https://github.com/WyriHaximus", + "type": "github" + }, + { + "url": "https://github.com/clue", + "type": "github" + } + ], + "install-path": "../react/event-loop" + }, + { + "name": "react/promise", + "version": "v2.9.0", + "version_normalized": "2.9.0.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/promise.git", + "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/promise/zipball/234f8fd1023c9158e2314fa9d7d0e6a83db42910", + "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910", + "shasum": "" + }, + "require": { + "php": ">=5.4.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36" + }, + "time": "2022-02-11T10:27:51+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "React\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "A lightweight implementation of CommonJS Promises/A for PHP", + "keywords": [ + "promise", + "promises" + ], + "support": { + "issues": "https://github.com/reactphp/promise/issues", + "source": "https://github.com/reactphp/promise/tree/v2.9.0" + }, + "funding": [ + { + "url": "https://github.com/WyriHaximus", + "type": "github" + }, + { + "url": "https://github.com/clue", + "type": "github" + } + ], + "install-path": "../react/promise" + }, + { + "name": "simshaun/recurr", + "version": "v5.0.1", + "version_normalized": "5.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/simshaun/recurr.git", + "reference": "6887b7bd7075de97c8c69835e0939ff68d23c47e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/simshaun/recurr/zipball/6887b7bd7075de97c8c69835e0939ff68d23c47e", + "reference": "6887b7bd7075de97c8c69835e0939ff68d23c47e", + "shasum": "" + }, + "require": { + "doctrine/collections": "~1.6", + "php": "^7.2||^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.16", + "symfony/yaml": "^5.3" + }, + "time": "2022-09-09T05:37:22+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "0.x-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Recurr\\": "src/Recurr/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Shaun Simmons", + "email": "shaun@shaun.pub", + "homepage": "https://shaun.pub" + } + ], + "description": "PHP library for working with recurrence rules", + "homepage": "https://github.com/simshaun/recurr", + "keywords": [ + "dates", + "events", + "recurrence", + "recurring", + "rrule" + ], + "support": { + "issues": "https://github.com/simshaun/recurr/issues", + "source": "https://github.com/simshaun/recurr/tree/v5.0.1" + }, + "install-path": "../simshaun/recurr" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.27.0", + "version_normalized": "1.27.0.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "5bbc823adecdae860bb64756d639ecfec17b050a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a", + "reference": "5bbc823adecdae860bb64756d639ecfec17b050a", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-ctype": "*" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "time": "2022-11-03T14:55:06+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "installation-source": "dist", + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "install-path": "../symfony/polyfill-ctype" + }, + { + "name": "webmozart/assert", + "version": "1.11.0", + "version_normalized": "1.11.0.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "time": "2022-06-03T18:03:27+00:00", + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "installation-source": "dist", + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.0" + }, + "install-path": "../webmozart/assert" + } + ], + "dev": true, + "dev-package-names": [] +} diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php new file mode 100644 index 00000000..bd9625fa --- /dev/null +++ b/vendor/composer/installed.php @@ -0,0 +1,257 @@ + array( + 'name' => 'icinga/icinga-php-library', + 'pretty_version' => 'dev-main', + 'version' => 'dev-main', + 'reference' => '77c423f41cf7f520e65bdaff324ffb5769139175', + 'type' => 'project', + 'install_path' => __DIR__ . '/../../', + 'aliases' => array(), + 'dev' => true, + ), + 'versions' => array( + 'doctrine/collections' => array( + 'pretty_version' => '1.8.0', + 'version' => '1.8.0.0', + 'reference' => '2b44dd4cbca8b5744327de78bafef5945c7e7b5e', + 'type' => 'library', + 'install_path' => __DIR__ . '/../doctrine/collections', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'doctrine/deprecations' => array( + 'pretty_version' => 'v1.0.0', + 'version' => '1.0.0.0', + 'reference' => '0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de', + 'type' => 'library', + 'install_path' => __DIR__ . '/../doctrine/deprecations', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'dragonmantank/cron-expression' => array( + 'pretty_version' => 'v3.3.2', + 'version' => '3.3.2.0', + 'reference' => '782ca5968ab8b954773518e9e49a6f892a34b2a8', + 'type' => 'library', + 'install_path' => __DIR__ . '/../dragonmantank/cron-expression', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'evenement/evenement' => array( + 'pretty_version' => 'v3.0.1', + 'version' => '3.0.1.0', + 'reference' => '531bfb9d15f8aa57454f5f0285b18bec903b8fb7', + 'type' => 'library', + 'install_path' => __DIR__ . '/../evenement/evenement', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'fortawesome/font-awesome' => array( + 'pretty_version' => '6.3.0', + 'version' => '6.3.0.0', + 'reference' => 'd02961b018153506364077343b0edcde0a39d27e', + 'type' => 'library', + 'install_path' => __DIR__ . '/../fortawesome/font-awesome', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'guzzlehttp/psr7' => array( + 'pretty_version' => '1.9.0', + 'version' => '1.9.0.0', + 'reference' => 'e98e3e6d4f86621a9b75f623996e6bbdeb4b9318', + 'type' => 'library', + 'install_path' => __DIR__ . '/../guzzlehttp/psr7', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'icinga/icinga-php-library' => array( + 'pretty_version' => 'dev-main', + 'version' => 'dev-main', + 'reference' => '77c423f41cf7f520e65bdaff324ffb5769139175', + 'type' => 'project', + 'install_path' => __DIR__ . '/../../', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'ipl/html' => array( + 'pretty_version' => 'v0.7.0', + 'version' => '0.7.0.0', + 'reference' => '8740b9efd42607e1b03a792897a9d3d51bc01e7f', + 'type' => 'library', + 'install_path' => __DIR__ . '/../ipl/html', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'ipl/i18n' => array( + 'pretty_version' => 'v0.2.0', + 'version' => '0.2.0.0', + 'reference' => '3ee2a8c0c38879cb743c866d9202f8620d4c2800', + 'type' => 'library', + 'install_path' => __DIR__ . '/../ipl/i18n', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'ipl/orm' => array( + 'pretty_version' => 'v0.5.0', + 'version' => '0.5.0.0', + 'reference' => 'e5d980123f679c3fb24d3000a0b54c400760407c', + 'type' => 'library', + 'install_path' => __DIR__ . '/../ipl/orm', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'ipl/scheduler' => array( + 'pretty_version' => 'v0.1.0', + 'version' => '0.1.0.0', + 'reference' => 'af643e1a9576dcb7940835ccaeff3f7f4c754662', + 'type' => 'library', + 'install_path' => __DIR__ . '/../ipl/scheduler', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'ipl/sql' => array( + 'pretty_version' => 'v0.6.0', + 'version' => '0.6.0.0', + 'reference' => 'cb4f5a239bfb5046a4ad7206d77a1c1d82d6cdce', + 'type' => 'library', + 'install_path' => __DIR__ . '/../ipl/sql', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'ipl/stdlib' => array( + 'pretty_version' => 'v0.12.1', + 'version' => '0.12.1.0', + 'reference' => 'be75213aa3ba1c73756368f17be20a2bcbdeb835', + 'type' => 'library', + 'install_path' => __DIR__ . '/../ipl/stdlib', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'ipl/validator' => array( + 'pretty_version' => 'v0.5.0', + 'version' => '0.5.0.0', + 'reference' => 'a601fae0ed330e63cea50e4a2a6659ca1ad97bde', + 'type' => 'library', + 'install_path' => __DIR__ . '/../ipl/validator', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'ipl/web' => array( + 'pretty_version' => 'v0.7.0', + 'version' => '0.7.0.0', + 'reference' => 'a4581be0125801e51984a55f96fba7091c707d45', + 'type' => 'library', + 'install_path' => __DIR__ . '/../ipl/web', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'mtdowling/cron-expression' => array( + 'dev_requirement' => false, + 'replaced' => array( + 0 => '^1.0', + ), + ), + 'paragonie/random_compat' => array( + 'pretty_version' => 'v9.99.100', + 'version' => '9.99.100.0', + 'reference' => '996434e5492cb4c3edcb9168db6fbb1359ef965a', + 'type' => 'library', + 'install_path' => __DIR__ . '/../paragonie/random_compat', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'psr/http-message' => array( + 'pretty_version' => '1.0.1', + 'version' => '1.0.1.0', + 'reference' => 'f6561bf28d520154e4b0ec72be95418abe6d9363', + 'type' => 'library', + 'install_path' => __DIR__ . '/../psr/http-message', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'psr/http-message-implementation' => array( + 'dev_requirement' => false, + 'provided' => array( + 0 => '1.0', + ), + ), + 'psr/log' => array( + 'pretty_version' => '1.1.4', + 'version' => '1.1.4.0', + 'reference' => 'd49695b909c3b7628b6289db5479a1c204601f11', + 'type' => 'library', + 'install_path' => __DIR__ . '/../psr/log', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'ralouphie/getallheaders' => array( + 'pretty_version' => '3.0.3', + 'version' => '3.0.3.0', + 'reference' => '120b605dfeb996808c31b6477290a714d356e822', + 'type' => 'library', + 'install_path' => __DIR__ . '/../ralouphie/getallheaders', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'ramsey/uuid' => array( + 'pretty_version' => '3.9.7', + 'version' => '3.9.7.0', + 'reference' => 'dc75aa439eb4c1b77f5379fd958b3dc0e6014178', + 'type' => 'library', + 'install_path' => __DIR__ . '/../ramsey/uuid', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'react/event-loop' => array( + 'pretty_version' => 'v1.3.0', + 'version' => '1.3.0.0', + 'reference' => '187fb56f46d424afb6ec4ad089269c72eec2e137', + 'type' => 'library', + 'install_path' => __DIR__ . '/../react/event-loop', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'react/promise' => array( + 'pretty_version' => 'v2.9.0', + 'version' => '2.9.0.0', + 'reference' => '234f8fd1023c9158e2314fa9d7d0e6a83db42910', + 'type' => 'library', + 'install_path' => __DIR__ . '/../react/promise', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'rhumsaa/uuid' => array( + 'dev_requirement' => false, + 'replaced' => array( + 0 => '3.9.7', + ), + ), + 'simshaun/recurr' => array( + 'pretty_version' => 'v5.0.1', + 'version' => '5.0.1.0', + 'reference' => '6887b7bd7075de97c8c69835e0939ff68d23c47e', + 'type' => 'library', + 'install_path' => __DIR__ . '/../simshaun/recurr', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'symfony/polyfill-ctype' => array( + 'pretty_version' => 'v1.27.0', + 'version' => '1.27.0.0', + 'reference' => '5bbc823adecdae860bb64756d639ecfec17b050a', + 'type' => 'library', + 'install_path' => __DIR__ . '/../symfony/polyfill-ctype', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'webmozart/assert' => array( + 'pretty_version' => '1.11.0', + 'version' => '1.11.0.0', + 'reference' => '11cb2199493b2f8a3b53e7f19068fc6aac760991', + 'type' => 'library', + 'install_path' => __DIR__ . '/../webmozart/assert', + 'aliases' => array(), + 'dev_requirement' => false, + ), + ), +); diff --git a/vendor/composer/platform_check.php b/vendor/composer/platform_check.php new file mode 100644 index 00000000..589e9e77 --- /dev/null +++ b/vendor/composer/platform_check.php @@ -0,0 +1,26 @@ += 70200)) { + $issues[] = 'Your Composer dependencies require a PHP version ">= 7.2.0". You are running ' . PHP_VERSION . '.'; +} + +if ($issues) { + if (!headers_sent()) { + header('HTTP/1.1 500 Internal Server Error'); + } + if (!ini_get('display_errors')) { + if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { + fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL); + } elseif (!headers_sent()) { + echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL; + } + } + trigger_error( + 'Composer detected issues in your platform: ' . implode(' ', $issues), + E_USER_ERROR + ); +} diff --git a/vendor/doctrine/collections/.doctrine-project.json b/vendor/doctrine/collections/.doctrine-project.json new file mode 100644 index 00000000..9c89e50c --- /dev/null +++ b/vendor/doctrine/collections/.doctrine-project.json @@ -0,0 +1,32 @@ +{ + "active": true, + "name": "Collections", + "slug": "collections", + "docsSlug": "doctrine-collections", + "versions": [ + { + "name": "2.0", + "branchName": "2.0.x", + "slug": "latest", + "upcoming": true + }, + { + "name": "1.8", + "branchName": "1.8.x", + "slug": "1.8", + "upcoming": true + }, + { + "name": "1.7", + "branchName": "1.7.x", + "slug": "1.7", + "current": true + }, + { + "name": "1.6", + "branchName": "1.6.x", + "slug": "1.6", + "maintained": false + } + ] +} diff --git a/vendor/doctrine/collections/LICENSE b/vendor/doctrine/collections/LICENSE new file mode 100644 index 00000000..5e781fce --- /dev/null +++ b/vendor/doctrine/collections/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2006-2013 Doctrine Project + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/vendor/doctrine/collections/composer.json b/vendor/doctrine/collections/composer.json new file mode 100644 index 00000000..d9422dd1 --- /dev/null +++ b/vendor/doctrine/collections/composer.json @@ -0,0 +1,61 @@ +{ + "name": "doctrine/collections", + "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", + "license": "MIT", + "type": "library", + "keywords": [ + "php", + "collections", + "array", + "iterators" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "homepage": "https://www.doctrine-project.org/projects/collections.html", + "require": { + "php": "^7.1.3 || ^8.0", + "doctrine/deprecations": "^0.5.3 || ^1" + }, + "require-dev": { + "doctrine/coding-standard": "^9.0 || ^10.0", + "phpstan/phpstan": "^1.4.8", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.1.5", + "vimeo/psalm": "^4.22" + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" + } + }, + "autoload-dev": { + "psr-4": { + "Doctrine\\Tests\\": "tests/Doctrine/Tests" + } + }, + "config": { + "allow-plugins": { + "composer/package-versions-deprecated": true, + "dealerdirect/phpcodesniffer-composer-installer": true + } + } +} diff --git a/vendor/doctrine/collections/lib/Doctrine/Common/Collections/AbstractLazyCollection.php b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/AbstractLazyCollection.php new file mode 100644 index 00000000..baab4d59 --- /dev/null +++ b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/AbstractLazyCollection.php @@ -0,0 +1,389 @@ + + */ +abstract class AbstractLazyCollection implements Collection +{ + /** + * The backed collection to use + * + * @psalm-var Collection|null + * @var Collection|null + */ + protected $collection; + + /** @var bool */ + protected $initialized = false; + + /** + * {@inheritDoc} + * + * @return int + */ + #[ReturnTypeWillChange] + public function count() + { + $this->initialize(); + + return $this->collection->count(); + } + + /** + * {@inheritDoc} + */ + public function add($element) + { + $this->initialize(); + + return $this->collection->add($element); + } + + /** + * {@inheritDoc} + */ + public function clear() + { + $this->initialize(); + $this->collection->clear(); + } + + /** + * {@inheritDoc} + * + * @template TMaybeContained + */ + public function contains($element) + { + $this->initialize(); + + return $this->collection->contains($element); + } + + /** + * {@inheritDoc} + */ + public function isEmpty() + { + $this->initialize(); + + return $this->collection->isEmpty(); + } + + /** + * {@inheritDoc} + */ + public function remove($key) + { + $this->initialize(); + + return $this->collection->remove($key); + } + + /** + * {@inheritDoc} + */ + public function removeElement($element) + { + $this->initialize(); + + return $this->collection->removeElement($element); + } + + /** + * {@inheritDoc} + */ + public function containsKey($key) + { + $this->initialize(); + + return $this->collection->containsKey($key); + } + + /** + * {@inheritDoc} + */ + public function get($key) + { + $this->initialize(); + + return $this->collection->get($key); + } + + /** + * {@inheritDoc} + */ + public function getKeys() + { + $this->initialize(); + + return $this->collection->getKeys(); + } + + /** + * {@inheritDoc} + */ + public function getValues() + { + $this->initialize(); + + return $this->collection->getValues(); + } + + /** + * {@inheritDoc} + */ + public function set($key, $value) + { + $this->initialize(); + $this->collection->set($key, $value); + } + + /** + * {@inheritDoc} + */ + public function toArray() + { + $this->initialize(); + + return $this->collection->toArray(); + } + + /** + * {@inheritDoc} + */ + public function first() + { + $this->initialize(); + + return $this->collection->first(); + } + + /** + * {@inheritDoc} + */ + public function last() + { + $this->initialize(); + + return $this->collection->last(); + } + + /** + * {@inheritDoc} + */ + public function key() + { + $this->initialize(); + + return $this->collection->key(); + } + + /** + * {@inheritDoc} + */ + public function current() + { + $this->initialize(); + + return $this->collection->current(); + } + + /** + * {@inheritDoc} + */ + public function next() + { + $this->initialize(); + + return $this->collection->next(); + } + + /** + * {@inheritDoc} + */ + public function exists(Closure $p) + { + $this->initialize(); + + return $this->collection->exists($p); + } + + /** + * {@inheritDoc} + */ + public function filter(Closure $p) + { + $this->initialize(); + + return $this->collection->filter($p); + } + + /** + * {@inheritDoc} + */ + public function forAll(Closure $p) + { + $this->initialize(); + + return $this->collection->forAll($p); + } + + /** + * {@inheritDoc} + */ + public function map(Closure $func) + { + $this->initialize(); + + return $this->collection->map($func); + } + + /** + * {@inheritDoc} + */ + public function partition(Closure $p) + { + $this->initialize(); + + return $this->collection->partition($p); + } + + /** + * {@inheritDoc} + * + * @template TMaybeContained + */ + public function indexOf($element) + { + $this->initialize(); + + return $this->collection->indexOf($element); + } + + /** + * {@inheritDoc} + */ + public function slice($offset, $length = null) + { + $this->initialize(); + + return $this->collection->slice($offset, $length); + } + + /** + * {@inheritDoc} + * + * @return Traversable + * @psalm-return Traversable + */ + #[ReturnTypeWillChange] + public function getIterator() + { + $this->initialize(); + + return $this->collection->getIterator(); + } + + /** + * @param TKey $offset + * + * @return bool + */ + #[ReturnTypeWillChange] + public function offsetExists($offset) + { + $this->initialize(); + + return $this->collection->offsetExists($offset); + } + + /** + * @param TKey $offset + * + * @return mixed + */ + #[ReturnTypeWillChange] + public function offsetGet($offset) + { + $this->initialize(); + + return $this->collection->offsetGet($offset); + } + + /** + * @param TKey|null $offset + * @param T $value + * + * @return void + */ + #[ReturnTypeWillChange] + public function offsetSet($offset, $value) + { + $this->initialize(); + $this->collection->offsetSet($offset, $value); + } + + /** + * @param TKey $offset + * + * @return void + */ + #[ReturnTypeWillChange] + public function offsetUnset($offset) + { + $this->initialize(); + $this->collection->offsetUnset($offset); + } + + /** + * Is the lazy collection already initialized? + * + * @return bool + * + * @psalm-assert-if-true Collection $this->collection + */ + public function isInitialized() + { + return $this->initialized; + } + + /** + * Initialize the collection + * + * @return void + * + * @psalm-assert Collection $this->collection + */ + protected function initialize() + { + if ($this->initialized) { + return; + } + + $this->doInitialize(); + $this->initialized = true; + + if ($this->collection === null) { + throw new LogicException('You must initialize the collection property in the doInitialize() method.'); + } + } + + /** + * Do the initialization logic + * + * @return void + */ + abstract protected function doInitialize(); +} diff --git a/vendor/doctrine/collections/lib/Doctrine/Common/Collections/ArrayCollection.php b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/ArrayCollection.php new file mode 100644 index 00000000..186f6ec4 --- /dev/null +++ b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/ArrayCollection.php @@ -0,0 +1,466 @@ + + * @template-implements Selectable + * @psalm-consistent-constructor + */ +class ArrayCollection implements Collection, Selectable +{ + /** + * An array containing the entries of this collection. + * + * @psalm-var array + * @var mixed[] + */ + private $elements; + + /** + * Initializes a new ArrayCollection. + * + * @param array $elements + * @psalm-param array $elements + */ + public function __construct(array $elements = []) + { + $this->elements = $elements; + } + + /** + * {@inheritDoc} + */ + public function toArray() + { + return $this->elements; + } + + /** + * {@inheritDoc} + */ + public function first() + { + return reset($this->elements); + } + + /** + * Creates a new instance from the specified elements. + * + * This method is provided for derived classes to specify how a new + * instance should be created when constructor semantics have changed. + * + * @param array $elements Elements. + * @psalm-param array $elements + * + * @return static + * @psalm-return static + * + * @psalm-template K of array-key + * @psalm-template V + */ + protected function createFrom(array $elements) + { + return new static($elements); + } + + /** + * {@inheritDoc} + */ + public function last() + { + return end($this->elements); + } + + /** + * {@inheritDoc} + */ + public function key() + { + return key($this->elements); + } + + /** + * {@inheritDoc} + */ + public function next() + { + return next($this->elements); + } + + /** + * {@inheritDoc} + */ + public function current() + { + return current($this->elements); + } + + /** + * {@inheritDoc} + */ + public function remove($key) + { + if (! isset($this->elements[$key]) && ! array_key_exists($key, $this->elements)) { + return null; + } + + $removed = $this->elements[$key]; + unset($this->elements[$key]); + + return $removed; + } + + /** + * {@inheritDoc} + */ + public function removeElement($element) + { + $key = array_search($element, $this->elements, true); + + if ($key === false) { + return false; + } + + unset($this->elements[$key]); + + return true; + } + + /** + * Required by interface ArrayAccess. + * + * @param TKey $offset + * + * @return bool + */ + #[ReturnTypeWillChange] + public function offsetExists($offset) + { + return $this->containsKey($offset); + } + + /** + * Required by interface ArrayAccess. + * + * @param TKey $offset + * + * @return mixed + */ + #[ReturnTypeWillChange] + public function offsetGet($offset) + { + return $this->get($offset); + } + + /** + * Required by interface ArrayAccess. + * + * @param TKey|null $offset + * @param T $value + * + * @return void + */ + #[ReturnTypeWillChange] + public function offsetSet($offset, $value) + { + if (! isset($offset)) { + $this->add($value); + + return; + } + + $this->set($offset, $value); + } + + /** + * Required by interface ArrayAccess. + * + * @param TKey $offset + * + * @return void + */ + #[ReturnTypeWillChange] + public function offsetUnset($offset) + { + $this->remove($offset); + } + + /** + * {@inheritDoc} + */ + public function containsKey($key) + { + return isset($this->elements[$key]) || array_key_exists($key, $this->elements); + } + + /** + * {@inheritDoc} + * + * @template TMaybeContained + */ + public function contains($element) + { + return in_array($element, $this->elements, true); + } + + /** + * {@inheritDoc} + */ + public function exists(Closure $p) + { + foreach ($this->elements as $key => $element) { + if ($p($key, $element)) { + return true; + } + } + + return false; + } + + /** + * {@inheritDoc} + * + * @psalm-param TMaybeContained $element + * + * @psalm-return (TMaybeContained is T ? TKey|false : false) + * + * @template TMaybeContained + */ + public function indexOf($element) + { + return array_search($element, $this->elements, true); + } + + /** + * {@inheritDoc} + */ + public function get($key) + { + return $this->elements[$key] ?? null; + } + + /** + * {@inheritDoc} + */ + public function getKeys() + { + return array_keys($this->elements); + } + + /** + * {@inheritDoc} + */ + public function getValues() + { + return array_values($this->elements); + } + + /** + * {@inheritDoc} + * + * @return int + */ + #[ReturnTypeWillChange] + public function count() + { + return count($this->elements); + } + + /** + * {@inheritDoc} + */ + public function set($key, $value) + { + $this->elements[$key] = $value; + } + + /** + * {@inheritDoc} + * + * @psalm-suppress InvalidPropertyAssignmentValue + * + * This breaks assumptions about the template type, but it would + * be a backwards-incompatible change to remove this method + */ + public function add($element) + { + $this->elements[] = $element; + + return true; + } + + /** + * {@inheritDoc} + */ + public function isEmpty() + { + return empty($this->elements); + } + + /** + * {@inheritDoc} + * + * @return Traversable + * @psalm-return Traversable + */ + #[ReturnTypeWillChange] + public function getIterator() + { + return new ArrayIterator($this->elements); + } + + /** + * {@inheritDoc} + * + * @psalm-param Closure(T):U $func + * + * @return static + * @psalm-return static + * + * @psalm-template U + */ + public function map(Closure $func) + { + return $this->createFrom(array_map($func, $this->elements)); + } + + /** + * {@inheritDoc} + * + * @return static + * @psalm-return static + */ + public function filter(Closure $p) + { + return $this->createFrom(array_filter($this->elements, $p, ARRAY_FILTER_USE_BOTH)); + } + + /** + * {@inheritDoc} + */ + public function forAll(Closure $p) + { + foreach ($this->elements as $key => $element) { + if (! $p($key, $element)) { + return false; + } + } + + return true; + } + + /** + * {@inheritDoc} + */ + public function partition(Closure $p) + { + $matches = $noMatches = []; + + foreach ($this->elements as $key => $element) { + if ($p($key, $element)) { + $matches[$key] = $element; + } else { + $noMatches[$key] = $element; + } + } + + return [$this->createFrom($matches), $this->createFrom($noMatches)]; + } + + /** + * Returns a string representation of this object. + * + * @return string + */ + public function __toString() + { + return self::class . '@' . spl_object_hash($this); + } + + /** + * {@inheritDoc} + */ + public function clear() + { + $this->elements = []; + } + + /** + * {@inheritDoc} + */ + public function slice($offset, $length = null) + { + return array_slice($this->elements, $offset, $length, true); + } + + /** + * {@inheritDoc} + */ + public function matching(Criteria $criteria) + { + $expr = $criteria->getWhereExpression(); + $filtered = $this->elements; + + if ($expr) { + $visitor = new ClosureExpressionVisitor(); + $filter = $visitor->dispatch($expr); + $filtered = array_filter($filtered, $filter); + } + + $orderings = $criteria->getOrderings(); + + if ($orderings) { + $next = null; + foreach (array_reverse($orderings) as $field => $ordering) { + $next = ClosureExpressionVisitor::sortByField($field, $ordering === Criteria::DESC ? -1 : 1, $next); + } + + uasort($filtered, $next); + } + + $offset = $criteria->getFirstResult(); + $length = $criteria->getMaxResults(); + + if ($offset || $length) { + $filtered = array_slice($filtered, (int) $offset, $length); + } + + return $this->createFrom($filtered); + } +} diff --git a/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Collection.php b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Collection.php new file mode 100644 index 00000000..fb091923 --- /dev/null +++ b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Collection.php @@ -0,0 +1,99 @@ +ordered map that can also be used + * like a list. + * + * A Collection has an internal iterator just like a PHP array. In addition, + * a Collection can be iterated with external iterators, which is preferable. + * To use an external iterator simply use the foreach language construct to + * iterate over the collection (which calls {@link getIterator()} internally) or + * explicitly retrieve an iterator though {@link getIterator()} which can then be + * used to iterate over the collection. + * You can not rely on the internal iterator of the collection being at a certain + * position unless you explicitly positioned it before. Prefer iteration with + * external iterators. + * + * @psalm-template TKey of array-key + * @psalm-template T + * @template-extends ReadableCollection + * @template-extends ArrayAccess + */ +interface Collection extends ReadableCollection, ArrayAccess +{ + /** + * Adds an element at the end of the collection. + * + * @param mixed $element The element to add. + * @psalm-param T $element + * + * @return true Always TRUE. + */ + public function add($element); + + /** + * Clears the collection, removing all elements. + * + * @return void + */ + public function clear(); + + /** + * Removes the element at the specified index from the collection. + * + * @param string|int $key The key/index of the element to remove. + * @psalm-param TKey $key + * + * @return mixed The removed element or NULL, if the collection did not contain the element. + * @psalm-return T|null + */ + public function remove($key); + + /** + * Removes the specified element from the collection, if it is found. + * + * @param mixed $element The element to remove. + * @psalm-param T $element + * + * @return bool TRUE if this collection contained the specified element, FALSE otherwise. + */ + public function removeElement($element); + + /** + * Sets an element in the collection at the specified key/index. + * + * @param string|int $key The key/index of the element to set. + * @param mixed $value The element to set. + * @psalm-param TKey $key + * @psalm-param T $value + * + * @return void + */ + public function set($key, $value); + + /** + * {@inheritdoc} + * + * @return Collection A collection with the results of the filter operation. + * @psalm-return Collection + */ + public function filter(Closure $p); + + /** + * {@inheritdoc} + * + * @return Collection[] An array with two elements. The first element contains the collection + * of elements where the predicate returned TRUE, the second element + * contains the collection of elements where the predicate returned FALSE. + * @psalm-return array{0: Collection, 1: Collection} + */ + public function partition(Closure $p); +} diff --git a/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Criteria.php b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Criteria.php new file mode 100644 index 00000000..c1639d3f --- /dev/null +++ b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Criteria.php @@ -0,0 +1,245 @@ +expression = $expression; + + if ($firstResult === null && func_num_args() > 2) { + Deprecation::trigger( + 'doctrine/collections', + 'https://github.com/doctrine/collections/pull/311', + 'Passing null as $firstResult to the constructor of %s is deprecated. Pass 0 instead or omit the argument.', + self::class + ); + } + + $this->setFirstResult($firstResult); + $this->setMaxResults($maxResults); + + if ($orderings === null) { + return; + } + + $this->orderBy($orderings); + } + + /** + * Sets the where expression to evaluate when this Criteria is searched for. + * + * @return $this + */ + public function where(Expression $expression) + { + $this->expression = $expression; + + return $this; + } + + /** + * Appends the where expression to evaluate when this Criteria is searched for + * using an AND with previous expression. + * + * @return $this + */ + public function andWhere(Expression $expression) + { + if ($this->expression === null) { + return $this->where($expression); + } + + $this->expression = new CompositeExpression( + CompositeExpression::TYPE_AND, + [$this->expression, $expression] + ); + + return $this; + } + + /** + * Appends the where expression to evaluate when this Criteria is searched for + * using an OR with previous expression. + * + * @return $this + */ + public function orWhere(Expression $expression) + { + if ($this->expression === null) { + return $this->where($expression); + } + + $this->expression = new CompositeExpression( + CompositeExpression::TYPE_OR, + [$this->expression, $expression] + ); + + return $this; + } + + /** + * Gets the expression attached to this Criteria. + * + * @return Expression|null + */ + public function getWhereExpression() + { + return $this->expression; + } + + /** + * Gets the current orderings of this Criteria. + * + * @return string[] + */ + public function getOrderings() + { + return $this->orderings; + } + + /** + * Sets the ordering of the result of this Criteria. + * + * Keys are field and values are the order, being either ASC or DESC. + * + * @see Criteria::ASC + * @see Criteria::DESC + * + * @param string[] $orderings + * + * @return $this + */ + public function orderBy(array $orderings) + { + $this->orderings = array_map( + static function (string $ordering): string { + return strtoupper($ordering) === Criteria::ASC ? Criteria::ASC : Criteria::DESC; + }, + $orderings + ); + + return $this; + } + + /** + * Gets the current first result option of this Criteria. + * + * @return int|null + */ + public function getFirstResult() + { + return $this->firstResult; + } + + /** + * Set the number of first result that this Criteria should return. + * + * @param int|null $firstResult The value to set. + * + * @return $this + */ + public function setFirstResult($firstResult) + { + if ($firstResult === null) { + Deprecation::triggerIfCalledFromOutside( + 'doctrine/collections', + 'https://github.com/doctrine/collections/pull/311', + 'Passing null to %s() is deprecated, pass 0 instead.', + __METHOD__ + ); + } + + $this->firstResult = $firstResult; + + return $this; + } + + /** + * Gets maxResults. + * + * @return int|null + */ + public function getMaxResults() + { + return $this->maxResults; + } + + /** + * Sets maxResults. + * + * @param int|null $maxResults The value to set. + * + * @return $this + */ + public function setMaxResults($maxResults) + { + $this->maxResults = $maxResults; + + return $this; + } +} diff --git a/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/ClosureExpressionVisitor.php b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/ClosureExpressionVisitor.php new file mode 100644 index 00000000..c10b8d51 --- /dev/null +++ b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/ClosureExpressionVisitor.php @@ -0,0 +1,269 @@ +$accessor(); + } + } + + if (preg_match('/^is[A-Z]+/', $field) === 1 && method_exists($object, $field)) { + return $object->$field(); + } + + // __call should be triggered for get. + $accessor = $accessors[0] . $field; + + if (method_exists($object, '__call')) { + return $object->$accessor(); + } + + if ($object instanceof ArrayAccess) { + return $object[$field]; + } + + if (isset($object->$field)) { + return $object->$field; + } + + // camelcase field name to support different variable naming conventions + $ccField = preg_replace_callback('/_(.?)/', static function ($matches) { + return strtoupper($matches[1]); + }, $field); + + foreach ($accessors as $accessor) { + $accessor .= $ccField; + + if (method_exists($object, $accessor)) { + return $object->$accessor(); + } + } + + return $object->$field; + } + + /** + * Helper for sorting arrays of objects based on multiple fields + orientations. + * + * @param string $name + * @param int $orientation + * + * @return Closure + */ + public static function sortByField($name, $orientation = 1, ?Closure $next = null) + { + if (! $next) { + $next = static function (): int { + return 0; + }; + } + + return static function ($a, $b) use ($name, $next, $orientation): int { + $aValue = ClosureExpressionVisitor::getObjectFieldValue($a, $name); + + $bValue = ClosureExpressionVisitor::getObjectFieldValue($b, $name); + + if ($aValue === $bValue) { + return $next($a, $b); + } + + return ($aValue > $bValue ? 1 : -1) * $orientation; + }; + } + + /** + * {@inheritDoc} + */ + public function walkComparison(Comparison $comparison) + { + $field = $comparison->getField(); + $value = $comparison->getValue()->getValue(); // shortcut for walkValue() + + switch ($comparison->getOperator()) { + case Comparison::EQ: + return static function ($object) use ($field, $value): bool { + return ClosureExpressionVisitor::getObjectFieldValue($object, $field) === $value; + }; + + case Comparison::NEQ: + return static function ($object) use ($field, $value): bool { + return ClosureExpressionVisitor::getObjectFieldValue($object, $field) !== $value; + }; + + case Comparison::LT: + return static function ($object) use ($field, $value): bool { + return ClosureExpressionVisitor::getObjectFieldValue($object, $field) < $value; + }; + + case Comparison::LTE: + return static function ($object) use ($field, $value): bool { + return ClosureExpressionVisitor::getObjectFieldValue($object, $field) <= $value; + }; + + case Comparison::GT: + return static function ($object) use ($field, $value): bool { + return ClosureExpressionVisitor::getObjectFieldValue($object, $field) > $value; + }; + + case Comparison::GTE: + return static function ($object) use ($field, $value): bool { + return ClosureExpressionVisitor::getObjectFieldValue($object, $field) >= $value; + }; + + case Comparison::IN: + return static function ($object) use ($field, $value): bool { + $fieldValue = ClosureExpressionVisitor::getObjectFieldValue($object, $field); + + return in_array($fieldValue, $value, is_scalar($fieldValue)); + }; + + case Comparison::NIN: + return static function ($object) use ($field, $value): bool { + $fieldValue = ClosureExpressionVisitor::getObjectFieldValue($object, $field); + + return ! in_array($fieldValue, $value, is_scalar($fieldValue)); + }; + + case Comparison::CONTAINS: + return static function ($object) use ($field, $value) { + return strpos(ClosureExpressionVisitor::getObjectFieldValue($object, $field), $value) !== false; + }; + + case Comparison::MEMBER_OF: + return static function ($object) use ($field, $value): bool { + $fieldValues = ClosureExpressionVisitor::getObjectFieldValue($object, $field); + + if (! is_array($fieldValues)) { + $fieldValues = iterator_to_array($fieldValues); + } + + return in_array($value, $fieldValues, true); + }; + + case Comparison::STARTS_WITH: + return static function ($object) use ($field, $value): bool { + return strpos(ClosureExpressionVisitor::getObjectFieldValue($object, $field), $value) === 0; + }; + + case Comparison::ENDS_WITH: + return static function ($object) use ($field, $value): bool { + return $value === substr(ClosureExpressionVisitor::getObjectFieldValue($object, $field), -strlen($value)); + }; + + default: + throw new RuntimeException('Unknown comparison operator: ' . $comparison->getOperator()); + } + } + + /** + * {@inheritDoc} + */ + public function walkValue(Value $value) + { + return $value->getValue(); + } + + /** + * {@inheritDoc} + */ + public function walkCompositeExpression(CompositeExpression $expr) + { + $expressionList = []; + + foreach ($expr->getExpressionList() as $child) { + $expressionList[] = $this->dispatch($child); + } + + switch ($expr->getType()) { + case CompositeExpression::TYPE_AND: + return $this->andExpressions($expressionList); + + case CompositeExpression::TYPE_OR: + return $this->orExpressions($expressionList); + + default: + throw new RuntimeException('Unknown composite ' . $expr->getType()); + } + } + + /** @param callable[] $expressions */ + private function andExpressions(array $expressions): callable + { + return static function ($object) use ($expressions): bool { + foreach ($expressions as $expression) { + if (! $expression($object)) { + return false; + } + } + + return true; + }; + } + + /** @param callable[] $expressions */ + private function orExpressions(array $expressions): callable + { + return static function ($object) use ($expressions): bool { + foreach ($expressions as $expression) { + if ($expression($object)) { + return true; + } + } + + return false; + }; + } +} diff --git a/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Comparison.php b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Comparison.php new file mode 100644 index 00000000..6762b8be --- /dev/null +++ b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Comparison.php @@ -0,0 +1,74 @@ +'; + public const LT = '<'; + public const LTE = '<='; + public const GT = '>'; + public const GTE = '>='; + public const IS = '='; // no difference with EQ + public const IN = 'IN'; + public const NIN = 'NIN'; + public const CONTAINS = 'CONTAINS'; + public const MEMBER_OF = 'MEMBER_OF'; + public const STARTS_WITH = 'STARTS_WITH'; + public const ENDS_WITH = 'ENDS_WITH'; + + /** @var string */ + private $field; + + /** @var string */ + private $op; + + /** @var Value */ + private $value; + + /** + * @param string $field + * @param string $operator + * @param mixed $value + */ + public function __construct($field, $operator, $value) + { + if (! ($value instanceof Value)) { + $value = new Value($value); + } + + $this->field = $field; + $this->op = $operator; + $this->value = $value; + } + + /** @return string */ + public function getField() + { + return $this->field; + } + + /** @return Value */ + public function getValue() + { + return $this->value; + } + + /** @return string */ + public function getOperator() + { + return $this->op; + } + + /** + * {@inheritDoc} + */ + public function visit(ExpressionVisitor $visitor) + { + return $visitor->walkComparison($this); + } +} diff --git a/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/CompositeExpression.php b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/CompositeExpression.php new file mode 100644 index 00000000..174b21b8 --- /dev/null +++ b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/CompositeExpression.php @@ -0,0 +1,67 @@ +type = $type; + + foreach ($expressions as $expr) { + if ($expr instanceof Value) { + throw new RuntimeException('Values are not supported expressions as children of and/or expressions.'); + } + + if (! ($expr instanceof Expression)) { + throw new RuntimeException('No expression given to CompositeExpression.'); + } + + $this->expressions[] = $expr; + } + } + + /** + * Returns the list of expressions nested in this composite. + * + * @return Expression[] + */ + public function getExpressionList() + { + return $this->expressions; + } + + /** @return string */ + public function getType() + { + return $this->type; + } + + /** + * {@inheritDoc} + */ + public function visit(ExpressionVisitor $visitor) + { + return $visitor->walkCompositeExpression($this); + } +} diff --git a/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Expression.php b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Expression.php new file mode 100644 index 00000000..566d6d50 --- /dev/null +++ b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Expression.php @@ -0,0 +1,12 @@ +walkComparison($expr); + + case $expr instanceof Value: + return $this->walkValue($expr); + + case $expr instanceof CompositeExpression: + return $this->walkCompositeExpression($expr); + + default: + throw new RuntimeException('Unknown Expression ' . get_class($expr)); + } + } +} diff --git a/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Value.php b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Value.php new file mode 100644 index 00000000..693d345b --- /dev/null +++ b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Expr/Value.php @@ -0,0 +1,29 @@ +value = $value; + } + + /** @return mixed */ + public function getValue() + { + return $this->value; + } + + /** + * {@inheritDoc} + */ + public function visit(ExpressionVisitor $visitor) + { + return $visitor->walkValue($this); + } +} diff --git a/vendor/doctrine/collections/lib/Doctrine/Common/Collections/ExpressionBuilder.php b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/ExpressionBuilder.php new file mode 100644 index 00000000..ebb21caa --- /dev/null +++ b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/ExpressionBuilder.php @@ -0,0 +1,181 @@ + + */ +interface ReadableCollection extends Countable, IteratorAggregate +{ + /** + * Checks whether an element is contained in the collection. + * This is an O(n) operation, where n is the size of the collection. + * + * @param mixed $element The element to search for. + * @psalm-param TMaybeContained $element + * + * @return bool TRUE if the collection contains the element, FALSE otherwise. + * @psalm-return (TMaybeContained is T ? bool : false) + * + * @template TMaybeContained + */ + public function contains($element); + + /** + * Checks whether the collection is empty (contains no elements). + * + * @return bool TRUE if the collection is empty, FALSE otherwise. + */ + public function isEmpty(); + + /** + * Checks whether the collection contains an element with the specified key/index. + * + * @param string|int $key The key/index to check for. + * @psalm-param TKey $key + * + * @return bool TRUE if the collection contains an element with the specified key/index, + * FALSE otherwise. + */ + public function containsKey($key); + + /** + * Gets the element at the specified key/index. + * + * @param string|int $key The key/index of the element to retrieve. + * @psalm-param TKey $key + * + * @return mixed + * @psalm-return T|null + */ + public function get($key); + + /** + * Gets all keys/indices of the collection. + * + * @return int[]|string[] The keys/indices of the collection, in the order of the corresponding + * elements in the collection. + * @psalm-return list + */ + public function getKeys(); + + /** + * Gets all values of the collection. + * + * @return mixed[] The values of all elements in the collection, in the + * order they appear in the collection. + * @psalm-return list + */ + public function getValues(); + + /** + * Gets a native PHP array representation of the collection. + * + * @return mixed[] + * @psalm-return array + */ + public function toArray(); + + /** + * Sets the internal iterator to the first element in the collection and returns this element. + * + * @return mixed + * @psalm-return T|false + */ + public function first(); + + /** + * Sets the internal iterator to the last element in the collection and returns this element. + * + * @return mixed + * @psalm-return T|false + */ + public function last(); + + /** + * Gets the key/index of the element at the current iterator position. + * + * @return int|string|null + * @psalm-return TKey|null + */ + public function key(); + + /** + * Gets the element of the collection at the current iterator position. + * + * @return mixed + * @psalm-return T|false + */ + public function current(); + + /** + * Moves the internal iterator position to the next element and returns this element. + * + * @return mixed + * @psalm-return T|false + */ + public function next(); + + /** + * Extracts a slice of $length elements starting at position $offset from the Collection. + * + * If $length is null it returns all elements from $offset to the end of the Collection. + * Keys have to be preserved by this method. Calling this method will only return the + * selected slice and NOT change the elements contained in the collection slice is called on. + * + * @param int $offset The offset to start from. + * @param int|null $length The maximum number of elements to return, or null for no limit. + * + * @return mixed[] + * @psalm-return array + */ + public function slice($offset, $length = null); + + /** + * Tests for the existence of an element that satisfies the given predicate. + * + * @param Closure $p The predicate. + * @psalm-param Closure(TKey, T):bool $p + * + * @return bool TRUE if the predicate is TRUE for at least one element, FALSE otherwise. + */ + public function exists(Closure $p); + + /** + * Returns all the elements of this collection that satisfy the predicate p. + * The order of the elements is preserved. + * + * @param Closure $p The predicate used for filtering. + * @psalm-param Closure(T):bool $p + * + * @return ReadableCollection A collection with the results of the filter operation. + * @psalm-return ReadableCollection + */ + public function filter(Closure $p); + + /** + * Applies the given function to each element in the collection and returns + * a new collection with the elements returned by the function. + * + * @psalm-param Closure(T):U $func + * + * @return Collection + * @psalm-return Collection + * + * @psalm-template U + */ + public function map(Closure $func); + + /** + * Partitions this collection in two collections according to a predicate. + * Keys are preserved in the resulting collections. + * + * @param Closure $p The predicate on which to partition. + * @psalm-param Closure(TKey, T):bool $p + * + * @return ReadableCollection[] An array with two elements. The first element contains the collection + * of elements where the predicate returned TRUE, the second element + * contains the collection of elements where the predicate returned FALSE. + * @psalm-return array{0: ReadableCollection, 1: ReadableCollection} + */ + public function partition(Closure $p); + + /** + * Tests whether the given predicate p holds for all elements of this collection. + * + * @param Closure $p The predicate. + * @psalm-param Closure(TKey, T):bool $p + * + * @return bool TRUE, if the predicate yields TRUE for all elements, FALSE otherwise. + */ + public function forAll(Closure $p); + + /** + * Gets the index/key of a given element. The comparison of two elements is strict, + * that means not only the value but also the type must match. + * For objects this means reference equality. + * + * @param mixed $element The element to search for. + * @psalm-param TMaybeContained $element + * + * @return int|string|bool The key/index of the element or FALSE if the element was not found. + * @psalm-return (TMaybeContained is T ? TKey|false : false) + * + * @template TMaybeContained + */ + public function indexOf($element); +} diff --git a/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Selectable.php b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Selectable.php new file mode 100644 index 00000000..9f7586de --- /dev/null +++ b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/Selectable.php @@ -0,0 +1,30 @@ +&Selectable + * @psalm-return Collection&Selectable + */ + public function matching(Criteria $criteria); +} diff --git a/vendor/doctrine/deprecations/LICENSE b/vendor/doctrine/deprecations/LICENSE new file mode 100644 index 00000000..156905cd --- /dev/null +++ b/vendor/doctrine/deprecations/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2020-2021 Doctrine Project + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/vendor/doctrine/deprecations/composer.json b/vendor/doctrine/deprecations/composer.json new file mode 100644 index 00000000..c79e38cd --- /dev/null +++ b/vendor/doctrine/deprecations/composer.json @@ -0,0 +1,32 @@ +{ + "name": "doctrine/deprecations", + "type": "library", + "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", + "homepage": "https://www.doctrine-project.org/", + "license": "MIT", + "require": { + "php": "^7.1|^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^7.5|^8.5|^9.5", + "psr/log": "^1|^2|^3", + "doctrine/coding-standard": "^9" + }, + "suggest": { + "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + }, + "autoload": { + "psr-4": {"Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"} + }, + "autoload-dev": { + "psr-4": { + "DeprecationTests\\": "test_fixtures/src", + "Doctrine\\Foo\\": "test_fixtures/vendor/doctrine/foo" + } + }, + "config": { + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true + } + } +} diff --git a/vendor/doctrine/deprecations/lib/Doctrine/Deprecations/Deprecation.php b/vendor/doctrine/deprecations/lib/Doctrine/Deprecations/Deprecation.php new file mode 100644 index 00000000..1029372f --- /dev/null +++ b/vendor/doctrine/deprecations/lib/Doctrine/Deprecations/Deprecation.php @@ -0,0 +1,266 @@ + */ + private static $ignoredPackages = []; + + /** @var array */ + private static $ignoredLinks = []; + + /** @var bool */ + private static $deduplication = true; + + /** + * Trigger a deprecation for the given package and identfier. + * + * The link should point to a Github issue or Wiki entry detailing the + * deprecation. It is additionally used to de-duplicate the trigger of the + * same deprecation during a request. + * + * @param mixed $args + */ + public static function trigger(string $package, string $link, string $message, ...$args): void + { + if (self::$type === self::TYPE_NONE) { + return; + } + + if (array_key_exists($link, self::$ignoredLinks)) { + self::$ignoredLinks[$link]++; + } else { + self::$ignoredLinks[$link] = 1; + } + + if (self::$deduplication === true && self::$ignoredLinks[$link] > 1) { + return; + } + + if (isset(self::$ignoredPackages[$package])) { + return; + } + + $backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 2); + + $message = sprintf($message, ...$args); + + self::delegateTriggerToBackend($message, $backtrace, $link, $package); + } + + /** + * Trigger a deprecation for the given package and identifier when called from outside. + * + * "Outside" means we assume that $package is currently installed as a + * dependency and the caller is not a file in that package. When $package + * is installed as a root package then deprecations triggered from the + * tests folder are also considered "outside". + * + * This deprecation method assumes that you are using Composer to install + * the dependency and are using the default /vendor/ folder and not a + * Composer plugin to change the install location. The assumption is also + * that $package is the exact composer packge name. + * + * Compared to {@link trigger()} this method causes some overhead when + * deprecation tracking is enabled even during deduplication, because it + * needs to call {@link debug_backtrace()} + * + * @param mixed $args + */ + public static function triggerIfCalledFromOutside(string $package, string $link, string $message, ...$args): void + { + if (self::$type === self::TYPE_NONE) { + return; + } + + $backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 2); + + // first check that the caller is not from a tests folder, in which case we always let deprecations pass + if (strpos($backtrace[1]['file'], DIRECTORY_SEPARATOR . 'tests' . DIRECTORY_SEPARATOR) === false) { + $path = DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . $package . DIRECTORY_SEPARATOR; + + if (strpos($backtrace[0]['file'], $path) === false) { + return; + } + + if (strpos($backtrace[1]['file'], $path) !== false) { + return; + } + } + + if (array_key_exists($link, self::$ignoredLinks)) { + self::$ignoredLinks[$link]++; + } else { + self::$ignoredLinks[$link] = 1; + } + + if (self::$deduplication === true && self::$ignoredLinks[$link] > 1) { + return; + } + + if (isset(self::$ignoredPackages[$package])) { + return; + } + + $message = sprintf($message, ...$args); + + self::delegateTriggerToBackend($message, $backtrace, $link, $package); + } + + /** + * @param array $backtrace + */ + private static function delegateTriggerToBackend(string $message, array $backtrace, string $link, string $package): void + { + if ((self::$type & self::TYPE_PSR_LOGGER) > 0) { + $context = [ + 'file' => $backtrace[0]['file'], + 'line' => $backtrace[0]['line'], + 'package' => $package, + 'link' => $link, + ]; + + self::$logger->notice($message, $context); + } + + if (! ((self::$type & self::TYPE_TRIGGER_ERROR) > 0)) { + return; + } + + $message .= sprintf( + ' (%s:%d called by %s:%d, %s, package %s)', + self::basename($backtrace[0]['file']), + $backtrace[0]['line'], + self::basename($backtrace[1]['file']), + $backtrace[1]['line'], + $link, + $package + ); + + @trigger_error($message, E_USER_DEPRECATED); + } + + /** + * A non-local-aware version of PHPs basename function. + */ + private static function basename(string $filename): string + { + $pos = strrpos($filename, DIRECTORY_SEPARATOR); + + if ($pos === false) { + return $filename; + } + + return substr($filename, $pos + 1); + } + + public static function enableTrackingDeprecations(): void + { + self::$type |= self::TYPE_TRACK_DEPRECATIONS; + } + + public static function enableWithTriggerError(): void + { + self::$type |= self::TYPE_TRIGGER_ERROR; + } + + public static function enableWithPsrLogger(LoggerInterface $logger): void + { + self::$type |= self::TYPE_PSR_LOGGER; + self::$logger = $logger; + } + + public static function withoutDeduplication(): void + { + self::$deduplication = false; + } + + public static function disable(): void + { + self::$type = self::TYPE_NONE; + self::$logger = null; + self::$deduplication = true; + + foreach (self::$ignoredLinks as $link => $count) { + self::$ignoredLinks[$link] = 0; + } + } + + public static function ignorePackage(string $packageName): void + { + self::$ignoredPackages[$packageName] = true; + } + + public static function ignoreDeprecations(string ...$links): void + { + foreach ($links as $link) { + self::$ignoredLinks[$link] = 0; + } + } + + public static function getUniqueTriggeredDeprecationsCount(): int + { + return array_reduce(self::$ignoredLinks, static function (int $carry, int $count) { + return $carry + $count; + }, 0); + } + + /** + * Returns each triggered deprecation link identifier and the amount of occurrences. + * + * @return array + */ + public static function getTriggeredDeprecations(): array + { + return self::$ignoredLinks; + } +} diff --git a/vendor/doctrine/deprecations/lib/Doctrine/Deprecations/PHPUnit/VerifyDeprecations.php b/vendor/doctrine/deprecations/lib/Doctrine/Deprecations/PHPUnit/VerifyDeprecations.php new file mode 100644 index 00000000..4c3366a9 --- /dev/null +++ b/vendor/doctrine/deprecations/lib/Doctrine/Deprecations/PHPUnit/VerifyDeprecations.php @@ -0,0 +1,66 @@ + */ + private $doctrineDeprecationsExpectations = []; + + /** @var array */ + private $doctrineNoDeprecationsExpectations = []; + + public function expectDeprecationWithIdentifier(string $identifier): void + { + $this->doctrineDeprecationsExpectations[$identifier] = Deprecation::getTriggeredDeprecations()[$identifier] ?? 0; + } + + public function expectNoDeprecationWithIdentifier(string $identifier): void + { + $this->doctrineNoDeprecationsExpectations[$identifier] = Deprecation::getTriggeredDeprecations()[$identifier] ?? 0; + } + + /** + * @before + */ + public function enableDeprecationTracking(): void + { + Deprecation::enableTrackingDeprecations(); + } + + /** + * @after + */ + public function verifyDeprecationsAreTriggered(): void + { + foreach ($this->doctrineDeprecationsExpectations as $identifier => $expectation) { + $actualCount = Deprecation::getTriggeredDeprecations()[$identifier] ?? 0; + + $this->assertTrue( + $actualCount > $expectation, + sprintf( + "Expected deprecation with identifier '%s' was not triggered by code executed in test.", + $identifier + ) + ); + } + + foreach ($this->doctrineNoDeprecationsExpectations as $identifier => $expectation) { + $actualCount = Deprecation::getTriggeredDeprecations()[$identifier] ?? 0; + + $this->assertTrue( + $actualCount === $expectation, + sprintf( + "Expected deprecation with identifier '%s' was triggered by code executed in test, but expected not to.", + $identifier + ) + ); + } + } +} diff --git a/vendor/dragonmantank/cron-expression/LICENSE b/vendor/dragonmantank/cron-expression/LICENSE new file mode 100644 index 00000000..3e38bbc8 --- /dev/null +++ b/vendor/dragonmantank/cron-expression/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2011 Michael Dowling , 2016 Chris Tankersley , and contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/vendor/dragonmantank/cron-expression/composer.json b/vendor/dragonmantank/cron-expression/composer.json new file mode 100644 index 00000000..657a5b47 --- /dev/null +++ b/vendor/dragonmantank/cron-expression/composer.json @@ -0,0 +1,47 @@ +{ + "name": "dragonmantank/cron-expression", + "type": "library", + "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", + "keywords": ["cron", "schedule"], + "license": "MIT", + "authors": [ + { + "name": "Chris Tankersley", + "email": "chris@ctankersley.com", + "homepage": "https://github.com/dragonmantank" + } + ], + "require": { + "php": "^7.2|^8.0", + "webmozart/assert": "^1.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0", + "phpstan/phpstan-webmozart-assert": "^1.0", + "phpstan/extension-installer": "^1.0" + }, + "autoload": { + "psr-4": { + "Cron\\": "src/Cron/" + } + }, + "autoload-dev": { + "psr-4": { + "Cron\\Tests\\": "tests/Cron/" + } + }, + "replace": { + "mtdowling/cron-expression": "^1.0" + }, + "scripts": { + "phpstan": "./vendor/bin/phpstan analyze", + "test": "phpunit" + }, + "config": { + "allow-plugins": { + "ocramius/package-versions": true, + "phpstan/extension-installer": true + } + } +} diff --git a/vendor/dragonmantank/cron-expression/src/Cron/AbstractField.php b/vendor/dragonmantank/cron-expression/src/Cron/AbstractField.php new file mode 100644 index 00000000..df2848df --- /dev/null +++ b/vendor/dragonmantank/cron-expression/src/Cron/AbstractField.php @@ -0,0 +1,346 @@ +fullRange = range($this->rangeStart, $this->rangeEnd); + } + + /** + * Check to see if a field is satisfied by a value. + * + * @internal + * @param int $dateValue Date value to check + * @param string $value Value to test + * + * @return bool + */ + public function isSatisfied(int $dateValue, string $value): bool + { + if ($this->isIncrementsOfRanges($value)) { + return $this->isInIncrementsOfRanges($dateValue, $value); + } + + if ($this->isRange($value)) { + return $this->isInRange($dateValue, $value); + } + + return '*' === $value || $dateValue === (int) $value; + } + + /** + * Check if a value is a range. + * + * @internal + * @param string $value Value to test + * + * @return bool + */ + public function isRange(string $value): bool + { + return false !== strpos($value, '-'); + } + + /** + * Check if a value is an increments of ranges. + * + * @internal + * @param string $value Value to test + * + * @return bool + */ + public function isIncrementsOfRanges(string $value): bool + { + return false !== strpos($value, '/'); + } + + /** + * Test if a value is within a range. + * + * @internal + * @param int $dateValue Set date value + * @param string $value Value to test + * + * @return bool + */ + public function isInRange(int $dateValue, $value): bool + { + $parts = array_map( + function ($value) { + $value = trim($value); + + return $this->convertLiterals($value); + }, + explode('-', $value, 2) + ); + + return $dateValue >= $parts[0] && $dateValue <= $parts[1]; + } + + /** + * Test if a value is within an increments of ranges (offset[-to]/step size). + * + * @internal + * @param int $dateValue Set date value + * @param string $value Value to test + * + * @return bool + */ + public function isInIncrementsOfRanges(int $dateValue, string $value): bool + { + $chunks = array_map('trim', explode('/', $value, 2)); + $range = $chunks[0]; + $step = $chunks[1] ?? 0; + + // No step or 0 steps aren't cool + /** @phpstan-ignore-next-line */ + if (null === $step || '0' === $step || 0 === $step) { + return false; + } + + // Expand the * to a full range + if ('*' === $range) { + $range = $this->rangeStart . '-' . $this->rangeEnd; + } + + // Generate the requested small range + $rangeChunks = explode('-', $range, 2); + $rangeStart = (int) $rangeChunks[0]; + $rangeEnd = $rangeChunks[1] ?? $rangeStart; + $rangeEnd = (int) $rangeEnd; + + if ($rangeStart < $this->rangeStart || $rangeStart > $this->rangeEnd || $rangeStart > $rangeEnd) { + throw new \OutOfRangeException('Invalid range start requested'); + } + + if ($rangeEnd < $this->rangeStart || $rangeEnd > $this->rangeEnd || $rangeEnd < $rangeStart) { + throw new \OutOfRangeException('Invalid range end requested'); + } + + // Steps larger than the range need to wrap around and be handled + // slightly differently than smaller steps + + // UPDATE - This is actually false. The C implementation will allow a + // larger step as valid syntax, it never wraps around. It will stop + // once it hits the end. Unfortunately this means in future versions + // we will not wrap around. However, because the logic exists today + // per the above documentation, fixing the bug from #89 + if ($step > $this->rangeEnd) { + $thisRange = [$this->fullRange[$step % \count($this->fullRange)]]; + } else { + if ($step > ($rangeEnd - $rangeStart)) { + $thisRange[$rangeStart] = (int) $rangeStart; + } else { + $thisRange = range($rangeStart, $rangeEnd, (int) $step); + } + } + + return \in_array($dateValue, $thisRange, true); + } + + /** + * Returns a range of values for the given cron expression. + * + * @param string $expression The expression to evaluate + * @param int $max Maximum offset for range + * + * @return array + */ + public function getRangeForExpression(string $expression, int $max): array + { + $values = []; + $expression = $this->convertLiterals($expression); + + if (false !== strpos($expression, ',')) { + $ranges = explode(',', $expression); + $values = []; + foreach ($ranges as $range) { + $expanded = $this->getRangeForExpression($range, $this->rangeEnd); + $values = array_merge($values, $expanded); + } + + return $values; + } + + if ($this->isRange($expression) || $this->isIncrementsOfRanges($expression)) { + if (!$this->isIncrementsOfRanges($expression)) { + [$offset, $to] = explode('-', $expression); + $offset = $this->convertLiterals($offset); + $to = $this->convertLiterals($to); + $stepSize = 1; + } else { + $range = array_map('trim', explode('/', $expression, 2)); + $stepSize = $range[1] ?? 0; + $range = $range[0]; + $range = explode('-', $range, 2); + $offset = $range[0]; + $to = $range[1] ?? $max; + } + $offset = '*' === $offset ? $this->rangeStart : $offset; + if ($stepSize >= $this->rangeEnd) { + $values = [$this->fullRange[$stepSize % \count($this->fullRange)]]; + } else { + for ($i = $offset; $i <= $to; $i += $stepSize) { + $values[] = (int) $i; + } + } + sort($values); + } else { + $values = [$expression]; + } + + return $values; + } + + /** + * Convert literal. + * + * @param string $value + * + * @return string + */ + protected function convertLiterals(string $value): string + { + if (\count($this->literals)) { + $key = array_search(strtoupper($value), $this->literals, true); + if (false !== $key) { + return (string) $key; + } + } + + return $value; + } + + /** + * Checks to see if a value is valid for the field. + * + * @param string $value + * + * @return bool + */ + public function validate(string $value): bool + { + $value = $this->convertLiterals($value); + + // All fields allow * as a valid value + if ('*' === $value) { + return true; + } + + // Validate each chunk of a list individually + if (false !== strpos($value, ',')) { + foreach (explode(',', $value) as $listItem) { + if (!$this->validate($listItem)) { + return false; + } + } + + return true; + } + + if (false !== strpos($value, '/')) { + [$range, $step] = explode('/', $value); + + // Don't allow numeric ranges + if (is_numeric($range)) { + return false; + } + + return $this->validate($range) && filter_var($step, FILTER_VALIDATE_INT); + } + + if (false !== strpos($value, '-')) { + if (substr_count($value, '-') > 1) { + return false; + } + + $chunks = explode('-', $value); + $chunks[0] = $this->convertLiterals($chunks[0]); + $chunks[1] = $this->convertLiterals($chunks[1]); + + if ('*' === $chunks[0] || '*' === $chunks[1]) { + return false; + } + + return $this->validate($chunks[0]) && $this->validate($chunks[1]); + } + + if (!is_numeric($value)) { + return false; + } + + if (false !== strpos($value, '.')) { + return false; + } + + // We should have a numeric by now, so coerce this into an integer + $value = (int) $value; + + return \in_array($value, $this->fullRange, true); + } + + protected function timezoneSafeModify(DateTimeInterface $dt, string $modification): DateTimeInterface + { + $timezone = $dt->getTimezone(); + $dt = $dt->setTimezone(new \DateTimeZone("UTC")); + $dt = $dt->modify($modification); + $dt = $dt->setTimezone($timezone); + return $dt; + } + + protected function setTimeHour(DateTimeInterface $date, bool $invert, int $originalTimestamp): DateTimeInterface + { + $date = $date->setTime((int)$date->format('H'), ($invert ? 59 : 0)); + + // setTime caused the offset to change, moving time in the wrong direction + $actualTimestamp = $date->format('U'); + if ((! $invert) && ($actualTimestamp <= $originalTimestamp)) { + $date = $this->timezoneSafeModify($date, "+1 hour"); + } elseif ($invert && ($actualTimestamp >= $originalTimestamp)) { + $date = $this->timezoneSafeModify($date, "-1 hour"); + } + + return $date; + } +} diff --git a/vendor/dragonmantank/cron-expression/src/Cron/CronExpression.php b/vendor/dragonmantank/cron-expression/src/Cron/CronExpression.php new file mode 100644 index 00000000..d5337cc5 --- /dev/null +++ b/vendor/dragonmantank/cron-expression/src/Cron/CronExpression.php @@ -0,0 +1,568 @@ + '0 0 1 1 *', + '@annually' => '0 0 1 1 *', + '@monthly' => '0 0 1 * *', + '@weekly' => '0 0 * * 0', + '@daily' => '0 0 * * *', + '@midnight' => '0 0 * * *', + '@hourly' => '0 * * * *', + ]; + + /** + * @var array CRON expression parts + */ + protected $cronParts; + + /** + * @var FieldFactoryInterface CRON field factory + */ + protected $fieldFactory; + + /** + * @var int Max iteration count when searching for next run date + */ + protected $maxIterationCount = 1000; + + /** + * @var array Order in which to test of cron parts + */ + protected static $order = [ + self::YEAR, + self::MONTH, + self::DAY, + self::WEEKDAY, + self::HOUR, + self::MINUTE, + ]; + + /** + * @var array + */ + private static $registeredAliases = self::MAPPINGS; + + /** + * Registered a user defined CRON Expression Alias. + * + * @throws LogicException If the expression or the alias name are invalid + * or if the alias is already registered. + */ + public static function registerAlias(string $alias, string $expression): void + { + try { + new self($expression); + } catch (InvalidArgumentException $exception) { + throw new LogicException("The expression `$expression` is invalid", 0, $exception); + } + + $shortcut = strtolower($alias); + if (1 !== preg_match('/^@\w+$/', $shortcut)) { + throw new LogicException("The alias `$alias` is invalid. It must start with an `@` character and contain alphanumeric (letters, numbers, regardless of case) plus underscore (_)."); + } + + if (isset(self::$registeredAliases[$shortcut])) { + throw new LogicException("The alias `$alias` is already registered."); + } + + self::$registeredAliases[$shortcut] = $expression; + } + + /** + * Unregistered a user defined CRON Expression Alias. + * + * @throws LogicException If the user tries to unregister a built-in alias + */ + public static function unregisterAlias(string $alias): bool + { + $shortcut = strtolower($alias); + if (isset(self::MAPPINGS[$shortcut])) { + throw new LogicException("The alias `$alias` is a built-in alias; it can not be unregistered."); + } + + if (!isset(self::$registeredAliases[$shortcut])) { + return false; + } + + unset(self::$registeredAliases[$shortcut]); + + return true; + } + + /** + * Tells whether a CRON Expression alias is registered. + */ + public static function supportsAlias(string $alias): bool + { + return isset(self::$registeredAliases[strtolower($alias)]); + } + + /** + * Returns all registered aliases as an associated array where the aliases are the key + * and their associated expressions are the values. + * + * @return array + */ + public static function getAliases(): array + { + return self::$registeredAliases; + } + + /** + * @deprecated since version 3.0.2, use __construct instead. + */ + public static function factory(string $expression, FieldFactoryInterface $fieldFactory = null): CronExpression + { + /** @phpstan-ignore-next-line */ + return new static($expression, $fieldFactory); + } + + /** + * Validate a CronExpression. + * + * @param string $expression the CRON expression to validate + * + * @return bool True if a valid CRON expression was passed. False if not. + */ + public static function isValidExpression(string $expression): bool + { + try { + new CronExpression($expression); + } catch (InvalidArgumentException $e) { + return false; + } + + return true; + } + + /** + * Parse a CRON expression. + * + * @param string $expression CRON expression (e.g. '8 * * * *') + * @param null|FieldFactoryInterface $fieldFactory Factory to create cron fields + */ + public function __construct(string $expression, FieldFactoryInterface $fieldFactory = null) + { + $shortcut = strtolower($expression); + $expression = self::$registeredAliases[$shortcut] ?? $expression; + + $this->fieldFactory = $fieldFactory ?: new FieldFactory(); + $this->setExpression($expression); + } + + /** + * Set or change the CRON expression. + * + * @param string $value CRON expression (e.g. 8 * * * *) + * + * @throws \InvalidArgumentException if not a valid CRON expression + * + * @return CronExpression + */ + public function setExpression(string $value): CronExpression + { + $split = preg_split('/\s/', $value, -1, PREG_SPLIT_NO_EMPTY); + Assert::isArray($split); + + $this->cronParts = $split; + if (\count($this->cronParts) < 5) { + throw new InvalidArgumentException( + $value . ' is not a valid CRON expression' + ); + } + + foreach ($this->cronParts as $position => $part) { + $this->setPart($position, $part); + } + + return $this; + } + + /** + * Set part of the CRON expression. + * + * @param int $position The position of the CRON expression to set + * @param string $value The value to set + * + * @throws \InvalidArgumentException if the value is not valid for the part + * + * @return CronExpression + */ + public function setPart(int $position, string $value): CronExpression + { + if (!$this->fieldFactory->getField($position)->validate($value)) { + throw new InvalidArgumentException( + 'Invalid CRON field value ' . $value . ' at position ' . $position + ); + } + + $this->cronParts[$position] = $value; + + return $this; + } + + /** + * Set max iteration count for searching next run dates. + * + * @param int $maxIterationCount Max iteration count when searching for next run date + * + * @return CronExpression + */ + public function setMaxIterationCount(int $maxIterationCount): CronExpression + { + $this->maxIterationCount = $maxIterationCount; + + return $this; + } + + /** + * Get a next run date relative to the current date or a specific date + * + * @param string|\DateTimeInterface $currentTime Relative calculation date + * @param int $nth Number of matches to skip before returning a + * matching next run date. 0, the default, will return the + * current date and time if the next run date falls on the + * current date and time. Setting this value to 1 will + * skip the first match and go to the second match. + * Setting this value to 2 will skip the first 2 + * matches and so on. + * @param bool $allowCurrentDate Set to TRUE to return the current date if + * it matches the cron expression. + * @param null|string $timeZone TimeZone to use instead of the system default + * + * @throws \RuntimeException on too many iterations + * @throws \Exception + * + * @return \DateTime + */ + public function getNextRunDate($currentTime = 'now', int $nth = 0, bool $allowCurrentDate = false, $timeZone = null): DateTime + { + return $this->getRunDate($currentTime, $nth, false, $allowCurrentDate, $timeZone); + } + + /** + * Get a previous run date relative to the current date or a specific date. + * + * @param string|\DateTimeInterface $currentTime Relative calculation date + * @param int $nth Number of matches to skip before returning + * @param bool $allowCurrentDate Set to TRUE to return the + * current date if it matches the cron expression + * @param null|string $timeZone TimeZone to use instead of the system default + * + * @throws \RuntimeException on too many iterations + * @throws \Exception + * + * @return \DateTime + * + * @see \Cron\CronExpression::getNextRunDate + */ + public function getPreviousRunDate($currentTime = 'now', int $nth = 0, bool $allowCurrentDate = false, $timeZone = null): DateTime + { + return $this->getRunDate($currentTime, $nth, true, $allowCurrentDate, $timeZone); + } + + /** + * Get multiple run dates starting at the current date or a specific date. + * + * @param int $total Set the total number of dates to calculate + * @param string|\DateTimeInterface|null $currentTime Relative calculation date + * @param bool $invert Set to TRUE to retrieve previous dates + * @param bool $allowCurrentDate Set to TRUE to return the + * current date if it matches the cron expression + * @param null|string $timeZone TimeZone to use instead of the system default + * + * @return \DateTime[] Returns an array of run dates + */ + public function getMultipleRunDates(int $total, $currentTime = 'now', bool $invert = false, bool $allowCurrentDate = false, $timeZone = null): array + { + $timeZone = $this->determineTimeZone($currentTime, $timeZone); + + if ('now' === $currentTime) { + $currentTime = new DateTime(); + } elseif ($currentTime instanceof DateTime) { + $currentTime = clone $currentTime; + } elseif ($currentTime instanceof DateTimeImmutable) { + $currentTime = DateTime::createFromFormat('U', $currentTime->format('U')); + } elseif (\is_string($currentTime)) { + $currentTime = new DateTime($currentTime); + } + + Assert::isInstanceOf($currentTime, DateTime::class); + $currentTime->setTimezone(new DateTimeZone($timeZone)); + + $matches = []; + for ($i = 0; $i < $total; ++$i) { + try { + $result = $this->getRunDate($currentTime, 0, $invert, $allowCurrentDate, $timeZone); + } catch (RuntimeException $e) { + break; + } + + $allowCurrentDate = false; + $currentTime = clone $result; + $matches[] = $result; + } + + return $matches; + } + + /** + * Get all or part of the CRON expression. + * + * @param int|string|null $part specify the part to retrieve or NULL to get the full + * cron schedule string + * + * @return null|string Returns the CRON expression, a part of the + * CRON expression, or NULL if the part was specified but not found + */ + public function getExpression($part = null): ?string + { + if (null === $part) { + return implode(' ', $this->cronParts); + } + + if (array_key_exists($part, $this->cronParts)) { + return $this->cronParts[$part]; + } + + return null; + } + + /** + * Gets the parts of the cron expression as an array. + * + * @return string[] + * The array of parts that make up this expression. + */ + public function getParts() + { + return $this->cronParts; + } + + /** + * Helper method to output the full expression. + * + * @return string Full CRON expression + */ + public function __toString(): string + { + return (string) $this->getExpression(); + } + + /** + * Determine if the cron is due to run based on the current date or a + * specific date. This method assumes that the current number of + * seconds are irrelevant, and should be called once per minute. + * + * @param string|\DateTimeInterface $currentTime Relative calculation date + * @param null|string $timeZone TimeZone to use instead of the system default + * + * @return bool Returns TRUE if the cron is due to run or FALSE if not + */ + public function isDue($currentTime = 'now', $timeZone = null): bool + { + $timeZone = $this->determineTimeZone($currentTime, $timeZone); + + if ('now' === $currentTime) { + $currentTime = new DateTime(); + } elseif ($currentTime instanceof DateTime) { + $currentTime = clone $currentTime; + } elseif ($currentTime instanceof DateTimeImmutable) { + $currentTime = DateTime::createFromFormat('U', $currentTime->format('U')); + } elseif (\is_string($currentTime)) { + $currentTime = new DateTime($currentTime); + } + + Assert::isInstanceOf($currentTime, DateTime::class); + $currentTime->setTimezone(new DateTimeZone($timeZone)); + + // drop the seconds to 0 + $currentTime->setTime((int) $currentTime->format('H'), (int) $currentTime->format('i'), 0); + + try { + return $this->getNextRunDate($currentTime, 0, true)->getTimestamp() === $currentTime->getTimestamp(); + } catch (Exception $e) { + return false; + } + } + + /** + * Get the next or previous run date of the expression relative to a date. + * + * @param string|\DateTimeInterface|null $currentTime Relative calculation date + * @param int $nth Number of matches to skip before returning + * @param bool $invert Set to TRUE to go backwards in time + * @param bool $allowCurrentDate Set to TRUE to return the + * current date if it matches the cron expression + * @param string|null $timeZone TimeZone to use instead of the system default + * + * @throws \RuntimeException on too many iterations + * @throws Exception + * + * @return \DateTime + */ + protected function getRunDate($currentTime = null, int $nth = 0, bool $invert = false, bool $allowCurrentDate = false, $timeZone = null): DateTime + { + $timeZone = $this->determineTimeZone($currentTime, $timeZone); + + if ($currentTime instanceof DateTime) { + $currentDate = clone $currentTime; + } elseif ($currentTime instanceof DateTimeImmutable) { + $currentDate = DateTime::createFromFormat('U', $currentTime->format('U')); + } elseif (\is_string($currentTime)) { + $currentDate = new DateTime($currentTime); + } else { + $currentDate = new DateTime('now'); + } + + Assert::isInstanceOf($currentDate, DateTime::class); + $currentDate->setTimezone(new DateTimeZone($timeZone)); + // Workaround for setTime causing an offset change: https://bugs.php.net/bug.php?id=81074 + $currentDate = DateTime::createFromFormat("!Y-m-d H:iO", $currentDate->format("Y-m-d H:iP"), $currentDate->getTimezone()); + if ($currentDate === false) { + throw new \RuntimeException('Unable to create date from format'); + } + $currentDate->setTimezone(new DateTimeZone($timeZone)); + + $nextRun = clone $currentDate; + + // We don't have to satisfy * or null fields + $parts = []; + $fields = []; + foreach (self::$order as $position) { + $part = $this->getExpression($position); + if (null === $part || '*' === $part) { + continue; + } + $parts[$position] = $part; + $fields[$position] = $this->fieldFactory->getField($position); + } + + if (isset($parts[self::DAY]) && isset($parts[self::WEEKDAY])) { + $domExpression = sprintf('%s %s %s %s *', $this->getExpression(0), $this->getExpression(1), $this->getExpression(2), $this->getExpression(3)); + $dowExpression = sprintf('%s %s * %s %s', $this->getExpression(0), $this->getExpression(1), $this->getExpression(3), $this->getExpression(4)); + + $domExpression = new self($domExpression); + $dowExpression = new self($dowExpression); + + $domRunDates = $domExpression->getMultipleRunDates($nth + 1, $currentTime, $invert, $allowCurrentDate, $timeZone); + $dowRunDates = $dowExpression->getMultipleRunDates($nth + 1, $currentTime, $invert, $allowCurrentDate, $timeZone); + + if ($parts[self::DAY] === '?' || $parts[self::DAY] === '*') { + $domRunDates = []; + } + + if ($parts[self::WEEKDAY] === '?' || $parts[self::WEEKDAY] === '*') { + $dowRunDates = []; + } + + $combined = array_merge($domRunDates, $dowRunDates); + usort($combined, function ($a, $b) { + return $a->format('Y-m-d H:i:s') <=> $b->format('Y-m-d H:i:s'); + }); + if ($invert) { + $combined = array_reverse($combined); + } + + return $combined[$nth]; + } + + // Set a hard limit to bail on an impossible date + for ($i = 0; $i < $this->maxIterationCount; ++$i) { + foreach ($parts as $position => $part) { + $satisfied = false; + // Get the field object used to validate this part + $field = $fields[$position]; + // Check if this is singular or a list + if (false === strpos($part, ',')) { + $satisfied = $field->isSatisfiedBy($nextRun, $part, $invert); + } else { + foreach (array_map('trim', explode(',', $part)) as $listPart) { + if ($field->isSatisfiedBy($nextRun, $listPart, $invert)) { + $satisfied = true; + + break; + } + } + } + + // If the field is not satisfied, then start over + if (!$satisfied) { + $field->increment($nextRun, $invert, $part); + + continue 2; + } + } + + // Skip this match if needed + if ((!$allowCurrentDate && $nextRun == $currentDate) || --$nth > -1) { + $this->fieldFactory->getField(self::MINUTE)->increment($nextRun, $invert, $parts[self::MINUTE] ?? null); + continue; + } + + return $nextRun; + } + + // @codeCoverageIgnoreStart + throw new RuntimeException('Impossible CRON expression'); + // @codeCoverageIgnoreEnd + } + + /** + * Workout what timeZone should be used. + * + * @param string|\DateTimeInterface|null $currentTime Relative calculation date + * @param string|null $timeZone TimeZone to use instead of the system default + * + * @return string + */ + protected function determineTimeZone($currentTime, ?string $timeZone): string + { + if (null !== $timeZone) { + return $timeZone; + } + + if ($currentTime instanceof DateTimeInterface) { + return $currentTime->getTimezone()->getName(); + } + + return date_default_timezone_get(); + } +} diff --git a/vendor/dragonmantank/cron-expression/src/Cron/DayOfMonthField.php b/vendor/dragonmantank/cron-expression/src/Cron/DayOfMonthField.php new file mode 100644 index 00000000..39ff5978 --- /dev/null +++ b/vendor/dragonmantank/cron-expression/src/Cron/DayOfMonthField.php @@ -0,0 +1,164 @@ + + */ +class DayOfMonthField extends AbstractField +{ + /** + * {@inheritdoc} + */ + protected $rangeStart = 1; + + /** + * {@inheritdoc} + */ + protected $rangeEnd = 31; + + /** + * Get the nearest day of the week for a given day in a month. + * + * @param int $currentYear Current year + * @param int $currentMonth Current month + * @param int $targetDay Target day of the month + * + * @return \DateTime|null Returns the nearest date + */ + private static function getNearestWeekday(int $currentYear, int $currentMonth, int $targetDay): ?DateTime + { + $tday = str_pad((string) $targetDay, 2, '0', STR_PAD_LEFT); + $target = DateTime::createFromFormat('Y-m-d', "{$currentYear}-{$currentMonth}-{$tday}"); + + if ($target === false) { + return null; + } + + $currentWeekday = (int) $target->format('N'); + + if ($currentWeekday < 6) { + return $target; + } + + $lastDayOfMonth = $target->format('t'); + foreach ([-1, 1, -2, 2] as $i) { + $adjusted = $targetDay + $i; + if ($adjusted > 0 && $adjusted <= $lastDayOfMonth) { + $target->setDate($currentYear, $currentMonth, $adjusted); + + if ((int) $target->format('N') < 6 && (int) $target->format('m') === $currentMonth) { + return $target; + } + } + } + + return null; + } + + /** + * {@inheritdoc} + */ + public function isSatisfiedBy(DateTimeInterface $date, $value, bool $invert): bool + { + // ? states that the field value is to be skipped + if ('?' === $value) { + return true; + } + + $fieldValue = $date->format('d'); + + // Check to see if this is the last day of the month + if ('L' === $value) { + return $fieldValue === $date->format('t'); + } + + // Check to see if this is the nearest weekday to a particular value + if ($wPosition = strpos($value, 'W')) { + // Parse the target day + $targetDay = (int) substr($value, 0, $wPosition); + // Find out if the current day is the nearest day of the week + $nearest = self::getNearestWeekday( + (int) $date->format('Y'), + (int) $date->format('m'), + $targetDay + ); + if ($nearest) { + return $date->format('j') === $nearest->format('j'); + } + + throw new \RuntimeException('Unable to return nearest weekday'); + } + + return $this->isSatisfied((int) $date->format('d'), $value); + } + + /** + * @inheritDoc + * + * @param \DateTime|\DateTimeImmutable $date + */ + public function increment(DateTimeInterface &$date, $invert = false, $parts = null): FieldInterface + { + if (! $invert) { + $date = $date->add(new \DateInterval('P1D')); + $date = $date->setTime(0, 0); + } else { + $date = $date->sub(new \DateInterval('P1D')); + $date = $date->setTime(23, 59); + } + + return $this; + } + + /** + * {@inheritdoc} + */ + public function validate(string $value): bool + { + $basicChecks = parent::validate($value); + + // Validate that a list don't have W or L + if (false !== strpos($value, ',') && (false !== strpos($value, 'W') || false !== strpos($value, 'L'))) { + return false; + } + + if (!$basicChecks) { + if ('?' === $value) { + return true; + } + + if ('L' === $value) { + return true; + } + + if (preg_match('/^(.*)W$/', $value, $matches)) { + return $this->validate($matches[1]); + } + + return false; + } + + return $basicChecks; + } +} diff --git a/vendor/dragonmantank/cron-expression/src/Cron/DayOfWeekField.php b/vendor/dragonmantank/cron-expression/src/Cron/DayOfWeekField.php new file mode 100644 index 00000000..b9bbf48b --- /dev/null +++ b/vendor/dragonmantank/cron-expression/src/Cron/DayOfWeekField.php @@ -0,0 +1,194 @@ + 'MON', 2 => 'TUE', 3 => 'WED', 4 => 'THU', 5 => 'FRI', 6 => 'SAT', 7 => 'SUN']; + + /** + * Constructor + */ + public function __construct() + { + $this->nthRange = range(1, 5); + parent::__construct(); + } + + /** + * @inheritDoc + */ + public function isSatisfiedBy(DateTimeInterface $date, $value, bool $invert): bool + { + if ('?' === $value) { + return true; + } + + // Convert text day of the week values to integers + $value = $this->convertLiterals($value); + + $currentYear = (int) $date->format('Y'); + $currentMonth = (int) $date->format('m'); + $lastDayOfMonth = (int) $date->format('t'); + + // Find out if this is the last specific weekday of the month + if ($lPosition = strpos($value, 'L')) { + $weekday = $this->convertLiterals(substr($value, 0, $lPosition)); + $weekday %= 7; + + $daysInMonth = (int) $date->format('t'); + $remainingDaysInMonth = $daysInMonth - (int) $date->format('d'); + return (($weekday === (int) $date->format('w')) && ($remainingDaysInMonth < 7)); + } + + // Handle # hash tokens + if (strpos($value, '#')) { + [$weekday, $nth] = explode('#', $value); + + if (!is_numeric($nth)) { + throw new InvalidArgumentException("Hashed weekdays must be numeric, {$nth} given"); + } else { + $nth = (int) $nth; + } + + // 0 and 7 are both Sunday, however 7 matches date('N') format ISO-8601 + if ('0' === $weekday) { + $weekday = 7; + } + + $weekday = (int) $this->convertLiterals((string) $weekday); + + // Validate the hash fields + if ($weekday < 0 || $weekday > 7) { + throw new InvalidArgumentException("Weekday must be a value between 0 and 7. {$weekday} given"); + } + + if (!\in_array($nth, $this->nthRange, true)) { + throw new InvalidArgumentException("There are never more than 5 or less than 1 of a given weekday in a month, {$nth} given"); + } + + // The current weekday must match the targeted weekday to proceed + if ((int) $date->format('N') !== $weekday) { + return false; + } + + $tdate = clone $date; + $tdate = $tdate->setDate($currentYear, $currentMonth, 1); + $dayCount = 0; + $currentDay = 1; + while ($currentDay < $lastDayOfMonth + 1) { + if ((int) $tdate->format('N') === $weekday) { + if (++$dayCount >= $nth) { + break; + } + } + $tdate = $tdate->setDate($currentYear, $currentMonth, ++$currentDay); + } + + return (int) $date->format('j') === $currentDay; + } + + // Handle day of the week values + if (false !== strpos($value, '-')) { + $parts = explode('-', $value); + if ('7' === $parts[0]) { + $parts[0] = 0; + } elseif ('0' === $parts[1]) { + $parts[1] = 7; + } + $value = implode('-', $parts); + } + + // Test to see which Sunday to use -- 0 == 7 == Sunday + $format = \in_array(7, array_map(function ($value) { + return (int) $value; + }, str_split($value)), true) ? 'N' : 'w'; + $fieldValue = (int) $date->format($format); + + return $this->isSatisfied($fieldValue, $value); + } + + /** + * @inheritDoc + */ + public function increment(DateTimeInterface &$date, $invert = false, $parts = null): FieldInterface + { + if (! $invert) { + $date = $date->add(new \DateInterval('P1D')); + $date = $date->setTime(0, 0); + } else { + $date = $date->sub(new \DateInterval('P1D')); + $date = $date->setTime(23, 59); + } + + return $this; + } + + /** + * {@inheritdoc} + */ + public function validate(string $value): bool + { + $basicChecks = parent::validate($value); + + if (!$basicChecks) { + if ('?' === $value) { + return true; + } + + // Handle the # value + if (false !== strpos($value, '#')) { + $chunks = explode('#', $value); + $chunks[0] = $this->convertLiterals($chunks[0]); + + if (parent::validate($chunks[0]) && is_numeric($chunks[1]) && \in_array((int) $chunks[1], $this->nthRange, true)) { + return true; + } + } + + if (preg_match('/^(.*)L$/', $value, $matches)) { + return $this->validate($matches[1]); + } + + return false; + } + + return $basicChecks; + } +} diff --git a/vendor/dragonmantank/cron-expression/src/Cron/FieldFactory.php b/vendor/dragonmantank/cron-expression/src/Cron/FieldFactory.php new file mode 100644 index 00000000..839b2757 --- /dev/null +++ b/vendor/dragonmantank/cron-expression/src/Cron/FieldFactory.php @@ -0,0 +1,52 @@ +fields[$position] ?? $this->fields[$position] = $this->instantiateField($position); + } + + private function instantiateField(int $position): FieldInterface + { + switch ($position) { + case CronExpression::MINUTE: + return new MinutesField(); + case CronExpression::HOUR: + return new HoursField(); + case CronExpression::DAY: + return new DayOfMonthField(); + case CronExpression::MONTH: + return new MonthField(); + case CronExpression::WEEKDAY: + return new DayOfWeekField(); + } + + throw new InvalidArgumentException( + ($position + 1) . ' is not a valid position' + ); + } +} diff --git a/vendor/dragonmantank/cron-expression/src/Cron/FieldFactoryInterface.php b/vendor/dragonmantank/cron-expression/src/Cron/FieldFactoryInterface.php new file mode 100644 index 00000000..8bd3c658 --- /dev/null +++ b/vendor/dragonmantank/cron-expression/src/Cron/FieldFactoryInterface.php @@ -0,0 +1,8 @@ +format('H'); + $retval = $this->isSatisfied($checkValue, $value); + if ($retval) { + return $retval; + } + + // Are we on the edge of a transition + $lastTransition = $this->getPastTransition($date); + if (($lastTransition !== null) && ($lastTransition["ts"] > ((int) $date->format('U') - 3600))) { + $dtLastOffset = clone $date; + $this->timezoneSafeModify($dtLastOffset, "-1 hour"); + $lastOffset = $dtLastOffset->getOffset(); + + $dtNextOffset = clone $date; + $this->timezoneSafeModify($dtNextOffset, "+1 hour"); + $nextOffset = $dtNextOffset->getOffset(); + + $offsetChange = $nextOffset - $lastOffset; + if ($offsetChange >= 3600) { + $checkValue -= 1; + return $this->isSatisfied($checkValue, $value); + } + if ((! $invert) && ($offsetChange <= -3600)) { + $checkValue += 1; + return $this->isSatisfied($checkValue, $value); + } + } + + return $retval; + } + + public function getPastTransition(DateTimeInterface $date): ?array + { + $currentTimestamp = (int) $date->format('U'); + if ( + ($this->transitions === null) + || ($this->transitionsStart < ($currentTimestamp + 86400)) + || ($this->transitionsEnd > ($currentTimestamp - 86400)) + ) { + // We start a day before current time so we can differentiate between the first transition entry + // and a change that happens now + $dtLimitStart = clone $date; + $dtLimitStart = $dtLimitStart->modify("-12 months"); + $dtLimitEnd = clone $date; + $dtLimitEnd = $dtLimitEnd->modify('+12 months'); + + $this->transitions = $date->getTimezone()->getTransitions( + $dtLimitStart->getTimestamp(), + $dtLimitEnd->getTimestamp() + ); + if (empty($this->transitions)) { + return null; + } + $this->transitionsStart = $dtLimitStart->getTimestamp(); + $this->transitionsEnd = $dtLimitEnd->getTimestamp(); + } + + $nextTransition = null; + foreach ($this->transitions as $transition) { + if ($transition["ts"] > $currentTimestamp) { + continue; + } + + if (($nextTransition !== null) && ($transition["ts"] < $nextTransition["ts"])) { + continue; + } + + $nextTransition = $transition; + } + + return ($nextTransition ?? null); + } + + /** + * {@inheritdoc} + * + * @param string|null $parts + */ + public function increment(DateTimeInterface &$date, $invert = false, $parts = null): FieldInterface + { + $originalTimestamp = (int) $date->format('U'); + + // Change timezone to UTC temporarily. This will + // allow us to go back or forwards and hour even + // if DST will be changed between the hours. + if (null === $parts || '*' === $parts) { + if ($invert) { + $date = $date->sub(new \DateInterval('PT1H')); + } else { + $date = $date->add(new \DateInterval('PT1H')); + } + + $date = $this->setTimeHour($date, $invert, $originalTimestamp); + return $this; + } + + $parts = false !== strpos($parts, ',') ? explode(',', $parts) : [$parts]; + $hours = []; + foreach ($parts as $part) { + $hours = array_merge($hours, $this->getRangeForExpression($part, 23)); + } + + $current_hour = (int) $date->format('H'); + $position = $invert ? \count($hours) - 1 : 0; + $countHours = \count($hours); + if ($countHours > 1) { + for ($i = 0; $i < $countHours - 1; ++$i) { + if ((!$invert && $current_hour >= $hours[$i] && $current_hour < $hours[$i + 1]) || + ($invert && $current_hour > $hours[$i] && $current_hour <= $hours[$i + 1])) { + $position = $invert ? $i : $i + 1; + + break; + } + } + } + + $target = (int) $hours[$position]; + $originalHour = (int)$date->format('H'); + + $originalDay = (int)$date->format('d'); + $previousOffset = $date->getOffset(); + + if (! $invert) { + if ($originalHour >= $target) { + $distance = 24 - $originalHour; + $date = $this->timezoneSafeModify($date, "+{$distance} hours"); + + $actualDay = (int)$date->format('d'); + $actualHour = (int)$date->format('H'); + if (($actualDay !== ($originalDay + 1)) && ($actualHour !== 0)) { + $offsetChange = ($previousOffset - $date->getOffset()); + $date = $this->timezoneSafeModify($date, "+{$offsetChange} seconds"); + } + + $originalHour = (int)$date->format('H'); + } + + $distance = $target - $originalHour; + $date = $this->timezoneSafeModify($date, "+{$distance} hours"); + } else { + if ($originalHour <= $target) { + $distance = ($originalHour + 1); + $date = $this->timezoneSafeModify($date, "-" . $distance . " hours"); + + $actualDay = (int)$date->format('d'); + $actualHour = (int)$date->format('H'); + if (($actualDay !== ($originalDay - 1)) && ($actualHour !== 23)) { + $offsetChange = ($previousOffset - $date->getOffset()); + $date = $this->timezoneSafeModify($date, "+{$offsetChange} seconds"); + } + + $originalHour = (int)$date->format('H'); + } + + $distance = $originalHour - $target; + $date = $this->timezoneSafeModify($date, "-{$distance} hours"); + } + + $date = $this->setTimeHour($date, $invert, $originalTimestamp); + + $actualHour = (int)$date->format('H'); + if ($invert && ($actualHour === ($target - 1) || (($actualHour === 23) && ($target === 0)))) { + $date = $this->timezoneSafeModify($date, "+1 hour"); + } + + return $this; + } +} diff --git a/vendor/dragonmantank/cron-expression/src/Cron/MinutesField.php b/vendor/dragonmantank/cron-expression/src/Cron/MinutesField.php new file mode 100644 index 00000000..eda91098 --- /dev/null +++ b/vendor/dragonmantank/cron-expression/src/Cron/MinutesField.php @@ -0,0 +1,96 @@ +isSatisfied((int)$date->format('i'), $value); + } + + /** + * {@inheritdoc} + * {@inheritDoc} + * + * @param string|null $parts + */ + public function increment(DateTimeInterface &$date, $invert = false, $parts = null): FieldInterface + { + if (is_null($parts)) { + $date = $this->timezoneSafeModify($date, ($invert ? "-" : "+") ."1 minute"); + return $this; + } + + $current_minute = (int) $date->format('i'); + + $parts = false !== strpos($parts, ',') ? explode(',', $parts) : [$parts]; + $minutes = []; + foreach ($parts as $part) { + $minutes = array_merge($minutes, $this->getRangeForExpression($part, 59)); + } + + $position = $invert ? \count($minutes) - 1 : 0; + if (\count($minutes) > 1) { + for ($i = 0; $i < \count($minutes) - 1; ++$i) { + if ((!$invert && $current_minute >= $minutes[$i] && $current_minute < $minutes[$i + 1]) || + ($invert && $current_minute > $minutes[$i] && $current_minute <= $minutes[$i + 1])) { + $position = $invert ? $i : $i + 1; + + break; + } + } + } + + $target = (int) $minutes[$position]; + $originalMinute = (int) $date->format("i"); + + if (! $invert) { + if ($originalMinute >= $target) { + $distance = 60 - $originalMinute; + $date = $this->timezoneSafeModify($date, "+{$distance} minutes"); + + $originalMinute = (int) $date->format("i"); + } + + $distance = $target - $originalMinute; + $date = $this->timezoneSafeModify($date, "+{$distance} minutes"); + } else { + if ($originalMinute <= $target) { + $distance = ($originalMinute + 1); + $date = $this->timezoneSafeModify($date, "-{$distance} minutes"); + + $originalMinute = (int) $date->format("i"); + } + + $distance = $originalMinute - $target; + $date = $this->timezoneSafeModify($date, "-{$distance} minutes"); + } + + return $this; + } +} diff --git a/vendor/dragonmantank/cron-expression/src/Cron/MonthField.php b/vendor/dragonmantank/cron-expression/src/Cron/MonthField.php new file mode 100644 index 00000000..5a15fbb8 --- /dev/null +++ b/vendor/dragonmantank/cron-expression/src/Cron/MonthField.php @@ -0,0 +1,61 @@ + 'JAN', 2 => 'FEB', 3 => 'MAR', 4 => 'APR', 5 => 'MAY', 6 => 'JUN', 7 => 'JUL', + 8 => 'AUG', 9 => 'SEP', 10 => 'OCT', 11 => 'NOV', 12 => 'DEC', ]; + + /** + * {@inheritdoc} + */ + public function isSatisfiedBy(DateTimeInterface $date, $value, bool $invert): bool + { + if ($value === '?') { + return true; + } + + $value = $this->convertLiterals($value); + + return $this->isSatisfied((int) $date->format('m'), $value); + } + + /** + * @inheritDoc + * + * @param \DateTime|\DateTimeImmutable $date + */ + public function increment(DateTimeInterface &$date, $invert = false, $parts = null): FieldInterface + { + if (! $invert) { + $date = $date->modify('first day of next month'); + $date = $date->setTime(0, 0); + } else { + $date = $date->modify('last day of previous month'); + $date = $date->setTime(23, 59); + } + + return $this; + } +} diff --git a/vendor/evenement/evenement/LICENSE b/vendor/evenement/evenement/LICENSE new file mode 100644 index 00000000..d9a37d0a --- /dev/null +++ b/vendor/evenement/evenement/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2011 Igor Wiedler + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/vendor/evenement/evenement/composer.json b/vendor/evenement/evenement/composer.json new file mode 100644 index 00000000..cbb4827b --- /dev/null +++ b/vendor/evenement/evenement/composer.json @@ -0,0 +1,29 @@ +{ + "name": "evenement/evenement", + "description": "Événement is a very simple event dispatching library for PHP", + "keywords": ["event-dispatcher", "event-emitter"], + "license": "MIT", + "authors": [ + { + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" + } + ], + "require": { + "php": ">=7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "autoload": { + "psr-0": { + "Evenement": "src" + } + }, + "autoload-dev": { + "psr-0": { + "Evenement": "tests" + }, + "files": ["tests/Evenement/Tests/functions.php"] + } +} diff --git a/vendor/evenement/evenement/src/Evenement/EventEmitter.php b/vendor/evenement/evenement/src/Evenement/EventEmitter.php new file mode 100644 index 00000000..db189b97 --- /dev/null +++ b/vendor/evenement/evenement/src/Evenement/EventEmitter.php @@ -0,0 +1,17 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Evenement; + +class EventEmitter implements EventEmitterInterface +{ + use EventEmitterTrait; +} diff --git a/vendor/evenement/evenement/src/Evenement/EventEmitterInterface.php b/vendor/evenement/evenement/src/Evenement/EventEmitterInterface.php new file mode 100644 index 00000000..310631a1 --- /dev/null +++ b/vendor/evenement/evenement/src/Evenement/EventEmitterInterface.php @@ -0,0 +1,22 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Evenement; + +interface EventEmitterInterface +{ + public function on($event, callable $listener); + public function once($event, callable $listener); + public function removeListener($event, callable $listener); + public function removeAllListeners($event = null); + public function listeners($event = null); + public function emit($event, array $arguments = []); +} diff --git a/vendor/evenement/evenement/src/Evenement/EventEmitterTrait.php b/vendor/evenement/evenement/src/Evenement/EventEmitterTrait.php new file mode 100644 index 00000000..a78e65ca --- /dev/null +++ b/vendor/evenement/evenement/src/Evenement/EventEmitterTrait.php @@ -0,0 +1,135 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Evenement; + +use InvalidArgumentException; + +trait EventEmitterTrait +{ + protected $listeners = []; + protected $onceListeners = []; + + public function on($event, callable $listener) + { + if ($event === null) { + throw new InvalidArgumentException('event name must not be null'); + } + + if (!isset($this->listeners[$event])) { + $this->listeners[$event] = []; + } + + $this->listeners[$event][] = $listener; + + return $this; + } + + public function once($event, callable $listener) + { + if ($event === null) { + throw new InvalidArgumentException('event name must not be null'); + } + + if (!isset($this->onceListeners[$event])) { + $this->onceListeners[$event] = []; + } + + $this->onceListeners[$event][] = $listener; + + return $this; + } + + public function removeListener($event, callable $listener) + { + if ($event === null) { + throw new InvalidArgumentException('event name must not be null'); + } + + if (isset($this->listeners[$event])) { + $index = \array_search($listener, $this->listeners[$event], true); + if (false !== $index) { + unset($this->listeners[$event][$index]); + if (\count($this->listeners[$event]) === 0) { + unset($this->listeners[$event]); + } + } + } + + if (isset($this->onceListeners[$event])) { + $index = \array_search($listener, $this->onceListeners[$event], true); + if (false !== $index) { + unset($this->onceListeners[$event][$index]); + if (\count($this->onceListeners[$event]) === 0) { + unset($this->onceListeners[$event]); + } + } + } + } + + public function removeAllListeners($event = null) + { + if ($event !== null) { + unset($this->listeners[$event]); + } else { + $this->listeners = []; + } + + if ($event !== null) { + unset($this->onceListeners[$event]); + } else { + $this->onceListeners = []; + } + } + + public function listeners($event = null): array + { + if ($event === null) { + $events = []; + $eventNames = \array_unique( + \array_merge(\array_keys($this->listeners), \array_keys($this->onceListeners)) + ); + foreach ($eventNames as $eventName) { + $events[$eventName] = \array_merge( + isset($this->listeners[$eventName]) ? $this->listeners[$eventName] : [], + isset($this->onceListeners[$eventName]) ? $this->onceListeners[$eventName] : [] + ); + } + return $events; + } + + return \array_merge( + isset($this->listeners[$event]) ? $this->listeners[$event] : [], + isset($this->onceListeners[$event]) ? $this->onceListeners[$event] : [] + ); + } + + public function emit($event, array $arguments = []) + { + if ($event === null) { + throw new InvalidArgumentException('event name must not be null'); + } + + if (isset($this->listeners[$event])) { + foreach ($this->listeners[$event] as $listener) { + $listener(...$arguments); + } + } + + if (isset($this->onceListeners[$event])) { + $listeners = $this->onceListeners[$event]; + unset($this->onceListeners[$event]); + foreach ($listeners as $listener) { + $listener(...$arguments); + } + } + } +} diff --git a/vendor/fortawesome/font-awesome/composer.json b/vendor/fortawesome/font-awesome/composer.json new file mode 100644 index 00000000..2b7f5c2e --- /dev/null +++ b/vendor/fortawesome/font-awesome/composer.json @@ -0,0 +1,23 @@ +{ + "name": "fortawesome/font-awesome", + "description": "The iconic font, CSS, and SVG framework", + "keywords": ["font", "awesome", "fontawesome", "icon", "svg", "font", "bootstrap"], + "homepage": "https://fontawesome.com", + "authors": [ + { + "name": "The Font Awesome Team", + "homepage": "https://github.com/orgs/FortAwesome/people" + } + ], + "support": { + "email": "hello@fontawesome.com", + "issues": "https://github.com/FortAwesome/Font-Awesome/issues", + "source": "https://github.com/FortAwesome/Font-Awesome", + "docs": "http://fontawesome.com/docs" + }, + "license": [ + "CC-BY-4.0", + "OFL-1.1", + "MIT" + ] +} diff --git a/vendor/fortawesome/font-awesome/js-packages/@fortawesome/fontawesome-common-types/package.json b/vendor/fortawesome/font-awesome/js-packages/@fortawesome/fontawesome-common-types/package.json new file mode 100644 index 00000000..8362a23a --- /dev/null +++ b/vendor/fortawesome/font-awesome/js-packages/@fortawesome/fontawesome-common-types/package.json @@ -0,0 +1,31 @@ +{ + "description": "The iconic font, CSS, and SVG framework", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "svg", + "bootstrap" + ], + "homepage": "https://fontawesome.com", + "bugs": { + "url": "https://github.com/FortAwesome/Font-Awesome/issues" + }, + "author": "The Font Awesome Team (https://github.com/orgs/FortAwesome/people)", + "repository": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome" + }, + "engines": { + "node": ">=6" + }, + "dependencies": {}, + "version": "6.3.0", + "name": "@fortawesome/fontawesome-common-types", + "license": "MIT", + "types": "./index.d.ts", + "scripts": { + "postinstall": "node attribution.js" + } +} \ No newline at end of file diff --git a/vendor/fortawesome/font-awesome/js-packages/@fortawesome/fontawesome-free/metadata/icon-families.json b/vendor/fortawesome/font-awesome/js-packages/@fortawesome/fontawesome-free/metadata/icon-families.json new file mode 100644 index 00000000..875e8225 --- /dev/null +++ b/vendor/fortawesome/font-awesome/js-packages/@fortawesome/fontawesome-free/metadata/icon-families.json @@ -0,0 +1,110086 @@ +{ + "0": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Zero", + "nada", + "none", + "zero", + "zilch" + ] + }, + "unicode": "30", + "label": "0", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 192C0 103.6 71.6 32 160 32s160 71.6 160 160V320c0 88.4-71.6 160-160 160S0 408.4 0 320V192zM160 96c-53 0-96 43-96 96V320c0 53 43 96 96 96s96-43 96-96V192c0-53-43-96-96-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "1": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit One", + "one" + ] + }, + "unicode": "31", + "label": "1", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M160 64c0-11.8-6.5-22.6-16.9-28.2s-23-5-32.9 1.6l-96 64C-.5 111.2-4.4 131 5.4 145.8s29.7 18.7 44.4 8.9L96 123.8V416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96 96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "2": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Two", + "two" + ] + }, + "unicode": "32", + "label": "2", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M142.9 96c-21.5 0-42.2 8.5-57.4 23.8L54.6 150.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L40.2 74.5C67.5 47.3 104.4 32 142.9 32C223 32 288 97 288 177.1c0 38.5-15.3 75.4-42.5 102.6L109.3 416H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9L200.2 234.5c15.2-15.2 23.8-35.9 23.8-57.4c0-44.8-36.3-81.1-81.1-81.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "3": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Three", + "three" + ] + }, + "unicode": "33", + "label": "3", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H272c13.2 0 25 8.1 29.8 20.4s1.5 26.3-8.2 35.2L162.3 208H184c75.1 0 136 60.9 136 136s-60.9 136-136 136H105.4C63 480 24.2 456 5.3 418.1l-1.9-3.8c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l1.9 3.8c8.1 16.3 24.8 26.5 42.9 26.5H184c39.8 0 72-32.2 72-72s-32.2-72-72-72H80c-13.2 0-25-8.1-29.8-20.4s-1.5-26.3 8.2-35.2L189.7 96H32C14.3 96 0 81.7 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "4": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Four", + "four" + ] + }, + "unicode": "34", + "label": "4", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M189 77.6c7.5-16 .7-35.1-15.3-42.6s-35.1-.7-42.6 15.3L3 322.4c-4.7 9.9-3.9 21.5 1.9 30.8S21 368 32 368H256v80c0 17.7 14.3 32 32 32s32-14.3 32-32V368h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H320V160c0-17.7-14.3-32-32-32s-32 14.3-32 32V304H82.4L189 77.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "5": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Five", + "five" + ] + }, + "unicode": "35", + "label": "5", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32.5 58.3C35.3 43.1 48.5 32 64 32H256c17.7 0 32 14.3 32 32s-14.3 32-32 32H90.7L70.3 208H184c75.1 0 136 60.9 136 136s-60.9 136-136 136H100.5c-39.4 0-75.4-22.3-93-57.5l-4.1-8.2c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l4.1 8.2c6.8 13.6 20.6 22.1 35.8 22.1H184c39.8 0 72-32.2 72-72s-32.2-72-72-72H32c-9.5 0-18.5-4.2-24.6-11.5s-8.6-16.9-6.9-26.2l32-176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "6": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Six", + "six" + ] + }, + "unicode": "36", + "label": "6", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M232.4 84.7c11.4-13.5 9.7-33.7-3.8-45.1s-33.7-9.7-45.1 3.8L38.6 214.7C14.7 242.9 1.1 278.4 .1 315.2c0 1.4-.1 2.9-.1 4.3c0 .2 0 .3 0 .5c0 88.4 71.6 160 160 160s160-71.6 160-160c0-85.5-67.1-155.4-151.5-159.8l63.9-75.6zM256 320A96 96 0 1 1 64 320a96 96 0 1 1 192 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "7": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Seven", + "seven" + ] + }, + "unicode": "37", + "label": "7", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H288c11.5 0 22 6.1 27.7 16.1s5.7 22.2-.1 32.1l-224 384c-8.9 15.3-28.5 20.4-43.8 11.5s-20.4-28.5-11.5-43.8L232.3 96H32C14.3 96 0 81.7 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "8": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Eight", + "eight" + ] + }, + "unicode": "38", + "label": "8", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M304 160c0-70.7-57.3-128-128-128H144C73.3 32 16 89.3 16 160c0 34.6 13.7 66 36 89C20.5 272.3 0 309.8 0 352c0 70.7 57.3 128 128 128h64c70.7 0 128-57.3 128-128c0-42.2-20.5-79.7-52-103c22.3-23 36-54.4 36-89zM176.1 288H192c35.3 0 64 28.7 64 64s-28.7 64-64 64H128c-35.3 0-64-28.7-64-64s28.7-64 64-64h15.9c0 0 .1 0 .1 0h32c0 0 .1 0 .1 0zm0-64c0 0 0 0 0 0H144c0 0 0 0 0 0c-35.3 0-64-28.7-64-64c0-35.3 28.7-64 64-64h32c35.3 0 64 28.7 64 64c0 35.3-28.6 64-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "9": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Nine", + "nine" + ] + }, + "unicode": "39", + "label": "9", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 192a96 96 0 1 0 192 0A96 96 0 1 0 64 192zm87.5 159.8C67.1 347.4 0 277.5 0 192C0 103.6 71.6 32 160 32s160 71.6 160 160c0 2.6-.1 5.3-.2 7.9c-1.7 35.7-15.2 70-38.4 97.4l-145 171.4c-11.4 13.5-31.6 15.2-45.1 3.8s-15.2-31.6-3.8-45.1l63.9-75.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "42-group": { + "aliases": { + "names": [ + "innosoft" + ] + }, + "changes": [ + "5.15.0", + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e080", + "label": "42.group", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96V416C341.011 416 361.818 411.861 381.23 403.821C400.641 395.78 418.28 383.995 433.138 369.138C447.995 354.28 459.78 336.641 467.821 317.23C475.861 297.818 480 277.011 480 256C480 234.989 475.861 214.182 467.821 194.771C459.78 175.359 447.995 157.72 433.138 142.863C418.28 128.005 400.641 116.22 381.23 108.179C361.818 100.139 341.011 96 320 96ZM0 256L160.002 416L320.003 256L160.002 96L0 256ZM480 256C480 277.011 484.138 297.818 492.179 317.23C500.219 336.643 512.005 354.28 526.862 369.138C541.72 383.995 559.357 395.781 578.77 403.821C598.182 411.862 618.989 416 640 416V96C597.565 96 556.869 112.858 526.862 142.863C496.857 172.869 480 213.565 480 256Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "500px": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f26e", + "label": "500px", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "a": { + "aliases": { + "unicodes": { + "composite": [ + "61" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter A", + "Latin Small Letter A", + "letter" + ] + }, + "unicode": "41", + "label": "A", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M221.5 51.7C216.6 39.8 204.9 32 192 32s-24.6 7.8-29.5 19.7l-120 288-40 96c-6.8 16.3 .9 35 17.2 41.8s35-.9 41.8-17.2L93.3 384H290.7l31.8 76.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8l-40-96-120-288zM264 320H120l72-172.8L264 320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "accessible-icon": { + "aliases": { + "unicodes": { + "composite": [ + "f29b" + ] + } + }, + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accessibility", + "handicap", + "person", + "wheelchair", + "wheelchair-alt" + ] + }, + "unicode": "f368", + "label": "Accessible Icon", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "accusoft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f369", + "label": "Accusoft", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M322.1 252v-1l-51.2-65.8s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3zm160.1 120.1c13.3 16.1 20.7 13.3 30.8 9.3 3.2-1.2 115.4-47.6 117.8-48.9 8-4.3-1.7-16.7-7.2-23.4-2.1-2.5-205.1-245.6-207.2-248.3-9.7-12.2-14.3-12.9-38.4-12.8-10.2 0-106.8.5-116.5.6-19.2.1-32.9-.3-19.2 16.9C250 75 476.5 365.2 482.2 372.1zm152.7 1.6c-2.3-.3-24.6-4.7-38-7.2 0 0-115 50.4-117.5 51.6-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "address-book": { + "aliases": { + "names": [ + "contact-book" + ], + "unicodes": { + "composite": [ + "f2ba" + ], + "secondary": [ + "10f2b9" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contact", + "directory", + "index", + "little black book", + "rolodex" + ] + }, + "unicode": "f2b9", + "label": "Address Book", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 0C60.7 0 32 28.7 32 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H96zM208 288h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H144c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-32-96a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM512 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V80zM496 192c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm16 144c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V336z" + }, + "regular": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M384 48c8.8 0 16 7.2 16 16V448c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H384zM96 0C60.7 0 32 28.7 32 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H96zM240 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zm-32 32c-44.2 0-80 35.8-80 80c0 8.8 7.2 16 16 16H336c8.8 0 16-7.2 16-16c0-44.2-35.8-80-80-80H208zM512 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V80zM496 192c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm16 144c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V336z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "address-card": { + "aliases": { + "names": [ + "contact-card", + "vcard" + ], + "unicodes": { + "composite": [ + "f2bc" + ], + "secondary": [ + "10f2bb" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "about", + "contact", + "id", + "identification", + "postcard", + "profile", + "registration" + ] + }, + "unicode": "f2bb", + "label": "Address Card", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm80 256h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-32-96a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zm256-32H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M512 80c8.8 0 16 7.2 16 16V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16H512zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM208 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zm-32 32c-44.2 0-80 35.8-80 80c0 8.8 7.2 16 16 16H304c8.8 0 16-7.2 16-16c0-44.2-35.8-80-80-80H176zM376 144c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H376zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H376z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "adn": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f170", + "label": "App.net", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "adversal": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36a", + "label": "Adversal", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "affiliatetheme": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36b", + "label": "affiliatetheme", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "airbnb": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f834", + "label": "Airbnb", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 373.12c-25.24-31.67-40.08-59.43-45-83.18-22.55-88 112.61-88 90.06 0-5.45 24.25-20.29 52-45 83.18zm138.15 73.23c-42.06 18.31-83.67-10.88-119.3-50.47 103.9-130.07 46.11-200-18.85-200-54.92 0-85.16 46.51-73.28 100.5 6.93 29.19 25.23 62.39 54.43 99.5-32.53 36.05-60.55 52.69-85.15 54.92-50 7.43-89.11-41.06-71.3-91.09 15.1-39.16 111.72-231.18 115.87-241.56 15.75-30.07 25.56-57.4 59.38-57.4 32.34 0 43.4 25.94 60.37 59.87 36 70.62 89.35 177.48 114.84 239.09 13.17 33.07-1.37 71.29-37.01 86.64zm47-136.12C280.27 35.93 273.13 32 224 32c-45.52 0-64.87 31.67-84.66 72.79C33.18 317.1 22.89 347.19 22 349.81-3.22 419.14 48.74 480 111.63 480c21.71 0 60.61-6.06 112.37-62.4 58.68 63.78 101.26 62.4 112.37 62.4 62.89.05 114.85-60.86 89.61-130.19.02-3.89-16.82-38.9-16.82-39.58z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "algolia": { + "changes": [ + "5.0.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36c", + "label": "Algolia", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1675090779, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0C116.1 0 2 112.7 0 252.1C-2 393.6 112.9 510.8 254.5 511.6c43.7 .3 85.9-10.4 123.3-30.7c3.6-2 4.2-7 1.1-9.7l-24-21.2c-4.9-4.3-11.8-5.5-17.8-3c-26.1 11.1-54.5 16.8-83.7 16.4C139 461.9 46.5 366.8 48.3 252.4C50.1 139.5 142.6 48.2 256 48.2H463.7V417.2L345.9 312.5c-3.8-3.4-9.7-2.7-12.7 1.3c-18.9 25-49.7 40.6-83.9 38.2c-47.5-3.3-85.9-41.5-89.5-88.9c-4.2-56.6 40.6-103.9 96.3-103.9c50.4 0 91.9 38.8 96.2 88c.4 4.4 2.4 8.5 5.7 11.4l30.7 27.2c3.5 3.1 9 1.2 9.9-3.4c2.2-11.8 3-24.2 2.1-36.8c-4.9-72-63.3-130-135.4-134.4c-82.7-5.1-151.8 59.5-154 140.6c-2.1 78.9 62.6 147 141.6 148.7c33 .7 63.6-9.6 88.3-27.6L495 509.4c6.6 5.8 17 1.2 17-7.7V9.7c0-5.4-4.4-9.7-9.7-9.7H256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "align-center": { + "aliases": { + "unicodes": { + "secondary": [ + "10f037" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "middle", + "paragraph", + "text" + ] + }, + "unicode": "f037", + "label": "Align Center", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 64c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32s14.3 32 32 32H320c17.7 0 32-14.3 32-32zm96 128c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32zM0 448c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32zM352 320c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32s14.3 32 32 32H320c17.7 0 32-14.3 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "align-justify": { + "aliases": { + "unicodes": { + "secondary": [ + "10f039" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "paragraph", + "text" + ] + }, + "unicode": "f039", + "label": "Align Justify", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64S14.3 96 32 96H416c17.7 0 32-14.3 32-32zm0 256c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32zM0 192c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32zM448 448c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "align-left": { + "aliases": { + "unicodes": { + "secondary": [ + "10f036" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "paragraph", + "text" + ] + }, + "unicode": "f036", + "label": "Align Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M288 64c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32H256c17.7 0 32 14.3 32 32zm0 256c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H256c17.7 0 32 14.3 32 32zM0 192c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "align-right": { + "aliases": { + "unicodes": { + "secondary": [ + "10f038" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "paragraph", + "text" + ] + }, + "unicode": "f038", + "label": "Align Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 64c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32zm0 256c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32zM0 192c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "alipay": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f642", + "label": "Alipay", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M377.74 32H70.26C31.41 32 0 63.41 0 102.26v307.48C0 448.59 31.41 480 70.26 480h307.48c38.52 0 69.76-31.08 70.26-69.6-45.96-25.62-110.59-60.34-171.6-88.44-32.07 43.97-84.14 81-148.62 81-70.59 0-93.73-45.3-97.04-76.37-3.97-39.01 14.88-81.5 99.52-81.5 35.38 0 79.35 10.25 127.13 24.96 16.53-30.09 26.45-60.34 26.45-60.34h-178.2v-16.7h92.08v-31.24H88.28v-19.01h109.44V92.34h50.92v50.42h109.44v19.01H248.63v31.24h88.77s-15.21 46.62-38.35 90.92c48.93 16.7 100.01 36.04 148.62 52.74V102.26C447.83 63.57 416.43 32 377.74 32zM47.28 322.95c.99 20.17 10.25 53.73 69.93 53.73 52.07 0 92.58-39.68 117.87-72.9-44.63-18.68-84.48-31.41-109.44-31.41-67.45 0-79.35 33.06-78.36 50.58z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "amazon": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f270", + "label": "Amazon", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "amazon-pay": { + "changes": [ + "5.0.2", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42c", + "label": "Amazon Pay", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M14 325.3c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7a595.88 595.88 0 0 0 127.4 46.3 616.61 616.61 0 0 0 63.2 11.8 603.33 603.33 0 0 0 95 5.2c17.4-.4 34.8-1.8 52.1-3.8a603.66 603.66 0 0 0 163.3-42.8c2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9a70 70 0 0 1-9.6 7.4c-30.7 21.1-64.2 36.4-99.6 47.9a473.31 473.31 0 0 1-75.1 17.6 431 431 0 0 1-53.2 4.8 21.3 21.3 0 0 0-2.5.3H308a21.3 21.3 0 0 0-2.5-.3c-3.6-.2-7.2-.3-10.7-.4a426.3 426.3 0 0 1-50.4-5.3A448.4 448.4 0 0 1 164 420a443.33 443.33 0 0 1-145.6-87c-1.8-1.6-3-3.8-4.4-5.7zM172 65.1l-4.3.6a80.92 80.92 0 0 0-38 15.1c-2.4 1.7-4.6 3.5-7.1 5.4a4.29 4.29 0 0 1-.4-1.4c-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6h-11.5c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3v-72.4c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zM124.6 107a3.48 3.48 0 0 1 1.7-3.3c13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9a3.57 3.57 0 0 1-1.7-3.3c.1-14.1 0-28.1 0-42.2s.1-28 0-42.1zm205.7-41.9c-1 .1-2 .3-2.9.4a148 148 0 0 0-28.9 4.1c-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9a7.84 7.84 0 0 1-.2 1.4c-.5-.1-.9 0-1.3-.1a180.56 180.56 0 0 0-32-4.9c-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4a7.36 7.36 0 0 1 1.6-1.1c.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0a4.84 4.84 0 0 0 4.8-4.7 26.2 26.2 0 0 0 .1-2.8v-106a80 80 0 0 0-.9-12.9c-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7a3.33 3.33 0 0 1-1.5 3c-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8a20.08 20.08 0 0 1-12.4-13.3 32.9 32.9 0 0 1-.1-19.4c2.5-8.3 8.4-13 16.4-15.6a61.33 61.33 0 0 1 24.8-2.2c8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3s-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3a88.42 88.42 0 0 0-21-3.9 147.32 147.32 0 0 0-39.2 1.9c-14.3 2.7-27.9 7.3-40 15.6a13.75 13.75 0 0 0-3.7 3.5 5.11 5.11 0 0 0-.5 4c.4 1.5 2.1 1.9 3.6 1.8a16.2 16.2 0 0 0 2.2-.1c7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9a71.64 71.64 0 0 1 14.4 2.7c5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1a17.6 17.6 0 0 0-1 3c-.5 2.9 1.2 4.8 4.1 4.1a10.56 10.56 0 0 0 4.8-2.5 145.91 145.91 0 0 0 12.7-13.4c12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM493.1 199q-19.35-53.55-38.7-107.2c-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5a43.1 43.1 0 0 0 1.9 6.1q29.4 72.75 59.1 145.5c1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3a42.13 42.13 0 0 1-15.4 1.1c-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8q-.15 5 0 9.9c.1 5.5 2 8 7.4 8.9a108.18 108.18 0 0 0 16.9 2c17.1.4 30.7-6.5 39.5-21.4a131.63 131.63 0 0 0 9.2-18.4q35.55-89.7 70.6-179.6a26.62 26.62 0 0 0 1.6-5.5c.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0a7.54 7.54 0 0 0-7.7 5.2c-.5 1.4-1.1 2.7-1.6 4.1l-34.8 100c-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "amilia": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36d", + "label": "Amilia", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm50.2 348c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7 0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "anchor": { + "aliases": { + "unicodes": { + "composite": [ + "2693" + ], + "secondary": [ + "10f13d" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchor", + "berth", + "boat", + "dock", + "embed", + "link", + "maritime", + "moor", + "port", + "secure", + "ship", + "tool" + ] + }, + "unicode": "f13d", + "label": "Anchor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c88.4 0 160-71.6 160-160v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-56-56c-9.4-9.4-24.6-9.4-33.9 0l-56 56c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 53-43 96-96 96H320V240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "anchor-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "marina", + "not affected", + "ok", + "okay", + "port" + ] + }, + "unicode": "e4aa", + "label": "Anchor Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8.2 0 16.3-.6 24.2-1.8c-22.2-16.2-40.4-37.5-53-62.2H320V368 240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "anchor-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "marina", + "port" + ] + }, + "unicode": "e4ab", + "label": "Anchor Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8.2 0 16.3-.6 24.2-1.8c-22.2-16.2-40.4-37.5-53-62.2H320V368 240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "anchor-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destroy", + "marina", + "port" + ] + }, + "unicode": "e4ac", + "label": "Anchor Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8.2 0 16.3-.6 24.2-1.8c-22.2-16.2-40.4-37.5-53-62.2H320V368 240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "anchor-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "lockdown", + "marina", + "port", + "quarantine" + ] + }, + "unicode": "e4ad", + "label": "Anchor Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8 0 15.9-.6 23.6-1.7c-4.8-9-7.6-19.3-7.6-30.3V446.7c-5.2 .9-10.5 1.3-16 1.3H320V240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM528 240c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "android": { + "changes": [ + "3.2.0", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "robot" + ] + }, + "unicode": "f17b", + "label": "Android", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M420.55,301.93a24,24,0,1,1,24-24,24,24,0,0,1-24,24m-265.1,0a24,24,0,1,1,24-24,24,24,0,0,1-24,24m273.7-144.48,47.94-83a10,10,0,1,0-17.27-10h0l-48.54,84.07a301.25,301.25,0,0,0-246.56,0L116.18,64.45a10,10,0,1,0-17.27,10h0l47.94,83C64.53,202.22,8.24,285.55,0,384H576c-8.24-98.45-64.54-181.78-146.85-226.55" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "angellist": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f209", + "label": "AngelList", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "angle-down": { + "aliases": { + "unicodes": { + "composite": [ + "2304" + ], + "secondary": [ + "10f107" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Down Arrowhead", + "arrow", + "caret", + "download", + "expand" + ] + }, + "unicode": "f107", + "label": "Angle Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M169.4 342.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 274.7 54.6 137.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angle-left": { + "aliases": { + "unicodes": { + "composite": [ + "2039" + ], + "secondary": [ + "10f104" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Single Left-Pointing Angle Quotation Mark", + "arrow", + "back", + "caret", + "less", + "previous" + ] + }, + "unicode": "f104", + "label": "Angle Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angle-right": { + "aliases": { + "unicodes": { + "composite": [ + "203a" + ], + "secondary": [ + "10f105" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Single Right-Pointing Angle Quotation Mark", + "arrow", + "care", + "forward", + "more", + "next" + ] + }, + "unicode": "f105", + "label": "Angle Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M246.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L178.7 256 41.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angle-up": { + "aliases": { + "unicodes": { + "composite": [ + "2303" + ], + "secondary": [ + "10f106" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Up Arrowhead", + "arrow", + "caret", + "collapse", + "upload" + ] + }, + "unicode": "f106", + "label": "Angle Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M169.4 137.4c12.5-12.5 32.8-12.5 45.3 0l160 160c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L192 205.3 54.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angles-down": { + "aliases": { + "names": [ + "angle-double-down" + ], + "unicodes": { + "secondary": [ + "10f103" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "caret", + "download", + "expand" + ] + }, + "unicode": "f103", + "label": "Angles Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M214.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 402.7 329.4 265.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-160 160zm160-352l-160 160c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 210.7 329.4 73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angles-left": { + "aliases": { + "names": [ + "angle-double-left" + ], + "unicodes": { + "composite": [ + "ab" + ], + "secondary": [ + "10f100" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Left-Pointing Double Angle Quotation Mark", + "arrows", + "back", + "caret", + "laquo", + "previous", + "quote" + ] + }, + "unicode": "f100", + "label": "Angles Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160zm352-160l-160 160c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L269.3 256 406.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angles-right": { + "aliases": { + "names": [ + "angle-double-right" + ], + "unicodes": { + "composite": [ + "bb" + ], + "secondary": [ + "10f101" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right-Pointing Double Angle Quotation Mark", + "arrows", + "caret", + "forward", + "more", + "next", + "quote", + "raquo" + ] + }, + "unicode": "f101", + "label": "Angles Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L370.7 256 233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L178.7 256 41.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angles-up": { + "aliases": { + "names": [ + "angle-double-up" + ], + "unicodes": { + "secondary": [ + "10f102" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "caret", + "collapse", + "upload" + ] + }, + "unicode": "f102", + "label": "Angles Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M214.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 109.3 329.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160zm160 352l-160-160c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 329.4 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angrycreative": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36e", + "label": "Angry Creative", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "angular": { + "changes": [ + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f420", + "label": "Angular", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M185.7 268.1h76.2l-38.1-91.6-38.1 91.6zM223.8 32L16 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7zM354 373.8h-48.6l-26.2-65.4H168.6l-26.2 65.4H93.7L223.8 81.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ankh": { + "aliases": { + "unicodes": { + "composite": [ + "2625" + ], + "secondary": [ + "10f644" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Ankh", + "amulet", + "copper", + "coptic christianity", + "copts", + "crux ansata", + "egypt", + "venus" + ] + }, + "unicode": "f644", + "label": "Ankh", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M96 128c0-35.3 28.7-64 64-64s64 28.7 64 64c0 41.6-20.7 76.6-46.6 104.1c-5.9 6.2-11.8 11.8-17.4 16.7c-5.6-4.9-11.5-10.5-17.4-16.7C116.7 204.6 96 169.6 96 128zM160 0C89.3 0 32 57.3 32 128c0 52.4 21.5 95.5 46.8 128H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96V480c0 17.7 14.3 32 32 32s32-14.3 32-32V320h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H241.2c25.4-32.5 46.8-75.6 46.8-128C288 57.3 230.7 0 160 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "app-store": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36f", + "label": "App Store", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "app-store-ios": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f370", + "label": "iOS App Store", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "apper": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f371", + "label": "Apper Systems AB", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "apple": { + "changes": [ + "3.2.0", + "5.0.0", + "5.0.7", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fruit", + "ios", + "mac", + "operating system", + "os", + "osx" + ] + }, + "unicode": "f179", + "label": "Apple", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "apple-pay": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f415", + "label": "Apple Pay", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "apple-whole": { + "aliases": { + "names": [ + "apple-alt" + ], + "unicodes": { + "composite": [ + "1f34e", + "1f34f" + ], + "secondary": [ + "10f5d1" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "fall", + "fruit", + "fuji", + "green", + "green apple", + "macintosh", + "orchard", + "red", + "red apple", + "seasonal", + "vegan" + ] + }, + "unicode": "f5d1", + "label": "Apple Whole", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 112c-8.8 0-16-7.2-16-16V80c0-44.2 35.8-80 80-80h16c8.8 0 16 7.2 16 16V32c0 44.2-35.8 80-80 80H224zM0 288c0-76.3 35.7-160 112-160c27.3 0 59.7 10.3 82.7 19.3c18.8 7.3 39.9 7.3 58.7 0c22.9-8.9 55.4-19.3 82.7-19.3c76.3 0 112 83.7 112 160c0 128-80 224-160 224c-16.5 0-38.1-6.6-51.5-11.3c-8.1-2.8-16.9-2.8-25 0c-13.4 4.7-35 11.3-51.5 11.3C80 512 0 416 0 288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "archway": { + "aliases": { + "unicodes": { + "secondary": [ + "10f557" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arc", + "monument", + "road", + "street", + "tunnel" + ] + }, + "unicode": "f557", + "label": "Archway", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zm0 384c-17.7 0-32 14.3-32 32s14.3 32 32 32H96h64V352c0-53 43-96 96-96s96 43 96 96V480h64 64c17.7 0 32-14.3 32-32s-14.3-32-32-32V128H32V416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down": { + "aliases": { + "unicodes": { + "composite": [ + "2193" + ], + "secondary": [ + "10f063" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Downwards Arrow", + "download" + ] + }, + "unicode": "f063", + "label": "Arrow Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M169.4 470.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 370.8 224 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 306.7L54.6 265.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-1-9": { + "aliases": { + "names": [ + "sort-numeric-asc", + "sort-numeric-down" + ], + "unicodes": { + "secondary": [ + "10f162" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-asc" + ] + }, + "unicode": "f162", + "label": "Arrow Down 1 9", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M410.7 38c-8.3-6-19.1-7.7-28.8-4.4l-48 16c-16.8 5.6-25.8 23.7-20.2 40.5s23.7 25.8 40.5 20.2l5.9-2V160H344c-17.7 0-32 14.3-32 32s14.3 32 32 32h48 48c17.7 0 32-14.3 32-32s-14.3-32-32-32H424V64c0-10.3-4.9-19.9-13.3-26zM120 480c9 0 17.5-3.8 23.6-10.4l88-96c11.9-13 11.1-33.3-2-45.2s-33.3-11.1-45.2 2L152 365.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V365.7L55.6 330.4c-11.9-13-32.2-13.9-45.2-2s-13.9 32.2-2 45.2l88 96C102.5 476.2 111 480 120 480zM378.3 307a32 32 0 1 1 27.4 57.9A32 32 0 1 1 378.3 307zM365.1 419.8l-6.8 9.2c-10.5 14.2-7.5 34.2 6.7 44.8s34.2 7.5 44.8-6.7l48.8-65.8c14-18.9 21.5-41.7 21.5-65.2c0-48.6-39.4-88-88-88s-88 39.4-88 88c0 39.2 25.6 72.4 61.1 83.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-9-1": { + "aliases": { + "names": [ + "sort-numeric-desc", + "sort-numeric-down-alt" + ], + "unicodes": { + "secondary": [ + "10f886" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-asc" + ] + }, + "unicode": "f886", + "label": "Arrow Down 9 1", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M120 480c9 0 17.5-3.8 23.6-10.4l88-96c11.9-13 11.1-33.3-2-45.2s-33.3-11.1-45.2 2L152 365.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V365.7L55.6 330.4c-11.9-13-32.2-13.9-45.2-2s-13.9 32.2-2 45.2l88 96C102.5 476.2 111 480 120 480zM410.7 294c-8.3-6-19.1-7.7-28.8-4.4l-48 16c-16.8 5.6-25.8 23.7-20.2 40.5s23.7 25.8 40.5 20.2l5.9-2V416H344c-17.7 0-32 14.3-32 32s14.3 32 32 32h48 48c17.7 0 32-14.3 32-32s-14.3-32-32-32H424V320c0-10.3-4.9-19.9-13.3-26zM378.3 91a32 32 0 1 1 27.4 57.9A32 32 0 1 1 378.3 91zM365.1 203.8l-6.8 9.2c-10.5 14.2-7.5 34.2 6.7 44.8s34.2 7.5 44.8-6.7l48.8-65.8c14-18.9 21.5-41.7 21.5-65.2c0-48.6-39.4-88-88-88s-88 39.4-88 88c0 39.2 25.6 72.4 61.1 83.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-a-z": { + "aliases": { + "names": [ + "sort-alpha-asc", + "sort-alpha-down" + ], + "unicodes": { + "secondary": [ + "10f15d" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-asc" + ] + }, + "unicode": "f15d", + "label": "Arrow Down A Z", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M143.6 469.6C137.5 476.2 129 480 120 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L88 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM280 320c0-17.7 14.3-32 32-32H440c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9L389.3 416H440c17.7 0 32 14.3 32 32s-14.3 32-32 32H312c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9L362.7 352H312c-17.7 0-32-14.3-32-32zM376 32c12.1 0 23.2 6.8 28.6 17.7l64 128 16 32c7.9 15.8 1.5 35-14.3 42.9s-35 1.5-42.9-14.3L420.2 224H331.8l-7.2 14.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l16-32 64-128C352.8 38.8 363.9 32 376 32zM355.8 176h40.4L376 135.6 355.8 176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-long": { + "aliases": { + "names": [ + "long-arrow-down" + ], + "unicodes": { + "secondary": [ + "10f175" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "long-arrow-down" + ] + }, + "unicode": "f175", + "label": "Arrow Down Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M137.4 502.6c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 402.7 192 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 370.7L54.6 329.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-short-wide": { + "aliases": { + "names": [ + "sort-amount-desc", + "sort-amount-down-alt" + ], + "unicodes": { + "secondary": [ + "10f884" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "order", + "sort-amount-asc" + ] + }, + "unicode": "f884", + "label": "Arrow Down Short Wide", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M151.6 469.6C145.5 476.2 137 480 128 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L96 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 128h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 128H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 128H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-up-across-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "border", + "crossing", + "transfer" + ] + }, + "unicode": "e4af", + "label": "Arrow Down Up Across Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M137.4 502.6c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 402.7V288H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H448V109.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L384 109.3V224H192 128 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96V402.7L86.6 361.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96zM128 192h64V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V192zM448 320H384V448c0 17.7 14.3 32 32 32s32-14.3 32-32V320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-up-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "border", + "closed", + "crossing", + "lockdown", + "quarantine", + "transfer" + ] + }, + "unicode": "e4b0", + "label": "Arrow Down Up Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M150.6 502.6l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 402.7V288H416V272c0-17.2 3.9-33.5 10.8-48H352V109.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-6-6-14.1-9.4-22.6-9.4s-16.6 3.4-22.6 9.4l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L288 109.3V224l-128 0H96l-64 0c-17.7 0-32 14.3-32 32s14.3 32 32 32H96V402.7L54.6 361.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0zM160 192V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V192h64zM288 320V448c0 17.7 14.3 32 32 32s32-14.3 32-32V320H288zm240-80c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-wide-short": { + "aliases": { + "names": [ + "sort-amount-asc", + "sort-amount-down" + ], + "unicodes": { + "secondary": [ + "10f160" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "number", + "order", + "sort-amount-asc" + ] + }, + "unicode": "f160", + "label": "Arrow Down Wide Short", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M151.6 469.6C145.5 476.2 137 480 128 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L96 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 480c-17.7 0-32-14.3-32-32s14.3-32 32-32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-z-a": { + "aliases": { + "names": [ + "sort-alpha-desc", + "sort-alpha-down-alt" + ], + "unicodes": { + "secondary": [ + "10f881" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-asc" + ] + }, + "unicode": "f881", + "label": "Arrow Down Z A", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M143.6 469.6C137.5 476.2 129 480 120 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L88 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM280 64c0-17.7 14.3-32 32-32H440c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9L389.3 160H440c17.7 0 32 14.3 32 32s-14.3 32-32 32H312c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9L362.7 96H312c-17.7 0-32-14.3-32-32zm96 192c12.1 0 23.2 6.8 28.6 17.7l64 128 16 32c7.9 15.8 1.5 35-14.3 42.9s-35 1.5-42.9-14.3L420.2 448H331.8l-7.2 14.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l16-32 64-128c5.4-10.8 16.5-17.7 28.6-17.7zM355.8 400h40.4L376 359.6 355.8 400z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-left": { + "aliases": { + "unicodes": { + "composite": [ + "2190" + ], + "secondary": [ + "10f060" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Leftwards Arrow", + "back", + "previous" + ] + }, + "unicode": "f060", + "label": "Arrow Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288 416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0L214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-left-long": { + "aliases": { + "names": [ + "long-arrow-left" + ], + "unicodes": { + "secondary": [ + "10f177" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "long-arrow-left", + "previous" + ] + }, + "unicode": "f177", + "label": "Arrow Left Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 288 480 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-370.7 0 73.4-73.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-128 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-pointer": { + "aliases": { + "names": [ + "mouse-pointer" + ], + "unicodes": { + "secondary": [ + "10f245" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "cursor", + "select" + ] + }, + "unicode": "f245", + "label": "Arrow Pointer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 55.2V426c0 12.2 9.9 22 22 22c6.3 0 12.4-2.7 16.6-7.5L121.2 346l58.1 116.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9L179.8 320H297.9c12.2 0 22.1-9.9 22.1-22.1c0-6.3-2.7-12.3-7.4-16.5L38.6 37.9C34.3 34.1 28.9 32 23.2 32C10.4 32 0 42.4 0 55.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right": { + "aliases": { + "unicodes": { + "composite": [ + "2192" + ], + "secondary": [ + "10f061" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rightwards Arrow", + "forward", + "next" + ] + }, + "unicode": "f061", + "label": "Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right-arrow-left": { + "aliases": { + "names": [ + "exchange" + ], + "unicodes": { + "composite": [ + "21c4" + ], + "secondary": [ + "10f0ec" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rightwards Arrow Over Leftwards Arrow", + "arrow", + "arrows", + "reciprocate", + "return", + "swap", + "transfer" + ] + }, + "unicode": "f0ec", + "label": "Arrow Right Arrow Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M438.6 150.6c12.5-12.5 12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.7 96 32 96C14.3 96 0 110.3 0 128s14.3 32 32 32l306.7 0-41.4 41.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l96-96zm-333.3 352c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 416 416 416c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0 41.4-41.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3l96 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right-from-bracket": { + "aliases": { + "names": [ + "sign-out" + ], + "unicodes": { + "secondary": [ + "10f08b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "exit", + "leave", + "log out", + "logout" + ] + }, + "unicode": "f08b", + "label": "Arrow Right From Bracket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224 192 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l210.7 0-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128zM160 96c17.7 0 32-14.3 32-32s-14.3-32-32-32L96 32C43 32 0 75 0 128L0 384c0 53 43 96 96 96l64 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-64 0c-17.7 0-32-14.3-32-32l0-256c0-17.7 14.3-32 32-32l64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right-long": { + "aliases": { + "names": [ + "long-arrow-right" + ], + "unicodes": { + "secondary": [ + "10f178" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "long-arrow-right", + "next" + ] + }, + "unicode": "f178", + "label": "Arrow Right Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l370.7 0-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right-to-bracket": { + "aliases": { + "names": [ + "sign-in" + ], + "unicodes": { + "secondary": [ + "10f090" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "enter", + "join", + "log in", + "login", + "sign in", + "sign up", + "sign-in", + "signin", + "signup" + ] + }, + "unicode": "f090", + "label": "Arrow Right To Bracket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 96l64 0c17.7 0 32 14.3 32 32l0 256c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l64 0c53 0 96-43 96-96l0-256c0-53-43-96-96-96l-64 0c-17.7 0-32 14.3-32 32s14.3 32 32 32zm-9.4 182.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L242.7 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l210.7 0-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right-to-city": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "exodus", + "rural", + "urban" + ] + }, + "unicode": "e4b3", + "label": "Arrow Right To City", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 48c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48V192h40V120c0-13.3 10.7-24 24-24s24 10.7 24 24v72h24c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H432 336c-26.5 0-48-21.5-48-48V48zm64 32v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm16 80c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H368zM352 272v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm176-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H528zM512 368v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H528c-8.8 0-16 7.2-16 16zM166.6 153.4l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L146.7 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H146.7l-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-rotate-left": { + "aliases": { + "names": [ + "arrow-left-rotate", + "arrow-rotate-back", + "arrow-rotate-backward", + "undo" + ], + "unicodes": { + "composite": [ + "21ba" + ], + "secondary": [ + "10f0e2" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Anticlockwise Open Circle Arrow", + "back", + "control z", + "exchange", + "oops", + "return", + "rotate", + "swap" + ] + }, + "unicode": "f0e2", + "label": "Arrow Rotate Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M109.7 160H160c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V64C0 46.3 14.3 32 32 32s32 14.3 32 32v51.2L81.6 97.6c87.5-87.5 229.3-87.5 316.8 0s87.5 229.3 0 316.8s-229.3 87.5-316.8 0c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0c62.5 62.5 163.8 62.5 226.3 0s62.5-163.8 0-226.3s-163.8-62.5-226.3 0L109.7 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-rotate-right": { + "aliases": { + "names": [ + "arrow-right-rotate", + "arrow-rotate-forward", + "redo" + ], + "unicodes": { + "composite": [ + "21bb" + ], + "secondary": [ + "10f01e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Clockwise Open Circle Arrow", + "forward", + "refresh", + "reload", + "repeat" + ] + }, + "unicode": "f01e", + "label": "Arrow Rotate Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M370.3 160H320c-17.7 0-32 14.3-32 32s14.3 32 32 32H448c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v51.2L398.4 97.6c-87.5-87.5-229.3-87.5-316.8 0s-87.5 229.3 0 316.8s229.3 87.5 316.8 0c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3s163.8-62.5 226.3 0L370.3 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-trend-down": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "line", + "stocks", + "trend" + ] + }, + "unicode": "e097", + "label": "Arrow Trend Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 352c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v82.7L342.6 137.4c-12.5-12.5-32.8-12.5-45.3 0L192 242.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0L320 205.3 466.7 352H384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-trend-up": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "line", + "stocks", + "trend" + ] + }, + "unicode": "e098", + "label": "Arrow Trend Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 160c-17.7 0-32-14.3-32-32s14.3-32 32-32H544c17.7 0 32 14.3 32 32V288c0 17.7-14.3 32-32 32s-32-14.3-32-32V205.3L342.6 374.6c-12.5 12.5-32.8 12.5-45.3 0L192 269.3 54.6 406.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l160-160c12.5-12.5 32.8-12.5 45.3 0L320 306.7 466.7 160H384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-turn-down": { + "aliases": { + "names": [ + "level-down" + ], + "unicodes": { + "secondary": [ + "10f149" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow" + ] + }, + "unicode": "f149", + "label": "Arrow Turn Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 64C14.3 64 0 49.7 0 32S14.3 0 32 0l96 0c53 0 96 43 96 96l0 306.7 73.4-73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-128 128c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 402.7 160 96c0-17.7-14.3-32-32-32L32 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-turn-up": { + "aliases": { + "names": [ + "level-up" + ], + "unicodes": { + "secondary": [ + "10f148" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow" + ] + }, + "unicode": "f148", + "label": "Arrow Turn Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 448c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0c53 0 96-43 96-96l0-306.7 73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 109.3 160 416c0 17.7-14.3 32-32 32l-96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up": { + "aliases": { + "unicodes": { + "composite": [ + "2191" + ], + "secondary": [ + "10f062" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Upwards Arrow", + "forward", + "upload" + ] + }, + "unicode": "f062", + "label": "Arrow Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M214.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 141.2V448c0 17.7 14.3 32 32 32s32-14.3 32-32V141.2L329.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-1-9": { + "aliases": { + "names": [ + "sort-numeric-up" + ], + "unicodes": { + "secondary": [ + "10f163" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-desc" + ] + }, + "unicode": "f163", + "label": "Arrow Up 1 9", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M410.7 38c8.3 6 13.3 15.7 13.3 26v96h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H392 344c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V108.4l-5.9 2c-16.8 5.6-34.9-3.5-40.5-20.2s3.5-34.9 20.2-40.5l48-16c9.8-3.3 20.5-1.6 28.8 4.4zM120 32c9 0 17.5 3.8 23.6 10.4l88 96c11.9 13 11.1 33.3-2 45.2s-33.3 11.1-45.2-2L152 146.3V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V146.3L55.6 181.6c-11.9 13-32.2 13.9-45.2 2s-13.9-32.2-2-45.2l88-96C102.5 35.8 111 32 120 32zM405.7 364.9A32 32 0 1 0 378.3 307a32 32 0 1 0 27.4 57.9zm-40.7 54.9C329.6 408.4 304 375.2 304 336c0-48.6 39.4-88 88-88s88 39.4 88 88c0 23.5-7.5 46.3-21.5 65.2L409.7 467c-10.5 14.2-30.6 17.2-44.8 6.7s-17.2-30.6-6.7-44.8l6.8-9.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-9-1": { + "aliases": { + "names": [ + "sort-numeric-up-alt" + ], + "unicodes": { + "secondary": [ + "10f887" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-desc" + ] + }, + "unicode": "f887", + "label": "Arrow Up 9 1", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M120 32c9 0 17.5 3.8 23.6 10.4l88 96c11.9 13 11.1 33.3-2 45.2s-33.3 11.1-45.2-2L152 146.3V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V146.3L55.6 181.6c-11.9 13-32.2 13.9-45.2 2s-13.9-32.2-2-45.2l88-96C102.5 35.8 111 32 120 32zM410.7 294c8.3 6 13.3 15.7 13.3 26v96h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H392 344c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V364.4l-5.9 2c-16.8 5.6-34.9-3.5-40.5-20.2s3.5-34.9 20.2-40.5l48-16c9.8-3.3 20.5-1.6 28.8 4.4zm-5-145.1A32 32 0 1 0 378.3 91a32 32 0 1 0 27.4 57.9zm-40.7 54.9C329.6 192.4 304 159.2 304 120c0-48.6 39.4-88 88-88s88 39.4 88 88c0 23.5-7.5 46.3-21.5 65.2L409.7 251c-10.5 14.2-30.6 17.2-44.8 6.7s-17.2-30.6-6.7-44.8l6.8-9.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-a-z": { + "aliases": { + "names": [ + "sort-alpha-up" + ], + "unicodes": { + "secondary": [ + "10f15e" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-desc" + ] + }, + "unicode": "f15e", + "label": "Arrow Up A Z", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M143.6 42.4C137.5 35.8 129 32 120 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L88 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM280 320c0 17.7 14.3 32 32 32h50.7l-73.4 73.4c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H440c17.7 0 32-14.3 32-32s-14.3-32-32-32H389.3l73.4-73.4c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H312c-17.7 0-32 14.3-32 32zM376 32c-12.1 0-23.2 6.8-28.6 17.7l-64 128-16 32c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l7.2-14.3h88.4l7.2 14.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9l-16-32-64-128C399.2 38.8 388.1 32 376 32zM355.8 176L376 135.6 396.2 176H355.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-from-bracket": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "share", + "transfer", + "upload" + ] + }, + "unicode": "e09a", + "label": "Arrow Up From Bracket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M246.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 109.3V320c0 17.7 14.3 32 32 32s32-14.3 32-32V109.3l73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128zM64 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 53 43 96 96 96H352c53 0 96-43 96-96V352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-from-ground-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "groundwater", + "spring", + "water supply", + "water table" + ] + }, + "unicode": "e4b5", + "label": "Arrow Up From Ground Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 352c17.7 0 32-14.3 32-32V109.3l25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L256 109.3V320c0 17.7 14.3 32 32 32zm-18.5 69.9C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0zM192 192H48c-26.5 0-48 21.5-48 48V425c5.3-3.1 11.2-5.4 17.5-6.9c13.1-3.1 26.7-9.8 37.3-18.6c22.2-18.7 54.3-20.1 78.1-3.4c18 12.4 40.1 20.3 59.1 20.3V192zm384 48c0-26.5-21.5-48-48-48H384V416.5h0c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.3 78.1 3.4c10.6 8.8 24.2 15.6 37.3 18.6c6.3 1.5 12.1 3.8 17.5 6.9V240z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-from-water-pump": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flood", + "groundwater", + "pump", + "submersible", + "sump pump" + ] + }, + "unicode": "e4b6", + "label": "Arrow Up From Water Pump", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 0C85.5 0 64 21.5 64 48V256H48c-26.5 0-48 21.5-48 48v96c0 8 2 15.6 5.4 22.2c3.8-1.7 7.8-3.1 12-4.1c13.1-3.1 26.7-9.8 37.3-18.6c22.2-18.7 54.3-20.1 78.1-3.4c18 12.4 40.1 20.3 59.2 20.3c21.1 0 42-8.5 59.2-20.3c22.1-15.5 51.6-15.5 73.7 0c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.3 78.1 3.4c10.6 8.8 24.2 15.6 37.3 18.6c4.2 1 8.2 2.4 12 4.1C574 415.6 576 408 576 400V304c0-26.5-21.5-48-48-48H480l0-146.7 25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 109.3 416 256H288V48c0-26.5-21.5-48-48-48H112zM306.5 421.9c-11.1-7.9-25.9-7.9-37 0C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448c-27.5 0-55-10.6-77.5-26.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-long": { + "aliases": { + "names": [ + "long-arrow-up" + ], + "unicodes": { + "secondary": [ + "10f176" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "long-arrow-up", + "upload" + ] + }, + "unicode": "f176", + "label": "Arrow Up Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M182.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L128 109.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V109.3l73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-right-dots": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "growth", + "increase", + "population" + ] + }, + "unicode": "e4b7", + "label": "Arrow Up Right Dots", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h50.7L9.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L256 109.3V160c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H160zM576 80a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM448 208a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM400 384a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm48 80a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm128 0a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM272 384a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm48 80a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM144 512a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM576 336a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm-48-80a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-right-from-square": { + "aliases": { + "names": [ + "external-link" + ], + "unicodes": { + "secondary": [ + "10f08e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "new", + "open", + "send", + "share" + ] + }, + "unicode": "f08e", + "label": "Arrow Up Right From Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h82.7L201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3V192c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H320zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-short-wide": { + "aliases": { + "names": [ + "sort-amount-up-alt" + ], + "unicodes": { + "secondary": [ + "10f885" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "order", + "sort-amount-desc" + ] + }, + "unicode": "f885", + "label": "Arrow Up Short Wide", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M151.6 42.4C145.5 35.8 137 32 128 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L96 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H320zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H320zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H320zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-wide-short": { + "aliases": { + "names": [ + "sort-amount-up" + ], + "unicodes": { + "secondary": [ + "10f161" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "order", + "sort-amount-desc" + ] + }, + "unicode": "f161", + "label": "Arrow Up Wide Short", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M151.6 42.4C145.5 35.8 137 32 128 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L96 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 480h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32zm0-128h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32zm0-128H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32zm0-128H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-z-a": { + "aliases": { + "names": [ + "sort-alpha-up-alt" + ], + "unicodes": { + "secondary": [ + "10f882" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-desc" + ] + }, + "unicode": "f882", + "label": "Arrow Up Z A", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M143.6 42.4C137.5 35.8 129 32 120 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L88 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM280 64c0 17.7 14.3 32 32 32h50.7l-73.4 73.4c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H440c17.7 0 32-14.3 32-32s-14.3-32-32-32H389.3l73.4-73.4c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H312c-17.7 0-32 14.3-32 32zm96 192c-12.1 0-23.2 6.8-28.6 17.7l-64 128-16 32c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l7.2-14.3h88.4l7.2 14.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9l-16-32-64-128C399.2 262.8 388.1 256 376 256zM355.8 400L376 359.6 396.2 400H355.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-down-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "scale down", + "sink" + ] + }, + "unicode": "e4b8", + "label": "Arrows Down To Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M544 416L32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32l512 0c17.7 0 32-14.3 32-32s-14.3-32-32-32zm22.6-137.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L480 274.7 480 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 210.7-41.4-41.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96zm-320-45.3c-12.5-12.5-32.8-12.5-45.3 0L160 274.7 160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 210.7L54.6 233.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-down-to-people": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "focus", + "targeted" + ] + }, + "unicode": "e4b9", + "label": "Arrows Down To People", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 0c-13.3 0-24 10.7-24 24V142.1L81 119c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0l64-64c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-23 23V24c0-13.3-10.7-24-24-24zM344 200a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zM168 296a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zm312 40a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM184 441.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-36.3-67.5c1.7-1.7 3.2-3.6 4.3-5.8L248 345.5V400c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V345.5l26.9 49.9c1.2 2.2 2.6 4.1 4.3 5.8l-36.3 67.5c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L424 441.5V480c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V441.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3H470.2c-16.3 0-31.9 4.5-45.4 12.6l-33.6-62.3c-15.3-28.5-45.1-46.3-77.5-46.3H294.2c-32.4 0-62.1 17.8-77.5 46.3l-33.6 62.3c-13.5-8.1-29.1-12.6-45.4-12.6H118.2c-32.4 0-62.1 17.8-77.5 46.3L2.9 468.6c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L72 441.5V480c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V441.5zM399 153l64 64c9.4 9.4 24.6 9.4 33.9 0l64-64c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-23 23V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V142.1l-23-23c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-left-right": { + "aliases": { + "names": [ + "arrows-h" + ], + "unicodes": { + "secondary": [ + "10f07e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "expand", + "horizontal", + "landscape", + "resize", + "wide" + ] + }, + "unicode": "f07e", + "label": "Arrows Left Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M406.6 374.6l96-96c12.5-12.5 12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224l-293.5 0 41.4-41.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 288l293.5 0-41.4 41.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-left-right-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analysis", + "expand", + "gap" + ] + }, + "unicode": "e4ba", + "label": "Arrows Left Right To Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 64c17.7 0 32 14.3 32 32l0 320c0 17.7-14.3 32-32 32s-32-14.3-32-32V96C0 78.3 14.3 64 32 64zm214.6 73.4c12.5 12.5 12.5 32.8 0 45.3L205.3 224l229.5 0-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L434.7 288l-229.5 0 41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-96-96c-12.5-12.5-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0zM640 96V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V96c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-rotate": { + "aliases": { + "names": [ + "refresh", + "sync" + ], + "unicodes": { + "composite": [ + "1f5d8" + ], + "secondary": [ + "10f021" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Clockwise Right and Left Semicircle Arrows", + "exchange", + "refresh", + "reload", + "rotate", + "swap" + ] + }, + "unicode": "f021", + "label": "Arrows Rotate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M89.1 202.6c7.7-21.8 20.2-42.3 37.8-59.8c62.5-62.5 163.8-62.5 226.3 0L370.3 160H320c-17.7 0-32 14.3-32 32s14.3 32 32 32H447.5c0 0 0 0 0 0h.4c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v51.2L398.4 97.6c-87.5-87.5-229.3-87.5-316.8 0C57.2 122 39.6 150.7 28.8 181.4c-5.9 16.7 2.9 34.9 19.5 40.8s34.9-2.9 40.8-19.5zM23 289.3c-5 1.5-9.8 4.2-13.7 8.2c-4 4-6.7 8.8-8.1 14c-.3 1.2-.6 2.5-.8 3.8c-.3 1.7-.4 3.4-.4 5.1V448c0 17.7 14.3 32 32 32s32-14.3 32-32V396.9l17.6 17.5 0 0c87.5 87.4 229.3 87.4 316.7 0c24.4-24.4 42.1-53.1 52.9-83.7c5.9-16.7-2.9-34.9-19.5-40.8s-34.9 2.9-40.8 19.5c-7.7 21.8-20.2 42.3-37.8 59.8c-62.5 62.5-163.8 62.5-226.3 0l-.1-.1L109.6 352H160c17.7 0 32-14.3 32-32s-14.3-32-32-32H32.4c-1.6 0-3.2 .1-4.8 .3s-3.1 .5-4.6 1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-spin": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cycle", + "rotate", + "spin", + "whirl" + ] + }, + "unicode": "e4bb", + "label": "Arrows Spin", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 96c38.4 0 73.7 13.5 101.3 36.1l-32.6 32.6c-4.6 4.6-5.9 11.5-3.5 17.4s8.3 9.9 14.8 9.9H416c8.8 0 16-7.2 16-16V64c0-6.5-3.9-12.3-9.9-14.8s-12.9-1.1-17.4 3.5l-34 34C331.4 52.6 280.1 32 224 32c-10.9 0-21.5 .8-32 2.3V99.2c10.3-2.1 21-3.2 32-3.2zM100.1 154.7l32.6 32.6c4.6 4.6 11.5 5.9 17.4 3.5s9.9-8.3 9.9-14.8V64c0-8.8-7.2-16-16-16H32c-6.5 0-12.3 3.9-14.8 9.9s-1.1 12.9 3.5 17.4l34 34C20.6 148.6 0 199.9 0 256c0 10.9 .8 21.5 2.3 32H67.2c-2.1-10.3-3.2-21-3.2-32c0-38.4 13.5-73.7 36.1-101.3zM445.7 224H380.8c2.1 10.3 3.2 21 3.2 32c0 38.4-13.5 73.7-36.1 101.3l-32.6-32.6c-4.6-4.6-11.5-5.9-17.4-3.5s-9.9 8.3-9.9 14.8V448c0 8.8 7.2 16 16 16H416c6.5 0 12.3-3.9 14.8-9.9s1.1-12.9-3.5-17.4l-34-34C427.4 363.4 448 312.1 448 256c0-10.9-.8-21.5-2.3-32zM224 416c-38.4 0-73.7-13.5-101.3-36.1l32.6-32.6c4.6-4.6 5.9-11.5 3.5-17.4s-8.3-9.9-14.8-9.9H32c-8.8 0-16 7.2-16 16l0 112c0 6.5 3.9 12.3 9.9 14.8s12.9 1.1 17.4-3.5l34-34C116.6 459.4 167.9 480 224 480c10.9 0 21.5-.8 32-2.3V412.8c-10.3 2.1-21 3.2-32 3.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-split-up-and-left": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agile", + "split" + ] + }, + "unicode": "e4bc", + "label": "Arrows Split Up And Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M246.6 150.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L352 109.3V384c0 35.3 28.7 64 64 64h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H416c-70.7 0-128-57.3-128-128c0-35.3-28.7-64-64-64H109.3l41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-96-96c-12.5-12.5-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L109.3 256H224c23.3 0 45.2 6.2 64 17.1V109.3l-41.4 41.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-to-circle": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "center", + "concentrate", + "coordinate", + "coordination", + "focal point", + "focus" + ] + }, + "unicode": "e4bd", + "label": "Arrows To Circle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M9.4 9.4C21.9-3.1 42.1-3.1 54.6 9.4L160 114.7V96c0-17.7 14.3-32 32-32s32 14.3 32 32v96c0 4.3-.9 8.5-2.4 12.2c-1.6 3.7-3.8 7.3-6.9 10.3l-.1 .1c-3.1 3-6.6 5.3-10.3 6.9c-3.8 1.6-7.9 2.4-12.2 2.4H96c-17.7 0-32-14.3-32-32s14.3-32 32-32h18.7L9.4 54.6C-3.1 42.1-3.1 21.9 9.4 9.4zM256 256a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM114.7 352H96c-17.7 0-32-14.3-32-32s14.3-32 32-32h96 0l.1 0c8.8 0 16.7 3.6 22.5 9.3l.1 .1c3 3.1 5.3 6.6 6.9 10.3c1.6 3.8 2.4 7.9 2.4 12.2v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V397.3L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L114.7 352zM416 96c0-17.7 14.3-32 32-32s32 14.3 32 32v18.7L585.4 9.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L525.3 160H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H448c-8.8 0-16.8-3.6-22.6-9.3l-.1-.1c-3-3.1-5.3-6.6-6.9-10.3s-2.4-7.8-2.4-12.2l0-.1v0V96zM525.3 352L630.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L480 397.3V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V320v0c0 0 0-.1 0-.1c0-4.3 .9-8.4 2.4-12.2c1.6-3.8 3.9-7.3 6.9-10.4c5.8-5.8 13.7-9.3 22.5-9.4c0 0 .1 0 .1 0h0 96c17.7 0 32 14.3 32 32s-14.3 32-32 32H525.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-to-dot": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "assembly point", + "center", + "condense", + "focus", + "minimize" + ] + }, + "unicode": "e4be", + "label": "Arrows To Dot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c17.7 0 32 14.3 32 32V64h32c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-64 64c-12.5 12.5-32.8 12.5-45.3 0l-64-64c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8h32V32c0-17.7 14.3-32 32-32zM169.4 393.4l64-64c12.5-12.5 32.8-12.5 45.3 0l64 64c9.2 9.2 11.9 22.9 6.9 34.9s-16.6 19.8-29.6 19.8H288v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H192c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9zM32 224H64V192c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l64 64c12.5 12.5 12.5 32.8 0 45.3l-64 64c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm297.4 54.6c-12.5-12.5-12.5-32.8 0-45.3l64-64c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6v32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H448v32c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-64-64zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-to-eye": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "center", + "coordinated assessment", + "focus" + ] + }, + "unicode": "e4bf", + "label": "Arrows To Eye", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M7 15C16.4 5.7 31.6 5.7 41 15l63 63V40c0-13.3 10.7-24 24-24s24 10.7 24 24v96c0 13.3-10.7 24-24 24H32c-13.3 0-24-10.7-24-24s10.7-24 24-24H70.1L7 49C-2.3 39.6-2.3 24.4 7 15zM125.5 243.9C150.6 193.6 214.7 112 312 112s161.4 81.6 186.5 131.9c3.8 7.6 3.8 16.5 0 24.2C473.4 318.4 409.3 400 312 400s-161.4-81.6-186.5-131.9c-3.8-7.6-3.8-16.5 0-24.2zM312 320a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM583 15c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-63 63H592c13.3 0 24 10.7 24 24s-10.7 24-24 24H496c-13.3 0-24-10.7-24-24V40c0-13.3 10.7-24 24-24s24 10.7 24 24V78.1l63-63zM7 497c-9.4-9.4-9.4-24.6 0-33.9l63-63H32c-13.3 0-24-10.7-24-24s10.7-24 24-24h96c13.3 0 24 10.7 24 24v96c0 13.3-10.7 24-24 24s-24-10.7-24-24V433.9L41 497c-9.4 9.4-24.6 9.4-33.9 0zm576 0l-63-63V472c0 13.3-10.7 24-24 24s-24-10.7-24-24V376c0-13.3 10.7-24 24-24h96c13.3 0 24 10.7 24 24s-10.7 24-24 24H553.9l63 63c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-turn-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows" + ] + }, + "unicode": "e4c0", + "label": "Arrows Turn Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M297.4 9.4c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L338.7 160H128c-35.3 0-64 28.7-64 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V224C0 153.3 57.3 96 128 96H338.7L297.4 54.6c-12.5-12.5-12.5-32.8 0-45.3zm-96 256c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 416H96c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96H242.7l-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-turn-to-dots": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destination", + "nexus" + ] + }, + "unicode": "e4c1", + "label": "Arrows Turn To Dots", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M249.4 25.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L269.3 96 416 96c53 0 96 43 96 96v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7-14.3-32-32-32l-146.7 0 25.4 25.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-80-80c-12.5-12.5-12.5-32.8 0-45.3l80-80zm13.3 256l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 416 96 416c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96l146.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0zM384 384a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM64 192A64 64 0 1 1 64 64a64 64 0 1 1 0 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-up-down": { + "aliases": { + "names": [ + "arrows-v" + ], + "unicodes": { + "secondary": [ + "10f07d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "expand", + "portrait", + "resize", + "tall", + "vertical" + ] + }, + "unicode": "f07d", + "label": "Arrows Up Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M150.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L96 109.3V402.7L54.6 361.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 402.7V109.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-up-down-left-right": { + "aliases": { + "names": [ + "arrows" + ], + "unicodes": { + "secondary": [ + "10f047" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "bigger", + "enlarge", + "expand", + "fullscreen", + "move", + "position", + "reorder", + "resize" + ] + }, + "unicode": "f047", + "label": "Arrows Up Down Left Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M278.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l9.4-9.4V224H109.3l9.4-9.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-9.4-9.4H224V402.7l-9.4-9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-9.4 9.4V288H402.7l-9.4 9.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l9.4 9.4H288V109.3l9.4 9.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-up-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "rise", + "scale up" + ] + }, + "unicode": "e4c2", + "label": "Arrows Up To Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M32 96l512 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 32C14.3 32 0 46.3 0 64S14.3 96 32 96zM9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L96 237.3 96 448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-210.7 41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0l-96 96zm320 45.3c12.5 12.5 32.8 12.5 45.3 0L416 237.3 416 448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-210.7 41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "artstation": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f77a", + "label": "Artstation", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M2 377.4l43 74.3A51.35 51.35 0 0 0 90.9 480h285.4l-59.2-102.6zM501.8 350L335.6 59.3A51.38 51.38 0 0 0 290.2 32h-88.4l257.3 447.6 40.7-70.5c1.9-3.2 21-29.7 2-59.1zM275 304.5l-115.5-200L44 304.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "asterisk": { + "aliases": { + "unicodes": { + "composite": [ + "2731", + "f069" + ], + "primary": [ + "f069" + ], + "secondary": [ + "102a", + "10f069" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Asterisk", + "Heavy Asterisk", + "annotation", + "details", + "reference", + "star" + ] + }, + "unicode": "2a", + "label": "Asterisk", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 32c17.7 0 32 14.3 32 32V199.5l111.5-66.9c15.2-9.1 34.8-4.2 43.9 11s4.2 34.8-11 43.9L254.2 256l114.3 68.6c15.2 9.1 20.1 28.7 11 43.9s-28.7 20.1-43.9 11L224 312.5V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V312.5L48.5 379.4c-15.2 9.1-34.8 4.2-43.9-11s-4.2-34.8 11-43.9L129.8 256 15.5 187.4c-15.2-9.1-20.1-28.7-11-43.9s28.7-20.1 43.9-11L160 199.5V64c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "asymmetrik": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f372", + "label": "Asymmetrik, Ltd.", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "at": { + "aliases": { + "unicodes": { + "composite": [ + "f1fa" + ], + "primary": [ + "f1fa" + ], + "secondary": [ + "10f1fa" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Commercial At", + "address", + "author", + "e-mail", + "email", + "fluctuate", + "handle" + ] + }, + "unicode": "40", + "label": "At", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 64C150 64 64 150 64 256s86 192 192 192c17.7 0 32 14.3 32 32s-14.3 32-32 32C114.6 512 0 397.4 0 256S114.6 0 256 0S512 114.6 512 256v32c0 53-43 96-96 96c-29.3 0-55.6-13.2-73.2-33.9C320 371.1 289.5 384 256 384c-70.7 0-128-57.3-128-128s57.3-128 128-128c27.9 0 53.7 8.9 74.7 24.1c5.7-5 13.1-8.1 21.3-8.1c17.7 0 32 14.3 32 32v80 32c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-106-86-192-192-192zm64 192a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "atlassian": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f77b", + "label": "Atlassian", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M152.2 236.4c-7.7-8.2-19.7-7.7-24.8 2.8L1.6 490.2c-5 10 2.4 21.7 13.4 21.7h175c5.8.1 11-3.2 13.4-8.4 37.9-77.8 15.1-196.3-51.2-267.1zM244.4 8.1c-122.3 193.4-8.5 348.6 65 495.5 2.5 5.1 7.7 8.4 13.4 8.4H497c11.2 0 18.4-11.8 13.4-21.7 0 0-234.5-470.6-240.4-482.3-5.3-10.6-18.8-10.8-25.6.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "atom": { + "aliases": { + "unicodes": { + "composite": [ + "269b" + ], + "secondary": [ + "10f5d2" + ] + } + }, + "changes": [ + "5.2.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atheism", + "atheist", + "atom", + "atom symbol", + "chemistry", + "electron", + "ion", + "isotope", + "neutron", + "nuclear", + "proton", + "science" + ] + }, + "unicode": "f5d2", + "label": "Atom", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 398.8c-11.8 5.1-23.4 9.7-34.9 13.5c16.7 33.8 31 35.7 34.9 35.7s18.1-1.9 34.9-35.7c-11.4-3.9-23.1-8.4-34.9-13.5zM414 256c33 45.2 44.3 90.9 23.6 128c-20.2 36.3-62.5 49.3-115.2 43.2c-22 52.1-55.7 84.8-98.4 84.8s-76.4-32.7-98.4-84.8c-52.7 6.1-95-6.8-115.2-43.2C-10.3 346.9 1 301.2 34 256C1 210.8-10.3 165.1 10.4 128C30.6 91.7 72.9 78.7 125.6 84.8C147.6 32.7 181.2 0 224 0s76.4 32.7 98.4 84.8c52.7-6.1 95 6.8 115.2 43.2c20.7 37.1 9.4 82.8-23.6 128zm-65.8 67.4c-1.7 14.2-3.9 28-6.7 41.2c31.8 1.4 38.6-8.7 40.2-11.7c2.3-4.2 7-17.9-11.9-48.1c-6.8 6.3-14 12.5-21.6 18.6zm-6.7-175.9c2.8 13.1 5 26.9 6.7 41.2c7.6 6.1 14.8 12.3 21.6 18.6c18.9-30.2 14.2-44 11.9-48.1c-1.6-2.9-8.4-13-40.2-11.7zM258.9 99.7C242.1 65.9 227.9 64 224 64s-18.1 1.9-34.9 35.7c11.4 3.9 23.1 8.4 34.9 13.5c11.8-5.1 23.4-9.7 34.9-13.5zm-159 88.9c1.7-14.3 3.9-28 6.7-41.2c-31.8-1.4-38.6 8.7-40.2 11.7c-2.3 4.2-7 17.9 11.9 48.1c6.8-6.3 14-12.5 21.6-18.6zM78.2 304.8C59.4 335 64 348.7 66.3 352.9c1.6 2.9 8.4 13 40.2 11.7c-2.8-13.1-5-26.9-6.7-41.2c-7.6-6.1-14.8-12.3-21.6-18.6zM304 256a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zm-80-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "audible": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f373", + "label": "Audible", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "audio-description": { + "aliases": { + "unicodes": { + "secondary": [ + "10f29e" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "narration", + "video", + "visual" + ] + }, + "unicode": "f29e", + "label": "Audio Description", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM213.5 173.3l72 144c5.9 11.9 1.1 26.3-10.7 32.2s-26.3 1.1-32.2-10.7l-9.4-18.9H150.9l-9.4 18.9c-5.9 11.9-20.3 16.7-32.2 10.7s-16.7-20.3-10.7-32.2l72-144c4.1-8.1 12.4-13.3 21.5-13.3s17.4 5.1 21.5 13.3zm-.4 106.6L192 237.7l-21.1 42.2h42.2zM304 184c0-13.3 10.7-24 24-24h56c53 0 96 43 96 96s-43 96-96 96H328c-13.3 0-24-10.7-24-24V184zm48 24v96h32c26.5 0 48-21.5 48-48s-21.5-48-48-48H352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "austral-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Austral Sign", + "currency" + ] + }, + "unicode": "e0a9", + "label": "Austral Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M253.5 51.7C248.6 39.8 236.9 32 224 32s-24.6 7.8-29.5 19.7L122.7 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H96L82.7 320H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H56L34.5 435.7c-6.8 16.3 .9 35 17.2 41.8s35-.9 41.8-17.2L125.3 384H322.7l31.8 76.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8L392 384h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H365.3L352 288h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H325.3L253.5 51.7zM256 224H192l32-76.8L256 224zm-90.7 64H282.7L296 320H152l13.3-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "autoprefixer": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41c", + "label": "Autoprefixer", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "avianex": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f374", + "label": "avianex", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "aviato": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f421", + "label": "Aviato", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "award": { + "aliases": { + "unicodes": { + "secondary": [ + "10f559" + ] + } + }, + "changes": [ + "5.1.0", + "5.2.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "honor", + "praise", + "prize", + "recognition", + "ribbon", + "trophy" + ] + }, + "unicode": "f559", + "label": "Award", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M173.8 5.5c11-7.3 25.4-7.3 36.4 0L228 17.2c6 3.9 13 5.8 20.1 5.4l21.3-1.3c13.2-.8 25.6 6.4 31.5 18.2l9.6 19.1c3.2 6.4 8.4 11.5 14.7 14.7L344.5 83c11.8 5.9 19 18.3 18.2 31.5l-1.3 21.3c-.4 7.1 1.5 14.2 5.4 20.1l11.8 17.8c7.3 11 7.3 25.4 0 36.4L366.8 228c-3.9 6-5.8 13-5.4 20.1l1.3 21.3c.8 13.2-6.4 25.6-18.2 31.5l-19.1 9.6c-6.4 3.2-11.5 8.4-14.7 14.7L301 344.5c-5.9 11.8-18.3 19-31.5 18.2l-21.3-1.3c-7.1-.4-14.2 1.5-20.1 5.4l-17.8 11.8c-11 7.3-25.4 7.3-36.4 0L156 366.8c-6-3.9-13-5.8-20.1-5.4l-21.3 1.3c-13.2 .8-25.6-6.4-31.5-18.2l-9.6-19.1c-3.2-6.4-8.4-11.5-14.7-14.7L39.5 301c-11.8-5.9-19-18.3-18.2-31.5l1.3-21.3c.4-7.1-1.5-14.2-5.4-20.1L5.5 210.2c-7.3-11-7.3-25.4 0-36.4L17.2 156c3.9-6 5.8-13 5.4-20.1l-1.3-21.3c-.8-13.2 6.4-25.6 18.2-31.5l19.1-9.6C65 70.2 70.2 65 73.4 58.6L83 39.5c5.9-11.8 18.3-19 31.5-18.2l21.3 1.3c7.1 .4 14.2-1.5 20.1-5.4L173.8 5.5zM272 192a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM1.3 441.8L44.4 339.3c.2 .1 .3 .2 .4 .4l9.6 19.1c11.7 23.2 36 37.3 62 35.8l21.3-1.3c.2 0 .5 0 .7 .2l17.8 11.8c5.1 3.3 10.5 5.9 16.1 7.7l-37.6 89.3c-2.3 5.5-7.4 9.2-13.3 9.7s-11.6-2.2-14.8-7.2L74.4 455.5l-56.1 8.3c-5.7 .8-11.4-1.5-15-6s-4.3-10.7-2.1-16zm248 60.4L211.7 413c5.6-1.8 11-4.3 16.1-7.7l17.8-11.8c.2-.1 .4-.2 .7-.2l21.3 1.3c26 1.5 50.3-12.6 62-35.8l9.6-19.1c.1-.2 .2-.3 .4-.4l43.2 102.5c2.2 5.3 1.4 11.4-2.1 16s-9.3 6.9-15 6l-56.1-8.3-32.2 49.2c-3.2 5-8.9 7.7-14.8 7.2s-11-4.3-13.3-9.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "aws": { + "changes": [ + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f375", + "label": "Amazon Web Services (AWS)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "b": { + "aliases": { + "unicodes": { + "composite": [ + "62" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter B", + "Latin Small Letter B", + "letter" + ] + }, + "unicode": "42", + "label": "B", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V256 416c0 35.3 28.7 64 64 64H192c70.7 0 128-57.3 128-128c0-46.5-24.8-87.3-62-109.7c18.7-22.3 30-51 30-82.3c0-70.7-57.3-128-128-128H64zm96 192H64V96h96c35.3 0 64 28.7 64 64s-28.7 64-64 64zM64 288h96 32c35.3 0 64 28.7 64 64s-28.7 64-64 64H64V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "baby": { + "aliases": { + "unicodes": { + "secondary": [ + "10f77c" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f77c", + "label": "Baby", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M120 88a72 72 0 1 1 144 0A72 72 0 1 1 120 88zM7.7 144.5c13-17.9 38-21.8 55.9-8.8L99.8 162c26.8 19.5 59.1 30 92.2 30s65.4-10.5 92.2-30l36.2-26.4c17.9-13 42.9-9 55.9 8.8s9 42.9-8.8 55.9l-36.2 26.4c-13.6 9.9-28.1 18.2-43.3 25V288H96V251.7c-15.2-6.7-29.7-15.1-43.3-25L16.5 200.3c-17.9-13-21.8-38-8.8-55.9zM97.5 329.3l60.6 53-26 37.2 24.3 24.3c15.6 15.6 15.6 40.9 0 56.6s-40.9 15.6-56.6 0l-48-48C38 438.6 36.1 417 47.2 401.1l50.2-71.8zm128.5 53l60.6-53 50.2 71.8c11.1 15.9 9.2 37.5-4.5 51.2l-48 48c-15.6 15.6-40.9 15.6-56.6 0s-15.6-40.9 0-56.6L252 419.4l-26-37.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "baby-carriage": { + "aliases": { + "names": [ + "carriage-baby" + ], + "unicodes": { + "secondary": [ + "10f77d" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buggy", + "carrier", + "infant", + "push", + "stroller", + "transportation", + "walk", + "wheels" + ] + }, + "unicode": "f77d", + "label": "Baby Carriage", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 192H.1C2.7 117.9 41.3 52.9 99 14.1c13.3-8.9 30.8-4.3 39.9 8.8L256 192zm128-32c0-35.3 28.7-64 64-64h32c17.7 0 32 14.3 32 32s-14.3 32-32 32l-32 0v64c0 25.2-5.8 50.2-17 73.5s-27.8 44.5-48.6 62.3s-45.5 32-72.7 41.6S253.4 416 224 416s-58.5-5-85.7-14.6s-51.9-23.8-72.7-41.6s-37.3-39-48.6-62.3S0 249.2 0 224l224 0 160 0V160zM80 416a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm240 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "backward": { + "aliases": { + "unicodes": { + "composite": [ + "23ea" + ], + "secondary": [ + "10f04a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "double", + "fast reverse button", + "previous", + "rewind" + ] + }, + "unicode": "f04a", + "label": "Backward", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M459.5 440.6c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4L288 214.3V256v41.7L459.5 440.6zM256 352V256 128 96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4l-192 160C4.2 237.5 0 246.5 0 256s4.2 18.5 11.5 24.6l192 160c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "backward-fast": { + "aliases": { + "names": [ + "fast-backward" + ], + "unicodes": { + "composite": [ + "23ee" + ], + "secondary": [ + "10f049" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "beginning", + "first", + "last track button", + "previous", + "previous scene", + "previous track", + "rewind", + "start", + "triangle" + ] + }, + "unicode": "f049", + "label": "Backward Fast", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M493.6 445c-11.2 5.3-24.5 3.6-34.1-4.4L288 297.7V416c0 12.4-7.2 23.7-18.4 29s-24.5 3.6-34.1-4.4L64 297.7V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V96C0 78.3 14.3 64 32 64s32 14.3 32 32V214.3L235.5 71.4c9.5-7.9 22.8-9.7 34.1-4.4S288 83.6 288 96V214.3L459.5 71.4c9.5-7.9 22.8-9.7 34.1-4.4S512 83.6 512 96V416c0 12.4-7.2 23.7-18.4 29z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "backward-step": { + "aliases": { + "names": [ + "step-backward" + ], + "unicodes": { + "secondary": [ + "10f048" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beginning", + "first", + "previous", + "rewind", + "start" + ] + }, + "unicode": "f048", + "label": "Backward Step", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M267.5 440.6c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4l-192 160L64 241V96c0-17.7-14.3-32-32-32S0 78.3 0 96V416c0 17.7 14.3 32 32 32s32-14.3 32-32V271l11.5 9.6 192 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bacon": { + "aliases": { + "unicodes": { + "composite": [ + "1f953" + ], + "secondary": [ + "10f7e5" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bacon", + "blt", + "breakfast", + "food", + "ham", + "lard", + "meat", + "pancetta", + "pork", + "rasher" + ] + }, + "unicode": "f7e5", + "label": "Bacon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M439.2 1.2c11.2-3.2 23.2-.1 31.4 8.1L518 56.7l-26.5 7.9c-58 16.6-98.1 39.6-129.6 67.4c-31.2 27.5-53.2 59.1-75.1 90.9l-2.3 3.3C241.6 288.7 195 356.6 72.8 417.7L37.9 435.2 9.4 406.6c-7.3-7.3-10.6-17.6-9-27.8s8.1-18.9 17.3-23.5C136.1 296.2 180.9 231 223.3 169.3l2.3-3.4c21.8-31.8 44.9-64.9 77.7-93.9c33.4-29.5 75.8-53.6 135.9-70.8zM61.8 459l25.4-12.7c129.5-64.7 179.9-138.1 223.8-202l2.2-3.3c22.1-32.1 42.1-60.5 69.9-85.1c27.5-24.3 63.4-45.2 117.3-60.6l0 0 .2-.1 43.1-12.9 23 23c8 8 11.2 19.7 8.3 30.7s-11.3 19.6-22.2 22.7c-51.9 14.8-85.6 34.7-111.1 57.2c-26.1 23-45.1 49.9-67.3 82.1l-2.2 3.2C327.8 365.9 275.5 442 142.3 508.6c-12.3 6.2-27.2 3.7-36.9-6L61.8 459z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bacteria": { + "aliases": { + "unicodes": { + "secondary": [ + "10e059" + ] + } + }, + "changes": [ + "5.13.0", + "5.13.1", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antibiotic", + "antibody", + "covid-19", + "health", + "organism", + "sick" + ] + }, + "unicode": "e059", + "label": "Bacteria", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M304.9 .7c-9.6-2.7-19.5 2.8-22.3 12.4l-3.1 11c-7.4-.3-14.9 .4-22.4 2.1c-9 2.1-17.8 4.4-26.2 7l-4.4-10.3c-3.9-9.1-14.5-13.4-23.6-9.5s-13.4 14.5-9.5 23.6l3.6 8.5c-16.5 7.1-31.5 15.1-45.2 23.9L147 62c-5.5-8.3-16.7-10.5-25-5s-10.5 16.7-5 25l5.8 8.7c-13.5 11.2-25.3 23.1-35.5 35.3l-10.1-8.1c-7.8-6.2-19.1-5-25.3 2.8s-5 19.1 2.8 25.3L66 155c-1.6 2.4-3.1 4.8-4.5 7.3c-7.1 11.8-12.8 23.2-17.4 34l-7.4-3c-9.2-3.7-19.7 .8-23.4 10s.8 19.7 10 23.4l8.7 3.5c-.2 .8-.4 1.6-.7 2.3c-2.6 9.4-4.2 17.4-5.3 23.5c-.5 3.1-.9 5.7-1.2 7.7c-.1 1-.2 2-.3 2.7l-.1 1.1 0 .5 0 .2 0 .1c0 0 0 .1 29.4 2.8l0 0-29.4-2.7c-.3 3.8-.4 7.5-.3 11.2l-11 3.1C3.5 285.4-2 295.4 .7 304.9s12.7 15.1 22.3 12.4l10.3-2.9c8 15.5 20.7 28.3 36.4 36.4L66.7 361c-2.7 9.6 2.8 19.5 12.4 22.3s19.5-2.8 22.3-12.4l3.1-11c17.8 .8 34.7-4.1 48.8-13.2l8 8c7 7 18.4 7 25.5 0s7-18.4 0-25.5l-8-8c6.8-10.6 11.3-22.9 12.7-36.2l.1-.6c.2-1.3 .7-3.8 1.7-7.4l.2-.6 9.4 4c9.1 3.9 19.7-.3 23.6-9.5s-.3-19.7-9.5-23.6l-8.5-3.6c7.5-11.1 18.7-23.7 36.5-34.5l1.6 5.6c2.7 9.6 12.7 15.1 22.3 12.4s15.1-12.7 12.4-22.3l-3-10.6c5.2-1.7 10.7-3.2 16.6-4.6c9.7-2.2 18.5-6 26.4-11.1l8 8c7 7 18.4 7 25.5 0s7-18.4 0-25.5l-8-8c9.1-14.3 14-31.2 13.2-48.8l11-3.1c9.6-2.7 15.1-12.7 12.4-22.3S370.6 64 361 66.7l-10.3 2.9c-8.1-15.9-21-28.5-36.4-36.4l2.9-10.3c2.7-9.6-2.8-19.5-12.4-22.3zM106.2 275.8l-37.1-3.4 0 0 37.1 3.4zM128 192a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm64-48a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM322.7 489c-2.7 9.6 2.8 19.5 12.4 22.3s19.5-2.8 22.2-12.4l3.1-11c7.4 .3 14.9-.4 22.4-2.1c9-2.1 17.8-4.4 26.2-7l4.4 10.3c3.9 9.1 14.5 13.4 23.6 9.5s13.4-14.5 9.5-23.6l-3.6-8.5c16.5-7.1 31.5-15.1 45.2-23.9L493 450c5.5 8.3 16.7 10.5 25 5s10.5-16.7 5-25l-5.8-8.7c13.5-11.2 25.3-23.1 35.5-35.3l10.1 8.1c7.8 6.2 19.1 5 25.3-2.8s5-19.1-2.8-25.3L574 357c1.6-2.4 3.1-4.8 4.5-7.3c7.1-11.8 12.8-23.2 17.4-34l7.4 3c9.2 3.7 19.7-.8 23.4-10s-.8-19.7-10-23.4l-8.7-3.5c.2-.8 .4-1.6 .7-2.3c2.6-9.4 4.2-17.4 5.3-23.5c.5-3.1 .9-5.7 1.2-7.7c.1-1 .2-2 .3-2.7l.1-1.1 0-.5 0-.2 0-.1c0 0 0-.1-29.4-2.8l0 0 29.4 2.7c.3-3.8 .4-7.5 .3-11.2l11-3.1c9.6-2.7 15.1-12.7 12.4-22.3s-12.7-15.1-22.3-12.4l-10.3 2.9c-8-15.5-20.7-28.3-36.4-36.4l2.9-10.3c2.7-9.6-2.8-19.5-12.4-22.3s-19.5 2.8-22.2 12.4l-3.1 11c-17.8-.8-34.7 4.1-48.8 13.2l-8-8c-7-7-18.4-7-25.5 0s-7 18.4 0 25.5l8 8c-6.8 10.6-11.3 22.9-12.7 36.2l-.1 .6c-.2 1.3-.7 3.8-1.7 7.4l-.2 .6-9.4-4c-9.1-3.9-19.7 .3-23.6 9.5s.3 19.7 9.5 23.6l8.5 3.6c-7.5 11.1-18.7 23.7-36.5 34.5l-1.6-5.6c-2.7-9.6-12.7-15.1-22.3-12.4s-15.1 12.7-12.4 22.3l3 10.6c-5.2 1.7-10.7 3.2-16.6 4.6c-9.7 2.2-18.5 6-26.4 11.1l-8-8c-7-7-18.4-7-25.5 0s-7 18.4 0 25.5l8 8c-9.1 14.2-14 31.2-13.2 48.8l-11 3.1c-9.6 2.7-15.1 12.7-12.4 22.2s12.7 15.1 22.3 12.4l10.3-2.9c8.1 15.9 21 28.5 36.4 36.4l-3 10.3zM570.9 239.5l0 0-37.1-3.4 37.1 3.4zM448 384a32 32 0 1 1 -64 0 32 32 0 1 1 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bacterium": { + "aliases": { + "unicodes": { + "secondary": [ + "10e05a" + ] + } + }, + "changes": [ + "5.13.0", + "5.13.1", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antibiotic", + "antibody", + "covid-19", + "health", + "organism", + "sick" + ] + }, + "unicode": "e05a", + "label": "Bacterium", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M423.1 30.6c3.6-12.7-3.7-26-16.5-29.7s-26 3.7-29.7 16.5l-4.2 14.7c-9.8-.4-19.9 .5-29.9 2.8c-12.1 2.8-23.7 5.9-34.9 9.4l-5.9-13.7c-5.2-12.2-19.3-17.8-31.5-12.6s-17.8 19.3-12.6 31.5l4.9 11.3c-22 9.4-42 20.1-60.2 31.8L196 82.7c-7.4-11-22.3-14-33.3-6.7s-14 22.3-6.7 33.3l7.8 11.6c-18 15-33.7 30.8-47.3 47.1L103 157.3c-10.4-8.3-25.5-6.6-33.7 3.7s-6.6 25.5 3.7 33.7l15 12c-2.1 3.2-4.1 6.5-6 9.7c-9.4 15.7-17 31-23.2 45.3l-9.9-3.9c-12.3-4.9-26.3 1.1-31.2 13.4s1.1 26.3 13.4 31.2l11.6 4.6c-.3 1.1-.6 2.1-.9 3.1c-3.5 12.5-5.7 23.2-7.1 31.3c-.7 4.1-1.2 7.5-1.6 10.3c-.2 1.4-.3 2.6-.4 3.6l-.1 1.4-.1 .6 0 .3 0 .1c0 0 0 .1 39.2 3.7l0 0-39.2-3.6c-.5 5-.6 10-.4 14.9l-14.7 4.2C4.7 380.6-2.7 393.8 .9 406.6s16.9 20.1 29.7 16.5l13.8-3.9c10.6 20.7 27.6 37.8 48.5 48.5l-3.9 13.7c-3.6 12.7 3.7 26 16.5 29.7s26-3.7 29.7-16.5l4.2-14.7c23.8 1 46.3-5.5 65.1-17.6L215 473c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-10.6-10.6c9.1-14.1 15.1-30.5 17-48.3l.1-.8c.3-1.7 1-5.1 2.3-9.8l.2-.8 12.6 5.4c12.2 5.2 26.3-.4 31.5-12.6s-.4-26.3-12.6-31.5l-11.3-4.8c9.9-14.9 24.9-31.6 48.6-46l2.1 7.5c3.6 12.7 16.9 20.1 29.7 16.5s20.1-16.9 16.5-29.7L371 259.2c6.9-2.2 14.3-4.3 22.2-6.1c12.9-3 24.7-8 35.2-14.8L439 249c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-10.6-10.6c12.2-19 18.6-41.6 17.6-65.1l14.7-4.2c12.7-3.6 20.1-16.9 16.5-29.7s-16.9-20.1-29.7-16.5l-13.7 3.9c-10.8-21.2-28-38-48.5-48.5l3.9-13.8zM92.1 363.3l0 0L144 368l-51.9-4.7zM112 320a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM240 184a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bag-shopping": { + "aliases": { + "names": [ + "shopping-bag" + ], + "unicodes": { + "secondary": [ + "10f290" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "checkout", + "grocery", + "payment", + "purchase" + ] + }, + "unicode": "f290", + "label": "Bag Shopping", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 112c0-35.3 28.7-64 64-64s64 28.7 64 64v48H160V112zm-48 48H48c-26.5 0-48 21.5-48 48V416c0 53 43 96 96 96H352c53 0 96-43 96-96V208c0-26.5-21.5-48-48-48H336V112C336 50.1 285.9 0 224 0S112 50.1 112 112v48zm24 48a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm152 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bahai": { + "aliases": { + "names": [ + "haykal" + ], + "unicodes": { + "secondary": [ + "10f666" + ] + } + }, + "changes": [ + "5.3.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bahai", + "bahá'í", + "star" + ] + }, + "unicode": "f666", + "label": "Bahai", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M245.2 0c13.6 0 25.6 9.2 29.1 22.4l22.5 84.4 71.5-50.2c11.2-7.8 26.2-7.2 36.7 1.6s13.7 23.5 7.9 35.8l-37 79.1 87 7.5c13.6 1.2 24.7 11.3 27.1 24.8s-4.6 26.8-17 32.5l-79.2 36.8 61.8 61.7c9.7 9.6 11.6 24.6 4.8 36.4s-20.7 17.6-33.9 14L342.1 364l7.7 87c1.2 13.6-6.9 26.3-19.7 31s-27.2 .1-35-11.1l-50-71.6-50 71.6c-7.8 11.2-22.2 15.7-35 11.1s-20.9-17.4-19.7-31l7.7-87L63.9 386.7c-13.2 3.5-27.1-2.2-33.9-14s-4.8-26.7 4.8-36.4l61.8-61.7L17.4 237.9c-12.4-5.8-19.3-19.1-17-32.5s13.5-23.6 27.1-24.8l87-7.5L77.5 94C71.8 81.6 75 66.9 85.5 58.1s25.5-9.4 36.7-1.6l71.5 50.2 22.5-84.4C219.6 9.2 231.5 0 245.2 0zm0 147l-4.5 16.9c-2.5 9.5-9.6 17.2-18.8 20.5s-19.6 2-27.6-3.7l-14.3-10 7.4 15.8c4.2 8.9 3.7 19.3-1.2 27.8s-13.7 14.1-23.5 14.9l-17.4 1.5 15.9 7.4c8.9 4.1 15.3 12.4 17 22.1s-1.4 19.6-8.4 26.6l-12.4 12.4 16.9-4.5c9.5-2.6 19.7-.3 27.2 6s11.5 15.9 10.6 25.7l-1.5 17.4 10-14.3c5.6-8.1 14.9-12.9 24.7-12.9s19.1 4.8 24.7 12.9l10 14.3-1.5-17.4c-.9-9.8 3.1-19.4 10.6-25.7s17.7-8.6 27.2-6l16.9 4.5-12.4-12.4c-7-6.9-10.1-16.9-8.4-26.6s8-17.9 17-22.1l15.9-7.4-17.4-1.5c-9.8-.8-18.6-6.4-23.5-14.9s-5.4-18.9-1.2-27.8l7.4-15.8-14.3 10c-8.1 5.7-18.4 7-27.6 3.7s-16.3-11-18.8-20.5L245.2 147z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "baht-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency" + ] + }, + "unicode": "e0ac", + "label": "Baht Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M144 0c-17.7 0-32 14.3-32 32V64H37.6C16.8 64 0 80.8 0 101.6V224v41.7V288 406.3c0 23 18.7 41.7 41.7 41.7H112v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c61.9 0 112-50.1 112-112c0-40.1-21.1-75.3-52.7-95.1C280.3 222.6 288 200.2 288 176c0-61.9-50.1-112-112-112V32c0-17.7-14.3-32-32-32zM112 128v96H64V128h48zm64 96V128c26.5 0 48 21.5 48 48s-21.5 48-48 48zm-64 64v96H64V288h48zm64 96V288h32c26.5 0 48 21.5 48 48s-21.5 48-48 48H176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ban": { + "aliases": { + "names": [ + "cancel" + ], + "unicodes": { + "composite": [ + "1f6ab" + ], + "secondary": [ + "10f05e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abort", + "ban", + "block", + "cancel", + "delete", + "entry", + "forbidden", + "hide", + "no", + "not", + "prohibit", + "prohibited", + "remove", + "stop", + "trash" + ] + }, + "unicode": "f05e", + "label": "Ban", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M367.2 412.5L99.5 144.8C77.1 176.1 64 214.5 64 256c0 106 86 192 192 192c41.5 0 79.9-13.1 111.2-35.5zm45.3-45.3C434.9 335.9 448 297.5 448 256c0-106-86-192-192-192c-41.5 0-79.9 13.1-111.2 35.5L412.5 367.2zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ban-smoking": { + "aliases": { + "names": [ + "smoking-ban" + ], + "unicodes": { + "composite": [ + "1f6ad" + ], + "secondary": [ + "10f54d" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ban", + "cancel", + "forbidden", + "no", + "no smoking", + "non-smoking", + "not", + "prohibited", + "smoking" + ] + }, + "unicode": "f54d", + "label": "Ban Smoking", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M99.5 144.8L178.7 224l96 96 92.5 92.5C335.9 434.9 297.5 448 256 448C150 448 64 362 64 256c0-41.5 13.1-79.9 35.5-111.2zM333.3 288l-32-32H384v32H333.3zm32 32H400c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H269.3L144.8 99.5C176.1 77.1 214.5 64 256 64c106 0 192 86 192 192c0 41.5-13.1 79.9-35.5 111.2L365.3 320zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM272 96c-8.8 0-16 7.2-16 16c0 26.5 21.5 48 48 48h32c8.8 0 16 7.2 16 16s7.2 16 16 16s16-7.2 16-16c0-26.5-21.5-48-48-48H304c-8.8 0-16-7.2-16-16s-7.2-16-16-16zM229.5 320l-96-96H112c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16H229.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bandage": { + "aliases": { + "names": [ + "band-aid" + ], + "unicodes": { + "composite": [ + "1fa79" + ], + "secondary": [ + "10f462" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "adhesive bandage", + "bandage", + "boo boo", + "first aid", + "ouch" + ] + }, + "unicode": "f462", + "label": "Bandage", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 416h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H480V416zM448 96H192V416H448V96zM64 96C28.7 96 0 124.7 0 160V352c0 35.3 28.7 64 64 64h96V96H64zM248 208a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm120-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM248 304a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm120-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bandcamp": { + "changes": [ + "4.7.0", + "5.0.0", + "5.13.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2d5", + "label": "Bandcamp", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8Zm48.2,326.1h-181L207.9,178h181Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bangladeshi-taka-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bdt", + "currency", + "tk" + ] + }, + "unicode": "e2e6", + "label": "Bangladeshi Taka Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M36 32.2C18.4 30.1 2.4 42.5 .2 60S10.5 93.6 28 95.8l7.9 1c16 2 28 15.6 28 31.8V160H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64V384c0 53 43 96 96 96h32c106 0 192-86 192-192V256c0-53-43-96-96-96H272c-17.7 0-32 14.3-32 32s14.3 32 32 32h16c17.7 0 32 14.3 32 32v32c0 70.7-57.3 128-128 128H160c-17.7 0-32-14.3-32-32V224h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V128.5c0-48.4-36.1-89.3-84.1-95.3l-7.9-1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "barcode": { + "aliases": { + "unicodes": { + "secondary": [ + "10f02a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "info", + "laser", + "price", + "scan", + "upc" + ] + }, + "unicode": "f02a", + "label": "Barcode", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M24 32C10.7 32 0 42.7 0 56V456c0 13.3 10.7 24 24 24H40c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H24zm88 0c-8.8 0-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V48c0-8.8-7.2-16-16-16zm72 0c-13.3 0-24 10.7-24 24V456c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H184zm96 0c-13.3 0-24 10.7-24 24V456c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H280zM448 56V456c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H472c-13.3 0-24 10.7-24 24zm-64-8V464c0 8.8 7.2 16 16 16s16-7.2 16-16V48c0-8.8-7.2-16-16-16s-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bars": { + "aliases": { + "names": [ + "navicon" + ], + "unicodes": { + "secondary": [ + "10f0c9" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "drag", + "hamburger", + "list", + "menu", + "nav", + "navigation", + "ol", + "reorder", + "settings", + "todo", + "ul" + ] + }, + "unicode": "f0c9", + "label": "Bars", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bars-progress": { + "aliases": { + "names": [ + "tasks-alt" + ], + "unicodes": { + "secondary": [ + "10f828" + ] + } + }, + "changes": [ + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "downloading", + "downloads", + "loading", + "poll", + "progress", + "project management", + "settings", + "to do" + ] + }, + "unicode": "f828", + "label": "Bars Progress", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 160H320V128H448v32zM48 64C21.5 64 0 85.5 0 112v64c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H48zM448 352v32H192V352H448zM48 288c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V336c0-26.5-21.5-48-48-48H48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bars-staggered": { + "aliases": { + "names": [ + "reorder", + "stream" + ], + "unicodes": { + "secondary": [ + "10f550" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flow", + "list", + "timeline" + ] + }, + "unicode": "f550", + "label": "Bars Staggered", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM64 256c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "baseball": { + "aliases": { + "names": [ + "baseball-ball" + ], + "unicodes": { + "composite": [ + "1f94e", + "26be" + ], + "secondary": [ + "10f433" + ] + } + }, + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "baseball", + "foul", + "glove", + "hardball", + "league", + "leather", + "mlb", + "softball", + "sport", + "underarm" + ] + }, + "unicode": "f433", + "label": "Baseball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321784, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M62.7 223.4c-4.8 .4-9.7 .6-14.7 .6c-15.6 0-30.8-2-45.2-5.9C19.2 107.1 107.1 19.2 218.1 2.8C222 17.2 224 32.4 224 48c0 4.9-.2 9.8-.6 14.7c-.7 8.8 5.8 16.5 14.6 17.3s16.5-5.8 17.3-14.6c.5-5.7 .7-11.5 .7-17.3c0-16.5-1.9-32.6-5.6-47.9c1.8 0 3.7-.1 5.6-.1C397.4 0 512 114.6 512 256c0 1.9 0 3.7-.1 5.6c-15.4-3.6-31.4-5.6-47.9-5.6c-5.8 0-11.6 .2-17.3 .7c-8.8 .7-15.4 8.5-14.6 17.3s8.5 15.4 17.3 14.6c4.8-.4 9.7-.6 14.7-.6c15.6 0 30.8 2 45.2 5.9C492.8 404.9 404.9 492.8 293.9 509.2C290 494.8 288 479.6 288 464c0-4.9 .2-9.8 .6-14.7c.7-8.8-5.8-16.5-14.6-17.3s-16.5 5.8-17.3 14.6c-.5 5.7-.7 11.5-.7 17.3c0 16.5 1.9 32.6 5.6 47.9c-1.8 0-3.7 .1-5.6 .1C114.6 512 0 397.4 0 256c0-1.9 0-3.7 .1-5.6C15.4 254.1 31.5 256 48 256c5.8 0 11.6-.2 17.3-.7c8.8-.7 15.4-8.5 14.6-17.3s-8.5-15.4-17.3-14.6zM121.3 208c-8 3.7-11.6 13.2-7.9 21.2s13.2 11.6 21.2 7.9c45.2-20.8 81.7-57.2 102.5-102.5c3.7-8 .2-17.5-7.9-21.2s-17.5-.2-21.2 7.9c-17.6 38.3-48.5 69.2-86.7 86.7zm277.2 74.7c-3.7-8-13.2-11.6-21.2-7.9c-45.2 20.8-81.7 57.2-102.5 102.5c-3.7 8-.2 17.5 7.9 21.2s17.5 .2 21.2-7.9c17.6-38.3 48.5-69.2 86.7-86.7c8-3.7 11.6-13.2 7.9-21.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "baseball-bat-ball": { + "aliases": { + "unicodes": { + "secondary": [ + "10f432" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bat", + "league", + "mlb", + "slugger", + "softball", + "sport" + ] + }, + "unicode": "f432", + "label": "Baseball Bat Ball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M424 0c-12.4 0-24.2 4.9-33 13.7L233.5 171.2c-10.5 10.5-19.8 22.1-27.7 34.6L132.7 321.6c-7.3 11.5-15.8 22.2-25.5 31.9L69.9 390.7l51.3 51.3 37.3-37.3c9.6-9.6 20.3-18.2 31.9-25.5l115.8-73.1c12.5-7.9 24.1-17.2 34.6-27.7L498.3 121c8.7-8.7 13.7-20.6 13.7-33s-4.9-24.2-13.7-33L457 13.7C448.2 4.9 436.4 0 424 0zm88 432a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM15 399c-9.4 9.4-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L49 399c-9.4-9.4-24.6-9.4-33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "basket-shopping": { + "aliases": { + "names": [ + "shopping-basket" + ], + "unicodes": { + "secondary": [ + "10f291" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "checkout", + "grocery", + "payment", + "purchase" + ] + }, + "unicode": "f291", + "label": "Basket Shopping", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M253.3 35.1c6.1-11.8 1.5-26.3-10.2-32.4s-26.3-1.5-32.4 10.2L117.6 192H32c-17.7 0-32 14.3-32 32s14.3 32 32 32L83.9 463.5C91 492 116.6 512 146 512H430c29.4 0 55-20 62.1-48.5L544 256c17.7 0 32-14.3 32-32s-14.3-32-32-32H458.4L365.3 12.9C359.2 1.2 344.7-3.4 332.9 2.7s-16.3 20.6-10.2 32.4L404.3 192H171.7L253.3 35.1zM192 304v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V304c0-8.8 7.2-16 16-16s16 7.2 16 16zm96-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V304c0-8.8 7.2-16 16-16zm128 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V304c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "basketball": { + "aliases": { + "names": [ + "basketball-ball" + ], + "unicodes": { + "composite": [ + "1f3c0" + ], + "secondary": [ + "10f434" + ] + } + }, + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "basketball", + "dribble", + "dunk", + "hoop", + "nba" + ] + }, + "unicode": "f434", + "label": "Basketball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321784, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M86.6 64C119 35.5 158.6 15 202.3 5.6C206 19.1 208 33.3 208 48c0 38.4-13.5 73.7-36.1 101.3L86.6 64zM64 86.6l85.2 85.2C121.7 194.5 86.4 208 48 208c-14.7 0-28.9-2-42.4-5.7C15 158.6 35.5 119 64 86.6zM256 0c64.9 0 124.2 24.2 169.4 64L256 233.4 194.6 172C222.9 138.5 240 95.3 240 48c0-16.2-2-32-5.8-47.1C241.4 .3 248.7 0 256 0zM48 240c47.3 0 90.5-17.1 124-45.4L233.4 256 64 425.4C24.2 380.2 0 320.9 0 256c0-7.3 .3-14.6 .9-21.8C16 238 31.8 240 48 240zm463.1 37.8C496 274 480.2 272 464 272c-47.3 0-90.5 17.1-124 45.4L278.6 256 448 86.6c39.8 45.1 64 104.4 64 169.4c0 7.3-.3 14.6-.9 21.8zm-4.7 31.9C497 353.4 476.5 393 448 425.4l-85.2-85.2C390.3 317.5 425.6 304 464 304c14.7 0 28.9 2 42.4 5.7zM340.1 362.7L425.4 448C393 476.5 353.4 497 309.7 506.4C306 492.9 304 478.7 304 464c0-38.4 13.5-73.7 36.1-101.3zM317.4 340C289.1 373.5 272 416.7 272 464c0 16.2 2 32 5.8 47.1c-7.2 .6-14.5 .9-21.8 .9c-64.9 0-124.2-24.2-169.4-64L256 278.6 317.4 340z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bath": { + "aliases": { + "names": [ + "bathtub" + ], + "unicodes": { + "composite": [ + "1f6c1" + ], + "secondary": [ + "10f2cd" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bath", + "bathtub", + "clean", + "shower", + "tub", + "wash" + ] + }, + "unicode": "f2cd", + "label": "Bath", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 77.3c0-7.3 5.9-13.3 13.3-13.3c3.5 0 6.9 1.4 9.4 3.9l14.9 14.9C130 91.8 128 101.7 128 112c0 19.9 7.2 38 19.2 52c-5.3 9.2-4 21.1 3.8 29c9.4 9.4 24.6 9.4 33.9 0L289 89c9.4-9.4 9.4-24.6 0-33.9c-7.8-7.9-19.8-9.1-29-3.8C246 39.2 227.9 32 208 32c-10.3 0-20.2 2-29.2 5.5L163.9 22.6C149.4 8.1 129.7 0 109.3 0C66.6 0 32 34.6 32 77.3V256c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H96V77.3zM32 352v16c0 28.4 12.4 54 32 71.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V464H384v16c0 17.7 14.3 32 32 32s32-14.3 32-32V439.6c19.6-17.6 32-43.1 32-71.6V352H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battery-empty": { + "aliases": { + "names": [ + "battery-0" + ], + "unicodes": { + "secondary": [ + "10f244" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "dead", + "power", + "status" + ] + }, + "unicode": "f244", + "label": "Battery Empty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M80 160c-8.8 0-16 7.2-16 16V336c0 8.8 7.2 16 16 16H464c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H80zM0 176c0-44.2 35.8-80 80-80H464c44.2 0 80 35.8 80 80v16c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32v16c0 44.2-35.8 80-80 80H80c-44.2 0-80-35.8-80-80V176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battery-full": { + "aliases": { + "names": [ + "battery", + "battery-5" + ], + "unicodes": { + "composite": [ + "1f50b" + ], + "secondary": [ + "10f240" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "batter", + "battery", + "charge", + "power", + "status" + ] + }, + "unicode": "f240", + "label": "Battery Full", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M464 160c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16H464zM80 96C35.8 96 0 131.8 0 176V336c0 44.2 35.8 80 80 80H464c44.2 0 80-35.8 80-80V320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32V176c0-44.2-35.8-80-80-80H80zm368 96H96V320H448V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battery-half": { + "aliases": { + "names": [ + "battery-3" + ], + "unicodes": { + "secondary": [ + "10f242" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "power", + "status" + ] + }, + "unicode": "f242", + "label": "Battery Half", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M464 160c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16H464zM80 96C35.8 96 0 131.8 0 176V336c0 44.2 35.8 80 80 80H464c44.2 0 80-35.8 80-80V320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32V176c0-44.2-35.8-80-80-80H80zm208 96H96V320H288V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battery-quarter": { + "aliases": { + "names": [ + "battery-2" + ], + "unicodes": { + "secondary": [ + "10f243" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "low", + "power", + "status" + ] + }, + "unicode": "f243", + "label": "Battery Quarter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M464 160c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16H464zM80 96C35.8 96 0 131.8 0 176V336c0 44.2 35.8 80 80 80H464c44.2 0 80-35.8 80-80V320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32V176c0-44.2-35.8-80-80-80H80zm112 96H96V320h96V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battery-three-quarters": { + "aliases": { + "names": [ + "battery-4" + ], + "unicodes": { + "secondary": [ + "10f241" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "power", + "status" + ] + }, + "unicode": "f241", + "label": "Battery Three Quarters", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M464 160c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16H464zM80 96C35.8 96 0 131.8 0 176V336c0 44.2 35.8 80 80 80H464c44.2 0 80-35.8 80-80V320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32V176c0-44.2-35.8-80-80-80H80zm272 96H96V320H352V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battle-net": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f835", + "label": "Battle.net", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448.61 225.62c26.87.18 35.57-7.43 38.92-12.37 12.47-16.32-7.06-47.6-52.85-71.33 17.76-33.58 30.11-63.68 36.34-85.3 3.38-11.83 1.09-19 .45-20.25-1.72 10.52-15.85 48.46-48.2 100.05-25-11.22-56.52-20.1-93.77-23.8-8.94-16.94-34.88-63.86-60.48-88.93C252.18 7.14 238.7 1.07 228.18.22h-.05c-13.83-1.55-22.67 5.85-27.4 11-17.2 18.53-24.33 48.87-25 84.07-7.24-12.35-17.17-24.63-28.5-25.93h-.18c-20.66-3.48-38.39 29.22-36 81.29-38.36 1.38-71 5.75-93 11.23-9.9 2.45-16.22 7.27-17.76 9.72 1-.38 22.4-9.22 111.56-9.22 5.22 53 29.75 101.82 26 93.19-9.73 15.4-38.24 62.36-47.31 97.7-5.87 22.88-4.37 37.61.15 47.14 5.57 12.75 16.41 16.72 23.2 18.26 25 5.71 55.38-3.63 86.7-21.14-7.53 12.84-13.9 28.51-9.06 39.34 7.31 19.65 44.49 18.66 88.44-9.45 20.18 32.18 40.07 57.94 55.7 74.12a39.79 39.79 0 0 0 8.75 7.09c5.14 3.21 8.58 3.37 8.58 3.37-8.24-6.75-34-38-62.54-91.78 22.22-16 45.65-38.87 67.47-69.27 122.82 4.6 143.29-24.76 148-31.64 14.67-19.88 3.43-57.44-57.32-93.69zm-77.85 106.22c23.81-37.71 30.34-67.77 29.45-92.33 27.86 17.57 47.18 37.58 49.06 58.83 1.14 12.93-8.1 29.12-78.51 33.5zM216.9 387.69c9.76-6.23 19.53-13.12 29.2-20.49 6.68 13.33 13.6 26.1 20.6 38.19-40.6 21.86-68.84 12.76-49.8-17.7zm215-171.35c-10.29-5.34-21.16-10.34-32.38-15.05a722.459 722.459 0 0 0 22.74-36.9c39.06 24.1 45.9 53.18 9.64 51.95zM279.18 398c-5.51-11.35-11-23.5-16.5-36.44 43.25 1.27 62.42-18.73 63.28-20.41 0 .07-25 15.64-62.53 12.25a718.78 718.78 0 0 0 85.06-84q13.06-15.31 24.93-31.11c-.36-.29-1.54-3-16.51-12-51.7 60.27-102.34 98-132.75 115.92-20.59-11.18-40.84-31.78-55.71-61.49-20-39.92-30-82.39-31.57-116.07 12.3.91 25.27 2.17 38.85 3.88-22.29 36.8-14.39 63-13.47 64.23 0-.07-.95-29.17 20.14-59.57a695.23 695.23 0 0 0 44.67 152.84c.93-.38 1.84.88 18.67-8.25-26.33-74.47-33.76-138.17-34-173.43 20-12.42 48.18-19.8 81.63-17.81 44.57 2.67 86.36 15.25 116.32 30.71q-10.69 15.66-23.33 32.47C365.63 152 339.1 145.84 337.5 146c.11 0 25.9 14.07 41.52 47.22a717.63 717.63 0 0 0-115.34-31.71 646.608 646.608 0 0 0-39.39-6.05c-.07.45-1.81 1.85-2.16 20.33C300 190.28 358.78 215.68 389.36 233c.74 23.55-6.95 51.61-25.41 79.57-24.6 37.31-56.39 67.23-84.77 85.43zm27.4-287c-44.56-1.66-73.58 7.43-94.69 20.67 2-52.3 21.31-76.38 38.21-75.28C267 52.15 305 108.55 306.58 111zm-130.65 3.1c.48 12.11 1.59 24.62 3.21 37.28-14.55-.85-28.74-1.25-42.4-1.26-.08 3.24-.12-51 24.67-49.59h.09c5.76 1.09 10.63 6.88 14.43 13.57zm-28.06 162c20.76 39.7 43.3 60.57 65.25 72.31-46.79 24.76-77.53 20-84.92 4.51-.2-.21-11.13-15.3 19.67-76.81zm210.06 74.8" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bed": { + "aliases": { + "unicodes": { + "composite": [ + "1f6cc" + ], + "secondary": [ + "10f236" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hospital", + "hotel", + "lodging", + "mattress", + "patient", + "person in bed", + "rest", + "sleep", + "travel" + ] + }, + "unicode": "f236", + "label": "Bed", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V320H288V160c0-17.7 14.3-32 32-32H544c53 0 96 43 96 96V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V416H352 320 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 46.3 14.3 32 32 32zm144 96a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bed-pulse": { + "aliases": { + "names": [ + "procedures" + ], + "unicodes": { + "secondary": [ + "10f487" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "EKG", + "bed", + "electrocardiogram", + "health", + "hospital", + "life", + "patient", + "vital" + ] + }, + "unicode": "f487", + "label": "Bed Pulse", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M483.2 9.6L524 64h92c13.3 0 24 10.7 24 24s-10.7 24-24 24H512c-7.6 0-14.7-3.6-19.2-9.6L468.7 70.3l-47 99.9c-3.7 7.8-11.3 13.1-19.9 13.7s-16.9-3.4-21.7-10.6L339.2 112H216c-13.3 0-24-10.7-24-24s10.7-24 24-24H352c8 0 15.5 4 20 10.7l24.4 36.6 45.9-97.5C445.9 6.2 453.2 1 461.6 .1s16.6 2.7 21.6 9.5zM320 160h12.7l20.7 31.1c11.2 16.8 30.6 26.3 50.7 24.8s37.9-13.7 46.5-32L461.9 160H544c53 0 96 43 96 96V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H352 320 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V96C0 78.3 14.3 64 32 64s32 14.3 32 32V352H288V192c0-17.7 14.3-32 32-32zm-144 0a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "beer-mug-empty": { + "aliases": { + "names": [ + "beer" + ], + "unicodes": { + "secondary": [ + "10f0fc" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "ale", + "bar", + "beverage", + "brew", + "brewery", + "drink", + "foam", + "lager", + "liquor", + "mug", + "stein" + ] + }, + "unicode": "f0fc", + "label": "Beer Mug Empty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 64c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32V96h51.2c42.4 0 76.8 34.4 76.8 76.8V274.9c0 30.4-17.9 57.9-45.6 70.2L384 381.7V416c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V64zM384 311.6l56.4-25.1c4.6-2.1 7.6-6.6 7.6-11.7V172.8c0-7.1-5.7-12.8-12.8-12.8H384V311.6zM160 144c0-8.8-7.2-16-16-16s-16 7.2-16 16V368c0 8.8 7.2 16 16 16s16-7.2 16-16V144zm64 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V368c0 8.8 7.2 16 16 16s16-7.2 16-16V144zm64 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V368c0 8.8 7.2 16 16 16s16-7.2 16-16V144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "behance": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1b4", + "label": "Behance", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bell": { + "aliases": { + "unicodes": { + "composite": [ + "1f514", + "f0a2" + ], + "secondary": [ + "10f0f3" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.2.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alarm", + "alert", + "bel", + "bell", + "chime", + "notification", + "reminder" + ] + }, + "unicode": "f0f3", + "label": "Bell", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0c-17.7 0-32 14.3-32 32V51.2C119 66 64 130.6 64 208v18.8c0 47-17.3 92.4-48.5 127.6l-7.4 8.3c-8.4 9.4-10.4 22.9-5.3 34.4S19.4 416 32 416H416c12.6 0 24-7.4 29.2-18.9s3.1-25-5.3-34.4l-7.4-8.3C401.3 319.2 384 273.9 384 226.8V208c0-77.4-55-142-128-156.8V32c0-17.7-14.3-32-32-32zm45.3 493.3c12-12 18.7-28.3 18.7-45.3H224 160c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0c-17.7 0-32 14.3-32 32V49.9C119.5 61.4 64 124.2 64 200v33.4c0 45.4-15.5 89.5-43.8 124.9L5.3 377c-5.8 7.2-6.9 17.1-2.9 25.4S14.8 416 24 416H424c9.2 0 17.6-5.3 21.6-13.6s2.9-18.2-2.9-25.4l-14.9-18.6C399.5 322.9 384 278.8 384 233.4V200c0-75.8-55.5-138.6-128-150.1V32c0-17.7-14.3-32-32-32zm0 96h8c57.4 0 104 46.6 104 104v33.4c0 47.9 13.9 94.6 39.7 134.6H72.3C98.1 328 112 281.3 112 233.4V200c0-57.4 46.6-104 104-104h8zm64 352H224 160c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "bell-concierge": { + "aliases": { + "names": [ + "concierge-bell" + ], + "unicodes": { + "composite": [ + "1f6ce" + ], + "secondary": [ + "10f562" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attention", + "bell", + "bellhop", + "bellhop bell", + "hotel", + "receptionist", + "service", + "support" + ] + }, + "unicode": "f562", + "label": "Bell Concierge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M216 64c-13.3 0-24 10.7-24 24s10.7 24 24 24h16v33.3C119.6 157.2 32 252.4 32 368H480c0-115.6-87.6-210.8-200-222.7V112h16c13.3 0 24-10.7 24-24s-10.7-24-24-24H256 216zM24 400c-13.3 0-24 10.7-24 24s10.7 24 24 24H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bell-slash": { + "aliases": { + "unicodes": { + "composite": [ + "1f515", + "f1f7" + ], + "secondary": [ + "10f1f6" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alert", + "bell", + "bell with slash", + "cancel", + "disabled", + "forbidden", + "mute", + "notification", + "off", + "quiet", + "reminder", + "silent" + ] + }, + "unicode": "f1f6", + "label": "Bell Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-87.5-68.6c.5-1.7 .7-3.5 .7-5.4c0-27.6-11-54.1-30.5-73.7L512 320c-20.5-20.5-32-48.3-32-77.3V208c0-77.4-55-142-128-156.8V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V51.2c-42.6 8.6-79 34.2-102 69.3L38.8 5.1zM160 242.7c0 29-11.5 56.8-32 77.3l-1.5 1.5C107 341 96 367.5 96 395.2c0 11.5 9.3 20.8 20.8 20.8H406.2L160 222.1v20.7zM384 448H320 256c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L542.6 400c2.7-7.8 1.3-16.5-3.9-23l-14.9-18.6C495.5 322.9 480 278.8 480 233.4V200c0-75.8-55.5-138.6-128-150.1V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V49.9c-43.9 7-81.5 32.7-104.4 68.7L38.8 5.1zM221.7 148.4C239.6 117.1 273.3 96 312 96h8 8c57.4 0 104 46.6 104 104v33.4c0 32.7 6.4 64.8 18.7 94.5L221.7 148.4zm-61.7 85c0 45.4-15.5 89.5-43.8 124.9L101.3 377c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6H406.2l-60.9-48H168.3c21.2-32.8 34.4-70.3 38.4-109.1L160 222.1v11.4zM384 448H320 256c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "bezier-curve": { + "aliases": { + "unicodes": { + "secondary": [ + "10f55b" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "curves", + "illustrator", + "lines", + "path", + "vector" + ] + }, + "unicode": "f55b", + "label": "Bezier Curve", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M296 136V88h48v48H296zM288 32c-26.5 0-48 21.5-48 48v4H121.6C111.2 62.7 89.3 48 64 48C28.7 48 0 76.7 0 112s28.7 64 64 64c25.3 0 47.2-14.7 57.6-36h66.9c-58.9 39.6-98.9 105-104 180H80c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48h-3.3c5.9-67 48.5-123.4 107.5-149.1c8.6 12.7 23.2 21.1 39.8 21.1h64c16.6 0 31.1-8.4 39.8-21.1c59 25.7 101.6 82.1 107.5 149.1H496c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48h-4.5c-5-75-45.1-140.4-104-180h66.9c10.4 21.3 32.3 36 57.6 36c35.3 0 64-28.7 64-64s-28.7-64-64-64c-25.3 0-47.2 14.7-57.6 36H400V80c0-26.5-21.5-48-48-48H288zM88 376h48v48H88V376zm416 48V376h48v48H504z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bicycle": { + "aliases": { + "unicodes": { + "composite": [ + "1f6b2" + ], + "secondary": [ + "10f206" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bicycle", + "bike", + "gears", + "pedal", + "transportation", + "vehicle" + ] + }, + "unicode": "f206", + "label": "Bicycle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M312 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h25.7l34.6 64H222.9l-27.4-38C191 99.7 183.7 96 176 96H120c-13.3 0-24 10.7-24 24s10.7 24 24 24h43.7l22.1 30.7-26.6 53.1c-10-2.5-20.5-3.8-31.2-3.8C57.3 224 0 281.3 0 352s57.3 128 128 128c65.3 0 119.1-48.9 127-112h49c8.5 0 16.3-4.5 20.7-11.8l84.8-143.5 21.7 40.1C402.4 276.3 384 312 384 352c0 70.7 57.3 128 128 128s128-57.3 128-128s-57.3-128-128-128c-13.5 0-26.5 2.1-38.7 6L375.4 48.8C369.8 38.4 359 32 347.2 32H312zM458.6 303.7l32.3 59.7c6.3 11.7 20.9 16 32.5 9.7s16-20.9 9.7-32.5l-32.3-59.7c3.6-.6 7.4-.9 11.2-.9c39.8 0 72 32.2 72 72s-32.2 72-72 72s-72-32.2-72-72c0-18.6 7-35.5 18.6-48.3zM133.2 368h65c-7.3 32.1-36 56-70.2 56c-39.8 0-72-32.2-72-72s32.2-72 72-72c1.7 0 3.4 .1 5.1 .2l-24.2 48.5c-9 18.1 4.1 39.4 24.3 39.4zm33.7-48l50.7-101.3 72.9 101.2-.1 .1H166.8zm90.6-128H365.9L317 274.8 257.4 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bilibili": { + "changes": [ + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e3d9", + "label": "Bilibili", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M488.6 104.1C505.3 122.2 513 143.8 511.9 169.8V372.2C511.5 398.6 502.7 420.3 485.4 437.3C468.2 454.3 446.3 463.2 419.9 464H92.02C65.57 463.2 43.81 454.2 26.74 436.8C9.682 419.4 .7667 396.5 0 368.2V169.8C.7667 143.8 9.682 122.2 26.74 104.1C43.81 87.75 65.57 78.77 92.02 78H121.4L96.05 52.19C90.3 46.46 87.42 39.19 87.42 30.4C87.42 21.6 90.3 14.34 96.05 8.603C101.8 2.868 109.1 0 117.9 0C126.7 0 134 2.868 139.8 8.603L213.1 78H301.1L375.6 8.603C381.7 2.868 389.2 0 398 0C406.8 0 414.1 2.868 419.9 8.603C425.6 14.34 428.5 21.6 428.5 30.4C428.5 39.19 425.6 46.46 419.9 52.19L394.6 78L423.9 78C450.3 78.77 471.9 87.75 488.6 104.1H488.6zM449.8 173.8C449.4 164.2 446.1 156.4 439.1 150.3C433.9 144.2 425.1 140.9 416.4 140.5H96.05C86.46 140.9 78.6 144.2 72.47 150.3C66.33 156.4 63.07 164.2 62.69 173.8V368.2C62.69 377.4 65.95 385.2 72.47 391.7C78.99 398.2 86.85 401.5 96.05 401.5H416.4C425.6 401.5 433.4 398.2 439.7 391.7C446 385.2 449.4 377.4 449.8 368.2L449.8 173.8zM185.5 216.5C191.8 222.8 195.2 230.6 195.6 239.7V273C195.2 282.2 191.9 289.9 185.8 296.2C179.6 302.5 171.8 305.7 162.2 305.7C152.6 305.7 144.7 302.5 138.6 296.2C132.5 289.9 129.2 282.2 128.8 273V239.7C129.2 230.6 132.6 222.8 138.9 216.5C145.2 210.2 152.1 206.9 162.2 206.5C171.4 206.9 179.2 210.2 185.5 216.5H185.5zM377 216.5C383.3 222.8 386.7 230.6 387.1 239.7V273C386.7 282.2 383.4 289.9 377.3 296.2C371.2 302.5 363.3 305.7 353.7 305.7C344.1 305.7 336.3 302.5 330.1 296.2C323.1 289.9 320.7 282.2 320.4 273V239.7C320.7 230.6 324.1 222.8 330.4 216.5C336.7 210.2 344.5 206.9 353.7 206.5C362.9 206.9 370.7 210.2 377 216.5H377z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bimobject": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f378", + "label": "BIMobject", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "binoculars": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1e5" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "glasses", + "magnify", + "scenic", + "spyglass", + "view" + ] + }, + "unicode": "f1e5", + "label": "Binoculars", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 32h32c17.7 0 32 14.3 32 32V96H96V64c0-17.7 14.3-32 32-32zm64 96V448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V388.9c0-34.6 9.4-68.6 27.2-98.3C40.9 267.8 49.7 242.4 53 216L60.5 156c2-16 15.6-28 31.8-28H192zm227.8 0c16.1 0 29.8 12 31.8 28L459 216c3.3 26.4 12.1 51.8 25.8 74.6c17.8 29.7 27.2 63.7 27.2 98.3V448c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V128h99.8zM320 64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V96H320V64zm-32 64V288H224V128h64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "biohazard": { + "aliases": { + "unicodes": { + "composite": [ + "2623" + ], + "secondary": [ + "10f780" + ] + } + }, + "changes": [ + "5.6.0", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "biohazard", + "covid-19", + "danger", + "dangerous", + "epidemic", + "hazmat", + "medical", + "pandemic", + "radioactive", + "sign", + "toxic", + "waste", + "zombie" + ] + }, + "unicode": "f780", + "label": "Biohazard", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M163.2 0c-1.7 0-3.3 .7-4.5 1.9c-28.2 28.6-45.6 67.8-45.6 111.1c0 24.6 5.6 47.9 15.7 68.7c-20.7 2.2-41.2 8.5-60.4 19.3C35.8 219.1 12.7 247 .5 278.6c-.6 1.6-.4 3.4 .4 4.9c2.1 3.5 7 4 10 1.3C60.6 239.3 148.8 230.6 193 305s-7.6 144.1-73 163c-4 1.1-5.9 5.6-3.9 9c.9 1.5 2.4 2.6 4.2 2.8c34.3 5.6 70.8 .1 103.3-18.1c19.2-10.8 35.2-24.9 47.6-41.3c12.4 16.3 28.3 30.5 47.6 41.3c32.5 18.2 69 23.7 103.3 18.1c1.8-.3 3.3-1.3 4.2-2.8c2.1-3.5 .1-7.9-3.9-9c-65.4-19-117.3-88.7-73-163s132.5-65.6 182.1-20.2c3 2.7 7.9 2.2 10-1.3c.9-1.5 1.1-3.3 .4-4.9c-12.2-31.6-35.3-59.5-67.8-77.7c-19.2-10.7-39.7-17.1-60.4-19.3c10-20.8 15.7-44.1 15.7-68.7c0-43.3-17.4-82.5-45.6-111.1C382.5 .7 380.9 0 379.2 0c-4.7 0-7.9 4.9-6.3 9.4c24.1 66.4-9.9 156.3-101.8 156.3s-125.8-89.9-101.8-156.3C171 4.9 167.9 0 163.2 0zM226 256a45.2 45.2 0 1 1 90.4 0A45.2 45.2 0 1 1 226 256zM171.1 393c5.9-11.1 9.2-23.7 8.1-37.5c-18.3-17-32-39-38.8-63.8c-11.8-7.6-24.7-11.1-37.7-11.7c-8.4-.4-17.1 .5-25.5 2.6c7.3 53.7 36.4 100.5 78.1 131.2c6.4-6.3 11.8-13.3 15.8-20.8zM271.2 60.2c-27.1 0-53 5.5-76.4 15.5c1.9 7.8 4.7 15.3 8.5 22.1c6.4 11.6 15.7 21.7 28.3 28.5c12.6-3.8 25.9-5.9 39.7-5.9s27.1 2.1 39.7 5.9c12.6-6.8 21.9-16.9 28.3-28.5c3.8-6.8 6.6-14.3 8.5-22.1c-23.5-10-49.3-15.5-76.4-15.5zM401.9 291.7c-6.8 24.8-20.4 46.8-38.8 63.8c-1.2 13.8 2.1 26.4 8.1 37.5c4 7.5 9.4 14.5 15.8 20.8c41.7-30.7 70.8-77.4 78.1-131.2c-8.5-2-17.1-2.9-25.5-2.6c-13 .6-25.9 4.1-37.7 11.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bitbucket": { + "aliases": { + "unicodes": { + "composite": [ + "f172" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian", + "bitbucket-square", + "git" + ] + }, + "unicode": "f171", + "label": "Bitbucket", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M22.2 32A16 16 0 0 0 6 47.8a26.35 26.35 0 0 0 .2 2.8l67.9 412.1a21.77 21.77 0 0 0 21.3 18.2h325.7a16 16 0 0 0 16-13.4L505 50.7a16 16 0 0 0-13.2-18.3 24.58 24.58 0 0 0-2.8-.2L22.2 32zm285.9 297.8h-104l-28.1-147h157.3l-25.2 147z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bitcoin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f379", + "label": "Bitcoin", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bitcoin-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Bitcoin Sign", + "currency" + ] + }, + "unicode": "e0b4", + "label": "Bitcoin Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M48 32C48 14.3 62.3 0 80 0s32 14.3 32 32V64h32V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64c0 1.5-.1 3.1-.3 4.5C254.1 82.2 288 125.1 288 176c0 24.2-7.7 46.6-20.7 64.9c31.7 19.8 52.7 55 52.7 95.1c0 61.9-50.1 112-112 112v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H112v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H41.7C18.7 448 0 429.3 0 406.3V288 265.7 224 101.6C0 80.8 16.8 64 37.6 64H48V32zM64 224H176c26.5 0 48-21.5 48-48s-21.5-48-48-48H64v96zm112 64H64v96H208c26.5 0 48-21.5 48-48s-21.5-48-48-48H176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bity": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f37a", + "label": "Bity", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "black-tie": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f27e", + "label": "Font Awesome Black Tie", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "blackberry": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f37b", + "label": "BlackBerry", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "blender": { + "aliases": { + "unicodes": { + "secondary": [ + "10f517" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cocktail", + "milkshake", + "mixer", + "puree", + "smoothie" + ] + }, + "unicode": "f517", + "label": "Blender", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0h64 32H470.1c21.1 0 36.4 20.1 30.9 40.4L494.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H485.8l-17.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H459.6l-17.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16h97.5L416 352H160l-8.7-96H64c-35.3 0-64-28.7-64-64V64zM145.5 192L133.8 64H64V192h81.5zM144 384H432c26.5 0 48 21.5 48 48v32c0 26.5-21.5 48-48 48H144c-26.5 0-48-21.5-48-48V432c0-26.5 21.5-48 48-48zm144 96a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "blender-phone": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6b6" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "appliance", + "cocktail", + "fantasy", + "milkshake", + "mixer", + "puree", + "silly", + "smoothie" + ] + }, + "unicode": "f6b6", + "label": "Blender Phone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M224 352L196.8 52.3C194.2 24.2 216.3 0 244.6 0H534.1c21.1 0 36.4 20.1 30.9 40.4L558.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16H549.8l-17.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16H523.6l-17.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16h97.5L480 352H224zm-16 32H496c26.5 0 48 21.5 48 48v32c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48V432c0-26.5 21.5-48 48-48zm144 96a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM147.5 30.7c10.8 6.7 15.3 21 10.6 33.4l-22 57.8c-4.2 10.9-14.5 17.6-25.3 16.4l-33.3-3.6c-13.6 42.2-13.6 88.4 0 130.7l33.3-3.6c10.9-1.2 21.2 5.5 25.3 16.4l22 57.8c4.7 12.4 .2 26.7-10.6 33.4l-44 27.2c-9.7 6-21.9 4.2-29.8-4.3C-24.6 286-24.6 114 73.7 7.8C81.6-.7 93.8-2.5 103.5 3.5l44 27.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "blog": { + "aliases": { + "unicodes": { + "secondary": [ + "10f781" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "journal", + "log", + "online", + "personal", + "post", + "web 2.0", + "wordpress", + "writing" + ] + }, + "unicode": "f781", + "label": "Blog", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 32c0 17.7 14.3 32 32 32c123.7 0 224 100.3 224 224c0 17.7 14.3 32 32 32s32-14.3 32-32C512 128.9 383.1 0 224 0c-17.7 0-32 14.3-32 32zm0 96c0 17.7 14.3 32 32 32c70.7 0 128 57.3 128 128c0 17.7 14.3 32 32 32s32-14.3 32-32c0-106-86-192-192-192c-17.7 0-32 14.3-32 32zM96 144c0-26.5-21.5-48-48-48S0 117.5 0 144V368c0 79.5 64.5 144 144 144s144-64.5 144-144s-64.5-144-144-144H128v96h16c26.5 0 48 21.5 48 48s-21.5 48-48 48s-48-21.5-48-48V144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "blogger": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f37c", + "label": "Blogger", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "blogger-b": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f37d", + "label": "Blogger B", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bluetooth": { + "aliases": { + "unicodes": { + "secondary": [ + "10f293" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "signal" + ] + }, + "unicode": "f293", + "label": "Bluetooth", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bluetooth-b": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f294", + "label": "Bluetooth", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bold": { + "aliases": { + "unicodes": { + "secondary": [ + "10f032" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emphasis", + "format", + "text" + ] + }, + "unicode": "f032", + "label": "Bold", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H80 96 224c70.7 0 128 57.3 128 128c0 31.3-11.3 60.1-30 82.3c37.1 22.4 62 63.1 62 109.7c0 70.7-57.3 128-128 128H96 80 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48V256 96H32C14.3 96 0 81.7 0 64zM224 224c35.3 0 64-28.7 64-64s-28.7-64-64-64H112V224H224zM112 288V416H256c35.3 0 64-28.7 64-64s-28.7-64-64-64H224 112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bolt": { + "aliases": { + "names": [ + "zap" + ], + "unicodes": { + "composite": [ + "26a1" + ], + "secondary": [ + "10f0e7" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.5.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "danger", + "electric", + "electricity", + "flash", + "high voltage", + "lightning", + "voltage", + "weather", + "zap" + ] + }, + "unicode": "f0e7", + "label": "Bolt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M317.4 44.6c5.9-13.7 1.5-29.7-10.6-38.5s-28.6-8-39.9 1.8l-256 224C.9 240.7-2.6 254.8 2 267.3S18.7 288 32 288H143.5L66.6 467.4c-5.9 13.7-1.5 29.7 10.6 38.5s28.6 8 39.9-1.8l256-224c10-8.8 13.6-22.9 8.9-35.3s-16.6-20.7-30-20.7H240.5L317.4 44.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bolt-lightning": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electricity", + "flash", + "lightning", + "weather", + "zap" + ] + }, + "unicode": "e0b7", + "label": "Bolt Lightning", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 256L28.5 28c2-16 15.6-28 31.8-28H228.9c15 0 27.1 12.1 27.1 27.1c0 3.2-.6 6.5-1.7 9.5L208 160H347.3c20.2 0 36.7 16.4 36.7 36.7c0 7.4-2.2 14.6-6.4 20.7l-192.2 281c-5.9 8.6-15.6 13.7-25.9 13.7h-2.9c-15.7 0-28.5-12.8-28.5-28.5c0-2.3 .3-4.6 .9-6.9L176 288H32c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bomb": { + "aliases": { + "unicodes": { + "composite": [ + "1f4a3" + ], + "secondary": [ + "10f1e2" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bomb", + "comic", + "error", + "explode", + "fuse", + "grenade", + "warning" + ] + }, + "unicode": "f1e2", + "label": "Bomb", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M459.1 52.4L442.6 6.5C440.7 2.6 436.5 0 432.1 0s-8.5 2.6-10.4 6.5L405.2 52.4l-46 16.8c-4.3 1.6-7.3 5.9-7.2 10.4c0 4.5 3 8.7 7.2 10.2l45.7 16.8 16.8 45.8c1.5 4.4 5.8 7.5 10.4 7.5s8.9-3.1 10.4-7.5l16.5-45.8 45.7-16.8c4.2-1.5 7.2-5.7 7.2-10.2c0-4.6-3-8.9-7.2-10.4L459.1 52.4zm-132.4 53c-12.5-12.5-32.8-12.5-45.3 0l-2.9 2.9C256.5 100.3 232.7 96 208 96C93.1 96 0 189.1 0 304S93.1 512 208 512s208-93.1 208-208c0-24.7-4.3-48.5-12.2-70.5l2.9-2.9c12.5-12.5 12.5-32.8 0-45.3l-80-80zM200 192c-57.4 0-104 46.6-104 104v8c0 8.8-7.2 16-16 16s-16-7.2-16-16v-8c0-75.1 60.9-136 136-136h8c8.8 0 16 7.2 16 16s-7.2 16-16 16h-8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bone": { + "aliases": { + "unicodes": { + "composite": [ + "1f9b4" + ], + "secondary": [ + "10f5d7" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bone", + "calcium", + "dog", + "skeletal", + "skeleton", + "tibia" + ] + }, + "unicode": "f5d7", + "label": "Bone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M153.7 144.8c6.9 16.3 20.6 31.2 38.3 31.2H384c17.7 0 31.4-14.9 38.3-31.2C434.4 116.1 462.9 96 496 96c44.2 0 80 35.8 80 80c0 30.4-17 56.9-42 70.4c-3.6 1.9-6 5.5-6 9.6s2.4 7.7 6 9.6c25 13.5 42 40 42 70.4c0 44.2-35.8 80-80 80c-33.1 0-61.6-20.1-73.7-48.8C415.4 350.9 401.7 336 384 336H192c-17.7 0-31.4 14.9-38.3 31.2C141.6 395.9 113.1 416 80 416c-44.2 0-80-35.8-80-80c0-30.4 17-56.9 42-70.4c3.6-1.9 6-5.5 6-9.6s-2.4-7.7-6-9.6C17 232.9 0 206.4 0 176c0-44.2 35.8-80 80-80c33.1 0 61.6 20.1 73.7 48.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bong": { + "aliases": { + "unicodes": { + "secondary": [ + "10f55c" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aparatus", + "cannabis", + "marijuana", + "pipe", + "smoke", + "smoking" + ] + }, + "unicode": "f55c", + "label": "Bong", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 208.5c0 29.1-15.6 53.9-37.2 67.8c-17.2 11.1-31.5 26.1-41.7 43.7H302.9c-10.2-17.6-24.5-32.6-41.7-43.7c-21.6-13.9-37.2-38.7-37.2-67.8V64H160V208.5zM288 64V208.5c0 5.7 3.1 10.9 7.9 14c11.2 7.2 21.5 15.5 30.9 24.8L366.1 208l-7-7c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l24 24 24 24c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-7-7-43.3 43.3C374 314.1 384 347.9 384 384c0 39.4-11.9 76.1-32.2 106.5c-9.6 14.4-26.5 21.5-43.8 21.5H76.1c-17.3 0-34.2-7.1-43.8-21.5C11.9 460.1 0 423.4 0 384c0-67.8 35.1-127.3 88.1-161.5c4.8-3.1 7.9-8.3 7.9-14V64C78.3 64 64 49.7 64 32S78.3 0 96 0h16H272h16c17.7 0 32 14.3 32 32s-14.3 32-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book": { + "aliases": { + "unicodes": { + "composite": [ + "1f4d4" + ], + "secondary": [ + "10f02d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "cover", + "decorated", + "diary", + "documentation", + "journal", + "library", + "notebook", + "notebook with decorative cover", + "read", + "research" + ] + }, + "unicode": "f02d", + "label": "Book", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H384 96zm0 384H352v64H96c-17.7 0-32-14.3-32-32s14.3-32 32-32zm32-240c0-8.8 7.2-16 16-16H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16zm16 48H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-atlas": { + "aliases": { + "names": [ + "atlas" + ], + "unicodes": { + "secondary": [ + "10f558" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "directions", + "geography", + "globe", + "library", + "map", + "research", + "travel", + "wayfinding" + ] + }, + "unicode": "f558", + "label": "Book Atlas", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zM247.4 283.8c-3.7 3.7-6.2 4.2-7.4 4.2s-3.7-.5-7.4-4.2c-3.8-3.7-8-10-11.8-18.9c-6.2-14.5-10.8-34.3-12.2-56.9h63c-1.5 22.6-6 42.4-12.2 56.9c-3.8 8.9-8 15.2-11.8 18.9zm42.7-9.9c7.3-18.3 12-41.1 13.4-65.9h31.1c-4.7 27.9-21.4 51.7-44.5 65.9zm0-163.8c23.2 14.2 39.9 38 44.5 65.9H303.5c-1.4-24.7-6.1-47.5-13.4-65.9zM368 192a128 128 0 1 0 -256 0 128 128 0 1 0 256 0zM145.3 208h31.1c1.4 24.7 6.1 47.5 13.4 65.9c-23.2-14.2-39.9-38-44.5-65.9zm31.1-32H145.3c4.7-27.9 21.4-51.7 44.5-65.9c-7.3 18.3-12 41.1-13.4 65.9zm56.1-75.8c3.7-3.7 6.2-4.2 7.4-4.2s3.7 .5 7.4 4.2c3.8 3.7 8 10 11.8 18.9c6.2 14.5 10.8 34.3 12.2 56.9h-63c1.5-22.6 6-42.4 12.2-56.9c3.8-8.9 8-15.2 11.8-18.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-bible": { + "aliases": { + "names": [ + "bible" + ], + "unicodes": { + "secondary": [ + "10f647" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "catholicism", + "christianity", + "god", + "holy" + ] + }, + "unicode": "f647", + "label": "Book Bible", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H384 96zm0 384H352v64H96c-17.7 0-32-14.3-32-32s14.3-32 32-32zM208 80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272V304c0 8.8-7.2 16-16 16H224c-8.8 0-16-7.2-16-16V192H160c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h48V80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-bookmark": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "library", + "research" + ] + }, + "unicode": "e0bb", + "label": "Book Bookmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0h96V190.7c0 13.4 15.5 20.9 26 12.5L272 160l54 43.2c10.5 8.4 26 .9 26-12.5V0h32 32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-journal-whills": { + "aliases": { + "names": [ + "journal-whills" + ], + "unicodes": { + "secondary": [ + "10f66a" + ] + } + }, + "changes": [ + "5.3.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "force", + "jedi", + "sith", + "star wars", + "yoda" + ] + }, + "unicode": "f66a", + "label": "Book Journal Whills", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zm90.4-234.4l-21.2-21.2c-3 10.1-5.1 20.6-5.1 31.6c0 .2 0 .5 .1 .8s.1 .5 .1 .8L165.2 226c2.5 2.1 3.4 5.8 2.3 8.9c-1.3 3-4.1 5.1-7.5 5.1c-1.9-.1-3.8-.8-5.2-2l-23.6-20.6C142.8 267 186.9 304 240 304s97.3-37 108.9-86.6L325.3 238c-1.4 1.2-3.3 2-5.3 2c-2.2-.1-4.4-1.1-6-2.8c-1.3-1.5-1.9-3.4-2-5.2c.1-2.2 1.1-4.4 2.7-6l37.1-32.5c0-.3 0-.5 .1-.8s.1-.5 .1-.8c0-11-2.1-21.5-5.1-31.6l-21.2 21.2c-3.1 3.1-8.1 3.1-11.3 0s-3.1-8.1 0-11.2l26.4-26.5c-8.2-17-20.5-31.7-35.9-42.6c-2.7-1.9-6.2 1.4-5 4.5c8.5 22.4 3.6 48-13 65.6c-3.3 3.4-3.6 8.9-.9 12.7c9.8 14 12.7 31.9 7.5 48.5c-5.9 19.4-22 34.1-41.9 38.3l-1.4-34.3 12.6 8.6c.6 .4 1.5 .6 2.3 .6c1.5 0 2.7-.8 3.5-2s.6-2.8-.1-4L260 225.4l18-3.6c1.8-.4 3.1-2.1 3.1-4s-1.4-3.5-3.1-3.9l-18-3.7 8.5-14.3c.8-1.2 .9-2.9 .1-4.1s-2-2-3.5-2l-.1 0c-.7 .1-1.5 .3-2.1 .7l-14.1 9.6L244 87.9c-.1-2.2-1.9-3.9-4-3.9s-3.9 1.6-4 3.9l-4.6 110.8-12-8.1c-1.5-1.1-3.6-.9-5 .4s-1.6 3.4-.8 5l8.6 14.3-18 3.7c-1.8 .4-3.1 2-3.1 3.9s1.4 3.6 3.1 4l18 3.8-8.6 14.2c-.2 .6-.5 1.4-.5 2c0 1.1 .5 2.1 1.2 3c.8 .6 1.8 1 2.8 1c.7 0 1.6-.2 2.2-.6l10.4-7.1-1.4 32.8c-19.9-4.1-36-18.9-41.9-38.3c-5.1-16.6-2.2-34.4 7.6-48.5c2.7-3.9 2.3-9.3-.9-12.7c-16.6-17.5-21.6-43.1-13.1-65.5c1.2-3.1-2.3-6.4-5-4.5c-15.3 10.9-27.6 25.6-35.8 42.6l26.4 26.5c3.1 3.1 3.1 8.1 0 11.2s-8.1 3.1-11.2 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7e6" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "diary", + "documentation", + "health", + "history", + "journal", + "library", + "read", + "record", + "research" + ] + }, + "unicode": "f7e6", + "label": "Book Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zM208 112v48H160c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h48c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H272V112c0-8.8-7.2-16-16-16H224c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-open": { + "aliases": { + "unicodes": { + "composite": [ + "1f4d6", + "1f56e" + ], + "secondary": [ + "10f518" + ] + } + }, + "changes": [ + "5.0.13", + "5.1.0", + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Book", + "book", + "flyer", + "library", + "notebook", + "open", + "open book", + "pamphlet", + "reading", + "research" + ] + }, + "unicode": "f518", + "label": "Book Open", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M249.6 471.5c10.8 3.8 22.4-4.1 22.4-15.5V78.6c0-4.2-1.6-8.4-5-11C247.4 52 202.4 32 144 32C93.5 32 46.3 45.3 18.1 56.1C6.8 60.5 0 71.7 0 83.8V454.1c0 11.9 12.8 20.2 24.1 16.5C55.6 460.1 105.5 448 144 448c33.9 0 79 14 105.6 23.5zm76.8 0C353 462 398.1 448 432 448c38.5 0 88.4 12.1 119.9 22.6c11.3 3.8 24.1-4.6 24.1-16.5V83.8c0-12.1-6.8-23.3-18.1-27.6C529.7 45.3 482.5 32 432 32c-58.4 0-103.4 20-123 35.6c-3.3 2.6-5 6.8-5 11V456c0 11.4 11.7 19.3 22.4 15.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-open-reader": { + "aliases": { + "names": [ + "book-reader" + ], + "unicodes": { + "secondary": [ + "10f5da" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flyer", + "library", + "notebook", + "open book", + "pamphlet", + "reading", + "research" + ] + }, + "unicode": "f5da", + "label": "Book Open Reader", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 96a96 96 0 1 1 192 0A96 96 0 1 1 160 96zm80 152V512l-48.4-24.2c-20.9-10.4-43.5-17-66.8-19.3l-96-9.6C12.5 457.2 0 443.5 0 427V224c0-17.7 14.3-32 32-32H62.3c63.6 0 125.6 19.6 177.7 56zm32 264V248c52.1-36.4 114.1-56 177.7-56H480c17.7 0 32 14.3 32 32V427c0 16.4-12.5 30.2-28.8 31.8l-96 9.6c-23.2 2.3-45.9 8.9-66.8 19.3L272 512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-quran": { + "aliases": { + "names": [ + "quran" + ], + "unicodes": { + "secondary": [ + "10f687" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "islam", + "muslim", + "religion" + ] + }, + "unicode": "f687", + "label": "Book Quran", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 0c53 0 96 43 96 96V416c0 53-43 96-96 96H64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32V384c-17.7 0-32-14.3-32-32V32C0 14.3 14.3 0 32 0H64 352zm0 384H96v64H352c17.7 0 32-14.3 32-32s-14.3-32-32-32zM274.1 150.2l-8.9 21.4-23.1 1.9c-5.7 .5-8 7.5-3.7 11.2L256 199.8l-5.4 22.6c-1.3 5.5 4.7 9.9 9.6 6.9L280 217.2l19.8 12.1c4.9 3 10.9-1.4 9.6-6.9L304 199.8l17.6-15.1c4.3-3.7 2-10.8-3.7-11.2l-23.1-1.9-8.9-21.4c-2.2-5.3-9.6-5.3-11.8 0zM96 192c0 70.7 57.3 128 128 128c25.6 0 49.5-7.5 69.5-20.5c3.2-2.1 4.5-6.2 3.1-9.7s-5.2-5.6-9-4.8c-6.1 1.2-12.5 1.9-19 1.9c-52.4 0-94.9-42.5-94.9-94.9s42.5-94.9 94.9-94.9c6.5 0 12.8 .7 19 1.9c3.8 .8 7.5-1.3 9-4.8s.2-7.6-3.1-9.7C273.5 71.5 249.6 64 224 64C153.3 64 96 121.3 96 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-skull": { + "aliases": { + "names": [ + "book-dead" + ], + "unicodes": { + "secondary": [ + "10f6b7" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "crossbones", + "d&d", + "dark arts", + "death", + "dnd", + "documentation", + "evil", + "fantasy", + "halloween", + "holiday", + "library", + "necronomicon", + "read", + "research", + "skull", + "spell" + ] + }, + "unicode": "f6b7", + "label": "Book Skull", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zM320 112c0-35.3-35.8-64-80-64s-80 28.7-80 64c0 20.9 12.6 39.5 32 51.2V176c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V163.2c19.4-11.7 32-30.3 32-51.2zM208 96a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm48 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM134.3 209.3c-8.1-3.5-17.5 .3-21 8.4s.3 17.5 8.4 21L199.4 272l-77.7 33.3c-8.1 3.5-11.9 12.9-8.4 21s12.9 11.9 21 8.4L240 289.4l105.7 45.3c8.1 3.5 17.5-.3 21-8.4s-.3-17.5-8.4-21L280.6 272l77.7-33.3c8.1-3.5 11.9-12.9 8.4-21s-12.9-11.9-21-8.4L240 254.6 134.3 209.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-tanakh": { + "aliases": { + "names": [ + "tanakh" + ], + "unicodes": { + "secondary": [ + "10f827" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "jewish", + "judaism", + "religion" + ] + }, + "unicode": "f827", + "label": "Book Tanakh", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 0c53 0 96 43 96 96V416c0 53-43 96-96 96H64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32V384c-17.7 0-32-14.3-32-32V32C0 14.3 14.3 0 32 0H64 352zm0 384H96v64H352c17.7 0 32-14.3 32-32s-14.3-32-32-32zM138.7 208l13.9 24H124.9l13.9-24zm-13.9-24L97.1 232c-6.2 10.7 1.5 24 13.9 24h55.4l27.7 48c6.2 10.7 21.6 10.7 27.7 0l27.7-48H305c12.3 0 20-13.3 13.9-24l-27.7-48 27.7-48c6.2-10.7-1.5-24-13.9-24H249.6L221.9 64c-6.2-10.7-21.6-10.7-27.7 0l-27.7 48H111c-12.3 0-20 13.3-13.9 24l27.7 48zm27.7 0l27.7-48h55.4l27.7 48-27.7 48H180.3l-27.7-48zm0-48l-13.9 24-13.9-24h27.7zm41.6-24L208 88l13.9 24H194.1zm69.3 24h27.7l-13.9 24-13.9-24zm13.9 72l13.9 24H263.4l13.9-24zm-55.4 48L208 280l-13.9-24h27.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bookmark": { + "aliases": { + "unicodes": { + "composite": [ + "1f516", + "f097" + ], + "secondary": [ + "10f02e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bookmark", + "favorite", + "library", + "mark", + "marker", + "read", + "remember", + "research", + "save" + ] + }, + "unicode": "f02e", + "label": "Bookmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 48V487.7C0 501.1 10.9 512 24.3 512c5 0 9.9-1.5 14-4.4L192 400 345.7 507.6c4.1 2.9 9 4.4 14 4.4c13.4 0 24.3-10.9 24.3-24.3V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0l0 48V441.4l130.1-92.9c8.3-6 19.6-6 27.9 0L336 441.4V48H48V0H336c26.5 0 48 21.5 48 48V488c0 9-5 17.2-13 21.3s-17.6 3.4-24.9-1.8L192 397.5 37.9 507.5c-7.3 5.2-16.9 5.9-24.9 1.8S0 497 0 488V48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "bootstrap": { + "changes": [ + "5.8.0", + "5.15.4", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f836", + "label": "Bootstrap", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M333.5,201.4c0-22.1-15.6-34.3-43-34.3h-50.4v71.2h42.5C315.4,238.2,333.5,225,333.5,201.4z M517,188.6 c-9.5-30.9-10.9-68.8-9.8-98.1c1.1-30.5-22.7-58.5-54.7-58.5H123.7c-32.1,0-55.8,28.1-54.7,58.5c1,29.3-0.3,67.2-9.8,98.1 c-9.6,31-25.7,50.6-52.2,53.1v28.5c26.4,2.5,42.6,22.1,52.2,53.1c9.5,30.9,10.9,68.8,9.8,98.1c-1.1,30.5,22.7,58.5,54.7,58.5h328.7 c32.1,0,55.8-28.1,54.7-58.5c-1-29.3,0.3-67.2,9.8-98.1c9.6-31,25.7-50.6,52.1-53.1v-28.5C542.7,239.2,526.5,219.6,517,188.6z M300.2,375.1h-97.9V136.8h97.4c43.3,0,71.7,23.4,71.7,59.4c0,25.3-19.1,47.9-43.5,51.8v1.3c33.2,3.6,55.5,26.6,55.5,58.3 C383.4,349.7,352.1,375.1,300.2,375.1z M290.2,266.4h-50.1v78.4h52.3c34.2,0,52.3-13.7,52.3-39.5 C344.7,279.6,326.1,266.4,290.2,266.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "border-all": { + "aliases": { + "unicodes": { + "secondary": [ + "10f84c" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cell", + "grid", + "outline", + "stroke", + "table" + ] + }, + "unicode": "f84c", + "label": "Border All", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 96V224H256V96H384zm0 192V416H256V288H384zM192 224H64V96H192V224zM64 288H192V416H64V288zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "border-none": { + "aliases": { + "unicodes": { + "secondary": [ + "10f850" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cell", + "grid", + "outline", + "stroke", + "table" + ] + }, + "unicode": "f850", + "label": "Border None", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 416a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm96 64a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0-384a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0 128a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM320 480a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0-448a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm0 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM224 416a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm0-320a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0 128a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM416 480a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0-384a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM32 32a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM416 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM32 224a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM224 384a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm192-64a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM32 384a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM416 128a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM32 192a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm192-64a32 32 0 1 0 0 64 32 32 0 1 0 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "border-top-left": { + "aliases": { + "names": [ + "border-style" + ], + "unicodes": { + "secondary": [ + "10f853" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cell", + "outline", + "stroke", + "table" + ] + }, + "unicode": "f853", + "label": "Border Top Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-336c0-8.8 7.2-16 16-16l336 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32C35.8 32 0 67.8 0 112L0 448zm160 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm192 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm-96 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm192 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM416 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0 32a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm0-128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bore-hole": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bore", + "bury", + "drill", + "hole" + ] + }, + "unicode": "e4c3", + "label": "Bore Hole", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c-17.7 0-32 14.3-32 32V296.6c-19.1 11.1-32 31.7-32 55.4c0 35.3 28.7 64 64 64s64-28.7 64-64c0-23.7-12.9-44.4-32-55.4V32c0-17.7-14.3-32-32-32zM48 128c-26.5 0-48 21.5-48 48V464c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H384c-17.7 0-32 14.3-32 32V352c0 53-43 96-96 96s-96-43-96-96V160c0-17.7-14.3-32-32-32H48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bots": { + "changes": [ + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e340", + "label": "Bots", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M86.344,197.834a51.767,51.767,0,0,0-41.57,20.058V156.018a8.19,8.19,0,0,0-8.19-8.19H8.19A8.19,8.19,0,0,0,0,156.018V333.551a8.189,8.189,0,0,0,8.19,8.189H36.584a8.189,8.189,0,0,0,8.19-8.189v-8.088c11.628,13.373,25.874,19.769,41.573,19.769,34.6,0,61.922-26.164,61.922-73.843C148.266,225.452,121.229,197.834,86.344,197.834ZM71.516,305.691c-9.593,0-21.221-4.942-26.745-12.5V250.164c5.528-7.558,17.152-12.791,26.745-12.791,17.734,0,31.107,13.082,31.107,34.013C102.623,292.609,89.25,305.691,71.516,305.691Zm156.372-59.032a17.4,17.4,0,1,0,17.4,17.4A17.4,17.4,0,0,0,227.888,246.659ZM273.956,156.7V112.039a13.308,13.308,0,1,0-10.237,0V156.7a107.49,107.49,0,1,0,10.237,0Zm85.993,107.367c0,30.531-40.792,55.281-91.112,55.281s-91.111-24.75-91.111-55.281,40.792-55.281,91.111-55.281S359.949,233.532,359.949,264.062Zm-50.163,17.4a17.4,17.4,0,1,0-17.4-17.4h0A17.4,17.4,0,0,0,309.786,281.466ZM580.7,250.455c-14.828-2.617-22.387-3.78-22.387-9.885,0-5.523,7.268-9.884,17.735-9.884a65.56,65.56,0,0,1,34.484,10.1,8.171,8.171,0,0,0,11.288-2.468c.07-.11.138-.221.2-.333l8.611-14.886a8.2,8.2,0,0,0-2.867-11.123,99.863,99.863,0,0,0-52.014-14.138c-38.956,0-60.179,21.514-60.179,46.225,0,36.342,33.725,41.864,57.563,45.642,13.373,2.326,24.13,4.361,24.13,11.048,0,6.4-5.523,10.757-18.9,10.757-13.552,0-30.994-6.222-42.623-13.579a8.206,8.206,0,0,0-11.335,2.491c-.035.054-.069.108-.1.164l-10.2,16.891a8.222,8.222,0,0,0,2.491,11.066c15.224,10.3,37.663,16.692,59.441,16.692,40.409,0,63.957-19.769,63.957-46.515C640,260.63,604.537,254.816,580.7,250.455Zm-95.928,60.787a8.211,8.211,0,0,0-9.521-5.938,23.168,23.168,0,0,1-4.155.387c-7.849,0-12.5-6.106-12.5-14.245V240.28h20.349a8.143,8.143,0,0,0,8.141-8.143V209.466a8.143,8.143,0,0,0-8.141-8.143H458.594V171.091a8.143,8.143,0,0,0-8.143-8.143H422.257a8.143,8.143,0,0,0-8.143,8.143h0v30.232H399a8.143,8.143,0,0,0-8.143,8.143h0v22.671A8.143,8.143,0,0,0,399,240.28h15.115v63.667c0,27.037,15.408,41.282,43.9,41.282,12.183,0,21.383-2.2,27.6-5.446a8.161,8.161,0,0,0,4.145-9.278Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bottle-droplet": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "drink", + "oil", + "olive oil", + "wine" + ] + }, + "unicode": "e4c4", + "label": "Bottle Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M64 0C50.7 0 40 10.7 40 24s10.7 24 24 24c4.4 0 8 3.6 8 8v64.9c0 12.2-7.2 23.1-17.2 30.1C21.7 174.1 0 212.5 0 256V448c0 35.3 28.7 64 64 64H192c35.3 0 64-28.7 64-64V256c0-43.5-21.7-81.9-54.8-105c-10-7-17.2-17.9-17.2-30.1V56c0-4.4 3.6-8 8-8c13.3 0 24-10.7 24-24s-10.7-24-24-24l-8 0 0 0 0 0H72l0 0 0 0L64 0zm64 382c-26.5 0-48-20.1-48-45c0-16.8 22.1-48.1 36.3-66.4c6-7.8 17.5-7.8 23.5 0C153.9 288.9 176 320.2 176 337c0 24.9-21.5 45-48 45z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bottle-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "h2o", + "plastic", + "water" + ] + }, + "unicode": "e4c5", + "label": "Bottle Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M88 0h80c13.3 0 24 10.7 24 24V64H64V24C64 10.7 74.7 0 88 0zM0 151.7c0-15.6 9-29.8 23.2-36.5l24.4-11.4c11-5.1 23-7.8 35.1-7.8h90.6c12.1 0 24.1 2.7 35.1 7.8l24.4 11.4c14.2 6.6 23.2 20.8 23.2 36.5c0 14.4-7.5 27-18.9 34.1c11.5 8.8 18.9 22.6 18.9 38.2c0 16.7-8.5 31.4-21.5 40c12.9 8.6 21.5 23.3 21.5 40s-8.5 31.4-21.5 40c12.9 8.6 21.5 23.3 21.5 40s-8.5 31.4-21.5 40c12.9 8.6 21.5 23.3 21.5 40c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48c0-16.7 8.5-31.4 21.5-40C8.5 415.4 0 400.7 0 384s8.5-31.4 21.5-40C8.5 335.4 0 320.7 0 304s8.5-31.4 21.5-40C8.5 255.4 0 240.7 0 224c0-15.6 7.4-29.4 18.9-38.2C7.5 178.7 0 166.1 0 151.7zM64 240c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM80 352c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bowl-food": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "catfood", + "dogfood", + "food", + "rice" + ] + }, + "unicode": "e4c6", + "label": "Bowl Food", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 192c0-35.3 28.7-64 64-64c.5 0 1.1 0 1.6 0C73 91.5 105.3 64 144 64c15 0 29 4.1 40.9 11.2C198.2 49.6 225.1 32 256 32s57.8 17.6 71.1 43.2C339 68.1 353 64 368 64c38.7 0 71 27.5 78.4 64c.5 0 1.1 0 1.6 0c35.3 0 64 28.7 64 64c0 11.7-3.1 22.6-8.6 32H8.6C3.1 214.6 0 203.7 0 192zm0 91.4C0 268.3 12.3 256 27.4 256H484.6c15.1 0 27.4 12.3 27.4 27.4c0 70.5-44.4 130.7-106.7 154.1L403.5 452c-2 16-15.6 28-31.8 28H140.2c-16.1 0-29.8-12-31.8-28l-1.8-14.4C44.4 414.1 0 353.9 0 283.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bowl-rice": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boiled", + "cooked", + "cooked rice", + "rice", + "steamed" + ] + }, + "unicode": "e2eb", + "label": "Bowl Rice", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 56c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24zm24 48h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24s10.7-24 24-24zM56 176H72c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24s10.7-24 24-24zM0 283.4C0 268.3 12.3 256 27.4 256H484.6c15.1 0 27.4 12.3 27.4 27.4c0 70.5-44.4 130.7-106.7 154.1L403.5 452c-2 16-15.6 28-31.8 28H140.2c-16.1 0-29.8-12-31.8-28l-1.8-14.4C44.4 414.1 0 353.9 0 283.4zM224 200c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H248c-13.3 0-24-10.7-24-24zm-96 0c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24zm-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H104c-13.3 0-24-10.7-24-24s10.7-24 24-24zm216 96c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H344c-13.3 0-24-10.7-24-24zm-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H296c-13.3 0-24-10.7-24-24s10.7-24 24-24zm120 96c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H440c-13.3 0-24-10.7-24-24zm-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H392c-13.3 0-24-10.7-24-24s10.7-24 24-24zM296 32h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H296c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bowling-ball": { + "aliases": { + "unicodes": { + "secondary": [ + "10f436" + ] + } + }, + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alley", + "candlepin", + "gutter", + "lane", + "strike", + "tenpin" + ] + }, + "unicode": "f436", + "label": "Bowling Ball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321787, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM240 144c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm32 64c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm-128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "box": { + "aliases": { + "unicodes": { + "composite": [ + "1f4e6" + ], + "secondary": [ + "10f466" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "box", + "container", + "package", + "parcel", + "storage" + ] + }, + "unicode": "f466", + "label": "Box", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M50.7 58.5L0 160H208V32H93.7C75.5 32 58.9 42.3 50.7 58.5zM240 160H448L397.3 58.5C389.1 42.3 372.5 32 354.3 32H240V160zm208 32H0V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "box-archive": { + "aliases": { + "names": [ + "archive" + ], + "unicodes": { + "secondary": [ + "10f187" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "box", + "package", + "save", + "storage" + ] + }, + "unicode": "f187", + "label": "Box Archive", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32H480c17.7 0 32 14.3 32 32V96c0 17.7-14.3 32-32 32H32C14.3 128 0 113.7 0 96V64C0 46.3 14.3 32 32 32zm0 128H480V416c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V160zm128 80c0 8.8 7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "box-open": { + "aliases": { + "unicodes": { + "secondary": [ + "10f49e" + ] + } + }, + "changes": [ + "5.0.9", + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "container", + "package", + "storage", + "unpack" + ] + }, + "unicode": "f49e", + "label": "Box Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M45.9 42.1c3-6.1 9.6-9.6 16.3-8.7L307 64 551.8 33.4c6.7-.8 13.3 2.7 16.3 8.7l41.7 83.4c9 17.9-.6 39.6-19.8 45.1L426.6 217.3c-13.9 4-28.8-1.9-36.2-14.3L307 64 223.6 203c-7.4 12.4-22.3 18.3-36.2 14.3L24.1 170.6C4.8 165.1-4.7 143.4 4.2 125.5L45.9 42.1zM308.1 128l54.9 91.4c14.9 24.8 44.6 36.6 72.5 28.6L563 211.6v167c0 22-15 41.2-36.4 46.6l-204.1 51c-10.2 2.6-20.9 2.6-31 0l-204.1-51C66 419.7 51 400.5 51 378.5v-167L178.6 248c27.8 8 57.6-3.8 72.5-28.6L305.9 128h2.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "box-tissue": { + "aliases": { + "unicodes": { + "secondary": [ + "10e05b" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cough", + "covid-19", + "kleenex", + "mucus", + "nose", + "sneeze", + "snot" + ] + }, + "unicode": "e05b", + "label": "Box Tissue", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M92.5 0H208c40 0 52 24 64 48s24 48 64 48h85.2C436 96 448 108 448 122.8c0 3.4-.7 6.8-1.9 10L409.6 224 384 288H128l-16-64L64.9 35.4c-.6-2.3-.9-4.6-.9-6.9C64 12.8 76.8 0 92.5 0zM79 224l16 64H80c-8.8 0-16 7.2-16 16s7.2 16 16 16h48H384h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H418.5l25.6-64H464c26.5 0 48 21.5 48 48V384H0V272c0-26.5 21.5-48 48-48H79zM0 416H512v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "boxes-packing": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "box", + "package", + "storage", + "supplies" + ] + }, + "unicode": "e4c7", + "label": "Boxes Packing", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 48c0-26.5 21.5-48 48-48H592c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H381.3c1.8-5 2.7-10.4 2.7-16V253.3c18.6-6.6 32-24.4 32-45.3V176c0-26.5-21.5-48-48-48H256V48zM571.3 347.3c6.2-6.2 6.2-16.4 0-22.6l-64-64c-6.2-6.2-16.4-6.2-22.6 0l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L480 310.6V432c0 8.8 7.2 16 16 16s16-7.2 16-16V310.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0zM0 176c0-8.8 7.2-16 16-16H368c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H16c-8.8 0-16-7.2-16-16V176zm352 80V480c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V256H352zM144 320c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "boxes-stacked": { + "aliases": { + "names": [ + "boxes", + "boxes-alt" + ], + "unicodes": { + "composite": [ + "f4a1" + ], + "primary": [ + "f4a1" + ], + "secondary": [ + "10f468", + "10f4a1" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archives", + "inventory", + "storage", + "warehouse" + ] + }, + "unicode": "f468", + "label": "Boxes Stacked", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M248 0H208c-26.5 0-48 21.5-48 48V160c0 35.3 28.7 64 64 64H352c35.3 0 64-28.7 64-64V48c0-26.5-21.5-48-48-48H328V80c0 8.8-7.2 16-16 16H264c-8.8 0-16-7.2-16-16V0zM64 256c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H224c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64H184v80c0 8.8-7.2 16-16 16H120c-8.8 0-16-7.2-16-16V256H64zM352 512H512c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64H472v80c0 8.8-7.2 16-16 16H408c-8.8 0-16-7.2-16-16V256H352c-15 0-28.8 5.1-39.7 13.8c4.9 10.4 7.7 22 7.7 34.2V464c0 12.2-2.8 23.8-7.7 34.2C323.2 506.9 337 512 352 512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "braille": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2a1" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabet", + "blind", + "dots", + "raised", + "vision" + ] + }, + "unicode": "f2a1", + "label": "Braille", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321788, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 96c0 35.3-28.7 64-64 64S0 131.3 0 96S28.7 32 64 32s64 28.7 64 64zm96 176c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm0 48c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zM80 416c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zm112 0c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM64 320c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zM224 160c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zM480 96c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zm112 0c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM576 272c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm0 48c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zm16 96c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM416 272c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm0 48c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zm16 96c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "brain": { + "aliases": { + "unicodes": { + "composite": [ + "1f9e0" + ], + "secondary": [ + "10f5dc" + ] + } + }, + "changes": [ + "5.2.0", + "5.9.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brain", + "cerebellum", + "gray matter", + "intellect", + "intelligent", + "medulla oblongata", + "mind", + "noodle", + "wit" + ] + }, + "unicode": "f5dc", + "label": "Brain", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M184 0c30.9 0 56 25.1 56 56V456c0 30.9-25.1 56-56 56c-28.9 0-52.7-21.9-55.7-50.1c-5.2 1.4-10.7 2.1-16.3 2.1c-35.3 0-64-28.7-64-64c0-7.4 1.3-14.6 3.6-21.2C21.4 367.4 0 338.2 0 304c0-31.9 18.7-59.5 45.8-72.3C37.1 220.8 32 207 32 192c0-30.7 21.6-56.3 50.4-62.6C80.8 123.9 80 118 80 112c0-29.9 20.6-55.1 48.3-62.1C131.3 21.9 155.1 0 184 0zM328 0c28.9 0 52.6 21.9 55.7 49.9c27.8 7 48.3 32.1 48.3 62.1c0 6-.8 11.9-2.4 17.4c28.8 6.2 50.4 31.9 50.4 62.6c0 15-5.1 28.8-13.8 39.7C493.3 244.5 512 272.1 512 304c0 34.2-21.4 63.4-51.6 74.8c2.3 6.6 3.6 13.8 3.6 21.2c0 35.3-28.7 64-64 64c-5.6 0-11.1-.7-16.3-2.1c-3 28.2-26.8 50.1-55.7 50.1c-30.9 0-56-25.1-56-56V56c0-30.9 25.1-56 56-56z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "brazilian-real-sign": { + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brazilian real sign", + "currency" + ] + }, + "unicode": "e46c", + "label": "Brazilian Real Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M400 0c17.7 0 32 14.3 32 32V50.2c12.5 2.3 24.7 6.4 36.2 12.1l10.1 5.1c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-10.2-5.1c-9.9-5-20.9-7.5-32-7.5h-1.7c-29.8 0-53.9 24.1-53.9 53.9c0 22 13.4 41.8 33.9 50l52 20.8c44.7 17.9 74.1 61.2 74.1 109.4v3.4c0 51.2-33.6 94.6-80 109.2V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V460.6c-15-3.5-29.4-9.7-42.3-18.3l-23.4-15.6c-14.7-9.8-18.7-29.7-8.9-44.4s29.7-18.7 44.4-8.9L361.2 389c10.8 7.2 23.4 11 36.3 11c27.9 0 50.5-22.6 50.5-50.5v-3.4c0-22-13.4-41.8-33.9-50l-52-20.8C317.3 257.4 288 214.1 288 165.9C288 114 321.5 70 368 54.2V32c0-17.7 14.3-32 32-32zM0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bread-slice": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ec" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bake", + "bakery", + "baking", + "dough", + "flour", + "gluten", + "grain", + "sandwich", + "sourdough", + "toast", + "wheat", + "yeast" + ] + }, + "unicode": "f7ec", + "label": "Bread Slice", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 32C192 32 0 64 0 192c0 35.3 28.7 64 64 64V432c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V256c35.3 0 64-28.7 64-64C512 64 320 32 256 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "road" + ] + }, + "unicode": "e4c8", + "label": "Bridge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H72v64H0V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96s96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96V160H504V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM456 96v64H376V96h80zM328 96v64H248V96h80zM200 96v64H120V96h80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "not affected", + "ok", + "okay", + "road" + ] + }, + "unicode": "e4c9", + "label": "Bridge Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64s14.3 32 32 32h40v64H32V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96c6.3 0 12.4 .6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160H536V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM488 96v64H408V96h80zM360 96v64H280V96h80zM232 96v64H152V96h80zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "bridge", + "road" + ] + }, + "unicode": "e4ca", + "label": "Bridge Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64s14.3 32 32 32h40v64H32V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96c6.3 0 12.4 .6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160H536V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM488 96v64H408V96h80zM360 96v64H280V96h80zM232 96v64H152V96h80zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "destroy", + "road" + ] + }, + "unicode": "e4cb", + "label": "Bridge Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64s14.3 32 32 32h40v64H32V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96c6.3 0 12.4 .6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160H536V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM488 96v64H408V96h80zM360 96v64H280V96h80zM232 96v64H152V96h80zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "closed", + "lockdown", + "quarantine", + "road" + ] + }, + "unicode": "e4cc", + "label": "Bridge Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 64c0-17.7 14.3-32 32-32H576c17.7 0 32 14.3 32 32s-14.3 32-32 32H536v64h-8c-61.9 0-112 50.1-112 112v24.6c-9.9 5.8-18.2 14.1-23.8 24.1c-17.6-20-43.4-32.7-72.2-32.7c-53 0-96 43-96 96v64c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V384c0-53-43-96-96-96V160h72V96H64C46.3 96 32 81.7 32 64zM408 96v64h80V96H408zm-48 64V96H280v64h80zM152 96v64h80V96H152zM528 240c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "road" + ] + }, + "unicode": "e4ce", + "label": "Bridge Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 96C0 78.3 14.3 64 32 64H544c17.7 0 32 14.3 32 32v35.6c0 15.7-12.7 28.4-28.4 28.4c-37.3 0-67.6 30.2-67.6 67.6V352.5c-12.9 0-25.8 3.9-36.8 11.7c-18 12.4-40.1 20.3-59.2 20.3h0l0-.5V256c0-53-43-96-96-96s-96 43-96 96V384l0 .5c-19 0-41.2-7.9-59.1-20.3c-11.1-7.8-24-11.7-36.9-11.7V227.6C96 190.2 65.8 160 28.4 160C12.7 160 0 147.3 0 131.6V96zM306.5 389.9C329 405.4 356.5 416 384 416c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 469.7 417 480 384 480c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 405.2 165.1 416 192 416c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "briefcase": { + "aliases": { + "unicodes": { + "composite": [ + "1f4bc" + ], + "secondary": [ + "10f0b1" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "briefcas", + "briefcase", + "business", + "luggage", + "office", + "work" + ] + }, + "unicode": "f0b1", + "label": "Briefcase", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96H64C28.7 96 0 124.7 0 160v96H192 320 512V160c0-35.3-28.7-64-64-64H384V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zM512 288H320v32c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32V288H0V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "briefcase-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f469" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "doctor", + "emt", + "first aid", + "health" + ] + }, + "unicode": "f469", + "label": "Briefcase Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H384V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zm96 152c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H288v48c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V320H176c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h48V208z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "broom": { + "aliases": { + "unicodes": { + "composite": [ + "1f9f9" + ], + "secondary": [ + "10f51a" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "broom", + "clean", + "cleaning", + "firebolt", + "fly", + "halloween", + "nimbus 2000", + "quidditch", + "sweep", + "sweeping", + "witch" + ] + }, + "unicode": "f51a", + "label": "Broom", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M566.6 54.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192-34.7-34.7c-4.2-4.2-10-6.6-16-6.6c-12.5 0-22.6 10.1-22.6 22.6v29.1L364.3 320h29.1c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16l-34.7-34.7 192-192zM341.1 353.4L222.6 234.9c-42.7-3.7-85.2 11.7-115.8 42.3l-8 8C76.5 307.5 64 337.7 64 369.2c0 6.8 7.1 11.2 13.2 8.2l51.1-25.5c5-2.5 9.5 4.1 5.4 7.9L7.3 473.4C2.7 477.6 0 483.6 0 489.9C0 502.1 9.9 512 22.1 512l173.3 0c38.8 0 75.9-15.4 103.4-42.8c30.6-30.6 45.9-73.1 42.3-115.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "broom-ball": { + "aliases": { + "names": [ + "quidditch", + "quidditch-broom-ball" + ], + "unicodes": { + "secondary": [ + "10f458" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "bludger", + "broom", + "golden snitch", + "harry potter", + "hogwarts", + "quaffle", + "sport", + "wizard" + ] + }, + "unicode": "f458", + "label": "Broom Ball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M566.6 9.4c12.5 12.5 12.5 32.8 0 45.3l-192 192 34.7 34.7c4.2 4.2 6.6 10 6.6 16c0 12.5-10.1 22.6-22.6 22.6H364.3L256 211.7V182.6c0-12.5 10.1-22.6 22.6-22.6c6 0 11.8 2.4 16 6.6l34.7 34.7 192-192c12.5-12.5 32.8-12.5 45.3 0zm-344 225.5L341.1 353.4c3.7 42.7-11.7 85.2-42.3 115.8C271.4 496.6 234.2 512 195.5 512L22.1 512C9.9 512 0 502.1 0 489.9c0-6.3 2.7-12.3 7.3-16.5L133.7 359.7c4.2-3.7-.4-10.4-5.4-7.9L77.2 377.4c-6.1 3-13.2-1.4-13.2-8.2c0-31.5 12.5-61.7 34.8-84l8-8c30.6-30.6 73.1-45.9 115.8-42.3zM464 352a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "brush": { + "aliases": { + "unicodes": { + "secondary": [ + "10f55d" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "bristles", + "color", + "handle", + "paint" + ] + }, + "unicode": "f55d", + "label": "Brush", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 64L160 0H128L96 64 64 0H48C21.5 0 0 21.5 0 48V256H384V48c0-26.5-21.5-48-48-48H224L192 64zM0 288v32c0 35.3 28.7 64 64 64h64v64c0 35.3 28.7 64 64 64s64-28.7 64-64V384h64c35.3 0 64-28.7 64-64V288H0zM192 432a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "btc": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f15a", + "label": "BTC", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bucket": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bucket", + "pail", + "sandcastle" + ] + }, + "unicode": "e4cf", + "label": "Bucket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321789, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 152v8H48v-8C48 68.1 116.1 0 200 0h48c83.9 0 152 68.1 152 152v8H352v-8c0-57.4-46.6-104-104-104H200C142.6 48 96 94.6 96 152zM0 224c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32h-5.1L388.5 469c-2.6 24.4-23.2 43-47.7 43H107.2c-24.6 0-45.2-18.5-47.7-43L37.1 256H32c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "buffer": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f837", + "label": "Buffer", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M427.84 380.67l-196.5 97.82a18.6 18.6 0 0 1-14.67 0L20.16 380.67c-4-2-4-5.28 0-7.29L67.22 350a18.65 18.65 0 0 1 14.69 0l134.76 67a18.51 18.51 0 0 0 14.67 0l134.76-67a18.62 18.62 0 0 1 14.68 0l47.06 23.43c4.05 1.96 4.05 5.24 0 7.24zm0-136.53l-47.06-23.43a18.62 18.62 0 0 0-14.68 0l-134.76 67.08a18.68 18.68 0 0 1-14.67 0L81.91 220.71a18.65 18.65 0 0 0-14.69 0l-47.06 23.43c-4 2-4 5.29 0 7.31l196.51 97.8a18.6 18.6 0 0 0 14.67 0l196.5-97.8c4.05-2.02 4.05-5.3 0-7.31zM20.16 130.42l196.5 90.29a20.08 20.08 0 0 0 14.67 0l196.51-90.29c4-1.86 4-4.89 0-6.74L231.33 33.4a19.88 19.88 0 0 0-14.67 0l-196.5 90.28c-4.05 1.85-4.05 4.88 0 6.74z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bug": { + "aliases": { + "unicodes": { + "secondary": [ + "10f188" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.15.4", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beetle", + "error", + "glitch", + "insect", + "repair", + "report" + ] + }, + "unicode": "f188", + "label": "Bug", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c53 0 96 43 96 96v3.6c0 15.7-12.7 28.4-28.4 28.4H188.4c-15.7 0-28.4-12.7-28.4-28.4V96c0-53 43-96 96-96zM41.4 105.4c12.5-12.5 32.8-12.5 45.3 0l64 64c.7 .7 1.3 1.4 1.9 2.1c14.2-7.3 30.4-11.4 47.5-11.4H312c17.1 0 33.2 4.1 47.5 11.4c.6-.7 1.2-1.4 1.9-2.1l64-64c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-64 64c-.7 .7-1.4 1.3-2.1 1.9c6.2 12 10.1 25.3 11.1 39.5H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H416c0 24.6-5.5 47.8-15.4 68.6c2.2 1.3 4.2 2.9 6 4.8l64 64c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-63.1-63.1c-24.5 21.8-55.8 36.2-90.3 39.6V240c0-8.8-7.2-16-16-16s-16 7.2-16 16V479.2c-34.5-3.4-65.8-17.8-90.3-39.6L86.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l64-64c1.9-1.9 3.9-3.4 6-4.8C101.5 367.8 96 344.6 96 320H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96.3c1.1-14.1 5-27.5 11.1-39.5c-.7-.6-1.4-1.2-2.1-1.9l-64-64c-12.5-12.5-12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bug-slash": { + "changes": [ + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beetle", + "fix", + "glitch", + "insect", + "optimize", + "repair", + "report", + "warning" + ] + }, + "unicode": "e490", + "label": "Bug Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L477.4 348.9c1.7-9.4 2.6-19 2.6-28.9h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H479.7c-1.1-14.1-5-27.5-11.1-39.5c.7-.6 1.4-1.2 2.1-1.9l64-64c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-64 64c-.7 .7-1.3 1.4-1.9 2.1C409.2 164.1 393.1 160 376 160H264c-8.3 0-16.3 1-24 2.8L38.8 5.1zM320 0c-53 0-96 43-96 96v3.6c0 15.7 12.7 28.4 28.4 28.4H387.6c15.7 0 28.4-12.7 28.4-28.4V96c0-53-43-96-96-96zM160.3 256H96c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c0 24.6 5.5 47.8 15.4 68.6c-2.2 1.3-4.2 2.9-6 4.8l-64 64c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l63.1-63.1c24.5 21.8 55.8 36.2 90.3 39.6V335.5L166.7 227.3c-3.4 9-5.6 18.7-6.4 28.7zM336 479.2c36.6-3.6 69.7-19.6 94.8-43.8L336 360.7V479.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bugs": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bedbug", + "infestation", + "lice", + "plague", + "ticks" + ] + }, + "unicode": "e4d0", + "label": "Bugs", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M164.5 107.4l33.4-73.5c5.5-12.1 .1-26.3-11.9-31.8s-26.3-.1-31.8 11.9L128 71.7 101.9 14.1C96.4 2 82.1-3.3 70.1 2.1S52.7 21.9 58.1 33.9l33.4 73.5c-10.2 7.1-18.2 17-22.9 28.6h-17l-4.1-20.7c-2.6-13-15.2-21.4-28.2-18.8S-2.1 111.7 .5 124.7l8 40C10.7 175.9 20.6 184 32 184H64v23.3l-37.8 9.5c-9.5 2.4-16.6 10.2-17.9 19.9l-8 56c-1.9 13.1 7.2 25.3 20.4 27.2s25.3-7.2 27.2-20.4l5.7-40 18.4-4.6C82.7 274.6 103.8 288 128 288s45.3-13.4 56.1-33.2l18.4 4.6 5.7 40c1.9 13.1 14 22.2 27.2 20.4s22.2-14 20.4-27.2l-8-56c-1.4-9.7-8.5-17.5-17.9-19.9L192 207.3V184h32c11.4 0 21.3-8.1 23.5-19.3l8-40c2.6-13-5.8-25.6-18.8-28.2s-25.6 5.8-28.2 18.8L204.3 136h-17c-4.7-11.6-12.7-21.5-22.9-28.6zM496 286.5l65.6-47c10.8-7.7 13.3-22.7 5.6-33.5s-22.7-13.3-33.5-5.6l-51.4 36.8 6.1-62.9c1.3-13.2-8.4-24.9-21.6-26.2s-24.9 8.4-26.2 21.6L432.8 250c-12.3 1-24.2 5.6-34.1 13.3L384 254.8l6.8-20c4.2-12.6-2.5-26.2-15-30.4s-26.2 2.5-30.4 15l-13.1 38.6c-3.7 10.8 .8 22.8 10.7 28.5l27.7 16L359 322.7 321.5 312c-9.4-2.7-19.5 .6-25.5 8.3l-34.9 44.5c-8.2 10.4-6.4 25.5 4.1 33.7s25.5 6.4 33.7-4.1l25-31.8 18.2 5.2c-.5 22.6 11 44.7 32 56.8s45.9 11 65.2-.7l13.6 13.2-15.1 37.5c-4.9 12.3 1 26.3 13.3 31.2s26.3-1 31.2-13.3L503.5 440c3.6-9.1 1.4-19.4-5.6-26.2l-28-27.1 11.6-20.1 27.7 16c9.9 5.7 22.5 3.7 30-4.9L566.2 347c8.7-10 7.8-25.1-2.2-33.9s-25.1-7.8-33.9 2.2l-13.9 15.9-14.7-8.5c1.7-12.4-.2-25-5.5-36.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building": { + "aliases": { + "unicodes": { + "composite": [ + "1f3e2", + "f0f7" + ], + "secondary": [ + "10f1ad" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apartment", + "building", + "business", + "city", + "company", + "office", + "office building", + "urban", + "work" + ] + }, + "unicode": "f1ad", + "label": "Building", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16z" + }, + "regular": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 48c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16h80V400c0-26.5 21.5-48 48-48s48 21.5 48 48v64h80c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H64zM0 64C0 28.7 28.7 0 64 0H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm88 40c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16H104c-8.8 0-16-7.2-16-16V104zM232 88h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16H232c-8.8 0-16-7.2-16-16V104c0-8.8 7.2-16 16-16zM88 232c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16H104c-8.8 0-16-7.2-16-16V232zm144-16h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16H232c-8.8 0-16-7.2-16-16V232c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "building-circle-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "distribution center", + "office" + ] + }, + "unicode": "e4d1", + "label": "Building Circle Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V232.2c-39.1 32.3-64 81.1-64 135.8c0 49.5 20.4 94.2 53.3 126.2C364.5 505.1 351.1 512 336 512H240V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48V48zM80 224c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm112-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H272zM64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM176 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H176zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16zm96 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm140.7-67.3c-6.2 6.2-6.2 16.4 0 22.6L521.4 352H432c-8.8 0-16 7.2-16 16s7.2 16 16 16h89.4l-28.7 28.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l56-56c6.2-6.2 6.2-16.4 0-22.6l-56-56c-6.2-6.2-16.4-6.2-22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "not affected", + "office", + "ok", + "okay" + ] + }, + "unicode": "e4d2", + "label": "Building Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8C340.4 462.2 320 417.5 320 368c0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "building", + "city", + "office" + ] + }, + "unicode": "e4d3", + "label": "Building Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8C340.4 462.2 320 417.5 320 368c0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "destroy", + "office" + ] + }, + "unicode": "e4d4", + "label": "Building Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8C340.4 462.2 320 417.5 320 368c0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-columns": { + "aliases": { + "names": [ + "bank", + "institution", + "museum", + "university" + ], + "unicodes": { + "secondary": [ + "10f19c" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.0.3", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "building", + "college", + "education", + "institution", + "museum", + "students" + ] + }, + "unicode": "f19c", + "label": "Building Columns", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M243.4 2.6l-224 96c-14 6-21.8 21-18.7 35.8S16.8 160 32 160v8c0 13.3 10.7 24 24 24H456c13.3 0 24-10.7 24-24v-8c15.2 0 28.3-10.7 31.3-25.6s-4.8-29.9-18.7-35.8l-224-96c-8.1-3.4-17.2-3.4-25.2 0zM128 224H64V420.3c-.6 .3-1.2 .7-1.8 1.1l-48 32c-11.7 7.8-17 22.4-12.9 35.9S17.9 512 32 512H480c14.1 0 26.5-9.2 30.6-22.7s-1.1-28.1-12.9-35.9l-48-32c-.6-.4-1.2-.7-1.8-1.1V224H384V416H344V224H280V416H232V224H168V416H128V224zM256 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + " city", + "building", + "diplomat", + "embassy", + "flag", + "headquarters", + "united nations" + ] + }, + "unicode": "e4d5", + "label": "Building Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM448 0c-17.7 0-32 14.3-32 32V512h64V192H624c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H480c0-17.7-14.3-32-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "closed", + "lock", + "lockdown", + "quarantine", + "secure" + ] + }, + "unicode": "e4d6", + "label": "Building Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h88.6c-5.4-9.4-8.6-20.3-8.6-32V352c0-23.7 12.9-44.4 32-55.4V272c0-30.5 12.2-58.2 32-78.4V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM464 240c17.7 0 32 14.3 32 32v48H432V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H544c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-ngo": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + " city", + "building", + "non governmental organization", + "office" + ] + }, + "unicode": "e4d7", + "label": "Building Ngo", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM168 64h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H184v64h16V144c0-8.8 7.2-16 16-16s16 7.2 16 16v24c0 13.3-10.7 24-24 24H176c-13.3 0-24-10.7-24-24V80c0-8.8 7.2-16 16-16zM304 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16s16-7.2 16-16V112c0-8.8-7.2-16-16-16zm-48 16c0-26.5 21.5-48 48-48s48 21.5 48 48v32c0 26.5-21.5 48-48 48s-48-21.5-48-48V112zM61.3 71.1l34.7 52V80c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4L64 132.8V176c0 8.8-7.2 16-16 16s-16-7.2-16-16V80c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-shield": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "police", + "protect", + "safety" + ] + }, + "unicode": "e4d8", + "label": "Building Shield", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V207l-42.4 17H304 272c-8.8 0-16 7.2-16 16v32 24.2V304c0 .9 .1 1.7 .2 2.6c2.3 58.1 24.1 144.8 98.7 201.5c-5.8 2.5-12.2 3.9-18.9 3.9H240V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48V48zM80 224c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zM64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM176 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H176zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16zM423.1 225.7c5.7-2.3 12.1-2.3 17.8 0l120 48C570 277.4 576 286.2 576 296c0 63.3-25.9 168.8-134.8 214.2c-5.9 2.5-12.6 2.5-18.5 0C313.9 464.8 288 359.3 288 296c0-9.8 6-18.6 15.1-22.3l120-48zM527.4 312L432 273.8V461.7c68.2-33 91.5-99 95.4-149.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-un": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "office", + "united nations" + ] + }, + "unicode": "e4d9", + "label": "Building Un", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM237.3 71.1l34.7 52V80c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52V176c0 8.8-7.2 16-16 16s-16-7.2-16-16V80c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4zM112 80v64c0 8.8 7.2 16 16 16s16-7.2 16-16V80c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48V80c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-user": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apartment", + "building", + "city" + ] + }, + "unicode": "e4da", + "label": "Building User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h89.9c-6.3-10.2-9.9-22.2-9.9-35.1c0-46.9 25.8-87.8 64-109.2V271.8 48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM576 272a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM352 477.1c0 19.3 15.6 34.9 34.9 34.9H605.1c19.3 0 34.9-15.6 34.9-34.9c0-51.4-41.7-93.1-93.1-93.1H445.1c-51.4 0-93.1 41.7-93.1 93.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-wheat": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agriculture", + "building", + "city", + "usda" + ] + }, + "unicode": "e4db", + "label": "Building Wheat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H240V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48V48zM80 224c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm112-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H272zM64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM176 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H176zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16zm384 80v16c0 44.2-35.8 80-80 80H544V272c0-44.2 35.8-80 80-80h16zm0 128c0 44.2-35.8 80-80 80H544V384c0-44.2 35.8-80 80-80h16v16zm0 112c0 44.2-35.8 80-80 80H544V496c0-44.2 35.8-80 80-80h16v16zM512 496v16H496c-44.2 0-80-35.8-80-80V416h16c44.2 0 80 35.8 80 80zm0-96H496c-44.2 0-80-35.8-80-80V304h16c44.2 0 80 35.8 80 80v16zm0-128v16H496c-44.2 0-80-35.8-80-80V192h16c44.2 0 80 35.8 80 80zM528 32c13.3 0 24 10.7 24 24V160c0 13.3-10.7 24-24 24s-24-10.7-24-24V56c0-13.3 10.7-24 24-24zm96 64v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V96c0-13.3 10.7-24 24-24s24 10.7 24 24zM456 72c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V96c0-13.3 10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bullhorn": { + "aliases": { + "unicodes": { + "composite": [ + "1f4e2", + "1f56b" + ], + "secondary": [ + "10f0a1" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Bullhorn", + "announcement", + "broadcast", + "loud", + "louder", + "loudspeaker", + "megaphone", + "public address", + "share" + ] + }, + "unicode": "f0a1", + "label": "Bullhorn", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480 32c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9L381.7 53c-48 48-113.1 75-181 75H192 160 64c-35.3 0-64 28.7-64 64v96c0 35.3 28.7 64 64 64l0 128c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V352l8.7 0c67.9 0 133 27 181 75l43.6 43.6c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V300.4c18.6-8.8 32-32.5 32-60.4s-13.4-51.6-32-60.4V32zm-64 76.7V240 371.3C357.2 317.8 280.5 288 200.7 288H192V192h8.7c79.8 0 156.5-29.8 215.3-83.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bullseye": { + "aliases": { + "unicodes": { + "secondary": [ + "10f140" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.3.0", + "5.10.1", + "5.15.4", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archery", + "goal", + "objective", + "target" + ] + }, + "unicode": "f140", + "label": "Bullseye", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 256A192 192 0 1 0 64 256a192 192 0 1 0 384 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 80a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm0-224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zM224 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "burger": { + "aliases": { + "names": [ + "hamburger" + ], + "unicodes": { + "secondary": [ + "10f805" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bacon", + "beef", + "burger", + "burger king", + "cheeseburger", + "fast food", + "grill", + "ground beef", + "mcdonalds", + "sandwich" + ] + }, + "unicode": "f805", + "label": "Burger", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M45.1 224C29 224 16 211 16 194.9c0-1.9 .2-3.7 .6-5.6C21.9 168.3 62.8 32 240 32s218.1 136.3 223.4 157.3c.5 1.9 .6 3.7 .6 5.6c0 16.1-13 29.1-29.1 29.1H45.1zM128 128a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm240 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32zM256 96a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zM0 304c0-26.5 21.5-48 48-48H432c26.5 0 48 21.5 48 48s-21.5 48-48 48H48c-26.5 0-48-21.5-48-48zm16 96c0-8.8 7.2-16 16-16H448c8.8 0 16 7.2 16 16v16c0 35.3-28.7 64-64 64H80c-35.3 0-64-28.7-64-64V400z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "buromobelexperte": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f37f", + "label": "Büromöbel-Experte GmbH & Co. KG.", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boom", + "crash", + "explosion" + ] + }, + "unicode": "e4dc", + "label": "Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M37.6 4.2C28-2.3 15.2-1.1 7 7s-9.4 21-2.8 30.5l112 163.3L16.6 233.2C6.7 236.4 0 245.6 0 256s6.7 19.6 16.6 22.8l103.1 33.4L66.8 412.8c-4.9 9.3-3.2 20.7 4.3 28.1s18.8 9.2 28.1 4.3l100.6-52.9 33.4 103.1c3.2 9.9 12.4 16.6 22.8 16.6s19.6-6.7 22.8-16.6l33.4-103.1 100.6 52.9c9.3 4.9 20.7 3.2 28.1-4.3s9.2-18.8 4.3-28.1L392.3 312.2l103.1-33.4c9.9-3.2 16.6-12.4 16.6-22.8s-6.7-19.6-16.6-22.8L388.9 198.7l25.7-70.4c3.2-8.8 1-18.6-5.6-25.2s-16.4-8.8-25.2-5.6l-70.4 25.7L278.8 16.6C275.6 6.7 266.4 0 256 0s-19.6 6.7-22.8 16.6l-32.3 99.6L37.6 4.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bus": { + "aliases": { + "unicodes": { + "composite": [ + "1f68d" + ], + "secondary": [ + "10f207" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bus", + "oncoming", + "oncoming bus", + "public transportation", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f207", + "label": "Bus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0C390.4 0 480 35.2 480 80V96l0 32c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32l0 160c0 17.7-14.3 32-32 32v32c0 17.7-14.3 32-32 32H384c-17.7 0-32-14.3-32-32V448H160v32c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32l0-32c-17.7 0-32-14.3-32-32l0-160c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h0V96h0V80C32 35.2 121.6 0 256 0zM96 160v96c0 17.7 14.3 32 32 32H240V128H128c-17.7 0-32 14.3-32 32zM272 288H384c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H272V288zM112 400a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm288 0a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM352 80c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16s7.2 16 16 16H336c8.8 0 16-7.2 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bus-simple": { + "aliases": { + "names": [ + "bus-alt" + ], + "unicodes": { + "secondary": [ + "10f55e" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mta", + "public transportation", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f55e", + "label": "Bus Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0C348.8 0 448 35.2 448 80V96 416c0 17.7-14.3 32-32 32v32c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V448H128v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32l0-32c-17.7 0-32-14.3-32-32V96 80C0 35.2 99.2 0 224 0zM64 128V256c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32zM80 400a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm288 0a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "business-time": { + "aliases": { + "names": [ + "briefcase-clock" + ], + "unicodes": { + "secondary": [ + "10f64a" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alarm", + "briefcase", + "business socks", + "clock", + "flight of the conchords", + "reminder", + "wednesday" + ] + }, + "unicode": "f64a", + "label": "Business Time", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96H64C28.7 96 0 124.7 0 160v96H192 352h8.2c32.3-39.1 81.1-64 135.8-64c5.4 0 10.7 .2 16 .7V160c0-35.3-28.7-64-64-64H384V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zM320 352H224c-17.7 0-32-14.3-32-32V288H0V416c0 35.3 28.7 64 64 64H360.2C335.1 449.6 320 410.5 320 368c0-5.4 .2-10.7 .7-16l-.7 0zm320 16a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zM496 288c8.8 0 16 7.2 16 16v48h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H496c-8.8 0-16-7.2-16-16V304c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "buy-n-large": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f8a6", + "label": "Buy n Large", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 32C133.27 32 7.79 132.32 7.79 256S133.27 480 288 480s280.21-100.32 280.21-224S442.73 32 288 32zm-85.39 357.19L64.1 390.55l77.25-290.74h133.44c63.15 0 84.93 28.65 78 72.84a60.24 60.24 0 0 1-1.5 6.85 77.39 77.39 0 0 0-17.21-1.93c-42.35 0-76.69 33.88-76.69 75.65 0 37.14 27.14 68 62.93 74.45-18.24 37.16-56.16 60.92-117.71 61.52zM358 207.11h32l-22.16 90.31h-35.41l-11.19-35.63-7.83 35.63h-37.83l26.63-90.31h31.34l15 36.75zm145.86 182.08H306.79L322.63 328a78.8 78.8 0 0 0 11.47.83c42.34 0 76.69-33.87 76.69-75.65 0-32.65-21-60.46-50.38-71.06l21.33-82.35h92.5l-53.05 205.36h103.87zM211.7 269.39H187l-13.8 56.47h24.7c16.14 0 32.11-3.18 37.94-26.65 5.56-22.31-7.99-29.82-24.14-29.82zM233 170h-21.34L200 217.71h21.37c18 0 35.38-14.64 39.21-30.14C265.23 168.71 251.07 170 233 170z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "buysellads": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f20d", + "label": "BuySellAds", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "c": { + "aliases": { + "unicodes": { + "composite": [ + "63" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter C", + "Latin Small Letter C", + "letter" + ] + }, + "unicode": "43", + "label": "C", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M329.1 142.9c-62.5-62.5-155.8-62.5-218.3 0s-62.5 163.8 0 226.3s155.8 62.5 218.3 0c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3c-87.5 87.5-221.3 87.5-308.8 0s-87.5-229.3 0-316.8s221.3-87.5 308.8 0c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cable-car": { + "aliases": { + "names": [ + "tram" + ], + "unicodes": { + "composite": [ + "1f6a1", + "e0cf" + ], + "secondary": [ + "10f7da" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aerial tramway", + "cable", + "gondola", + "lift", + "mountain", + "mountain cableway", + "tram", + "tramway", + "trolley" + ] + }, + "unicode": "f7da", + "label": "Cable Car", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 0a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM160 56a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM32 288c0-35.3 28.7-64 64-64H232V157.5l-203.1 42c-13 2.7-25.7-5.7-28.4-18.6s5.7-25.7 18.6-28.4l232-48 232-48c13-2.7 25.7 5.7 28.4 18.6s-5.7 25.7-18.6 28.4L280 147.5V224H416c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V288zm64 0c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H96zm112 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H224c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cake-candles": { + "aliases": { + "names": [ + "birthday-cake", + "cake" + ], + "unicodes": { + "composite": [ + "1f382" + ], + "secondary": [ + "10f1fd" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anniversary", + "bakery", + "birthday", + "birthday cake", + "cake", + "candles", + "celebration", + "dessert", + "frosting", + "holiday", + "party", + "pastry", + "sweet" + ] + }, + "unicode": "f1fd", + "label": "Cake Candles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M86.4 5.5L61.8 47.6C58 54.1 56 61.6 56 69.2V72c0 22.1 17.9 40 40 40s40-17.9 40-40V69.2c0-7.6-2-15-5.8-21.6L105.6 5.5C103.6 2.1 100 0 96 0s-7.6 2.1-9.6 5.5zm128 0L189.8 47.6c-3.8 6.5-5.8 14-5.8 21.6V72c0 22.1 17.9 40 40 40s40-17.9 40-40V69.2c0-7.6-2-15-5.8-21.6L233.6 5.5C231.6 2.1 228 0 224 0s-7.6 2.1-9.6 5.5zM317.8 47.6c-3.8 6.5-5.8 14-5.8 21.6V72c0 22.1 17.9 40 40 40s40-17.9 40-40V69.2c0-7.6-2-15-5.8-21.6L361.6 5.5C359.6 2.1 356 0 352 0s-7.6 2.1-9.6 5.5L317.8 47.6zM128 176c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c-35.3 0-64 28.7-64 64v71c8.3 5.2 18.1 9 28.8 9c13.5 0 27.2-6.1 38.4-13.4c5.4-3.5 9.9-7.1 13-9.7c1.5-1.3 2.7-2.4 3.5-3.1c.4-.4 .7-.6 .8-.8l.1-.1 0 0 0 0s0 0 0 0s0 0 0 0c3.1-3.2 7.4-4.9 11.9-4.8s8.6 2.1 11.6 5.4l0 0 0 0 .1 .1c.1 .1 .4 .4 .7 .7c.7 .7 1.7 1.7 3.1 3c2.8 2.6 6.8 6.1 11.8 9.5c10.2 7.1 23 13.1 36.3 13.1s26.1-6 36.3-13.1c5-3.5 9-6.9 11.8-9.5c1.4-1.3 2.4-2.3 3.1-3c.3-.3 .6-.6 .7-.7l.1-.1c3-3.5 7.4-5.4 12-5.4s9 2 12 5.4l.1 .1c.1 .1 .4 .4 .7 .7c.7 .7 1.7 1.7 3.1 3c2.8 2.6 6.8 6.1 11.8 9.5c10.2 7.1 23 13.1 36.3 13.1s26.1-6 36.3-13.1c5-3.5 9-6.9 11.8-9.5c1.4-1.3 2.4-2.3 3.1-3c.3-.3 .6-.6 .7-.7l.1-.1c2.9-3.4 7.1-5.3 11.6-5.4s8.7 1.6 11.9 4.8l0 0 0 0 0 0 .1 .1c.2 .2 .4 .4 .8 .8c.8 .7 1.9 1.8 3.5 3.1c3.1 2.6 7.5 6.2 13 9.7c11.2 7.3 24.9 13.4 38.4 13.4c10.7 0 20.5-3.9 28.8-9V288c0-35.3-28.7-64-64-64V176c0-17.7-14.3-32-32-32s-32 14.3-32 32v48H256V176c0-17.7-14.3-32-32-32s-32 14.3-32 32v48H128V176zM448 394.6c-8.5 3.3-18.2 5.4-28.8 5.4c-22.5 0-42.4-9.9-55.8-18.6c-4.1-2.7-7.8-5.4-10.9-7.8c-2.8 2.4-6.1 5-9.8 7.5C329.8 390 310.6 400 288 400s-41.8-10-54.6-18.9c-3.5-2.4-6.7-4.9-9.4-7.2c-2.7 2.3-5.9 4.7-9.4 7.2C201.8 390 182.6 400 160 400s-41.8-10-54.6-18.9c-3.7-2.6-7-5.2-9.8-7.5c-3.1 2.4-6.8 5.1-10.9 7.8C71.2 390.1 51.3 400 28.8 400c-10.6 0-20.3-2.2-28.8-5.4V480c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32V394.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "calculator": { + "aliases": { + "unicodes": { + "composite": [ + "1f5a9" + ], + "secondary": [ + "10f1ec" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.3.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pocket Calculator", + "abacus", + "addition", + "arithmetic", + "counting", + "math", + "multiplication", + "subtraction" + ] + }, + "unicode": "f1ec", + "label": "Calculator", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM96 64H288c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32zm32 160a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zM96 352a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM64 416c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zM192 256a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm32 64a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm64-64a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm32 64a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zM288 448a32 32 0 1 1 0-64 32 32 0 1 1 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "calendar": { + "aliases": { + "unicodes": { + "composite": [ + "1f4c5", + "1f4c6" + ], + "secondary": [ + "10f133" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calendar", + "calendar-o", + "date", + "day", + "event", + "month", + "schedule", + "tear-off calendar", + "time", + "when", + "year" + ] + }, + "unicode": "f133", + "label": "Calendar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 32V64H48C21.5 64 0 85.5 0 112v48H448V112c0-26.5-21.5-48-48-48H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V64H160V32c0-17.7-14.3-32-32-32S96 14.3 96 32zM448 192H0V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V192z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H64C28.7 64 0 92.7 0 128v16 48V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H344V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H152V24zM48 192H400V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "calendar-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f274" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "appointment", + "confirm", + "correct", + "date", + "day", + "done", + "event", + "month", + "ok", + "schedule", + "select", + "success", + "tick", + "time", + "todo", + "when", + "year" + ] + }, + "unicode": "f274", + "label": "Calendar Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zM329 305c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-95 95-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L329 305z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c13.3 0 24 10.7 24 24V64H296V24c0-13.3 10.7-24 24-24s24 10.7 24 24V64h40c35.3 0 64 28.7 64 64v16 48V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192 144 128C0 92.7 28.7 64 64 64h40V24c0-13.3 10.7-24 24-24zM400 192H48V448c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V192zM329 297L217 409c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47 95-95c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "calendar-day": { + "aliases": { + "unicodes": { + "secondary": [ + "10f783" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "date", + "day", + "detail", + "event", + "focus", + "month", + "schedule", + "single day", + "time", + "today", + "when", + "year" + ] + }, + "unicode": "f783", + "label": "Calendar Day", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm80 64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "calendar-days": { + "aliases": { + "names": [ + "calendar-alt" + ], + "unicodes": { + "secondary": [ + "10f073" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.6.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calendar", + "date", + "day", + "event", + "month", + "schedule", + "time", + "when", + "year" + ] + }, + "unicode": "f073", + "label": "Calendar Days", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm64 80v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm128 0v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H336zM64 400v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H208zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H336c-8.8 0-16 7.2-16 16z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H64C28.7 64 0 92.7 0 128v16 48V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H344V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H152V24zM48 192h80v56H48V192zm0 104h80v64H48V296zm128 0h96v64H176V296zm144 0h80v64H320V296zm80-48H320V192h80v56zm0 160v40c0 8.8-7.2 16-16 16H320V408h80zm-128 0v56H176V408h96zm-144 0v56H64c-8.8 0-16-7.2-16-16V408h80zM272 248H176V192h96v56z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "calendar-minus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f272" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calendar", + "date", + "day", + "delete", + "event", + "month", + "negative", + "remove", + "schedule", + "time", + "when", + "year" + ] + }, + "unicode": "f272", + "label": "Calendar Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zM312 376c13.3 0 24-10.7 24-24s-10.7-24-24-24H136c-13.3 0-24 10.7-24 24s10.7 24 24 24H312z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c13.3 0 24 10.7 24 24V64H296V24c0-13.3 10.7-24 24-24s24 10.7 24 24V64h40c35.3 0 64 28.7 64 64v16 48V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192 144 128C0 92.7 28.7 64 64 64h40V24c0-13.3 10.7-24 24-24zM400 192H48V448c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V192zM296 352H152c-13.3 0-24-10.7-24-24s10.7-24 24-24H296c13.3 0 24 10.7 24 24s-10.7 24-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "calendar-plus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f271" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "calendar", + "create", + "date", + "day", + "event", + "month", + "new", + "positive", + "schedule", + "time", + "when", + "year" + ] + }, + "unicode": "f271", + "label": "Calendar Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 32V64H48C21.5 64 0 85.5 0 112v48H448V112c0-26.5-21.5-48-48-48H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V64H160V32c0-17.7-14.3-32-32-32S96 14.3 96 32zM448 192H0V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V192zM224 248c13.3 0 24 10.7 24 24v56h56c13.3 0 24 10.7 24 24s-10.7 24-24 24H248v56c0 13.3-10.7 24-24 24s-24-10.7-24-24V376H144c-13.3 0-24-10.7-24-24s10.7-24 24-24h56V272c0-13.3 10.7-24 24-24z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H64C28.7 64 0 92.7 0 128v16 48V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H344V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H152V24zM48 192H400V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192zm176 40c-13.3 0-24 10.7-24 24v48H152c-13.3 0-24 10.7-24 24s10.7 24 24 24h48v48c0 13.3 10.7 24 24 24s24-10.7 24-24V352h48c13.3 0 24-10.7 24-24s-10.7-24-24-24H248V256c0-13.3-10.7-24-24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "calendar-week": { + "aliases": { + "unicodes": { + "secondary": [ + "10f784" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "date", + "day", + "detail", + "event", + "focus", + "month", + "schedule", + "single week", + "time", + "today", + "when", + "year" + ] + }, + "unicode": "f784", + "label": "Calendar Week", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm80 64c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16H368c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "calendar-xmark": { + "aliases": { + "names": [ + "calendar-times" + ], + "unicodes": { + "secondary": [ + "10f273" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "calendar", + "date", + "day", + "delete", + "event", + "month", + "remove", + "schedule", + "time", + "when", + "x", + "year" + ] + }, + "unicode": "f273", + "label": "Calendar Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zM305 305c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c13.3 0 24 10.7 24 24V64H296V24c0-13.3 10.7-24 24-24s24 10.7 24 24V64h40c35.3 0 64 28.7 64 64v16 48V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192 144 128C0 92.7 28.7 64 64 64h40V24c0-13.3 10.7-24 24-24zM400 192H48V448c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V192zm-95 89l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "camera": { + "aliases": { + "names": [ + "camera-alt" + ], + "unicodes": { + "composite": [ + "f332" + ], + "primary": [ + "f332" + ], + "secondary": [ + "10f030", + "10f332" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "image", + "lens", + "photo", + "picture", + "record", + "shutter", + "video" + ] + }, + "unicode": "f030", + "label": "Camera", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M149.1 64.8L138.7 96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H373.3L362.9 64.8C356.4 45.2 338.1 32 317.4 32H194.6c-20.7 0-39 13.2-45.5 32.8zM256 192a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "camera-retro": { + "aliases": { + "unicodes": { + "composite": [ + "1f4f7" + ], + "secondary": [ + "10f083" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camera", + "image", + "lens", + "photo", + "picture", + "record", + "shutter", + "video" + ] + }, + "unicode": "f083", + "label": "Camera Retro", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M220.6 121.2L271.1 96 448 96v96H333.2c-21.9-15.1-48.5-24-77.2-24s-55.2 8.9-77.2 24H64V128H192c9.9 0 19.7-2.3 28.6-6.8zM0 128V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H271.1c-9.9 0-19.7 2.3-28.6 6.8L192 64H160V48c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16l0 16C28.7 64 0 92.7 0 128zM168 304a88 88 0 1 1 176 0 88 88 0 1 1 -176 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "camera-rotate": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flip", + "front-facing", + "photo", + "selfie" + ] + }, + "unicode": "e0d8", + "label": "Camera Rotate", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M149.1 64.8L138.7 96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H373.3L362.9 64.8C356.4 45.2 338.1 32 317.4 32H194.6c-20.7 0-39 13.2-45.5 32.8zM384 256c0 8.8-7.2 16-16 16H291.3c-6.2 0-11.3-5.1-11.3-11.3c0-3 1.2-5.9 3.3-8L307 229c-13.6-13.4-31.9-21-51-21c-19.2 0-37.7 7.6-51.3 21.3L185 249c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l19.7-19.7C193.4 172.7 224 160 256 160c31.8 0 62.4 12.6 85 35l23.7-23.7c2.1-2.1 5-3.3 8-3.3c6.2 0 11.3 5.1 11.3 11.3V256zM128 320c0-8.8 7.2-16 16-16h76.7c6.2 0 11.3 5.1 11.3 11.3c0 3-1.2 5.9-3.3 8L205 347c13.6 13.4 31.9 21 51 21c19.2 0 37.7-7.6 51.3-21.3L327 327c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-19.7 19.7C318.6 403.3 288 416 256 416c-31.8 0-62.4-12.6-85-35l-23.7 23.7c-2.1 2.1-5 3.3-8 3.3c-6.2 0-11.3-5.1-11.3-11.3V320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "campground": { + "aliases": { + "unicodes": { + "composite": [ + "26fa" + ], + "secondary": [ + "10f6bb" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camping", + "fall", + "outdoors", + "teepee", + "tent", + "tipi" + ] + }, + "unicode": "f6bb", + "label": "Campground", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M377 52c11-13.8 8.8-33.9-5-45s-33.9-8.8-45 5L288 60.8 249 12c-11-13.8-31.2-16-45-5s-16 31.2-5 45l48 60L12.3 405.4C4.3 415.4 0 427.7 0 440.4V464c0 26.5 21.5 48 48 48H288 528c26.5 0 48-21.5 48-48V440.4c0-12.7-4.3-25.1-12.3-35L329 112l48-60zM288 448H168.5L288 291.7 407.5 448H288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "canadian-maple-leaf": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "canada", + "flag", + "flora", + "nature", + "plant" + ] + }, + "unicode": "f785", + "label": "Canadian Maple Leaf", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M383.8 351.7c2.5-2.5 105.2-92.4 105.2-92.4l-17.5-7.5c-10-4.9-7.4-11.5-5-17.4 2.4-7.6 20.1-67.3 20.1-67.3s-47.7 10-57.7 12.5c-7.5 2.4-10-2.5-12.5-7.5s-15-32.4-15-32.4-52.6 59.9-55.1 62.3c-10 7.5-20.1 0-17.6-10 0-10 27.6-129.6 27.6-129.6s-30.1 17.4-40.1 22.4c-7.5 5-12.6 5-17.6-5C293.5 72.3 255.9 0 255.9 0s-37.5 72.3-42.5 79.8c-5 10-10 10-17.6 5-10-5-40.1-22.4-40.1-22.4S183.3 182 183.3 192c2.5 10-7.5 17.5-17.6 10-2.5-2.5-55.1-62.3-55.1-62.3S98.1 167 95.6 172s-5 9.9-12.5 7.5C73 177 25.4 167 25.4 167s17.6 59.7 20.1 67.3c2.4 6 5 12.5-5 17.4L23 259.3s102.6 89.9 105.2 92.4c5.1 5 10 7.5 5.1 22.5-5.1 15-10.1 35.1-10.1 35.1s95.2-20.1 105.3-22.6c8.7-.9 18.3 2.5 18.3 12.5S241 512 241 512h30s-5.8-102.7-5.8-112.8 9.5-13.4 18.4-12.5c10 2.5 105.2 22.6 105.2 22.6s-5-20.1-10-35.1 0-17.5 5-22.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "candy-cane": { + "aliases": { + "unicodes": { + "secondary": [ + "10f786" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "candy", + "christmas", + "holiday", + "mint", + "peppermint", + "striped", + "xmas" + ] + }, + "unicode": "f786", + "label": "Candy Cane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M348.8 131.5c3.7-2.3 7.9-3.5 12.2-3.5c12.7 0 23 10.3 23 23v5.6c0 9.9-5.1 19.1-13.5 24.3L30.1 393.7C.1 412.5-9 451.9 9.7 481.9s58.2 39.1 88.2 20.4L438.4 289.5c45.8-28.6 73.6-78.8 73.6-132.8V151C512 67.6 444.4 0 361 0c-28.3 0-56 8-80.1 23L254.1 39.7c-30 18.7-39.1 58.2-20.4 88.2s58.2 39.1 88.2 20.4l26.8-16.8zM298.4 49.8c9.2-5.7 19.1-10.1 29.4-13.1L348 97.5c-5.7 1.4-11.2 3.7-16.3 6.8l-12.6 7.9L298.4 49.8zm88.5 52.7l46.2-46.2c8.5 6.5 16.1 14.1 22.6 22.6l-46.2 46.2c-5.1-9.6-13-17.5-22.6-22.6zm28.9 59.3l61.6 20.5c-2.2 10.5-5.8 20.7-10.5 30.2l-62-20.7c6.2-8.8 10.1-19.1 11-30.1zm-86.1 82.5l60.4 37.7-30.2 18.9-60.4-37.7 30.2-18.9zm-107.2 67l60.4 37.7-30.2 18.9-60.4-37.7 30.2-18.9zM119.3 375.7l60.4 37.7-30.2 18.9L89.1 394.6l30.2-18.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cannabis": { + "aliases": { + "unicodes": { + "secondary": [ + "10f55f" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bud", + "chronic", + "drugs", + "endica", + "endo", + "ganja", + "marijuana", + "mary jane", + "pot", + "reefer", + "sativa", + "spliff", + "weed", + "whacky-tabacky" + ] + }, + "unicode": "f55f", + "label": "Cannabis", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M240 0c5.3 0 10.3 2.7 13.3 7.1c15.8 23.5 36.7 63.7 49.2 109c7.2 26.4 11.8 55.2 10.4 84c11.5-8.8 23.7-16.7 35.8-23.6c41-23.3 84.4-36.9 112.2-42.5c5.2-1 10.7 .6 14.4 4.4s5.4 9.2 4.4 14.5c-5.6 27.7-19.3 70.9-42.7 111.7c-9.1 15.9-19.9 31.7-32.4 46.3c27.8 6.6 52.4 17.3 67.2 25.5c5.1 2.8 8.2 8.2 8.2 14s-3.2 11.2-8.2 14c-15.2 8.4-40.9 19.5-69.8 26.1c-20.2 4.6-42.9 7.2-65.2 4.6l8.3 33.1c1.5 6.1-.6 12.4-5.5 16.4s-11.6 4.6-17.2 1.9L264 417.2V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V417.2l-58.5 29.1c-5.6 2.8-12.3 2.1-17.2-1.9s-7-10.3-5.5-16.4l8.3-33.1c-22.2 2.6-45 0-65.2-4.6c-28.9-6.6-54.6-17.6-69.8-26.1c-5.1-2.8-8.2-8.2-8.2-14s3.2-11.2 8.2-14c14.8-8.2 39.4-18.8 67.2-25.5C62.9 296.3 52.1 280.5 43 264.6C19.6 223.8 5.9 180.6 .3 152.9c-1.1-5.2 .6-10.7 4.4-14.5s9.2-5.4 14.4-4.4c27.9 5.5 71.2 19.2 112.2 42.5c12.1 6.9 24.3 14.7 35.8 23.6c-1.4-28.7 3.1-57.6 10.4-84c12.5-45.3 33.4-85.5 49.2-109c3-4.4 8-7.1 13.3-7.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "capsules": { + "aliases": { + "unicodes": { + "secondary": [ + "10f46b" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine", + "pills", + "prescription" + ] + }, + "unicode": "f46b", + "label": "Capsules", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 144c0-26.5 21.5-48 48-48s48 21.5 48 48V256H64V144zM0 144V368c0 61.9 50.1 112 112 112s112-50.1 112-112V189.6c1.8 19.1 8.2 38 19.8 54.8L372.3 431.7c35.5 51.7 105.3 64.3 156 28.1s63-107.5 27.5-159.2L427.3 113.3C391.8 61.5 321.9 49 271.3 85.2c-28 20-44.3 50.8-47.3 83V144c0-61.9-50.1-112-112-112S0 82.1 0 144zm296.6 64.2c-16-23.3-10-55.3 11.9-71c21.2-15.1 50.5-10.3 66 12.2l67 97.6L361.6 303l-65-94.8zM491 407.7c-.8 .6-1.6 1.1-2.4 1.6l4-2.8c-.5 .4-1 .8-1.6 1.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car": { + "aliases": { + "names": [ + "automobile" + ], + "unicodes": { + "composite": [ + "1f698" + ], + "secondary": [ + "10f1b9" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "automobile", + "car", + "oncoming", + "oncoming automobile", + "sedan", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f1b9", + "label": "Car", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M135.2 117.4L109.1 192H402.9l-26.1-74.6C372.3 104.6 360.2 96 346.6 96H165.4c-13.6 0-25.7 8.6-30.2 21.4zM39.6 196.8L74.8 96.3C88.3 57.8 124.6 32 165.4 32H346.6c40.8 0 77.1 25.8 90.6 64.3l35.2 100.5c23.2 9.6 39.6 32.5 39.6 59.2V400v48c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V400H96v48c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V400 256c0-26.7 16.4-49.6 39.6-59.2zM128 288a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-battery": { + "aliases": { + "names": [ + "battery-car" + ], + "unicodes": { + "secondary": [ + "10f5df" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "electric", + "mechanic", + "power" + ] + }, + "unicode": "f5df", + "label": "Car Battery", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M80 96c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32l96 0c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32h16c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64l16 0zm304 96c0-8.8-7.2-16-16-16s-16 7.2-16 16v32H320c-8.8 0-16 7.2-16 16s7.2 16 16 16h32v32c0 8.8 7.2 16 16 16s16-7.2 16-16V256h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H384V192zM80 240c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H96c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-burst": { + "aliases": { + "names": [ + "car-crash" + ], + "unicodes": { + "secondary": [ + "10f5e1" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accident", + "auto", + "automobile", + "insurance", + "sedan", + "transportation", + "vehicle", + "wreck" + ] + }, + "unicode": "f5e1", + "label": "Car Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M172 8c-6.6 0-12.4 4-14.9 10.1l-29.4 74L51.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L6.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L86.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6l35.3-32.5 9.5-35.4 10.4-38.6c8-29.9 30.5-52.1 57.9-60.9l41-59.2c11.3-16.3 26.4-28.9 43.5-37.2c-.4-.6-.8-1.2-1.3-1.8c-4.1-5.1-10.9-7.2-17.2-5.3L216.3 92.1l-29.4-74C184.4 12 178.6 8 172 8zM363.7 161.5l135.6 36.3c6.5 1.8 11.3 7.4 11.8 14.2l4.6 56.5-201.5-54 32.2-46.6c3.8-5.6 10.8-8.1 17.3-6.4zm-69.9-30l-47.9 69.3c-21.6 3-40.3 18.6-46.3 41l-10.4 38.6-16.6 61.8-8.3 30.9c-4.6 17.1 5.6 34.6 22.6 39.2l15.5 4.1c17.1 4.6 34.6-5.6 39.2-22.6l8.3-30.9 247.3 66.3-8.3 30.9c-4.6 17.1 5.6 34.6 22.6 39.2l15.5 4.1c17.1 4.6 34.6-5.6 39.2-22.6l8.3-30.9L591 388l10.4-38.6c6-22.4-2.5-45.2-19.6-58.7l-6.8-84c-2.7-33.7-26.4-62-59-70.8L380.2 99.7c-32.7-8.8-67.3 4-86.5 31.8zm-17 131a24 24 0 1 1 -12.4 46.4 24 24 0 1 1 12.4-46.4zm217.9 83.2A24 24 0 1 1 541 358.1a24 24 0 1 1 -46.4-12.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-on": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alarm", + "car", + "carjack", + "warning" + ] + }, + "unicode": "e4dd", + "label": "Car On", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M248 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v80c0 13.3 10.7 24 24 24s24-10.7 24-24V24zM153.8 224H294.2c6.8 0 12.8 4.3 15.1 10.6L328.3 288H119.7l19.1-53.4c2.3-6.4 8.3-10.6 15.1-10.6zM78.5 213.1L50.2 292.4C30.1 300.9 16 320.8 16 344v40 64 32c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V448H352v32c0 17.7 14.3 32 32 32h16c17.7 0 32-14.3 32-32V448 384 344c0-23.2-14.1-43.1-34.2-51.6l-28.3-79.3C358.1 181.3 328 160 294.2 160H153.8c-33.8 0-64 21.3-75.3 53.1zM96 344a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm232 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM7 39C-2.3 48.4-2.3 63.6 7 73l48 48c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L41 39C31.6 29.7 16.4 29.7 7 39zm400 0L359 87c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l48-48c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-rear": { + "aliases": { + "names": [ + "car-alt" + ], + "unicodes": { + "secondary": [ + "10f5de" + ] + } + }, + "changes": [ + "5.2.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "automobile", + "sedan", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f5de", + "label": "Car Rear", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M165.4 96H346.6c13.6 0 25.7 8.6 30.2 21.4L402.9 192H109.1l26.1-74.6c4.5-12.8 16.6-21.4 30.2-21.4zm-90.6 .3L39.6 196.8C16.4 206.4 0 229.3 0 256v80c0 23.7 12.9 44.4 32 55.4V448c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32V400H384v48c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V391.4c19.1-11.1 32-31.7 32-55.4V256c0-26.7-16.4-49.6-39.6-59.2L437.2 96.3C423.7 57.8 387.4 32 346.6 32H165.4c-40.8 0-77.1 25.8-90.6 64.3zM208 272h96c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H208c-8.8 0-16-7.2-16-16V288c0-8.8 7.2-16 16-16zM48 280c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H72c-13.3 0-24-10.7-24-24zm360-24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H408c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-side": { + "aliases": { + "unicodes": { + "composite": [ + "1f697" + ], + "secondary": [ + "10f5e4" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "automobile", + "car", + "sedan", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f5e4", + "label": "Car Side", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M171.3 96H224v96H111.3l30.4-75.9C146.5 104 158.2 96 171.3 96zM272 192V96h81.2c9.7 0 18.9 4.4 25 12l67.2 84H272zm256.2 1L428.2 68c-18.2-22.8-45.8-36-75-36H171.3c-39.3 0-74.6 23.9-89.1 60.3L40.6 196.4C16.8 205.8 0 228.9 0 256V368c0 17.7 14.3 32 32 32H65.3c7.6 45.4 47.1 80 94.7 80s87.1-34.6 94.7-80H385.3c7.6 45.4 47.1 80 94.7 80s87.1-34.6 94.7-80H608c17.7 0 32-14.3 32-32V320c0-65.2-48.8-119-111.8-127zM434.7 368a48 48 0 1 1 90.5 32 48 48 0 1 1 -90.5-32zM160 336a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-tunnel": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "road", + "tunnel" + ] + }, + "unicode": "e4de", + "label": "Car Tunnel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0C114.6 0 0 114.6 0 256V448c0 35.3 28.7 64 64 64h64H384h64c35.3 0 64-28.7 64-64V256C512 114.6 397.4 0 256 0zM384 512c-17.7 0-32-14.3-32-32V448H160v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V376c0-20.8 11.3-38.9 28.1-48.6l21-64.7c7.5-23.1 29-38.7 53.3-38.7H313.6c24.3 0 45.8 15.6 53.3 38.7l21 64.7c16.8 9.7 28.2 27.8 28.2 48.6V480c0 17.7-14.3 32-32 32zM190.8 277.5L177 320H335l-13.8-42.5c-1.1-3.3-4.1-5.5-7.6-5.5H198.4c-3.5 0-6.5 2.2-7.6 5.5zM168 408a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm200-24a24 24 0 1 0 -48 0 24 24 0 1 0 48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "caravan": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8ff" + ] + } + }, + "changes": [ + "5.12.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camper", + "motor home", + "rv", + "trailer", + "travel" + ] + }, + "unicode": "f8ff", + "label": "Caravan", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 112C0 67.8 35.8 32 80 32H416c88.4 0 160 71.6 160 160V352h32c17.7 0 32 14.3 32 32s-14.3 32-32 32l-32 0H288c0 53-43 96-96 96s-96-43-96-96H80c-44.2 0-80-35.8-80-80V112zM320 352H448V256H416c-8.8 0-16-7.2-16-16s7.2-16 16-16h32V160c0-17.7-14.3-32-32-32H352c-17.7 0-32 14.3-32 32V352zM96 128c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H224c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H96zm96 336a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "caret-down": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0d7" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "dropdown", + "expand", + "menu", + "more", + "triangle" + ] + }, + "unicode": "f0d7", + "label": "Caret Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "caret-left": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0d9" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "previous", + "triangle" + ] + }, + "unicode": "f0d9", + "label": "Caret Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M9.4 278.6c-12.5-12.5-12.5-32.8 0-45.3l128-128c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 256c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "caret-right": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0da" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "forward", + "next", + "triangle" + ] + }, + "unicode": "f0da", + "label": "Caret Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "caret-up": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0d8" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "collapse", + "triangle" + ] + }, + "unicode": "f0d8", + "label": "Caret Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M182.6 137.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H288c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "carrot": { + "aliases": { + "unicodes": { + "composite": [ + "1f955" + ], + "secondary": [ + "10f787" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bugs bunny", + "carrot", + "food", + "orange", + "vegan", + "vegetable" + ] + }, + "unicode": "f787", + "label": "Carrot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M346.7 6C337.6 17 320 42.3 320 72c0 40 15.3 55.3 40 80s40 40 80 40c29.7 0 55-17.6 66-26.7c4-3.3 6-8.2 6-13.3s-2-10-6-13.2c-11.4-9.1-38.3-26.8-74-26.8c-32 0-40 8-40 8s8-8 8-40c0-35.7-17.7-62.6-26.8-74C370 2 365.1 0 360 0s-10 2-13.3 6zM244.6 136c-40 0-77.1 18.1-101.7 48.2l60.5 60.5c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-55.3-55.3 0 .1L2.2 477.9C-2 487-.1 497.8 7 505s17.9 9 27.1 4.8l134.7-62.4-52.1-52.1c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L199.7 433l100.2-46.4c46.4-21.5 76.2-68 76.2-119.2C376 194.8 317.2 136 244.6 136z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cart-arrow-down": { + "aliases": { + "unicodes": { + "secondary": [ + "10f218" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "save", + "shopping" + ] + }, + "unicode": "f218", + "label": "Cart Arrow Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M24 0C10.7 0 0 10.7 0 24S10.7 48 24 48H69.5c3.8 0 7.1 2.7 7.9 6.5l51.6 271c6.5 34 36.2 58.5 70.7 58.5H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H199.7c-11.5 0-21.4-8.2-23.6-19.5L170.7 288H459.2c32.6 0 61.1-21.8 69.5-53.3l41-152.3C576.6 57 557.4 32 531.1 32H360V134.1l23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-64 64c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l23 23V32H120.1C111 12.8 91.6 0 69.5 0H24zM176 512a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm336-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cart-flatbed": { + "aliases": { + "names": [ + "dolly-flatbed" + ], + "unicodes": { + "secondary": [ + "10f474" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "inventory", + "shipping", + "transport" + ] + }, + "unicode": "f474", + "label": "Cart Flatbed", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64H48c8.8 0 16 7.2 16 16V368c0 44.2 35.8 80 80 80h18.7c-1.8 5-2.7 10.4-2.7 16c0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1-11-2.7-16H450.7c-1.8 5-2.7 10.4-2.7 16c0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1-11-2.7-16H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H144c-8.8 0-16-7.2-16-16V80C128 35.8 92.2 0 48 0H32zM192 80V272c0 26.5 21.5 48 48 48H560c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H464V176c0 5.9-3.2 11.3-8.5 14.1s-11.5 2.5-16.4-.8L400 163.2l-39.1 26.1c-4.9 3.3-11.2 3.6-16.4 .8s-8.5-8.2-8.5-14.1V32H240c-26.5 0-48 21.5-48 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cart-flatbed-suitcase": { + "aliases": { + "names": [ + "luggage-cart" + ], + "unicodes": { + "secondary": [ + "10f59d" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airport", + "bag", + "baggage", + "suitcase", + "travel" + ] + }, + "unicode": "f59d", + "label": "Cart Flatbed Suitcase", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H48c44.2 0 80 35.8 80 80V368c0 8.8 7.2 16 16 16H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H541.3c1.8 5 2.7 10.4 2.7 16c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-5.6 1-11 2.7-16H253.3c1.8 5 2.7 10.4 2.7 16c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-5.6 1-11 2.7-16H144c-44.2 0-80-35.8-80-80V80c0-8.8-7.2-16-16-16H32C14.3 64 0 49.7 0 32zM432 96V56c0-4.4-3.6-8-8-8H344c-4.4 0-8 3.6-8 8V96h96zM288 96V56c0-30.9 25.1-56 56-56h80c30.9 0 56 25.1 56 56V96 320H288V96zM512 320V96h16c26.5 0 48 21.5 48 48V272c0 26.5-21.5 48-48 48H512zM240 96h16V320H240c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cart-plus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f217" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "new", + "positive", + "shopping" + ] + }, + "unicode": "f217", + "label": "Cart Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 24C0 10.7 10.7 0 24 0H69.5c22 0 41.5 12.8 50.6 32h411c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3H170.7l5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H199.7c-34.6 0-64.3-24.6-70.7-58.5L77.4 54.5c-.7-3.8-4-6.5-7.9-6.5H24C10.7 48 0 37.3 0 24zM128 464a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm336-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM252 160c0 11 9 20 20 20h44v44c0 11 9 20 20 20s20-9 20-20V180h44c11 0 20-9 20-20s-9-20-20-20H356V96c0-11-9-20-20-20s-20 9-20 20v44H272c-11 0-20 9-20 20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cart-shopping": { + "aliases": { + "names": [ + "shopping-cart" + ], + "unicodes": { + "composite": [ + "1f6d2" + ], + "secondary": [ + "10f07a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cart", + "checkout", + "grocery", + "payment", + "purchase", + "shopping", + "shopping cart", + "trolley" + ] + }, + "unicode": "f07a", + "label": "Cart Shopping", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 24C0 10.7 10.7 0 24 0H69.5c22 0 41.5 12.8 50.6 32h411c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3H170.7l5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H199.7c-34.6 0-64.3-24.6-70.7-58.5L77.4 54.5c-.7-3.8-4-6.5-7.9-6.5H24C10.7 48 0 37.3 0 24zM128 464a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm336-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cash-register": { + "aliases": { + "unicodes": { + "secondary": [ + "10f788" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cha-ching", + "change", + "checkout", + "commerce", + "leaerboard", + "machine", + "pay", + "payment", + "purchase", + "store" + ] + }, + "unicode": "f788", + "label": "Cash Register", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 0C46.3 0 32 14.3 32 32V96c0 17.7 14.3 32 32 32h80v32H87c-31.6 0-58.5 23.1-63.3 54.4L1.1 364.1C.4 368.8 0 373.6 0 378.4V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V378.4c0-4.8-.4-9.6-1.1-14.4L488.2 214.4C483.5 183.1 456.6 160 425 160H208V128h80c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H64zM96 48H256c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16s7.2-16 16-16zM64 432c0-8.8 7.2-16 16-16H432c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm48-168a24 24 0 1 1 0-48 24 24 0 1 1 0 48zm120-24a24 24 0 1 1 -48 0 24 24 0 1 1 48 0zM160 344a24 24 0 1 1 0-48 24 24 0 1 1 0 48zM328 240a24 24 0 1 1 -48 0 24 24 0 1 1 48 0zM256 344a24 24 0 1 1 0-48 24 24 0 1 1 0 48zM424 240a24 24 0 1 1 -48 0 24 24 0 1 1 48 0zM352 344a24 24 0 1 1 0-48 24 24 0 1 1 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cat": { + "aliases": { + "unicodes": { + "composite": [ + "1f408" + ], + "secondary": [ + "10f6be" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cat", + "feline", + "halloween", + "holiday", + "kitten", + "kitty", + "meow", + "pet" + ] + }, + "unicode": "f6be", + "label": "Cat", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669918857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 192h17.1c22.1 38.3 63.5 64 110.9 64c11 0 21.8-1.4 32-4v4 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V339.2L248 448h56c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-53 0-96-43-96-96V192.5c0-16.1-12-29.8-28-31.8l-7.9-1C10.5 157.6-1.9 141.6 .2 124s18.2-30 35.7-27.8l7.9 1c48 6 84.1 46.8 84.1 95.3v85.3c34.4-51.7 93.2-85.8 160-85.8zm160 26.5v0c-10 3.5-20.8 5.5-32 5.5c-28.4 0-54-12.4-71.6-32h0c-3.7-4.1-7-8.5-9.9-13.2C325.3 164 320 146.6 320 128v0V32 12 10.7C320 4.8 324.7 .1 330.6 0h.2c3.3 0 6.4 1.6 8.4 4.2l0 .1L352 21.3l27.2 36.3L384 64h64l4.8-6.4L480 21.3 492.8 4.3l0-.1c2-2.6 5.1-4.2 8.4-4.2h.2C507.3 .1 512 4.8 512 10.7V12 32v96c0 17.3-4.6 33.6-12.6 47.6c-11.3 19.8-29.6 35.2-51.4 42.9zM400 128a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm48 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cc-amazon-pay": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42d", + "label": "Amazon Pay Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-amex": { + "changes": [ + "4.2.0", + "5.0.0", + "5.7.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "amex" + ] + }, + "unicode": "f1f3", + "label": "American Express Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M48 480C21.49 480 0 458.5 0 432V80C0 53.49 21.49 32 48 32H528C554.5 32 576 53.49 576 80V82.43H500.5L483.5 130L466.6 82.43H369.4V145.6L341.3 82.43H262.7L181 267.1H246.8V430.9H450.5L482.4 395.8L514.3 430.9H576V432C576 458.5 554.5 480 528 480H48zM482.6 364L440.4 410.3H390.5L458 338.6L390.5 266.1H441.9L483.4 312.8L525.4 266.1H576L508 338.2L576 410.3H524.6L482.6 364zM576 296.9V380.2L536.7 338.3L576 296.9zM307.6 377.1H390.6V410.3H268.6V267.1H390.6V300.2H307.6V322.6H388.5V354.9H307.6V377.2V377.1zM537.3 145.7L500.4 246.3H466L429.2 146V246.3H390.5V103H451.7L483.6 192.3L515.8 103H576V246.3H537.3V145.7zM334.5 217.6H268.6L256.7 246.3H213.7L276.1 103H327.3L390.6 246.3H346.5L334.5 217.6zM301.5 138.5L282 185.4H320.9L301.5 138.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-apple-pay": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f416", + "label": "Apple Pay Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-diners-club": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f24c", + "label": "Diner's Club Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-discover": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1f2", + "label": "Discover Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M520.4 196.1c0-7.9-5.5-12.1-15.6-12.1h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-44.1 138.9c22.6 0 52.9-4.1 52.9 24.4 0 12.6-6.6 20.7-18.7 23.2l25.8 34.4h-19.6l-22.2-32.8h-2.2v32.8h-16zm-55.9.1h45.3v14H444v18.2h28.3V217H444v22.2h29.3V253H428zm-68.7 0l21.9 55.2 22.2-55.2h17.5l-35.5 84.2h-8.6l-35-84.2zm-55.9-3c24.7 0 44.6 20 44.6 44.6 0 24.7-20 44.6-44.6 44.6-24.7 0-44.6-20-44.6-44.6 0-24.7 20-44.6 44.6-44.6zm-49.3 6.1v19c-20.1-20.1-46.8-4.7-46.8 19 0 25 27.5 38.5 46.8 19.2v19c-29.7 14.3-63.3-5.7-63.3-38.2 0-31.2 33.1-53 63.3-38zm-97.2 66.3c11.4 0 22.4-15.3-3.3-24.4-15-5.5-20.2-11.4-20.2-22.7 0-23.2 30.6-31.4 49.7-14.3l-8.4 10.8c-10.4-11.6-24.9-6.2-24.9 2.5 0 4.4 2.7 6.9 12.3 10.3 18.2 6.6 23.6 12.5 23.6 25.6 0 29.5-38.8 37.4-56.6 11.3l10.3-9.9c3.7 7.1 9.9 10.8 17.5 10.8zM55.4 253H32v-82h23.4c26.1 0 44.1 17 44.1 41.1 0 18.5-13.2 40.9-44.1 40.9zm67.5 0h-16v-82h16zM544 433c0 8.2-6.8 15-15 15H128c189.6-35.6 382.7-139.2 416-160zM74.1 191.6c-5.2-4.9-11.6-6.6-21.9-6.6H48v54.2h4.2c10.3 0 17-2 21.9-6.4 5.7-5.2 8.9-12.8 8.9-20.7s-3.2-15.5-8.9-20.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-jcb": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f24b", + "label": "JCB Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-mastercard": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1f1", + "label": "MasterCard Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-paypal": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1f4", + "label": "Paypal Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-stripe": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1f5", + "label": "Stripe Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M492.4 220.8c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7zM375 223.4c-8.2 0-13.3 2.9-17 7l.2 52.8c3.5 3.7 8.5 6.7 16.8 6.7 13.1 0 21.9-14.3 21.9-33.4 0-18.6-9-33.2-21.9-33.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM122.2 281.1c0 25.6-20.3 40.1-49.9 40.3-12.2 0-25.6-2.4-38.8-8.1v-33.9c12 6.4 27.1 11.3 38.9 11.3 7.9 0 13.6-2.1 13.6-8.7 0-17-54-10.6-54-49.9 0-25.2 19.2-40.2 48-40.2 11.8 0 23.5 1.8 35.3 6.5v33.4c-10.8-5.8-24.5-9.1-35.3-9.1-7.5 0-12.1 2.2-12.1 7.7 0 16 54.3 8.4 54.3 50.7zm68.8-56.6h-27V275c0 20.9 22.5 14.4 27 12.6v28.9c-4.7 2.6-13.3 4.7-24.9 4.7-21.1 0-36.9-15.5-36.9-36.5l.2-113.9 34.7-7.4v30.8H191zm74 2.4c-4.5-1.5-18.7-3.6-27.1 7.4v84.4h-35.5V194.2h30.7l2.2 10.5c8.3-15.3 24.9-12.2 29.6-10.5h.1zm44.1 91.8h-35.7V194.2h35.7zm0-142.9l-35.7 7.6v-28.9l35.7-7.6zm74.1 145.5c-12.4 0-20-5.3-25.1-9l-.1 40.2-35.5 7.5V194.2h31.3l1.8 8.8c4.9-4.5 13.9-11.1 27.8-11.1 24.9 0 48.4 22.5 48.4 63.8 0 45.1-23.2 65.5-48.6 65.6zm160.4-51.5h-69.5c1.6 16.6 13.8 21.5 27.6 21.5 14.1 0 25.2-3 34.9-7.9V312c-9.7 5.3-22.4 9.2-39.4 9.2-34.6 0-58.8-21.7-58.8-64.5 0-36.2 20.5-64.9 54.3-64.9 33.7 0 51.3 28.7 51.3 65.1 0 3.5-.3 10.9-.4 12.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-visa": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1f0", + "label": "Visa Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cedi-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Cedi Sign", + "currency" + ] + }, + "unicode": "e0df", + "label": "Cedi Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M224 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V66.7C69.2 81.9 0 160.9 0 256s69.2 174.1 160 189.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V445.3c30.9-5.2 59.2-17.7 83.2-35.8c14.1-10.6 17-30.7 6.4-44.8s-30.7-17-44.8-6.4c-13.2 9.9-28.3 17.3-44.8 21.6V132c16.4 4.2 31.6 11.6 44.8 21.6c14.1 10.6 34.2 7.8 44.8-6.4s7.8-34.2-6.4-44.8c-24-18-52.4-30.6-83.2-35.8V32zM160 132V380c-55.2-14.2-96-64.3-96-124s40.8-109.8 96-124z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cent-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Cent Sign", + "currency" + ] + }, + "unicode": "e3f5", + "label": "Cent Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M192 0c17.7 0 32 14.3 32 32V66.7c30.9 5.2 59.2 17.7 83.2 35.8c14.1 10.6 17 30.7 6.4 44.8s-30.7 17-44.8 6.4C247.4 137.5 220.9 128 192 128c-70.7 0-128 57.3-128 128s57.3 128 128 128c28.9 0 55.4-9.5 76.8-25.6c14.1-10.6 34.2-7.8 44.8 6.4s7.8 34.2-6.4 44.8c-24 18-52.4 30.6-83.2 35.8V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.3C69.2 430.1 0 351.1 0 256S69.2 81.9 160 66.7V32c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "centercode": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f380", + "label": "Centercode", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "centos": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "unicode": "f789", + "label": "Centos", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M289.6 97.5l31.6 31.7-76.3 76.5V97.5zm-162.4 31.7l76.3 76.5V97.5h-44.7zm41.5-41.6h44.7v127.9l10.8 10.8 10.8-10.8V87.6h44.7L224.2 32zm26.2 168.1l-10.8-10.8H55.5v-44.8L0 255.7l55.5 55.6v-44.8h128.6l10.8-10.8zm79.3-20.7h107.9v-44.8l-31.6-31.7zm173.3 20.7L392 200.1v44.8H264.3l-10.8 10.8 10.8 10.8H392v44.8l55.5-55.6zM65.4 176.2l32.5-31.7 90.3 90.5h15.3v-15.3l-90.3-90.5 31.6-31.7H65.4zm316.7-78.7h-78.5l31.6 31.7-90.3 90.5V235h15.3l90.3-90.5 31.6 31.7zM203.5 413.9V305.8l-76.3 76.5 31.6 31.7h44.7zM65.4 235h108.8l-76.3-76.5-32.5 31.7zm316.7 100.2l-31.6 31.7-90.3-90.5h-15.3v15.3l90.3 90.5-31.6 31.7h78.5zm0-58.8H274.2l76.3 76.5 31.6-31.7zm-60.9 105.8l-76.3-76.5v108.1h44.7zM97.9 352.9l76.3-76.5H65.4v44.8zm181.8 70.9H235V295.9l-10.8-10.8-10.8 10.8v127.9h-44.7l55.5 55.6zm-166.5-41.6l90.3-90.5v-15.3h-15.3l-90.3 90.5-32.5-31.7v78.7h79.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "certificate": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0a3" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "badge", + "star", + "verified" + ] + }, + "unicode": "f0a3", + "label": "Certificate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321795, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M211 7.3C205 1 196-1.4 187.6 .8s-14.9 8.9-17.1 17.3L154.7 80.6l-62-17.5c-8.4-2.4-17.4 0-23.5 6.1s-8.5 15.1-6.1 23.5l17.5 62L18.1 170.6c-8.4 2.1-15 8.7-17.3 17.1S1 205 7.3 211l46.2 45L7.3 301C1 307-1.4 316 .8 324.4s8.9 14.9 17.3 17.1l62.5 15.8-17.5 62c-2.4 8.4 0 17.4 6.1 23.5s15.1 8.5 23.5 6.1l62-17.5 15.8 62.5c2.1 8.4 8.7 15 17.1 17.3s17.3-.2 23.4-6.4l45-46.2 45 46.2c6.1 6.2 15 8.7 23.4 6.4s14.9-8.9 17.1-17.3l15.8-62.5 62 17.5c8.4 2.4 17.4 0 23.5-6.1s8.5-15.1 6.1-23.5l-17.5-62 62.5-15.8c8.4-2.1 15-8.7 17.3-17.1s-.2-17.3-6.4-23.4l-46.2-45 46.2-45c6.2-6.1 8.7-15 6.4-23.4s-8.9-14.9-17.3-17.1l-62.5-15.8 17.5-62c2.4-8.4 0-17.4-6.1-23.5s-15.1-8.5-23.5-6.1l-62 17.5L341.4 18.1c-2.1-8.4-8.7-15-17.1-17.3S307 1 301 7.3L256 53.5 211 7.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chair": { + "aliases": { + "unicodes": { + "composite": [ + "1fa91" + ], + "secondary": [ + "10f6c0" + ] + } + }, + "changes": [ + "5.4.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chair", + "furniture", + "seat", + "sit" + ] + }, + "unicode": "f6c0", + "label": "Chair", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M248 48V256h48V58.7c23.9 13.8 40 39.7 40 69.3V256h48V128C384 57.3 326.7 0 256 0H192C121.3 0 64 57.3 64 128V256h48V128c0-29.6 16.1-55.5 40-69.3V256h48V48h48zM48 288c-12.1 0-23.2 6.8-28.6 17.7l-16 32c-5 9.9-4.4 21.7 1.4 31.1S20.9 384 32 384l0 96c0 17.7 14.3 32 32 32s32-14.3 32-32V384H352v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384c11.1 0 21.4-5.7 27.2-15.2s6.4-21.2 1.4-31.1l-16-32C423.2 294.8 412.1 288 400 288H48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chalkboard": { + "aliases": { + "names": [ + "blackboard" + ], + "unicodes": { + "secondary": [ + "10f51b" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blackboard", + "learning", + "school", + "teaching", + "whiteboard", + "writing" + ] + }, + "unicode": "f51b", + "label": "Chalkboard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 32C60.7 32 32 60.7 32 96V384H96V96l384 0V384h64V96c0-35.3-28.7-64-64-64H96zM224 384v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H416V384c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chalkboard-user": { + "aliases": { + "names": [ + "chalkboard-teacher" + ], + "unicodes": { + "secondary": [ + "10f51c" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blackboard", + "instructor", + "learning", + "professor", + "school", + "whiteboard", + "writing" + ] + }, + "unicode": "f51c", + "label": "Chalkboard User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M160 64c0-35.3 28.7-64 64-64H576c35.3 0 64 28.7 64 64V352c0 35.3-28.7 64-64 64H336.8c-11.8-25.5-29.9-47.5-52.4-64H384V320c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v32h64V64L224 64v49.1C205.2 102.2 183.3 96 160 96V64zm0 64a96 96 0 1 1 0 192 96 96 0 1 1 0-192zM133.3 352h53.3C260.3 352 320 411.7 320 485.3c0 14.7-11.9 26.7-26.7 26.7H26.7C11.9 512 0 500.1 0 485.3C0 411.7 59.7 352 133.3 352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "champagne-glasses": { + "aliases": { + "names": [ + "glass-cheers" + ], + "unicodes": { + "composite": [ + "1f942" + ], + "secondary": [ + "10f79f" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "celebrate", + "celebration", + "champagne", + "clink", + "clinking glasses", + "drink", + "glass", + "holiday", + "new year's eve", + "party", + "toast" + ] + }, + "unicode": "f79f", + "label": "Champagne Glasses", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670852333, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M155.6 17.3C163 3 179.9-3.6 195 1.9L320 47.5l125-45.6c15.1-5.5 32 1.1 39.4 15.4l78.8 152.9c28.8 55.8 10.3 122.3-38.5 156.6L556.1 413l41-15c16.6-6 35 2.5 41 19.1s-2.5 35-19.1 41l-71.1 25.9L476.8 510c-16.6 6.1-35-2.5-41-19.1s2.5-35 19.1-41l41-15-31.3-86.2c-59.4 5.2-116.2-34-130-95.2L320 188.8l-14.6 64.7c-13.8 61.3-70.6 100.4-130 95.2l-31.3 86.2 41 15c16.6 6 25.2 24.4 19.1 41s-24.4 25.2-41 19.1L92.2 484.1 21.1 458.2c-16.6-6.1-25.2-24.4-19.1-41s24.4-25.2 41-19.1l41 15 31.3-86.2C66.5 292.5 48.1 226 76.9 170.2L155.6 17.3zm44 54.4l-27.2 52.8L261.6 157l13.1-57.9L199.6 71.7zm240.9 0L365.4 99.1 378.5 157l89.2-32.5L440.5 71.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "charging-station": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5e7" + ] + } + }, + "changes": [ + "5.2.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "ev", + "tesla", + "vehicle" + ] + }, + "unicode": "f5e7", + "label": "Charging Station", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C60.7 0 32 28.7 32 64V448c-17.7 0-32 14.3-32 32s14.3 32 32 32H320c17.7 0 32-14.3 32-32s-14.3-32-32-32V304h16c22.1 0 40 17.9 40 40v32c0 39.8 32.2 72 72 72s72-32.2 72-72V252.3c32.5-10.2 56-40.5 56-76.3V144c0-8.8-7.2-16-16-16H544V80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H480V80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H432c-8.8 0-16 7.2-16 16v32c0 35.8 23.5 66.1 56 76.3V376c0 13.3-10.7 24-24 24s-24-10.7-24-24V344c0-48.6-39.4-88-88-88H320V64c0-35.3-28.7-64-64-64H96zM216.9 82.7c6 4 8.5 11.5 6.3 18.3l-25 74.9H256c6.7 0 12.7 4.2 15 10.4s.5 13.3-4.6 17.7l-112 96c-5.5 4.7-13.4 5.1-19.3 1.1s-8.5-11.5-6.3-18.3l25-74.9H96c-6.7 0-12.7-4.2-15-10.4s-.5-13.3 4.6-17.7l112-96c5.5-4.7 13.4-5.1 19.3-1.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-area": { + "aliases": { + "names": [ + "area-chart" + ], + "unicodes": { + "secondary": [ + "10f1fe" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "area", + "chart", + "graph" + ] + }, + "unicode": "f1fe", + "label": "Chart Area", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V400c0 44.2 35.8 80 80 80H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H80c-8.8 0-16-7.2-16-16V64zm96 288H448c17.7 0 32-14.3 32-32V251.8c0-7.6-2.7-15-7.7-20.8l-65.8-76.8c-12.1-14.2-33.7-15-46.9-1.8l-21 21c-10 10-26.4 9.2-35.4-1.6l-39.2-47c-12.6-15.1-35.7-15.4-48.7-.6L135.9 215c-5.1 5.8-7.9 13.3-7.9 21.1v84c0 17.7 14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-bar": { + "aliases": { + "names": [ + "bar-chart" + ], + "unicodes": { + "secondary": [ + "10f080" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "bar", + "chart", + "graph" + ] + }, + "unicode": "f080", + "label": "Chart Bar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zm96 96c0-17.7 14.3-32 32-32l192 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32zm32 64H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + }, + "regular": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M24 32c13.3 0 24 10.7 24 24V408c0 13.3 10.7 24 24 24H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H72c-39.8 0-72-32.2-72-72V56C0 42.7 10.7 32 24 32zM128 136c0-13.3 10.7-24 24-24l208 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-208 0c-13.3 0-24-10.7-24-24zm24 72H296c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24zm0 96H424c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chart-column": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bar", + "bar chart", + "chart", + "graph", + "track", + "trend" + ] + }, + "unicode": "e0e3", + "label": "Chart Column", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zM160 224c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V256c0-17.7 14.3-32 32-32zm128-64V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32zm64 32c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32zM480 96V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V96c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-gantt": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "graph", + "track", + "trend" + ] + }, + "unicode": "e0e4", + "label": "Chart Gantt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zm96 96c0-17.7 14.3-32 32-32l96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32zm96 64H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm160 96h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-line": { + "aliases": { + "names": [ + "line-chart" + ], + "unicodes": { + "secondary": [ + "10f201" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "activity", + "analytics", + "chart", + "dashboard", + "gain", + "graph", + "increase", + "line" + ] + }, + "unicode": "f201", + "label": "Chart Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V400c0 44.2 35.8 80 80 80H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H80c-8.8 0-16-7.2-16-16V64zm406.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L320 210.7l-57.4-57.4c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L240 221.3l57.4 57.4c12.5 12.5 32.8 12.5 45.3 0l128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-pie": { + "aliases": { + "names": [ + "pie-chart" + ], + "unicodes": { + "secondary": [ + "10f200" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "chart", + "diagram", + "graph", + "pie" + ] + }, + "unicode": "f200", + "label": "Chart Pie", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M302 240V16.6c0-9 7-16.6 16-16.6C441.7 0 542 100.3 542 224c0 9-7.6 16-16.6 16H302zM30 272C30 150.7 120.1 50.3 237 34.3c9.2-1.3 17 6.1 17 15.4V288L410.5 444.5c6.7 6.7 6.2 17.7-1.5 23.1C369.8 495.6 321.8 512 270 512C137.5 512 30 404.6 30 272zm526.4 16c9.3 0 16.6 7.8 15.4 17c-7.7 55.9-34.6 105.6-73.9 142.3c-6 5.6-15.4 5.2-21.2-.7L318 288H556.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-simple": { + "changes": [ + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "bar", + "chart", + "column", + "graph", + "row", + "trend" + ] + }, + "unicode": "e473", + "label": "Chart Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 80c0-26.5 21.5-48 48-48h32c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48V80zM0 272c0-26.5 21.5-48 48-48H80c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V272zM368 96h32c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48H368c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "check": { + "aliases": { + "unicodes": { + "composite": [ + "2713", + "2714" + ], + "secondary": [ + "10f00c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Check Mark", + "accept", + "agree", + "check", + "check mark", + "checkmark", + "confirm", + "correct", + "done", + "mark", + "notice", + "notification", + "notify", + "ok", + "select", + "success", + "tick", + "todo", + "yes", + "✓" + ] + }, + "unicode": "f00c", + "label": "Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321796, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "check-double": { + "aliases": { + "unicodes": { + "secondary": [ + "10f560" + ] + } + }, + "changes": [ + "5.1.0", + "5.8.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "checkmark", + "confirm", + "correct", + "done", + "notice", + "notification", + "notify", + "ok", + "select", + "success", + "tick", + "todo" + ] + }, + "unicode": "f560", + "label": "Check Double", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321796, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M374.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 178.7l-57.4-57.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l80 80c12.5 12.5 32.8 12.5 45.3 0l160-160zm96 128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 402.7 86.6 297.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l256-256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "check-to-slot": { + "aliases": { + "names": [ + "vote-yea" + ], + "unicodes": { + "secondary": [ + "10f772" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "cast", + "election", + "politics", + "positive", + "voting", + "yes" + ] + }, + "unicode": "f772", + "label": "Check To Slot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 80c0-26.5 21.5-48 48-48H432c26.5 0 48 21.5 48 48V384H96V80zm313 47c-9.4-9.4-24.6-9.4-33.9 0l-111 111-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L409 161c9.4-9.4 9.4-24.6 0-33.9zM0 336c0-26.5 21.5-48 48-48H64V416H512V288h16c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V336z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cheese": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ef" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cheddar", + "curd", + "gouda", + "melt", + "parmesan", + "sandwich", + "swiss", + "wedge" + ] + }, + "unicode": "f7ef", + "label": "Cheese", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 240.2V256H0c0-20 10-38.7 26.6-49.8L274.9 40.7c8.6-5.7 18.6-8.7 28.9-8.7C418.8 32 512 125.2 512 240.2zm0 47.8V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V288H512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chess": { + "aliases": { + "unicodes": { + "secondary": [ + "10f439" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "castle", + "checkmate", + "game", + "king", + "rook", + "strategy", + "tournament" + ] + }, + "unicode": "f439", + "label": "Chess", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M144 16c0-8.8-7.2-16-16-16s-16 7.2-16 16V32H96c-8.8 0-16 7.2-16 16s7.2 16 16 16h16V96H60.2C49.1 96 40 105.1 40 116.2c0 2.5 .5 4.9 1.3 7.3L73.8 208H72c-13.3 0-24 10.7-24 24s10.7 24 24 24h4L60 384H196L180 256h4c13.3 0 24-10.7 24-24s-10.7-24-24-24h-1.8l32.5-84.5c.9-2.3 1.3-4.8 1.3-7.3c0-11.2-9.1-20.2-20.2-20.2H144V64h16c8.8 0 16-7.2 16-16s-7.2-16-16-16H144V16zM48 416L4.8 473.6C1.7 477.8 0 482.8 0 488c0 13.3 10.7 24 24 24H232c13.3 0 24-10.7 24-24c0-5.2-1.7-10.2-4.8-14.4L208 416H48zm288 0l-43.2 57.6c-3.1 4.2-4.8 9.2-4.8 14.4c0 13.3 10.7 24 24 24H488c13.3 0 24-10.7 24-24c0-5.2-1.7-10.2-4.8-14.4L464 416H336zM304 208v51.9c0 7.8 2.8 15.3 8 21.1L339.2 312 337 384H462.5l-3.3-72 28.3-30.8c5.4-5.9 8.5-13.6 8.5-21.7V208c0-8.8-7.2-16-16-16H464c-8.8 0-16 7.2-16 16v16H424V208c0-8.8-7.2-16-16-16H392c-8.8 0-16 7.2-16 16v16H352V208c0-8.8-7.2-16-16-16H320c-8.8 0-16 7.2-16 16zm80 96c0-8.8 7.2-16 16-16s16 7.2 16 16v32H384V304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chess-bishop": { + "aliases": { + "unicodes": { + "composite": [ + "265d" + ], + "secondary": [ + "10f43a" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess Bishop", + "board", + "checkmate", + "game", + "strategy" + ] + }, + "unicode": "f43a", + "label": "Chess Bishop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M128 0C110.3 0 96 14.3 96 32c0 16.1 11.9 29.4 27.4 31.7C78.4 106.8 8 190 8 288c0 47.4 30.8 72.3 56 84.7V400H256V372.7c25.2-12.5 56-37.4 56-84.7c0-37.3-10.2-72.4-25.3-104.1l-99.4 99.4c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L270.8 154.6c-23.2-38.1-51.8-69.5-74.2-90.9C212.1 61.4 224 48.1 224 32c0-17.7-14.3-32-32-32H128zM48 432L6.6 473.4c-4.2 4.2-6.6 10-6.6 16C0 501.9 10.1 512 22.6 512H297.4c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16L272 432H48z" + }, + "regular": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M104 0C90.7 0 80 10.7 80 24c0 11.2 7.6 20.6 18 23.2c-7.8 8-16.1 17-24.4 27C38.2 116.7 0 178.8 0 250.9c0 44.8 24.6 72.2 48 87.8V352H96V325c0-9-5-17.2-13-21.3c-18-9.3-35-24.7-35-52.7c0-55.5 29.8-106.8 62.4-145.9c16-19.2 32.1-34.8 44.2-45.5c1.9-1.7 3.7-3.2 5.3-4.6c1.7 1.4 3.4 3 5.3 4.6c12.1 10.7 28.2 26.3 44.2 45.5c5.3 6.3 10.5 13 15.5 20L159 191c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l57.8-57.8c12.8 25.9 21.2 54.3 21.2 83.8c0 28-17 43.4-35 52.7c-8 4.1-13 12.3-13 21.3v27h48V338.7c23.4-15.6 48-42.9 48-87.8c0-72.1-38.2-134.2-73.6-176.7c-8.3-9.9-16.6-19-24.4-27c10.3-2.7 18-12.1 18-23.2c0-13.3-10.7-24-24-24H160 104zM52.7 464l16.6-32H250.8l16.6 32H52.7zm207.9-80H59.5c-12 0-22.9 6.7-28.4 17.3L4.6 452.5c-3 5.8-4.6 12.2-4.6 18.7C0 493.8 18.2 512 40.8 512H279.2c22.5 0 40.8-18.2 40.8-40.8c0-6.5-1.6-12.9-4.6-18.7l-26.5-51.2c-5.5-10.6-16.5-17.3-28.4-17.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chess-board": { + "aliases": { + "unicodes": { + "secondary": [ + "10f43c" + ] + } + }, + "changes": [ + "5.0.5", + "5.7.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "checkmate", + "game", + "strategy" + ] + }, + "unicode": "f43c", + "label": "Chess Board", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321797, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 64v64h64V96h64v64h64V96h64v64H320v64h64v64H320v64h64v64H320V352H256v64H192V352H128v64H64V352h64V288H64V224h64V160H64V96h64zm64 128h64V160H192v64zm0 64V224H128v64h64zm64 0H192v64h64V288zm0 0h64V224H256v64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chess-king": { + "aliases": { + "unicodes": { + "composite": [ + "265a" + ], + "secondary": [ + "10f43f" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess King", + "board", + "checkmate", + "game", + "strategy" + ] + }, + "unicode": "f43f", + "label": "Chess King", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0c17.7 0 32 14.3 32 32V48h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H256v48H408c22.1 0 40 17.9 40 40c0 5.3-1 10.5-3.1 15.4L368 400H80L3.1 215.4C1 210.5 0 205.3 0 200c0-22.1 17.9-40 40-40H192V112H176c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V32c0-17.7 14.3-32 32-32zM38.6 473.4L80 432H368l41.4 41.4c4.2 4.2 6.6 10 6.6 16c0 12.5-10.1 22.6-22.6 22.6H54.6C42.1 512 32 501.9 32 489.4c0-6 2.4-11.8 6.6-16z" + }, + "regular": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M248 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V56H168c-13.3 0-24 10.7-24 24s10.7 24 24 24h32v40H59.6C26.7 144 0 170.7 0 203.6c0 8.2 1.7 16.3 4.9 23.8L59.1 352h52.3L49 208.2c-.6-1.5-1-3-1-4.6c0-6.4 5.2-11.6 11.6-11.6H224 388.4c6.4 0 11.6 5.2 11.6 11.6c0 1.6-.3 3.2-1 4.6L336.5 352h52.3l54.2-124.6c3.3-7.5 4.9-15.6 4.9-23.8c0-32.9-26.7-59.6-59.6-59.6H248V104h32c13.3 0 24-10.7 24-24s-10.7-24-24-24H248V24zM101.2 432H346.8l16.6 32H84.7l16.6-32zm283.7-30.7c-5.5-10.6-16.5-17.3-28.4-17.3H91.5c-12 0-22.9 6.7-28.4 17.3L36.6 452.5c-3 5.8-4.6 12.2-4.6 18.7C32 493.8 50.2 512 72.8 512H375.2c22.5 0 40.8-18.2 40.8-40.8c0-6.5-1.6-12.9-4.6-18.7l-26.5-51.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chess-knight": { + "aliases": { + "unicodes": { + "composite": [ + "265e" + ], + "secondary": [ + "10f441" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess Knight", + "board", + "checkmate", + "game", + "horse", + "strategy" + ] + }, + "unicode": "f441", + "label": "Chess Knight", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M80 48L66.7 61.3C54.7 73.3 48 89.5 48 106.5V238.9c0 10.7 5.3 20.7 14.2 26.6l10.6 7c14.3 9.6 32.7 10.7 48.1 3l3.2-1.6c2.6-1.3 5-2.8 7.3-4.5l49.4-37c6.6-5 15.7-5 22.3 0c10.2 7.7 9.9 23.1-.7 30.3L74.4 350C57.9 361.3 48 380 48 400H368l28.9-159c2.1-11.3 3.1-22.8 3.1-34.3V192C400 86 314 0 208 0H67.8C56.9 0 48 8.9 48 19.8c0 7.5 4.2 14.3 10.9 17.7L80 48zm24 68a20 20 0 1 1 40 0 20 20 0 1 1 -40 0zM6.6 473.4c-4.2 4.2-6.6 10-6.6 16C0 501.9 10.1 512 22.6 512H393.4c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16L368 432H48L6.6 473.4z" + }, + "regular": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M210.6 48H101.3l17.1 12.8c6 4.5 9.6 11.6 9.6 19.2s-3.6 14.7-9.6 19.2l-6.5 4.9c-10 7.5-16 19.3-16 31.9l-.3 91c0 10.2 4.9 19.9 13.2 25.8l1.9 1.3c9.9 7.1 23.3 7 33.2-.1l49.9-36.3c10.7-7.8 25.7-5.4 33.5 5.3s5.4 25.7-5.3 33.5l-49.9 36.3-53.8 39.1c-7.3 5.3-13 12.2-16.9 20.1H50.8c5.3-22.1 17.8-41.9 35.9-56.3c-1.3-.8-2.6-1.7-3.8-2.6L81 291.8c-21-15-33.4-39.2-33.3-65l.3-91c.1-19.8 6.7-38.7 18.6-53.9l-.4-.3C54.7 73 48 59.6 48 45.3C48 20.3 68.3 0 93.3 0H210.6C315.2 0 400 84.8 400 189.4c0 11.1-1 22.2-2.9 33.2L374.1 352H325.3l24.5-137.8c1.5-8.2 2.2-16.5 2.2-24.8C352 111.3 288.7 48 210.6 48zM69.2 432L52.7 464H363.3l-16.6-32H69.2zm315.7-30.7l26.5 51.2c3 5.8 4.6 12.2 4.6 18.7c0 22.5-18.2 40.8-40.8 40.8H40.8C18.2 512 0 493.8 0 471.2c0-6.5 1.6-12.9 4.6-18.7l26.5-51.2C36.5 390.7 47.5 384 59.5 384h297c12 0 22.9 6.7 28.4 17.3zM156 128a20 20 0 1 1 0 40 20 20 0 1 1 0-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chess-pawn": { + "aliases": { + "unicodes": { + "composite": [ + "265f" + ], + "secondary": [ + "10f443" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "checkmate", + "chess", + "chess pawn", + "dupe", + "expendable", + "game", + "strategy" + ] + }, + "unicode": "f443", + "label": "Chess Pawn", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M199.4 224c29.2-18.4 48.6-50.9 48.6-88c0-57.4-46.6-104-104-104S40 78.6 40 136c0 37.1 19.4 69.6 48.5 88H80c-17.7 0-32 14.3-32 32c0 16.5 12.5 30 28.5 31.8L64 400H224L211.5 287.8c16-1.8 28.5-15.3 28.5-31.8c0-17.7-14.3-32-32-32h-8.6zM6.6 473.4c-4.2 4.2-6.6 10-6.6 16C0 501.9 10.1 512 22.6 512H265.4c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16L240 432H48L6.6 473.4z" + }, + "regular": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M232 152A72 72 0 1 0 88 152a72 72 0 1 0 144 0zm24 120H243.4l10.7 80H205.7L195 272H160 125l-10.7 80H65.9l10.7-80H64c-13.3 0-24-10.7-24-24s10.7-24 24-24c-15.1-20.1-24-45-24-72C40 85.7 93.7 32 160 32s120 53.7 120 120c0 27-8.9 51.9-24 72c13.3 0 24 10.7 24 24s-10.7 24-24 24zM52.7 464H267.3l-16.6-32H69.2L52.7 464zm207.9-80c12 0 22.9 6.7 28.4 17.3l26.5 51.2c3 5.8 4.6 12.2 4.6 18.7c0 22.5-18.2 40.8-40.8 40.8H40.8C18.2 512 0 493.8 0 471.2c0-6.5 1.6-12.9 4.6-18.7l26.5-51.2C36.5 390.7 47.5 384 59.5 384h201z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chess-queen": { + "aliases": { + "unicodes": { + "composite": [ + "265b" + ], + "secondary": [ + "10f445" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess Queen", + "board", + "checkmate", + "game", + "strategy" + ] + }, + "unicode": "f445", + "label": "Chess Queen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M255 0a56 56 0 1 1 0 112A56 56 0 1 1 255 0zM133.1 143.8c3.3-13 15-23.8 30.2-23.8c12.3 0 22.6 7.2 27.7 17c12 23.2 36.2 39 64 39s52-15.8 64-39c5.1-9.8 15.4-17 27.7-17c15.3 0 27 10.8 30.2 23.8c7 27.8 32.2 48.3 62.1 48.3c10.8 0 21-2.7 29.8-7.4c8.4-4.4 18.9-4.5 27.6 .9c13 8 17.1 25 9.2 38L398.7 400H383 342.6 167.4 127 111.3L4.4 223.6c-7.9-13-3.8-30 9.2-38c8.7-5.3 19.2-5.3 27.6-.9c8.9 4.7 19 7.4 29.8 7.4c29.9 0 55.1-20.5 62.1-48.3zM255 224l0 0 0 0h0zM111 432H399l41.4 41.4c4.2 4.2 6.6 10 6.6 16c0 12.5-10.1 22.6-22.6 22.6H85.6C73.1 512 63 501.9 63 489.4c0-6 2.4-11.8 6.6-16L111 432z" + }, + "regular": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-95.2-8c-18.1 0-31.3 12.8-35.6 26.9c-8 26.2-32.4 45.2-61.2 45.2c-10 0-19.4-2.3-27.7-6.3c-7.6-3.7-16.7-3.3-24 1.2C.7 162.1-3.1 177.1 3.7 188.9L97.6 352H153l-83-144.1c40.5-2.2 75.3-25.9 93.1-59.8c22 26.8 55.4 43.9 92.8 43.9s70.8-17.1 92.8-43.9c17.8 34 52.6 57.7 93.1 59.8L359 352h55.4l93.9-163.1c6.8-11.7 3-26.7-8.6-33.8c-7.3-4.5-16.4-4.9-24-1.2c-8.4 4-17.7 6.3-27.7 6.3c-28.8 0-53.2-19-61.2-45.2C382.5 100.8 369.3 88 351.2 88c-14.5 0-26.3 8.5-32.4 19.3c-12.4 22-35.9 36.7-62.8 36.7s-50.4-14.8-62.8-36.7C187.1 96.5 175.4 88 160.8 88zM133.2 432H378.8l16.6 32H116.7l16.6-32zm283.7-30.7c-5.5-10.6-16.5-17.3-28.4-17.3h-265c-12 0-22.9 6.7-28.4 17.3L68.6 452.5c-3 5.8-4.6 12.2-4.6 18.7c0 22.5 18.2 40.8 40.8 40.8H407.2c22.5 0 40.8-18.2 40.8-40.8c0-6.5-1.6-12.9-4.6-18.7l-26.5-51.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chess-rook": { + "aliases": { + "unicodes": { + "composite": [ + "265c" + ], + "secondary": [ + "10f447" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess Rook", + "board", + "castle", + "checkmate", + "game", + "strategy" + ] + }, + "unicode": "f447", + "label": "Chess Rook", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M16 192V48c0-8.8 7.2-16 16-16H96c8.8 0 16 7.2 16 16V88c0 4.4 3.6 8 8 8h32c4.4 0 8-3.6 8-8V48c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16V88c0 4.4 3.6 8 8 8h32c4.4 0 8-3.6 8-8V48c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16V192c0 10.1-4.7 19.6-12.8 25.6L336 256l16 144H64L80 256 28.8 217.6C20.7 211.6 16 202.1 16 192zm176 96h32c8.8 0 16-7.2 16-16V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 8.8 7.2 16 16 16zM6.6 473.4L48 432H368l41.4 41.4c4.2 4.2 6.6 10 6.6 16c0 12.5-10.1 22.6-22.6 22.6H22.6C10.1 512 0 501.9 0 489.4c0-6 2.4-11.8 6.6-16z" + }, + "regular": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 80V192c0 2.5 1.2 4.9 3.2 6.4l51.2 38.4c6.8 5.1 10.4 13.4 9.5 21.9L101.5 352H53.2l9.4-85L22.4 236.8C8.3 226.2 0 209.6 0 192V72C0 49.9 17.9 32 40 32H344c22.1 0 40 17.9 40 40V192c0 17.6-8.3 34.2-22.4 44.8L321.4 267l9.4 85H282.5l-10.4-93.3c-.9-8.4 2.7-16.8 9.5-21.9l51.2-38.4c2-1.5 3.2-3.9 3.2-6.4V80H272v24c0 13.3-10.7 24-24 24s-24-10.7-24-24V80H160v24c0 13.3-10.7 24-24 24s-24-10.7-24-24V80H48zm4.7 384H331.3l-16.6-32H69.2L52.7 464zm271.9-80c12 0 22.9 6.7 28.4 17.3l26.5 51.2c3 5.8 4.6 12.2 4.6 18.7c0 22.5-18.2 40.8-40.8 40.8H40.8C18.2 512 0 493.8 0 471.2c0-6.5 1.6-12.9 4.6-18.7l26.5-51.2C36.5 390.7 47.5 384 59.5 384h265zM176 288c-8.8 0-16-7.2-16-16V224c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 8.8-7.2 16-16 16H176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chevron-down": { + "aliases": { + "unicodes": { + "secondary": [ + "10f078" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "download", + "expand" + ] + }, + "unicode": "f078", + "label": "Chevron Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M201.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 338.7 54.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chevron-left": { + "aliases": { + "unicodes": { + "composite": [ + "2329" + ], + "secondary": [ + "10f053" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Left-Pointing Angle Bracket", + "arrow", + "back", + "bracket", + "previous" + ] + }, + "unicode": "f053", + "label": "Chevron Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l192 192c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 246.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chevron-right": { + "aliases": { + "unicodes": { + "composite": [ + "232a" + ], + "secondary": [ + "10f054" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right-Pointing Angle Bracket", + "arrow", + "bracket", + "forward", + "next" + ] + }, + "unicode": "f054", + "label": "Chevron Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chevron-up": { + "aliases": { + "unicodes": { + "secondary": [ + "10f077" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "collapse", + "upload" + ] + }, + "unicode": "f077", + "label": "Chevron Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M201.4 105.4c12.5-12.5 32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L224 173.3 54.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l192-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "child": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1ae" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.1.1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boy", + "girl", + "kid", + "toddler", + "young", + "youth" + ] + }, + "unicode": "f1ae", + "label": "Child", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M96 64a64 64 0 1 1 128 0A64 64 0 1 1 96 64zm48 320v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V287.8L59.1 321c-9.4 15-29.2 19.4-44.1 10S-4.5 301.9 4.9 287l39.9-63.3C69.7 184 113.2 160 160 160s90.3 24 115.2 63.6L315.1 287c9.4 15 4.9 34.7-10 44.1s-34.7 4.9-44.1-10L240 287.8V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "child-combatant": { + "aliases": { + "names": [ + "child-rifle" + ] + }, + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "combatant" + ] + }, + "unicode": "e4e0", + "label": "Child Combatant", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M144 128A64 64 0 1 0 144 0a64 64 0 1 0 0 128zm-8 352V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V300.5L228.9 321c9.4 15 29.2 19.4 44.1 10s19.4-29.2 10-44.1l-51.7-82.1c-17.6-27.9-48.3-44.9-81.2-44.9H137.8c-33 0-63.7 16.9-81.2 44.9L4.9 287c-9.4 15-4.9 34.7 10 44.1s34.7 4.9 44.1-10L72 300.5V480c0 17.7 14.3 32 32 32s32-14.3 32-32zM416 0H400 384c-8.8 0-16 7.2-16 16s7.2 16 16 16V132.3c-9.6 5.5-16 15.9-16 27.7v32c-17.7 0-32 14.3-32 32V368c0 17.7 14.3 32 32 32h16v96c0 8.8 7.2 16 16 16h59.5c10.4 0 18-9.8 15.5-19.9L452 400h44c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H448V325.3l53.1-17.7c6.5-2.2 10.9-8.3 10.9-15.2V208c0-8.8-7.2-16-16-16H480c-8.8 0-16 7.2-16 16v56l-16 5.3V160c0-11.8-6.4-22.2-16-27.7V16c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "child-dress": { + "changes": [ + "6.1.1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boy", + "girl", + "kid", + "toddler", + "young", + "youth" + ] + }, + "unicode": "e59c", + "label": "Child Dress", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M224 64A64 64 0 1 0 96 64a64 64 0 1 0 128 0zM88 400v80c0 17.7 14.3 32 32 32s32-14.3 32-32V400h16v80c0 17.7 14.3 32 32 32s32-14.3 32-32V400h17.8c10.9 0 18.6-10.7 15.2-21.1l-31.1-93.4 28.6 37.8c10.7 14.1 30.8 16.8 44.8 6.2s16.8-30.7 6.2-44.8L254.6 207c-22.4-29.6-57.5-47-94.6-47s-72.2 17.4-94.6 47L6.5 284.7c-10.7 14.1-7.9 34.2 6.2 44.8s34.2 7.9 44.8-6.2l28.7-37.8L55 378.9C51.6 389.3 59.3 400 70.2 400H88z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "child-reaching": { + "changes": [ + "6.1.1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boy", + "girl", + "kid", + "toddler", + "young", + "youth" + ] + }, + "unicode": "e59d", + "label": "Child Reaching", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M240 64A64 64 0 1 0 112 64a64 64 0 1 0 128 0zM136.9 169.3c-23.7-8.4-44.5-24.3-58.8-45.8L58.6 94.2C48.8 79.5 29 75.6 14.2 85.4S-4.4 115 5.4 129.8L24.9 159c18.1 27.1 42.8 48.4 71.1 62.4V480c0 17.7 14.3 32 32 32s32-14.3 32-32V384h32v96c0 17.7 14.3 32 32 32s32-14.3 32-32V221.6c29.1-14.2 54.4-36.2 72.7-64.2l18.2-27.9c9.6-14.8 5.4-34.6-9.4-44.3s-34.6-5.5-44.3 9.4L275 122.4c-21.8 33.4-58.9 53.6-98.8 53.6c-12.6 0-24.9-2-36.6-5.8c-.9-.3-1.8-.7-2.7-.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "children": { + "changes": [ + "6.1.0", + "6.1.1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boy", + "child", + "girl", + "kid", + "kids", + "young", + "youth" + ] + }, + "unicode": "e4e1", + "label": "Children", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M160 0a64 64 0 1 1 0 128A64 64 0 1 1 160 0zM88 480V400H70.2c-10.9 0-18.6-10.7-15.2-21.1l31.1-93.4L57.5 323.3c-10.7 14.1-30.8 16.8-44.8 6.2s-16.8-30.7-6.2-44.8L65.4 207c22.4-29.6 57.5-47 94.6-47s72.2 17.4 94.6 47l58.9 77.7c10.7 14.1 7.9 34.2-6.2 44.8s-34.2 7.9-44.8-6.2l-28.6-37.8L265 378.9c3.5 10.4-4.3 21.1-15.2 21.1H232v80c0 17.7-14.3 32-32 32s-32-14.3-32-32V400H152v80c0 17.7-14.3 32-32 32s-32-14.3-32-32zM480 0a64 64 0 1 1 0 128A64 64 0 1 1 480 0zm-8 384v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V300.5L395.1 321c-9.4 15-29.2 19.4-44.1 10s-19.4-29.2-10-44.1l51.7-82.1c17.6-27.9 48.3-44.9 81.2-44.9h12.3c33 0 63.7 16.9 81.2 44.9L619.1 287c9.4 15 4.9 34.7-10 44.1s-34.7 4.9-44.1-10L552 300.5V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H472z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chrome": { + "changes": [ + "4.4.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "unicode": "f268", + "label": "Chrome", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256C0 209.4 12.47 165.6 34.27 127.1L144.1 318.3C166 357.5 207.9 384 256 384C270.3 384 283.1 381.7 296.8 377.4L220.5 509.6C95.9 492.3 0 385.3 0 256zM365.1 321.6C377.4 302.4 384 279.1 384 256C384 217.8 367.2 183.5 340.7 160H493.4C505.4 189.6 512 222.1 512 256C512 397.4 397.4 511.1 256 512L365.1 321.6zM477.8 128H256C193.1 128 142.3 172.1 130.5 230.7L54.19 98.47C101 38.53 174 0 256 0C350.8 0 433.5 51.48 477.8 128V128zM168 256C168 207.4 207.4 168 256 168C304.6 168 344 207.4 344 256C344 304.6 304.6 344 256 344C207.4 344 168 304.6 168 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "chromecast": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f838", + "label": "Chromecast", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M447.8,64H64c-23.6,0-42.7,19.1-42.7,42.7v63.9H64v-63.9h383.8v298.6H298.6V448H448c23.6,0,42.7-19.1,42.7-42.7V106.7 C490.7,83.1,471.4,64,447.8,64z M21.3,383.6L21.3,383.6l0,63.9h63.9C85.2,412.2,56.6,383.6,21.3,383.6L21.3,383.6z M21.3,298.6V341 c58.9,0,106.6,48.1,106.6,107h42.7C170.7,365.6,103.7,298.7,21.3,298.6z M213.4,448h42.7c-0.5-129.5-105.3-234.3-234.8-234.6l0,42.4 C127.3,255.6,213.3,342,213.4,448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "church": { + "aliases": { + "unicodes": { + "composite": [ + "26ea" + ], + "secondary": [ + "10f51d" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Christian", + "building", + "cathedral", + "chapel", + "church", + "community", + "cross", + "religion" + ] + }, + "unicode": "f51d", + "label": "Church", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M344 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V48H264c-13.3 0-24 10.7-24 24s10.7 24 24 24h32v46.4L183.3 210c-14.5 8.7-23.3 24.3-23.3 41.2V512h96V416c0-35.3 28.7-64 64-64s64 28.7 64 64v96h96V251.2c0-16.9-8.8-32.5-23.3-41.2L344 142.4V96h32c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V24zM24.9 330.3C9.5 338.8 0 354.9 0 372.4V464c0 26.5 21.5 48 48 48h80V273.6L24.9 330.3zM592 512c26.5 0 48-21.5 48-48V372.4c0-17.5-9.5-33.6-24.9-42.1L512 273.6V512h80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle": { + "aliases": { + "unicodes": { + "composite": [ + "1f534", + "1f535", + "1f7e0", + "1f7e1", + "1f7e2", + "1f7e3", + "1f7e4", + "25cf", + "26aa", + "26ab", + "2b24", + "f10c", + "f1db" + ], + "secondary": [ + "10f111" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Circle", + "Black Large Circle", + "black circle", + "blue", + "blue circle", + "brown", + "brown circle", + "chart", + "circle", + "circle-thin", + "diameter", + "dot", + "ellipse", + "fill", + "geometric", + "green", + "green circle", + "notification", + "orange", + "orange circle", + "progress", + "purple", + "purple circle", + "red", + "red circle", + "round", + "white circle", + "yellow", + "yellow circle" + ] + }, + "unicode": "f111", + "label": "Circle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321802, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512z" + }, + "regular": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-arrow-down": { + "aliases": { + "names": [ + "arrow-circle-down" + ], + "unicodes": { + "secondary": [ + "10f0ab" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download" + ] + }, + "unicode": "f0ab", + "label": "Circle Arrow Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM127 281c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l71 71L232 136c0-13.3 10.7-24 24-24s24 10.7 24 24l0 182.1 71-71c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L273 393c-9.4 9.4-24.6 9.4-33.9 0L127 281z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-arrow-left": { + "aliases": { + "names": [ + "arrow-circle-left" + ], + "unicodes": { + "secondary": [ + "10f0a8" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "previous" + ] + }, + "unicode": "f0a8", + "label": "Circle Arrow Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM231 127c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-71 71L376 232c13.3 0 24 10.7 24 24s-10.7 24-24 24l-182.1 0 71 71c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L119 273c-9.4-9.4-9.4-24.6 0-33.9L231 127z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-arrow-right": { + "aliases": { + "names": [ + "arrow-circle-right" + ], + "unicodes": { + "secondary": [ + "10f0a9" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "next" + ] + }, + "unicode": "f0a9", + "label": "Circle Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM281 385c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l71-71L136 280c-13.3 0-24-10.7-24-24s10.7-24 24-24l182.1 0-71-71c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L393 239c9.4 9.4 9.4 24.6 0 33.9L281 385z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-arrow-up": { + "aliases": { + "names": [ + "arrow-circle-up" + ], + "unicodes": { + "secondary": [ + "10f0aa" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "upload" + ] + }, + "unicode": "f0aa", + "label": "Circle Arrow Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM385 231c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-71-71V376c0 13.3-10.7 24-24 24s-24-10.7-24-24V193.9l-71 71c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L239 119c9.4-9.4 24.6-9.4 33.9 0L385 231z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-check": { + "aliases": { + "names": [ + "check-circle" + ], + "unicodes": { + "composite": [ + "f05d" + ], + "secondary": [ + "10f058" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "affected", + "agree", + "clear", + "confirm", + "correct", + "done", + "ok", + "select", + "success", + "tick", + "todo", + "yes" + ] + }, + "unicode": "f058", + "label": "Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321799, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + }, + "regular": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M243.8 339.8C232.9 350.7 215.1 350.7 204.2 339.8L140.2 275.8C129.3 264.9 129.3 247.1 140.2 236.2C151.1 225.3 168.9 225.3 179.8 236.2L224 280.4L332.2 172.2C343.1 161.3 360.9 161.3 371.8 172.2C382.7 183.1 382.7 200.9 371.8 211.8L243.8 339.8zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-chevron-down": { + "aliases": { + "names": [ + "chevron-circle-down" + ], + "unicodes": { + "secondary": [ + "10f13a" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "download", + "dropdown", + "menu", + "more" + ] + }, + "unicode": "f13a", + "label": "Circle Chevron Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM135 241c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l87 87 87-87c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L273 345c-9.4 9.4-24.6 9.4-33.9 0L135 241z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-chevron-left": { + "aliases": { + "names": [ + "chevron-circle-left" + ], + "unicodes": { + "secondary": [ + "10f137" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "previous" + ] + }, + "unicode": "f137", + "label": "Circle Chevron Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM271 135c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-87 87 87 87c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L167 273c-9.4-9.4-9.4-24.6 0-33.9L271 135z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-chevron-right": { + "aliases": { + "names": [ + "chevron-circle-right" + ], + "unicodes": { + "secondary": [ + "10f138" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "forward", + "next" + ] + }, + "unicode": "f138", + "label": "Circle Chevron Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-chevron-up": { + "aliases": { + "names": [ + "chevron-circle-up" + ], + "unicodes": { + "secondary": [ + "10f139" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "collapse", + "upload" + ] + }, + "unicode": "f139", + "label": "Circle Chevron Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM377 271c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-87-87-87 87c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L239 167c9.4-9.4 24.6-9.4 33.9 0L377 271z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-dollar-to-slot": { + "aliases": { + "names": [ + "donate" + ], + "unicodes": { + "secondary": [ + "10f4b9" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contribute", + "generosity", + "gift", + "give" + ] + }, + "unicode": "f4b9", + "label": "Circle Dollar To Slot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M326.7 403.7c-22.1 8-45.9 12.3-70.7 12.3s-48.7-4.4-70.7-12.3c-.3-.1-.5-.2-.8-.3c-30-11-56.8-28.7-78.6-51.4C70 314.6 48 263.9 48 208C48 93.1 141.1 0 256 0S464 93.1 464 208c0 55.9-22 106.6-57.9 144c-1 1-2 2.1-3 3.1c-21.4 21.4-47.4 38.1-76.3 48.6zM256 91.9c-11.1 0-20.1 9-20.1 20.1v6c-5.6 1.2-10.9 2.9-15.9 5.1c-15 6.8-27.9 19.4-31.1 37.7c-1.8 10.2-.8 20 3.4 29c4.2 8.8 10.7 15 17.3 19.5c11.6 7.9 26.9 12.5 38.6 16l2.2 .7c13.9 4.2 23.4 7.4 29.3 11.7c2.5 1.8 3.4 3.2 3.8 4c.3 .8 .9 2.6 .2 6.7c-.6 3.5-2.5 6.4-8 8.8c-6.1 2.6-16 3.9-28.8 1.9c-6-1-16.7-4.6-26.2-7.9l0 0 0 0 0 0c-2.2-.7-4.3-1.5-6.4-2.1c-10.5-3.5-21.8 2.2-25.3 12.7s2.2 21.8 12.7 25.3c1.2 .4 2.7 .9 4.4 1.5c7.9 2.7 20.3 6.9 29.8 9.1V304c0 11.1 9 20.1 20.1 20.1s20.1-9 20.1-20.1v-5.5c5.4-1 10.5-2.5 15.4-4.6c15.7-6.7 28.4-19.7 31.6-38.7c1.8-10.4 1-20.3-3-29.4c-3.9-9-10.2-15.6-16.9-20.5c-12.2-8.8-28.3-13.7-40.4-17.4l-.8-.2c-14.2-4.3-23.8-7.3-29.9-11.4c-2.6-1.8-3.4-3-3.6-3.5c-.2-.3-.7-1.6-.1-5c.3-1.9 1.9-5.2 8.2-8.1c6.4-2.9 16.4-4.5 28.6-2.6c4.3 .7 17.9 3.3 21.7 4.3c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-4.4-1.2-14.4-3.2-21-4.4V112c0-11.1-9-20.1-20.1-20.1zM48 352H64c19.5 25.9 44 47.7 72.2 64H64v32H256 448V416H375.8c28.2-16.3 52.8-38.1 72.2-64h16c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V400c0-26.5 21.5-48 48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-dot": { + "aliases": { + "names": [ + "dot-circle" + ], + "unicodes": { + "composite": [ + "1f518" + ], + "secondary": [ + "10f192" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bullseye", + "button", + "geometric", + "notification", + "radio", + "radio button", + "target" + ] + }, + "unicode": "f192", + "label": "Circle Dot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321800, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zm0-160c-53 0-96-43-96-96s43-96 96-96s96 43 96 96s-43 96-96 96z" + }, + "regular": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 256C160 202.1 202.1 160 256 160C309 160 352 202.1 352 256C352 309 309 352 256 352C202.1 352 160 309 160 256zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-down": { + "aliases": { + "names": [ + "arrow-alt-circle-down" + ], + "unicodes": { + "composite": [ + "f01a" + ], + "secondary": [ + "10f358" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-down", + "download" + ] + }, + "unicode": "f358", + "label": "Circle Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM376.9 294.6L269.8 394.5c-3.8 3.5-8.7 5.5-13.8 5.5s-10.1-2-13.8-5.5L135.1 294.6c-4.5-4.2-7.1-10.1-7.1-16.3c0-12.3 10-22.3 22.3-22.3l57.7 0 0-96c0-17.7 14.3-32 32-32l32 0c17.7 0 32 14.3 32 32l0 96 57.7 0c12.3 0 22.3 10 22.3 22.3c0 6.2-2.6 12.1-7.1 16.3z" + }, + "regular": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 464a208 208 0 1 1 0-416 208 208 0 1 1 0 416zM256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM376.9 294.6c4.5-4.2 7.1-10.1 7.1-16.3c0-12.3-10-22.3-22.3-22.3H304V160c0-17.7-14.3-32-32-32l-32 0c-17.7 0-32 14.3-32 32v96H150.3C138 256 128 266 128 278.3c0 6.2 2.6 12.1 7.1 16.3l107.1 99.9c3.8 3.5 8.7 5.5 13.8 5.5s10.1-2 13.8-5.5l107.1-99.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-exclamation": { + "aliases": { + "names": [ + "exclamation-circle" + ], + "unicodes": { + "secondary": [ + "10f06a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affect", + "alert", + "damage", + "danger", + "error", + "important", + "notice", + "notification", + "notify", + "problem", + "warning" + ] + }, + "unicode": "f06a", + "label": "Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-h": { + "aliases": { + "names": [ + "hospital-symbol" + ], + "unicodes": { + "composite": [ + "24bd" + ], + "secondary": [ + "10f47e" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Circled Latin Capital Letter H", + "clinic", + "covid-19", + "emergency", + "letter", + "map" + ] + }, + "unicode": "f47e", + "label": "Circle H", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM368 152V256 360c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H192l0 80c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-208c0-13.3 10.7-24 24-24s24 10.7 24 24v80H320V152c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-half-stroke": { + "aliases": { + "names": [ + "adjust" + ], + "unicodes": { + "composite": [ + "25d0" + ], + "secondary": [ + "10f042" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "5.11.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Circle with Left Half Black", + "adjust", + "chart", + "contrast", + "dark", + "fill", + "light", + "pie", + "progress", + "saturation" + ] + }, + "unicode": "f042", + "label": "Circle Half Stroke", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321800, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 256c0-106-86-192-192-192V448c106 0 192-86 192-192zm64 0c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-info": { + "aliases": { + "names": [ + "info-circle" + ], + "unicodes": { + "secondary": [ + "10f05a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "details", + "help", + "information", + "more", + "support" + ] + }, + "unicode": "f05a", + "label": "Circle Info", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-left": { + "aliases": { + "names": [ + "arrow-alt-circle-left" + ], + "unicodes": { + "composite": [ + "f190" + ], + "secondary": [ + "10f359" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-left", + "back", + "previous" + ] + }, + "unicode": "f359", + "label": "Circle Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM217.4 376.9L117.5 269.8c-3.5-3.8-5.5-8.7-5.5-13.8s2-10.1 5.5-13.8l99.9-107.1c4.2-4.5 10.1-7.1 16.3-7.1c12.3 0 22.3 10 22.3 22.3l0 57.7 96 0c17.7 0 32 14.3 32 32l0 32c0 17.7-14.3 32-32 32l-96 0 0 57.7c0 12.3-10 22.3-22.3 22.3c-6.2 0-12.1-2.6-16.3-7.1z" + }, + "regular": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M48 256a208 208 0 1 1 416 0A208 208 0 1 1 48 256zm464 0A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM217.4 376.9c4.2 4.5 10.1 7.1 16.3 7.1c12.3 0 22.3-10 22.3-22.3V304h96c17.7 0 32-14.3 32-32V240c0-17.7-14.3-32-32-32H256V150.3c0-12.3-10-22.3-22.3-22.3c-6.2 0-12.1 2.6-16.3 7.1L117.5 242.2c-3.5 3.8-5.5 8.7-5.5 13.8s2 10.1 5.5 13.8l99.9 107.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-minus": { + "aliases": { + "names": [ + "minus-circle" + ], + "unicodes": { + "secondary": [ + "10f056" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "hide", + "negative", + "remove", + "shape", + "trash" + ] + }, + "unicode": "f056", + "label": "Circle Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321800, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM184 232H328c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-nodes": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cluster", + "connect", + "network" + ] + }, + "unicode": "e4e2", + "label": "Circle Nodes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-notch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1ce" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "circle-o-notch", + "diameter", + "dot", + "ellipse", + "round", + "spinner" + ] + }, + "unicode": "f1ce", + "label": "Circle Notch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321801, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M222.7 32.1c5 16.9-4.6 34.8-21.5 39.8C121.8 95.6 64 169.1 64 256c0 106 86 192 192 192s192-86 192-192c0-86.9-57.8-160.4-137.1-184.1c-16.9-5-26.6-22.9-21.5-39.8s22.9-26.6 39.8-21.5C434.9 42.1 512 140 512 256c0 141.4-114.6 256-256 256S0 397.4 0 256C0 140 77.1 42.1 182.9 10.6c16.9-5 34.8 4.6 39.8 21.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-pause": { + "aliases": { + "names": [ + "pause-circle" + ], + "unicodes": { + "composite": [ + "f28c" + ], + "secondary": [ + "10f28b" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hold", + "wait" + ] + }, + "unicode": "f28b", + "label": "Circle Pause", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM224 192V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32s32 14.3 32 32zm128 0V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32s32 14.3 32 32z" + }, + "regular": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm224-72V328c0 13.3-10.7 24-24 24s-24-10.7-24-24V184c0-13.3 10.7-24 24-24s24 10.7 24 24zm112 0V328c0 13.3-10.7 24-24 24s-24-10.7-24-24V184c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-play": { + "aliases": { + "names": [ + "play-circle" + ], + "unicodes": { + "composite": [ + "f01d" + ], + "secondary": [ + "10f144" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "music", + "playing", + "sound", + "start", + "video" + ] + }, + "unicode": "f144", + "label": "Circle Play", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM188.3 147.1c-7.6 4.2-12.3 12.3-12.3 20.9V344c0 8.7 4.7 16.7 12.3 20.9s16.8 4.1 24.3-.5l144-88c7.1-4.4 11.5-12.1 11.5-20.5s-4.4-16.1-11.5-20.5l-144-88c-7.4-4.5-16.7-4.7-24.3-.5z" + }, + "regular": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM188.3 147.1c7.6-4.2 16.8-4.1 24.3 .5l144 88c7.1 4.4 11.5 12.1 11.5 20.5s-4.4 16.1-11.5 20.5l-144 88c-7.4 4.5-16.7 4.7-24.3 .5s-12.3-12.2-12.3-20.9V168c0-8.7 4.7-16.7 12.3-20.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-plus": { + "aliases": { + "names": [ + "plus-circle" + ], + "unicodes": { + "secondary": [ + "10f055" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "expand", + "new", + "positive", + "shape" + ] + }, + "unicode": "f055", + "label": "Circle Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321801, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM232 344V280H168c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V168c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H280v64c0 13.3-10.7 24-24 24s-24-10.7-24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-question": { + "aliases": { + "names": [ + "question-circle" + ], + "unicodes": { + "composite": [ + "f29c" + ], + "secondary": [ + "10f059" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "help", + "information", + "support", + "unknown" + ] + }, + "unicode": "f059", + "label": "Circle Question", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM169.8 165.3c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V250.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H222.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + }, + "regular": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm169.8-90.7c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V250.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H222.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-radiation": { + "aliases": { + "names": [ + "radiation-alt" + ], + "unicodes": { + "composite": [ + "2622" + ], + "secondary": [ + "10f7ba" + ] + } + }, + "changes": [ + "5.6.0", + "5.8.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "danger", + "dangerous", + "deadly", + "hazard", + "nuclear", + "radioactive", + "sign", + "warning" + ] + }, + "unicode": "f7ba", + "label": "Circle Radiation", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 64a192 192 0 1 1 0 384 192 192 0 1 1 0-384zm0 448A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM200 256c0-20.7 11.3-38.8 28-48.5l-36-62.3c-8.8-15.3-28.7-20.8-42-9c-25.6 22.6-43.9 53.3-50.9 88.1C95.7 241.5 110.3 256 128 256l72 0zm28 48.5l-36 62.4c-8.8 15.3-3.6 35.2 13.1 40.8c16 5.4 33.1 8.3 50.9 8.3s34.9-2.9 50.9-8.3c16.7-5.6 21.9-25.5 13.1-40.8l-36-62.4c-8.2 4.8-17.8 7.5-28 7.5s-19.8-2.7-28-7.5zM312 256l72 0c17.7 0 32.3-14.5 28.8-31.8c-7-34.8-25.3-65.5-50.9-88.1c-13.2-11.7-33.1-6.3-42 9l-36 62.3c16.7 9.7 28 27.8 28 48.5zm-56 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-right": { + "aliases": { + "names": [ + "arrow-alt-circle-right" + ], + "unicodes": { + "composite": [ + "f18e" + ], + "secondary": [ + "10f35a" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-right", + "forward", + "next" + ] + }, + "unicode": "f35a", + "label": "Circle Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM294.6 135.1l99.9 107.1c3.5 3.8 5.5 8.7 5.5 13.8s-2 10.1-5.5 13.8L294.6 376.9c-4.2 4.5-10.1 7.1-16.3 7.1C266 384 256 374 256 361.7l0-57.7-96 0c-17.7 0-32-14.3-32-32l0-32c0-17.7 14.3-32 32-32l96 0 0-57.7c0-12.3 10-22.3 22.3-22.3c6.2 0 12.1 2.6 16.3 7.1z" + }, + "regular": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM294.6 135.1c-4.2-4.5-10.1-7.1-16.3-7.1C266 128 256 138 256 150.3V208H160c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32h96v57.7c0 12.3 10 22.3 22.3 22.3c6.2 0 12.1-2.6 16.3-7.1l99.9-107.1c3.5-3.8 5.5-8.7 5.5-13.8s-2-10.1-5.5-13.8L294.6 135.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-stop": { + "aliases": { + "names": [ + "stop-circle" + ], + "unicodes": { + "composite": [ + "f28e" + ], + "secondary": [ + "10f28d" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "box", + "circle", + "square" + ] + }, + "unicode": "f28d", + "label": "Circle Stop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM192 160H320c17.7 0 32 14.3 32 32V320c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32z" + }, + "regular": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm192-96H320c17.7 0 32 14.3 32 32V320c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-up": { + "aliases": { + "names": [ + "arrow-alt-circle-up" + ], + "unicodes": { + "composite": [ + "f01b" + ], + "secondary": [ + "10f35b" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-up" + ] + }, + "unicode": "f35b", + "label": "Circle Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM135.1 217.4l107.1-99.9c3.8-3.5 8.7-5.5 13.8-5.5s10.1 2 13.8 5.5l107.1 99.9c4.5 4.2 7.1 10.1 7.1 16.3c0 12.3-10 22.3-22.3 22.3H304v96c0 17.7-14.3 32-32 32H240c-17.7 0-32-14.3-32-32V256H150.3C138 256 128 246 128 233.7c0-6.2 2.6-12.1 7.1-16.3z" + }, + "regular": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM135.1 217.4c-4.5 4.2-7.1 10.1-7.1 16.3c0 12.3 10 22.3 22.3 22.3H208v96c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V256h57.7c12.3 0 22.3-10 22.3-22.3c0-6.2-2.6-12.1-7.1-16.3L269.8 117.5c-3.8-3.5-8.7-5.5-13.8-5.5s-10.1 2-13.8 5.5L135.1 217.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-user": { + "aliases": { + "names": [ + "user-circle" + ], + "unicodes": { + "composite": [ + "f2be" + ], + "secondary": [ + "10f2bd" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "5.0.11", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f2bd", + "label": "Circle User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M399 384.2C376.9 345.8 335.4 320 288 320H224c-47.4 0-88.9 25.8-111 64.2c35.2 39.2 86.2 63.8 143 63.8s107.8-24.7 143-63.8zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 16a72 72 0 1 0 0-144 72 72 0 1 0 0 144z" + }, + "regular": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M406.5 399.6C387.4 352.9 341.5 320 288 320H224c-53.5 0-99.4 32.9-118.5 79.6C69.9 362.2 48 311.7 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208c0 55.7-21.9 106.2-57.5 143.6zm-40.1 32.7C334.4 452.4 296.6 464 256 464s-78.4-11.6-110.5-31.7c7.3-36.7 39.7-64.3 78.5-64.3h64c38.8 0 71.2 27.6 78.5 64.3zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-272a40 40 0 1 1 0-80 40 40 0 1 1 0 80zm-88-40a88 88 0 1 0 176 0 88 88 0 1 0 -176 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-xmark": { + "aliases": { + "names": [ + "times-circle", + "xmark-circle" + ], + "unicodes": { + "composite": [ + "f05c" + ], + "secondary": [ + "10f057" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "close", + "cross", + "destroy", + "exit", + "incorrect", + "notice", + "notification", + "notify", + "problem", + "wrong", + "x" + ] + }, + "unicode": "f057", + "label": "Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321802, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM175 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + }, + "regular": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M175 175C184.4 165.7 199.6 165.7 208.1 175L255.1 222.1L303 175C312.4 165.7 327.6 165.7 336.1 175C346.3 184.4 346.3 199.6 336.1 208.1L289.9 255.1L336.1 303C346.3 312.4 346.3 327.6 336.1 336.1C327.6 346.3 312.4 346.3 303 336.1L255.1 289.9L208.1 336.1C199.6 346.3 184.4 346.3 175 336.1C165.7 327.6 165.7 312.4 175 303L222.1 255.1L175 208.1C165.7 199.6 165.7 184.4 175 175V175zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "city": { + "aliases": { + "unicodes": { + "composite": [ + "1f3d9" + ], + "secondary": [ + "10f64f" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buildings", + "busy", + "city", + "cityscape", + "skyscrapers", + "urban", + "windows" + ] + }, + "unicode": "f64f", + "label": "City", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 48c0-26.5-21.5-48-48-48H336c-26.5 0-48 21.5-48 48V96H224V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V96H112V24c0-13.3-10.7-24-24-24S64 10.7 64 24V96H48C21.5 96 0 117.5 0 144v96V464c0 26.5 21.5 48 48 48H304h32 96H592c26.5 0 48-21.5 48-48V240c0-26.5-21.5-48-48-48H480V48zm96 320v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16zM240 416H208c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16zM128 400c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32zM560 256c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32zM256 176v32c0 8.8-7.2 16-16 16H208c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16zM112 160c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h32zM256 304c0 8.8-7.2 16-16 16H208c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32zM112 320H80c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16zm304-48v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16zM400 64c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V80c0-8.8 7.2-16 16-16h32zm16 112v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clapperboard": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camera", + "clapper", + "clapper board", + "director", + "film", + "movie", + "record" + ] + }, + "unicode": "e131", + "label": "Clapperboard", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 32H361.9l-1 1-127 127h92.1l1-1L453.8 32.3c-1.9-.2-3.8-.3-5.8-.3zm64 128V96c0-15.1-5.3-29.1-14-40l-104 104H512zM294.1 32H201.9l-1 1L73.9 160h92.1l1-1 127-127zM64 32C28.7 32 0 60.7 0 96v64H6.1l1-1 127-127H64zM512 192H0V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clipboard": { + "aliases": { + "unicodes": { + "composite": [ + "1f4cb" + ], + "secondary": [ + "10f328" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clipboar", + "clipboard", + "copy", + "notes", + "paste", + "record" + ] + }, + "unicode": "f328", + "label": "Clipboard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M280 64h40c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128C0 92.7 28.7 64 64 64h40 9.6C121 27.5 153.3 0 192 0s71 27.5 78.4 64H280zM64 112c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16V128c0-8.8-7.2-16-16-16H304v24c0 13.3-10.7 24-24 24H192 104c-13.3 0-24-10.7-24-24V112H64zm128-8a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "clipboard-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f46c" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "confirm", + "done", + "ok", + "select", + "success", + "tick", + "todo", + "yes" + ] + }, + "unicode": "f46c", + "label": "Clipboard Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM305 273L177 401c-9.4 9.4-24.6 9.4-33.9 0L79 337c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L271 239c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clipboard-list": { + "aliases": { + "unicodes": { + "secondary": [ + "10f46d" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "intinerary", + "ol", + "schedule", + "tick", + "todo", + "ul" + ] + }, + "unicode": "f46d", + "label": "Clipboard List", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM72 272a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm104-16H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16zM72 368a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm88 0c0-8.8 7.2-16 16-16H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clipboard-question": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "assistance", + "interview", + "query", + "question" + ] + }, + "unicode": "e4e3", + "label": "Clipboard Question", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM105.8 229.3c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L216 328.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V314.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H158.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM160 416a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clipboard-user": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7f3" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attendance", + "record", + "roster", + "staff" + ] + }, + "unicode": "f7f3", + "label": "Clipboard User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM128 256a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM80 432c0-44.2 35.8-80 80-80h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clock": { + "aliases": { + "names": [ + "clock-four" + ], + "unicodes": { + "composite": [ + "1f553" + ], + "secondary": [ + "10f017" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.12.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "00", + "4", + "4:00", + "clock", + "date", + "four", + "four o’clock", + "hour", + "late", + "minute", + "o'clock", + "o’clock", + "schedule", + "ticking", + "time", + "timer", + "timestamp", + "watch" + ] + }, + "unicode": "f017", + "label": "Clock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0a256 256 0 1 1 0 512A256 256 0 1 1 256 0zM232 120V256c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2V120c0-13.3-10.7-24-24-24s-24 10.7-24 24z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM232 120V256c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2V120c0-13.3-10.7-24-24-24s-24 10.7-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "clock-rotate-left": { + "aliases": { + "names": [ + "history" + ], + "unicodes": { + "secondary": [ + "10f1da" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rewind", + "clock", + "reverse", + "time", + "time machine", + "time travel" + ] + }, + "unicode": "f1da", + "label": "Clock Rotate Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M75 75L41 41C25.9 25.9 0 36.6 0 57.9V168c0 13.3 10.7 24 24 24H134.1c21.4 0 32.1-25.9 17-41l-30.8-30.8C155 85.5 203 64 256 64c106 0 192 86 192 192s-86 192-192 192c-40.8 0-78.6-12.7-109.7-34.4c-14.5-10.1-34.4-6.6-44.6 7.9s-6.6 34.4 7.9 44.6C151.2 495 201.7 512 256 512c141.4 0 256-114.6 256-256S397.4 0 256 0C185.3 0 121.3 28.7 75 75zm181 53c-13.3 0-24 10.7-24 24V256c0 6.4 2.5 12.5 7 17l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-65-65V152c0-13.3-10.7-24-24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clone": { + "aliases": { + "unicodes": { + "secondary": [ + "10f24d" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "copy", + "duplicate", + "paste" + ] + }, + "unicode": "f24d", + "label": "Clone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V384H224c-53 0-96-43-96-96V160H64c-35.3 0-64 28.7-64 64V448zm224-96H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H224c-35.3 0-64 28.7-64 64V288c0 35.3 28.7 64 64 64z" + }, + "regular": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 464H288c8.8 0 16-7.2 16-16V384h48v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h64v48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16zM224 304H448c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H224c-8.8 0-16 7.2-16 16V288c0 8.8 7.2 16 16 16zm-64-16V64c0-35.3 28.7-64 64-64H448c35.3 0 64 28.7 64 64V288c0 35.3-28.7 64-64 64H224c-35.3 0-64-28.7-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "closed-captioning": { + "aliases": { + "unicodes": { + "secondary": [ + "10f20a" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cc", + "deaf", + "hearing", + "subtitle", + "subtitling", + "text", + "video" + ] + }, + "unicode": "f20a", + "label": "Closed Captioning", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H512c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM200 208c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48s21.5-48 48-48zm144 48c0-26.5 21.5-48 48-48c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48z" + }, + "regular": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M512 80c8.8 0 16 7.2 16 16V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16H512zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM200 208c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48s21.5-48 48-48zm144 48c0-26.5 21.5-48 48-48c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "cloud": { + "aliases": { + "unicodes": { + "composite": [ + "2601" + ], + "secondary": [ + "10f0c2" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.11", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atmosphere", + "cloud", + "fog", + "overcast", + "save", + "upload", + "weather" + ] + }, + "unicode": "f0c2", + "label": "Cloud", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 336c0 79.5 64.5 144 144 144H512c70.7 0 128-57.3 128-128c0-61.9-44-113.6-102.4-125.4c4.1-10.7 6.4-22.4 6.4-34.6c0-53-43-96-96-96c-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32C167.6 32 96 103.6 96 192c0 2.7 .1 5.4 .2 8.1C40.2 219.8 0 273.2 0 336z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-arrow-down": { + "aliases": { + "names": [ + "cloud-download", + "cloud-download-alt" + ], + "unicodes": { + "composite": [ + "f381" + ], + "primary": [ + "f381" + ], + "secondary": [ + "10f0ed", + "10f381" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.11", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "export", + "save" + ] + }, + "unicode": "f0ed", + "label": "Cloud Arrow Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321804, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 480C64.5 480 0 415.5 0 336c0-62.8 40.2-116.2 96.2-135.9c-.1-2.7-.2-5.4-.2-8.1c0-88.4 71.6-160 160-160c59.3 0 111 32.2 138.7 80.2C409.9 102 428.3 96 448 96c53 0 96 43 96 96c0 12.2-2.3 23.8-6.4 34.6C596 238.4 640 290.1 640 352c0 70.7-57.3 128-128 128H144zm79-167l80 80c9.4 9.4 24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-39 39V184c0-13.3-10.7-24-24-24s-24 10.7-24 24V318.1l-39-39c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-arrow-up": { + "aliases": { + "names": [ + "cloud-upload", + "cloud-upload-alt" + ], + "unicodes": { + "composite": [ + "f382" + ], + "primary": [ + "f382" + ], + "secondary": [ + "10f0ee", + "10f382" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.11", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "import", + "save", + "upload" + ] + }, + "unicode": "f0ee", + "label": "Cloud Arrow Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321804, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 480C64.5 480 0 415.5 0 336c0-62.8 40.2-116.2 96.2-135.9c-.1-2.7-.2-5.4-.2-8.1c0-88.4 71.6-160 160-160c59.3 0 111 32.2 138.7 80.2C409.9 102 428.3 96 448 96c53 0 96 43 96 96c0 12.2-2.3 23.8-6.4 34.6C596 238.4 640 290.1 640 352c0 70.7-57.3 128-128 128H144zm79-217c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39V392c0 13.3 10.7 24 24 24s24-10.7 24-24V257.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-9.4-9.4-24.6-9.4-33.9 0l-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-bolt": { + "aliases": { + "names": [ + "thunderstorm" + ], + "unicodes": { + "composite": [ + "1f329" + ], + "secondary": [ + "10f76c" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bolt", + "cloud", + "cloud with lightning", + "lightning", + "precipitation", + "rain", + "storm", + "weather" + ] + }, + "unicode": "f76c", + "label": "Cloud Bolt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224c0 53 43 96 96 96h47.2L290 202.5c17.6-14.1 42.6-14 60.2 .2s22.8 38.6 12.8 58.8L333.7 320H352h64c53 0 96-43 96-96s-43-96-96-96c-.5 0-1.1 0-1.6 0c1.1-5.2 1.6-10.5 1.6-16c0-44.2-35.8-80-80-80c-24.3 0-46.1 10.9-60.8 28C256.5 24.3 219.1 0 176 0C114.1 0 64 50.1 64 112c0 7.1 .7 14.1 1.9 20.8C27.6 145.4 0 181.5 0 224zm330.1 3.6c-5.8-4.7-14.2-4.7-20.1-.1l-160 128c-5.3 4.2-7.4 11.4-5.1 17.8s8.3 10.7 15.1 10.7h70.1L177.7 488.8c-3.4 6.7-1.6 14.9 4.3 19.6s14.2 4.7 20.1 .1l160-128c5.3-4.2 7.4-11.4 5.1-17.8s-8.3-10.7-15.1-10.7H281.9l52.4-104.8c3.4-6.7 1.6-14.9-4.2-19.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-meatball": { + "aliases": { + "unicodes": { + "secondary": [ + "10f73b" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "FLDSMDFR", + "food", + "spaghetti", + "storm" + ] + }, + "unicode": "f73b", + "label": "Cloud Meatball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224c0 53 43 96 96 96h44.7c9.5-23.5 32.5-40 59.3-40c2 0 3.9 .1 5.8 .3C217.6 265.5 235.7 256 256 256s38.4 9.5 50.2 24.3c1.9-.2 3.9-.3 5.8-.3c26.9 0 49.9 16.5 59.3 40H416c53 0 96-43 96-96s-43-96-96-96c-.5 0-1.1 0-1.6 0c1.1-5.2 1.6-10.5 1.6-16c0-44.2-35.8-80-80-80c-24.3 0-46.1 10.9-60.8 28C256.5 24.3 219.1 0 176 0C114.1 0 64 50.1 64 112c0 7.1 .7 14.1 1.9 20.8C27.6 145.4 0 181.5 0 224zm288 96c0-17.7-14.3-32-32-32s-32 14.3-32 32c0 1 .1 2.1 .1 3.1c-.7-.8-1.4-1.6-2.1-2.3c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3c.7 .7 1.5 1.4 2.3 2.1c-1-.1-2.1-.1-3.1-.1c-17.7 0-32 14.3-32 32s14.3 32 32 32c1 0 2.1-.1 3.1-.1c-.8 .7-1.6 1.3-2.3 2.1c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0c.7-.7 1.4-1.5 2.1-2.3c-.1 1-.1 2.1-.1 3.1c0 17.7 14.3 32 32 32s32-14.3 32-32c0-1-.1-2.1-.1-3.1c.7 .8 1.3 1.6 2.1 2.3c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3c-.7-.7-1.5-1.4-2.3-2.1c1 .1 2.1 .1 3.1 .1c17.7 0 32-14.3 32-32s-14.3-32-32-32c-1 0-2.1 .1-3.1 .1c.8-.7 1.6-1.3 2.3-2.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-.7 .7-1.4 1.5-2.1 2.3c.1-1 .1-2.1 .1-3.1zM48 448a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm416 0a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-moon": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6c3" + ] + } + }, + "changes": [ + "5.4.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crescent", + "evening", + "lunar", + "night", + "partly cloudy", + "sky" + ] + }, + "unicode": "f6c3", + "label": "Cloud Moon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M495.8 0c5.5 0 10.9 .2 16.3 .7c7 .6 12.8 5.7 14.3 12.5s-1.6 13.9-7.7 17.3c-44.4 25.2-74.4 73-74.4 127.8c0 81 65.5 146.6 146.2 146.6c8.6 0 17-.7 25.1-2.1c6.9-1.2 13.8 2.2 17 8.5s1.9 13.8-3.1 18.7c-34.5 33.6-81.7 54.4-133.6 54.4c-9.3 0-18.4-.7-27.4-1.9c-11.2-22.6-29.8-40.9-52.6-51.7c-2.7-58.5-50.3-105.3-109.2-106.7c-1.7-10.4-2.6-21-2.6-31.8C304 86.1 389.8 0 495.8 0zM447.9 431.9c0 44.2-35.8 80-80 80H96c-53 0-96-43-96-96c0-47.6 34.6-87 80-94.6l0-1.3c0-53 43-96 96-96c34.9 0 65.4 18.6 82.2 46.4c13-9.1 28.8-14.4 45.8-14.4c44.2 0 80 35.8 80 80c0 5.9-.6 11.7-1.9 17.2c37.4 6.7 65.8 39.4 65.8 78.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-moon-rain": { + "aliases": { + "unicodes": { + "secondary": [ + "10f73c" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crescent", + "evening", + "lunar", + "night", + "partly cloudy", + "precipitation", + "rain", + "sky", + "storm" + ] + }, + "unicode": "f73c", + "label": "Cloud Moon Rain", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M453 0C392.5 0 342.2 43.8 333 101.3c33.3 16.5 56.7 50.2 58.5 89.5c21.8 10.3 39.5 27.9 50 49.6c3.8 .4 7.7 .5 11.6 .5c32.9 0 62.8-13 84.6-34c4.8-4.6 6-11.7 3-17.6s-9.5-9.2-16-8.1c-4.6 .8-9.4 1.2-14.3 1.2c-46.1 0-83.2-37-83.2-82.3c0-30.6 17-57.5 42.3-71.6c5.8-3.2 8.8-9.9 7.4-16.3S469.9 .9 463.3 .4C459.9 .1 456.4 0 453 0zM346.4 361.3c41.6 0 75.3-33.7 75.3-75.3c0-37-26.7-67.8-62-74.1c1.2-5.2 1.8-10.7 1.8-16.2c0-41.6-33.7-75.3-75.3-75.3c-16 0-30.9 5-43.1 13.5c-15.8-26.2-44.5-43.7-77.4-43.7c-49.9 0-90.3 40.4-90.3 90.3l0 1.2C32.7 189.1 .1 226.2 .1 271c0 49.9 40.4 90.3 90.3 90.3H346.4zm-265.9 34c-10.4-6.9-24.4-4.1-31.3 6.3L19.1 446.8c-6.9 10.4-4.1 24.4 6.3 31.3s24.4 4.1 31.3-6.3l30.1-45.2c6.9-10.4 4.1-24.4-6.3-31.3zm90.3 0c-10.4-6.9-24.4-4.1-31.3 6.3l-30.1 45.2c-6.9 10.4-4.1 24.4 6.3 31.3s24.4 4.1 31.3-6.3l30.1-45.2c6.9-10.4 4.1-24.4-6.3-31.3zm90.3 0c-10.4-6.9-24.4-4.1-31.3 6.3l-30.1 45.2c-6.9 10.4-4.1 24.4 6.3 31.3s24.4 4.1 31.3-6.3l30.1-45.2c6.9-10.4 4.1-24.4-6.3-31.3zm90.3 0c-10.4-6.9-24.4-4.1-31.3 6.3l-30.1 45.2c-6.9 10.4-4.1 24.4 6.3 31.3s24.4 4.1 31.3-6.3l30.1-45.2c6.9-10.4 4.1-24.4-6.3-31.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-rain": { + "aliases": { + "unicodes": { + "composite": [ + "1f327", + "26c6" + ], + "secondary": [ + "10f73d" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rain", + "cloud", + "cloud with rain", + "precipitation", + "rain", + "sky", + "storm" + ] + }, + "unicode": "f73d", + "label": "Cloud Rain", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 320c-53 0-96-43-96-96c0-42.5 27.6-78.6 65.9-91.2C64.7 126.1 64 119.1 64 112C64 50.1 114.1 0 176 0c43.1 0 80.5 24.3 99.2 60c14.7-17.1 36.5-28 60.8-28c44.2 0 80 35.8 80 80c0 5.5-.6 10.8-1.6 16c.5 0 1.1 0 1.6 0c53 0 96 43 96 96s-43 96-96 96H96zm-6.8 52c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3L89.2 372zm160 0c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3L249.2 372zm124.9 64.6L409.2 372c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-showers-heavy": { + "aliases": { + "unicodes": { + "secondary": [ + "10f740" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "precipitation", + "rain", + "sky", + "storm" + ] + }, + "unicode": "f740", + "label": "Cloud Showers Heavy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 320c-53 0-96-43-96-96c0-42.5 27.6-78.6 65.9-91.2C64.7 126.1 64 119.1 64 112C64 50.1 114.1 0 176 0c43.1 0 80.5 24.3 99.2 60c14.7-17.1 36.5-28 60.8-28c44.2 0 80 35.8 80 80c0 5.5-.6 10.8-1.6 16c.5 0 1.1 0 1.6 0c53 0 96 43 96 96s-43 96-96 96H96zM81.5 353.9c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6S-3.3 490.7 1.9 478.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6zm120 0c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6zm244.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6s17.8 19.3 12.6 31.5zM313.5 353.9c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-showers-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cloud", + "deluge", + "flood", + "rain", + "storm", + "surge" + ] + }, + "unicode": "e4e4", + "label": "Cloud Showers Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M224 0c38.6 0 71.9 22.8 87.2 55.7C325.7 41.1 345.8 32 368 32c38.7 0 71 27.5 78.4 64H448c35.3 0 64 28.7 64 64s-28.7 64-64 64H128c-35.3 0-64-28.7-64-64s28.7-64 64-64c0-53 43-96 96-96zM140.6 292.3l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2s15.1 21.6 8.2 32.9zm327.8-32.9c11.4 6.8 15 21.6 8.2 32.9l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2zM252.6 292.3l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2s15.1 21.6 8.2 32.9zm103.8-32.9c11.4 6.8 15 21.6 8.2 32.9l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2zM306.5 421.9C329 437.4 356.5 448 384 448c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 501.7 417 512 384 512c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 437.2 165.1 448 192 448c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-sun": { + "aliases": { + "unicodes": { + "composite": [ + "26c5" + ], + "secondary": [ + "10f6c4" + ] + } + }, + "changes": [ + "5.4.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clear", + "cloud", + "day", + "daytime", + "fall", + "outdoors", + "overcast", + "partly cloudy", + "sun", + "sun behind cloud" + ] + }, + "unicode": "f6c4", + "label": "Cloud Sun", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M294.2 1.2c5.1 2.1 8.7 6.7 9.6 12.1l14.1 84.7 84.7 14.1c5.4 .9 10 4.5 12.1 9.6s1.5 10.9-1.6 15.4l-38.5 55c-2.2-.1-4.4-.2-6.7-.2c-23.3 0-45.1 6.2-64 17.1l0-1.1c0-53-43-96-96-96s-96 43-96 96s43 96 96 96c8.1 0 15.9-1 23.4-2.9c-36.6 18.1-63.3 53.1-69.8 94.9l-24.4 17c-4.5 3.2-10.3 3.8-15.4 1.6s-8.7-6.7-9.6-12.1L98.1 317.9 13.4 303.8c-5.4-.9-10-4.5-12.1-9.6s-1.5-10.9 1.6-15.4L52.5 208 2.9 137.2c-3.2-4.5-3.8-10.3-1.6-15.4s6.7-8.7 12.1-9.6L98.1 98.1l14.1-84.7c.9-5.4 4.5-10 9.6-12.1s10.9-1.5 15.4 1.6L208 52.5 278.8 2.9c4.5-3.2 10.3-3.8 15.4-1.6zM144 208a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM639.9 431.9c0 44.2-35.8 80-80 80H288c-53 0-96-43-96-96c0-47.6 34.6-87 80-94.6l0-1.3c0-53 43-96 96-96c34.9 0 65.4 18.6 82.2 46.4c13-9.1 28.8-14.4 45.8-14.4c44.2 0 80 35.8 80 80c0 5.9-.6 11.7-1.9 17.2c37.4 6.7 65.8 39.4 65.8 78.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-sun-rain": { + "aliases": { + "unicodes": { + "composite": [ + "1f326" + ], + "secondary": [ + "10f743" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cloud", + "day", + "overcast", + "precipitation", + "rain", + "storm", + "summer", + "sun", + "sun behind rain cloud", + "sunshower" + ] + }, + "unicode": "f743", + "label": "Cloud Sun Rain", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M294.2 1.2c5.1 2.1 8.7 6.7 9.6 12.1l10.4 62.4c-23.3 10.8-42.9 28.4-56 50.3c-14.6-9-31.8-14.1-50.2-14.1c-53 0-96 43-96 96c0 35.5 19.3 66.6 48 83.2c.8 31.8 13.2 60.7 33.1 82.7l-56 39.2c-4.5 3.1-10.3 3.8-15.4 1.6s-8.7-6.7-9.6-12.1L98.1 317.9 13.4 303.8c-5.4-.9-10-4.5-12.1-9.6s-1.5-10.9 1.6-15.4L52.5 208 2.9 137.2c-3.2-4.5-3.8-10.3-1.6-15.4s6.7-8.7 12.1-9.6L98.1 98.1l14.1-84.7c.9-5.4 4.5-10 9.6-12.1s10.9-1.5 15.4 1.6L208 52.5 278.8 2.9c4.5-3.2 10.3-3.8 15.4-1.6zM208 144c13.8 0 26.7 4.4 37.1 11.9c-1.2 4.1-2.2 8.3-3 12.6c-37.9 14.6-67.2 46.6-77.8 86.4C151.8 243.1 144 226.5 144 208c0-35.3 28.7-64 64-64zm69.4 276c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7zm96 0c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7zm96 0c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7zm96 0c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7zm74.5-116.1c0 44.2-35.8 80-80 80H288c-53 0-96-43-96-96c0-47.6 34.6-87 80-94.6l0-1.3c0-53 43-96 96-96c34.9 0 65.4 18.6 82.2 46.4c13-9.1 28.8-14.4 45.8-14.4c44.2 0 80 35.8 80 80c0 5.9-.6 11.7-1.9 17.2c37.4 6.7 65.8 39.4 65.8 78.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloudflare": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07d", + "label": "Cloudflare", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M407.906,319.913l-230.8-2.928a4.58,4.58,0,0,1-3.632-1.926,4.648,4.648,0,0,1-.494-4.147,6.143,6.143,0,0,1,5.361-4.076L411.281,303.9c27.631-1.26,57.546-23.574,68.022-50.784l13.286-34.542a7.944,7.944,0,0,0,.524-2.936,7.735,7.735,0,0,0-.164-1.631A151.91,151.91,0,0,0,201.257,198.4,68.12,68.12,0,0,0,94.2,269.59C41.924,271.106,0,313.728,0,366.12a96.054,96.054,0,0,0,1.029,13.958,4.508,4.508,0,0,0,4.445,3.871l426.1.051c.043,0,.08-.019.122-.02a5.606,5.606,0,0,0,5.271-4l3.273-11.265c3.9-13.4,2.448-25.8-4.1-34.9C430.124,325.423,420.09,320.487,407.906,319.913ZM513.856,221.1c-2.141,0-4.271.062-6.391.164a3.771,3.771,0,0,0-3.324,2.653l-9.077,31.193c-3.9,13.4-2.449,25.786,4.1,34.89,6.02,8.4,16.054,13.323,28.238,13.9l49.2,2.939a4.491,4.491,0,0,1,3.51,1.894,4.64,4.64,0,0,1,.514,4.169,6.153,6.153,0,0,1-5.351,4.075l-51.125,2.939c-27.754,1.27-57.669,23.574-68.145,50.784l-3.695,9.606a2.716,2.716,0,0,0,2.427,3.68c.046,0,.088.017.136.017h175.91a4.69,4.69,0,0,0,4.539-3.37,124.807,124.807,0,0,0,4.682-34C640,277.3,583.524,221.1,513.856,221.1Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cloudscale": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f383", + "label": "cloudscale.ch", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cloudsmith": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f384", + "label": "Cloudsmith", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 332, + 512 + ], + "width": 332, + "height": 512, + "path": "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cloudversify": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f385", + "label": "cloudversify", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 616, + 512 + ], + "width": 616, + "height": 512, + "path": "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "clover": { + "changes": [ + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "4", + "charm", + "clover", + "four", + "four leaf clover", + "four-leaf clover", + "leaf", + "leprechaun", + "luck", + "lucky" + ] + }, + "unicode": "e139", + "label": "Clover", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M173.3 32C139.4 32 112 59.4 112 93.3v4.9c0 12 3.3 23.7 9.4 34l18.8 31.3c1.1 1.8 1.2 3.1 1 4.2c-.2 1.2-.8 2.5-2 3.6s-2.4 1.8-3.6 2c-1 .2-2.4 .1-4.2-1l-31.3-18.8c-10.3-6.2-22-9.4-34-9.4H61.3C27.4 144 0 171.4 0 205.3c0 16.2 6.5 31.8 17.9 43.3l1.2 1.2c3.4 3.4 3.4 9 0 12.4l-1.2 1.2C6.5 274.9 0 290.5 0 306.7C0 340.6 27.4 368 61.3 368h4.9c12 0 23.7-3.3 34-9.4l31.3-18.8c1.8-1.1 3.1-1.2 4.2-1c1.2 .2 2.5 .8 3.6 2s1.8 2.4 2 3.6c.2 1 .1 2.4-1 4.2l-18.8 31.3c-6.2 10.3-9.4 22-9.4 34v4.9c0 33.8 27.4 61.3 61.3 61.3c16.2 0 31.8-6.5 43.3-17.9l1.2-1.2c3.4-3.4 9-3.4 12.4 0l1.2 1.2c11.5 11.5 27.1 17.9 43.3 17.9c33.8 0 61.3-27.4 61.3-61.3v-4.9c0-12-3.3-23.7-9.4-34l-18.8-31.3c-1.1-1.8-1.2-3.1-1-4.2c.2-1.2 .8-2.5 2-3.6s2.4-1.8 3.6-2c1-.2 2.4-.1 4.2 1l31.3 18.8c10.3 6.2 22 9.4 34 9.4h4.9c33.8 0 61.3-27.4 61.3-61.3c0-16.2-6.5-31.8-17.9-43.3l-1.2-1.2c-3.4-3.4-3.4-9 0-12.4l1.2-1.2c11.5-11.5 17.9-27.1 17.9-43.3c0-33.8-27.4-61.3-61.3-61.3h-4.9c-12 0-23.7 3.3-34 9.4l-31.3 18.8c-1.8 1.1-3.1 1.2-4.2 1c-1.2-.2-2.5-.8-3.6-2s-1.8-2.4-2-3.6c-.2-1-.1-2.4 1-4.2l18.8-31.3c6.2-10.3 9.4-22 9.4-34V93.3C336 59.4 308.6 32 274.7 32c-16.2 0-31.8 6.5-43.3 17.9l-1.2 1.2c-3.4 3.4-9 3.4-12.4 0l-1.2-1.2C205.1 38.5 189.5 32 173.3 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cmplid": { + "changes": [ + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e360", + "label": "Cmplid", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M226.119,388.165a3.816,3.816,0,0,0-2.294-3.5,3.946,3.946,0,0,0-1.629-.385L72.6,384.3a19.243,19.243,0,0,1-17.924-26.025L81.585,255.692a35.72,35.72,0,0,1,32.373-26H262.525a7.07,7.07,0,0,0,6.392-5.194l10.769-41.131a3.849,3.849,0,0,0-2.237-4.937,3.755,3.755,0,0,0-1.377-.261c-.063,0-.126,0-.189.005H127.38a106.8,106.8,0,0,0-96.99,77.1L3.483,358.824A57.469,57.469,0,0,0,57.314,436q1.43,0,2.86-.072H208.742a7.131,7.131,0,0,0,6.391-5.193L225.839,389.6A3.82,3.82,0,0,0,226.119,388.165ZM306.658,81.2a3.861,3.861,0,0,0,.251-1.367A3.813,3.813,0,0,0,303.079,76c-.064,0-.128,0-.192,0h-41A7.034,7.034,0,0,0,255.5,81.2l-21.347,80.915h51.131ZM180.364,368.249H231.5L263.452,245.69H212.321ZM511.853,79.723a3.809,3.809,0,0,0-3.8-3.661c-.058,0-.137,0-.23.007h-41a7.1,7.1,0,0,0-6.584,5.129L368.91,430.634a3.54,3.54,0,0,0-.262,1.335,3.873,3.873,0,0,0,3.864,3.863c.056,0,.112,0,.169,0h41a7.068,7.068,0,0,0,6.392-5.193L511.533,81.2A3.624,3.624,0,0,0,511.853,79.723ZM324.649,384.47h-41a7.2,7.2,0,0,0-6.392,5.194L266.52,430.8a3.662,3.662,0,0,0-.268,1.374A3.783,3.783,0,0,0,270.023,436c.06,0,.166,0,.3-.012h40.905a7.036,7.036,0,0,0,6.391-5.193l10.769-41.131a3.75,3.75,0,0,0-3.445-5.208c-.108,0-.217,0-.326.014Zm311.324-308.4h-41a7.066,7.066,0,0,0-6.392,5.129l-91.46,349.436a4.073,4.073,0,0,0-.229,1.347,3.872,3.872,0,0,0,3.863,3.851c.056,0,.112,0,.169,0h40.968a7.1,7.1,0,0,0,6.392-5.193L639.68,81.2a3.624,3.624,0,0,0,.32-1.475,3.841,3.841,0,0,0-3.821-3.564c-.068,0-.137,0-.206.006ZM371.562,225.236l10.8-41.1a4.369,4.369,0,0,0,.227-1.388,3.869,3.869,0,0,0-3.861-3.842c-.057,0-.113,0-.169,0h-41.1a7.292,7.292,0,0,0-6.391,5.226l-10.834,41.1a4.417,4.417,0,0,0-.26,1.493c0,.069,0,.138,0,.206a3.776,3.776,0,0,0,3.757,3.507c.076,0,.18,0,.3-.012h41.129A7.034,7.034,0,0,0,371.562,225.236Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "code": { + "aliases": { + "unicodes": { + "secondary": [ + "10f121" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brackets", + "code", + "development", + "html" + ] + }, + "unicode": "f121", + "label": "Code", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-branch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f126" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "branch", + "git", + "github", + "rebase", + "svn", + "vcs", + "version" + ] + }, + "unicode": "f126", + "label": "Code Branch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M80 104c13.3 0 24-10.7 24-24s-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24zm80-24c0 32.8-19.7 61-48 73.3v87.8c18.8-10.9 40.7-17.1 64-17.1h96c35.3 0 64-28.7 64-64v-6.7C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V160c0 70.7-57.3 128-128 128H176c-35.3 0-64 28.7-64 64v6.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V352 153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm232 0c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zM80 456c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-commit": { + "aliases": { + "unicodes": { + "secondary": [ + "10f386" + ] + } + }, + "changes": [ + "5.0.0", + "5.1.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "commit", + "git", + "github", + "hash", + "rebase", + "svn", + "vcs", + "version" + ] + }, + "unicode": "f386", + "label": "Code Commit", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 336c44.2 0 80-35.8 80-80s-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80zm156.8-48C462 361 397.4 416 320 416s-142-55-156.8-128H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H163.2C178 151 242.6 96 320 96s142 55 156.8 128H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H476.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-compare": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "compare", + "git", + "github", + "svn", + "version" + ] + }, + "unicode": "e13a", + "label": "Code Compare", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M320 488c0 9.5-5.6 18.1-14.2 21.9s-18.8 2.3-25.8-4.1l-80-72c-5.1-4.6-7.9-11-7.9-17.8s2.9-13.3 7.9-17.8l80-72c7-6.3 17.2-7.9 25.8-4.1s14.2 12.4 14.2 21.9v40h16c35.3 0 64-28.7 64-64V153.3C371.7 141 352 112.8 352 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V320c0 70.7-57.3 128-128 128H320v40zM456 80c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zM192 24c0-9.5 5.6-18.1 14.2-21.9s18.8-2.3 25.8 4.1l80 72c5.1 4.6 7.9 11 7.9 17.8s-2.9 13.3-7.9 17.8l-80 72c-7 6.3-17.2 7.9-25.8 4.1s-14.2-12.4-14.2-21.9V128H176c-35.3 0-64 28.7-64 64V358.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V192c0-70.7 57.3-128 128-128h16V24zM56 432c0 13.3 10.7 24 24 24s24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-fork": { + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fork", + "git", + "github", + "svn", + "version" + ] + }, + "unicode": "e13b", + "label": "Code Fork", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M80 104c13.3 0 24-10.7 24-24s-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24zm80-24c0 32.8-19.7 61-48 73.3V192c0 17.7 14.3 32 32 32H304c17.7 0 32-14.3 32-32V153.3C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V192c0 53-43 96-96 96H256v70.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V288H144c-53 0-96-43-96-96V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm208 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zM248 432c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-merge": { + "aliases": { + "unicodes": { + "secondary": [ + "10f387" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "git", + "github", + "merge", + "pr", + "rebase", + "svn", + "vcs", + "version" + ] + }, + "unicode": "f387", + "label": "Code Merge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M80 104c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm32.4 49.2c28-12.4 47.6-40.5 47.6-73.2c0-44.2-35.8-80-80-80S0 35.8 0 80c0 32.8 19.7 61 48 73.3V358.7C19.7 371 0 399.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-32.8-19.7-61-48-73.3V272c26.7 20.1 60 32 96 32h86.7c12.3 28.3 40.5 48 73.3 48c44.2 0 80-35.8 80-80s-35.8-80-80-80c-32.8 0-61 19.7-73.3 48H208c-49.9 0-91-38.1-95.6-86.8zM80 456c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zM392 272c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-pull-request": { + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "git", + "github", + "pr", + "svn", + "version" + ] + }, + "unicode": "e13c", + "label": "Code Pull Request", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M305.8 2.1C314.4 5.9 320 14.5 320 24V64h16c70.7 0 128 57.3 128 128V358.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V192c0-35.3-28.7-64-64-64H320v40c0 9.5-5.6 18.1-14.2 21.9s-18.8 2.3-25.8-4.1l-80-72c-5.1-4.6-7.9-11-7.9-17.8s2.9-13.3 7.9-17.8l80-72c7-6.3 17.2-7.9 25.8-4.1zM104 80c0-13.3-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24s24-10.7 24-24zm8 73.3V358.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80c0 32.8-19.7 61-48 73.3zM104 432c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zm328 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "codepen": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1cb", + "label": "Codepen", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "codiepie": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f284", + "label": "Codie Pie", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 472, + 512 + ], + "width": 472, + "height": 512, + "path": "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "coins": { + "aliases": { + "unicodes": { + "secondary": [ + "10f51e" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency", + "dime", + "financial", + "gold", + "money", + "penny" + ] + }, + "unicode": "f51e", + "label": "Coins", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 80c0 18-14.3 34.6-38.4 48c-29.1 16.1-72.5 27.5-122.3 30.9c-3.7-1.8-7.4-3.5-11.3-5C300.6 137.4 248.2 128 192 128c-8.3 0-16.4 .2-24.5 .6l-1.1-.6C142.3 114.6 128 98 128 80c0-44.2 86-80 192-80S512 35.8 512 80zM160.7 161.1c10.2-.7 20.7-1.1 31.3-1.1c62.2 0 117.4 12.3 152.5 31.4C369.3 204.9 384 221.7 384 240c0 4-.7 7.9-2.1 11.7c-4.6 13.2-17 25.3-35 35.5c0 0 0 0 0 0c-.1 .1-.3 .1-.4 .2l0 0 0 0c-.3 .2-.6 .3-.9 .5c-35 19.4-90.8 32-153.6 32c-59.6 0-112.9-11.3-148.2-29.1c-1.9-.9-3.7-1.9-5.5-2.9C14.3 274.6 0 258 0 240c0-34.8 53.4-64.5 128-75.4c10.5-1.5 21.4-2.7 32.7-3.5zM416 240c0-21.9-10.6-39.9-24.1-53.4c28.3-4.4 54.2-11.4 76.2-20.5c16.3-6.8 31.5-15.2 43.9-25.5V176c0 19.3-16.5 37.1-43.8 50.9c-14.6 7.4-32.4 13.7-52.4 18.5c.1-1.8 .2-3.5 .2-5.3zm-32 96c0 18-14.3 34.6-38.4 48c-1.8 1-3.6 1.9-5.5 2.9C304.9 404.7 251.6 416 192 416c-62.8 0-118.6-12.6-153.6-32C14.3 370.6 0 354 0 336V300.6c12.5 10.3 27.6 18.7 43.9 25.5C83.4 342.6 135.8 352 192 352s108.6-9.4 148.1-25.9c7.8-3.2 15.3-6.9 22.4-10.9c6.1-3.4 11.8-7.2 17.2-11.2c1.5-1.1 2.9-2.3 4.3-3.4V304v5.7V336zm32 0V304 278.1c19-4.2 36.5-9.5 52.1-16c16.3-6.8 31.5-15.2 43.9-25.5V272c0 10.5-5 21-14.9 30.9c-16.3 16.3-45 29.7-81.3 38.4c.1-1.7 .2-3.5 .2-5.3zM192 448c56.2 0 108.6-9.4 148.1-25.9c16.3-6.8 31.5-15.2 43.9-25.5V432c0 44.2-86 80-192 80S0 476.2 0 432V396.6c12.5 10.3 27.6 18.7 43.9 25.5C83.4 438.6 135.8 448 192 448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "colon-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Colon Sign", + "currency" + ] + }, + "unicode": "e140", + "label": "Colon Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M223 39.8c4.3-17.1-6.1-34.5-23.3-38.8S165.2 7.1 161 24.2L149.9 68.6C64.1 87.8 0 164.4 0 256c0 58.1 25.8 110.2 66.7 145.4L49 472.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l13-52.1c9 3.4 18.4 6.2 28 8.2L145 472.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l10.4-41.4c33.4-4.4 64.1-17.4 89.8-36.7c14.1-10.6 17-30.7 6.4-44.8s-30.7-17-44.8-6.4c-10.2 7.7-21.7 13.9-34 18.3L289 160c9.4-.3 18.5-4.7 24.6-12.8c10.6-14.1 7.8-34.2-6.4-44.8c-1.1-.8-2.2-1.6-3.3-2.4L319 39.8c4.3-17.1-6.1-34.5-23.3-38.8S261.2 7.1 257 24.2L245.1 71.5c-9.3-2.7-18.8-4.6-28.6-5.9L223 39.8zM131.2 143.3L85.3 326.8C71.9 306.5 64 282.2 64 256c0-48.7 27.2-91 67.2-112.7zm8.6 229.5l61.1-244.6c9.9 .7 19.5 2.5 28.7 5.3l-62 248.1c-9.7-1.9-19-4.8-27.8-8.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "comment": { + "aliases": { + "unicodes": { + "composite": [ + "1f5e9", + "f0e5" + ], + "secondary": [ + "10f075" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right Speech Bubble", + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "unicode": "f075", + "label": "Comment", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 240c0 114.9-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9c-11.9 8.7-31.3 20.6-54.3 30.6C73.6 471.1 44.7 480 16 480c-6.5 0-12.3-3.9-14.8-9.9c-2.5-6-1.1-12.8 3.4-17.4l0 0 0 0 0 0 0 0 .3-.3c.3-.3 .7-.7 1.3-1.4c1.1-1.2 2.8-3.1 4.9-5.7c4.1-5 9.6-12.4 15.2-21.6c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240C0 125.1 114.6 32 256 32s256 93.1 256 208z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M123.6 391.3c12.9-9.4 29.6-11.8 44.6-6.4c26.5 9.6 56.2 15.1 87.8 15.1c124.7 0 208-80.5 208-160s-83.3-160-208-160S48 160.5 48 240c0 32 12.4 62.8 35.7 89.2c8.6 9.7 12.8 22.5 11.8 35.5c-1.4 18.1-5.7 34.7-11.3 49.4c17-7.9 31.1-16.7 39.4-22.7zM21.2 431.9c1.8-2.7 3.5-5.4 5.1-8.1c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240C0 125.1 114.6 32 256 32s256 93.1 256 208s-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9c-11.9 8.7-31.3 20.6-54.3 30.6c-15.1 6.6-32.3 12.6-50.1 16.1c-.8 .2-1.6 .3-2.4 .5c-4.4 .8-8.7 1.5-13.2 1.9c-.2 0-.5 .1-.7 .1c-5.1 .5-10.2 .8-15.3 .8c-6.5 0-12.3-3.9-14.8-9.9c-2.5-6-1.1-12.8 3.4-17.4c4.1-4.2 7.8-8.7 11.3-13.5c1.7-2.3 3.3-4.6 4.8-6.9c.1-.2 .2-.3 .3-.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "comment-dollar": { + "aliases": { + "unicodes": { + "secondary": [ + "10f651" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "money", + "note", + "notification", + "pay", + "sms", + "speech", + "spend", + "texting", + "transfer" + ] + }, + "unicode": "f651", + "label": "Comment Dollar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zm20-312v13.9c7.5 1.2 14.6 2.9 21.1 4.7c10.7 2.8 17 13.8 14.2 24.5s-13.8 17-24.5 14.2c-11-2.9-21.6-5-31.2-5.2c-7.9-.1-16 1.8-21.5 5c-4.8 2.8-6.2 5.6-6.2 9.3c0 1.8 .1 3.5 5.3 6.7c6.3 3.8 15.5 6.7 28.3 10.5l.7 .2c11.2 3.4 25.6 7.7 37.1 15c12.9 8.1 24.3 21.3 24.6 41.6c.3 20.9-10.5 36.1-24.8 45c-7.2 4.5-15.2 7.3-23.2 9V344c0 11-9 20-20 20s-20-9-20-20V329.4c-10.3-2.2-20-5.5-28.2-8.4l0 0 0 0c-2.1-.7-4.1-1.4-6.1-2.1c-10.5-3.5-16.1-14.8-12.6-25.3s14.8-16.1 25.3-12.6c2.5 .8 4.9 1.7 7.2 2.4c13.6 4.6 24 8.1 35.1 8.5c8.6 .3 16.5-1.6 21.4-4.7c4.1-2.5 6-5.5 5.9-10.5c0-2.9-.8-5-5.9-8.2c-6.3-4-15.4-6.9-28-10.7l-1.7-.5c-10.9-3.3-24.6-7.4-35.6-14c-12.7-7.7-24.6-20.5-24.7-40.7c-.1-21.1 11.8-35.7 25.8-43.9c6.9-4.1 14.5-6.8 22.2-8.5V136c0-11 9-20 20-20s20 9 20 20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "comment-dots": { + "aliases": { + "names": [ + "commenting" + ], + "unicodes": { + "composite": [ + "1f4ac", + "f27b" + ], + "secondary": [ + "10f4ad" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "balloon", + "bubble", + "chat", + "comic", + "commenting", + "conversation", + "dialog", + "feedback", + "message", + "more", + "note", + "notification", + "reply", + "sms", + "speech", + "speech balloon", + "texting" + ] + }, + "unicode": "f4ad", + "label": "Comment Dots", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zM128 208a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 0a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm96 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M168.2 384.9c-15-5.4-31.7-3.1-44.6 6.4c-8.2 6-22.3 14.8-39.4 22.7c5.6-14.7 9.9-31.3 11.3-49.4c1-12.9-3.3-25.7-11.8-35.5C60.4 302.8 48 272 48 240c0-79.5 83.3-160 208-160s208 80.5 208 160s-83.3 160-208 160c-31.6 0-61.3-5.5-87.8-15.1zM26.3 423.8c-1.6 2.7-3.3 5.4-5.1 8.1l-.3 .5c-1.6 2.3-3.2 4.6-4.8 6.9c-3.5 4.7-7.3 9.3-11.3 13.5c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c5.1 0 10.2-.3 15.3-.8l.7-.1c4.4-.5 8.8-1.1 13.2-1.9c.8-.1 1.6-.3 2.4-.5c17.8-3.5 34.9-9.5 50.1-16.1c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9zM144 272a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm144-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm80 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "comment-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7f5" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "advice", + "bubble", + "chat", + "commenting", + "conversation", + "diagnose", + "feedback", + "message", + "note", + "notification", + "prescription", + "sms", + "speech", + "texting" + ] + }, + "unicode": "f7f5", + "label": "Comment Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zM224 160c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H288v48c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V272H176c-8.8 0-16-7.2-16-16V224c0-8.8 7.2-16 16-16h48V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "comment-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4b3" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "cancel", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "mute", + "note", + "notification", + "quiet", + "sms", + "speech", + "texting" + ] + }, + "unicode": "f4b3", + "label": "Comment Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L512.9 376.7C552.2 340.2 576 292.3 576 240C576 125.1 461.4 32 320 32c-67.7 0-129.3 21.4-175.1 56.3L38.8 5.1zM64 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9c37 0 72.3-6.4 104-17.9L82.9 161.3C70.7 185.6 64 212.2 64 240z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "comment-sms": { + "aliases": { + "names": [ + "sms" + ], + "unicodes": { + "secondary": [ + "10f7cd" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chat", + "conversation", + "message", + "mobile", + "notification", + "phone", + "sms", + "texting" + ] + }, + "unicode": "f7cd", + "label": "Comment Sms", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zM202.9 176.8c6.5-2.2 13.7 .1 17.9 5.6L256 229.3l35.2-46.9c4.1-5.5 11.3-7.8 17.9-5.6s10.9 8.3 10.9 15.2v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V240l-19.2 25.6c-3 4-7.8 6.4-12.8 6.4s-9.8-2.4-12.8-6.4L224 240v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-6.9 4.4-13 10.9-15.2zm173.1 38c0 .2 0 .4 0 .4c.1 .1 .6 .8 2.2 1.7c3.9 2.3 9.6 4.1 18.3 6.8l.6 .2c7.4 2.2 17.3 5.2 25.2 10.2c9.1 5.7 17.4 15.2 17.6 29.9c.2 15-7.6 26-17.8 32.3c-9.5 5.9-20.9 7.9-30.7 7.6c-12.2-.4-23.7-4.4-32.6-7.4l0 0 0 0c-1.4-.5-2.7-.9-4-1.4c-8.4-2.8-12.9-11.9-10.1-20.2s11.9-12.9 20.2-10.1c1.7 .6 3.3 1.1 4.9 1.6l0 0 0 0c9.1 3.1 15.6 5.3 22.6 5.5c5.3 .2 10-1 12.8-2.8c1.2-.8 1.8-1.5 2.1-2c.2-.4 .6-1.2 .6-2.7l0-.2c0-.7 0-1.4-2.7-3.1c-3.8-2.4-9.6-4.3-18-6.9l-1.2-.4c-7.2-2.2-16.7-5-24.3-9.6c-9-5.4-17.7-14.7-17.7-29.4c-.1-15.2 8.6-25.7 18.5-31.6c9.4-5.5 20.5-7.5 29.7-7.4c10 .2 19.7 2.3 27.9 4.4c8.5 2.3 13.6 11 11.3 19.6s-11 13.6-19.6 11.3c-7.3-1.9-14.1-3.3-20.1-3.4c-4.9-.1-9.8 1.1-12.9 2.9c-1.4 .8-2.1 1.6-2.4 2c-.2 .3-.4 .8-.4 1.9zm-272 0c0 .2 0 .4 0 .4c.1 .1 .6 .8 2.2 1.7c3.9 2.3 9.6 4.1 18.3 6.8l.6 .2c7.4 2.2 17.3 5.2 25.2 10.2c9.1 5.7 17.4 15.2 17.6 29.9c.2 15-7.6 26-17.8 32.3c-9.5 5.9-20.9 7.9-30.7 7.6c-12.3-.4-24.2-4.5-33.2-7.6l0 0 0 0c-1.3-.4-2.5-.8-3.6-1.2c-8.4-2.8-12.9-11.9-10.1-20.2s11.9-12.9 20.2-10.1c1.4 .5 2.8 .9 4.1 1.4l0 0 0 0c9.5 3.2 16.5 5.6 23.7 5.8c5.3 .2 10-1 12.8-2.8c1.2-.8 1.8-1.5 2.1-2c.2-.4 .6-1.2 .6-2.7l0-.2c0-.7 0-1.4-2.7-3.1c-3.8-2.4-9.6-4.3-18-6.9l-1.2-.4 0 0c-7.2-2.2-16.7-5-24.3-9.6C80.8 239 72.1 229.7 72 215c-.1-15.2 8.6-25.7 18.5-31.6c9.4-5.5 20.5-7.5 29.7-7.4c9.5 .1 22.2 2.1 31.1 4.4c8.5 2.3 13.6 11 11.3 19.6s-11 13.6-19.6 11.3c-6.6-1.8-16.8-3.3-23.3-3.4c-4.9-.1-9.8 1.1-12.9 2.9c-1.4 .8-2.1 1.6-2.4 2c-.2 .3-.4 .8-.4 1.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "comments": { + "aliases": { + "unicodes": { + "composite": [ + "1f5ea", + "f0e6" + ], + "secondary": [ + "10f086" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Two Speech Bubbles", + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "unicode": "f086", + "label": "Comments", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 352c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176c0 38.6 14.7 74.3 39.6 103.4c-3.5 9.4-8.7 17.7-14.2 24.7c-4.8 6.2-9.7 11-13.3 14.3c-1.8 1.6-3.3 2.9-4.3 3.7c-.5 .4-.9 .7-1.1 .8l-.2 .2 0 0 0 0C1 327.2-1.4 334.4 .8 340.9S9.1 352 16 352c21.8 0 43.8-5.6 62.1-12.5c9.2-3.5 17.8-7.4 25.3-11.4C134.1 343.3 169.8 352 208 352zM448 176c0 112.3-99.1 196.9-216.5 207C255.8 457.4 336.4 512 432 512c38.2 0 73.9-8.7 104.7-23.9c7.5 4 16 7.9 25.2 11.4c18.3 6.9 40.3 12.5 62.1 12.5c6.9 0 13.1-4.5 15.2-11.1c2.1-6.6-.2-13.8-5.8-17.9l0 0 0 0-.2-.2c-.2-.2-.6-.4-1.1-.8c-1-.8-2.5-2-4.3-3.7c-3.6-3.3-8.5-8.1-13.3-14.3c-5.5-7-10.7-15.4-14.2-24.7c24.9-29 39.6-64.7 39.6-103.4c0-92.8-84.9-168.9-192.6-175.5c.4 5.1 .6 10.3 .6 15.5z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M88.2 309.1c9.8-18.3 6.8-40.8-7.5-55.8C59.4 230.9 48 204 48 176c0-63.5 63.8-128 160-128s160 64.5 160 128s-63.8 128-160 128c-13.1 0-25.8-1.3-37.8-3.6c-10.4-2-21.2-.6-30.7 4.2c-4.1 2.1-8.3 4.1-12.6 6c-16 7.2-32.9 13.5-49.9 18c2.8-4.6 5.4-9.1 7.9-13.6c1.1-1.9 2.2-3.9 3.2-5.9zM0 176c0 41.8 17.2 80.1 45.9 110.3c-.9 1.7-1.9 3.5-2.8 5.1c-10.3 18.4-22.3 36.5-36.6 52.1c-6.6 7-8.3 17.2-4.6 25.9C5.8 378.3 14.4 384 24 384c43 0 86.5-13.3 122.7-29.7c4.8-2.2 9.6-4.5 14.2-6.8c15.1 3 30.9 4.5 47.1 4.5c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176zM432 480c16.2 0 31.9-1.6 47.1-4.5c4.6 2.3 9.4 4.6 14.2 6.8C529.5 498.7 573 512 616 512c9.6 0 18.2-5.7 22-14.5c3.8-8.8 2-19-4.6-25.9c-14.2-15.6-26.2-33.7-36.6-52.1c-.9-1.7-1.9-3.4-2.8-5.1C622.8 384.1 640 345.8 640 304c0-94.4-87.9-171.5-198.2-175.8c4.1 15.2 6.2 31.2 6.2 47.8l0 .6c87.2 6.7 144 67.5 144 127.4c0 28-11.4 54.9-32.7 77.2c-14.3 15-17.3 37.6-7.5 55.8c1.1 2 2.2 4 3.2 5.9c2.5 4.5 5.2 9 7.9 13.6c-17-4.5-33.9-10.7-49.9-18c-4.3-1.9-8.5-3.9-12.6-6c-9.5-4.8-20.3-6.2-30.7-4.2c-12.1 2.4-24.7 3.6-37.8 3.6c-61.7 0-110-26.5-136.8-62.3c-16 5.4-32.8 9.4-50 11.8C279 439.8 350 480 432 480z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "comments-dollar": { + "aliases": { + "unicodes": { + "secondary": [ + "10f653" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "money", + "note", + "notification", + "pay", + "sms", + "speech", + "spend", + "texting", + "transfer" + ] + }, + "unicode": "f653", + "label": "Comments Dollar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M416 176c0 97.2-93.1 176-208 176c-38.2 0-73.9-8.7-104.7-23.9c-7.5 4-16 7.9-25.2 11.4C59.8 346.4 37.8 352 16 352c-6.9 0-13.1-4.5-15.2-11.1s.2-13.8 5.8-17.9l0 0 0 0 .2-.2c.2-.2 .6-.4 1.1-.8c1-.8 2.5-2 4.3-3.7c3.6-3.3 8.5-8.1 13.3-14.3c5.5-7 10.7-15.4 14.2-24.7C14.7 250.3 0 214.6 0 176C0 78.8 93.1 0 208 0S416 78.8 416 176zM231.5 383C348.9 372.9 448 288.3 448 176c0-5.2-.2-10.4-.6-15.5C555.1 167.1 640 243.2 640 336c0 38.6-14.7 74.3-39.6 103.4c3.5 9.4 8.7 17.7 14.2 24.7c4.8 6.2 9.7 11 13.3 14.3c1.8 1.6 3.3 2.9 4.3 3.7c.5 .4 .9 .7 1.1 .8l.2 .2 0 0 0 0c5.6 4.1 7.9 11.3 5.8 17.9c-2.1 6.6-8.3 11.1-15.2 11.1c-21.8 0-43.8-5.6-62.1-12.5c-9.2-3.5-17.8-7.4-25.2-11.4C505.9 503.3 470.2 512 432 512c-95.6 0-176.2-54.6-200.5-129zM228 72c0-11-9-20-20-20s-20 9-20 20V86c-7.6 1.7-15.2 4.4-22.2 8.5c-13.9 8.3-25.9 22.8-25.8 43.9c.1 20.3 12 33.1 24.7 40.7c11 6.6 24.7 10.8 35.6 14l1.7 .5c12.6 3.8 21.8 6.8 28 10.7c5.1 3.2 5.8 5.4 5.9 8.2c.1 5-1.8 8-5.9 10.5c-5 3.1-12.9 5-21.4 4.7c-11.1-.4-21.5-3.9-35.1-8.5c-2.3-.8-4.7-1.6-7.2-2.4c-10.5-3.5-21.8 2.2-25.3 12.6s2.2 21.8 12.6 25.3c1.9 .6 4 1.3 6.1 2.1l0 0 0 0c8.3 2.9 17.9 6.2 28.2 8.4V280c0 11 9 20 20 20s20-9 20-20V266.2c8-1.7 16-4.5 23.2-9c14.3-8.9 25.1-24.1 24.8-45c-.3-20.3-11.7-33.4-24.6-41.6c-11.5-7.2-25.9-11.6-37.1-15l-.7-.2c-12.8-3.9-21.9-6.7-28.3-10.5c-5.2-3.1-5.3-4.9-5.3-6.7c0-3.7 1.4-6.5 6.2-9.3c5.4-3.2 13.6-5.1 21.5-5c9.6 .1 20.2 2.2 31.2 5.2c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-6.5-1.7-13.7-3.4-21.1-4.7V72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "compact-disc": { + "aliases": { + "unicodes": { + "composite": [ + "1f4bf", + "1f4c0", + "1f5b8" + ], + "secondary": [ + "10f51f" + ] + } + }, + "changes": [ + "5.0.13", + "5.10.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Optical Disc Icon", + "album", + "blu-ray", + "bluray", + "cd", + "computer", + "disc", + "disk", + "dvd", + "media", + "movie", + "music", + "optical", + "optical disk", + "record", + "video", + "vinyl" + ] + }, + "unicode": "f51f", + "label": "Compact Disc", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 32a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm-96-32a96 96 0 1 0 192 0 96 96 0 1 0 -192 0zM96 240c0-35 17.5-71.1 45.2-98.8S205 96 240 96c8.8 0 16-7.2 16-16s-7.2-16-16-16c-45.4 0-89.2 22.3-121.5 54.5S64 194.6 64 240c0 8.8 7.2 16 16 16s16-7.2 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "compass": { + "aliases": { + "unicodes": { + "composite": [ + "1f9ed" + ], + "secondary": [ + "10f14e" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.2.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "compass", + "directions", + "directory", + "location", + "magnetic", + "menu", + "navigation", + "orienteering", + "safari", + "travel" + ] + }, + "unicode": "f14e", + "label": "Compass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm50.7-186.9L162.4 380.6c-19.4 7.5-38.5-11.6-31-31l55.5-144.3c3.3-8.5 9.9-15.1 18.4-18.4l144.3-55.5c19.4-7.5 38.5 11.6 31 31L325.1 306.7c-3.2 8.5-9.9 15.1-18.4 18.4zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + }, + "regular": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm306.7 69.1L162.4 380.6c-19.4 7.5-38.5-11.6-31-31l55.5-144.3c3.3-8.5 9.9-15.1 18.4-18.4l144.3-55.5c19.4-7.5 38.5 11.6 31 31L325.1 306.7c-3.2 8.5-9.9 15.1-18.4 18.4zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "compass-drafting": { + "aliases": { + "names": [ + "drafting-compass" + ], + "unicodes": { + "secondary": [ + "10f568" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "map", + "mechanical drawing", + "plot", + "plotting" + ] + }, + "unicode": "f568", + "label": "Compass Drafting", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 96c0 14.3-3.1 27.9-8.8 40.2L396 227.4c-23.7 25.3-54.2 44.1-88.5 53.6L256 192h0 0l-68 117.5c21.5 6.8 44.3 10.5 68.1 10.5c70.7 0 133.8-32.7 174.9-84c11.1-13.8 31.2-16 45-5s16 31.2 5 45C428.1 341.8 347 384 256 384c-35.4 0-69.4-6.4-100.7-18.1L98.7 463.7C94 471.8 87 478.4 78.6 482.6L23.2 510.3c-5 2.5-10.9 2.2-15.6-.7S0 501.5 0 496V440.6c0-8.4 2.2-16.7 6.5-24.1l60-103.7C53.7 301.6 41.8 289.3 31.2 276c-11.1-13.8-8.8-33.9 5-45s33.9-8.8 45 5c5.7 7.1 11.8 13.8 18.2 20.1l69.4-119.9c-5.6-12.2-8.8-25.8-8.8-40.2c0-53 43-96 96-96s96 43 96 96zm21 297.9c32.6-12.8 62.5-30.8 88.9-52.9l43.7 75.5c4.2 7.3 6.5 15.6 6.5 24.1V496c0 5.5-2.9 10.7-7.6 13.6s-10.6 3.2-15.6 .7l-55.4-27.7c-8.4-4.2-15.4-10.8-20.1-18.9L373 393.9zM256 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "compress": { + "aliases": { + "unicodes": { + "secondary": [ + "10f066" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "fullscreen", + "minimize", + "move", + "resize", + "shrink", + "smaller" + ] + }, + "unicode": "f066", + "label": "Compress", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32V64zM32 320c-17.7 0-32 14.3-32 32s14.3 32 32 32H96v64c0 17.7 14.3 32 32 32s32-14.3 32-32V352c0-17.7-14.3-32-32-32H32zM352 64c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7 14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V64zM320 320c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "computer": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "desktop", + "display", + "monitor", + "tower" + ] + }, + "unicode": "e4e5", + "label": "Computer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M384 96V320H64L64 96H384zM64 32C28.7 32 0 60.7 0 96V320c0 35.3 28.7 64 64 64H181.3l-10.7 32H96c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H277.3l-10.7-32H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm464 0c-26.5 0-48 21.5-48 48V432c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H528zm16 64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H544c-8.8 0-16-7.2-16-16s7.2-16 16-16zm-16 80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H544c-8.8 0-16-7.2-16-16zm32 160a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "computer-mouse": { + "aliases": { + "names": [ + "mouse" + ], + "unicodes": { + "composite": [ + "1f5b1" + ], + "secondary": [ + "10f8cc" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "click", + "computer", + "computer mouse", + "cursor", + "input", + "peripheral" + ] + }, + "unicode": "f8cc", + "label": "Computer Mouse", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 192H176V0H160C71.6 0 0 71.6 0 160v32zm0 32V352c0 88.4 71.6 160 160 160h64c88.4 0 160-71.6 160-160V224H192 0zm384-32V160C384 71.6 312.4 0 224 0H208V192H384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "confluence": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian" + ] + }, + "unicode": "f78d", + "label": "Confluence", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M2.3 412.2c-4.5 7.6-2.1 17.5 5.5 22.2l105.9 65.2c7.7 4.7 17.7 2.4 22.4-5.3 0-.1.1-.2.1-.2 67.1-112.2 80.5-95.9 280.9-.7 8.1 3.9 17.8.4 21.7-7.7.1-.1.1-.3.2-.4l50.4-114.1c3.6-8.1-.1-17.6-8.1-21.3-22.2-10.4-66.2-31.2-105.9-50.3C127.5 179 44.6 345.3 2.3 412.2zm507.4-312.1c4.5-7.6 2.1-17.5-5.5-22.2L398.4 12.8c-7.5-5-17.6-3.1-22.6 4.4-.2.3-.4.6-.6 1-67.3 112.6-81.1 95.6-280.6.9-8.1-3.9-17.8-.4-21.7 7.7-.1.1-.1.3-.2.4L22.2 141.3c-3.6 8.1.1 17.6 8.1 21.3 22.2 10.4 66.3 31.2 106 50.4 248 120 330.8-45.4 373.4-112.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "connectdevelop": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f20e", + "label": "Connect Develop", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "contao": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f26d", + "label": "Contao", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cookie": { + "aliases": { + "unicodes": { + "composite": [ + "1f36a" + ], + "secondary": [ + "10f563" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baked good", + "chips", + "chocolate", + "cookie", + "dessert", + "eat", + "snack", + "sweet", + "treat" + ] + }, + "unicode": "f563", + "label": "Cookie", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M231.2 17c-22.1-3.1-44.6 .9-64.4 11.4l-74 39.5C73.1 78.4 57.2 94.9 47.4 115L10.7 190.6c-9.8 20.1-13 42.9-9.1 64.9l14.5 82.8c3.9 22.1 14.6 42.3 30.7 57.9l60.3 58.4c16.1 15.6 36.6 25.6 58.7 28.7l83 11.7c22.1 3.1 44.6-.9 64.4-11.4l74-39.5c19.7-10.5 35.6-27 45.4-47.2l36.7-75.5c9.8-20.1 13-42.9 9.1-64.9l-14.6-82.8c-3.9-22.1-14.6-42.3-30.7-57.9L372.9 57.5c-16.1-15.6-36.6-25.6-58.7-28.7L231.2 17zM192 144a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM128 336a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm224-64a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cookie-bite": { + "aliases": { + "unicodes": { + "secondary": [ + "10f564" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baked good", + "bitten", + "chips", + "chocolate", + "eat", + "snack", + "sweet", + "treat" + ] + }, + "unicode": "f564", + "label": "Cookie Bite", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M241.5 27.6c-.8-5.4-4.9-9.8-10.3-10.6c-22.1-3.1-44.6 .9-64.4 11.4l-74 39.5C73.1 78.4 57.2 94.9 47.4 115L10.7 190.6c-9.8 20.1-13 42.9-9.1 64.9l14.5 82.8c3.9 22.1 14.6 42.3 30.7 57.9l60.3 58.4c16.1 15.6 36.6 25.6 58.7 28.7l83 11.7c22.1 3.1 44.6-.9 64.4-11.4l74-39.5c19.7-10.5 35.6-27 45.4-47.2l36.7-75.5c9.8-20.1 13-42.9 9.1-64.9c-.9-5.3-5.3-9.3-10.6-10.1c-51.5-8.2-92.8-47.1-104.5-97.4c-1.8-7.6-8-13.4-15.7-14.6c-54.6-8.7-97.7-52-106.2-106.8zM192 144a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM128 336a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm224-64a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "copy": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0c5" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clone", + "duplicate", + "file", + "files-o", + "paper", + "paste" + ] + }, + "unicode": "f0c5", + "label": "Copy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 0c-35.3 0-64 28.7-64 64V288c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H224zM64 160c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V384H288v64H64V224h64V160H64z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 0c-35.3 0-64 28.7-64 64V288c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H224zM64 160c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V384H304v64c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V224c0-8.8 7.2-16 16-16h64V160H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "copyright": { + "aliases": { + "unicodes": { + "composite": [ + "a9" + ], + "secondary": [ + "10f1f9" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brand", + "c", + "copyright", + "mark", + "register", + "trademark" + ] + }, + "unicode": "f1f9", + "label": "Copyright", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM199.4 312.6c31.2 31.2 81.9 31.2 113.1 0c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9c-50 50-131 50-181 0s-50-131 0-181s131-50 181 0c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0c-31.2-31.2-81.9-31.2-113.1 0s-31.2 81.9 0 113.1z" + }, + "regular": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM199.4 312.6c-31.2-31.2-31.2-81.9 0-113.1s81.9-31.2 113.1 0c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9c-50-50-131-50-181 0s-50 131 0 181s131 50 181 0c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0c-31.2 31.2-81.9 31.2-113.1 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "cotton-bureau": { + "changes": [ + "5.10.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing", + "t-shirts", + "tshirts" + ] + }, + "unicode": "f89e", + "label": "Cotton Bureau", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M474.31 330.41c-23.66 91.85-94.23 144.59-201.9 148.35V429.6c0-48 26.41-74.39 74.39-74.39 62 0 99.2-37.2 99.2-99.21 0-61.37-36.53-98.28-97.38-99.06-33-69.32-146.5-64.65-177.24 0C110.52 157.72 74 194.63 74 256c0 62.13 37.27 99.41 99.4 99.41 48 0 74.55 26.23 74.55 74.39V479c-134.43-5-211.1-85.07-211.1-223 0-141.82 81.35-223.2 223.2-223.2 114.77 0 189.84 53.2 214.69 148.81H500C473.88 71.51 388.22 8 259.82 8 105 8 12 101.19 12 255.82 12 411.14 105.19 504.34 259.82 504c128.27 0 213.87-63.81 239.67-173.59zM357 182.33c41.37 3.45 64.2 29 64.2 73.67 0 48-26.43 74.41-74.4 74.41-28.61 0-49.33-9.59-61.59-27.33 83.06-16.55 75.59-99.67 71.79-120.75zm-81.68 97.36c-2.46-10.34-16.33-87 56.23-97 2.27 10.09 16.52 87.11-56.26 97zM260 132c28.61 0 49 9.67 61.44 27.61-28.36 5.48-49.36 20.59-61.59 43.45-12.23-22.86-33.23-38-61.6-43.45 12.41-17.69 33.27-27.35 61.57-27.35zm-71.52 50.72c73.17 10.57 58.91 86.81 56.49 97-72.41-9.84-59-86.95-56.25-97zM173.2 330.41c-48 0-74.4-26.4-74.4-74.41 0-44.36 22.86-70 64.22-73.67-6.75 37.2-1.38 106.53 71.65 120.75-12.14 17.63-32.84 27.3-61.14 27.3zm53.21 12.39A80.8 80.8 0 0 0 260 309.25c7.77 14.49 19.33 25.54 33.82 33.55a80.28 80.28 0 0 0-33.58 33.83c-8-14.5-19.07-26.23-33.56-33.83z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "couch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4b8" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chair", + "cushion", + "furniture", + "relax", + "sofa" + ] + }, + "unicode": "f4b8", + "label": "Couch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 160C64 89.3 121.3 32 192 32H448c70.7 0 128 57.3 128 128v33.6c-36.5 7.4-64 39.7-64 78.4v48H128V272c0-38.7-27.5-71-64-78.4V160zM544 272c0-20.9 13.4-38.7 32-45.3c5-1.8 10.4-2.7 16-2.7c26.5 0 48 21.5 48 48V448c0 17.7-14.3 32-32 32H576c-17.7 0-32-14.3-32-32H96c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V272c0-26.5 21.5-48 48-48c5.6 0 11 1 16 2.7c18.6 6.6 32 24.4 32 45.3v48 32h32H512h32V320 272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cow": { + "aliases": { + "unicodes": { + "composite": [ + "1f404" + ], + "secondary": [ + "10f6c8" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agriculture", + "animal", + "beef", + "bovine", + "co", + "cow", + "farm", + "fauna", + "livestock", + "mammal", + "milk", + "moo" + ] + }, + "unicode": "f6c8", + "label": "Cow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 224v32V416c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V327.8c9.9 6.6 20.6 12 32 16.1V368c0 8.8 7.2 16 16 16s16-7.2 16-16V351.1c5.3 .6 10.6 .9 16 .9s10.7-.3 16-.9V368c0 8.8 7.2 16 16 16s16-7.2 16-16V343.8c11.4-4 22.1-9.4 32-16.1V416c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V256l32 32v49.5c0 9.5 2.8 18.7 8.1 26.6L530 427c8.8 13.1 23.5 21 39.3 21c22.5 0 41.9-15.9 46.3-38l20.3-101.6c2.6-13-.3-26.5-8-37.3l-3.9-5.5V184c0-13.3-10.7-24-24-24s-24 10.7-24 24v14.4l-52.9-74.1C496 86.5 452.4 64 405.9 64H272 256 192 144C77.7 64 24 117.7 24 184v54C9.4 249.8 0 267.8 0 288v17.6c0 8 6.4 14.4 14.4 14.4C46.2 320 72 294.2 72 262.4V256 224 184c0-24.3 12.1-45.8 30.5-58.9C98.3 135.9 96 147.7 96 160v64zM560 336a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM166.6 166.6c-4.2-4.2-6.6-10-6.6-16c0-12.5 10.1-22.6 22.6-22.6H361.4c12.5 0 22.6 10.1 22.6 22.6c0 6-2.4 11.8-6.6 16l-23.4 23.4C332.2 211.8 302.7 224 272 224s-60.2-12.2-81.9-33.9l-23.4-23.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cpanel": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f388", + "label": "cPanel", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M210.3 220.2c-5.6-24.8-26.9-41.2-51-41.2h-37c-7.1 0-12.5 4.5-14.3 10.9L73.1 320l24.7-.1c6.8 0 12.3-4.5 14.2-10.7l25.8-95.7h19.8c8.4 0 16.2 5.6 18.3 14.8 2.5 10.9-5.9 22.6-18.3 22.6h-10.3c-7 0-12.5 4.6-14.3 10.8l-6.4 23.8h32c37.2 0 58.3-36.2 51.7-65.3zm-156.5 28h18.6c6.9 0 12.4-4.4 14.3-10.9l6.2-23.6h-40C30 213.7 9 227.8 1.7 254.8-7 288.6 18.5 320 52 320h12.4l7.1-26.1c1.2-4.4-2.2-8.3-6.4-8.3H53.8c-24.7 0-24.9-37.4 0-37.4zm247.5-34.8h-77.9l-3.5 13.4c-2.4 9.6 4.5 18.5 14.2 18.5h57.5c4 0 2.4 4.3 2.1 5.3l-8.6 31.8c-.4 1.4-.9 5.3-5.5 5.3h-34.9c-5.3 0-5.3-7.9 0-7.9h21.6c6.8 0 12.3-4.6 14.2-10.8l3.5-13.2h-48.4c-39.2 0-43.6 63.8-.7 63.8l57.5.2c11.2 0 20.6-7.2 23.4-17.8l14-51.8c4.8-19.2-9.7-36.8-28.5-36.8zM633.1 179h-18.9c-4.9 0-9.2 3.2-10.4 7.9L568.2 320c20.7 0 39.8-13.8 44.9-34.5l26.5-98.2c1.2-4.3-2-8.3-6.5-8.3zm-236.3 34.7v.1h-48.3l-26.2 98c-1.2 4.4 2.2 8.3 6.4 8.3h18.9c4.8 0 9.2-3 10.4-7.8l17.2-64H395c12.5 0 21.4 11.8 18.1 23.4l-10.6 40c-1.2 4.3 1.9 8.3 6.4 8.3H428c4.6 0 9.1-2.9 10.3-7.8l8.8-33.1c9-33.1-15.9-65.4-50.3-65.4zm98.3 74.6c-3.6 0-6-3.4-5.1-6.7l8-30c.9-3.9 3.7-6 7.8-6h32.9c2.6 0 4.6 2.4 3.9 5.1l-.7 2.6c-.6 2-1.9 3-3.9 3h-21.6c-7 0-12.6 4.6-14.2 10.8l-3.5 13h53.4c10.5 0 20.3-6.6 23.2-17.6l3.2-12c4.9-19.1-9.3-36.8-28.3-36.8h-47.3c-17.9 0-33.8 12-38.6 29.6l-10.8 40c-5 17.7 8.3 36.7 28.3 36.7h66.7c6.8 0 12.3-4.5 14.2-10.7l5.7-21z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons": { + "changes": [ + "4.4.0", + "5.0.0", + "5.0.11", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f25e", + "label": "Creative Commons", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-by": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4e7", + "label": "Creative Commons Attribution", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-nc": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4e8", + "label": "Creative Commons Noncommercial", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-nc-eu": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4e9", + "label": "Creative Commons Noncommercial (Euro Sign)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-nc-jp": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4ea", + "label": "Creative Commons Noncommercial (Yen Sign)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-nd": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4eb", + "label": "Creative Commons No Derivative Works", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-pd": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4ec", + "label": "Creative Commons Public Domain", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-pd-alt": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4ed", + "label": "Alternate Creative Commons Public Domain", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C104.7 8 0 123.1 0 256c0 138.5 113.6 248 247.6 248C377.5 504 496 403.1 496 256 496 118.1 389.4 8 247.6 8zm.8 450.8c-112.5 0-203.7-93-203.7-202.8 0-105.4 85.5-203.3 203.7-203.3 112.6 0 202.9 89.5 202.8 203.3 0 121.7-99.6 202.8-202.8 202.8zM316.7 186h-53.2v137.2h53.2c21.4 0 70-5.1 70-68.6 0-63.4-48.6-68.6-70-68.6zm.8 108.5h-19.9v-79.7l19.4-.1c3.8 0 35-2.1 35 39.9 0 24.6-10.5 39.9-34.5 39.9zM203.7 186h-68.2v137.3h34.6V279h27c54.1 0 57.1-37.5 57.1-46.5 0-31-16.8-46.5-50.5-46.5zm-4.9 67.3h-29.2v-41.6h28.3c30.9 0 28.8 41.6.9 41.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-remix": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4ee", + "label": "Creative Commons Remix", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-sa": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4ef", + "label": "Creative Commons Share Alike", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-sampling": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f0", + "label": "Creative Commons Sampling", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-sampling-plus": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f1", + "label": "Creative Commons Sampling +", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-share": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f2", + "label": "Creative Commons Share", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-zero": { + "changes": [ + "5.0.11", + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f3", + "label": "Creative Commons CC0", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm-.4 60.5c-81.9 0-102.5 77.3-102.5 142.8 0 65.5 20.6 142.8 102.5 142.8S350.5 321.5 350.5 256c0-65.5-20.6-142.8-102.5-142.8zm0 53.9c3.3 0 6.4.5 9.2 1.2 5.9 5.1 8.8 12.1 3.1 21.9l-54.5 100.2c-1.7-12.7-1.9-25.1-1.9-34.4 0-28.8 2-88.9 44.1-88.9zm40.8 46.2c2.9 15.4 3.3 31.4 3.3 42.7 0 28.9-2 88.9-44.1 88.9-13.5 0-32.6-7.7-20.1-26.4l60.9-105.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "credit-card": { + "aliases": { + "names": [ + "credit-card-alt" + ], + "unicodes": { + "composite": [ + "1f4b3", + "f283" + ], + "secondary": [ + "10f09d" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "card", + "checkout", + "credit", + "credit card", + "credit-card-alt", + "debit", + "money", + "payment", + "purchase" + ] + }, + "unicode": "f09d", + "label": "Credit Card", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96v32H576V96c0-35.3-28.7-64-64-64H64zM576 224H0V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V224zM112 352h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm112 16c0-8.8 7.2-16 16-16H368c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16z" + }, + "regular": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M512 80c8.8 0 16 7.2 16 16v32H48V96c0-8.8 7.2-16 16-16H512zm16 144V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V224H528zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm56 304c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c13.3 0 24-10.7 24-24s-10.7-24-24-24H120zm128 0c-13.3 0-24 10.7-24 24s10.7 24 24 24H360c13.3 0 24-10.7 24-24s-10.7-24-24-24H248z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "critical-role": { + "changes": [ + "5.4.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "game", + "gaming", + "tabletop" + ] + }, + "unicode": "f6c9", + "label": "Critical Role", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M225.82 0c.26.15 216.57 124.51 217.12 124.72 3 1.18 3.7 3.46 3.7 6.56q-.11 125.17 0 250.36a5.88 5.88 0 0 1-3.38 5.78c-21.37 12-207.86 118.29-218.93 124.58h-3C142 466.34 3.08 386.56 2.93 386.48a3.29 3.29 0 0 1-1.88-3.24c0-.87 0-225.94-.05-253.1a5 5 0 0 1 2.93-4.93C27.19 112.11 213.2 6 224.07 0zM215.4 20.42l-.22-.16Q118.06 75.55 21 130.87c0 .12.08.23.13.35l30.86 11.64c-7.71 6-8.32 6-10.65 5.13-.1 0-24.17-9.28-26.8-10v230.43c.88-1.41 64.07-110.91 64.13-111 1.62-2.82 3-1.92 9.12-1.52 1.4.09 1.48.22.78 1.42-41.19 71.33-36.4 63-67.48 116.94-.81 1.4-.61 1.13 1.25 1.13h186.5c1.44 0 1.69-.23 1.7-1.64v-8.88c0-1.34 2.36-.81-18.37-1-7.46-.07-14.14-3.22-21.38-12.7-7.38-9.66-14.62-19.43-21.85-29.21-2.28-3.08-3.45-2.38-16.76-2.38-1.75 0-1.78 0-1.76 1.82.29 26.21.15 25.27 1 32.66.52 4.37 2.16 4.2 9.69 4.81 3.14.26 3.88 4.08.52 4.92-1.57.39-31.6.51-33.67-.1a2.42 2.42 0 0 1 .3-4.73c3.29-.76 6.16.81 6.66-4.44 1.3-13.66 1.17-9 1.1-79.42 0-10.82-.35-12.58-5.36-13.55-1.22-.24-3.54-.16-4.69-.55-2.88-1-2-4.84 1.77-4.85 33.67 0 46.08-1.07 56.06 4.86 7.74 4.61 12 11.48 12.51 20.4.88 14.59-6.51 22.35-15 32.59a1.46 1.46 0 0 0 0 2.22c2.6 3.25 5 6.63 7.71 9.83 27.56 33.23 24.11 30.54 41.28 33.06.89.13 1-.42 1-1.15v-11c0-1 .32-1.43 1.41-1.26a72.37 72.37 0 0 0 23.58-.3c1.08-.15 1.5.2 1.48 1.33 0 .11.88 26.69.87 26.8-.05 1.52.67 1.62 1.89 1.62h186.71Q386.51 304.6 346 234.33c2.26-.66-.4 0 6.69-1.39 2-.39 2.05-.41 3.11 1.44 7.31 12.64 77.31 134 77.37 134.06V138c-1.72.5-103.3 38.72-105.76 39.68-1.08.42-1.55.2-1.91-.88-.63-1.9-1.34-3.76-2.09-5.62-.32-.79-.09-1.13.65-1.39.1 0 95.53-35.85 103-38.77-65.42-37.57-130.56-75-196-112.6l86.82 150.39-.28.33c-9.57-.9-10.46-1.6-11.8-3.94-1-1.69-73.5-127.71-82-142.16-9.1 14.67-83.56 146.21-85.37 146.32-2.93.17-5.88.08-9.25.08q43.25-74.74 86.18-149zm51.93 129.92a37.68 37.68 0 0 0 5.54-.85c1.69-.3 2.53.2 2.6 1.92 0 .11.07 19.06-.86 20.45s-1.88 1.22-2.6-.19c-5-9.69 6.22-9.66-39.12-12-.7 0-1 .23-1 .93 0 .13 3.72 122 3.73 122.11 0 .89.52 1.2 1.21 1.51a83.92 83.92 0 0 1 8.7 4.05c7.31 4.33 11.38 10.84 12.41 19.31 1.44 11.8-2.77 35.77-32.21 37.14-2.75.13-28.26 1.08-34.14-23.25-4.66-19.26 8.26-32.7 19.89-36.4a2.45 2.45 0 0 0 2-2.66c.1-5.63 3-107.1 3.71-121.35.05-1.08-.62-1.16-1.35-1.15-32.35.52-36.75-.34-40.22 8.52-2.42 6.18-4.14 1.32-3.95.23q1.59-9 3.31-18c.4-2.11 1.43-2.61 3.43-1.86 5.59 2.11 6.72 1.7 37.25 1.92 1.73 0 1.78-.08 1.82-1.85.68-27.49.58-22.59 1-29.55a2.69 2.69 0 0 0-1.63-2.8c-5.6-2.91-8.75-7.55-8.9-13.87-.35-14.81 17.72-21.67 27.38-11.51 6.84 7.19 5.8 18.91-2.45 24.15a4.35 4.35 0 0 0-2.22 4.34c0 .59-.11-4.31 1 30.05 0 .9.43 1.12 1.24 1.11.1 0 23-.09 34.47-.37zM68.27 141.7c19.84-4.51 32.68-.56 52.49 1.69 2.76.31 3.74 1.22 3.62 4-.21 5-1.16 22.33-1.24 23.15a2.65 2.65 0 0 1-1.63 2.34c-4.06 1.7-3.61-4.45-4-7.29-3.13-22.43-73.87-32.7-74.63 25.4-.31 23.92 17 53.63 54.08 50.88 27.24-2 19-20.19 24.84-20.47a2.72 2.72 0 0 1 3 3.36c-1.83 10.85-3.42 18.95-3.45 19.15-1.54 9.17-86.7 22.09-93.35-42.06-2.71-25.85 10.44-53.37 40.27-60.15zm80 87.67h-19.49a2.57 2.57 0 0 1-2.66-1.79c2.38-3.75 5.89.92 5.86-6.14-.08-25.75.21-38 .23-40.1 0-3.42-.53-4.65-3.32-4.94-7-.72-3.11-3.37-1.11-3.38 11.84-.1 22.62-.18 30.05.72 8.77 1.07 16.71 12.63 7.93 22.62-2 2.25-4 4.42-6.14 6.73.95 1.15 6.9 8.82 17.28 19.68 2.66 2.78 6.15 3.51 9.88 3.13a2.21 2.21 0 0 0 2.23-2.12c.3-3.42.26 4.73.45-40.58 0-5.65-.34-6.58-3.23-6.83-3.95-.35-4-2.26-.69-3.37l19.09-.09c.32 0 4.49.53 1 3.38 0 .05-.16 0-.24 0-3.61.26-3.94 1-4 4.62-.27 43.93.07 40.23.41 42.82.11.84.27 2.23 5.1 2.14 2.49 0 3.86 3.37 0 3.4-10.37.08-20.74 0-31.11.07-10.67 0-13.47-6.2-24.21-20.82-1.6-2.18-8.31-2.36-8.2-.37.88 16.47 0 17.78 4 17.67 4.75-.1 4.73 3.57.83 3.55zm275-10.15c-1.21 7.13.17 10.38-5.3 10.34-61.55-.42-47.82-.22-50.72-.31a18.4 18.4 0 0 1-3.63-.73c-2.53-.6 1.48-1.23-.38-5.6-1.43-3.37-2.78-6.78-4.11-10.19a1.94 1.94 0 0 0-2-1.44 138 138 0 0 0-14.58.07 2.23 2.23 0 0 0-1.62 1.06c-1.58 3.62-3.07 7.29-4.51 11-1.27 3.23 7.86 1.32 12.19 2.16 3 .57 4.53 3.72.66 3.73H322.9c-2.92 0-3.09-3.15-.74-3.21a6.3 6.3 0 0 0 5.92-3.47c1.5-3 2.8-6 4.11-9.09 18.18-42.14 17.06-40.17 18.42-41.61a1.83 1.83 0 0 1 3 0c2.93 3.34 18.4 44.71 23.62 51.92 2 2.7 5.74 2 6.36 2 3.61.13 4-1.11 4.13-4.29.09-1.87.08 1.17.07-41.24 0-4.46-2.36-3.74-5.55-4.27-.26 0-2.56-.63-.08-3.06.21-.2-.89-.24 21.7-.15 2.32 0 5.32 2.75-1.21 3.45a2.56 2.56 0 0 0-2.66 2.83c-.07 1.63-.19 38.89.29 41.21a3.06 3.06 0 0 0 3.23 2.43c13.25.43 14.92.44 16-3.41 1.67-5.78 4.13-2.52 3.73-.19zm-104.72 64.37c-4.24 0-4.42-3.39-.61-3.41 35.91-.16 28.11.38 37.19-.65 1.68-.19 2.38.24 2.25 1.89-.26 3.39-.64 6.78-1 10.16-.25 2.16-3.2 2.61-3.4-.15-.38-5.31-2.15-4.45-15.63-5.08-1.58-.07-1.64 0-1.64 1.52V304c0 1.65 0 1.6 1.62 1.47 3.12-.25 10.31.34 15.69-1.52.47-.16 3.3-1.79 3.07 1.76 0 .21-.76 10.35-1.18 11.39-.53 1.29-1.88 1.51-2.58.32-1.17-2 0-5.08-3.71-5.3-15.42-.9-12.91-2.55-12.91 6 0 12.25-.76 16.11 3.89 16.24 16.64.48 14.4 0 16.43-5.71.84-2.37 3.5-1.77 3.18.58-.44 3.21-.85 6.43-1.23 9.64 0 .36-.16 2.4-4.66 2.39-37.16-.08-34.54-.19-35.21-.31-2.72-.51-2.2-3 .22-3.45 1.1-.19 4 .54 4.16-2.56 2.44-56.22-.07-51.34-3.91-51.33zm-.41-109.52c2.46.61 3.13 1.76 2.95 4.65-.33 5.3-.34 9-.55 9.69-.66 2.23-3.15 2.12-3.34-.27-.38-4.81-3.05-7.82-7.57-9.15-26.28-7.73-32.81 15.46-27.17 30.22 5.88 15.41 22 15.92 28.86 13.78 5.92-1.85 5.88-6.5 6.91-7.58 1.23-1.3 2.25-1.84 3.12 1.1 0 .1.57 11.89-6 12.75-1.6.21-19.38 3.69-32.68-3.39-21-11.19-16.74-35.47-6.88-45.33 14-14.06 39.91-7.06 42.32-6.47zM289.8 280.14c3.28 0 3.66 3 .16 3.43-2.61.32-5-.42-5 5.46 0 2-.19 29.05.4 41.45.11 2.29 1.15 3.52 3.44 3.65 22 1.21 14.95-1.65 18.79-6.34 1.83-2.24 2.76.84 2.76 1.08.35 13.62-4 12.39-5.19 12.4l-38.16-.19c-1.93-.23-2.06-3-.42-3.38 2-.48 4.94.4 5.13-2.8 1-15.87.57-44.65.34-47.81-.27-3.77-2.8-3.27-5.68-3.71-2.47-.38-2-3.22.34-3.22 1.45-.02 17.97-.03 23.09-.02zm-31.63-57.79c.07 4.08 2.86 3.46 6 3.58 2.61.1 2.53 3.41-.07 3.43-6.48 0-13.7 0-21.61-.06-3.84 0-3.38-3.35 0-3.37 4.49 0 3.24 1.61 3.41-45.54 0-5.08-3.27-3.54-4.72-4.23-2.58-1.23-1.36-3.09.41-3.15 1.29 0 20.19-.41 21.17.21s1.87 1.65-.42 2.86c-1 .52-3.86-.28-4.15 2.47 0 .21-.82 1.63-.07 43.8zm-36.91 274.27a2.93 2.93 0 0 0 3.26 0c17-9.79 182-103.57 197.42-112.51-.14-.43 11.26-.18-181.52-.27-1.22 0-1.57.37-1.53 1.56 0 .1 1.25 44.51 1.22 50.38a28.33 28.33 0 0 1-1.36 7.71c-.55 1.83.38-.5-13.5 32.23-.73 1.72-1 2.21-2-.08-4.19-10.34-8.28-20.72-12.57-31a23.6 23.6 0 0 1-2-10.79c.16-2.46.8-16.12 1.51-48 0-1.95 0-2-2-2h-183c2.58 1.63 178.32 102.57 196 112.76zm-90.9-188.75c0 2.4.36 2.79 2.76 3 11.54 1.17 21 3.74 25.64-7.32 6-14.46 2.66-34.41-12.48-38.84-2-.59-16-2.76-15.94 1.51.05 8.04.01 11.61.02 41.65zm105.75-15.05c0 2.13 1.07 38.68 1.09 39.13.34 9.94-25.58 5.77-25.23-2.59.08-2 1.37-37.42 1.1-39.43-14.1 7.44-14.42 40.21 6.44 48.8a17.9 17.9 0 0 0 22.39-7.07c4.91-7.76 6.84-29.47-5.43-39a2.53 2.53 0 0 1-.36.12zm-12.28-198c-9.83 0-9.73 14.75-.07 14.87s10.1-14.88.07-14.91zm-80.15 103.83c0 1.8.41 2.4 2.17 2.58 13.62 1.39 12.51-11 12.16-13.36-1.69-11.22-14.38-10.2-14.35-7.81.05 4.5-.03 13.68.02 18.59zm212.32 6.4l-6.1-15.84c-2.16 5.48-4.16 10.57-6.23 15.84z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "crop": { + "aliases": { + "unicodes": { + "secondary": [ + "10f125" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "frame", + "mask", + "resize", + "shrink" + ] + }, + "unicode": "f125", + "label": "Crop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 109.3l54.6-54.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L402.7 64 160 64v64l178.7 0L128 338.7V32c0-17.7-14.3-32-32-32S64 14.3 64 32V64H32C14.3 64 0 78.3 0 96s14.3 32 32 32H64V384c0 35.3 28.7 64 64 64H352V384H173.3L384 173.3 384 480c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H448l0-274.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "crop-simple": { + "aliases": { + "names": [ + "crop-alt" + ], + "unicodes": { + "secondary": [ + "10f565" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "frame", + "mask", + "resize", + "shrink" + ] + }, + "unicode": "f565", + "label": "Crop Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 32c0-17.7-14.3-32-32-32S64 14.3 64 32V64H32C14.3 64 0 78.3 0 96s14.3 32 32 32H64V384c0 35.3 28.7 64 64 64H352V384H128V32zM384 480c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H448l0-256c0-35.3-28.7-64-64-64L160 64v64l224 0 0 352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cross": { + "aliases": { + "unicodes": { + "composite": [ + "1f547", + "271d" + ], + "secondary": [ + "10f654" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Christian", + "Heavy Latin Cross", + "catholicism", + "christianity", + "church", + "cross", + "jesus", + "latin cross", + "religion" + ] + }, + "unicode": "f654", + "label": "Cross", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M176 0c-26.5 0-48 21.5-48 48v80H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h80V464c0 26.5 21.5 48 48 48h32c26.5 0 48-21.5 48-48V256h80c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H256V48c0-26.5-21.5-48-48-48H176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "crosshairs": { + "aliases": { + "unicodes": { + "secondary": [ + "10f05b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aim", + "bullseye", + "gpd", + "picker", + "position" + ] + }, + "unicode": "f05b", + "label": "Crosshairs", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c17.7 0 32 14.3 32 32V42.4c93.7 13.9 167.7 88 181.6 181.6H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H469.6c-13.9 93.7-88 167.7-181.6 181.6V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V469.6C130.3 455.7 56.3 381.7 42.4 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H42.4C56.3 130.3 130.3 56.3 224 42.4V32c0-17.7 14.3-32 32-32zM107.4 288c12.5 58.3 58.4 104.1 116.6 116.6V384c0-17.7 14.3-32 32-32s32 14.3 32 32v20.6c58.3-12.5 104.1-58.4 116.6-116.6H384c-17.7 0-32-14.3-32-32s14.3-32 32-32h20.6C392.1 165.7 346.3 119.9 288 107.4V128c0 17.7-14.3 32-32 32s-32-14.3-32-32V107.4C165.7 119.9 119.9 165.7 107.4 224H128c17.7 0 32 14.3 32 32s-14.3 32-32 32H107.4zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "crow": { + "aliases": { + "unicodes": { + "secondary": [ + "10f520" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "bullfrog", + "fauna", + "halloween", + "holiday", + "toad" + ] + }, + "unicode": "f520", + "label": "Crow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M456 0c-48.6 0-88 39.4-88 88v29.2L12.5 390.6c-14 10.8-16.6 30.9-5.9 44.9s30.9 16.6 44.9 5.9L126.1 384H259.2l46.6 113.1c5 12.3 19.1 18.1 31.3 13.1s18.1-19.1 13.1-31.3L311.1 384H352c1.1 0 2.1 0 3.2 0l46.6 113.2c5 12.3 19.1 18.1 31.3 13.1s18.1-19.1 13.1-31.3l-42-102C484.9 354.1 544 280 544 192V128v-8l80.5-20.1c8.6-2.1 13.8-10.8 11.6-19.4C629 52 603.4 32 574 32H523.9C507.7 12.5 483.3 0 456 0zm0 64a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "crown": { + "aliases": { + "unicodes": { + "composite": [ + "1f451" + ], + "secondary": [ + "10f521" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "award", + "clothing", + "crown", + "favorite", + "king", + "queen", + "royal", + "tiara" + ] + }, + "unicode": "f521", + "label": "Crown", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M309 106c11.4-7 19-19.7 19-34c0-22.1-17.9-40-40-40s-40 17.9-40 40c0 14.4 7.6 27 19 34L209.7 220.6c-9.1 18.2-32.7 23.4-48.6 10.7L72 160c5-6.7 8-15 8-24c0-22.1-17.9-40-40-40S0 113.9 0 136s17.9 40 40 40c.2 0 .5 0 .7 0L86.4 427.4c5.5 30.4 32 52.6 63 52.6H426.6c30.9 0 57.4-22.1 63-52.6L535.3 176c.2 0 .5 0 .7 0c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40c0 9 3 17.3 8 24l-89.1 71.3c-15.9 12.7-39.5 7.5-48.6-10.7L309 106z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "crutch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7f7" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cane", + "injury", + "mobility", + "wheelchair" + ] + }, + "unicode": "f7f7", + "label": "Crutch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M297.4 9.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0zm-96 144l-34.8 34.8c-12.9 12.9-21.9 29.2-25.8 47.1L116.8 342.9c-1.3 5.9-4.3 11.4-8.6 15.7L9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l98.8-98.8c4.3-4.3 9.7-7.3 15.7-8.6l107.6-23.9c17.8-4 34.1-12.9 47.1-25.8l34.7-34.7c0 0 .1-.1 .1-.1s.1-.1 .1-.1l74.6-74.6-45.3-45.3L336 242.7 269.3 176l52.1-52.1L276.1 78.6l-74.7 74.7zM224 221.3L290.7 288l-12.2 12.2c-4.3 4.3-9.7 7.3-15.7 8.6l-76.7 17 17-76.7c1.3-5.9 4.3-11.4 8.6-15.7L224 221.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cruzeiro-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Cruzeiro Sign", + "currency" + ] + }, + "unicode": "e152", + "label": "Cruzeiro Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 256c0-88.4 71.6-160 160-160c41 0 78.3 15.4 106.7 40.7c13.2 11.8 33.4 10.7 45.2-2.5s10.7-33.4-2.5-45.2c-39.6-35.5-92-57-149.3-57C100.3 32 0 132.3 0 256S100.3 480 224 480c57.4 0 109.7-21.6 149.3-57c13.2-11.8 14.3-32 2.5-45.2s-32-14.3-45.2-2.5C302.3 400.6 265 416 224 416V320v-8.7c0-12.8 10.4-23.3 23.3-23.3c4.6 0 9.1 1.4 12.9 3.9l10.1 6.7c14.7 9.8 34.6 5.8 44.4-8.9s5.8-34.6-8.9-44.4l-10.1-6.7c-14.3-9.6-31.2-14.7-48.4-14.7c-12.4 0-24.2 2.6-34.9 7.3c-5.5-4.5-12.6-7.3-20.3-7.3c-17.7 0-32 14.3-32 32v55.3V320v82.7C103.5 378 64 321.6 64 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "css3": { + "changes": [ + "3.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "code" + ] + }, + "unicode": "f13c", + "label": "CSS 3 Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "css3-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f38b", + "label": "Alternate CSS3 Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cube": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1b2" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "3d", + "block", + "dice", + "package", + "square", + "tesseract" + ] + }, + "unicode": "f1b2", + "label": "Cube", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M234.5 5.7c13.9-5 29.1-5 43.1 0l192 68.6C495 83.4 512 107.5 512 134.6V377.4c0 27-17 51.2-42.5 60.3l-192 68.6c-13.9 5-29.1 5-43.1 0l-192-68.6C17 428.6 0 404.5 0 377.4V134.6c0-27 17-51.2 42.5-60.3l192-68.6zM256 66L82.3 128 256 190l173.7-62L256 66zm32 368.6l160-57.1v-188L288 246.6v188z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cubes": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1b3" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "3d", + "block", + "dice", + "package", + "pyramid", + "square", + "stack", + "tesseract" + ] + }, + "unicode": "f1b3", + "label": "Cubes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M273.8 45.8l73.7 28L271.2 103 194.8 73.7l73.7-28c1.7-.7 3.6-.7 5.3 0zM128.1 87.1V192.6c-1.2 .4-2.4 .8-3.6 1.2L34.1 228.1c-20.5 7.8-34 27.4-34 49.3V389.5c0 20.9 12.4 39.8 31.5 48.3L122 477.5c13.5 5.9 28.9 5.9 42.4 0l106.8-46.9L378 477.5c13.5 5.9 28.9 5.9 42.4 0l90.4-39.7c19.1-8.4 31.5-27.3 31.5-48.3V277.4c0-21.9-13.5-41.5-34-49.3l-90.4-34.3c-1.2-.5-2.4-.9-3.6-1.2V87.1c0-21.9-13.5-41.5-34-49.3L289.9 3.5c-12-4.6-25.3-4.6-37.4 0L162.1 37.8c-20.5 7.8-34 27.4-34 49.3zM369.1 198.2l-77.5 29.4v-84l77.5-29.7v84.3zM145.8 236.1l73.7 28-76.4 29.3L66.8 264.1l73.7-28c1.7-.7 3.6-.7 5.3 0zm17.7 192.4V333.9l77.5-29.7v90.2l-77.5 34.1zm233-192.4c1.7-.7 3.6-.7 5.3 0l73.7 28-76.4 29.3-76.4-29.3 73.7-28zm96.1 160.3l-73 32.1V333.9l77.5-29.7v85.3c0 3-1.8 5.7-4.5 6.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cubes-stacked": { + "changes": [ + "6.1.0", + "6.1.1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "cubes", + "sugar" + ] + }, + "unicode": "e4e6", + "label": "Cubes Stacked", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M192 64v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H224c-17.7 0-32 14.3-32 32zM82.7 207c-15.3 8.8-20.5 28.4-11.7 43.7l32 55.4c8.8 15.3 28.4 20.5 43.7 11.7l55.4-32c15.3-8.8 20.5-28.4 11.7-43.7l-32-55.4c-8.8-15.3-28.4-20.5-43.7-11.7L82.7 207zM288 192c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32H288zm64 160c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32H352zM160 384v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32zM32 352c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cuttlefish": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f38c", + "label": "Cuttlefish", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 440, + 512 + ], + "width": 440, + "height": 512, + "path": "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "d": { + "aliases": { + "unicodes": { + "composite": [ + "64" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter D", + "Latin Small Letter D", + "letter" + ] + }, + "unicode": "44", + "label": "D", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32h96c123.7 0 224 100.3 224 224s-100.3 224-224 224H64c-35.3 0-64-28.7-64-64V96zm160 0H64V416h96c88.4 0 160-71.6 160-160s-71.6-160-160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "d-and-d": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f38d", + "label": "Dungeons & Dragons", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "d-and-d-beyond": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "gaming", + "tabletop" + ] + }, + "unicode": "f6ca", + "label": "D&D Beyond", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M313.8 241.5c13.8 0 21-10.1 24.8-17.9-1-1.1-5-4.2-7.4-6.6-2.4 4.3-8.2 10.7-13.9 10.7-10.2 0-15.4-14.7-3.2-26.6-.5-.2-4.3-1.8-8 2.4 0-3 1-5.1 2.1-6.6-3.5 1.3-9.8 5.6-11.4 7.9.2-5.8 1.6-7.5.6-9l-.2-.2s-8.5 5.6-9.3 14.7c0 0 1.1-1.6 2.1-1.9.6-.3 1.3 0 .6 1.9-.2.6-5.8 15.7 5.1 26-.6-1.6-1.9-7.6 2.4-1.9-.3.1 5.8 7.1 15.7 7.1zm52.4-21.1c0-4-4.9-4.4-5.6-4.5 2 3.9.9 7.5.2 9 2.5-.4 5.4-1.6 5.4-4.5zm10.3 5.2c0-6.4-6.2-11.4-13.5-10.7 8 1.3 5.6 13.8-5 11.4 3.7-2.6 3.2-9.9-1.3-12.5 1.4 4.2-3 8.2-7.4 4.6-2.4-1.9-8-6.6-10.6-8.6-2.4-2.1-5.5-1-6.6-1.8-1.3-1.1-.5-3.8-2.2-5-1.6-.8-3-.3-4.8-1-1.6-.6-2.7-1.9-2.6-3.5-2.5 4.4 3.4 6.3 4.5 8.5 1 1.9-.8 4.8 4 8.5 14.8 11.6 9.1 8 10.4 18.1.6 4.3 4.2 6.7 6.4 7.4-2.1-1.9-2.9-6.4 0-9.3 0 13.9 19.2 13.3 23.1 6.4-2.4 1.1-7-.2-9-1.9 7.7 1 14.2-4.1 14.6-10.6zm-39.4-18.4c2 .8 1.6.7 6.4 4.5 10.2-24.5 21.7-15.7 22-15.5 2.2-1.9 9.8-3.8 13.8-2.7-2.4-2.7-7.5-6.2-13.3-6.2-4.7 0-7.4 2.2-8 1.3-.8-1.4 3.2-3.4 3.2-3.4-5.4.2-9.6 6.7-11.2 5.9-1.1-.5 1.4-3.7 1.4-3.7-5.1 2.9-9.3 9.1-10.2 13 4.6-5.8 13.8-9.8 19.7-9-10.5.5-19.5 9.7-23.8 15.8zm242.5 51.9c-20.7 0-40 1.3-50.3 2.1l7.4 8.2v77.2l-7.4 8.2c10.4.8 30.9 2.1 51.6 2.1 42.1 0 59.1-20.7 59.1-48.9 0-29.3-23.2-48.9-60.4-48.9zm-15.1 75.6v-53.3c30.1-3.3 46.8 3.8 46.8 26.3 0 25.6-21.4 30.2-46.8 27zM301.6 181c-1-3.4-.2-6.9 1.1-9.4 1 3 2.6 6.4 7.5 9-.5-2.4-.2-5.6.5-8-1.4-5.4 2.1-9.9 6.4-9.9 6.9 0 8.5 8.8 4.7 14.4 2.1 3.2 5.5 5.6 7.7 7.8 3.2-3.7 5.5-9.5 5.5-13.8 0-8.2-5.5-15.9-16.7-16.5-20-.9-20.2 16.6-20 18.9.5 5.2 3.4 7.8 3.3 7.5zm-.4 6c-.5 1.8-7 3.7-10.2 6.9 4.8-1 7-.2 7.8 1.8.5 1.4-.2 3.4-.5 5.6 1.6-1.8 7-5.5 11-6.2-1-.3-3.4-.8-4.3-.8 2.9-3.4 9.3-4.5 12.8-3.7-2.2-.2-6.7 1.1-8.5 2.6 1.6.3 3 .6 4.3 1.1-2.1.8-4.8 3.4-5.8 6.1 7-5 13.1 5.2 7 8.2.8.2 2.7 0 3.5-.5-.3 1.1-1.9 3-3 3.4 2.9 0 7-1.9 8.2-4.6 0 0-1.8.6-2.6-.2s.3-4.3.3-4.3c-2.3 2.9-3.4-1.3-1.3-4.2-1-.3-3.5-.6-4.6-.5 3.2-1.1 10.4-1.8 11.2-.3.6 1.1-1 3.4-1 3.4 4-.5 8.3 1.1 6.7 5.1 2.9-1.4 5.5-5.9 4.8-10.4-.3 1-1.6 2.4-2.9 2.7.2-1.4-1-2.2-1.9-2.6 1.7-9.6-14.6-14.2-14.1-23.9-1 1.3-1.8 5-.8 7.1 2.7 3.2 8.7 6.7 10.1 12.2-2.6-6.4-15.1-11.4-14.6-20.2-1.6 1.6-2.6 7.8-1.3 11 2.4 1.4 4.5 3.8 4.8 6.1-2.2-5.1-11.4-6.1-13.9-12.2-.6 2.2-.3 5 1 6.7 0 0-2.2-.8-7-.6 1.7.6 5.1 3.5 4.8 5.2zm25.9 7.4c-2.7 0-3.5-2.1-4.2-4.3 3.3 1.3 4.2 4.3 4.2 4.3zm38.9 3.7l-1-.6c-1.1-1-2.9-1.4-4.7-1.4-2.9 0-5.8 1.3-7.5 3.4-.8.8-1.4 1.8-2.1 2.6v15.7c3.5 2.6 7.1-2.9 3-7.2 1.5.3 4.6 2.7 5.1 3.2 0 0 2.6-.5 5-.5 2.1 0 3.9.3 5.6 1.1V196c-1.1.5-2.2 1-2.7 1.4zM79.9 305.9c17.2-4.6 16.2-18 16.2-19.9 0-20.6-24.1-25-37-25H3l8.3 8.6v29.5H0l11.4 14.6V346L3 354.6c61.7 0 73.8 1.5 86.4-5.9 6.7-4 9.9-9.8 9.9-17.6 0-5.1 2.6-18.8-19.4-25.2zm-41.3-27.5c20 0 29.6-.8 29.6 9.1v3c0 12.1-19 8.8-29.6 8.8zm0 59.2V315c12.2 0 32.7-2.3 32.7 8.8v4.5h.2c0 11.2-12.5 9.3-32.9 9.3zm101.2-19.3l23.1.2v-.2l14.1-21.2h-37.2v-14.9h52.4l-14.1-21v-.2l-73.5.2 7.4 8.2v77.1l-7.4 8.2h81.2l14.1-21.2-60.1.2zm214.7-60.1c-73.9 0-77.5 99.3-.3 99.3 77.9 0 74.1-99.3.3-99.3zm-.3 77.5c-37.4 0-36.9-55.3.2-55.3 36.8.1 38.8 55.3-.2 55.3zm-91.3-8.3l44.1-66.2h-41.7l6.1 7.2-20.5 37.2h-.3l-21-37.2 6.4-7.2h-44.9l44.1 65.8.2 19.4-7.7 8.2h42.6l-7.2-8.2zm-28.4-151.3c1.6 1.3 2.9 2.4 2.9 6.6v38.8c0 4.2-.8 5.3-2.7 6.4-.1.1-7.5 4.5-7.9 4.6h35.1c10 0 17.4-1.5 26-8.6-.6-5 .2-9.5.8-12 0-.2-1.8 1.4-2.7 3.5 0-5.7 1.6-15.4 9.6-20.5-.1 0-3.7-.8-9 1.1 2-3.1 10-7.9 10.4-7.9-8.2-26-38-22.9-32.2-22.9-30.9 0-32.6.3-39.9-4 .1.8.5 8.2 9.6 14.9zm21.5 5.5c4.6 0 23.1-3.3 23.1 17.3 0 20.7-18.4 17.3-23.1 17.3zm228.9 79.6l7 8.3V312h-.3c-5.4-14.4-42.3-41.5-45.2-50.9h-31.6l7.4 8.5v76.9l-7.2 8.3h39l-7.4-8.2v-47.4h.3c3.7 10.6 44.5 42.9 48.5 55.6h21.3v-85.2l7.4-8.3zm-106.7-96.1c-32.2 0-32.8.2-39.9-4 .1.7.5 8.3 9.6 14.9 3.1 2 2.9 4.3 2.9 9.5 1.8-1.1 3.8-2.2 6.1-3-1.1 1.1-2.7 2.7-3.5 4.5 1-1.1 7.5-5.1 14.6-3.5-1.6.3-4 1.1-6.1 2.9.1 0 2.1-1.1 7.5-.3v-4.3c4.7 0 23.1-3.4 23.1 17.3 0 20.5-18.5 17.3-19.7 17.3 5.7 4.4 5.8 12 2.2 16.3h.3c33.4 0 36.7-27.3 36.7-34 0-3.8-1.1-32-33.8-33.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dailymotion": { + "changes": [ + "5.12.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e052", + "label": "dailymotion", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M298.93,267a48.4,48.4,0,0,0-24.36-6.21q-19.83,0-33.44,13.27t-13.61,33.42q0,21.16,13.28,34.6t33.43,13.44q20.5,0,34.11-13.78T322,307.47A47.13,47.13,0,0,0,315.9,284,44.13,44.13,0,0,0,298.93,267ZM0,32V480H448V32ZM374.71,405.26h-53.1V381.37h-.67q-15.79,26.2-55.78,26.2-27.56,0-48.89-13.1a88.29,88.29,0,0,1-32.94-35.77q-11.6-22.68-11.59-50.89,0-27.56,11.76-50.22a89.9,89.9,0,0,1,32.93-35.78q21.18-13.09,47.72-13.1a80.87,80.87,0,0,1,29.74,5.21q13.28,5.21,25,17V153l55.79-12.09Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dashcube": { + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f210", + "label": "DashCube", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "database": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c0" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "development", + "directory", + "memory", + "storage" + ] + }, + "unicode": "f1c0", + "label": "Database", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321809, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 80v48c0 44.2-100.3 80-224 80S0 172.2 0 128V80C0 35.8 100.3 0 224 0S448 35.8 448 80zM393.2 214.7c20.8-7.4 39.9-16.9 54.8-28.6V288c0 44.2-100.3 80-224 80S0 332.2 0 288V186.1c14.9 11.8 34 21.2 54.8 28.6C99.7 230.7 159.5 240 224 240s124.3-9.3 169.2-25.3zM0 346.1c14.9 11.8 34 21.2 54.8 28.6C99.7 390.7 159.5 400 224 400s124.3-9.3 169.2-25.3c20.8-7.4 39.9-16.9 54.8-28.6V432c0 44.2-100.3 80-224 80S0 476.2 0 432V346.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "deezer": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e077", + "label": "Deezer", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M451.46,244.71H576V172H451.46Zm0-173.89v72.67H576V70.82Zm0,275.06H576V273.2H451.46ZM0,447.09H124.54V374.42H0Zm150.47,0H275V374.42H150.47Zm150.52,0H425.53V374.42H301Zm150.47,0H576V374.42H451.46ZM301,345.88H425.53V273.2H301Zm-150.52,0H275V273.2H150.47Zm0-101.17H275V172H150.47Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "delete-left": { + "aliases": { + "names": [ + "backspace" + ], + "unicodes": { + "composite": [ + "232b" + ], + "secondary": [ + "10f55a" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Erase to the Left", + "command", + "delete", + "erase", + "keyboard", + "undo" + ] + }, + "unicode": "f55a", + "label": "Delete Left", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M576 128c0-35.3-28.7-64-64-64H205.3c-17 0-33.3 6.7-45.3 18.7L9.4 233.4c-6 6-9.4 14.1-9.4 22.6s3.4 16.6 9.4 22.6L160 429.3c12 12 28.3 18.7 45.3 18.7H512c35.3 0 64-28.7 64-64V128zM271 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "delicious": { + "changes": [ + "4.1.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a5", + "label": "Delicious", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "democrat": { + "aliases": { + "unicodes": { + "secondary": [ + "10f747" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "democratic party", + "donkey", + "election", + "left", + "left-wing", + "liberal", + "politics", + "usa" + ] + }, + "unicode": "f747", + "label": "Democrat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32c0-8.9 3.8-20.9 6.2-27.3C71.2 1.8 74 0 77 0c1.9 0 3.8 .7 5.2 2.1L128 45.7 173.8 2.1C175.2 .7 177.1 0 179 0c3 0 5.8 1.8 6.8 4.7c2.4 6.5 6.2 18.4 6.2 27.3c0 26.5-21.9 42-29.5 46.6l76.2 72.6c6 5.7 13.9 8.8 22.1 8.8H480l32 0c40.3 0 78.2 19 102.4 51.2l19.2 25.6c10.6 14.1 7.7 34.2-6.4 44.8s-34.2 7.7-44.8-6.4l-19.2-25.6c-5.3-7-11.8-12.8-19.2-17V320H192l-40.4-94.3c-3.9-9.2-15.3-12.6-23.6-7l-42.1 28c-9.1 6.1-19.7 9.3-30.7 9.3h-2C23.9 256 0 232.1 0 202.7c0-12.1 4.1-23.8 11.7-33.3L87.6 74.6C78.1 67.4 64 53.2 64 32zM448 352h96v64 64c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32V416H288v64c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32V416 352h96H448zM260.9 210.9c-.9-1.8-2.8-2.9-4.8-2.9s-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9 .5 3.9 2.1 5s3.8 1.3 5.6 .4l21-10.7 21 10.7c1.8 .9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.3-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5zM368.1 208c-2 0-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9 .5 3.9 2.1 5s3.8 1.3 5.6 .4l21-10.7 21 10.7c1.8 .9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.4-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5c-.9-1.8-2.8-2.9-4.8-2.9zm116.8 2.9c-.9-1.8-2.8-2.9-4.8-2.9s-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9 .5 3.9 2.1 5s3.8 1.3 5.6 .4l21-10.7 21 10.7c1.8 .9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.4-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "deploydog": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f38e", + "label": "deploy.dog", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "deskpro": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f38f", + "label": "Deskpro", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 480, + 512 + ], + "width": 480, + "height": 512, + "path": "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "desktop": { + "aliases": { + "names": [ + "desktop-alt" + ], + "unicodes": { + "composite": [ + "1f5a5", + "f108" + ], + "primary": [ + "f108" + ], + "secondary": [ + "10f108", + "10f390" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "demo", + "desktop", + "desktop computer", + "device", + "imac", + "machine", + "monitor", + "pc", + "screen" + ] + }, + "unicode": "f390", + "label": "Desktop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V352c0 35.3 28.7 64 64 64H240l-10.7 32H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H346.7L336 416H512c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM512 64V288H64V64H512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dev": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f6cc", + "label": "DEV", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M120.12 208.29c-3.88-2.9-7.77-4.35-11.65-4.35H91.03v104.47h17.45c3.88 0 7.77-1.45 11.65-4.35 3.88-2.9 5.82-7.25 5.82-13.06v-69.65c-.01-5.8-1.96-10.16-5.83-13.06zM404.1 32H43.9C19.7 32 .06 51.59 0 75.8v360.4C.06 460.41 19.7 480 43.9 480h360.2c24.21 0 43.84-19.59 43.9-43.8V75.8c-.06-24.21-19.7-43.8-43.9-43.8zM154.2 291.19c0 18.81-11.61 47.31-48.36 47.25h-46.4V172.98h47.38c35.44 0 47.36 28.46 47.37 47.28l.01 70.93zm100.68-88.66H201.6v38.42h32.57v29.57H201.6v38.41h53.29v29.57h-62.18c-11.16.29-20.44-8.53-20.72-19.69V193.7c-.27-11.15 8.56-20.41 19.71-20.69h63.19l-.01 29.52zm103.64 115.29c-13.2 30.75-36.85 24.63-47.44 0l-38.53-144.8h32.57l29.71 113.72 29.57-113.72h32.58l-38.46 144.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "deviantart": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1bd", + "label": "deviantART", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dharmachakra": { + "aliases": { + "unicodes": { + "composite": [ + "2638" + ], + "secondary": [ + "10f655" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Buddhist", + "buddhism", + "buddhist", + "dharma", + "religion", + "wheel", + "wheel of dharma" + ] + }, + "unicode": "f655", + "label": "Dharmachakra", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M337.8 205.7l48.6-42.5c13.8 19.3 23.4 41.9 27.4 66.2l-64.4 4.3c-2.4-10.1-6.4-19.5-11.6-28zm140.1 19.5c-5.3-38.8-20.6-74.5-43.2-104.3l.8-.7C449 108.4 449.7 87.6 437 75s-33.4-12-45.2 1.5l-.7 .8c-29.8-22.6-65.5-37.9-104.3-43.2l.1-1.1c1.2-17.9-13-33-30.9-33s-32.1 15.2-30.9 33l.1 1.1c-38.8 5.3-74.5 20.6-104.3 43.2l-.7-.8C108.4 63 87.6 62.3 75 75s-12 33.4 1.5 45.2l.8 .7c-22.6 29.8-37.9 65.5-43.2 104.3l-1.1-.1c-17.9-1.2-33 13-33 30.9s15.2 32.1 33 30.9l1.1-.1c5.3 38.8 20.6 74.5 43.2 104.3l-.8 .7C63 403.6 62.3 424.4 75 437s33.4 12 45.2-1.5l.7-.8c29.8 22.6 65.5 37.9 104.3 43.2l-.1 1.1c-1.2 17.9 13 33 30.9 33s32.1-15.2 30.9-33l-.1-1.1c38.8-5.3 74.5-20.6 104.3-43.2l.7 .8c11.8 13.5 32.5 14.2 45.2 1.5s12-33.4-1.5-45.2l-.8-.7c22.6-29.8 37.9-65.5 43.2-104.3l1.1 .1c17.9 1.2 33-13 33-30.9s-15.2-32.1-33-30.9l-1.1 .1zM163.2 125.6c19.3-13.8 41.9-23.4 66.2-27.5l4.3 64.4c-10 2.4-19.5 6.4-28 11.6l-42.5-48.6zm-65 103.8c4.1-24.4 13.7-46.9 27.5-66.2l48.6 42.5c-5.3 8.5-9.2 18-11.6 28l-64.4-4.3zm27.5 119.4c-13.8-19.3-23.4-41.9-27.5-66.2l64.4-4.3c2.4 10 6.4 19.5 11.6 28l-48.6 42.5zm103.8 65c-24.4-4.1-46.9-13.7-66.2-27.4l42.5-48.6c8.5 5.3 18 9.2 28 11.6l-4.3 64.4zm119.4-27.4c-19.3 13.8-41.9 23.4-66.2 27.4l-4.3-64.4c10-2.4 19.5-6.4 28-11.6l42.5 48.6zm65-103.8c-4.1 24.4-13.7 46.9-27.4 66.2l-48.6-42.5c5.3-8.5 9.2-18 11.6-28l64.4 4.3zm-65-156.9l-42.5 48.6c-8.6-5.3-18-9.2-28-11.6l4.3-64.4c24.4 4.1 46.9 13.7 66.2 27.5zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dhl": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dalsey", + "Hillblom and Lynn", + "german", + "package", + "shipping" + ] + }, + "unicode": "f790", + "label": "DHL", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M238 301.2h58.7L319 271h-58.7L238 301.2zM0 282.9v6.4h81.8l4.7-6.4H0zM172.9 271c-8.7 0-6-3.6-4.6-5.5 2.8-3.8 7.6-10.4 10.4-14.1 2.8-3.7 2.8-5.9-2.8-5.9h-51l-41.1 55.8h100.1c33.1 0 51.5-22.5 57.2-30.3h-68.2zm317.5-6.9l39.3-53.4h-62.2l-39.3 53.4h62.2zM95.3 271H0v6.4h90.6l4.7-6.4zm111-26.6c-2.8 3.8-7.5 10.4-10.3 14.2-1.4 2-4.1 5.5 4.6 5.5h45.6s7.3-10 13.5-18.4c8.4-11.4.7-35-29.2-35H112.6l-20.4 27.8h111.4c5.6 0 5.5 2.2 2.7 5.9zM0 301.2h73.1l4.7-6.4H0v6.4zm323 0h58.7L404 271h-58.7c-.1 0-22.3 30.2-22.3 30.2zm222 .1h95v-6.4h-90.3l-4.7 6.4zm22.3-30.3l-4.7 6.4H640V271h-72.7zm-13.5 18.3H640v-6.4h-81.5l-4.7 6.4zm-164.2-78.6l-22.5 30.6h-26.2l22.5-30.6h-58.7l-39.3 53.4H409l39.3-53.4h-58.7zm33.5 60.3s-4.3 5.9-6.4 8.7c-7.4 10-.9 21.6 23.2 21.6h94.3l22.3-30.3H423.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "diagram-next": { + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cells", + "chart", + "gantt", + "row", + "subtask", + "successor", + "table" + ] + }, + "unicode": "e476", + "label": "Diagram Next", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 160c0 35.3-28.7 64-64 64H280v64h46.1c21.4 0 32.1 25.9 17 41L273 399c-9.4 9.4-24.6 9.4-33.9 0L169 329c-15.1-15.1-4.4-41 17-41H232V224H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64v64zM448 416V352H365.3l.4-.4c18.4-18.4 20.4-43.7 11-63.6l71.3 0c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64V352c0-35.3 28.7-64 64-64l71.3 0c-9.4 19.9-7.4 45.2 11 63.6l.4 .4H64v64H210.7l5.7 5.7c21.9 21.9 57.3 21.9 79.2 0l5.7-5.7H448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diagram-predecessor": { + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cells", + "chart", + "gantt", + "predecessor", + "previous", + "row", + "subtask", + "table" + ] + }, + "unicode": "e477", + "label": "Diagram Predecessor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 416l0-64L64 352l0 64 384 0zm0 64L64 480c-35.3 0-64-28.7-64-64l0-64c0-35.3 28.7-64 64-64l384 0c35.3 0 64 28.7 64 64l0 64c0 35.3-28.7 64-64 64zM288 160c0 35.3-28.7 64-64 64L64 224c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l144 0 16 0 144 0c44.2 0 80 35.8 80 80l0 16 38.1 0c21.4 0 32.1 25.9 17 41L433 239c-9.4 9.4-24.6 9.4-33.9 0L329 169c-15.1-15.1-4.4-41 17-41l38.1 0 0-16c0-8.8-7.2-16-16-16l-80 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diagram-project": { + "aliases": { + "names": [ + "project-diagram" + ], + "unicodes": { + "secondary": [ + "10f542" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "graph", + "network", + "pert" + ] + }, + "unicode": "f542", + "label": "Diagram Project", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 80C0 53.5 21.5 32 48 32h96c26.5 0 48 21.5 48 48V96H384V80c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H432c-26.5 0-48-21.5-48-48V160H192v16c0 1.7-.1 3.4-.3 5L272 288h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H272c-26.5 0-48-21.5-48-48V336c0-1.7 .1-3.4 .3-5L144 224H48c-26.5 0-48-21.5-48-48V80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diagram-successor": { + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cells", + "chart", + "gantt", + "next", + "row", + "subtask", + "successor", + "table" + ] + }, + "unicode": "e47a", + "label": "Diagram Successor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 416l0-64c0-35.3-28.7-64-64-64L64 288c-35.3 0-64 28.7-64 64l0 64c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64zM64 160l0-64 144 0 16 0 0 64L64 160zm224 0l0-64 80 0c8.8 0 16 7.2 16 16l0 16-38.1 0c-21.4 0-32.1 25.9-17 41L399 239c9.4 9.4 24.6 9.4 33.9 0L503 169c15.1-15.1 4.4-41-17-41L448 128l0-16c0-44.2-35.8-80-80-80L224 32l-16 0L64 32C28.7 32 0 60.7 0 96l0 64c0 35.3 28.7 64 64 64l160 0c35.3 0 64-28.7 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diamond": { + "aliases": { + "unicodes": { + "composite": [ + "2666" + ], + "secondary": [ + "10f219" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "card", + "cards", + "diamond suit", + "game", + "gem", + "gemstone", + "poker", + "suit" + ] + }, + "unicode": "f219", + "label": "Diamond", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M284.3 11.7c-15.6-15.6-40.9-15.6-56.6 0l-216 216c-15.6 15.6-15.6 40.9 0 56.6l216 216c15.6 15.6 40.9 15.6 56.6 0l216-216c15.6-15.6 15.6-40.9 0-56.6l-216-216z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diamond-turn-right": { + "aliases": { + "names": [ + "directions" + ], + "unicodes": { + "secondary": [ + "10f5eb" + ] + } + }, + "changes": [ + "5.2.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "map", + "navigation", + "sign", + "turn" + ] + }, + "unicode": "f5eb", + "label": "Diamond Turn Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M227.7 11.7c15.6-15.6 40.9-15.6 56.6 0l216 216c15.6 15.6 15.6 40.9 0 56.6l-216 216c-15.6 15.6-40.9 15.6-56.6 0l-216-216c-15.6-15.6-15.6-40.9 0-56.6l216-216zm87.6 137c-4.6-4.6-11.5-5.9-17.4-3.5s-9.9 8.3-9.9 14.8v56H224c-35.3 0-64 28.7-64 64v48c0 13.3 10.7 24 24 24s24-10.7 24-24V280c0-8.8 7.2-16 16-16h64v56c0 6.5 3.9 12.3 9.9 14.8s12.9 1.1 17.4-3.5l80-80c6.2-6.2 6.2-16.4 0-22.6l-80-80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diaspora": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f791", + "label": "Diaspora", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M251.64 354.55c-1.4 0-88 119.9-88.7 119.9S76.34 414 76 413.25s86.6-125.7 86.6-127.4c0-2.2-129.6-44-137.6-47.1-1.3-.5 31.4-101.8 31.7-102.1.6-.7 144.4 47 145.5 47 .4 0 .9-.6 1-1.3.4-2 1-148.6 1.7-149.6.8-1.2 104.5-.7 105.1-.3 1.5 1 3.5 156.1 6.1 156.1 1.4 0 138.7-47 139.3-46.3.8.9 31.9 102.2 31.5 102.6-.9.9-140.2 47.1-140.6 48.8-.3 1.4 82.8 122.1 82.5 122.9s-85.5 63.5-86.3 63.5c-1-.2-89-125.5-90.9-125.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dice": { + "aliases": { + "unicodes": { + "composite": [ + "1f3b2" + ], + "secondary": [ + "10f522" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "dice", + "die", + "gambling", + "game", + "game die", + "roll" + ] + }, + "unicode": "f522", + "label": "Dice", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M252.3 11.7c-15.6-15.6-40.9-15.6-56.6 0l-184 184c-15.6 15.6-15.6 40.9 0 56.6l184 184c15.6 15.6 40.9 15.6 56.6 0l184-184c15.6-15.6 15.6-40.9 0-56.6l-184-184zM248 224c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24zM96 248c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm128 80c13.3 0 24 10.7 24 24s-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24zm128-80c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zM224 72c13.3 0 24 10.7 24 24s-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24zm96 392c0 26.5 21.5 48 48 48H592c26.5 0 48-21.5 48-48V240c0-26.5-21.5-48-48-48H472.5c13.4 26.9 8.8 60.5-13.6 82.9L320 413.8V464zm160-88c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-d20": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6cf" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "chance", + "d&d", + "dnd", + "fantasy", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f6cf", + "label": "Dice D20", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64.7 125.8l53.2 31.9c7.8 4.7 17.8 2 22.2-5.9L217.6 12.1c3-5.4-.9-12.1-7.1-12.1c-1.6 0-3.2 .5-4.6 1.4L63.9 98.8c-9.6 6.6-9.2 20.9 .8 26.9zM32 171.7V295.3c0 8 10.4 11 14.7 4.4l60-92c5-7.6 2.6-17.8-5.2-22.5L56.2 158C45.6 151.6 32 159.3 32 171.7zM326.4 12.1l77.6 139.6c4.4 7.9 14.5 10.6 22.2 5.9l53.2-31.9c10-6 10.4-20.3 .8-26.9L338.1 1.4c-1.4-.9-3-1.4-4.6-1.4c-6.2 0-10.1 6.7-7.1 12.1zM512 171.7c0-12.4-13.6-20.1-24.2-13.7l-45.3 27.2c-7.8 4.7-10.1 14.9-5.2 22.5l60 92c4.3 6.7 14.7 3.6 14.7-4.4V171.7zm-49.3 246L302.1 436.6c-8.1 .9-14.1 7.8-14.1 15.9v52.8c0 3.7 3 6.8 6.8 6.8c.8 0 1.6-.1 2.4-.4l172.7-64c6.1-2.2 10.1-8 10.1-14.5c0-9.3-8.1-16.5-17.3-15.4zM249.2 512c3.7 0 6.8-3 6.8-6.8V452.6c0-8.1-6.1-14.9-14.1-15.9l-160.6-19c-9.2-1.1-17.3 6.1-17.3 15.4c0 6.5 4 12.3 10.1 14.5l172.7 64c.8 .3 1.6 .4 2.4 .4zM57.7 382.9l170.9 20.2c7.8 .9 13.4-7.5 9.5-14.3l-85.7-150c-5.9-10.4-20.7-10.8-27.3-.8L46.2 358.2c-6.5 9.9-.3 23.3 11.5 24.7zm439.6-24.8L418.9 238.1c-6.5-10-21.4-9.6-27.3 .8L306.2 388.5c-3.9 6.8 1.6 15.2 9.5 14.3l170.1-20c11.8-1.4 18-14.7 11.5-24.6zm-216.9 11l78.4-137.2c6.1-10.7-1.6-23.9-13.9-23.9H199.1c-12.3 0-20 13.3-13.9 23.9l78.4 137.2c3.7 6.4 13 6.4 16.7 0zM190.4 176H353.6c12.2 0 19.9-13.1 14-23.8l-80-144c-2.8-5.1-8.2-8.2-14-8.2h-3.2c-5.8 0-11.2 3.2-14 8.2l-80 144c-5.9 10.7 1.8 23.8 14 23.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-d6": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6d1" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "chance", + "d&d", + "dnd", + "fantasy", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f6d1", + "label": "Dice D6", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M216.3 2c4.8-2.6 10.5-2.6 15.3 0L422.3 106c5.1 2.8 8.3 8.2 8.3 14s-3.2 11.2-8.3 14L231.7 238c-4.8 2.6-10.5 2.6-15.3 0L25.7 134c-5.1-2.8-8.3-8.2-8.3-14s3.2-11.2 8.3-14L216.3 2zM23.7 170l176 96c5.1 2.8 8.3 8.2 8.3 14V496c0 5.6-3 10.9-7.8 13.8s-10.9 3-15.8 .3L8.3 414C3.2 411.2 0 405.9 0 400V184c0-5.6 3-10.9 7.8-13.8s10.9-3 15.8-.3zm400.7 0c5-2.7 11-2.6 15.8 .3s7.8 8.1 7.8 13.8V400c0 5.9-3.2 11.2-8.3 14l-176 96c-5 2.7-11 2.6-15.8-.3s-7.8-8.1-7.8-13.8V280c0-5.9 3.2-11.2 8.3-14l176-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-five": { + "aliases": { + "unicodes": { + "composite": [ + "2684" + ], + "secondary": [ + "10f523" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-5", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f523", + "label": "Dice Five", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 160c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm32 160c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm64-64c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zM352 160c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zM320 384c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-four": { + "aliases": { + "unicodes": { + "composite": [ + "2683" + ], + "secondary": [ + "10f524" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-4", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f524", + "label": "Dice Four", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM128 384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zM352 160c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM320 384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-one": { + "aliases": { + "unicodes": { + "composite": [ + "2680" + ], + "secondary": [ + "10f525" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-1", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f525", + "label": "Dice One", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM224 288c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-six": { + "aliases": { + "unicodes": { + "composite": [ + "2685" + ], + "secondary": [ + "10f526" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-6", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f526", + "label": "Dice Six", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM128 288c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm32 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM320 192c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm32 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM320 384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-three": { + "aliases": { + "unicodes": { + "composite": [ + "2682" + ], + "secondary": [ + "10f527" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-3", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f527", + "label": "Dice Three", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 160c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm128 64c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm64 128c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-two": { + "aliases": { + "unicodes": { + "composite": [ + "2681" + ], + "secondary": [ + "10f528" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-2", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f528", + "label": "Dice Two", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM352 352c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM128 192c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "digg": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a6", + "label": "Digg Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "digital-ocean": { + "changes": [ + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f391", + "label": "Digital Ocean", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M87 481.8h73.7v-73.6H87zM25.4 346.6v61.6H87v-61.6zm466.2-169.7c-23-74.2-82.4-133.3-156.6-156.6C164.9-32.8 8 93.7 8 255.9h95.8c0-101.8 101-180.5 208.1-141.7 39.7 14.3 71.5 46.1 85.8 85.7 39.1 107-39.7 207.8-141.4 208v.3h-.3V504c162.6 0 288.8-156.8 235.6-327.1zm-235.3 231v-95.3h-95.6v95.6H256v-.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "discord": { + "changes": [ + "5.0.0", + "5.15.4", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f392", + "label": "Discord", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "discourse": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f393", + "label": "Discourse", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "disease": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7fa" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bacteria", + "cancer", + "coronavirus", + "covid-19", + "flu", + "illness", + "infection", + "pandemic", + "sickness", + "virus" + ] + }, + "unicode": "f7fa", + "label": "Disease", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M236.4 61.4L227 75.5c-21.3 32-59.4 48.5-97.3 42.1l-59.6-9.9C33.4 101.6 0 129.9 .1 167.1c0 15.9 6.4 31.2 17.6 42.5l29.2 29.2c11 11 17.2 25.9 17.2 41.5c0 15.8-6.4 30.9-17.7 42L33.3 335.1C22.2 345.9 16 360.7 16 376.2c0 36.8 34.1 64.2 70.1 56.2l62.3-13.8c7.7-1.7 15.7-2.6 23.6-2.6h10c27.2 0 53.7 9.3 75 26.3L287.8 467c10.5 8.4 23.6 13 37 13c32.7 0 59.3-26.5 59.3-59.3l0-25.2c0-34.9 21.4-66.2 53.9-78.8l36.9-14.3c22.4-8.7 37.2-30.3 37.2-54.3c0-28.1-20.1-52.3-47.8-57.3l-28-5.1c-36.5-6.7-65.4-34.5-73.6-70.7l-7.1-31.5C348.9 53.4 322.1 32 291.3 32c-22 0-42.6 11-54.8 29.4zM160 192a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm0 80a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "display": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Screen", + "computer", + "desktop", + "imac" + ] + }, + "unicode": "e163", + "label": "Display", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V352c0 35.3 28.7 64 64 64H240l-10.7 32H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H346.7L336 416H512c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM512 64V352H64V64H512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "divide": { + "aliases": { + "unicodes": { + "composite": [ + "2797", + "f7" + ], + "secondary": [ + "10f529" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Division Sign", + "arithmetic", + "calculus", + "divide", + "division", + "math", + "sign", + "÷" + ] + }, + "unicode": "f529", + "label": "Divide", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M256 96a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm0 320a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM384 288c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dna": { + "aliases": { + "unicodes": { + "composite": [ + "1f9ec" + ], + "secondary": [ + "10f471" + ] + } + }, + "changes": [ + "5.0.7", + "5.0.10", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "biologist", + "dna", + "double helix", + "evolution", + "gene", + "genetic", + "genetics", + "helix", + "life", + "molecule", + "protein" + ] + }, + "unicode": "f471", + "label": "Dna", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M416 0c17.7 0 32 14.3 32 32c0 59.8-30.3 107.5-69.4 146.6c-28 28-62.5 53.5-97.3 77.4l-2.5 1.7c-11.9 8.1-23.8 16.1-35.5 23.9l0 0 0 0 0 0-1.6 1c-6 4-11.9 7.9-17.8 11.9c-20.9 14-40.8 27.7-59.3 41.5H283.3c-9.8-7.4-20.1-14.7-30.7-22.1l7-4.7 3-2c15.1-10.1 30.9-20.6 46.7-31.6c25 18.1 48.9 37.3 69.4 57.7C417.7 372.5 448 420.2 448 480c0 17.7-14.3 32-32 32s-32-14.3-32-32H64c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-59.8 30.3-107.5 69.4-146.6c28-28 62.5-53.5 97.3-77.4c-34.8-23.9-69.3-49.3-97.3-77.4C30.3 139.5 0 91.8 0 32C0 14.3 14.3 0 32 0S64 14.3 64 32H384c0-17.7 14.3-32 32-32zM338.6 384H109.4c-10.1 10.6-18.6 21.3-25.5 32H364.1c-6.8-10.7-15.3-21.4-25.5-32zM109.4 128H338.6c10.1-10.7 18.6-21.3 25.5-32H83.9c6.8 10.7 15.3 21.3 25.5 32zm55.4 48c18.4 13.8 38.4 27.5 59.3 41.5c20.9-14 40.8-27.7 59.3-41.5H164.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dochub": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f394", + "label": "DocHub", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 416, + 512 + ], + "width": 416, + "height": 512, + "path": "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "docker": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f395", + "label": "Docker", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dog": { + "aliases": { + "unicodes": { + "composite": [ + "1f415" + ], + "secondary": [ + "10f6d3" + ] + } + }, + "changes": [ + "5.4.0", + "5.12.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "canine", + "dog", + "fauna", + "mammal", + "pet", + "pooch", + "puppy", + "woof" + ] + }, + "unicode": "f6d3", + "label": "Dog", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M309.6 158.5L332.7 19.8C334.6 8.4 344.5 0 356.1 0c7.5 0 14.5 3.5 19 9.5L392 32h52.1c12.7 0 24.9 5.1 33.9 14.1L496 64h56c13.3 0 24 10.7 24 24v24c0 44.2-35.8 80-80 80H464 448 426.7l-5.1 30.5-112-64zM416 256.1L416 480c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V364.8c-24 12.3-51.2 19.2-80 19.2s-56-6.9-80-19.2V480c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V249.8c-28.8-10.9-51.4-35.3-59.2-66.5L1 167.8c-4.3-17.1 6.1-34.5 23.3-38.8s34.5 6.1 38.8 23.3l3.9 15.5C70.5 182 83.3 192 98 192h30 16H303.8L416 256.1zM464 80a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dollar-sign": { + "aliases": { + "names": [ + "dollar", + "usd" + ], + "unicodes": { + "composite": [ + "1f4b2", + "f155" + ], + "primary": [ + "f155" + ], + "secondary": [ + "1024", + "10f155" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.0.9", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dollar Sign", + "currency", + "dollar", + "heavy dollar sign", + "money" + ] + }, + "unicode": "24", + "label": "Dollar Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M146 0c17.7 0 32 14.3 32 32V67.7c1.6 .2 3.1 .4 4.7 .7c.4 .1 .7 .1 1.1 .2l48 8.8c17.4 3.2 28.9 19.9 25.7 37.2s-19.9 28.9-37.2 25.7l-47.5-8.7c-31.3-4.6-58.9-1.5-78.3 6.2s-27.2 18.3-29 28.1c-2 10.7-.5 16.7 1.2 20.4c1.8 3.9 5.5 8.3 12.8 13.2c16.3 10.7 41.3 17.7 73.7 26.3l2.9 .8c28.6 7.6 63.6 16.8 89.6 33.8c14.2 9.3 27.6 21.9 35.9 39.5c8.5 17.9 10.3 37.9 6.4 59.2c-6.9 38-33.1 63.4-65.6 76.7c-13.7 5.6-28.6 9.2-44.4 11V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.1c-.4-.1-.9-.1-1.3-.2l-.2 0 0 0c-24.4-3.8-64.5-14.3-91.5-26.3C4.9 411.4-2.4 392.5 4.8 376.3s26.1-23.4 42.2-16.2c20.9 9.3 55.3 18.5 75.2 21.6c31.9 4.7 58.2 2 76-5.3c16.9-6.9 24.6-16.9 26.8-28.9c1.9-10.6 .4-16.7-1.3-20.4c-1.9-4-5.6-8.4-13-13.3c-16.4-10.7-41.5-17.7-74-26.3l-2.8-.7 0 0C105.4 279.3 70.4 270 44.4 253c-14.2-9.3-27.5-22-35.8-39.6C.3 195.4-1.4 175.4 2.5 154.1C9.7 116 38.3 91.2 70.8 78.3c13.3-5.3 27.9-8.9 43.2-11V32c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dolly": { + "aliases": { + "names": [ + "dolly-box" + ], + "unicodes": { + "secondary": [ + "10f472" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "shipping", + "transport" + ] + }, + "unicode": "f472", + "label": "Dolly", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0h72.9c27.5 0 52 17.6 60.7 43.8L257.7 320c30.1 .5 56.8 14.9 74 37l202.1-67.4c16.8-5.6 34.9 3.5 40.5 20.2s-3.5 34.9-20.2 40.5L352 417.7c-.9 52.2-43.5 94.3-96 94.3c-53 0-96-43-96-96c0-30.8 14.5-58.2 37-75.8L104.9 64H32C14.3 64 0 49.7 0 32zM244.8 134.5c-5.5-16.8 3.7-34.9 20.5-40.3L311 79.4l19.8 60.9 60.9-19.8L371.8 59.6l45.7-14.8c16.8-5.5 34.9 3.7 40.3 20.5l49.4 152.2c5.5 16.8-3.7 34.9-20.5 40.3L334.5 307.2c-16.8 5.5-34.9-3.7-40.3-20.5L244.8 134.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dong-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dong Sign", + "currency" + ] + }, + "unicode": "e169", + "label": "Dong Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M288 32c-17.7 0-32 14.3-32 32l-32 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v49.1c-18.8-10.9-40.7-17.1-64-17.1c-70.7 0-128 57.3-128 128s57.3 128 128 128c24.5 0 47.4-6.9 66.8-18.8c5 11.1 16.2 18.8 29.2 18.8c17.7 0 32-14.3 32-32V288 128c17.7 0 32-14.3 32-32s-14.3-32-32-32c0-17.7-14.3-32-32-32zM128 288a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM32 448c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "door-closed": { + "aliases": { + "unicodes": { + "composite": [ + "1f6aa" + ], + "secondary": [ + "10f52a" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "doo", + "door", + "enter", + "exit", + "locked" + ] + }, + "unicode": "f52a", + "label": "Door Closed", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 64c0-35.3 28.7-64 64-64H416c35.3 0 64 28.7 64 64V448h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H432 144 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96V64zM384 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "door-open": { + "aliases": { + "unicodes": { + "secondary": [ + "10f52b" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "enter", + "exit", + "welcome" + ] + }, + "unicode": "f52b", + "label": "Door Open", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M320 32c0-9.9-4.5-19.2-12.3-25.2S289.8-1.4 280.2 1l-179.9 45C79 51.3 64 70.5 64 92.5V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H96 288h32V480 32zM256 256c0 17.7-10.7 32-24 32s-24-14.3-24-32s10.7-32 24-32s24 14.3 24 32zm96-128h96V480c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H512V128c0-35.3-28.7-64-64-64H352v64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dove": { + "aliases": { + "unicodes": { + "composite": [ + "1f54a" + ], + "secondary": [ + "10f4ba" + ] + } + }, + "changes": [ + "5.0.9", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "dove", + "fauna", + "fly", + "flying", + "peace", + "war" + ] + }, + "unicode": "f4ba", + "label": "Dove", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160.8 96.5c14 17 31 30.9 49.5 42.2c25.9 15.8 53.7 25.9 77.7 31.6V138.8C265.8 108.5 250 71.5 248.6 28c-.4-11.3-7.5-21.5-18.4-24.4c-7.6-2-15.8-.2-21 5.8c-13.3 15.4-32.7 44.6-48.4 87.2zM320 144v30.6l0 0v1.3l0 0 0 32.1c-60.8-5.1-185-43.8-219.3-157.2C97.4 40 87.9 32 76.6 32c-7.9 0-15.3 3.9-18.8 11C46.8 65.9 32 112.1 32 176c0 116.9 80.1 180.5 118.4 202.8L11.8 416.6C6.7 418 2.6 421.8 .9 426.8s-.8 10.6 2.3 14.8C21.7 466.2 77.3 512 160 512c3.6 0 7.2-1.2 10-3.5L245.6 448H320c88.4 0 160-71.6 160-160V128l29.9-44.9c1.3-2 2.1-4.4 2.1-6.8c0-6.8-5.5-12.3-12.3-12.3H400c-44.2 0-80 35.8-80 80zm80-16a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "down-left-and-up-right-to-center": { + "aliases": { + "names": [ + "compress-alt" + ], + "unicodes": { + "secondary": [ + "10f422" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "fullscreen", + "minimize", + "move", + "resize", + "shrink", + "smaller" + ] + }, + "unicode": "f422", + "label": "Down Left And Up Right To Center", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M439 7c9.4-9.4 24.6-9.4 33.9 0l32 32c9.4 9.4 9.4 24.6 0 33.9l-87 87 39 39c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8H296c-13.3 0-24-10.7-24-24V72c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l39 39L439 7zM72 272H216c13.3 0 24 10.7 24 24V440c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39L73 505c-9.4 9.4-24.6 9.4-33.9 0L7 473c-9.4-9.4-9.4-24.6 0-33.9l87-87L55 313c-6.9-6.9-8.9-17.2-5.2-26.2s12.5-14.8 22.2-14.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "down-long": { + "aliases": { + "names": [ + "long-arrow-alt-down" + ], + "unicodes": { + "secondary": [ + "10f309" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "long-arrow-down" + ] + }, + "unicode": "f309", + "label": "Down Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M2 334.5c-3.8 8.8-2 19 4.6 26l136 144c4.5 4.8 10.8 7.5 17.4 7.5s12.9-2.7 17.4-7.5l136-144c6.6-7 8.4-17.2 4.6-26s-12.5-14.5-22-14.5l-72 0 0-288c0-17.7-14.3-32-32-32L128 0C110.3 0 96 14.3 96 32l0 288-72 0c-9.6 0-18.2 5.7-22 14.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "download": { + "aliases": { + "unicodes": { + "secondary": [ + "10f019" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "export", + "hard drive", + "save", + "transfer" + ] + }, + "unicode": "f019", + "label": "Download", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V274.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7V32zM64 352c-35.3 0-64 28.7-64 64v32c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V416c0-35.3-28.7-64-64-64H346.5l-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352H64zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "draft2digital": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f396", + "label": "Draft2digital", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 480, + 512 + ], + "width": 480, + "height": 512, + "path": "M480 398.1l-144-82.2v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480zM369.9 371l47.1 27.2-47.1 27.2zM134.2 161.4c0 12.4-10 22.4-22.4 22.4s-22.4-10-22.4-22.4 10-22.4 22.4-22.4 22.4 10.1 22.4 22.4zM82.5 380.5c25.6-27.4 97.7-104.7 150.8-169.9 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dragon": { + "aliases": { + "unicodes": { + "composite": [ + "1f409" + ], + "secondary": [ + "10f6d5" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "dragon", + "fairy tale", + "fantasy", + "fire", + "lizard", + "serpent" + ] + }, + "unicode": "f6d5", + "label": "Dragon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M352 124.5l-51.9-13c-6.5-1.6-11.3-7.1-12-13.8s2.8-13.1 8.7-16.1l40.8-20.4L294.4 28.8c-5.5-4.1-7.8-11.3-5.6-17.9S297.1 0 304 0H416h32 16c30.2 0 58.7 14.2 76.8 38.4l57.6 76.8c6.2 8.3 9.6 18.4 9.6 28.8c0 26.5-21.5 48-48 48H538.5c-17 0-33.3-6.7-45.3-18.7L480 160H448v21.5c0 24.8 12.8 47.9 33.8 61.1l106.6 66.6c32.1 20.1 51.6 55.2 51.6 93.1C640 462.9 590.9 512 530.2 512H496 432 32.3c-3.3 0-6.6-.4-9.6-1.4C13.5 507.8 6 501 2.4 492.1C1 488.7 .2 485.2 0 481.4c-.2-3.7 .3-7.3 1.3-10.7c2.8-9.2 9.6-16.7 18.6-20.4c3-1.2 6.2-2 9.5-2.2L433.3 412c8.3-.7 14.7-7.7 14.7-16.1c0-4.3-1.7-8.4-4.7-11.4l-44.4-44.4c-30-30-46.9-70.7-46.9-113.1V181.5v-57zM512 72.3c0-.1 0-.2 0-.3s0-.2 0-.3v.6zm-1.3 7.4L464.3 68.1c-.2 1.3-.3 2.6-.3 3.9c0 13.3 10.7 24 24 24c10.6 0 19.5-6.8 22.7-16.3zM130.9 116.5c16.3-14.5 40.4-16.2 58.5-4.1l130.6 87V227c0 32.8 8.4 64.8 24 93H112c-6.7 0-12.7-4.2-15-10.4s-.5-13.3 4.6-17.7L171 232.3 18.4 255.8c-7 1.1-13.9-2.6-16.9-9s-1.5-14.1 3.8-18.8L130.9 116.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "draw-polygon": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5ee" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchors", + "lines", + "object", + "render", + "shape" + ] + }, + "unicode": "f5ee", + "label": "Draw Polygon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 151.4V360.6c9.7 5.6 17.8 13.7 23.4 23.4H328.6c0-.1 .1-.2 .1-.3l-4.5-7.9-32-56 0 0c-1.4 .1-2.8 .1-4.2 .1c-35.3 0-64-28.7-64-64s28.7-64 64-64c1.4 0 2.8 0 4.2 .1l0 0 32-56 4.5-7.9-.1-.3H119.4c-5.6 9.7-13.7 17.8-23.4 23.4zM384.3 352c35.2 .2 63.7 28.7 63.7 64c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H119.4c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V151.4C12.9 140.4 0 119.7 0 96C0 60.7 28.7 32 64 32c23.7 0 44.4 12.9 55.4 32H328.6c11.1-19.1 31.7-32 55.4-32c35.3 0 64 28.7 64 64c0 35.3-28.5 63.8-63.7 64l-4.5 7.9-32 56-2.3 4c4.2 8.5 6.5 18 6.5 28.1s-2.3 19.6-6.5 28.1l2.3 4 32 56 4.5 7.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dribbble": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f17d", + "label": "Dribbble", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dropbox": { + "changes": [ + "3.2.0", + "5.0.0", + "5.0.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f16b", + "label": "Dropbox", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 528, + 512 + ], + "width": 528, + "height": 512, + "path": "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "droplet": { + "aliases": { + "names": [ + "tint" + ], + "unicodes": { + "composite": [ + "1f4a7" + ], + "secondary": [ + "10f043" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "color", + "comic", + "drop", + "droplet", + "raindrop", + "sweat", + "waterdrop" + ] + }, + "unicode": "f043", + "label": "Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 512C86 512 0 426 0 320C0 228.8 130.2 57.7 166.6 11.7C172.6 4.2 181.5 0 191.1 0h1.8c9.6 0 18.5 4.2 24.5 11.7C253.8 57.7 384 228.8 384 320c0 106-86 192-192 192zM96 336c0-8.8-7.2-16-16-16s-16 7.2-16 16c0 61.9 50.1 112 112 112c8.8 0 16-7.2 16-16s-7.2-16-16-16c-44.2 0-80-35.8-80-80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "droplet-slash": { + "aliases": { + "names": [ + "tint-slash" + ], + "unicodes": { + "secondary": [ + "10f5c7" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "color", + "drop", + "droplet", + "raindrop", + "waterdrop" + ] + }, + "unicode": "f5c7", + "label": "Droplet Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 512c53.2 0 101.4-21.6 136.1-56.6l-298.3-235C140 257.1 128 292.3 128 320c0 106 86 192 192 192zM505.2 370.7c4.4-16.1 6.8-33.1 6.8-50.7c0-91.2-130.2-262.3-166.6-308.3C339.4 4.2 330.5 0 320.9 0h-1.8c-9.6 0-18.5 4.2-24.5 11.7C277.8 33 240.7 81.3 205.8 136L38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L505.2 370.7zM224 336c0 44.2 35.8 80 80 80c8.8 0 16 7.2 16 16s-7.2 16-16 16c-61.9 0-112-50.1-112-112c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "drum": { + "aliases": { + "unicodes": { + "composite": [ + "1f941" + ], + "secondary": [ + "10f569" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drum", + "drumsticks", + "instrument", + "music", + "percussion", + "snare", + "sound" + ] + }, + "unicode": "f569", + "label": "Drum", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M501.2 76.1c11.1-7.3 14.2-22.1 6.9-33.2s-22.1-14.2-33.2-6.9L370.2 104.5C335.8 98.7 297 96 256 96C114.6 96 0 128 0 208V368c0 31.3 27.4 58.8 72 78.7V344c0-13.3 10.7-24 24-24s24 10.7 24 24V463.4c33 8.9 71.1 14.5 112 16.1V376c0-13.3 10.7-24 24-24s24 10.7 24 24V479.5c40.9-1.6 79-7.2 112-16.1V344c0-13.3 10.7-24 24-24s24 10.7 24 24V446.7c44.6-19.9 72-47.4 72-78.7V208c0-41.1-30.2-69.5-78.8-87.4l67.9-44.5zM307.4 145.6l-64.6 42.3c-11.1 7.3-14.2 22.1-6.9 33.2s22.1 14.2 33.2 6.9l111.1-72.8c14.7 3.2 27.9 7 39.4 11.5C458.4 181.8 464 197.4 464 208c0 .8-2.7 17.2-46 35.9C379.1 260.7 322 272 256 272s-123.1-11.3-162-28.1C50.7 225.2 48 208.8 48 208c0-10.6 5.6-26.2 44.4-41.3C130.6 151.9 187.8 144 256 144c18 0 35.1 .5 51.4 1.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "drum-steelpan": { + "aliases": { + "unicodes": { + "secondary": [ + "10f56a" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calypso", + "instrument", + "music", + "percussion", + "reggae", + "snare", + "sound", + "steel", + "tropical" + ] + }, + "unicode": "f56a", + "label": "Drum Steelpan", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 32c159.1 0 288 48 288 128V352c0 80-128.9 128-288 128S0 432 0 352V160C0 80 128.9 32 288 32zM528 160c0-9.9-8-29.9-55-49.8c-18.6-7.9-40.9-14.4-66-19.4l-27.8 43.6c-7.3 11.5-11.2 24.8-11.2 38.4c0 17.5 6.4 34.4 18.1 47.5l9.8 11c29.8-5.2 55.9-12.5 77.2-21.5c47.1-19.9 55-39.9 55-49.8zM349.2 237.3c-8-26.2-32.4-45.3-61.2-45.3s-53.3 19.1-61.2 45.3c19.4 1.7 39.9 2.7 61.2 2.7s41.8-.9 61.2-2.7zM169 90.8c-25.2 5-47.4 11.6-66 19.4C56 130.1 48 150.1 48 160s8 29.9 55 49.8c21.3 9 47.4 16.3 77.2 21.5l9.8-11c11.6-13.1 18.1-30 18.1-47.5c0-13.6-3.9-26.9-11.2-38.4L169 90.8zm56.3-8C224.5 87 224 91.5 224 96c0 35.3 28.7 64 64 64s64-28.7 64-64c0-4.5-.5-9-1.4-13.2C330.8 81 309.8 80 288 80s-42.8 1-62.6 2.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "drumstick-bite": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6d7" + ] + } + }, + "changes": [ + "5.4.0", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bone", + "chicken", + "leg", + "meat", + "poultry", + "turkey" + ] + }, + "unicode": "f6d7", + "label": "Drumstick Bite", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 265.2c0 8.5-3.4 16.6-9.4 22.6l-26.8 26.8c-12.3 12.3-32.5 11.4-49.4 7.2C69.8 320.6 65 320 60 320c-33.1 0-60 26.9-60 60s26.9 60 60 60c6.3 0 12 5.7 12 12c0 33.1 26.9 60 60 60s60-26.9 60-60c0-5-.6-9.8-1.8-14.5c-4.2-16.9-5.2-37.1 7.2-49.4l26.8-26.8c6-6 14.1-9.4 22.6-9.4H336c6.3 0 12.4-.3 18.5-1c11.9-1.2 16.4-15.5 10.8-26c-8.5-15.8-13.3-33.8-13.3-53c0-61.9 50.1-112 112-112c8 0 15.7 .8 23.2 2.4c11.7 2.5 24.1-5.9 22-17.6C494.5 62.5 422.5 0 336 0C238.8 0 160 78.8 160 176v89.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "drupal": { + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a9", + "label": "Drupal Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M303.973,108.136C268.2,72.459,234.187,38.35,224.047,0c-9.957,38.35-44.25,72.459-80.019,108.136C90.467,161.7,29.716,222.356,29.716,313.436c-2.337,107.3,82.752,196.18,190.053,198.517S415.948,429.2,418.285,321.9q.091-4.231,0-8.464C418.285,222.356,357.534,161.7,303.973,108.136Zm-174.326,223a130.282,130.282,0,0,0-15.211,24.153,4.978,4.978,0,0,1-3.319,2.766h-1.659c-4.333,0-9.219-8.481-9.219-8.481h0c-1.29-2.028-2.489-4.149-3.687-6.361l-.83-1.752c-11.247-25.72-1.475-62.318-1.475-62.318h0a160.585,160.585,0,0,1,23.231-49.873A290.8,290.8,0,0,1,138.5,201.613l9.219,9.219,43.512,44.434a4.979,4.979,0,0,1,0,6.638L145.78,312.33h0Zm96.612,127.311a67.2,67.2,0,0,1-49.781-111.915c14.2-16.871,31.528-33.464,50.334-55.313,22.309,23.785,36.875,40.1,51.164,57.986a28.413,28.413,0,0,1,2.95,4.425,65.905,65.905,0,0,1,11.984,37.981,66.651,66.651,0,0,1-66.466,66.836ZM352.371,351.6h0a7.743,7.743,0,0,1-6.176,5.347H344.9a11.249,11.249,0,0,1-6.269-5.07h0a348.21,348.21,0,0,0-39.456-48.952L281.387,284.49,222.3,223.185a497.888,497.888,0,0,1-35.4-36.322,12.033,12.033,0,0,0-.922-1.382,35.4,35.4,0,0,1-4.7-9.219V174.51a31.346,31.346,0,0,1,9.218-27.656c11.432-11.431,22.955-22.954,33.833-34.939,11.984,13.275,24.8,26,37.428,38.627h0a530.991,530.991,0,0,1,69.6,79.1,147.494,147.494,0,0,1,27.011,83.8A134.109,134.109,0,0,1,352.371,351.6Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dumbbell": { + "aliases": { + "unicodes": { + "secondary": [ + "10f44b" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exercise", + "gym", + "strength", + "weight", + "weight-lifting" + ] + }, + "unicode": "f44b", + "label": "Dumbbell", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321812, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M112 96c0-17.7 14.3-32 32-32h16c17.7 0 32 14.3 32 32V224v64V416c0 17.7-14.3 32-32 32H144c-17.7 0-32-14.3-32-32V384H64c-17.7 0-32-14.3-32-32V288c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32h48V96zm416 0v32h48c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32v64c0 17.7-14.3 32-32 32H528v32c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32V288 224 96c0-17.7 14.3-32 32-32h16c17.7 0 32 14.3 32 32zM416 224v64H224V224H416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dumpster": { + "aliases": { + "unicodes": { + "secondary": [ + "10f793" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alley", + "bin", + "commercial", + "trash", + "waste" + ] + }, + "unicode": "f793", + "label": "Dumpster", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M49.7 32c-10.5 0-19.8 6.9-22.9 16.9L.9 133c-.6 2-.9 4.1-.9 6.1C0 150.7 9.3 160 20.9 160h94L140.5 32H49.7zM272 160V32H173.1L147.5 160H272zm32 0H428.5L402.9 32H304V160zm157.1 0h94c11.5 0 20.9-9.3 20.9-20.9c0-2.1-.3-4.1-.9-6.1L549.2 48.9C546.1 38.9 536.8 32 526.3 32H435.5l25.6 128zM32 192l4 32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H44L64 448c0 17.7 14.3 32 32 32s32-14.3 32-32H448c0 17.7 14.3 32 32 32s32-14.3 32-32l20-160h12c17.7 0 32-14.3 32-32s-14.3-32-32-32h-4l4-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dumpster-fire": { + "aliases": { + "unicodes": { + "secondary": [ + "10f794" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alley", + "bin", + "commercial", + "danger", + "dangerous", + "euphemism", + "flame", + "heat", + "hot", + "trash", + "waste" + ] + }, + "unicode": "f794", + "label": "Dumpster Fire", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M49.7 32c-10.5 0-19.8 6.9-22.9 16.9L.9 133c-.6 2-.9 4.1-.9 6.1C0 150.7 9.3 160 20.9 160h94L140.5 32H49.7zM272 160V32H173.1L147.5 160H272zm32 0h58c15.1-18.1 32.1-35.7 50.5-52.1c1.5-1.4 3.2-2.6 4.8-3.8L402.9 32H304V160zm209.9-23.7c17.4-15.8 43.9-16.2 61.7-1.2c-.1-.7-.3-1.4-.5-2.1L549.2 48.9C546.1 38.9 536.8 32 526.3 32H435.5l12.8 64.2c9.6 1 19 4.9 26.6 11.8c11.7 10.6 23 21.6 33.9 33.1c1.6-1.6 3.3-3.2 5-4.8zM325.2 210.7c3.8-6.2 7.9-12.5 12.3-18.7H32l4 32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H44L64 448c0 17.7 14.3 32 32 32s32-14.3 32-32H337.6c-31-34.7-49.6-80.6-49.6-129.9c0-35.2 16.3-73.6 37.2-107.4zm128.4-78.9c-2.8-2.5-6.3-3.7-9.8-3.8c-3.6 0-7.2 1.2-10 3.7c-33.2 29.7-61.4 63.4-81.4 95.8c-19.7 31.9-32.4 66.2-32.4 92.6C320 407.9 390.3 480 480 480c88.7 0 160-72 160-159.8c0-20.2-9.6-50.9-24.2-79c-14.8-28.5-35.7-58.5-60.4-81.1c-5.6-5.1-14.4-5.2-20 0c-9.6 8.8-18.6 19.6-26.5 29.5c-17.3-20.7-35.8-39.9-55.5-57.7zM530 401c-15 10-31 15-49 15c-45 0-81-29-81-78c0-24 15-45 45-82c4 5 62 79 62 79l36-42c3 4 5 8 7 12c18 33 10 75-20 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dungeon": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6d9" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "building", + "d&d", + "dnd", + "door", + "entrance", + "fantasy", + "gate" + ] + }, + "unicode": "f6d9", + "label": "Dungeon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M336.6 156.5c1.3 1.1 2.7 2.2 3.9 3.3c9.3 8.2 23 10.5 33.4 3.6l67.6-45.1c11.4-7.6 14.2-23.2 5.1-33.4C430 66.6 410.9 50.6 389.7 37.6c-11.9-7.3-26.9-1.4-32.1 11.6l-30.5 76.2c-4.5 11.1 .2 23.6 9.5 31.2zM328 36.8c5.1-12.8-1.6-27.4-15-30.5C294.7 2.2 275.6 0 256 0s-38.7 2.2-57 6.4C185.5 9.4 178.8 24 184 36.8l30.3 75.8c4.5 11.3 16.8 17.2 29 16c4.2-.4 8.4-.6 12.7-.6s8.6 .2 12.7 .6c12.1 1.2 24.4-4.7 29-16L328 36.8zM65.5 85c-9.1 10.2-6.3 25.8 5.1 33.4l67.6 45.1c10.3 6.9 24.1 4.6 33.4-3.6c1.3-1.1 2.6-2.3 4-3.3c9.3-7.5 13.9-20.1 9.5-31.2L154.4 49.2c-5.2-12.9-20.3-18.8-32.1-11.6C101.1 50.6 82 66.6 65.5 85zm314 137.1c.9 3.3 1.7 6.6 2.3 10c2.5 13 13 23.9 26.2 23.9h80c13.3 0 24.1-10.8 22.9-24c-2.5-27.2-9.3-53.2-19.7-77.3c-5.5-12.9-21.4-16.6-33.1-8.9l-68.6 45.7c-9.8 6.5-13.2 19.2-10 30.5zM53.9 145.8c-11.6-7.8-27.6-4-33.1 8.9C10.4 178.8 3.6 204.8 1.1 232c-1.2 13.2 9.6 24 22.9 24h80c13.3 0 23.8-10.8 26.2-23.9c.6-3.4 1.4-6.7 2.3-10c3.1-11.4-.2-24-10-30.5L53.9 145.8zM104 288H24c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V312c0-13.3-10.7-24-24-24zm304 0c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V312c0-13.3-10.7-24-24-24H408zM24 416c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V440c0-13.3-10.7-24-24-24H24zm384 0c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V440c0-13.3-10.7-24-24-24H408zM272 192c0-8.8-7.2-16-16-16s-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V192zm-64 32c0-8.8-7.2-16-16-16s-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V224zm128 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dyalog": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f399", + "label": "Dyalog", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 416, + 512 + ], + "width": 416, + "height": 512, + "path": "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "e": { + "aliases": { + "unicodes": { + "composite": [ + "65" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter E", + "Latin Small Letter E", + "letter" + ] + }, + "unicode": "45", + "label": "E", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V256 416c0 35.3 28.7 64 64 64H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ear-deaf": { + "aliases": { + "names": [ + "deaf", + "deafness", + "hard-of-hearing" + ], + "unicodes": { + "secondary": [ + "10f2a4" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ear", + "hearing", + "sign language" + ] + }, + "unicode": "f2a4", + "label": "Ear Deaf", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.6 54.6l-40 40c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l40-40c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3zm-320 320l-128 128c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l128-128c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3zM240 128c-57.6 0-105.1 43.6-111.3 99.5c-1.9 17.6-17.8 30.2-35.3 28.3s-30.2-17.8-28.3-35.3C74.8 132.5 149.4 64 240 64c97.2 0 176 78.8 176 176c0 46-17.7 87.9-46.6 119.3c-12 13-17.4 24.8-17.4 34.7V400c0 61.9-50.1 112-112 112c-17.7 0-32-14.3-32-32s14.3-32 32-32c26.5 0 48-21.5 48-48v-6.1c0-32.9 17.4-59.6 34.4-78c18.4-20 29.6-46.6 29.6-75.9c0-61.9-50.1-112-112-112zm0 80c-17.7 0-32 14.3-32 32c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-44.2 35.8-80 80-80s80 35.8 80 80c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-17.7-14.3-32-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ear-listen": { + "aliases": { + "names": [ + "assistive-listening-systems" + ], + "unicodes": { + "secondary": [ + "10f2a2" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "amplify", + "audio", + "deaf", + "ear", + "headset", + "hearing", + "sound" + ] + }, + "unicode": "f2a2", + "label": "Ear Listen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M398.3 3.4c-15.8-7.9-35-1.5-42.9 14.3c-7.9 15.8-1.5 34.9 14.2 42.9l.4 .2c.4 .2 1.1 .6 2.1 1.2c2 1.2 5 3 8.7 5.6c7.5 5.2 17.6 13.2 27.7 24.2C428.5 113.4 448 146 448 192c0 17.7 14.3 32 32 32s32-14.3 32-32c0-66-28.5-113.4-56.5-143.7C441.6 33.2 427.7 22.2 417.3 15c-5.3-3.7-9.7-6.4-13-8.3c-1.6-1-3-1.7-4-2.2c-.5-.3-.9-.5-1.2-.7l-.4-.2-.2-.1-.1 0 0 0c0 0 0 0-14.3 28.6L398.3 3.4zM128.7 227.5c6.2-56 53.7-99.5 111.3-99.5c61.9 0 112 50.1 112 112c0 29.3-11.2 55.9-29.6 75.9c-17 18.4-34.4 45.1-34.4 78V400c0 26.5-21.5 48-48 48c-17.7 0-32 14.3-32 32s14.3 32 32 32c61.9 0 112-50.1 112-112v-6.1c0-9.8 5.4-21.7 17.4-34.7C398.3 327.9 416 286 416 240c0-97.2-78.8-176-176-176C149.4 64 74.8 132.5 65.1 220.5c-1.9 17.6 10.7 33.4 28.3 35.3s33.4-10.7 35.3-28.3zM32 512a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM192 352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-64-64c-12.5-12.5-32.8-12.5-45.3 0zM208 240c0-17.7 14.3-32 32-32s32 14.3 32 32c0 13.3 10.7 24 24 24s24-10.7 24-24c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 13.3 10.7 24 24 24s24-10.7 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "earlybirds": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f39a", + "label": "Earlybirds", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 480, + 512 + ], + "width": 480, + "height": 512, + "path": "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "earth-africa": { + "aliases": { + "names": [ + "globe-africa" + ], + "unicodes": { + "composite": [ + "1f30d" + ], + "secondary": [ + "10f57c" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "africa", + "all", + "country", + "earth", + "europe", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "unicode": "f57c", + "label": "Earth Africa", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M177.8 63.2l10 17.4c2.8 4.8 4.2 10.3 4.2 15.9v41.4c0 3.9 1.6 7.7 4.3 10.4c6.2 6.2 16.5 5.7 22-1.2l13.6-17c4.7-5.9 12.9-7.7 19.6-4.3l15.2 7.6c3.4 1.7 7.2 2.6 11 2.6c6.5 0 12.8-2.6 17.4-7.2l3.9-3.9c2.9-2.9 7.3-3.6 11-1.8l29.2 14.6c7.8 3.9 12.6 11.8 12.6 20.5c0 10.5-7.1 19.6-17.3 22.2l-35.4 8.8c-7.4 1.8-15.1 1.5-22.3-.9l-32-10.7c-3.3-1.1-6.7-1.7-10.2-1.7c-7 0-13.8 2.3-19.4 6.5L176 212c-10.1 7.6-16 19.4-16 32v28c0 26.5 21.5 48 48 48h32c8.8 0 16 7.2 16 16v48c0 17.7 14.3 32 32 32c10.1 0 19.6-4.7 25.6-12.8l25.6-34.1c8.3-11.1 12.8-24.6 12.8-38.4V318.6c0-3.9 2.6-7.3 6.4-8.2l5.3-1.3c11.9-3 20.3-13.7 20.3-26c0-7.1-2.8-13.9-7.8-18.9l-33.5-33.5c-3.7-3.7-3.7-9.7 0-13.4c5.7-5.7 14.1-7.7 21.8-5.1l14.1 4.7c12.3 4.1 25.7-1.5 31.5-13c3.5-7 11.2-10.8 18.9-9.2l27.4 5.5C432 112.4 351.5 48 256 48c-27.7 0-54 5.4-78.2 15.2zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "earth-americas": { + "aliases": { + "names": [ + "earth", + "earth-america", + "globe-americas" + ], + "unicodes": { + "composite": [ + "1f30e" + ], + "secondary": [ + "10f57d" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "america", + "country", + "earth", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "unicode": "f57d", + "label": "Earth Americas", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M57.7 193l9.4 16.4c8.3 14.5 21.9 25.2 38 29.8L163 255.7c17.2 4.9 29 20.6 29 38.5v39.9c0 11 6.2 21 16 25.9s16 14.9 16 25.9v39c0 15.6 14.9 26.9 29.9 22.6c16.1-4.6 28.6-17.5 32.7-33.8l2.8-11.2c4.2-16.9 15.2-31.4 30.3-40l8.1-4.6c15-8.5 24.2-24.5 24.2-41.7v-8.3c0-12.7-5.1-24.9-14.1-33.9l-3.9-3.9c-9-9-21.2-14.1-33.9-14.1H257c-11.1 0-22.1-2.9-31.8-8.4l-34.5-19.7c-4.3-2.5-7.6-6.5-9.2-11.2c-3.2-9.6 1.1-20 10.2-24.5l5.9-3c6.6-3.3 14.3-3.9 21.3-1.5l23.2 7.7c8.2 2.7 17.2-.4 21.9-7.5c4.7-7 4.2-16.3-1.2-22.8l-13.6-16.3c-10-12-9.9-29.5 .3-41.3l15.7-18.3c8.8-10.3 10.2-25 3.5-36.7l-2.4-4.2c-3.5-.2-6.9-.3-10.4-.3C163.1 48 84.4 108.9 57.7 193zM464 256c0-36.8-9.6-71.4-26.4-101.5L412 164.8c-15.7 6.3-23.8 23.8-18.5 39.8l16.9 50.7c3.5 10.4 12 18.3 22.6 20.9l29.1 7.3c1.2-9 1.8-18.2 1.8-27.5zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "earth-asia": { + "aliases": { + "names": [ + "globe-asia" + ], + "unicodes": { + "composite": [ + "1f30f" + ], + "secondary": [ + "10f57e" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "asia", + "australia", + "country", + "earth", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "unicode": "f57e", + "label": "Earth Asia", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M51.7 295.1l31.7 6.3c7.9 1.6 16-.9 21.7-6.6l15.4-15.4c11.6-11.6 31.1-8.4 38.4 6.2l9.3 18.5c4.8 9.6 14.6 15.7 25.4 15.7c15.2 0 26.1-14.6 21.7-29.2l-6-19.9c-4.6-15.4 6.9-30.9 23-30.9h2.3c13.4 0 25.9-6.7 33.3-17.8l10.7-16.1c5.6-8.5 5.3-19.6-.8-27.7l-16.1-21.5c-10.3-13.7-3.3-33.5 13.4-37.7l17-4.3c7.5-1.9 13.6-7.2 16.5-14.4l16.4-40.9C303.4 52.1 280.2 48 256 48C141.1 48 48 141.1 48 256c0 13.4 1.3 26.5 3.7 39.1zm407.7 4.6c-3-.3-6-.1-9 .8l-15.8 4.4c-6.7 1.9-13.8-.9-17.5-6.7l-2-3.1c-6-9.4-16.4-15.1-27.6-15.1s-21.6 5.7-27.6 15.1l-6.1 9.5c-1.4 2.2-3.4 4.1-5.7 5.3L312 330.1c-18.1 10.1-25.5 32.4-17 51.3l5.5 12.4c8.6 19.2 30.7 28.5 50.5 21.1l2.6-1c10-3.7 21.3-2.2 29.9 4.1l1.5 1.1c37.2-29.5 64.1-71.4 74.4-119.5zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm144.5 92.1c-2.1 8.6 3.1 17.3 11.6 19.4l32 8c8.6 2.1 17.3-3.1 19.4-11.6s-3.1-17.3-11.6-19.4l-32-8c-8.6-2.1-17.3 3.1-19.4 11.6zm92-20c-2.1 8.6 3.1 17.3 11.6 19.4s17.3-3.1 19.4-11.6l8-32c2.1-8.6-3.1-17.3-11.6-19.4s-17.3 3.1-19.4 11.6l-8 32zM343.2 113.7c-7.9-4-17.5-.7-21.5 7.2l-16 32c-4 7.9-.7 17.5 7.2 21.5s17.5 .7 21.5-7.2l16-32c4-7.9 .7-17.5-7.2-21.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "earth-europe": { + "aliases": { + "names": [ + "globe-europe" + ], + "unicodes": { + "secondary": [ + "10f7a2" + ] + } + }, + "changes": [ + "5.6.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "country", + "earth", + "europe", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "unicode": "f7a2", + "label": "Earth Europe", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M266.3 48.3L232.5 73.6c-5.4 4-8.5 10.4-8.5 17.1v9.1c0 6.8 5.5 12.3 12.3 12.3c2.4 0 4.8-.7 6.8-2.1l41.8-27.9c2-1.3 4.4-2.1 6.8-2.1h1c6.2 0 11.3 5.1 11.3 11.3c0 3-1.2 5.9-3.3 8l-19.9 19.9c-5.8 5.8-12.9 10.2-20.7 12.8l-26.5 8.8c-5.8 1.9-9.6 7.3-9.6 13.4c0 3.7-1.5 7.3-4.1 10l-17.9 17.9c-6.4 6.4-9.9 15-9.9 24v4.3c0 16.4 13.6 29.7 29.9 29.7c11 0 21.2-6.2 26.1-16l4-8.1c2.4-4.8 7.4-7.9 12.8-7.9c4.5 0 8.7 2.1 11.4 5.7l16.3 21.7c2.1 2.9 5.5 4.5 9.1 4.5c8.4 0 13.9-8.9 10.1-16.4l-1.1-2.3c-3.5-7 0-15.5 7.5-18l21.2-7.1c7.6-2.5 12.7-9.6 12.7-17.6c0-10.3 8.3-18.6 18.6-18.6H400c8.8 0 16 7.2 16 16s-7.2 16-16 16H379.3c-7.2 0-14.2 2.9-19.3 8l-4.7 4.7c-2.1 2.1-3.3 5-3.3 8c0 6.2 5.1 11.3 11.3 11.3h11.3c6 0 11.8 2.4 16 6.6l6.5 6.5c1.8 1.8 2.8 4.3 2.8 6.8s-1 5-2.8 6.8l-7.5 7.5C386 262 384 266.9 384 272s2 10 5.7 13.7L408 304c10.2 10.2 24.1 16 38.6 16H454c6.5-20.2 10-41.7 10-64c0-111.4-87.6-202.4-197.7-207.7zm172 307.9c-3.7-2.6-8.2-4.1-13-4.1c-6 0-11.8-2.4-16-6.6L396 332c-7.7-7.7-18-12-28.9-12c-9.7 0-19.2-3.5-26.6-9.8L314 287.4c-11.6-9.9-26.4-15.4-41.6-15.4H251.4c-12.6 0-25 3.7-35.5 10.7L188.5 301c-17.8 11.9-28.5 31.9-28.5 53.3v3.2c0 17 6.7 33.3 18.7 45.3l16 16c8.5 8.5 20 13.3 32 13.3H248c13.3 0 24 10.7 24 24c0 2.5 .4 5 1.1 7.3c71.3-5.8 132.5-47.6 165.2-107.2zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM187.3 100.7c-6.2-6.2-16.4-6.2-22.6 0l-32 32c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l32-32c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "earth-oceania": { + "aliases": { + "names": [ + "globe-oceania" + ] + }, + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "australia", + "country", + "earth", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "melanesia", + "micronesia", + "new zealand", + "online", + "place", + "planet", + "polynesia", + "translate", + "travel", + "world" + ] + }, + "unicode": "e47b", + "label": "Earth Oceania", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM208.6 357.3l-39-13.5c-6.5-2.2-13.6-2.3-20.1-.3l-15.3 4.9c-18.5 5.9-38.5-2.4-47.5-19.5l-3.3-6.2c-10.6-20.1-2.3-45 18.2-54.7l35.3-16.8c2.3-1.1 4.4-2.8 5.9-4.8l5.3-7c7.2-9.6 18.6-15.3 30.6-15.3s23.4 5.7 30.6 15.3l4.6 6.1c2 2.6 4.9 4.5 8.1 5.1c7.8 1.6 15.7-1.5 20.4-7.9l10.4-14.2c2-2.8 5.3-4.4 8.7-4.4c4.4 0 8.4 2.7 10 6.8l10.1 25.9c2.8 7.2 6.7 14 11.5 20.2L311 299.8c5.8 7.4 9 16.6 9 26s-3.2 18.6-9 26L299 367.2c-8.3 10.6-21 16.8-34.4 16.8c-8.4 0-16.6-2.4-23.7-7l-25.4-16.4c-2.2-1.4-4.5-2.5-6.9-3.4zm65.2-214.8L296 164.7c10.1 10.1 2.9 27.3-11.3 27.3H254.8c-5.6 0-11.1-1.2-16.2-3.4l-42.8-19c-14.3-6.3-11.9-27.3 3.4-30.3l38.5-7.7c13.1-2.6 26.7 1.5 36.1 10.9zM248 432c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H264c-8.8 0-16-7.2-16-16zM431.2 298.9l8 24c2.8 8.4-1.7 17.4-10.1 20.2s-17.4-1.7-20.2-10.1l-8-24c-2.8-8.4 1.7-17.4 10.1-20.2s17.4 1.7 20.2 10.1zm-19.9 80.4l-32 32c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l32-32c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ebay": { + "changes": [ + "5.0.11", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f4", + "label": "eBay", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M606 189.5l-54.8 109.9-54.9-109.9h-37.5l10.9 20.6c-11.5-19-35.9-26-63.3-26-31.8 0-67.9 8.7-71.5 43.1h33.7c1.4-13.8 15.7-21.8 35-21.8 26 0 41 9.6 41 33v3.4c-12.7 0-28 .1-41.7.4-42.4.9-69.6 10-76.7 34.4 1-5.2 1.5-10.6 1.5-16.2 0-52.1-39.7-76.2-75.4-76.2-21.3 0-43 5.5-58.7 24.2v-80.6h-32.1v169.5c0 10.3-.6 22.9-1.1 33.1h31.5c.7-6.3 1.1-12.9 1.1-19.5 13.6 16.6 35.4 24.9 58.7 24.9 36.9 0 64.9-21.9 73.3-54.2-.5 2.8-.7 5.8-.7 9 0 24.1 21.1 45 60.6 45 26.6 0 45.8-5.7 61.9-25.5 0 6.6.3 13.3 1.1 20.2h29.8c-.7-8.2-1-17.5-1-26.8v-65.6c0-9.3-1.7-17.2-4.8-23.8l61.5 116.1-28.5 54.1h35.9L640 189.5zM243.7 313.8c-29.6 0-50.2-21.5-50.2-53.8 0-32.4 20.6-53.8 50.2-53.8 29.8 0 50.2 21.4 50.2 53.8 0 32.3-20.4 53.8-50.2 53.8zm200.9-47.3c0 30-17.9 48.4-51.6 48.4-25.1 0-35-13.4-35-25.8 0-19.1 18.1-24.4 47.2-25.3 13.1-.5 27.6-.6 39.4-.6zm-411.9 1.6h128.8v-8.5c0-51.7-33.1-75.4-78.4-75.4-56.8 0-83 30.8-83 77.6 0 42.5 25.3 74 82.5 74 31.4 0 68-11.7 74.4-46.1h-33.1c-12 35.8-87.7 36.7-91.2-21.6zm95-21.4H33.3c6.9-56.6 92.1-54.7 94.4 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "edge": { + "changes": [ + "4.5.0", + "5.0.0", + "5.12.1", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "ie" + ] + }, + "unicode": "f282", + "label": "Edge Browser", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M120.1 37.44C161.1 12.23 207.7-.7753 255 .0016C423 .0016 512 123.8 512 219.5C511.9 252.2 499 283.4 476.1 306.7C453.2 329.9 422.1 343.2 389.4 343.7C314.2 343.7 297.9 320.6 297.9 311.7C297.9 307.9 299.1 305.5 302.7 302.3L303.7 301.1L304.1 299.5C314.6 288 320 273.3 320 257.9C320 179.2 237.8 115.2 136 115.2C98.46 114.9 61.46 124.1 28.48 142.1C55.48 84.58 111.2 44.5 119.8 38.28C120.6 37.73 120.1 37.44 120.1 37.44V37.44zM135.7 355.5C134.3 385.5 140.3 415.5 152.1 442.7C165.7 469.1 184.8 493.7 208.6 512C149.1 500.5 97.11 468.1 59.2 422.7C21.12 376.3 0 318.4 0 257.9C0 206.7 62.4 163.5 136 163.5C172.6 162.9 208.4 174.4 237.8 196.2L234.2 197.4C182.7 215 135.7 288.1 135.7 355.5V355.5zM469.8 400L469.1 400.1C457.3 418.9 443.2 435.2 426.9 449.6C396.1 477.6 358.8 495.1 318.1 499.5C299.5 499.8 281.3 496.3 264.3 488.1C238.7 477.8 217.2 458.1 202.7 435.1C188.3 411.2 181.6 383.4 183.7 355.5C183.1 335.4 189.1 315.2 198.7 297.3C212.6 330.4 236.2 358.6 266.3 378.1C296.4 397.6 331.8 407.6 367.7 406.7C398.7 407 429.8 400 457.9 386.2L459.8 385.3C463.7 383 467.5 381.4 471.4 385.3C475.9 390.2 473.2 394.5 470.2 399.3C470 399.5 469.9 399.8 469.8 400V400z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "edge-legacy": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e078", + "label": "Edge Legacy Browser", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M25.71,228.16l.35-.48c0,.16,0,.32-.07.48Zm460.58,15.51c0-44-7.76-84.46-28.81-122.4C416.5,47.88,343.91,8,258.89,8,119,7.72,40.62,113.21,26.06,227.68c42.42-61.31,117.07-121.38,220.37-125,0,0,109.67,0,99.42,105H170c6.37-37.39,18.55-59,34.34-78.93-75.05,34.9-121.85,96.1-120.75,188.32.83,71.45,50.13,144.84,120.75,172,83.35,31.84,192.77,7.2,240.13-21.33V363.31C363.6,419.8,173.6,424.23,172.21,295.74H486.29V243.67Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "egg": { + "aliases": { + "unicodes": { + "composite": [ + "1f95a" + ], + "secondary": [ + "10f7fb" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breakfast", + "chicken", + "easter", + "egg", + "food", + "shell", + "yolk" + ] + }, + "unicode": "f7fb", + "label": "Egg", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 496C86 496 0 394 0 288C0 176 64 16 192 16s192 160 192 272c0 106-86 208-192 208zM154.8 134c6.5-6 7-16.1 1-22.6s-16.1-7-22.6-1c-23.9 21.8-41.1 52.7-52.3 84.2C69.7 226.1 64 259.7 64 288c0 8.8 7.2 16 16 16s16-7.2 16-16c0-24.5 5-54.4 15.1-82.8c10.1-28.5 25-54.1 43.7-71.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "eject": { + "aliases": { + "unicodes": { + "composite": [ + "23cf" + ], + "secondary": [ + "10f052" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abort", + "cancel", + "cd", + "discharge", + "eject", + "eject button" + ] + }, + "unicode": "f052", + "label": "Eject", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 32c13.5 0 26.3 5.6 35.4 15.6l176 192c12.9 14 16.2 34.3 8.6 51.8S419 320 400 320H48c-19 0-36.3-11.2-43.9-28.7s-4.3-37.7 8.6-51.8l176-192C197.7 37.6 210.5 32 224 32zM0 432c0-26.5 21.5-48 48-48H400c26.5 0 48 21.5 48 48s-21.5 48-48 48H48c-26.5 0-48-21.5-48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "elementor": { + "changes": [ + "5.0.3", + "6.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f430", + "label": "Elementor", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M.361 256C.361 397 114 511 255 511C397 511 511 397 511 256C511 116 397 2.05 255 2.05C114 2.05 .361 116 .361 256zM192 150V363H149V150H192zM234 150H362V193H234V150zM362 235V278H234V235H362zM234 320H362V363H234V320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "elevator": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accessibility", + "elevator", + "hoist", + "lift", + "users-people" + ] + }, + "unicode": "e16d", + "label": "Elevator", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M132.7 4.7l-64 64c-4.6 4.6-5.9 11.5-3.5 17.4s8.3 9.9 14.8 9.9H208c6.5 0 12.3-3.9 14.8-9.9s1.1-12.9-3.5-17.4l-64-64c-6.2-6.2-16.4-6.2-22.6 0zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H64zm96 96a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM80 400c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v16c0 17.7-14.3 32-32 32H112c-17.7 0-32-14.3-32-32V400zm192 0c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v16c0 17.7-14.3 32-32 32H304c-17.7 0-32-14.3-32-32V400zm32-128a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM356.7 91.3c6.2 6.2 16.4 6.2 22.6 0l64-64c4.6-4.6 5.9-11.5 3.5-17.4S438.5 0 432 0H304c-6.5 0-12.3 3.9-14.8 9.9s-1.1 12.9 3.5 17.4l64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ellipsis": { + "aliases": { + "names": [ + "ellipsis-h" + ], + "unicodes": { + "secondary": [ + "10f141" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dots", + "drag", + "kebab", + "list", + "menu", + "nav", + "navigation", + "ol", + "pacman", + "reorder", + "settings", + "ul" + ] + }, + "unicode": "f141", + "label": "Ellipsis", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 256a56 56 0 1 1 112 0A56 56 0 1 1 0 256zm160 0a56 56 0 1 1 112 0 56 56 0 1 1 -112 0zm216-56a56 56 0 1 1 0 112 56 56 0 1 1 0-112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ellipsis-vertical": { + "aliases": { + "names": [ + "ellipsis-v" + ], + "unicodes": { + "secondary": [ + "10f142" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dots", + "drag", + "kebab", + "list", + "menu", + "nav", + "navigation", + "ol", + "reorder", + "settings", + "ul" + ] + }, + "unicode": "f142", + "label": "Ellipsis Vertical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 128, + 512 + ], + "width": 128, + "height": 512, + "path": "M56 472a56 56 0 1 1 0-112 56 56 0 1 1 0 112zm0-160a56 56 0 1 1 0-112 56 56 0 1 1 0 112zM0 96a56 56 0 1 1 112 0A56 56 0 1 1 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ello": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5f1", + "label": "Ello", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm143.84 285.2C375.31 358.51 315.79 404.8 248 404.8s-127.31-46.29-143.84-111.6c-1.65-7.44 2.48-15.71 9.92-17.36 7.44-1.65 15.71 2.48 17.36 9.92 14.05 52.91 62 90.11 116.56 90.11s102.51-37.2 116.56-90.11c1.65-7.44 9.92-12.4 17.36-9.92 7.44 1.65 12.4 9.92 9.92 17.36z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ember": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f423", + "label": "Ember", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1-44.2-27.6-49-24c-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-11.4-6.8-21.3-.5-27.2 5.3 13.6-17.3 46.4-64.2 36.9-105.2-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5-28.5 18.8-28.5 18.8-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7 16.4 1 36.5-47.9c11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7 30.9 5.3 30.9 5.3 15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "empire": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d1", + "label": "Galactic Empire", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "envelope": { + "aliases": { + "unicodes": { + "composite": [ + "1f582", + "2709", + "f003" + ], + "secondary": [ + "10f0e0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Back of Envelope", + "e-mail", + "email", + "envelope", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "unicode": "f0e0", + "label": "Envelope", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 112c-8.8 0-16 7.2-16 16v22.1L220.5 291.7c20.7 17 50.4 17 71.1 0L464 150.1V128c0-8.8-7.2-16-16-16H64zM48 212.2V384c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V212.2L322 328.8c-38.4 31.5-93.7 31.5-132 0L48 212.2zM0 128C0 92.7 28.7 64 64 64H448c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "envelope-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "check", + "email", + "envelope", + "mail", + "not affected", + "ok", + "okay", + "read", + "sent" + ] + }, + "unicode": "e4e8", + "label": "Envelope Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0l57.4-43c23.9-59.8 79.7-103.3 146.3-109.8l13.9-10.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176V384c0 35.3 28.7 64 64 64H360.2C335.1 417.6 320 378.5 320 336c0-5.6 .3-11.1 .8-16.6l-26.4 19.8zM640 336a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 353.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "envelope-open": { + "aliases": { + "unicodes": { + "composite": [ + "f2b7" + ], + "secondary": [ + "10f2b6" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "unicode": "f2b6", + "label": "Envelope Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 208.1L256 65.9 448 208.1v47.4L289.5 373c-9.7 7.2-21.4 11-33.5 11s-23.8-3.9-33.5-11L64 255.5V208.1zM256 0c-12.1 0-23.8 3.9-33.5 11L25.9 156.7C9.6 168.8 0 187.8 0 208.1V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V208.1c0-20.3-9.6-39.4-25.9-51.4L289.5 11C279.8 3.9 268.1 0 256 0z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M255.4 48.2c.2-.1 .4-.2 .6-.2s.4 .1 .6 .2L460.6 194c2.1 1.5 3.4 3.9 3.4 6.5v13.6L291.5 355.7c-20.7 17-50.4 17-71.1 0L48 214.1V200.5c0-2.6 1.2-5 3.4-6.5L255.4 48.2zM48 276.2L190 392.8c38.4 31.5 93.7 31.5 132 0L464 276.2V456c0 4.4-3.6 8-8 8H56c-4.4 0-8-3.6-8-8V276.2zM256 0c-10.2 0-20.2 3.2-28.5 9.1L23.5 154.9C8.7 165.4 0 182.4 0 200.5V456c0 30.9 25.1 56 56 56H456c30.9 0 56-25.1 56-56V200.5c0-18.1-8.7-35.1-23.4-45.6L284.5 9.1C276.2 3.2 266.2 0 256 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "envelope-open-text": { + "aliases": { + "unicodes": { + "secondary": [ + "10f658" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.1", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "unicode": "f658", + "label": "Envelope Open Text", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M215.4 96H144 107.8 96v8.8V144v40.4 89L.2 202.5c1.6-18.1 10.9-34.9 25.7-45.8L48 140.3V96c0-26.5 21.5-48 48-48h76.6l49.9-36.9C232.2 3.9 243.9 0 256 0s23.8 3.9 33.5 11L339.4 48H416c26.5 0 48 21.5 48 48v44.3l22.1 16.4c14.8 10.9 24.1 27.7 25.7 45.8L416 273.4v-89V144 104.8 96H404.2 368 296.6 215.4zM0 448V242.1L217.6 403.3c11.1 8.2 24.6 12.7 38.4 12.7s27.3-4.4 38.4-12.7L512 242.1V448v0c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64v0zM176 160H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "envelopes-bulk": { + "aliases": { + "names": [ + "mail-bulk" + ], + "unicodes": { + "secondary": [ + "10f674" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "envelope", + "letter", + "post office", + "postal", + "postcard", + "send", + "stamp", + "usps" + ] + }, + "unicode": "f674", + "label": "Envelopes Bulk", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32V224h96V192c0-35.3 28.7-64 64-64H448V32c0-17.7-14.3-32-32-32H96zM224 160c-17.7 0-32 14.3-32 32v32h96c35.3 0 64 28.7 64 64V416H544c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32H224zm240 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zM32 256c-17.7 0-32 14.3-32 32v13L155.1 415.9c1.4 1 3.1 1.6 4.9 1.6s3.5-.6 4.9-1.6L320 301V288c0-17.7-14.3-32-32-32H32zm288 84.8L184 441.6c-6.9 5.1-15.3 7.9-24 7.9s-17-2.8-24-7.9L0 340.8V480c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32V340.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "envira": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "leaf" + ] + }, + "unicode": "f299", + "label": "Envira Gallery", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "equals": { + "aliases": { + "unicodes": { + "composite": [ + "f52c" + ], + "primary": [ + "f52c" + ], + "secondary": [ + "103d", + "10f52c" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Equals Sign", + "arithmetic", + "even", + "match", + "math" + ] + }, + "unicode": "3d", + "label": "Equals", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 128c-17.7 0-32 14.3-32 32s14.3 32 32 32H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zm0 192c-17.7 0-32 14.3-32 32s14.3 32 32 32H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "eraser": { + "aliases": { + "unicodes": { + "secondary": [ + "10f12d" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "delete", + "remove", + "rubber" + ] + }, + "unicode": "f12d", + "label": "Eraser", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M258.7 57.4L25.4 290.7c-25 25-25 65.5 0 90.5l80 80c12 12 28.3 18.7 45.3 18.7H256h9.4H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H355.9L486.6 285.3c25-25 25-65.5 0-90.5L349.3 57.4c-25-25-65.5-25-90.5 0zM265.4 416H256l-105.4 0-80-80L195.3 211.3 332.7 348.7 265.4 416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "erlang": { + "changes": [ + "5.0.0", + "5.0.3", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f39d", + "label": "Erlang", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M87.2 53.5H0v405h100.4c-49.7-52.6-78.8-125.3-78.7-212.1-.1-76.7 24-142.7 65.5-192.9zm238.2 9.7c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2zm230.7-9.6h.3l-.1-.1zm.3 0c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ethereum": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42e", + "label": "Ethereum", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ethernet": { + "aliases": { + "unicodes": { + "secondary": [ + "10f796" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cable", + "cat 5", + "cat 6", + "connection", + "hardware", + "internet", + "network", + "wired" + ] + }, + "unicode": "f796", + "label": "Ethernet", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224V416c0 17.7 14.3 32 32 32H96V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32H448V160c0-17.7-14.3-32-32-32H384V96c0-17.7-14.3-32-32-32H160c-17.7 0-32 14.3-32 32v32H96c-17.7 0-32 14.3-32 32v32H32c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "etsy": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2d7", + "label": "Etsy", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "euro-sign": { + "aliases": { + "names": [ + "eur", + "euro" + ], + "unicodes": { + "composite": [ + "20ac" + ], + "secondary": [ + "10f153" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Euro Sign", + "currency" + ] + }, + "unicode": "f153", + "label": "Euro Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M48.1 240c-.1 2.7-.1 5.3-.1 8v16c0 2.7 0 5.3 .1 8H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H60.3C89.9 419.9 170 480 264 480h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H264c-57.9 0-108.2-32.4-133.9-80H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H112.2c-.1-2.6-.2-5.3-.2-8V248c0-2.7 .1-5.4 .2-8H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H130.1c25.7-47.6 76-80 133.9-80h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H264C170 32 89.9 92.1 60.3 176H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "evernote": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f839", + "label": "Evernote", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M120.82 132.21c1.6 22.31-17.55 21.59-21.61 21.59-68.93 0-73.64-1-83.58 3.34-.56.22-.74 0-.37-.37L123.79 46.45c.38-.37.6-.22.38.37-4.35 9.99-3.35 15.09-3.35 85.39zm79 308c-14.68-37.08 13-76.93 52.52-76.62 17.49 0 22.6 23.21 7.95 31.42-6.19 3.3-24.95 1.74-25.14 19.2-.05 17.09 19.67 25 31.2 24.89A45.64 45.64 0 0 0 312 393.45v-.08c0-11.63-7.79-47.22-47.54-55.34-7.72-1.54-65-6.35-68.35-50.52-3.74 16.93-17.4 63.49-43.11 69.09-8.74 1.94-69.68 7.64-112.92-36.77 0 0-18.57-15.23-28.23-57.95-3.38-15.75-9.28-39.7-11.14-62 0-18 11.14-30.45 25.07-32.2 81 0 90 2.32 101-7.8 9.82-9.24 7.8-15.5 7.8-102.78 1-8.3 7.79-30.81 53.41-24.14 6 .86 31.91 4.18 37.48 30.64l64.26 11.15c20.43 3.71 70.94 7 80.6 57.94 22.66 121.09 8.91 238.46 7.8 238.46C362.15 485.53 267.06 480 267.06 480c-18.95-.23-54.25-9.4-67.27-39.83zm80.94-204.84c-1 1.92-2.2 6 .85 7 14.09 4.93 39.75 6.84 45.88 5.53 3.11-.25 3.05-4.43 2.48-6.65-3.53-21.85-40.83-26.5-49.24-5.92z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "exclamation": { + "aliases": { + "unicodes": { + "composite": [ + "2755", + "2757", + "f12a" + ], + "primary": [ + "f12a" + ], + "secondary": [ + "1021", + "10f12a" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "!", + "Exclamation Mark", + "alert", + "danger", + "error", + "exclamation", + "important", + "mark", + "notice", + "notification", + "notify", + "outlined", + "problem", + "punctuation", + "red exclamation mark", + "warning", + "white exclamation mark" + ] + }, + "unicode": "21", + "label": "Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 128, + 512 + ], + "width": 128, + "height": 512, + "path": "M72 64c0-17.7-14.3-32-32-32S8 46.3 8 64V320c0 17.7 14.3 32 32 32s32-14.3 32-32V64zM40 480a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "expand": { + "aliases": { + "unicodes": { + "secondary": [ + "10f065" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "crop", + "enlarge", + "focus", + "fullscreen", + "resize", + "viewfinder" + ] + }, + "unicode": "f065", + "label": "Expand", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64v96c0 17.7 14.3 32 32 32s32-14.3 32-32V96h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM64 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7 14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V352zM320 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h64v64c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32H320zM448 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "expeditedssl": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f23e", + "label": "ExpeditedSSL", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "explosion": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blast", + "blowup", + "boom", + "crash", + "detonation", + "explosion" + ] + }, + "unicode": "e4e9", + "label": "Explosion", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M499.6 11.3c6.7-10.7 20.5-14.5 31.7-8.5s15.8 19.5 10.6 31L404.8 338.6c2.2 2.3 4.3 4.7 6.3 7.1l97.2-54.7c10.5-5.9 23.6-3.1 30.9 6.4s6.3 23-2.2 31.5l-87 87H378.5c-13.2-37.3-48.7-64-90.5-64s-77.4 26.7-90.5 64H117.8L42.3 363.7c-9.7-6.7-13.1-19.6-7.9-30.3s17.4-15.9 28.7-12.4l97.2 30.4c3-3.9 6.1-7.7 9.4-11.3L107.4 236.3c-6.1-10.1-3.9-23.1 5.1-30.7s22.2-7.5 31.1 .1L246 293.6c1.5-.4 3-.8 4.5-1.1l13.6-142.7c1.2-12.3 11.5-21.7 23.9-21.7s22.7 9.4 23.9 21.7l13.5 141.9L499.6 11.3zM64 448v0H512v0h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H64zM288 0c13.3 0 24 10.7 24 24V72c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "eye": { + "aliases": { + "unicodes": { + "composite": [ + "1f441" + ], + "secondary": [ + "10f06e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "body", + "eye", + "look", + "optic", + "see", + "seen", + "show", + "sight", + "views", + "visible" + ] + }, + "unicode": "f06e", + "label": "Eye", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64c-7.1 0-13.9-1.2-20.3-3.3c-5.5-1.8-11.9 1.6-11.7 7.4c.3 6.9 1.3 13.8 3.2 20.7c13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3z" + }, + "regular": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 80c-65.2 0-118.8 29.6-159.9 67.7C89.6 183.5 63 226 49.4 256c13.6 30 40.2 72.5 78.6 108.3C169.2 402.4 222.8 432 288 432s118.8-29.6 159.9-67.7C486.4 328.5 513 286 526.6 256c-13.6-30-40.2-72.5-78.6-108.3C406.8 109.6 353.2 80 288 80zM95.4 112.6C142.5 68.8 207.2 32 288 32s145.5 36.8 192.6 80.6c46.8 43.5 78.1 95.4 93 131.1c3.3 7.9 3.3 16.7 0 24.6c-14.9 35.7-46.2 87.7-93 131.1C433.5 443.2 368.8 480 288 480s-145.5-36.8-192.6-80.6C48.6 356 17.3 304 2.5 268.3c-3.3-7.9-3.3-16.7 0-24.6C17.3 208 48.6 156 95.4 112.6zM288 336c44.2 0 80-35.8 80-80s-35.8-80-80-80c-.7 0-1.3 0-2 0c1.3 5.1 2 10.5 2 16c0 35.3-28.7 64-64 64c-5.5 0-10.9-.7-16-2c0 .7 0 1.3 0 2c0 44.2 35.8 80 80 80zm0-208a128 128 0 1 1 0 256 128 128 0 1 1 0-256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "eye-dropper": { + "aliases": { + "names": [ + "eye-dropper-empty", + "eyedropper" + ], + "unicodes": { + "secondary": [ + "10f1fb" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beaker", + "clone", + "color", + "copy", + "eyedropper", + "pipette" + ] + }, + "unicode": "f1fb", + "label": "Eye Dropper", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M341.6 29.2L240.1 130.8l-9.4-9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-9.4-9.4L482.8 170.4c39-39 39-102.2 0-141.1s-102.2-39-141.1 0zM55.4 323.3c-15 15-23.4 35.4-23.4 56.6v42.4L5.4 462.2c-8.5 12.7-6.8 29.6 4 40.4s27.7 12.5 40.4 4L89.7 480h42.4c21.2 0 41.6-8.4 56.6-23.4L309.4 335.9l-45.3-45.3L143.4 411.3c-3 3-7.1 4.7-11.3 4.7H96V379.9c0-4.2 1.7-8.3 4.7-11.3L221.4 247.9l-45.3-45.3L55.4 323.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "eye-low-vision": { + "aliases": { + "names": [ + "low-vision" + ], + "unicodes": { + "secondary": [ + "10f2a8" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "eye", + "sight" + ] + }, + "unicode": "f2a8", + "label": "Eye Low Vision", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223 149.5c48.6-44.3 123-50.8 179.3-11.7c60.8 42.4 78.9 123.2 44.2 186.9L408 294.5c8.4-19.3 10.6-41.4 4.8-63.3c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3c0 10.2-2.4 19.8-6.6 28.3L223 149.5zm223.1 298L83.1 161.5c-11 14.4-20.5 28.7-28.4 42.2l339 265.7c18.7-5.5 36.2-13 52.6-21.8zM34.5 268.3c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c3.1 0 6.1-.1 9.2-.2L33.1 247.8c-1.8 6.8-1.3 14 1.4 20.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "eye-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f070" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "hide", + "show", + "toggle", + "unseen", + "views", + "visible", + "visiblity" + ] + }, + "unicode": "f070", + "label": "Eye Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223.1 149.5C248.6 126.2 282.7 112 320 112c79.5 0 144 64.5 144 144c0 24.9-6.3 48.3-17.4 68.7L408 294.5c8.4-19.3 10.6-41.4 4.8-63.3c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3c0 10.2-2.4 19.8-6.6 28.3l-90.3-70.8zM373 389.9c-16.4 6.5-34.3 10.1-53 10.1c-79.5 0-144-64.5-144-144c0-6.9 .5-13.6 1.4-20.2L83.1 161.5C60.3 191.2 44 220.8 34.5 243.7c-3.3 7.9-3.3 16.7 0 24.6c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c47.8 0 89.9-12.9 126.2-32.5L373 389.9z" + }, + "regular": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zm151 118.3C226 97.7 269.5 80 320 80c65.2 0 118.8 29.6 159.9 67.7C518.4 183.5 545 226 558.6 256c-12.6 28-36.6 66.8-70.9 100.9l-53.8-42.2c9.1-17.6 14.2-37.5 14.2-58.7c0-70.7-57.3-128-128-128c-32.2 0-61.7 11.9-84.2 31.5l-46.1-36.1zM394.9 284.2l-81.5-63.9c4.2-8.5 6.6-18.2 6.6-28.3c0-5.5-.7-10.9-2-16c.7 0 1.3 0 2 0c44.2 0 80 35.8 80 80c0 9.9-1.8 19.4-5.1 28.2zm9.4 130.3C378.8 425.4 350.7 432 320 432c-65.2 0-118.8-29.6-159.9-67.7C121.6 328.5 95 286 81.4 256c8.3-18.4 21.5-41.5 39.4-64.8L83.1 161.5C60.3 191.2 44 220.8 34.5 243.7c-3.3 7.9-3.3 16.7 0 24.6c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c47.8 0 89.9-12.9 126.2-32.5l-41.9-33zM192 256c0 70.7 57.3 128 128 128c13.3 0 26.1-2 38.2-5.8L302 334c-23.5-5.4-43.1-21.2-53.7-42.3l-56.1-44.2c-.2 2.8-.3 5.6-.3 8.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "f": { + "aliases": { + "unicodes": { + "composite": [ + "66" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter F", + "Latin Small Letter F", + "letter" + ] + }, + "unicode": "46", + "label": "F", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V256 448c0 17.7 14.3 32 32 32s32-14.3 32-32V288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "face-angry": { + "aliases": { + "names": [ + "angry" + ], + "unicodes": { + "composite": [ + "1f620" + ], + "secondary": [ + "10f556" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "angry", + "angry face", + "disapprove", + "emoticon", + "face", + "mad", + "upset" + ] + }, + "unicode": "f556", + "label": "Face Angry", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM338.7 395.9c6.6-5.9 7.1-16 1.2-22.6C323.8 355.4 295.7 336 256 336s-67.8 19.4-83.9 37.3c-5.9 6.6-5.4 16.7 1.2 22.6s16.7 5.4 22.6-1.2c11.7-13 31.6-26.7 60.1-26.7s48.4 13.7 60.1 26.7c5.9 6.6 16 7.1 22.6 1.2zM176.4 272c17.7 0 32-14.3 32-32c0-1.5-.1-3-.3-4.4l10.9 3.6c8.4 2.8 17.4-1.7 20.2-10.1s-1.7-17.4-10.1-20.2l-96-32c-8.4-2.8-17.4 1.7-20.2 10.1s1.7 17.4 10.1 20.2l30.7 10.2c-5.8 5.8-9.3 13.8-9.3 22.6c0 17.7 14.3 32 32 32zm192-32c0-8.9-3.6-17-9.5-22.8l30.2-10.1c8.4-2.8 12.9-11.9 10.1-20.2s-11.9-12.9-20.2-10.1l-96 32c-8.4 2.8-12.9 11.9-10.1 20.2s11.9 12.9 20.2 10.1l11.7-3.9c-.2 1.5-.3 3.1-.3 4.7c0 17.7 14.3 32 32 32s32-14.3 32-32z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm72.4-118.5c9.7-9 10.2-24.2 1.2-33.9C315.3 344.3 290.6 328 256 328s-59.3 16.3-73.5 31.6c-9 9.7-8.5 24.9 1.2 33.9s24.9 8.5 33.9-1.2c7.4-7.9 20-16.4 38.5-16.4s31.1 8.5 38.5 16.4c9 9.7 24.2 10.2 33.9 1.2zM176.4 272c17.7 0 32-14.3 32-32c0-1.5-.1-3-.3-4.4l10.9 3.6c8.4 2.8 17.4-1.7 20.2-10.1s-1.7-17.4-10.1-20.2l-96-32c-8.4-2.8-17.4 1.7-20.2 10.1s1.7 17.4 10.1 20.2l30.7 10.2c-5.8 5.8-9.3 13.8-9.3 22.6c0 17.7 14.3 32 32 32zm192-32c0-8.9-3.6-17-9.5-22.8l30.2-10.1c8.4-2.8 12.9-11.9 10.1-20.2s-11.9-12.9-20.2-10.1l-96 32c-8.4 2.8-12.9 11.9-10.1 20.2s11.9 12.9 20.2 10.1l11.7-3.9c-.2 1.5-.3 3.1-.3 4.7c0 17.7 14.3 32 32 32s32-14.3 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-dizzy": { + "aliases": { + "names": [ + "dizzy" + ], + "unicodes": { + "secondary": [ + "10f567" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dazed", + "dead", + "disapprove", + "emoticon", + "face" + ] + }, + "unicode": "f567", + "label": "Face Dizzy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-224a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM100.7 132.7c6.2-6.2 16.4-6.2 22.6 0L160 169.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L182.6 192l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L160 214.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L137.4 192l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6zm192 0c6.2-6.2 16.4-6.2 22.6 0L352 169.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L374.6 192l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L352 214.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L329.4 192l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 32a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM103 135c9.4-9.4 24.6-9.4 33.9 0l23 23 23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-23 23 23 23c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-23-23-23 23c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l23-23-23-23c-9.4-9.4-9.4-24.6 0-33.9zm192 0c9.4-9.4 24.6-9.4 33.9 0l23 23 23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-23 23 23 23c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-23-23-23 23c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l23-23-23-23c-9.4-9.4-9.4-24.6 0-33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-flushed": { + "aliases": { + "names": [ + "flushed" + ], + "unicodes": { + "composite": [ + "1f633" + ], + "secondary": [ + "10f579" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dazed", + "embarrassed", + "emoticon", + "face", + "flushed", + "flushed face" + ] + }, + "unicode": "f579", + "label": "Face Flushed", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM176 384c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16s-7.2-16-16-16H192c-8.8 0-16 7.2-16 16zm-16-88a72 72 0 1 0 0-144 72 72 0 1 0 0 144zm264-72a72 72 0 1 0 -144 0 72 72 0 1 0 144 0zm-288 0a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm192 0a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM160.4 248a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm216-24a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM192 336c-13.3 0-24 10.7-24 24s10.7 24 24 24H320c13.3 0 24-10.7 24-24s-10.7-24-24-24H192zM160 176a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm0 128a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm144-80a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm128 0a80 80 0 1 0 -160 0 80 80 0 1 0 160 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-frown": { + "aliases": { + "names": [ + "frown" + ], + "unicodes": { + "composite": [ + "2639" + ], + "secondary": [ + "10f119" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.9", + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "disapprove", + "emoticon", + "face", + "frown", + "frowning face", + "rating", + "sad" + ] + }, + "unicode": "f119", + "label": "Face Frown", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM159.3 388.7c-2.6 8.4-11.6 13.2-20 10.5s-13.2-11.6-10.5-20C145.2 326.1 196.3 288 256 288s110.8 38.1 127.3 91.3c2.6 8.4-2.1 17.4-10.5 20s-17.4-2.1-20-10.5C340.5 349.4 302.1 320 256 320s-84.5 29.4-96.7 68.7zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM174.6 384.1c-4.5 12.5-18.2 18.9-30.7 14.4s-18.9-18.2-14.4-30.7C146.9 319.4 198.9 288 256 288s109.1 31.4 126.6 79.9c4.5 12.5-2 26.2-14.4 30.7s-26.2-2-30.7-14.4C328.2 358.5 297.2 336 256 336s-72.2 22.5-81.4 48.1zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-frown-open": { + "aliases": { + "names": [ + "frown-open" + ], + "unicodes": { + "composite": [ + "1f626" + ], + "secondary": [ + "10f57a" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "disapprove", + "emoticon", + "face", + "frown", + "frowning face with open mouth", + "mouth", + "open", + "rating", + "sad" + ] + }, + "unicode": "f57a", + "label": "Face Frown Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm-122 174.5c-12.4 5.2-26.5-4.1-21.1-16.4c16-36.6 52.4-62.1 94.8-62.1s78.8 25.6 94.8 62.1c5.4 12.3-8.7 21.6-21.1 16.4c-22.4-9.5-47.4-14.8-73.7-14.8s-51.3 5.3-73.7 14.8z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM182.4 382.5c-12.4 5.2-26.5-4.1-21.1-16.4c16-36.6 52.4-62.1 94.8-62.1s78.8 25.6 94.8 62.1c5.4 12.3-8.7 21.6-21.1 16.4c-22.4-9.5-47.4-14.8-73.7-14.8s-51.3 5.3-73.7 14.8zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grimace": { + "aliases": { + "names": [ + "grimace" + ], + "unicodes": { + "composite": [ + "1f62c" + ], + "secondary": [ + "10f57f" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cringe", + "emoticon", + "face", + "grimace", + "grimacing face", + "teeth" + ] + }, + "unicode": "f57f", + "label": "Face Grimace", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm96-112h-8V360l55.3 0c-3.8 22.7-23.6 40-47.3 40zm47.3-56L344 344V304h8c23.8 0 43.5 17.3 47.3 40zM328 344H264V304h64v40zm0 56H264V360h64v40zm-80-96v40l-64 0V304h64zm0 56v40H184V360l64 0zm-80-16H112.7c3.8-22.7 23.6-40 47.3-40h8v40zm0 56h-8c-23.8 0-43.5-17.3-47.3-40H168v40zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 0 0 416 208 208 0 1 0 0-416zM512 256A256 256 0 1 1 0 256a256 256 0 1 1 512 0zM168 320c-13.3 0-24 10.7-24 24s10.7 24 24 24h8V320h-8zm40 48h32V320H208v48zm96 0V320H272v48h32zm32 0h8c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8v48zM168 288H344c30.9 0 56 25.1 56 56s-25.1 56-56 56H168c-30.9 0-56-25.1-56-56s25.1-56 56-56zm-23.6-80a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin": { + "aliases": { + "names": [ + "grin" + ], + "unicodes": { + "composite": [ + "1f600" + ], + "secondary": [ + "10f580" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "grin", + "grinning face", + "laugh", + "smile" + ] + }, + "unicode": "f580", + "label": "Face Grin", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-beam": { + "aliases": { + "names": [ + "grin-beam" + ], + "unicodes": { + "composite": [ + "1f604" + ], + "secondary": [ + "10f582" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "eye", + "face", + "grinning face with smiling eyes", + "laugh", + "mouth", + "open", + "smile" + ] + }, + "unicode": "f582", + "label": "Face Grin Beam", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zm-170.5-84l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM217.6 228.8l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-beam-sweat": { + "aliases": { + "names": [ + "grin-beam-sweat" + ], + "unicodes": { + "composite": [ + "1f605" + ], + "secondary": [ + "10f583" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "embarass", + "emoticon", + "face", + "grinning face with sweat", + "open", + "smile", + "sweat" + ] + }, + "unicode": "f583", + "label": "Face Grin Beam Sweat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M476.8 126.3c-4.1 1.1-8.4 1.7-12.8 1.7c-26.5 0-48-21-48-47c0-5 1.8-11.3 4.6-18.1c.3-.7 .6-1.4 .9-2.1c9-20.2 26.5-44.9 36-57.5c3.2-4.4 9.6-4.4 12.8 0C483.4 20.6 512 61 512 81c0 21.7-14.9 39.8-35.2 45.3zM256 0c51.4 0 99.3 15.2 139.4 41.2c-1.5 3.1-3 6.2-4.3 9.3c-3.4 8-7.1 19-7.1 30.5c0 44.3 36.6 79 80 79c9.6 0 18.8-1.7 27.4-4.8c13.3 30.9 20.6 65 20.6 100.8c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0zM383.8 317.8C345.3 329.4 301.9 336 256 336s-89.3-6.6-127.8-18.2c-12.3-3.7-24.3 7-19.2 18.7c24.5 56.9 81.1 96.7 147 96.7s122.5-39.8 147-96.7c5.1-11.8-6.9-22.4-19.2-18.7zm-166.2-89l0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C126.7 188.4 120 206.1 120 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0 0 0zm160 0l0 0 0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C286.7 188.4 280 206.1 280 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M476.8 126.3C497.1 120.8 512 102.7 512 81c0-20-28.6-60.4-41.6-77.7c-3.2-4.4-9.6-4.4-12.8 0c-9.5 12.6-27.1 37.2-36 57.5c-.3 .7-.6 1.4-.9 2.1C417.8 69.7 416 76 416 81c0 26 21.5 47 48 47c4.4 0 8.7-.6 12.8-1.7zM395.4 41.2C355.3 15.2 307.4 0 256 0C114.6 0 0 114.6 0 256S114.6 512 256 512s256-114.6 256-256c0-35.8-7.3-69.9-20.6-100.8c-8.6 3.1-17.8 4.8-27.4 4.8c-8.9 0-17.6-1.5-25.7-4.2C454.7 185.5 464 219.7 464 256c0 114.9-93.1 208-208 208S48 370.9 48 256S141.1 48 256 48c48.7 0 93.4 16.7 128.9 44.7c-.6-3.8-.9-7.7-.9-11.7c0-11.4 3.8-22.4 7.1-30.5c1.3-3.1 2.7-6.2 4.3-9.3zM375 336.5c10.4-16.1-6.8-32.5-25.5-28.1c-28.9 6.8-60.5 10.5-93.6 10.5s-64.7-3.7-93.6-10.5c-18.7-4.4-35.9 12-25.5 28.1c24.6 38.1 68.7 63.5 119.1 63.5s94.5-25.4 119.1-63.5zM217.6 228.8l0 0 0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C126.7 188.4 120 206.1 120 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0zm160 0l0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C286.7 188.4 280 206.1 280 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-hearts": { + "aliases": { + "names": [ + "grin-hearts" + ], + "unicodes": { + "composite": [ + "1f60d" + ], + "secondary": [ + "10f584" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "eye", + "face", + "love", + "smile", + "smiling face with heart-eyes" + ] + }, + "unicode": "f584", + "label": "Face Grin Hearts", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zM199.3 129.1c17.8 4.8 28.4 23.1 23.6 40.8l-17.4 65c-2.3 8.5-11.1 13.6-19.6 11.3l-65.1-17.4c-17.8-4.8-28.4-23.1-23.6-40.8s23.1-28.4 40.8-23.6l16.1 4.3 4.3-16.1c4.8-17.8 23.1-28.4 40.8-23.6zm154.3 23.6l4.3 16.1 16.1-4.3c17.8-4.8 36.1 5.8 40.8 23.6s-5.8 36.1-23.6 40.8l-65.1 17.4c-8.5 2.3-17.3-2.8-19.6-11.3l-17.4-65c-4.8-17.8 5.8-36.1 23.6-40.8s36.1 5.8 40.9 23.6z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM215.3 137.1c17.8 4.8 28.4 23.1 23.6 40.8l-17.4 65c-2.3 8.5-11.1 13.6-19.6 11.3l-65.1-17.4c-17.8-4.8-28.4-23.1-23.6-40.8s23.1-28.4 40.8-23.6l16.1 4.3 4.3-16.1c4.8-17.8 23.1-28.4 40.8-23.6zm122.3 23.6l4.3 16.1 16.1-4.3c17.8-4.8 36.1 5.8 40.8 23.6s-5.8 36.1-23.6 40.8l-65.1 17.4c-8.5 2.3-17.3-2.8-19.6-11.3l-17.4-65c-4.8-17.8 5.8-36.1 23.6-40.8s36.1 5.8 40.9 23.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-squint": { + "aliases": { + "names": [ + "grin-squint" + ], + "unicodes": { + "composite": [ + "1f606" + ], + "secondary": [ + "10f585" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "grinning squinting face", + "laugh", + "mouth", + "satisfied", + "smile" + ] + }, + "unicode": "f585", + "label": "Face Grin Squint", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zM133.5 146.7l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zm-216-161.7l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-squint-tears": { + "aliases": { + "names": [ + "grin-squint-tears" + ], + "unicodes": { + "composite": [ + "1f923" + ], + "secondary": [ + "10f586" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "floor", + "happy", + "laugh", + "rolling", + "rolling on the floor laughing", + "smile" + ] + }, + "unicode": "f586", + "label": "Face Grin Squint Tears", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M426.8 14.2C446-5 477.5-4.6 497.1 14.9s20 51 .7 70.3c-6.8 6.8-21.4 12.4-37.4 16.7c-16.3 4.4-34.1 7.5-46.3 9.3c-1.6 .2-3.1 .5-4.6 .6c-4.9 .8-9.1-2.8-9.5-7.4c-.1-.7 0-1.4 .1-2.1c1.6-11.2 4.6-29.6 9-47c.3-1.3 .7-2.6 1-3.9c4.3-15.9 9.8-30.5 16.7-37.4zm-44.7 19c-1.5 4.8-2.9 9.6-4.1 14.3c-4.8 18.9-8 38.5-9.7 50.3c-4 26.8 18.9 49.7 45.7 45.8c11.9-1.6 31.5-4.8 50.4-9.7c4.7-1.2 9.5-2.5 14.3-4.1C534.2 227.5 520.2 353.8 437 437c-83.2 83.2-209.5 97.2-307.2 41.8c1.5-4.8 2.8-9.6 4-14.3c4.8-18.9 8-38.5 9.7-50.3c4-26.8-18.9-49.7-45.7-45.8c-11.9 1.6-31.5 4.8-50.4 9.7c-4.7 1.2-9.5 2.5-14.3 4.1C-22.2 284.5-8.2 158.2 75 75C158.2-8.3 284.5-22.2 382.2 33.2zM51.5 410.1c18.5-5 38.8-8.3 50.9-10c.4-.1 .7-.1 1-.1c5.1-.2 9.2 4.3 8.4 9.6c-1.7 12.1-5 32.4-10 50.9C97.6 476.4 92 491 85.2 497.8C66 517 34.5 516.6 14.9 497.1s-20-51-.7-70.3c6.8-6.8 21.4-12.4 37.4-16.7zM416.9 209c-4.7-11.9-20.8-11-26.8 .3c-19 35.5-45 70.8-77.5 103.3S244.8 371.1 209.3 390c-11.3 6-12.2 22.1-.3 26.8c57.6 22.9 125.8 11 172.3-35.5s58.4-114.8 35.5-172.3zM87.1 285.1c2 2 4.6 3.2 7.3 3.4l56.1 5.1 5.1 56.1c.3 2.8 1.5 5.4 3.4 7.3c6.3 6.3 17.2 3.6 19.8-4.9l29.7-97.4c3.5-11.6-7.3-22.5-19-19L92 265.3c-8.6 2.6-11.3 13.4-4.9 19.8zM265.3 92l-29.7 97.4c-3.5 11.6 7.3 22.5 19 19l97.4-29.7c8.6-2.6 11.3-13.4 4.9-19.8c-2-2-4.6-3.2-7.3-3.4l-56.1-5.1-5.1-56.1c-.2-2.8-1.5-5.4-3.4-7.3c-6.3-6.3-17.2-3.6-19.8 4.9z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M426.8 14.2C446-5 477.5-4.6 497.1 14.9s20 51 .7 70.3c-14.8 14.8-65.7 23.6-88.3 26.7c-5.6 .9-10.3-3.9-9.5-9.5C403.3 79.9 412 29 426.8 14.2zM75 75C158.2-8.3 284.5-22.2 382.2 33.2c-1.5 4.8-2.9 9.6-4.1 14.3c-3.1 12.2-5.5 24.6-7.3 35c-80.8-53.6-190.7-44.8-261.9 26.4C37.7 180.1 28.9 290 82.5 370.8c-10.5 1.8-22.9 4.2-35 7.3c-4.7 1.2-9.5 2.5-14.3 4.1C-22.2 284.5-8.2 158.2 75 75zm389.6 58.9c4.7-1.2 9.5-2.5 14.3-4.1C534.2 227.5 520.2 353.8 437 437c-83.2 83.2-209.5 97.2-307.2 41.8c1.5-4.8 2.8-9.6 4-14.3c3.1-12.2 5.5-24.6 7.3-35c80.8 53.6 190.7 44.8 261.9-26.4c71.2-71.2 80-181.1 26.4-261.9c10.5-1.8 22.9-4.2 35-7.3zm-105.4 93c10.1-16.3 33.9-16.9 37.9 1.9c9.5 44.4-3.7 93.5-39.3 129.1s-84.8 48.8-129.1 39.3c-18.7-4-18.2-27.8-1.9-37.9c25.2-15.7 50.2-35.4 73.6-58.8s43.1-48.4 58.8-73.6zM92 265.3l97.4-29.7c11.6-3.5 22.5 7.3 19 19l-29.7 97.4c-2.6 8.6-13.4 11.3-19.8 4.9c-2-2-3.2-4.6-3.4-7.3l-5.1-56.1-56.1-5.1c-2.8-.3-5.4-1.5-7.3-3.4c-6.3-6.3-3.6-17.2 4.9-19.8zm193-178.2c2 2 3.2 4.6 3.4 7.3l5.1 56.1 56.1 5.1c2.8 .3 5.4 1.5 7.3 3.4c6.3 6.3 3.6 17.2-4.9 19.8l-97.4 29.7c-11.6 3.5-22.5-7.3-19-19L265.3 92c2.6-8.6 13.4-11.3 19.8-4.9zM14.9 497.1c-19.6-19.6-20-51-.7-70.3C29 412 79.8 403.2 102.4 400.1c5.6-.9 10.3 3.9 9.5 9.5c-3.2 22.5-11.9 73.5-26.7 88.3C66 517 34.5 516.6 14.9 497.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-stars": { + "aliases": { + "names": [ + "grin-stars" + ], + "unicodes": { + "composite": [ + "1f929" + ], + "secondary": [ + "10f587" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "eyes", + "face", + "grinning", + "star", + "star-struck", + "starry-eyed" + ] + }, + "unicode": "f587", + "label": "Face Grin Stars", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm407.4 75.5c5-11.8-7-22.5-19.3-18.7c-39.7 12.2-84.5 19-131.8 19s-92.1-6.8-131.8-19c-12.3-3.8-24.3 6.9-19.3 18.7c25 59.1 83.2 100.5 151.1 100.5s126.2-41.4 151.1-100.5zM160 120c-3.1 0-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L160 232.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L226.4 178c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7c-1.3-2.8-4.1-4.6-7.2-4.6zm192 0c-3.1 0-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L352 232.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L418.4 178c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7c-1.3-2.8-4.1-4.6-7.2-4.6z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM183.2 132.6c-1.3-2.8-4.1-4.6-7.2-4.6s-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L176 240.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L242.4 186c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7zm160 0c-1.3-2.8-4.1-4.6-7.2-4.6s-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L336 240.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L402.4 186c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7zm6.3 175.8c-28.9 6.8-60.5 10.5-93.6 10.5s-64.7-3.7-93.6-10.5c-18.7-4.4-35.9 12-25.5 28.1c24.6 38.1 68.7 63.5 119.1 63.5s94.5-25.4 119.1-63.5c10.4-16.1-6.8-32.5-25.5-28.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-tears": { + "aliases": { + "names": [ + "grin-tears" + ], + "unicodes": { + "composite": [ + "1f602" + ], + "secondary": [ + "10f588" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "face with tears of joy", + "joy", + "laugh", + "tear" + ] + }, + "unicode": "f588", + "label": "Face Grin Tears", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M548.6 371.4C506.4 454.8 419.9 512 320 512s-186.4-57.2-228.6-140.6c4.5-2.9 8.7-6.3 12.7-10.3c8.1-8.1 13.2-18.6 16.5-26.6c3.6-8.8 6.5-18.4 8.8-27.5c4.6-18.2 7.7-37 9.3-48.2c3.9-26.5-18.8-49.2-45.2-45.4c-6.8 .9-16.2 2.4-26.6 4.4C85.3 94.5 191.6 0 320 0S554.7 94.5 573.2 217.7c-10.3-2-19.8-3.5-26.6-4.4c-26.5-3.9-49.2 18.8-45.2 45.4c1.6 11.3 4.6 30 9.3 48.2c2.3 9.1 5.2 18.8 8.8 27.5c3.3 8.1 8.4 18.5 16.5 26.6c3.9 3.9 8.2 7.4 12.7 10.3zM107 254.1c-3.1 21.5-11.4 70.2-25.5 84.4c-.9 1-1.9 1.8-2.9 2.7C60 356.7 32 355.5 14.3 337.7c-18.7-18.7-19.1-48.8-.7-67.2c8.6-8.6 30.1-15.1 50.5-19.6c13-2.8 25.5-4.8 33.9-6c5.4-.8 9.9 3.7 9 9zm454.5 87.1c-.8-.6-1.5-1.3-2.3-2c-.2-.2-.5-.4-.7-.7c-14.1-14.1-22.5-62.9-25.5-84.4c-.8-5.4 3.7-9.9 9-9c1 .1 2.2 .3 3.3 .5c8.2 1.2 19.2 3 30.6 5.5c20.4 4.4 41.9 10.9 50.5 19.6c18.4 18.4 18 48.5-.7 67.2c-17.7 17.7-45.7 19-64.2 3.4zm-90.1-9.7c5-11.8-7-22.5-19.3-18.7c-39.7 12.2-84.4 19-131.8 19s-92.1-6.8-131.8-19c-12.3-3.8-24.3 6.9-19.3 18.7c25 59.1 83.2 100.5 151.1 100.5s126.2-41.4 151.1-100.5zM281.6 228.8l0 0 0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C190.7 188.4 184 206.1 184 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0zm160 0l0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C350.7 188.4 344 206.1 344 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0 0 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M516.1 325.5c1 3 2.1 6 3.3 8.9c3.3 8.1 8.4 18.5 16.5 26.6c3.9 3.9 8.2 7.4 12.7 10.3C506.4 454.8 419.9 512 320 512s-186.4-57.2-228.6-140.6c4.5-2.9 8.7-6.3 12.7-10.3c8.1-8.1 13.2-18.6 16.5-26.6c1.2-2.9 2.3-5.9 3.3-8.9C152.5 406.2 229.5 464 320 464s167.5-57.8 196.1-138.5zM320 48c-101.4 0-185.8 72.5-204.3 168.5c-6.7-3.1-14.3-4.3-22.3-3.1c-6.8 .9-16.2 2.4-26.6 4.4C85.3 94.5 191.6 0 320 0S554.7 94.5 573.2 217.7c-10.3-2-19.8-3.5-26.6-4.4c-8-1.2-15.7 .1-22.3 3.1C505.8 120.5 421.4 48 320 48zM78.5 341.1C60 356.7 32 355.5 14.3 337.7c-18.7-18.7-19.1-48.8-.7-67.2c8.6-8.6 30.1-15.1 50.5-19.6c13-2.8 25.5-4.8 33.9-6c5.4-.8 9.9 3.7 9 9c-3.1 21.5-11.4 70.2-25.5 84.4c-.9 1-1.9 1.8-2.9 2.7zm483 0c-.8-.6-1.5-1.3-2.3-2c-.2-.2-.5-.4-.7-.7c-14.1-14.1-22.5-62.9-25.5-84.4c-.8-5.4 3.7-9.9 9-9c1 .1 2.2 .3 3.3 .5c8.2 1.2 19.2 3 30.6 5.5c20.4 4.4 41.9 10.9 50.5 19.6c18.4 18.4 18 48.5-.7 67.2c-17.7 17.7-45.7 19-64.2 3.4zM439 336.5C414.4 374.6 370.3 400 319.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5c18.7-4.4 35.9 12 25.5 28.1zM281.6 228.8l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0zm160 0l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-tongue": { + "aliases": { + "names": [ + "grin-tongue" + ], + "unicodes": { + "composite": [ + "1f61b" + ], + "secondary": [ + "10f589" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "face with tongue", + "tongue" + ] + }, + "unicode": "f589", + "label": "Face Grin Tongue", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256C0 368.9 73.1 464.7 174.5 498.8C165.3 484 160 466.6 160 448V400.7c-24-17.5-43.1-41.4-54.8-69.2c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19c12.3-3.8 24.3 6.9 19.3 18.7c-11.8 28-31.1 52-55.4 69.6V448c0 18.6-5.3 36-14.5 50.8C438.9 464.7 512 368.9 512 256C512 114.6 397.4 0 256 0S0 114.6 0 256zm176.4-80a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM320 448V402.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V448c0 35.3 28.7 64 64 64s64-28.7 64-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256c0-114.9-93.1-208-208-208S48 141.1 48 256c0 81.7 47.1 152.4 115.7 186.4c-2.4-8.4-3.7-17.3-3.7-26.4V363.6c-8.9-8-16.7-17.1-23.1-27.1c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5c18.7-4.4 35.9 12 25.5 28.1c-6.4 9.9-14.2 19-23 27V416c0 9.2-1.3 18-3.7 26.4C416.9 408.4 464 337.7 464 256zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm176.4-80a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM320 416V378.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V416c0 35.3 28.7 64 64 64s64-28.7 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-tongue-squint": { + "aliases": { + "names": [ + "grin-tongue-squint" + ], + "unicodes": { + "composite": [ + "1f61d" + ], + "secondary": [ + "10f58a" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "eye", + "face", + "horrible", + "squinting face with tongue", + "taste", + "tongue" + ] + }, + "unicode": "f58a", + "label": "Face Grin Tongue Squint", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256C0 368.9 73.1 464.7 174.5 498.8C165.3 484 160 466.6 160 448V400.7c-24-17.5-43.1-41.4-54.8-69.2c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19c12.3-3.8 24.3 6.9 19.3 18.7c-11.8 28-31.1 52-55.4 69.6V448c0 18.6-5.3 36-14.5 50.8C438.9 464.7 512 368.9 512 256C512 114.6 397.4 0 256 0S0 114.6 0 256zM116 141.1c0-9 9.6-14.7 17.5-10.5l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6zm262.5-10.5c7.9-4.2 17.5 1.5 17.5 10.5c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9zM320 448V402.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V448c0 35.3 28.7 64 64 64s64-28.7 64-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256c0-114.9-93.1-208-208-208S48 141.1 48 256c0 81.7 47.1 152.4 115.7 186.4c-2.4-8.4-3.7-17.3-3.7-26.4V392.7c-24-17.5-43.1-41.4-54.8-69.2c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19c12.3-3.8 24.3 6.9 19.3 18.7c-11.8 28-31.1 52-55.4 69.6V416c0 9.2-1.3 18-3.7 26.4C416.9 408.4 464 337.7 464 256zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm116-98.9c0-9 9.6-14.7 17.5-10.5l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6zm262.5-10.5c7.9-4.2 17.5 1.5 17.5 10.5c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9zM320 416V378.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V416c0 35.3 28.7 64 64 64s64-28.7 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-tongue-wink": { + "aliases": { + "names": [ + "grin-tongue-wink" + ], + "unicodes": { + "composite": [ + "1f61c" + ], + "secondary": [ + "10f58b" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "5.12.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "eye", + "face", + "joke", + "tongue", + "wink", + "winking face with tongue" + ] + }, + "unicode": "f58b", + "label": "Face Grin Tongue Wink", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M174.5 498.8C73.1 464.7 0 368.9 0 256C0 114.6 114.6 0 256 0S512 114.6 512 256c0 112.9-73.1 208.7-174.5 242.8C346.7 484 352 466.6 352 448V401.1c24.3-17.5 43.6-41.6 55.4-69.6c5-11.8-7-22.5-19.3-18.7c-39.7 12.2-84.5 19-131.8 19s-92.1-6.8-131.8-19c-12.3-3.8-24.3 6.9-19.3 18.7c11.7 27.8 30.8 51.7 54.8 69.2V448c0 18.6 5.3 36 14.5 50.8zm20.7-265.2c5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0c-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2c17.6-23.5 52.8-23.5 70.4 0zM336 272a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM320 402.6V448c0 35.3-28.7 64-64 64s-64-28.7-64-64V402.6c0-14.7 11.9-26.6 26.6-26.6h2c11.3 0 21.1 7.9 23.6 18.9c2.8 12.6 20.8 12.6 23.6 0c2.5-11.1 12.3-18.9 23.6-18.9h2c14.7 0 26.6 11.9 26.6 26.6zM336 184a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M348.3 442.4c2.4-8.4 3.7-17.3 3.7-26.4V363.5c8.8-8 16.6-17.1 23-27c10.4-16.1-6.8-32.5-25.5-28.1c-28.9 6.8-60.5 10.5-93.6 10.5s-64.7-3.7-93.6-10.5c-18.7-4.4-35.9 12-25.5 28.1c6.5 10 14.3 19.1 23.1 27.1V416c0 9.2 1.3 18 3.7 26.4C95.1 408.4 48 337.7 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208c0 81.7-47.1 152.4-115.7 186.4zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM159.6 220c10.6 0 19.9 3.8 25.4 9.7c7.6 8.1 20.2 8.5 28.3 .9s8.5-20.2 .9-28.3C199.7 186.8 179 180 159.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7 .9 28.3s20.7 7.1 28.3-.9c5.5-5.8 14.8-9.7 25.4-9.7zm176.7 12a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm-.4-72a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm0 128a80 80 0 1 0 0-160 80 80 0 1 0 0 160zM320 416c0 35.3-28.7 64-64 64s-64-28.7-64-64V378.6c0-14.7 11.9-26.6 26.6-26.6h2c11.3 0 21.1 7.9 23.6 18.9c2.8 12.6 20.8 12.6 23.6 0c2.5-11.1 12.3-18.9 23.6-18.9h2c14.7 0 26.6 11.9 26.6 26.6V416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-wide": { + "aliases": { + "names": [ + "grin-alt" + ], + "unicodes": { + "composite": [ + "1f603" + ], + "secondary": [ + "10f581" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "grinning face with big eyes", + "laugh", + "mouth", + "open", + "smile" + ] + }, + "unicode": "f581", + "label": "Face Grin Wide", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zM208 192c0 35.3-14.3 64-32 64s-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64zm128 64c-17.7 0-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64s-14.3 64-32 64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM224 192c0 35.3-14.3 64-32 64s-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64zm96 64c-17.7 0-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64s-14.3 64-32 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-wink": { + "aliases": { + "names": [ + "grin-wink" + ], + "unicodes": { + "secondary": [ + "10f58c" + ] + } + }, + "changes": [ + "5.1.0", + "5.1.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "flirt", + "laugh", + "smile" + ] + }, + "unicode": "f58c", + "label": "Face Grin Wink", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zm-16.9-79.2c-17.6-23.5-52.8-23.5-70.4 0c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm165.8 21.7c-7.6 8.1-20.2 8.5-28.3 .9s-8.5-20.2-.9-28.3c14.5-15.5 35.2-22.3 54.6-22.3s40.1 6.8 54.6 22.3c7.6 8.1 7.1 20.7-.9 28.3s-20.7 7.1-28.3-.9c-5.5-5.8-14.8-9.7-25.4-9.7s-19.9 3.8-25.4 9.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-kiss": { + "aliases": { + "names": [ + "kiss" + ], + "unicodes": { + "composite": [ + "1f617" + ], + "secondary": [ + "10f596" + ] + } + }, + "changes": [ + "5.1.0", + "5.1.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "face", + "kiss", + "kissing face", + "love", + "smooch" + ] + }, + "unicode": "f596", + "label": "Face Kiss", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm48.7-198.3c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 443.1 257.4 448 240 448c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1 .3-.2 .6-.4c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.4-.3-.5-.3-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm304.7 25.7c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 411.1 257.4 416 240 416c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.8-.5-.1-.1-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-kiss-beam": { + "aliases": { + "names": [ + "kiss-beam" + ], + "unicodes": { + "composite": [ + "1f619" + ], + "secondary": [ + "10f597" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "eye", + "face", + "kiss", + "kissing face with smiling eyes", + "love", + "smile", + "smooch" + ] + }, + "unicode": "f597", + "label": "Face Kiss Beam", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm48.7-198.3c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 443.1 257.4 448 240 448c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1 .3-.2 .6-.4c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.4-.3-.5-.3-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zm-87.1-84.9l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm304.7 41.7c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 427.1 257.4 432 240 432c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zm-87.1-68.9l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-kiss-wink-heart": { + "aliases": { + "names": [ + "kiss-wink-heart" + ], + "unicodes": { + "composite": [ + "1f618" + ], + "secondary": [ + "10f598" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "face", + "face blowing a kiss", + "kiss", + "love", + "smooch" + ] + }, + "unicode": "f598", + "label": "Face Kiss Wink Heart", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M498 339.7c9.1-26.2 14-54.4 14-83.7C512 114.6 397.4 0 256 0S0 114.6 0 256S114.6 512 256 512c35.4 0 69.1-7.2 99.7-20.2c-4.8-5.5-8.5-12.2-10.4-19.7l-22.9-89.3c-10-39 11.8-80.9 51.8-92.1c37.2-10.4 73.8 10.1 87.5 44c12.7-1.6 25.1 .4 36.2 5zM296 332c0 6.9-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C258.7 443.1 241.4 448 224 448c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.6-.4-.3-.2-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm194.8 57.6c-17.6-23.5-52.8-23.5-70.4 0c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2zM434 352.3c-6-23.2-28.8-37-51.1-30.8s-35.4 30.1-29.5 53.4l22.9 89.3c2.2 8.7 11.2 13.9 19.8 11.4l84.9-23.8c22.2-6.2 35.4-30.1 29.5-53.4s-28.8-37-51.1-30.8l-20.2 5.6-5.4-21z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M338.9 446.8c-25.4 11-53.4 17.2-82.9 17.2C141.1 464 48 370.9 48 256S141.1 48 256 48s208 93.1 208 208c0 22.4-3.5 43.9-10.1 64.1c3.1 4.5 5.7 9.4 7.8 14.6c12.7-1.6 25.1 .4 36.2 5c9.1-26.2 14-54.4 14-83.7C512 114.6 397.4 0 256 0S0 114.6 0 256S114.6 512 256 512c35.4 0 69.1-7.2 99.7-20.2c-4.8-5.5-8.5-12.2-10.4-19.7l-6.5-25.3zM296 316c0-6.9-3.1-13.2-7.3-18.3c-4.3-5.2-10.1-9.7-16.7-13.4C258.7 276.9 241.4 272 224 272c-3.6 0-6.8 2.5-7.7 6s.6 7.2 3.8 9l0 0 0 0 0 0 .2 .1c.2 .1 .5 .3 .9 .5c.8 .5 2 1.2 3.4 2.1c2.8 1.9 6.5 4.5 10.2 7.6c3.7 3.1 7.2 6.6 9.6 10.1c2.5 3.5 3.5 6.4 3.5 8.6s-1 5-3.5 8.6c-2.5 3.5-5.9 6.9-9.6 10.1c-3.7 3.1-7.4 5.7-10.2 7.6c-1.4 .9-2.6 1.6-3.4 2.1c-.4 .2-.7 .4-.9 .5l-.2 .1 0 0 0 0 0 0 0 0 0 0c-2.5 1.4-4.1 4.1-4.1 7s1.6 5.6 4.1 7l0 0 0 0 0 0 .2 .1c.2 .1 .5 .3 .9 .5c.8 .5 2 1.2 3.4 2.1c2.8 1.9 6.5 4.5 10.2 7.6c3.7 3.1 7.2 6.6 9.6 10.1c2.5 3.5 3.5 6.4 3.5 8.6s-1 5-3.5 8.6c-2.5 3.5-5.9 6.9-9.6 10.1c-3.7 3.1-7.4 5.7-10.2 7.6c-1.4 .9-2.6 1.6-3.4 2.1c-.4 .2-.7 .4-.9 .5l-.2 .1 0 0 0 0 0 0 0 0c-3.2 1.8-4.7 5.5-3.8 9s4.1 6 7.7 6c17.4 0 34.7-4.9 47.9-12.3c6.6-3.7 12.5-8.2 16.7-13.4c4.3-5.1 7.3-11.4 7.3-18.3s-3.1-13.2-7.3-18.3c-4.3-5.2-10.1-9.7-16.7-13.4c-2.7-1.5-5.7-3-8.7-4.3c3.1-1.3 6-2.7 8.7-4.3c6.6-3.7 12.5-8.2 16.7-13.4c4.3-5.1 7.3-11.4 7.3-18.3zM176.4 240a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm159.3-20c10.6 0 19.9 3.8 25.4 9.7c7.6 8.1 20.2 8.5 28.3 .9s8.5-20.2 .9-28.3C375.7 186.8 355 180 335.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7 .9 28.3s20.7 7.1 28.3-.9c5.5-5.8 14.8-9.7 25.4-9.7zM434 352.3c-6-23.2-28.8-37-51.1-30.8s-35.4 30.1-29.5 53.4l22.9 89.3c2.2 8.7 11.2 13.9 19.8 11.4l84.9-23.8c22.2-6.2 35.4-30.1 29.5-53.4s-28.8-37-51.1-30.8l-20.2 5.6-5.4-21z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-laugh": { + "aliases": { + "names": [ + "laugh" + ], + "unicodes": { + "secondary": [ + "10f599" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "laugh", + "smile" + ] + }, + "unicode": "f599", + "label": "Face Laugh", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zM144.4 192a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9H364.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1zM144.4 192a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-laugh-beam": { + "aliases": { + "names": [ + "laugh-beam" + ], + "unicodes": { + "composite": [ + "1f601" + ], + "secondary": [ + "10f59a" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "beaming face with smiling eyes", + "emoticon", + "eye", + "face", + "grin", + "happy", + "smile" + ] + }, + "unicode": "f59a", + "label": "Face Laugh Beam", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zM217.6 212.8l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9H364.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1zm86.9-85.1l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-laugh-squint": { + "aliases": { + "names": [ + "laugh-squint" + ], + "unicodes": { + "secondary": [ + "10f59b" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "happy", + "smile" + ] + }, + "unicode": "f59b", + "label": "Face Laugh Squint", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zm36.7-199.4l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 125.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9H364.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1zm2.8-183.3l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 141.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-laugh-wink": { + "aliases": { + "names": [ + "laugh-wink" + ], + "unicodes": { + "secondary": [ + "10f59c" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "happy", + "smile" + ] + }, + "unicode": "f59c", + "label": "Face Laugh Wink", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zM144.4 192a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm156.4 25.6c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2c-17.6-23.5-52.8-23.5-70.4 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9H364.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1zM144.4 192a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm165.8 21.7c-7.6 8.1-20.2 8.5-28.3 .9s-8.5-20.2-.9-28.3c14.5-15.5 35.2-22.3 54.6-22.3s40.1 6.8 54.6 22.3c7.6 8.1 7.1 20.7-.9 28.3s-20.7 7.1-28.3-.9c-5.5-5.8-14.8-9.7-25.4-9.7s-19.9 3.8-25.4 9.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-meh": { + "aliases": { + "names": [ + "meh" + ], + "unicodes": { + "composite": [ + "1f610" + ], + "secondary": [ + "10f11a" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.9", + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "deadpan", + "emoticon", + "face", + "meh", + "neutral", + "neutral face", + "rating" + ] + }, + "unicode": "f11a", + "label": "Face Meh", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM160 336H352c8.8 0 16 7.2 16 16s-7.2 16-16 16H160c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM176.4 240a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm192-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM184 328c-13.3 0-24 10.7-24 24s10.7 24 24 24H328c13.3 0 24-10.7 24-24s-10.7-24-24-24H184z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-meh-blank": { + "aliases": { + "names": [ + "meh-blank" + ], + "unicodes": { + "composite": [ + "1f636" + ], + "secondary": [ + "10f5a4" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "face without mouth", + "mouth", + "neutral", + "quiet", + "rating", + "silent" + ] + }, + "unicode": "f5a4", + "label": "Face Meh Blank", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm208.4-48a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm128 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 0 0 416 208 208 0 1 0 0-416zM512 256A256 256 0 1 1 0 256a256 256 0 1 1 512 0zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-rolling-eyes": { + "aliases": { + "names": [ + "meh-rolling-eyes" + ], + "unicodes": { + "composite": [ + "1f644" + ], + "secondary": [ + "10f5a5" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "eyeroll", + "eyes", + "face", + "face with rolling eyes", + "neutral", + "rating", + "rolling" + ] + }, + "unicode": "f5a5", + "label": "Face Rolling Eyes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM192 368H320c8.8 0 16 7.2 16 16s-7.2 16-16 16H192c-8.8 0-16-7.2-16-16s7.2-16 16-16zm32-144c0 35.3-28.7 64-64 64s-64-28.7-64-64c0-26 15.5-48.4 37.8-58.4c-3.7 5.2-5.8 11.6-5.8 18.4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.9-2.2-13.2-5.8-18.4C208.5 175.6 224 198 224 224zm128 64c-35.3 0-64-28.7-64-64c0-26 15.5-48.4 37.8-58.4c-3.7 5.2-5.8 11.6-5.8 18.4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.9-2.2-13.2-5.8-18.4C400.5 175.6 416 198 416 224c0 35.3-28.7 64-64 64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM168 376c0 13.3 10.7 24 24 24H320c13.3 0 24-10.7 24-24s-10.7-24-24-24H192c-13.3 0-24 10.7-24 24zm-8-104c-26.5 0-48-21.5-48-48c0-14.3 6.3-27.2 16.2-36c-.2 1.3-.2 2.6-.2 4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-1.4-.1-2.7-.2-4c10 8.8 16.2 21.7 16.2 36c0 26.5-21.5 48-48 48zm0 32a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm192-32c-26.5 0-48-21.5-48-48c0-14.3 6.3-27.2 16.2-36c-.2 1.3-.2 2.6-.2 4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-1.4-.1-2.7-.2-4c10 8.8 16.2 21.7 16.2 36c0 26.5-21.5 48-48 48zm0 32a80 80 0 1 0 0-160 80 80 0 1 0 0 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-sad-cry": { + "aliases": { + "names": [ + "sad-cry" + ], + "unicodes": { + "composite": [ + "1f62d" + ], + "secondary": [ + "10f5b3" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cry", + "emoticon", + "face", + "loudly crying face", + "sad", + "sob", + "tear", + "tears" + ] + }, + "unicode": "f5b3", + "label": "Face Sad Cry", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 493.4c-29.6 12-62.1 18.6-96 18.6s-66.4-6.6-96-18.6V288c0-8.8-7.2-16-16-16s-16 7.2-16 16V477.8C51.5 433.5 0 350.8 0 256C0 114.6 114.6 0 256 0S512 114.6 512 256c0 94.8-51.5 177.5-128 221.8V288c0-8.8-7.2-16-16-16s-16 7.2-16 16V493.4zM195.2 233.6c5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0c-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2c17.6-23.5 52.8-23.5 70.4 0zm121.6 0c17.6-23.5 52.8-23.5 70.4 0c5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0c-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2zM208 336v32c0 26.5 21.5 48 48 48s48-21.5 48-48V336c0-26.5-21.5-48-48-48s-48 21.5-48 48z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M400 406.1V288c0-13.3-10.7-24-24-24s-24 10.7-24 24V440.6c-28.7 15-61.4 23.4-96 23.4s-67.3-8.5-96-23.4V288c0-13.3-10.7-24-24-24s-24 10.7-24 24V406.1C72.6 368.2 48 315 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208c0 59-24.6 112.2-64 150.1zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM159.6 220c10.6 0 19.9 3.8 25.4 9.7c7.6 8.1 20.2 8.5 28.3 .9s8.5-20.2 .9-28.3C199.7 186.8 179 180 159.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7 .9 28.3s20.7 7.1 28.3-.9c5.5-5.8 14.8-9.7 25.4-9.7zm166.6 9.7c5.5-5.8 14.8-9.7 25.4-9.7s19.9 3.8 25.4 9.7c7.6 8.1 20.2 8.5 28.3 .9s8.5-20.2 .9-28.3C391.7 186.8 371 180 351.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7 .9 28.3s20.7 7.1 28.3-.9zM208 320v32c0 26.5 21.5 48 48 48s48-21.5 48-48V320c0-26.5-21.5-48-48-48s-48 21.5-48 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-sad-tear": { + "aliases": { + "names": [ + "sad-tear" + ], + "unicodes": { + "composite": [ + "1f622" + ], + "secondary": [ + "10f5b4" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cry", + "crying face", + "emoticon", + "face", + "sad", + "tear", + "tears" + ] + }, + "unicode": "f5b4", + "label": "Face Sad Tear", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zm240 80c0-8.8 7.2-16 16-16c45 0 85.6 20.5 115.7 53.1c6 6.5 5.6 16.6-.9 22.6s-16.6 5.6-22.6-.9c-25-27.1-57.4-42.9-92.3-42.9c-8.8 0-16-7.2-16-16zm-80 80c-26.5 0-48-21-48-47c0-20 28.6-60.4 41.6-77.7c3.2-4.4 9.6-4.4 12.8 0C179.6 308.6 208 349 208 369c0 26-21.5 47-48 47zM367.6 208a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm-192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M175.9 448c-35-.1-65.5-22.6-76-54.6C67.6 356.8 48 308.7 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208s-93.1 208-208 208c-28.4 0-55.5-5.7-80.1-16zM0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM128 369c0 26 21.5 47 48 47s48-21 48-47c0-20-28.4-60.4-41.6-77.7c-3.2-4.4-9.6-4.4-12.8 0C156.6 308.6 128 349 128 369zm128-65c-13.3 0-24 10.7-24 24s10.7 24 24 24c30.7 0 58.7 11.5 80 30.6c9.9 8.8 25 8 33.9-1.9s8-25-1.9-33.9C338.3 320.2 299 304 256 304zm47.6-96a32 32 0 1 0 64 0 32 32 0 1 0 -64 0zm-128 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-smile": { + "aliases": { + "names": [ + "smile" + ], + "unicodes": { + "composite": [ + "1f642" + ], + "secondary": [ + "10f118" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.9", + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "approve", + "emoticon", + "face", + "happy", + "rating", + "satisfied", + "slightly smiling face", + "smile" + ] + }, + "unicode": "f118", + "label": "Face Smile", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-smile-beam": { + "aliases": { + "names": [ + "smile-beam" + ], + "unicodes": { + "composite": [ + "1f60a" + ], + "secondary": [ + "10f5b8" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blush", + "emoticon", + "eye", + "face", + "happy", + "positive", + "smile", + "smiling face with smiling eyes" + ] + }, + "unicode": "f5b8", + "label": "Face Smile Beam", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zm53.5-96.7l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zm40-89.3l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-smile-wink": { + "aliases": { + "names": [ + "smile-wink" + ], + "unicodes": { + "composite": [ + "1f609" + ], + "secondary": [ + "10f4da" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "happy", + "hint", + "joke", + "wink", + "winking face" + ] + }, + "unicode": "f4da", + "label": "Face Smile Wink", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm156.4 25.6c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2c-17.6-23.5-52.8-23.5-70.4 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm165.8 21.7c-7.6 8.1-20.2 8.5-28.3 .9s-8.5-20.2-.9-28.3c14.5-15.5 35.2-22.3 54.6-22.3s40.1 6.8 54.6 22.3c7.6 8.1 7.1 20.7-.9 28.3s-20.7 7.1-28.3-.9c-5.5-5.8-14.8-9.7-25.4-9.7s-19.9 3.8-25.4 9.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-surprise": { + "aliases": { + "names": [ + "surprise" + ], + "unicodes": { + "composite": [ + "1f62e" + ], + "secondary": [ + "10f5c2" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "face with open mouth", + "mouth", + "open", + "shocked", + "sympathy" + ] + }, + "unicode": "f5c2", + "label": "Face Surprise", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM256 288a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm176.4-80a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM256 288a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-tired": { + "aliases": { + "names": [ + "tired" + ], + "unicodes": { + "composite": [ + "1f62b" + ], + "secondary": [ + "10f5c8" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "angry", + "emoticon", + "face", + "grumpy", + "tired", + "tired face", + "upset" + ] + }, + "unicode": "f5c8", + "label": "Face Tired", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.7 328.7c22-22 53.9-40.7 91.3-40.7s69.3 18.7 91.3 40.7c11.1 11.1 20.1 23.4 26.4 35.4c6.2 11.7 10.3 24.4 10.3 35.9c0 5.2-2.6 10.2-6.9 13.2s-9.8 3.7-14.7 1.8l-20.5-7.7c-26.9-10.1-55.5-15.3-84.3-15.3h-3.2c-28.8 0-57.3 5.2-84.3 15.3L149.6 415c-4.9 1.8-10.4 1.2-14.7-1.8s-6.9-7.9-6.9-13.2c0-11.6 4.2-24.2 10.3-35.9c6.3-12 15.3-24.3 26.4-35.4zm-31.2-182l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm176.5 64.3C196.1 302.1 223.8 288 256 288s59.9 14.1 79.5 32.3C354.5 338.1 368 362 368 384c0 5.4-2.7 10.4-7.2 13.4s-10.2 3.4-15.2 1.3l-17.2-7.5c-22.8-10-47.5-15.1-72.4-15.1s-49.6 5.2-72.4 15.1l-17.2 7.5c-4.9 2.2-10.7 1.7-15.2-1.3s-7.2-8-7.2-13.4c0-22 13.5-45.9 32.5-63.7zm-43-173.6l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "facebook": { + "aliases": { + "unicodes": { + "composite": [ + "f230" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [ + "facebook-official", + "social network" + ] + }, + "unicode": "f09a", + "label": "Facebook", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "facebook-f": { + "changes": [ + "5.0.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [ + "facebook" + ] + }, + "unicode": "f39e", + "label": "Facebook F", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "facebook-messenger": { + "changes": [ + "5.0.0", + "5.8.2", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f39f", + "label": "Facebook Messenger", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256.55 8C116.52 8 8 110.34 8 248.57c0 72.3 29.71 134.78 78.07 177.94 8.35 7.51 6.63 11.86 8.05 58.23A19.92 19.92 0 0 0 122 502.31c52.91-23.3 53.59-25.14 62.56-22.7C337.85 521.8 504 423.7 504 248.57 504 110.34 396.59 8 256.55 8zm149.24 185.13l-73 115.57a37.37 37.37 0 0 1-53.91 9.93l-58.08-43.47a15 15 0 0 0-18 0l-78.37 59.44c-10.46 7.93-24.16-4.6-17.11-15.67l73-115.57a37.36 37.36 0 0 1 53.91-9.93l58.06 43.46a15 15 0 0 0 18 0l78.41-59.38c10.44-7.98 24.14 4.54 17.09 15.62z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fan": { + "aliases": { + "unicodes": { + "secondary": [ + "10f863" + ] + } + }, + "changes": [ + "5.9.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ac", + "air conditioning", + "blade", + "blower", + "cool", + "hot" + ] + }, + "unicode": "f863", + "label": "Fan", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M258.6 0c-1.7 0-3.4 .1-5.1 .5C168 17 115.6 102.3 130.5 189.3c2.9 17 8.4 32.9 15.9 47.4L32 224H29.4C13.2 224 0 237.2 0 253.4c0 1.7 .1 3.4 .5 5.1C17 344 102.3 396.4 189.3 381.5c17-2.9 32.9-8.4 47.4-15.9L224 480v2.6c0 16.2 13.2 29.4 29.4 29.4c1.7 0 3.4-.1 5.1-.5C344 495 396.4 409.7 381.5 322.7c-2.9-17-8.4-32.9-15.9-47.4L480 288h2.6c16.2 0 29.4-13.2 29.4-29.4c0-1.7-.1-3.4-.5-5.1C495 168 409.7 115.6 322.7 130.5c-17 2.9-32.9 8.4-47.4 15.9L288 32V29.4C288 13.2 274.8 0 258.6 0zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fantasy-flight-games": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "game", + "gaming", + "tabletop" + ] + }, + "unicode": "f6dc", + "label": "Fantasy Flight-games", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 32.86L32.86 256 256 479.14 479.14 256 256 32.86zM88.34 255.83c1.96-2 11.92-12.3 96.49-97.48 41.45-41.75 86.19-43.77 119.77-18.69 24.63 18.4 62.06 58.9 62.15 59 .68.74 1.07 2.86.58 3.38-11.27 11.84-22.68 23.54-33.5 34.69-34.21-32.31-40.52-38.24-48.51-43.95-17.77-12.69-41.4-10.13-56.98 5.1-2.17 2.13-1.79 3.43.12 5.35 2.94 2.95 28.1 28.33 35.09 35.78-11.95 11.6-23.66 22.97-35.69 34.66-12.02-12.54-24.48-25.53-36.54-38.11-21.39 21.09-41.69 41.11-61.85 60.99zm234.82 101.6c-35.49 35.43-78.09 38.14-106.99 20.47-22.08-13.5-39.38-32.08-72.93-66.84 12.05-12.37 23.79-24.42 35.37-36.31 33.02 31.91 37.06 36.01 44.68 42.09 18.48 14.74 42.52 13.67 59.32-1.8 3.68-3.39 3.69-3.64.14-7.24-10.59-10.73-21.19-21.44-31.77-32.18-1.32-1.34-3.03-2.48-.8-4.69 10.79-10.71 21.48-21.52 32.21-32.29.26-.26.65-.38 1.91-1.07 12.37 12.87 24.92 25.92 37.25 38.75 21.01-20.73 41.24-40.68 61.25-60.42 13.68 13.4 27.13 26.58 40.86 40.03-20.17 20.86-81.68 82.71-100.5 101.5zM256 0L0 256l256 256 256-256L256 0zM16 256L256 16l240 240-240 240L16 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "faucet": { + "aliases": { + "unicodes": { + "secondary": [ + "10e005" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "drinking", + "drip", + "house", + "hygiene", + "kitchen", + "potable", + "potable water", + "sanitation", + "sink", + "water" + ] + }, + "unicode": "e005", + "label": "Faucet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 96v12L96 96c-17.7 0-32 14.3-32 32s14.3 32 32 32l96-12 31-3.9 1-.1 1 .1 31 3.9 96 12c17.7 0 32-14.3 32-32s-14.3-32-32-32l-96 12V96c0-17.7-14.3-32-32-32s-32 14.3-32 32zM32 256c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H132.1c20.2 29 53.9 48 91.9 48s71.7-19 91.9-48H352c17.7 0 32 14.3 32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32c0-88.4-71.6-160-160-160H320l-22.6-22.6c-6-6-14.1-9.4-22.6-9.4H256V180.2l-32-4-32 4V224H173.3c-8.5 0-16.6 3.4-22.6 9.4L128 256H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "faucet-drip": { + "aliases": { + "unicodes": { + "composite": [ + "1f6b0" + ], + "secondary": [ + "10e006" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drinking", + "drip", + "house", + "hygiene", + "kitchen", + "potable", + "potable water", + "sanitation", + "sink", + "water" + ] + }, + "unicode": "e006", + "label": "Faucet Drip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 0c17.7 0 32 14.3 32 32V44l96-12c17.7 0 32 14.3 32 32s-14.3 32-32 32L256 84l-31-3.9-1-.1-1 .1L192 84 96 96C78.3 96 64 81.7 64 64s14.3-32 32-32l96 12V32c0-17.7 14.3-32 32-32zM0 224c0-17.7 14.3-32 32-32h96l22.6-22.6c6-6 14.1-9.4 22.6-9.4H192V116.2l32-4 32 4V160h18.7c8.5 0 16.6 3.4 22.6 9.4L320 192h32c88.4 0 160 71.6 160 160c0 17.7-14.3 32-32 32H416c-17.7 0-32-14.3-32-32s-14.3-32-32-32H315.9c-20.2 29-53.9 48-91.9 48s-71.7-19-91.9-48H32c-17.7 0-32-14.3-32-32V224zM436.8 423.4c1.9-4.5 6.3-7.4 11.2-7.4s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V480c0 17.7-14.3 32-32 32s-32-14.3-32-32v-1.2c0-4.5 .9-8.9 2.7-13.1l18.2-42.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fax": { + "aliases": { + "unicodes": { + "composite": [ + "1f4e0", + "1f5b7" + ], + "secondary": [ + "10f1ac" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.3.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Fax Icon", + "business", + "communicate", + "copy", + "facsimile", + "fax", + "fax machine", + "send" + ] + }, + "unicode": "f1ac", + "label": "Fax", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 64v96h64V64H386.7L416 93.3V160h64V93.3c0-17-6.7-33.3-18.7-45.3L432 18.7C420 6.7 403.7 0 386.7 0H192c-35.3 0-64 28.7-64 64zM0 160V480c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32zm480 32H128V480c0 17.7 14.3 32 32 32H480c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32zM256 256a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm96 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm32 96a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM224 416a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "feather": { + "aliases": { + "unicodes": { + "composite": [ + "1fab6" + ], + "secondary": [ + "10f52d" + ] + } + }, + "changes": [ + "5.0.13", + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "feather", + "flight", + "light", + "plucked", + "plumage", + "quill", + "write" + ] + }, + "unicode": "f52d", + "label": "Feather", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M278.5 215.6L23 471c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l57-57h68c49.7 0 97.9-14.4 139-41c11.1-7.2 5.5-23-7.8-23c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l81-24.3c2.5-.8 4.8-2.1 6.7-4l22.4-22.4c10.1-10.1 2.9-27.3-11.3-27.3l-32.2 0c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l112-33.6c4-1.2 7.4-3.9 9.3-7.7C506.4 207.6 512 184.1 512 160c0-41-16.3-80.3-45.3-109.3l-5.5-5.5C432.3 16.3 393 0 352 0s-80.3 16.3-109.3 45.3L139 149C91 197 64 262.1 64 330v55.3L253.6 195.8c6.2-6.2 16.4-6.2 22.6 0c5.4 5.4 6.1 13.6 2.2 19.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "feather-pointed": { + "aliases": { + "names": [ + "feather-alt" + ], + "unicodes": { + "secondary": [ + "10f56b" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "light", + "plucked", + "quill", + "write" + ] + }, + "unicode": "f56b", + "label": "Feather Pointed", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M278.5 215.6L23 471c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l74.8-74.8c7.4 4.6 15.3 8.2 23.8 10.5C200.3 452.8 270 454.5 338 409.4c12.2-8.1 5.8-25.4-8.8-25.4l-16.1 0c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l97.7-29.3c3.4-1 6.4-3.1 8.4-6.1c4.4-6.4 8.6-12.9 12.6-19.6c6.2-10.3-1.5-23-13.5-23l-38.6 0c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l80.9-24.3c4.6-1.4 8.4-4.8 10.2-9.3C494.5 163 507.8 86.1 511.9 36.8c.8-9.9-3-19.6-10-26.6s-16.7-10.8-26.6-10C391.5 7 228.5 40.5 137.4 131.6C57.3 211.7 56.7 302.3 71.3 356.4c2.1 7.9 12 9.6 17.8 3.8L253.6 195.8c6.2-6.2 16.4-6.2 22.6 0c5.4 5.4 6.1 13.6 2.2 19.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fedex": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Federal Express", + "package", + "shipping" + ] + }, + "unicode": "f797", + "label": "FedEx", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M586 284.5l53.3-59.9h-62.4l-21.7 24.8-22.5-24.8H414v-16h56.1v-48.1H318.9V236h-.5c-9.6-11-21.5-14.8-35.4-14.8-28.4 0-49.8 19.4-57.3 44.9-18-59.4-97.4-57.6-121.9-14v-24.2H49v-26.2h60v-41.1H0V345h49v-77.5h48.9c-1.5 5.7-2.3 11.8-2.3 18.2 0 73.1 102.6 91.4 130.2 23.7h-42c-14.7 20.9-45.8 8.9-45.8-14.6h85.5c3.7 30.5 27.4 56.9 60.1 56.9 14.1 0 27-6.9 34.9-18.6h.5V345h212.2l22.1-25 22.3 25H640l-54-60.5zm-446.7-16.6c6.1-26.3 41.7-25.6 46.5 0h-46.5zm153.4 48.9c-34.6 0-34-62.8 0-62.8 32.6 0 34.5 62.8 0 62.8zm167.8 19.1h-94.4V169.4h95v30.2H405v33.9h55.5v28.1h-56.1v44.7h56.1v29.6zm-45.9-39.8v-24.4h56.1v-44l50.7 57-50.7 57v-45.6h-56.1zm138.6 10.3l-26.1 29.5H489l45.6-51.2-45.6-51.2h39.7l26.6 29.3 25.6-29.3h38.5l-45.4 51 46 51.4h-40.5l-26.3-29.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fedora": { + "changes": [ + "5.6.0", + "5.6.3", + "5.8.0", + "6.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "unicode": "f798", + "label": "Fedora", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M.0413 255.8C.1219 132.2 100.3 32 224 32C347.7 32 448 132.3 448 256C448 379.7 347.8 479.9 224.1 480H50.93C22.84 480 .0832 457.3 .0416 429.2H0V255.8H.0413zM342.6 192.7C342.6 153 307 124.2 269.4 124.2C234.5 124.2 203.6 150.5 199.3 184.1C199.1 187.9 198.9 189.1 198.9 192.6C198.8 213.7 198.9 235.4 198.1 257C199 283.1 199.1 309.1 198.1 333.6C198.1 360.7 178.7 379.1 153.4 379.1C128.1 379.1 107.6 358.9 107.6 333.6C108.1 305.9 130.2 288.3 156.1 287.5H156.3L182.6 287.3V250L156.3 250.2C109.2 249.8 71.72 286.7 70.36 333.6C70.36 379.2 107.9 416.5 153.4 416.5C196.4 416.5 232.1 382.9 236 340.9L236.2 287.4L268.8 287.1C294.1 287.3 293.8 249.3 268.6 249.8L236.2 250.1C236.2 243.7 236.3 237.3 236.3 230.9C236.4 218.2 236.4 205.5 236.2 192.7C236.3 176.2 252 161.5 269.4 161.5C286.9 161.5 305.3 170.2 305.3 192.7C305.3 195.9 305.2 197.8 305 199C303.1 209.5 310.2 219.4 320.7 220.9C331.3 222.4 340.9 214.8 341.9 204.3C342.5 200.1 342.6 196.4 342.6 192.7H342.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ferry": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barge", + "boat", + "carry", + "ferryboat", + "ship" + ] + }, + "unicode": "e4ea", + "label": "Ferry", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M224 0H352c17.7 0 32 14.3 32 32h75.1c20.6 0 31.6 24.3 18.1 39.8L456 96H120L98.8 71.8C85.3 56.3 96.3 32 116.9 32H192c0-17.7 14.3-32 32-32zM96 128H480c17.7 0 32 14.3 32 32V283.5c0 13.3-4.2 26.3-11.9 37.2l-51.4 71.9c-1.9 1.1-3.7 2.2-5.5 3.5c-15.5 10.7-34 18-51 19.9H375.6c-17.1-1.8-35-9-50.8-19.9c-22.1-15.5-51.6-15.5-73.7 0c-14.8 10.2-32.5 18-50.6 19.9H183.9c-17-1.8-35.6-9.2-51-19.9c-1.8-1.3-3.7-2.4-5.6-3.5L75.9 320.7C68.2 309.8 64 296.8 64 283.5V160c0-17.7 14.3-32 32-32zm32 64v96H448V192H128zM306.5 421.9C329 437.4 356.5 448 384 448c26.9 0 55.3-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 501.7 417 512 384 512c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 437.2 165.1 448 192 448c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "figma": { + "changes": [ + "5.6.0", + "5.7.0", + "5.8.0", + "5.15.4", + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "design", + "interface" + ] + }, + "unicode": "f799", + "label": "Figma", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M14 95.7924C14 42.8877 56.8878 0 109.793 0H274.161C327.066 0 369.954 42.8877 369.954 95.7924C369.954 129.292 352.758 158.776 326.711 175.897C352.758 193.019 369.954 222.502 369.954 256.002C369.954 308.907 327.066 351.795 274.161 351.795H272.081C247.279 351.795 224.678 342.369 207.666 326.904V415.167C207.666 468.777 163.657 512 110.309 512C57.5361 512 14 469.243 14 416.207C14 382.709 31.1945 353.227 57.2392 336.105C31.1945 318.983 14 289.5 14 256.002C14 222.502 31.196 193.019 57.2425 175.897C31.196 158.776 14 129.292 14 95.7924ZM176.288 191.587H109.793C74.2172 191.587 45.3778 220.427 45.3778 256.002C45.3778 291.44 73.9948 320.194 109.381 320.416C109.518 320.415 109.655 320.415 109.793 320.415H176.288V191.587ZM207.666 256.002C207.666 291.577 236.505 320.417 272.081 320.417H274.161C309.737 320.417 338.576 291.577 338.576 256.002C338.576 220.427 309.737 191.587 274.161 191.587H272.081C236.505 191.587 207.666 220.427 207.666 256.002ZM109.793 351.795C109.655 351.795 109.518 351.794 109.381 351.794C73.9948 352.015 45.3778 380.769 45.3778 416.207C45.3778 451.652 74.6025 480.622 110.309 480.622C146.591 480.622 176.288 451.186 176.288 415.167V351.795H109.793ZM109.793 31.3778C74.2172 31.3778 45.3778 60.2173 45.3778 95.7924C45.3778 131.368 74.2172 160.207 109.793 160.207H176.288V31.3778H109.793ZM207.666 160.207H274.161C309.737 160.207 338.576 131.368 338.576 95.7924C338.576 60.2173 309.737 31.3778 274.161 31.3778H207.666V160.207Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "file": { + "aliases": { + "unicodes": { + "composite": [ + "1f4c4", + "1f5cb", + "f016" + ], + "secondary": [ + "10f15b" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Empty Document", + "document", + "new", + "page", + "page facing up", + "pdf", + "resume" + ] + }, + "unicode": "f15b", + "label": "File", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 464c8.8 0 16-7.2 16-16V160H256c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320zM0 64C0 28.7 28.7 0 64 0H229.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-arrow-down": { + "aliases": { + "names": [ + "file-download" + ], + "unicodes": { + "secondary": [ + "10f56d" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "export", + "save" + ] + }, + "unicode": "f56d", + "label": "File Arrow Down", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM216 232V334.1l31-31c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-72 72c-9.4 9.4-24.6 9.4-33.9 0l-72-72c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l31 31V232c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-arrow-up": { + "aliases": { + "names": [ + "file-upload" + ], + "unicodes": { + "secondary": [ + "10f574" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "import", + "page", + "save" + ] + }, + "unicode": "f574", + "label": "File Arrow Up", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM216 408c0 13.3-10.7 24-24 24s-24-10.7-24-24V305.9l-31 31c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l72-72c9.4-9.4 24.6-9.4 33.9 0l72 72c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-31-31V408z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-audio": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c7" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "mp3", + "music", + "page", + "play", + "sound" + ] + }, + "unicode": "f1c7", + "label": "File Audio", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zm2 226.3c37.1 22.4 62 63.1 62 109.7s-24.9 87.3-62 109.7c-7.6 4.6-17.4 2.1-22-5.4s-2.1-17.4 5.4-22C269.4 401.5 288 370.9 288 336s-18.6-65.5-46.5-82.3c-7.6-4.6-10-14.4-5.4-22s14.4-10 22-5.4zm-91.9 30.9c6 2.5 9.9 8.3 9.9 14.8V400c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5L113.4 376H80c-8.8 0-16-7.2-16-16V312c0-8.8 7.2-16 16-16h33.4l35.3-35.3c4.6-4.6 11.5-5.9 17.4-3.5zm51 34.9c6.6-5.9 16.7-5.3 22.6 1.3C249.8 304.6 256 319.6 256 336s-6.2 31.4-16.3 42.7c-5.9 6.6-16 7.1-22.6 1.3s-7.1-16-1.3-22.6c5.1-5.7 8.1-13.1 8.1-21.3s-3.1-15.7-8.1-21.3c-5.9-6.6-5.3-16.7 1.3-22.6z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464H320c8.8 0 16-7.2 16-16V160H256c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16zM0 64C0 28.7 28.7 0 64 0H229.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM192 272V400c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5L129.4 376H112c-8.8 0-16-7.2-16-16V312c0-8.8 7.2-16 16-16h17.4l35.3-35.3c4.6-4.6 11.5-5.9 17.4-3.5s9.9 8.3 9.9 14.8zm85.8-4c11.6 20 18.2 43.3 18.2 68s-6.6 48-18.2 68c-6.6 11.5-21.3 15.4-32.8 8.8s-15.4-21.3-8.8-32.8c7.5-12.9 11.8-27.9 11.8-44s-4.3-31.1-11.8-44c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-circle-check": { + "changes": [ + "6.0.0", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "not affected", + "ok", + "okay", + "paper" + ] + }, + "unicode": "e5a0", + "label": "File Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM288 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L416 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "paper" + ] + }, + "unicode": "e4eb", + "label": "File Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-circle-minus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "paper" + ] + }, + "unicode": "e4ed", + "label": "File Circle Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM288 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm224 0c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16s7.2 16 16 16H496c8.8 0 16-7.2 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-circle-plus": { + "aliases": { + "unicodes": { + "composite": [ + "e4ee" + ] + } + }, + "changes": [ + "6.0.0", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "document", + "file", + "new", + "page", + "paper", + "pdf" + ] + }, + "unicode": "e494", + "label": "File Circle Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm16 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H368c-8.8 0-16 7.2-16 16s7.2 16 16 16h48v48c0 8.8 7.2 16 16 16s16-7.2 16-16V384h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H448V304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-circle-question": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "paper" + ] + }, + "unicode": "e4ef", + "label": "File Circle Question", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zM368 321.6V328c0 8.8 7.2 16 16 16s16-7.2 16-16v-6.4c0-5.3 4.3-9.6 9.6-9.6h40.5c7.7 0 13.9 6.2 13.9 13.9c0 5.2-2.9 9.9-7.4 12.3l-32 16.8c-5.3 2.8-8.6 8.2-8.6 14.2V384c0 8.8 7.2 16 16 16s16-7.2 16-16v-5.1l23.5-12.3c15.1-7.9 24.5-23.6 24.5-40.6c0-25.4-20.6-45.9-45.9-45.9H409.6c-23 0-41.6 18.6-41.6 41.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-circle-xmark": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "paper" + ] + }, + "unicode": "e5a1", + "label": "File Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm59.3 107.3c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L409.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L432 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368l36.7-36.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-code": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c9" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "css", + "development", + "document", + "html" + ] + }, + "unicode": "f1c9", + "label": "File Code", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM153 289l-31 31 31 31c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L71 337c-9.4-9.4-9.4-24.6 0-33.9l48-48c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM265 255l48 48c9.4 9.4 9.4 24.6 0 33.9l-48 48c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l31-31-31-31c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm97 289c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L79 303c-9.4 9.4-9.4 24.6 0 33.9l48 48c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-31-31 31-31zM257 255c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l31 31-31 31c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l48-48c9.4-9.4 9.4-24.6 0-33.9l-48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-contract": { + "aliases": { + "unicodes": { + "secondary": [ + "10f56c" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agreement", + "binding", + "document", + "legal", + "signature" + ] + }, + "unicode": "f56c", + "label": "File Contract", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM80 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm54.2 253.8c-6.1 20.3-24.8 34.2-46 34.2H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h8.2c7.1 0 13.3-4.6 15.3-11.4l14.9-49.5c3.4-11.3 13.8-19.1 25.6-19.1s22.2 7.7 25.6 19.1l11.6 38.6c7.4-6.2 16.8-9.7 26.8-9.7c15.9 0 30.4 9 37.5 23.2l4.4 8.8H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-6.1 0-11.6-3.4-14.3-8.8l-8.8-17.7c-1.7-3.4-5.1-5.5-8.8-5.5s-7.2 2.1-8.8 5.5l-8.8 17.7c-2.9 5.9-9.2 9.4-15.7 8.8s-12.1-5.1-13.9-11.3L144 349l-9.8 32.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-csv": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6dd" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "excel", + "numbers", + "spreadsheets", + "table" + ] + }, + "unicode": "f6dd", + "label": "File Csv", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM80 224H96c22.1 0 40 17.9 40 40v8c0 8.8-7.2 16-16 16s-16-7.2-16-16v-8c0-4.4-3.6-8-8-8H80c-4.4 0-8 3.6-8 8v80c0 4.4 3.6 8 8 8H96c4.4 0 8-3.6 8-8v-8c0-8.8 7.2-16 16-16s16 7.2 16 16v8c0 22.1-17.9 40-40 40H80c-22.1 0-40-17.9-40-40V264c0-22.1 17.9-40 40-40zm72 46.4c0-25.6 20.8-46.4 46.4-46.4H216c8.8 0 16 7.2 16 16s-7.2 16-16 16H198.4c-7.9 0-14.4 6.4-14.4 14.4c0 5.2 2.8 9.9 7.2 12.5l25.4 14.5c14.4 8.3 23.4 23.6 23.4 40.3c0 25.6-20.8 46.4-46.4 46.4H168c-8.8 0-16-7.2-16-16s7.2-16 16-16h25.6c7.9 0 14.4-6.4 14.4-14.4c0-5.2-2.8-9.9-7.2-12.5l-25.4-14.5C160.9 302.4 152 287 152 270.4zM280 240v31.6c0 23 5.5 45.6 16 66c10.5-20.3 16-42.9 16-66V240c0-8.8 7.2-16 16-16s16 7.2 16 16v31.6c0 34.7-10.3 68.7-29.6 97.6l-5.1 7.7c-3 4.5-8 7.1-13.3 7.1s-10.3-2.7-13.3-7.1l-5.1-7.7c-19.3-28.9-29.6-62.9-29.6-97.6V240c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-excel": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c3" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "csv", + "document", + "numbers", + "spreadsheets", + "table" + ] + }, + "unicode": "f1c3", + "label": "File Excel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM155.7 250.2L192 302.1l36.3-51.9c7.6-10.9 22.6-13.5 33.4-5.9s13.5 22.6 5.9 33.4L221.3 344l46.4 66.2c7.6 10.9 5 25.8-5.9 33.4s-25.8 5-33.4-5.9L192 385.8l-36.3 51.9c-7.6 10.9-22.6 13.5-33.4 5.9s-13.5-22.6-5.9-33.4L162.7 344l-46.4-66.2c-7.6-10.9-5-25.8 5.9-33.4s25.8-5 33.4 5.9z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 448V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm90.9 233.3c-8.1-10.5-23.2-12.3-33.7-4.2s-12.3 23.2-4.2 33.7L161.6 320l-44.5 57.3c-8.1 10.5-6.3 25.5 4.2 33.7s25.5 6.3 33.7-4.2L192 359.1l37.1 47.6c8.1 10.5 23.2 12.3 33.7 4.2s12.3-23.2 4.2-33.7L222.4 320l44.5-57.3c8.1-10.5 6.3-25.5-4.2-33.7s-25.5-6.3-33.7 4.2L192 280.9l-37.1-47.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-export": { + "aliases": { + "names": [ + "arrow-right-from-file" + ], + "unicodes": { + "secondary": [ + "10f56e" + ] + } + }, + "changes": [ + "5.1.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "save" + ] + }, + "unicode": "f56e", + "label": "File Export", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V288H216c-13.3 0-24 10.7-24 24s10.7 24 24 24H384V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM384 336V288H494.1l-39-39c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l80 80c9.4 9.4 9.4 24.6 0 33.9l-80 80c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l39-39H384zm0-208H256V0L384 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-image": { + "aliases": { + "unicodes": { + "composite": [ + "1f5bb" + ], + "secondary": [ + "10f1c5" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Document with Picture", + "document", + "image", + "jpg", + "photo", + "png" + ] + }, + "unicode": "f1c5", + "label": "File Image", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM64 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm152 32c5.3 0 10.2 2.6 13.2 6.9l88 128c3.4 4.9 3.7 11.3 1 16.5s-8.2 8.6-14.2 8.6H216 176 128 80c-5.8 0-11.1-3.1-13.9-8.1s-2.8-11.2 .2-16.1l48-80c2.9-4.8 8.1-7.8 13.7-7.8s10.8 2.9 13.7 7.8l12.8 21.4 48.3-70.2c3-4.3 7.9-6.9 13.2-6.9z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm96 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm69.2 46.9c-3-4.3-7.9-6.9-13.2-6.9s-10.2 2.6-13.2 6.9l-41.3 59.7-11.9-19.1c-2.9-4.7-8.1-7.5-13.6-7.5s-10.6 2.8-13.6 7.5l-40 64c-3.1 4.9-3.2 11.1-.4 16.2s8.2 8.2 14 8.2h48 32 40 72c6 0 11.4-3.3 14.2-8.6s2.4-11.6-1-16.5l-72-104z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-import": { + "aliases": { + "names": [ + "arrow-right-to-file" + ], + "unicodes": { + "secondary": [ + "10f56f" + ] + } + }, + "changes": [ + "5.1.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copy", + "document", + "send", + "upload" + ] + }, + "unicode": "f56f", + "label": "File Import", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 64c0-35.3 28.7-64 64-64H352V128c0 17.7 14.3 32 32 32H512V448c0 35.3-28.7 64-64 64H192c-35.3 0-64-28.7-64-64V336H302.1l-39 39c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9l-80-80c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l39 39H128V64zm0 224v48H24c-13.3 0-24-10.7-24-24s10.7-24 24-24H128zM512 128H384V0L512 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-invoice": { + "aliases": { + "unicodes": { + "secondary": [ + "10f570" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "account", + "bill", + "charge", + "document", + "payment", + "receipt" + ] + }, + "unicode": "f570", + "label": "File Invoice", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM80 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm16 96H288c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V256c0-17.7 14.3-32 32-32zm0 32v64H288V256H96zM240 416h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-invoice-dollar": { + "aliases": { + "unicodes": { + "secondary": [ + "10f571" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "$", + "account", + "bill", + "charge", + "document", + "dollar-sign", + "money", + "payment", + "receipt", + "usd" + ] + }, + "unicode": "f571", + "label": "File Invoice Dollar", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM64 80c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm128 72c8.8 0 16 7.2 16 16v17.3c8.5 1.2 16.7 3.1 24.1 5.1c8.5 2.3 13.6 11 11.3 19.6s-11 13.6-19.6 11.3c-11.1-3-22-5.2-32.1-5.3c-8.4-.1-17.4 1.8-23.6 5.5c-5.7 3.4-8.1 7.3-8.1 12.8c0 3.7 1.3 6.5 7.3 10.1c6.9 4.1 16.6 7.1 29.2 10.9l.5 .1 0 0 0 0c11.3 3.4 25.3 7.6 36.3 14.6c12.1 7.6 22.4 19.7 22.7 38.2c.3 19.3-9.6 33.3-22.9 41.6c-7.7 4.8-16.4 7.6-25.1 9.1V440c0 8.8-7.2 16-16 16s-16-7.2-16-16V422.2c-11.2-2.1-21.7-5.7-30.9-8.9l0 0c-2.1-.7-4.2-1.4-6.2-2.1c-8.4-2.8-12.9-11.9-10.1-20.2s11.9-12.9 20.2-10.1c2.5 .8 4.8 1.6 7.1 2.4l0 0 0 0 0 0c13.6 4.6 24.6 8.4 36.3 8.7c9.1 .3 17.9-1.7 23.7-5.3c5.1-3.2 7.9-7.3 7.8-14c-.1-4.6-1.8-7.8-7.7-11.6c-6.8-4.3-16.5-7.4-29-11.2l-1.6-.5 0 0c-11-3.3-24.3-7.3-34.8-13.7c-12-7.2-22.6-18.9-22.7-37.3c-.1-19.4 10.8-32.8 23.8-40.5c7.5-4.4 15.8-7.2 24.1-8.7V232c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-lines": { + "aliases": { + "names": [ + "file-alt", + "file-text" + ], + "unicodes": { + "composite": [ + "1f5b9", + "1f5ce", + "f0f6" + ], + "secondary": [ + "10f15c" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Document", + "Document with Text", + "document", + "file-text", + "invoice", + "new", + "page", + "pdf" + ] + }, + "unicode": "f15c", + "label": "File Lines", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM112 256H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm56 256c-13.3 0-24 10.7-24 24s10.7 24 24 24H264c13.3 0 24-10.7 24-24s-10.7-24-24-24H120zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24H264c13.3 0 24-10.7 24-24s-10.7-24-24-24H120z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f477" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "health", + "history", + "prescription", + "record" + ] + }, + "unicode": "f477", + "label": "File Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM160 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H224v48c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V352H112c-8.8 0-16-7.2-16-16V304c0-8.8 7.2-16 16-16h48V240z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-pdf": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c1" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrobat", + "document", + "preview", + "save" + ] + }, + "unicode": "f1c1", + "label": "File Pdf", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V304H296 272 184 160c-35.3 0-64 28.7-64 64v80 48 16H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM160 352h24c30.9 0 56 25.1 56 56s-25.1 56-56 56h-8v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V448 368c0-8.8 7.2-16 16-16zm24 80c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8v48h8zm88-80h24c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H272c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16zm24 128c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16h-8v96h8zm72-112c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H400v32h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H400v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V432 368z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 464H96v48H64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0H229.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V288H336V160H256c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16zm96-112h24c30.9 0 56 25.1 56 56s-25.1 56-56 56h-8v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V448 368c0-8.8 7.2-16 16-16zm24 80c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8v48h8zm72-64c0-8.8 7.2-16 16-16h24c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H272c-8.8 0-16-7.2-16-16V368zm32 112h8c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16h-8v96zm96-128h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H400v32h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H400v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V432 368c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-pen": { + "aliases": { + "names": [ + "file-edit" + ], + "unicodes": { + "composite": [ + "1f4dd" + ], + "secondary": [ + "10f31c" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "memo", + "pen", + "pencil", + "update", + "write" + ] + }, + "unicode": "f31c", + "label": "File Pen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V285.7l-86.8 86.8c-10.3 10.3-17.5 23.1-21 37.2l-18.7 74.9c-2.3 9.2-1.8 18.8 1.3 27.5H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM549.8 235.7l14.4 14.4c15.6 15.6 15.6 40.9 0 56.6l-29.4 29.4-71-71 29.4-29.4c15.6-15.6 40.9-15.6 56.6 0zM311.9 417L441.1 287.8l71 71L382.9 487.9c-4.1 4.1-9.2 7-14.9 8.4l-60.1 15c-5.5 1.4-11.2-.2-15.2-4.2s-5.6-9.7-4.2-15.2l15-60.1c1.4-5.6 4.3-10.8 8.4-14.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-powerpoint": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c4" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "display", + "document", + "keynote", + "presentation" + ] + }, + "unicode": "f1c4", + "label": "File Powerpoint", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM136 240h68c42 0 76 34 76 76s-34 76-76 76H160v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V368 264c0-13.3 10.7-24 24-24zm68 104c15.5 0 28-12.5 28-28s-12.5-28-28-28H160v56h44z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm72 208c-13.3 0-24 10.7-24 24V336v56c0 13.3 10.7 24 24 24s24-10.7 24-24V360h44c42 0 76-34 76-76s-34-76-76-76H136zm68 104H160V256h44c15.5 0 28 12.5 28 28s-12.5 28-28 28z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-prescription": { + "aliases": { + "unicodes": { + "secondary": [ + "10f572" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "drugs", + "medical", + "medicine", + "rx" + ] + }, + "unicode": "f572", + "label": "File Prescription", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM104 196h72c33.1 0 60 26.9 60 60c0 25.5-15.9 47.2-38.3 55.9l43 40.3 33.8-31c8.1-7.5 20.8-6.9 28.3 1.2s6.9 20.8-1.2 28.3L270 379.7l31.7 29.7c8.1 7.6 8.5 20.2 .9 28.3s-20.2 8.5-28.3 .9l-33.9-31.8-34.9 32c-8.1 7.5-20.8 6.9-28.3-1.2s-6.9-20.8 1.2-28.3l32.6-29.9-64.8-60.8c-.9-.8-1.6-1.7-2.3-2.6H124v44c0 11-9 20-20 20s-20-9-20-20V296 216c0-11 9-20 20-20zm72 80c11 0 20-9 20-20s-9-20-20-20H124v40h52z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-shield": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antivirus", + "data", + "document", + "protect", + "safe", + "safety", + "secure" + ] + }, + "unicode": "e4f0", + "label": "File Shield", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v47l-92.8 37.1c-21.3 8.5-35.2 29.1-35.2 52c0 56.6 18.9 148 94.2 208.3c-9 4.8-19.3 7.6-30.2 7.6H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm39.1 97.7c5.7-2.3 12.1-2.3 17.8 0l120 48C570 277.4 576 286.2 576 296c0 63.3-25.9 168.8-134.8 214.2c-5.9 2.5-12.6 2.5-18.5 0C313.9 464.8 288 359.3 288 296c0-9.8 6-18.6 15.1-22.3l120-48zM527.4 312L432 273.8V461.7c68.2-33 91.5-99 95.4-149.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-signature": { + "aliases": { + "unicodes": { + "secondary": [ + "10f573" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "John Hancock", + "contract", + "document", + "name" + ] + }, + "unicode": "f573", + "label": "File Signature", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V428.7c-2.7 1.1-5.4 2-8.2 2.7l-60.1 15c-3 .7-6 1.2-9 1.4c-.9 .1-1.8 .2-2.7 .2H240c-6.1 0-11.6-3.4-14.3-8.8l-8.8-17.7c-1.7-3.4-5.1-5.5-8.8-5.5s-7.2 2.1-8.8 5.5l-8.8 17.7c-2.9 5.9-9.2 9.4-15.7 8.8s-12.1-5.1-13.9-11.3L144 381l-9.8 32.8c-6.1 20.3-24.8 34.2-46 34.2H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h8.2c7.1 0 13.3-4.6 15.3-11.4l14.9-49.5c3.4-11.3 13.8-19.1 25.6-19.1s22.2 7.8 25.6 19.1l11.6 38.6c7.4-6.2 16.8-9.7 26.8-9.7c15.9 0 30.4 9 37.5 23.2l4.4 8.8h8.9c-3.1-8.8-3.7-18.4-1.4-27.8l15-60.1c2.8-11.3 8.6-21.5 16.8-29.7L384 203.6V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM549.8 139.7c-15.6-15.6-40.9-15.6-56.6 0l-29.4 29.4 71 71 29.4-29.4c15.6-15.6 15.6-40.9 0-56.6l-14.4-14.4zM311.9 321c-4.1 4.1-7 9.2-8.4 14.9l-15 60.1c-1.4 5.5 .2 11.2 4.2 15.2s9.7 5.6 15.2 4.2l60.1-15c5.6-1.4 10.8-4.3 14.9-8.4L512.1 262.7l-71-71L311.9 321z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-video": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c8" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "m4v", + "movie", + "mp4", + "play" + ] + }, + "unicode": "f1c8", + "label": "File Video", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM64 288c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V288zM300.9 397.9L256 368V304l44.9-29.9c2-1.3 4.4-2.1 6.8-2.1c6.8 0 12.3 5.5 12.3 12.3V387.7c0 6.8-5.5 12.3-12.3 12.3c-2.4 0-4.8-.7-6.8-2.1z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 464c8.8 0 16-7.2 16-16V160H256c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320zM0 64C0 28.7 28.7 0 64 0H229.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM80 288c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32v16l44.9-29.9c2-1.3 4.4-2.1 6.8-2.1c6.8 0 12.3 5.5 12.3 12.3V387.7c0 6.8-5.5 12.3-12.3 12.3c-2.4 0-4.8-.7-6.8-2.1L240 368v16c0 17.7-14.3 32-32 32H112c-17.7 0-32-14.3-32-32V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-waveform": { + "aliases": { + "names": [ + "file-medical-alt" + ], + "unicodes": { + "secondary": [ + "10f478" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "health", + "history", + "prescription", + "record" + ] + }, + "unicode": "f478", + "label": "File Waveform", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V288H112c6.1 0 11.6 3.4 14.3 8.8L144 332.2l49.7-99.4c2.7-5.4 8.2-8.8 14.3-8.8s11.6 3.4 14.3 8.8L249.9 288H320c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-6.1 0-11.6-3.4-14.3-8.8L208 275.8l-49.7 99.4c-2.7 5.4-8.3 8.8-14.3 8.8s-11.6-3.4-14.3-8.8L102.1 320H0V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-word": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c2" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "edit", + "page", + "text", + "writing" + ] + }, + "unicode": "f1c2", + "label": "File Word", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM111 257.1l26.8 89.2 31.6-90.3c3.4-9.6 12.5-16.1 22.7-16.1s19.3 6.4 22.7 16.1l31.6 90.3L273 257.1c3.8-12.7 17.2-19.9 29.9-16.1s19.9 17.2 16.1 29.9l-48 160c-3 10-12.1 16.9-22.4 17.1s-19.8-6.2-23.2-16.1L192 336.6l-33.3 95.3c-3.4 9.8-12.8 16.3-23.2 16.1s-19.5-7.1-22.4-17.1l-48-160c-3.8-12.7 3.4-26.1 16.1-29.9s26.1 3.4 29.9 16.1z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 448V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm55 241.1c-3.8-12.7-17.2-19.9-29.9-16.1s-19.9 17.2-16.1 29.9l48 160c3 10.2 12.4 17.1 23 17.1s19.9-7 23-17.1l25-83.4 25 83.4c3 10.2 12.4 17.1 23 17.1s19.9-7 23-17.1l48-160c3.8-12.7-3.4-26.1-16.1-29.9s-26.1 3.4-29.9 16.1l-25 83.4-25-83.4c-3-10.2-12.4-17.1-23-17.1s-19.9 7-23 17.1l-25 83.4-25-83.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-zipper": { + "aliases": { + "names": [ + "file-archive" + ], + "unicodes": { + "secondary": [ + "10f1c6" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + ".zip", + "bundle", + "compress", + "compression", + "download", + "zip" + ] + }, + "unicode": "f1c6", + "label": "File Zipper", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM96 48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zm-6.3 71.8c3.7-14 16.4-23.8 30.9-23.8h14.8c14.5 0 27.2 9.7 30.9 23.8l23.5 88.2c1.4 5.4 2.1 10.9 2.1 16.4c0 35.2-28.8 63.7-64 63.7s-64-28.5-64-63.7c0-5.5 .7-11.1 2.1-16.4l23.5-88.2zM112 336c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H112z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16h48v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm48 112c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H128c-8.8 0-16 7.2-16 16zm0 64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H128c-8.8 0-16 7.2-16 16zm-6.3 71.8L82.1 335.9c-1.4 5.4-2.1 10.9-2.1 16.4c0 35.2 28.8 63.7 64 63.7s64-28.5 64-63.7c0-5.5-.7-11.1-2.2-16.4l-23.5-88.2c-3.7-14-16.4-23.8-30.9-23.8H136.6c-14.5 0-27.2 9.7-30.9 23.8zM128 336h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H128c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "fill": { + "aliases": { + "unicodes": { + "secondary": [ + "10f575" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bucket", + "color", + "paint", + "paint bucket" + ] + }, + "unicode": "f575", + "label": "Fill", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M84.6 9.4C72.1-3.1 51.9-3.1 39.4 9.4s-12.5 32.8 0 45.3L120.7 136 28.6 228.1c-37.5 37.5-37.5 98.3 0 135.8L146.1 481.4c37.5 37.5 98.3 37.5 135.8 0L472.3 290.9c28.1-28.1 28.1-73.7 0-101.8L320.9 37.7c-28.1-28.1-73.7-28.1-101.8 0L166 90.7 84.6 9.4zM166 181.3l49.4 49.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L211.3 136l53.1-53.1c3.1-3.1 8.2-3.1 11.3 0L427.1 234.3c3.1 3.1 3.1 8.2 0 11.3L384.7 288H65.5c1.4-5.4 4.2-10.4 8.4-14.6L166 181.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fill-drip": { + "aliases": { + "unicodes": { + "secondary": [ + "10f576" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bucket", + "color", + "drop", + "paint", + "paint bucket", + "spill" + ] + }, + "unicode": "f576", + "label": "Fill Drip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M41.4 9.4C53.9-3.1 74.1-3.1 86.6 9.4L168 90.7l53.1-53.1c28.1-28.1 73.7-28.1 101.8 0L474.3 189.1c28.1 28.1 28.1 73.7 0 101.8L283.9 481.4c-37.5 37.5-98.3 37.5-135.8 0L30.6 363.9c-37.5-37.5-37.5-98.3 0-135.8L122.7 136 41.4 54.6c-12.5-12.5-12.5-32.8 0-45.3zm176 221.3L168 181.3 75.9 273.4c-4.2 4.2-7 9.3-8.4 14.6H386.7l42.3-42.3c3.1-3.1 3.1-8.2 0-11.3L277.7 82.9c-3.1-3.1-8.2-3.1-11.3 0L213.3 136l49.4 49.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0zM512 512c-35.3 0-64-28.7-64-64c0-25.2 32.6-79.6 51.2-108.7c6-9.4 19.5-9.4 25.5 0C543.4 368.4 576 422.8 576 448c0 35.3-28.7 64-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "film": { + "aliases": { + "unicodes": { + "composite": [ + "1f39e" + ], + "secondary": [ + "10f008" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cinema", + "film", + "film frames", + "frames", + "movie", + "strip", + "video" + ] + }, + "unicode": "f008", + "label": "Film", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM48 368v32c0 8.8 7.2 16 16 16H96c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zm368-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H416zM48 240v32c0 8.8 7.2 16 16 16H96c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zm368-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H416zM48 112v32c0 8.8 7.2 16 16 16H96c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zM416 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H416zM160 128v64c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32zm32 160c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32H192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "filter": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0b0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "funnel", + "options", + "separate", + "sort" + ] + }, + "unicode": "f0b0", + "label": "Filter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321821, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M3.9 54.9C10.5 40.9 24.5 32 40 32H472c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L320 320.9V448c0 12.1-6.8 23.2-17.7 28.6s-23.8 4.3-33.5-3l-64-48c-8.1-6-12.8-15.5-12.8-25.6V320.9L9 97.3C-.7 85.4-2.8 68.8 3.9 54.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "filter-circle-dollar": { + "aliases": { + "names": [ + "funnel-dollar" + ], + "unicodes": { + "secondary": [ + "10f662" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "filter", + "money", + "options", + "separate", + "sort" + ] + }, + "unicode": "f662", + "label": "Filter Circle Dollar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321821, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M3.9 22.9C10.5 8.9 24.5 0 40 0H472c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L396.4 195.6C316.2 212.1 256 283 256 368c0 27.4 6.3 53.4 17.5 76.5c-1.6-.8-3.2-1.8-4.7-2.9l-64-48c-8.1-6-12.8-15.5-12.8-25.6V288.9L9 65.3C-.7 53.4-2.8 36.8 3.9 22.9zM576 368c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zM408.8 335.4c.6-.9 1.8-2.1 4.2-3.4c5.1-2.7 12.5-4.1 18.7-4c8.2 .1 17.1 1.8 26.4 4.1c8.6 2.1 17.3-3.1 19.4-11.7s-3.1-17.3-11.7-19.4c-5.6-1.4-11.6-2.7-17.9-3.7V288c0-8.8-7.2-16-16-16s-16 7.2-16 16v9.5c-6.1 1.2-12.3 3.2-18 6.3c-11.8 6.3-23 18.4-21.8 37.2c1 16 11.7 25.3 21.6 30.7c8.8 4.7 19.7 7.8 28.6 10.3l1.8 .5c10.3 2.9 17.9 5.2 23.2 8.3c4.5 2.7 4.7 4.2 4.7 5.6c.1 2.4-.5 3.7-1 4.5c-.6 1-1.8 2.2-4 3.3c-4.7 2.5-11.8 3.8-18.5 3.6c-9.5-.3-18.5-3.1-29.9-6.8c-1.9-.6-3.8-1.2-5.8-1.8c-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20c1.6 .5 3.3 1 5 1.6l0 0 0 0c7 2.3 15.1 4.8 23.7 6.6v11.4c0 8.8 7.2 16 16 16s16-7.2 16-16V438.7c6.2-1.1 12.5-3.1 18.3-6.2c12.1-6.5 22.3-18.7 21.7-36.9c-.5-16.2-10.3-26.3-20.5-32.3c-9.4-5.6-21.2-8.9-30.5-11.5l-.2 0c-10.4-2.9-18.3-5.2-23.9-8.2c-4.8-2.6-4.8-4-4.8-4.5l0-.1c-.1-1.9 .3-2.9 .8-3.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "filter-circle-xmark": { + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "funnel", + "options", + "remove", + "separate", + "sort" + ] + }, + "unicode": "e17b", + "label": "Filter Circle Xmark", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321821, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M3.9 22.9C10.5 8.9 24.5 0 40 0H472c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L396.4 195.6C316.2 212.1 256 283 256 368c0 27.4 6.3 53.4 17.5 76.5c-1.6-.8-3.2-1.8-4.7-2.9l-64-48c-8.1-6-12.8-15.5-12.8-25.6V288.9L9 65.3C-.7 53.4-2.8 36.8 3.9 22.9zM432 512c-79.5 0-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144s-64.5 144-144 144zm59.3-180.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L409.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L432 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368l36.7-36.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fingerprint": { + "aliases": { + "unicodes": { + "secondary": [ + "10f577" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "human", + "id", + "identification", + "lock", + "smudge", + "touch", + "unique", + "unlock" + ] + }, + "unicode": "f577", + "label": "Fingerprint", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M454.4 93c7.3 8.8 6.1 21.6-2 29.7c-10.6 10.6-28.2 8.6-38-2.7C376.2 75.9 319.9 48 257 48C142.1 48 49 141.1 49 256v24.9c0 6.1-.2 12.2-.6 18.3C47.7 311.2 37.6 320 25.6 320C11.1 320 .1 307 .7 292.5c.2-3.9 .3-7.7 .3-11.6V256C1 114.6 115.6 0 257 0c79.4 0 150.4 36.2 197.4 93zm19.3 89.6c13.1-6.5 29-.2 32.4 14.1c4.5 19.1 6.9 39 6.9 59.4v24.9c0 5.4-.1 10.9-.2 16.3C512.6 310 502 320 489.2 320c-13.7 0-24.6-11.5-24.4-25.3c.1-4.6 .1-9.2 .1-13.8V256c0-15.1-1.6-29.8-4.6-43.9c-2.5-11.8 2.5-24.2 13.3-29.6zM257 80c97.2 0 176 78.8 176 176v24.9c0 27.7-1.7 55.3-5 82.7c-1.4 11.7-11.5 20.3-23.3 20.3c-14.7 0-25.9-13.2-24.2-27.8c3-24.9 4.4-50.1 4.4-75.3V256c0-70.7-57.3-128-128-128c-11.6 0-22.8 1.5-33.4 4.4c-10.6 2.9-22.3 .4-29.4-7.9c-10.4-12.1-6.9-30.9 8.3-35.9C219.6 83 238 80 257 80zM151.7 148.7c8.2 9.6 7.5 23.8 .2 34.2C137.5 203.6 129 228.8 129 256v24.9c0 28.9-3.3 57.7-9.7 85.8C116.9 377 107.6 384 97.1 384c-15.9 0-27.3-15.6-23.9-31.1c5.2-23.6 7.8-47.7 7.8-71.9V256c0-40.6 13.7-78 36.8-107.7c8.5-11 24.8-10.2 33.9 .4zM257 160c53 0 96 43 96 96v24.9c0 39.7-3.9 79.3-11.6 118.1c-2 10-10.8 17-21 17c-14.2 0-24.5-13.3-21.8-27.2c6.9-35.5 10.4-71.6 10.4-107.9V256c0-28.7-23.3-52-52-52s-52 23.3-52 52v24.9c0 40.5-5.3 80.7-15.9 119.7c-2.5 9.2-10.9 15.4-20.4 15.4c-14.8 0-25.3-14.6-21.5-29c9.1-34.6 13.8-70.2 13.8-106.1V256c0-53 43-96 96-96zm24 96v24.9c0 65.8-12.1 131-35.7 192.4l-5.9 15.3c-4.8 12.4-18.6 18.5-31 13.8s-18.5-18.6-13.8-31l5.9-15.3C222 400.2 233 340.8 233 280.9V256c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fire": { + "aliases": { + "unicodes": { + "composite": [ + "1f525" + ], + "secondary": [ + "10f06d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.6.0", + "5.6.3", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "caliente", + "fire", + "flame", + "heat", + "hot", + "popular", + "tool" + ] + }, + "unicode": "f06d", + "label": "Fire", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M159.3 5.4c7.8-7.3 19.9-7.2 27.7 .1c27.6 25.9 53.5 53.8 77.7 84c11-14.4 23.5-30.1 37-42.9c7.9-7.4 20.1-7.4 28 .1c34.6 33 63.9 76.6 84.5 118c20.3 40.8 33.8 82.5 33.8 111.9C448 404.2 348.2 512 224 512C98.4 512 0 404.1 0 276.5c0-38.4 17.8-85.3 45.4-131.7C73.3 97.7 112.7 48.6 159.3 5.4zM225.7 416c25.3 0 47.7-7 68.8-21c42.1-29.4 53.4-88.2 28.1-134.4c-4.5-9-16-9.6-22.5-2l-25.2 29.3c-6.6 7.6-18.5 7.4-24.7-.5c-16.5-21-46-58.5-62.8-79.8c-6.3-8-18.3-8.1-24.7-.1c-33.8 42.5-50.8 69.3-50.8 99.4C112 375.4 162.6 416 225.7 416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fire-burner": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cook", + "fire", + "flame", + "kitchen", + "stove" + ] + }, + "unicode": "e4f1", + "label": "Fire Burner", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M293.5 3.8c19.7 17.8 38.2 37 55.5 57.7c7.9-9.9 16.8-20.7 26.5-29.5c5.6-5.1 14.4-5.1 20 0c24.7 22.7 45.6 52.7 60.4 81.1c14.5 28 24.2 58.8 24.2 79C480 280 408.7 352 320 352c-89.7 0-160-72.1-160-159.8c0-26.4 12.7-60.7 32.4-92.6c20-32.4 48.1-66.1 81.4-95.8c2.8-2.5 6.4-3.8 10-3.7c3.5 0 7 1.3 9.8 3.8zM370 273c30-21 38-63 20-96c-2-4-4-8-7-12l-36 42s-58-74-62-79c-30 37-45 58-45 82c0 49 36 78 81 78c18 0 34-5 49-15zM32 288c0-17.7 14.3-32 32-32H96c17.7 0 32 14.3 32 32s-14.3 32-32 32v64H544V320c-17.7 0-32-14.3-32-32s14.3-32 32-32h32c17.7 0 32 14.3 32 32v96c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32V288zM320 480a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm160-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM192 480a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fire-extinguisher": { + "aliases": { + "unicodes": { + "composite": [ + "1f9ef" + ], + "secondary": [ + "10f134" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "caliente", + "extinguish", + "fire", + "fire extinguisher", + "fire fighter", + "flame", + "heat", + "hot", + "quench", + "rescue" + ] + }, + "unicode": "f134", + "label": "Fire Extinguisher", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M500.3 7.3C507.7 13.3 512 22.4 512 32v96c0 9.6-4.3 18.7-11.7 24.7s-17.2 8.5-26.6 6.6l-160-32C301.5 124.9 292 115.7 289 104H224v34.8c37.8 18 64 56.5 64 101.2V384H64V240c0-44.7 26.2-83.2 64-101.2V110c-36.2 11.1-66 36.9-82.3 70.5c-5.8 11.9-20.2 16.9-32.1 11.1S-3.3 171.4 2.5 159.5C26.7 109.8 72.7 72.6 128 60.4V32c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V56h65c3-11.7 12.5-20.9 24.7-23.4l160-32c9.4-1.9 19.1 .6 26.6 6.6zM288 416v32c0 35.3-28.7 64-64 64H128c-35.3 0-64-28.7-64-64V416H288zM176 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fire-flame-curved": { + "aliases": { + "names": [ + "fire-alt" + ], + "unicodes": { + "secondary": [ + "10f7e4" + ] + } + }, + "changes": [ + "5.6.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "caliente", + "flame", + "heat", + "hot", + "popular" + ] + }, + "unicode": "f7e4", + "label": "Fire Flame Curved", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M153.6 29.9l16-21.3C173.6 3.2 180 0 186.7 0C198.4 0 208 9.6 208 21.3V43.5c0 13.1 5.4 25.7 14.9 34.7L307.6 159C356.4 205.6 384 270.2 384 337.7C384 434 306 512 209.7 512H192C86 512 0 426 0 320v-3.8c0-48.8 19.4-95.6 53.9-130.1l3.5-3.5c4.2-4.2 10-6.6 16-6.6C85.9 176 96 186.1 96 198.6V288c0 35.3 28.7 64 64 64s64-28.7 64-64v-3.9c0-18-7.2-35.3-19.9-48l-38.6-38.6c-24-24-37.5-56.7-37.5-90.7c0-27.7 9-54.8 25.6-76.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fire-flame-simple": { + "aliases": { + "names": [ + "burn" + ], + "unicodes": { + "secondary": [ + "10f46a" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caliente", + "energy", + "fire", + "flame", + "gas", + "heat", + "hot" + ] + }, + "unicode": "f46a", + "label": "Fire Flame Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M372.5 256.5l-.7-1.9C337.8 160.8 282 76.5 209.1 8.5l-3.3-3C202.1 2 197.1 0 192 0s-10.1 2-13.8 5.5l-3.3 3C102 76.5 46.2 160.8 12.2 254.6l-.7 1.9C3.9 277.3 0 299.4 0 321.6C0 426.7 86.8 512 192 512s192-85.3 192-190.4c0-22.2-3.9-44.2-11.5-65.1zm-90.8 49.5c4.1 9.3 6.2 19.4 6.2 29.5c0 53-43 96.5-96 96.5s-96-43.5-96-96.5c0-10.1 2.1-20.3 6.2-29.5l1.9-4.3c15.8-35.4 37.9-67.7 65.3-95.1l8.9-8.9c3.6-3.6 8.5-5.6 13.6-5.6s10 2 13.6 5.6l8.9 8.9c27.4 27.4 49.6 59.7 65.3 95.1l1.9 4.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "firefox": { + "changes": [ + "4.4.0", + "5.0.0", + "5.0.1", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "unicode": "f269", + "label": "Firefox", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M503.52,241.48c-.12-1.56-.24-3.12-.24-4.68v-.12l-.36-4.68v-.12a245.86,245.86,0,0,0-7.32-41.15c0-.12,0-.12-.12-.24l-1.08-4c-.12-.24-.12-.48-.24-.6-.36-1.2-.72-2.52-1.08-3.72-.12-.24-.12-.6-.24-.84-.36-1.2-.72-2.4-1.08-3.48-.12-.36-.24-.6-.36-1-.36-1.2-.72-2.28-1.2-3.48l-.36-1.08c-.36-1.08-.84-2.28-1.2-3.36a8.27,8.27,0,0,0-.36-1c-.48-1.08-.84-2.28-1.32-3.36-.12-.24-.24-.6-.36-.84-.48-1.2-1-2.28-1.44-3.48,0-.12-.12-.24-.12-.36-1.56-3.84-3.24-7.68-5-11.4l-.36-.72c-.48-1-.84-1.8-1.32-2.64-.24-.48-.48-1.08-.72-1.56-.36-.84-.84-1.56-1.2-2.4-.36-.6-.6-1.2-1-1.8s-.84-1.44-1.2-2.28c-.36-.6-.72-1.32-1.08-1.92s-.84-1.44-1.2-2.16a18.07,18.07,0,0,0-1.2-2c-.36-.72-.84-1.32-1.2-2s-.84-1.32-1.2-2-.84-1.32-1.2-1.92-.84-1.44-1.32-2.16a15.63,15.63,0,0,0-1.2-1.8L463.2,119a15.63,15.63,0,0,0-1.2-1.8c-.48-.72-1.08-1.56-1.56-2.28-.36-.48-.72-1.08-1.08-1.56l-1.8-2.52c-.36-.48-.6-.84-1-1.32-1-1.32-1.8-2.52-2.76-3.72a248.76,248.76,0,0,0-23.51-26.64A186.82,186.82,0,0,0,412,62.46c-4-3.48-8.16-6.72-12.48-9.84a162.49,162.49,0,0,0-24.6-15.12c-2.4-1.32-4.8-2.52-7.2-3.72a254,254,0,0,0-55.43-19.56c-1.92-.36-3.84-.84-5.64-1.2h-.12c-1-.12-1.8-.36-2.76-.48a236.35,236.35,0,0,0-38-4H255.14a234.62,234.62,0,0,0-45.48,5c-33.59,7.08-63.23,21.24-82.91,39-1.08,1-1.92,1.68-2.4,2.16l-.48.48H124l-.12.12.12-.12a.12.12,0,0,0,.12-.12l-.12.12a.42.42,0,0,1,.24-.12c14.64-8.76,34.92-16,49.44-19.56l5.88-1.44c.36-.12.84-.12,1.2-.24,1.68-.36,3.36-.72,5.16-1.08.24,0,.6-.12.84-.12C250.94,20.94,319.34,40.14,367,85.61a171.49,171.49,0,0,1,26.88,32.76c30.36,49.2,27.48,111.11,3.84,147.59-34.44,53-111.35,71.27-159,24.84a84.19,84.19,0,0,1-25.56-59,74.05,74.05,0,0,1,6.24-31c1.68-3.84,13.08-25.67,18.24-24.59-13.08-2.76-37.55,2.64-54.71,28.19-15.36,22.92-14.52,58.2-5,83.28a132.85,132.85,0,0,1-12.12-39.24c-12.24-82.55,43.31-153,94.31-170.51-27.48-24-96.47-22.31-147.71,15.36-29.88,22-51.23,53.16-62.51,90.36,1.68-20.88,9.6-52.08,25.8-83.88-17.16,8.88-39,37-49.8,62.88-15.6,37.43-21,82.19-16.08,124.79.36,3.24.72,6.36,1.08,9.6,19.92,117.11,122,206.38,244.78,206.38C392.77,503.42,504,392.19,504,255,503.88,250.48,503.76,245.92,503.52,241.48Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "firefox-browser": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "unicode": "e007", + "label": "Firefox Browser", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M130.22 127.548C130.38 127.558 130.3 127.558 130.22 127.548V127.548ZM481.64 172.898C471.03 147.398 449.56 119.898 432.7 111.168C446.42 138.058 454.37 165.048 457.4 185.168C457.405 185.306 457.422 185.443 457.45 185.578C429.87 116.828 383.098 89.1089 344.9 28.7479C329.908 5.05792 333.976 3.51792 331.82 4.08792L331.7 4.15792C284.99 30.1109 256.365 82.5289 249.12 126.898C232.503 127.771 216.219 131.895 201.19 139.035C199.838 139.649 198.736 140.706 198.066 142.031C197.396 143.356 197.199 144.87 197.506 146.323C197.7 147.162 198.068 147.951 198.586 148.639C199.103 149.327 199.76 149.899 200.512 150.318C201.264 150.737 202.096 150.993 202.954 151.071C203.811 151.148 204.676 151.045 205.491 150.768L206.011 150.558C221.511 143.255 238.408 139.393 255.541 139.238C318.369 138.669 352.698 183.262 363.161 201.528C350.161 192.378 326.811 183.338 304.341 187.248C392.081 231.108 368.541 381.784 246.951 376.448C187.487 373.838 149.881 325.467 146.421 285.648C146.421 285.648 157.671 243.698 227.041 243.698C234.541 243.698 255.971 222.778 256.371 216.698C256.281 214.698 213.836 197.822 197.281 181.518C188.434 172.805 184.229 168.611 180.511 165.458C178.499 163.75 176.392 162.158 174.201 160.688C168.638 141.231 168.399 120.638 173.51 101.058C148.45 112.468 128.96 130.508 114.8 146.428H114.68C105.01 134.178 105.68 93.7779 106.25 85.3479C106.13 84.8179 99.022 89.0159 98.1 89.6579C89.5342 95.7103 81.5528 102.55 74.26 110.088C57.969 126.688 30.128 160.242 18.76 211.318C14.224 231.701 12 255.739 12 263.618C12 398.318 121.21 507.508 255.92 507.508C376.56 507.508 478.939 420.281 496.35 304.888C507.922 228.192 481.64 173.82 481.64 172.898Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "first-order": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2b0", + "label": "First Order", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "first-order-alt": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f50a", + "label": "Alternate First Order", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "firstdraft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a1", + "label": "firstdraft", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fish": { + "aliases": { + "unicodes": { + "composite": [ + "1f41f" + ], + "secondary": [ + "10f578" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pisces", + "fauna", + "fish", + "gold", + "seafood", + "swimming", + "zodiac" + ] + }, + "unicode": "f578", + "label": "Fish", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M180.5 141.5C219.7 108.5 272.6 80 336 80s116.3 28.5 155.5 61.5c39.1 33 66.9 72.4 81 99.8c4.7 9.2 4.7 20.1 0 29.3c-14.1 27.4-41.9 66.8-81 99.8C452.3 403.5 399.4 432 336 432s-116.3-28.5-155.5-61.5c-16.2-13.7-30.5-28.5-42.7-43.1L48.1 379.6c-12.5 7.3-28.4 5.3-38.7-4.9S-3 348.7 4.2 336.1L50 256 4.2 175.9c-7.2-12.6-5-28.4 5.3-38.6s26.1-12.2 38.7-4.9l89.7 52.3c12.2-14.6 26.5-29.4 42.7-43.1zM448 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fish-fins": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fish", + "fishery", + "pisces", + "seafood" + ] + }, + "unicode": "e4f2", + "label": "Fish Fins", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M275.2 38.4c-10.6-8-25-8.5-36.3-1.5S222 57.3 224.6 70.3l9.7 48.6c-19.4 9-36.9 19.9-52.4 31.5c-15.3 11.5-29 23.9-40.7 36.3L48.1 132.4c-12.5-7.3-28.4-5.3-38.7 4.9S-3 163.3 4.2 175.9L50 256 4.2 336.1c-7.2 12.6-5 28.4 5.3 38.6s26.1 12.2 38.7 4.9l93.1-54.3c11.8 12.3 25.4 24.8 40.7 36.3c15.5 11.6 33 22.5 52.4 31.5l-9.7 48.6c-2.6 13 3.1 26.3 14.3 33.3s25.6 6.5 36.3-1.5l77.6-58.2c54.9-4 101.5-27 137.2-53.8c39.2-29.4 67.2-64.7 81.6-89.5c5.8-9.9 5.8-22.2 0-32.1c-14.4-24.8-42.5-60.1-81.6-89.5c-35.8-26.8-82.3-49.8-137.2-53.8L275.2 38.4zM384 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "flag": { + "aliases": { + "unicodes": { + "composite": [ + "1f3f4", + "f11d" + ], + "secondary": [ + "10f024" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "black flag", + "country", + "notice", + "notification", + "notify", + "pole", + "report", + "symbol", + "waving" + ] + }, + "unicode": "f024", + "label": "Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32V64 368 480c0 17.7 14.3 32 32 32s32-14.3 32-32V352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4l34.7-13c12.5-4.7 20.8-16.6 20.8-30V66.1c0-23-24.2-38-44.8-27.7l-9.6 4.8c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z" + }, + "regular": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 24C48 10.7 37.3 0 24 0S0 10.7 0 24V64 350.5 400v88c0 13.3 10.7 24 24 24s24-10.7 24-24V388l80.3-20.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4l34.7-13c12.5-4.7 20.8-16.6 20.8-30V66.1c0-23-24.2-38-44.8-27.7l-9.6 4.8c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L48 52V24zm0 77.5l96.6-24.2c27-6.7 55.5-3.6 80.4 8.8c54.9 27.4 118.7 29.7 175 6.8V334.7l-24.4 9.1c-33.7 12.6-71.2 10.7-103.4-5.4c-48.2-24.1-103.3-30.1-155.6-17.1L48 338.5v-237z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "flag-checkered": { + "aliases": { + "unicodes": { + "composite": [ + "1f3c1" + ], + "secondary": [ + "10f11e" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.7.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checkered", + "chequered", + "chequered flag", + "finish", + "notice", + "notification", + "notify", + "pole", + "racing", + "report", + "start", + "symbol", + "win" + ] + }, + "unicode": "f11e", + "label": "Flag Checkered", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 0C49.7 0 64 14.3 64 32V48l69-17.2c38.1-9.5 78.3-5.1 113.5 12.5c46.3 23.2 100.8 23.2 147.1 0l9.6-4.8C423.8 28.1 448 43.1 448 66.1V345.8c0 13.3-8.3 25.3-20.8 30l-34.7 13c-46.2 17.3-97.6 14.6-141.7-7.4c-37.9-19-81.4-23.7-122.5-13.4L64 384v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V400 334 64 32C0 14.3 14.3 0 32 0zM64 187.1l64-13.9v65.5L64 252.6V318l48.8-12.2c5.1-1.3 10.1-2.4 15.2-3.3V238.7l38.9-8.4c8.3-1.8 16.7-2.5 25.1-2.1l0-64c13.6 .4 27.2 2.6 40.4 6.4l23.6 6.9v66.7l-41.7-12.3c-7.3-2.1-14.8-3.4-22.3-3.8v71.4c21.8 1.9 43.3 6.7 64 14.4V244.2l22.7 6.7c13.5 4 27.3 6.4 41.3 7.4V194c-7.8-.8-15.6-2.3-23.2-4.5l-40.8-12v-62c-13-3.8-25.8-8.8-38.2-15c-8.2-4.1-16.9-7-25.8-8.8v72.4c-13-.4-26 .8-38.7 3.6L128 173.2V98L64 114v73.1zM320 335.7c16.8 1.5 33.9-.7 50-6.8l14-5.2V251.9l-7.9 1.8c-18.4 4.3-37.3 5.7-56.1 4.5v77.4zm64-149.4V115.4c-20.9 6.1-42.4 9.1-64 9.1V194c13.9 1.4 28 .5 41.7-2.6l22.3-5.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "flag-usa": { + "aliases": { + "unicodes": { + "secondary": [ + "10f74d" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "betsy ross", + "country", + "fla", + "flag: United States", + "old glory", + "stars", + "stripes", + "symbol" + ] + }, + "unicode": "f74d", + "label": "Flag Usa", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 0C49.7 0 64 14.3 64 32V48l69-17.2c38.1-9.5 78.3-5.1 113.5 12.5c46.3 23.2 100.8 23.2 147.1 0l9.6-4.8C423.8 28.1 448 43.1 448 66.1v36.1l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-20.3-9-41.8-14.7-63.6-16.9v32.2c17.4 2.1 34.4 6.7 50.6 13.9l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4L448 136.3v62l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-40.2-17.9-85-22.5-128.1-13.3L64 203.1v32.7l70.2-15.1c36.4-7.8 74.3-3.9 108.4 11.3l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4L448 232.3v62l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-40.2-17.9-85-22.5-128.1-13.3L64 299.1v32.7l70.2-15.1c36.4-7.8 74.3-3.9 108.4 11.3l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4L448 328.3v33.5c0 13.3-8.3 25.3-20.8 30l-34.7 13c-46.2 17.3-97.6 14.6-141.7-7.4c-37.9-19-81.4-23.7-122.5-13.4L64 400v80c0 17.7-14.3 32-32 32s-32-14.3-32-32V416 345.5 312.8 249.5 216.8 153.5 120.8 64 32C0 14.3 14.3 0 32 0zm80 96A16 16 0 1 0 80 96a16 16 0 1 0 32 0zm32 0a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm-32 48a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm32 0a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "flask": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0c3" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beaker", + "experimental", + "labs", + "science" + ] + }, + "unicode": "f0c3", + "label": "Flask", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M288 0H160 128C110.3 0 96 14.3 96 32s14.3 32 32 32V196.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6C0 480.9 31.1 512 69.4 512H378.6c38.3 0 69.4-31.1 69.4-69.4c0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H288zM192 196.8V64h64V196.8c0 23.7 6.6 46.9 19 67.1L309.5 320h-171L173 263.9c12.4-20.2 19-43.4 19-67.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "flask-vial": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "chemistry", + "lab", + "laboratory", + "test", + "test tube" + ] + }, + "unicode": "e4f3", + "label": "Flask Vial", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M175 389.4c-9.8 16-15 34.3-15 53.1c-10 3.5-20.8 5.5-32 5.5c-53 0-96-43-96-96V64C14.3 64 0 49.7 0 32S14.3 0 32 0H96h64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32V309.9l-49 79.6zM96 64v96h64V64H96zM352 0H480h32c17.7 0 32 14.3 32 32s-14.3 32-32 32V214.9L629.7 406.2c6.7 10.9 10.3 23.5 10.3 36.4c0 38.3-31.1 69.4-69.4 69.4H261.4c-38.3 0-69.4-31.1-69.4-69.4c0-12.8 3.6-25.4 10.3-36.4L320 214.9V64c-17.7 0-32-14.3-32-32s14.3-32 32-32h32zm32 64V224c0 5.9-1.6 11.7-4.7 16.8L330.5 320h171l-48.8-79.2c-3.1-5-4.7-10.8-4.7-16.8V64H384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "flickr": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f16e", + "label": "Flickr", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "flipboard": { + "changes": [ + "5.0.5", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f44d", + "label": "Flipboard", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "floppy-disk": { + "aliases": { + "names": [ + "save" + ], + "unicodes": { + "composite": [ + "1f4be", + "1f5aa" + ], + "secondary": [ + "10f0c7" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Hard Shell Floppy Disk", + "computer", + "disk", + "download", + "floppy", + "floppy disk", + "floppy-o" + ] + }, + "unicode": "f0c7", + "label": "Floppy Disk", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V173.3c0-17-6.7-33.3-18.7-45.3L352 50.7C340 38.7 323.7 32 306.7 32H64zm0 96c0-17.7 14.3-32 32-32H288c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V128zM224 288a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + }, + "regular": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 96V416c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V170.5c0-4.2-1.7-8.3-4.7-11.3l33.9-33.9c12 12 18.7 28.3 18.7 45.3V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H309.5c17 0 33.3 6.7 45.3 18.7l74.5 74.5-33.9 33.9L320.8 84.7c-.3-.3-.5-.5-.8-.8V184c0 13.3-10.7 24-24 24H104c-13.3 0-24-10.7-24-24V80H64c-8.8 0-16 7.2-16 16zm80-16v80H272V80H128zm32 240a64 64 0 1 1 128 0 64 64 0 1 1 -128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "florin-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency" + ] + }, + "unicode": "e184", + "label": "Florin Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M314.7 32c-38.8 0-73.7 23.3-88.6 59.1L170.7 224H64c-17.7 0-32 14.3-32 32s14.3 32 32 32h80L98.9 396.3c-5 11.9-16.6 19.7-29.5 19.7H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H69.3c38.8 0 73.7-23.3 88.6-59.1L213.3 288H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H240l45.1-108.3c5-11.9 16.6-19.7 29.5-19.7H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H314.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fly": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f417", + "label": "Fly", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "folder": { + "aliases": { + "names": [ + "folder-blank" + ], + "unicodes": { + "composite": [ + "1f4c1", + "1f5bf", + "f114" + ], + "secondary": [ + "10f07b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Folder", + "archive", + "directory", + "document", + "file", + "file folder", + "folder" + ] + }, + "unicode": "f07b", + "label": "Folder", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 480H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H288c-10.1 0-19.6-4.7-25.6-12.8L243.2 57.6C231.1 41.5 212.1 32 192 32H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H196.1c19.1 0 37.4 7.6 50.9 21.1L289.9 96H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16H286.6c-10.6 0-20.8-4.2-28.3-11.7L213.1 87c-4.5-4.5-10.6-7-17-7H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "folder-closed": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "file" + ] + }, + "unicode": "e185", + "label": "Folder Closed", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 480H64c-35.3 0-64-28.7-64-64V192H512V416c0 35.3-28.7 64-64 64zm64-320H0V96C0 60.7 28.7 32 64 32H192c20.1 0 39.1 9.5 51.2 25.6l19.2 25.6c6 8.1 15.5 12.8 25.6 12.8H448c35.3 0 64 28.7 64 64z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H289.9L247 53.1C233.5 39.6 215.2 32 196.1 32H64zM48 96c0-8.8 7.2-16 16-16H196.1c6.4 0 12.5 2.5 17 7l45.3 45.3c7.5 7.5 17.7 11.7 28.3 11.7H448c8.8 0 16 7.2 16 16v32H48V96zm0 144H464V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V240z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "folder-minus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f65d" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "delete", + "directory", + "document", + "file", + "negative", + "remove" + ] + }, + "unicode": "f65d", + "label": "Folder Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 480H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H192c20.1 0 39.1 9.5 51.2 25.6l19.2 25.6c6 8.1 15.5 12.8 25.6 12.8H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64zM184 272c-13.3 0-24 10.7-24 24s10.7 24 24 24H328c13.3 0 24-10.7 24-24s-10.7-24-24-24H184z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "folder-open": { + "aliases": { + "unicodes": { + "composite": [ + "1f4c2", + "1f5c1", + "f115" + ], + "secondary": [ + "10f07c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Open Folder", + "archive", + "directory", + "document", + "empty", + "file", + "folder", + "new", + "open", + "open file folder" + ] + }, + "unicode": "f07c", + "label": "Folder Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M88.7 223.8L0 375.8V96C0 60.7 28.7 32 64 32H181.5c17 0 33.3 6.7 45.3 18.7l26.5 26.5c12 12 28.3 18.7 45.3 18.7H416c35.3 0 64 28.7 64 64v32H144c-22.8 0-43.8 12.1-55.3 31.8zm27.6 16.1C122.1 230 132.6 224 144 224H544c11.5 0 22 6.1 27.7 16.1s5.7 22.2-.1 32.1l-112 192C453.9 474 443.4 480 432 480H32c-11.5 0-22-6.1-27.7-16.1s-5.7-22.2 .1-32.1l112-192z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 480h48c11.4 0 21.9-6 27.6-15.9l112-192c5.8-9.9 5.8-22.1 .1-32.1S555.5 224 544 224H144c-11.4 0-21.9 6-27.6 15.9L48 357.1V96c0-8.8 7.2-16 16-16H181.5c4.2 0 8.3 1.7 11.3 4.7l26.5 26.5c21 21 49.5 32.8 79.2 32.8H416c8.8 0 16 7.2 16 16v32h48V160c0-35.3-28.7-64-64-64H298.5c-17 0-33.3-6.7-45.3-18.7L226.7 50.7c-12-12-28.3-18.7-45.3-18.7H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H87.7 384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "folder-plus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f65e" + ] + } + }, + "changes": [ + "5.3.0", + "5.11.0", + "5.12.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "archive", + "create", + "directory", + "document", + "file", + "new", + "positive" + ] + }, + "unicode": "f65e", + "label": "Folder Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H192c20.1 0 39.1 9.5 51.2 25.6l19.2 25.6c6 8.1 15.5 12.8 25.6 12.8H448c35.3 0 64 28.7 64 64V416zM232 376c0 13.3 10.7 24 24 24s24-10.7 24-24V312h64c13.3 0 24-10.7 24-24s-10.7-24-24-24H280V200c0-13.3-10.7-24-24-24s-24 10.7-24 24v64H168c-13.3 0-24 10.7-24 24s10.7 24 24 24h64v64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "folder-tree": { + "aliases": { + "unicodes": { + "secondary": [ + "10f802" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "directory", + "document", + "file", + "search", + "structure" + ] + }, + "unicode": "f802", + "label": "Folder Tree", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32v96V384c0 35.3 28.7 64 64 64H256V384H64V160H256V96H64V32zM288 192c0 17.7 14.3 32 32 32H544c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H445.3c-8.5 0-16.6-3.4-22.6-9.4L409.4 9.4c-6-6-14.1-9.4-22.6-9.4H320c-17.7 0-32 14.3-32 32V192zm0 288c0 17.7 14.3 32 32 32H544c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32H445.3c-8.5 0-16.6-3.4-22.6-9.4l-13.3-13.3c-6-6-14.1-9.4-22.6-9.4H320c-17.7 0-32 14.3-32 32V480z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "font": { + "aliases": { + "unicodes": { + "secondary": [ + "10f031" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabet", + "glyph", + "text", + "type", + "typeface" + ] + }, + "unicode": "f031", + "label": "Font", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M254 52.8C249.3 40.3 237.3 32 224 32s-25.3 8.3-30 20.8L57.8 416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-1.8l18-48H303.8l18 48H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H390.2L254 52.8zM279.8 304H168.2L224 155.1 279.8 304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "font-awesome": { + "aliases": { + "names": [ + "font-awesome-flag", + "font-awesome-logo-full" + ], + "unicodes": { + "composite": [ + "f425", + "f4e6" + ], + "primary": [ + "f4e6" + ], + "secondary": [ + "10f2b4", + "10f4e6" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.15.4", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "awesome", + "flag", + "font", + "icons", + "typeface" + ] + }, + "unicode": "f2b4", + "label": "Font Awesome", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 48V384c-63.1 22.5-82.3 32-119.5 32c-62.8 0-86.6-32-149.3-32c-20.6 0-36.6 3.6-51.2 8.2v-64c14.6-4.6 30.6-8.2 51.2-8.2c62.7 0 86.5 32 149.3 32c20.4 0 35.6-3 55.5-9.3v-208c-19.9 6.3-35.1 9.3-55.5 9.3c-62.8 0-86.6-32-149.3-32c-50.8 0-74.9 20.6-115.2 28.7V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 46.3 14.3 32 32 32s32 14.3 32 32V76.7c40.3-8 64.4-28.7 115.2-28.7c62.7 0 86.5 32 149.3 32c37.1 0 56.4-9.5 119.5-32z" + }, + "regular": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 56c0-13.3-10.7-24-24-24S0 42.7 0 56V456c0 13.3 10.7 24 24 24s24-10.7 24-24V124.2l12.5-2.4c16.7-3.2 31.5-8.5 44.2-13.1l0 0 0 0c3.7-1.3 7.1-2.6 10.4-3.7c15.2-5.2 30.4-9.1 51.2-9.1c25.6 0 43 6 63.5 13.3l.5 .2c20.9 7.4 44.8 15.9 79.1 15.9c32.3 0 53.7-6.8 90.5-19.6V342.9l-9.5 3.3c-41.5 14.4-55.2 19.2-81 19.2c-25.7 0-43.1-6-63.6-13.3l-.6-.2c-20.8-7.4-44.8-15.8-79-15.8c-16.8 0-31 2-43.9 5c-12.9 3-20.9 16-17.9 28.9s16 20.9 28.9 17.9c9.6-2.2 20.1-3.7 32.9-3.7c25.6 0 43 6 63.5 13.3l.5 .2c20.9 7.4 44.8 15.9 79.1 15.9c34.4 0 56.4-7.7 97.8-22.2c7.5-2.6 15.5-5.4 24.4-8.5l16.2-5.5V360 72 38.4L416.2 49.3c-9.7 3.3-18.2 6.3-25.7 8.9c-41.5 14.4-55.2 19.2-81 19.2c-25.7 0-43.1-6-63.6-13.3l-.6-.2c-20.8-7.4-44.8-15.8-79-15.8c-27.8 0-48.5 5.5-66.6 11.6c-4.9 1.7-9.3 3.3-13.6 4.8c-11.9 4.3-22 7.9-34.7 10.3L48 75.4V56z" + }, + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 48V384C385 407 366 416 329 416C266 416 242 384 179 384C159 384 143 388 128 392V328C143 324 159 320 179 320C242 320 266 352 329 352C349 352 364 349 384 343V135C364 141 349 144 329 144C266 144 242 112 179 112C128 112 104 133 64 141V448C64 466 50 480 32 480S0 466 0 448V64C0 46 14 32 32 32S64 46 64 64V77C104 69 128 48 179 48C242 48 266 80 329 80C366 80 385 71 448 48Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + }, + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fonticons": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f280", + "label": "Fonticons", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32zm187 140.9c-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23zm74.3 241.8v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm80.8-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fonticons-fi": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a2", + "label": "Fonticons Fi", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "football": { + "aliases": { + "names": [ + "football-ball" + ], + "unicodes": { + "composite": [ + "1f3c8" + ], + "secondary": [ + "10f44e" + ] + } + }, + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "american football", + "ball", + "fall", + "football", + "nfl", + "pigskin", + "seasonal" + ] + }, + "unicode": "f44e", + "label": "Football", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321823, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M247.5 25.4c-13.5 3.3-26.4 7.2-38.6 11.7C142.9 61.6 96.7 103.6 66 153.6c-18.3 29.8-30.9 62.3-39.2 95.4L264.5 486.6c13.5-3.3 26.4-7.2 38.6-11.7c66-24.5 112.2-66.5 142.9-116.5c18.3-29.8 30.9-62.3 39.1-95.3L247.5 25.4zM495.2 205.3c6.1-56.8 1.4-112.2-7.7-156.4c-2.7-12.9-13-22.9-26.1-25.1c-58.2-9.7-109.9-12-155.6-7.9L495.2 205.3zM206.1 496L16.8 306.7c-6.1 56.8-1.4 112.2 7.7 156.4c2.7 12.9 13 22.9 26.1 25.1c58.2 9.7 109.9 12 155.6 7.9zm54.6-331.3c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6zm-48 48c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6zm-48 48c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fort-awesome": { + "changes": [ + "4.5.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [ + "castle" + ] + }, + "unicode": "f286", + "label": "Fort Awesome", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fort-awesome-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "castle" + ] + }, + "unicode": "f3a3", + "label": "Alternate Fort Awesome", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208 237.4h-22.2c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7H208c2.1 0 3.7-1.6 3.7-3.7v-51.7c0-2.1-1.6-3.7-3.7-3.7zm118.2 0H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm132-125.1c-2.3-3.2-4.6-6.4-7.1-9.5-9.8-12.5-20.8-24-32.8-34.4-4.5-3.9-9.1-7.6-13.9-11.2-1.6-1.2-3.2-2.3-4.8-3.5C372 34.1 340.3 20 306 13c-16.2-3.3-32.9-5-50-5s-33.9 1.7-50 5c-34.3 7.1-66 21.2-93.3 40.8-1.6 1.1-3.2 2.3-4.8 3.5-4.8 3.6-9.4 7.3-13.9 11.2-3 2.6-5.9 5.3-8.8 8s-5.7 5.5-8.4 8.4c-5.5 5.7-10.7 11.8-15.6 18-2.4 3.1-4.8 6.3-7.1 9.5C25.2 153 8.3 202.5 8.3 256c0 2 .1 4 .1 6 .1.7.1 1.3.1 2 .1 1.3.1 2.7.2 4 0 .8.1 1.5.1 2.3 0 1.3.1 2.5.2 3.7.1.8.1 1.6.2 2.4.1 1.1.2 2.3.3 3.5 0 .8.1 1.6.2 2.4.1 1.2.3 2.4.4 3.6.1.8.2 1.5.3 2.3.1 1.3.3 2.6.5 3.9.1.6.2 1.3.3 1.9l.9 5.7c.1.6.2 1.1.3 1.7.3 1.3.5 2.7.8 4 .2.8.3 1.6.5 2.4.2 1 .5 2.1.7 3.2.2.9.4 1.7.6 2.6.2 1 .4 2 .7 3 .2.9.5 1.8.7 2.7.3 1 .5 1.9.8 2.9.3.9.5 1.8.8 2.7.2.9.5 1.9.8 2.8s.5 1.8.8 2.7c.3 1 .6 1.9.9 2.8.6 1.6 1.1 3.3 1.7 4.9.4 1 .7 1.9 1 2.8.3 1 .7 2 1.1 3 .3.8.6 1.5.9 2.3l1.2 3c.3.7.6 1.5.9 2.2.4 1 .9 2 1.3 3l.9 2.1c.5 1 .9 2 1.4 3 .3.7.6 1.3.9 2 .5 1 1 2.1 1.5 3.1.2.6.5 1.1.8 1.7.6 1.1 1.1 2.2 1.7 3.3.1.2.2.3.3.5 2.2 4.1 4.4 8.2 6.8 12.2.2.4.5.8.7 1.2.7 1.1 1.3 2.2 2 3.3.3.5.6.9.9 1.4.6 1.1 1.3 2.1 2 3.2.3.5.6.9.9 1.4.7 1.1 1.4 2.1 2.1 3.2.2.4.5.8.8 1.2.7 1.1 1.5 2.2 2.3 3.3.2.2.3.5.5.7 37.5 51.7 94.4 88.5 160 99.4.9.1 1.7.3 2.6.4 1 .2 2.1.4 3.1.5s1.9.3 2.8.4c1 .2 2 .3 3 .4.9.1 1.9.2 2.9.3s1.9.2 2.9.3 2.1.2 3.1.3c.9.1 1.8.1 2.7.2 1.1.1 2.3.1 3.4.2.8 0 1.7.1 2.5.1 1.3 0 2.6.1 3.9.1.7.1 1.4.1 2.1.1 2 .1 4 .1 6 .1s4-.1 6-.1c.7 0 1.4-.1 2.1-.1 1.3 0 2.6 0 3.9-.1.8 0 1.7-.1 2.5-.1 1.1-.1 2.3-.1 3.4-.2.9 0 1.8-.1 2.7-.2 1-.1 2.1-.2 3.1-.3s1.9-.2 2.9-.3c.9-.1 1.9-.2 2.9-.3s2-.3 3-.4 1.9-.3 2.8-.4c1-.2 2.1-.3 3.1-.5.9-.1 1.7-.3 2.6-.4 65.6-11 122.5-47.7 160.1-102.4.2-.2.3-.5.5-.7.8-1.1 1.5-2.2 2.3-3.3.2-.4.5-.8.8-1.2.7-1.1 1.4-2.1 2.1-3.2.3-.5.6-.9.9-1.4.6-1.1 1.3-2.1 2-3.2.3-.5.6-.9.9-1.4.7-1.1 1.3-2.2 2-3.3.2-.4.5-.8.7-1.2 2.4-4 4.6-8.1 6.8-12.2.1-.2.2-.3.3-.5.6-1.1 1.1-2.2 1.7-3.3.2-.6.5-1.1.8-1.7.5-1 1-2.1 1.5-3.1.3-.7.6-1.3.9-2 .5-1 1-2 1.4-3l.9-2.1c.5-1 .9-2 1.3-3 .3-.7.6-1.5.9-2.2l1.2-3c.3-.8.6-1.5.9-2.3.4-1 .7-2 1.1-3s.7-1.9 1-2.8c.6-1.6 1.2-3.3 1.7-4.9.3-1 .6-1.9.9-2.8s.5-1.8.8-2.7c.2-.9.5-1.9.8-2.8s.6-1.8.8-2.7c.3-1 .5-1.9.8-2.9.2-.9.5-1.8.7-2.7.2-1 .5-2 .7-3 .2-.9.4-1.7.6-2.6.2-1 .5-2.1.7-3.2.2-.8.3-1.6.5-2.4.3-1.3.6-2.7.8-4 .1-.6.2-1.1.3-1.7l.9-5.7c.1-.6.2-1.3.3-1.9.1-1.3.3-2.6.5-3.9.1-.8.2-1.5.3-2.3.1-1.2.3-2.4.4-3.6 0-.8.1-1.6.2-2.4.1-1.1.2-2.3.3-3.5.1-.8.1-1.6.2-2.4.1 1.7.1.5.2-.7 0-.8.1-1.5.1-2.3.1-1.3.2-2.7.2-4 .1-.7.1-1.3.1-2 .1-2 .1-4 .1-6 0-53.5-16.9-103-45.8-143.7zM448 371.5c-9.4 15.5-20.6 29.9-33.6 42.9-20.6 20.6-44.5 36.7-71.2 48-13.9 5.8-28.2 10.3-42.9 13.2v-75.8c0-58.6-88.6-58.6-88.6 0v75.8c-14.7-2.9-29-7.3-42.9-13.2-26.7-11.3-50.6-27.4-71.2-48-13-13-24.2-27.4-33.6-42.9v-71.3c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7V326h29.6V182c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-4.8 6.5-3.7 9.5-3.7V88.1c-4.4-2-7.4-6.7-7.4-11.5 0-16.8 25.4-16.8 25.4 0 0 4.8-3 9.4-7.4 11.5V92c6.3-1.4 12.7-2.3 19.2-2.3 9.4 0 18.4 3.5 26.3 3.5 7.2 0 15.2-3.5 19.4-3.5 2.1 0 3.7 1.6 3.7 3.7v48.4c0 5.6-18.7 6.5-22.4 6.5-8.6 0-16.6-3.5-25.4-3.5-7 0-14.1 1.2-20.8 2.8v30.7c3 0 9.5-1.1 9.5 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7h22.2c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7v144h29.5v-25.8c0-2.1 1.6-3.7 3.7-3.7h22.2c2.1 0 3.7 1.6 3.7 3.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "forumbee": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f211", + "label": "Forumbee", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "forward": { + "aliases": { + "unicodes": { + "composite": [ + "23e9" + ], + "secondary": [ + "10f04e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "double", + "fast", + "fast-forward button", + "forward", + "next", + "skip" + ] + }, + "unicode": "f04e", + "label": "Forward", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M52.5 440.6c-9.5 7.9-22.8 9.7-34.1 4.4S0 428.4 0 416V96C0 83.6 7.2 72.3 18.4 67s24.5-3.6 34.1 4.4L224 214.3V256v41.7L52.5 440.6zM256 352V256 128 96c0-12.4 7.2-23.7 18.4-29s24.5-3.6 34.1 4.4l192 160c7.3 6.1 11.5 15.1 11.5 24.6s-4.2 18.5-11.5 24.6l-192 160c-9.5 7.9-22.8 9.7-34.1 4.4s-18.4-16.6-18.4-29V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "forward-fast": { + "aliases": { + "names": [ + "fast-forward" + ], + "unicodes": { + "composite": [ + "23ed" + ], + "secondary": [ + "10f050" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "end", + "last", + "next", + "next scene", + "next track", + "next track button", + "triangle" + ] + }, + "unicode": "f050", + "label": "Forward Fast", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M18.4 445c11.2 5.3 24.5 3.6 34.1-4.4L224 297.7V416c0 12.4 7.2 23.7 18.4 29s24.5 3.6 34.1-4.4L448 297.7V416c0 17.7 14.3 32 32 32s32-14.3 32-32V96c0-17.7-14.3-32-32-32s-32 14.3-32 32V214.3L276.5 71.4c-9.5-7.9-22.8-9.7-34.1-4.4S224 83.6 224 96V214.3L52.5 71.4c-9.5-7.9-22.8-9.7-34.1-4.4S0 83.6 0 96V416c0 12.4 7.2 23.7 18.4 29z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "forward-step": { + "aliases": { + "names": [ + "step-forward" + ], + "unicodes": { + "secondary": [ + "10f051" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "end", + "last", + "next" + ] + }, + "unicode": "f051", + "label": "Forward Step", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M52.5 440.6c-9.5 7.9-22.8 9.7-34.1 4.4S0 428.4 0 416V96C0 83.6 7.2 72.3 18.4 67s24.5-3.6 34.1 4.4l192 160L256 241V96c0-17.7 14.3-32 32-32s32 14.3 32 32V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V271l-11.5 9.6-192 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "foursquare": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f180", + "label": "Foursquare", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 368, + 512 + ], + "width": 368, + "height": 512, + "path": "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "franc-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "French Franc Sign", + "currency" + ] + }, + "unicode": "e18f", + "label": "Franc Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M80 32C62.3 32 48 46.3 48 64V224v96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v64c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V256H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "free-code-camp": { + "changes": [ + "4.7.0", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2c5", + "label": "freeCodeCamp", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M97.22,96.21c10.36-10.65,16-17.12,16-21.9,0-2.76-1.92-5.51-3.83-7.42A14.81,14.81,0,0,0,101,64.05c-8.48,0-20.92,8.79-35.84,25.69C23.68,137,2.51,182.81,3.37,250.34s17.47,117,54.06,161.87C76.22,435.86,90.62,448,100.9,448a13.55,13.55,0,0,0,8.37-3.84c1.91-2.76,3.81-5.63,3.81-8.38,0-5.63-3.86-12.2-13.2-20.55-44.45-42.33-67.32-97-67.48-165C32.25,188.8,54,137.83,97.22,96.21ZM239.47,420.07c.58.37.91.55.91.55Zm93.79.55.17-.13C333.24,420.62,333.17,420.67,333.26,420.62Zm3.13-158.18c-16.24-4.15,50.41-82.89-68.05-177.17,0,0,15.54,49.38-62.83,159.57-74.27,104.35,23.46,168.73,34,175.23-6.73-4.35-47.4-35.7,9.55-128.64,11-18.3,25.53-34.87,43.5-72.16,0,0,15.91,22.45,7.6,71.13C287.7,364,354,342.91,355,343.94c22.75,26.78-17.72,73.51-21.58,76.55,5.49-3.65,117.71-78,33-188.1C360.43,238.4,352.62,266.59,336.39,262.44ZM510.88,89.69C496,72.79,483.52,64,475,64a14.81,14.81,0,0,0-8.39,2.84c-1.91,1.91-3.83,4.66-3.83,7.42,0,4.78,5.6,11.26,16,21.9,43.23,41.61,65,92.59,64.82,154.06-.16,68-23,122.63-67.48,165-9.34,8.35-13.18,14.92-13.2,20.55,0,2.75,1.9,5.62,3.81,8.38A13.61,13.61,0,0,0,475.1,448c10.28,0,24.68-12.13,43.47-35.79,36.59-44.85,53.14-94.38,54.06-161.87S552.32,137,510.88,89.69Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "freebsd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a4", + "label": "FreeBSD", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "frog": { + "aliases": { + "unicodes": { + "secondary": [ + "10f52e" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "amphibian", + "bullfrog", + "fauna", + "hop", + "kermit", + "kiss", + "prince", + "ribbit", + "toad", + "wart" + ] + }, + "unicode": "f52e", + "label": "Frog", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M368 32c41.7 0 75.9 31.8 79.7 72.5l85.6 26.3c25.4 7.8 42.8 31.3 42.8 57.9c0 21.8-11.7 41.9-30.7 52.7L400.8 323.5 493.3 416H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H480c-8.5 0-16.6-3.4-22.6-9.4L346.9 360.2c11.7-36 3.2-77.1-25.4-105.7c-40.6-40.6-106.3-40.6-146.9-.1L101 324.4c-6.4 6.1-6.7 16.2-.6 22.6s16.2 6.6 22.6 .6l73.8-70.2 .1-.1 .1-.1c3.5-3.5 7.3-6.6 11.3-9.2c27.9-18.5 65.9-15.4 90.5 9.2c24.7 24.7 27.7 62.9 9 90.9c-2.6 3.8-5.6 7.5-9 10.9L261.8 416H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-35.3 0-64-28.7-64-64C0 249.6 127 112.9 289.3 97.5C296.2 60.2 328.8 32 368 32zm0 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fulcrum": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f50b", + "label": "Fulcrum", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M95.75 164.14l-35.38 43.55L25 164.14l35.38-43.55zM144.23 0l-20.54 198.18L72.72 256l51 57.82L144.23 512V300.89L103.15 256l41.08-44.89zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55zm-48.48 47L216.5 256l-41.08 44.89V512L196 313.82 247 256l-51-57.82L175.42 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "futbol": { + "aliases": { + "names": [ + "futbol-ball", + "soccer-ball" + ], + "unicodes": { + "composite": [ + "26bd" + ], + "secondary": [ + "10f1e3" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "football", + "mls", + "soccer", + "soccer ball" + ] + }, + "unicode": "f1e3", + "label": "Futbol", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321824, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M417.3 360.1l-71.6-4.8c-5.2-.3-10.3 1.1-14.5 4.2s-7.2 7.4-8.4 12.5l-17.6 69.6C289.5 445.8 273 448 256 448s-33.5-2.2-49.2-6.4L189.2 372c-1.3-5-4.3-9.4-8.4-12.5s-9.3-4.5-14.5-4.2l-71.6 4.8c-17.6-27.2-28.5-59.2-30.4-93.6L125 228.3c4.4-2.8 7.6-7 9.2-11.9s1.4-10.2-.5-15l-26.7-66.6C128 109.2 155.3 89 186.7 76.9l55.2 46c4 3.3 9 5.1 14.1 5.1s10.2-1.8 14.1-5.1l55.2-46c31.3 12.1 58.7 32.3 79.6 57.9l-26.7 66.6c-1.9 4.8-2.1 10.1-.5 15s4.9 9.1 9.2 11.9l60.7 38.2c-1.9 34.4-12.8 66.4-30.4 93.6zM256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zm14.1-325.7c-8.4-6.1-19.8-6.1-28.2 0L194 221c-8.4 6.1-11.9 16.9-8.7 26.8l18.3 56.3c3.2 9.9 12.4 16.6 22.8 16.6h59.2c10.4 0 19.6-6.7 22.8-16.6l18.3-56.3c3.2-9.9-.3-20.7-8.7-26.8l-47.9-34.8z" + }, + "regular": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M177.1 228.6L207.9 320h96.5l29.62-91.38L256 172.1L177.1 228.6zM255.1 0C114.6 0 .0001 114.6 .0001 256S114.6 512 256 512s255.1-114.6 255.1-255.1S397.4 0 255.1 0zM435.2 361.1l-103.9-1.578l-30.67 99.52C286.2 462.2 271.3 464 256 464s-30.19-1.773-44.56-4.93L180.8 359.6L76.83 361.1c-14.93-25.35-24.79-54.01-27.8-84.72L134.3 216.4L100.7 118.1c19.85-22.34 44.32-40.45 72.04-52.62L256 128l83.29-62.47c27.72 12.17 52.19 30.27 72.04 52.62L377.7 216.4l85.23 59.97C459.1 307.1 450.1 335.8 435.2 361.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "g": { + "aliases": { + "unicodes": { + "composite": [ + "67" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter G", + "Latin Small Letter G", + "letter" + ] + }, + "unicode": "47", + "label": "G", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 96C135.6 96 64 167.6 64 256s71.6 160 160 160c77.4 0 142-55 156.8-128H256c-17.7 0-32-14.3-32-32s14.3-32 32-32H400c25.8 0 49.6 21.4 47.2 50.6C437.8 389.6 341.4 480 224 480C100.3 480 0 379.7 0 256S100.3 32 224 32c57.4 0 109.7 21.6 149.3 57c13.2 11.8 14.3 32 2.5 45.2s-32 14.3-45.2 2.5C302.3 111.4 265 96 224 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "galactic-republic": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [ + "politics", + "star wars" + ] + }, + "unicode": "f50c", + "label": "Galactic Republic", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "galactic-senate": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [ + "star wars" + ] + }, + "unicode": "f50d", + "label": "Galactic Senate", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gamepad": { + "aliases": { + "unicodes": { + "secondary": [ + "10f11b" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arcade", + "controller", + "d-pad", + "joystick", + "video", + "video game" + ] + }, + "unicode": "f11b", + "label": "Gamepad", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321824, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 64C86 64 0 150 0 256S86 448 192 448H448c106 0 192-86 192-192s-86-192-192-192H192zM496 248c-22.1 0-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40s-17.9 40-40 40zm-24 56c0 22.1-17.9 40-40 40s-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40zM168 200c0-13.3 10.7-24 24-24s24 10.7 24 24v32h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H216v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H136c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V200z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gas-pump": { + "aliases": { + "unicodes": { + "composite": [ + "26fd" + ], + "secondary": [ + "10f52f" + ] + } + }, + "changes": [ + "5.0.13", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "car", + "diesel", + "fuel", + "fuel pump", + "fuelpump", + "gas", + "gasoline", + "petrol", + "pump", + "station" + ] + }, + "unicode": "f52f", + "label": "Gas Pump", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 64C32 28.7 60.7 0 96 0H256c35.3 0 64 28.7 64 64V256h8c48.6 0 88 39.4 88 88v32c0 13.3 10.7 24 24 24s24-10.7 24-24V222c-27.6-7.1-48-32.2-48-62V96L384 64c-8.8-8.8-8.8-23.2 0-32s23.2-8.8 32 0l77.3 77.3c12 12 18.7 28.3 18.7 45.3V168v24 32V376c0 39.8-32.2 72-72 72s-72-32.2-72-72V344c0-22.1-17.9-40-40-40h-8V448c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V64zM96 80v96c0 8.8 7.2 16 16 16H240c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H112c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gauge": { + "aliases": { + "names": [ + "dashboard", + "gauge-med", + "tachometer-alt-average" + ], + "unicodes": { + "secondary": [ + "10f624" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "fast", + "odometer", + "speed", + "speedometer" + ] + }, + "unicode": "f624", + "label": "Gauge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm320 96c0-26.9-16.5-49.9-40-59.3V88c0-13.3-10.7-24-24-24s-24 10.7-24 24V292.7c-23.5 9.5-40 32.5-40 59.3c0 35.3 28.7 64 64 64s64-28.7 64-64zM144 176a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm-16 80a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM400 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gauge-high": { + "aliases": { + "names": [ + "tachometer-alt", + "tachometer-alt-fast" + ], + "unicodes": { + "composite": [ + "f3fd" + ], + "primary": [ + "f3fd" + ], + "secondary": [ + "10f3fd", + "10f625" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "fast", + "odometer", + "speed", + "speedometer" + ] + }, + "unicode": "f625", + "label": "Gauge High", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM256 416c35.3 0 64-28.7 64-64c0-17.4-6.9-33.1-18.1-44.6L366 161.7c5.3-12.1-.2-26.3-12.3-31.6s-26.3 .2-31.6 12.3L257.9 288c-.6 0-1.3 0-1.9 0c-35.3 0-64 28.7-64 64s28.7 64 64 64zM176 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM96 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm352-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gauge-simple": { + "aliases": { + "names": [ + "gauge-simple-med", + "tachometer-average" + ], + "unicodes": { + "secondary": [ + "10f629" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "fast", + "odometer", + "speed", + "speedometer" + ] + }, + "unicode": "f629", + "label": "Gauge Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm320 96c0-26.9-16.5-49.9-40-59.3V88c0-13.3-10.7-24-24-24s-24 10.7-24 24V292.7c-23.5 9.5-40 32.5-40 59.3c0 35.3 28.7 64 64 64s64-28.7 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gauge-simple-high": { + "aliases": { + "names": [ + "tachometer", + "tachometer-fast" + ], + "unicodes": { + "composite": [ + "f0e4" + ], + "primary": [ + "f0e4" + ], + "secondary": [ + "10f0e4", + "10f62a" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "fast", + "odometer", + "speed", + "speedometer" + ] + }, + "unicode": "f62a", + "label": "Gauge Simple High", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm320 96c0-15.9-5.8-30.4-15.3-41.6l76.6-147.4c6.1-11.8 1.5-26.3-10.2-32.4s-26.2-1.5-32.4 10.2L262.1 288.3c-2-.2-4-.3-6.1-.3c-35.3 0-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gavel": { + "aliases": { + "names": [ + "legal" + ], + "unicodes": { + "secondary": [ + "10f0e3" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hammer", + "judge", + "law", + "lawyer", + "opinion" + ] + }, + "unicode": "f0e3", + "label": "Gavel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M318.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-120 120c-12.5 12.5-12.5 32.8 0 45.3l16 16c12.5 12.5 32.8 12.5 45.3 0l4-4L325.4 293.4l-4 4c-12.5 12.5-12.5 32.8 0 45.3l16 16c12.5 12.5 32.8 12.5 45.3 0l120-120c12.5-12.5 12.5-32.8 0-45.3l-16-16c-12.5-12.5-32.8-12.5-45.3 0l-4 4L330.6 74.6l4-4c12.5-12.5 12.5-32.8 0-45.3l-16-16zm-152 288c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l48 48c12.5 12.5 32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-1.4-1.4L272 285.3 226.7 240 168 298.7l-1.4-1.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gear": { + "aliases": { + "names": [ + "cog" + ], + "unicodes": { + "composite": [ + "2699" + ], + "secondary": [ + "10f013" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cog", + "cogwheel", + "gear", + "mechanical", + "settings", + "sprocket", + "tool", + "wheel" + ] + }, + "unicode": "f013", + "label": "Gear", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M481.9 166.6c3.2 8.7 .5 18.4-6.4 24.6l-30.9 28.1c-7.7 7.1-11.4 17.5-10.9 27.9c.1 2.9 .2 5.8 .2 8.8s-.1 5.9-.2 8.8c-.5 10.5 3.1 20.9 10.9 27.9l30.9 28.1c6.9 6.2 9.6 15.9 6.4 24.6c-4.4 11.9-9.7 23.3-15.8 34.3l-4.7 8.1c-6.6 11-14 21.4-22.1 31.2c-5.9 7.2-15.7 9.6-24.5 6.8l-39.7-12.6c-10-3.2-20.8-1.1-29.7 4.6c-4.9 3.1-9.9 6.1-15.1 8.7c-9.3 4.8-16.5 13.2-18.8 23.4l-8.9 40.7c-2 9.1-9 16.3-18.2 17.8c-13.8 2.3-28 3.5-42.5 3.5s-28.7-1.2-42.5-3.5c-9.2-1.5-16.2-8.7-18.2-17.8l-8.9-40.7c-2.2-10.2-9.5-18.6-18.8-23.4c-5.2-2.7-10.2-5.6-15.1-8.7c-8.8-5.7-19.7-7.8-29.7-4.6L69.1 425.9c-8.8 2.8-18.6 .3-24.5-6.8c-8.1-9.8-15.5-20.2-22.1-31.2l-4.7-8.1c-6.1-11-11.4-22.4-15.8-34.3c-3.2-8.7-.5-18.4 6.4-24.6l30.9-28.1c7.7-7.1 11.4-17.5 10.9-27.9c-.1-2.9-.2-5.8-.2-8.8s.1-5.9 .2-8.8c.5-10.5-3.1-20.9-10.9-27.9L8.4 191.2c-6.9-6.2-9.6-15.9-6.4-24.6c4.4-11.9 9.7-23.3 15.8-34.3l4.7-8.1c6.6-11 14-21.4 22.1-31.2c5.9-7.2 15.7-9.6 24.5-6.8l39.7 12.6c10 3.2 20.8 1.1 29.7-4.6c4.9-3.1 9.9-6.1 15.1-8.7c9.3-4.8 16.5-13.2 18.8-23.4l8.9-40.7c2-9.1 9-16.3 18.2-17.8C213.3 1.2 227.5 0 242 0s28.7 1.2 42.5 3.5c9.2 1.5 16.2 8.7 18.2 17.8l8.9 40.7c2.2 10.2 9.4 18.6 18.8 23.4c5.2 2.7 10.2 5.6 15.1 8.7c8.8 5.7 19.7 7.7 29.7 4.6l39.7-12.6c8.8-2.8 18.6-.3 24.5 6.8c8.1 9.8 15.5 20.2 22.1 31.2l4.7 8.1c6.1 11 11.4 22.4 15.8 34.3zM242 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gears": { + "aliases": { + "names": [ + "cogs" + ], + "unicodes": { + "secondary": [ + "10f085" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gears", + "mechanical", + "settings", + "sprocket", + "wheel" + ] + }, + "unicode": "f085", + "label": "Gears", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M305.5 135.3c7.1-6.3 9.9-16.2 6.2-25c-2.3-5.3-4.8-10.5-7.6-15.5L301 89.4c-3-5-6.3-9.9-9.8-14.6c-5.7-7.6-15.7-10.1-24.7-7.1l-28.2 9.3c-10.7-8.8-23-16-36.2-20.9L196 27.1c-1.9-9.3-9.1-16.7-18.5-17.8C170.9 8.4 164.2 8 157.4 8h-.7c-6.8 0-13.5 .4-20.1 1.2c-9.4 1.1-16.6 8.6-18.5 17.8L112 56.1c-13.3 5-25.5 12.1-36.2 20.9L47.5 67.8c-9-3-19-.5-24.7 7.1c-3.5 4.7-6.8 9.6-9.9 14.6l-3 5.3c-2.8 5-5.3 10.2-7.6 15.6c-3.7 8.7-.9 18.6 6.2 25l22.2 19.8C29.6 161.9 29 168.9 29 176s.6 14.1 1.7 20.9L8.5 216.7c-7.1 6.3-9.9 16.2-6.2 25c2.3 5.3 4.8 10.5 7.6 15.6l3 5.2c3 5.1 6.3 9.9 9.9 14.6c5.7 7.6 15.7 10.1 24.7 7.1l28.2-9.3c10.7 8.8 23 16 36.2 20.9l6.1 29.1c1.9 9.3 9.1 16.7 18.5 17.8c6.7 .8 13.5 1.2 20.4 1.2s13.7-.4 20.4-1.2c9.4-1.1 16.6-8.6 18.5-17.8l6.1-29.1c13.3-5 25.5-12.1 36.2-20.9l28.2 9.3c9 3 19 .5 24.7-7.1c3.5-4.7 6.8-9.5 9.8-14.6l3.1-5.4c2.8-5 5.3-10.2 7.6-15.5c3.7-8.7 .9-18.6-6.2-25l-22.2-19.8c1.1-6.8 1.7-13.8 1.7-20.9s-.6-14.1-1.7-20.9l22.2-19.8zM109 176a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM501.7 500.5c6.3 7.1 16.2 9.9 25 6.2c5.3-2.3 10.5-4.8 15.5-7.6l5.4-3.1c5-3 9.9-6.3 14.6-9.8c7.6-5.7 10.1-15.7 7.1-24.7l-9.3-28.2c8.8-10.7 16-23 20.9-36.2l29.1-6.1c9.3-1.9 16.7-9.1 17.8-18.5c.8-6.7 1.2-13.5 1.2-20.4s-.4-13.7-1.2-20.4c-1.1-9.4-8.6-16.6-17.8-18.5L580.9 307c-5-13.3-12.1-25.5-20.9-36.2l9.3-28.2c3-9 .5-19-7.1-24.7c-4.7-3.5-9.6-6.8-14.6-9.9l-5.3-3c-5-2.8-10.2-5.3-15.6-7.6c-8.7-3.7-18.6-.9-25 6.2l-19.8 22.2c-6.8-1.1-13.8-1.7-20.9-1.7s-14.1 .6-20.9 1.7l-19.8-22.2c-6.3-7.1-16.2-9.9-25-6.2c-5.3 2.3-10.5 4.8-15.6 7.6l-5.2 3c-5.1 3-9.9 6.3-14.6 9.9c-7.6 5.7-10.1 15.7-7.1 24.7l9.3 28.2c-8.8 10.7-16 23-20.9 36.2L312.1 313c-9.3 1.9-16.7 9.1-17.8 18.5c-.8 6.7-1.2 13.5-1.2 20.4s.4 13.7 1.2 20.4c1.1 9.4 8.6 16.6 17.8 18.5l29.1 6.1c5 13.3 12.1 25.5 20.9 36.2l-9.3 28.2c-3 9-.5 19 7.1 24.7c4.7 3.5 9.5 6.8 14.6 9.8l5.4 3.1c5 2.8 10.2 5.3 15.5 7.6c8.7 3.7 18.6 .9 25-6.2l19.8-22.2c6.8 1.1 13.8 1.7 20.9 1.7s14.1-.6 20.9-1.7l19.8 22.2zM461 304a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gem": { + "aliases": { + "unicodes": { + "composite": [ + "1f48e" + ], + "secondary": [ + "10f3a5" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "diamond", + "gem", + "gem stone", + "jewel", + "jewelry", + "sapphire", + "stone", + "treasure" + ] + }, + "unicode": "f3a5", + "label": "Gem", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M116.7 33.8c4.5-6.1 11.7-9.8 19.3-9.8H376c7.6 0 14.8 3.6 19.3 9.8l112 152c6.8 9.2 6.1 21.9-1.5 30.4l-232 256c-4.6 5-11 7.9-17.8 7.9s-13.2-2.9-17.8-7.9l-232-256c-7.7-8.5-8.3-21.2-1.5-30.4l112-152zm38.5 39.8c-3.3 2.5-4.2 7-2.1 10.5l57.4 95.6L63.3 192c-4.1 .3-7.3 3.8-7.3 8s3.2 7.6 7.3 8l192 16c.4 0 .9 0 1.3 0l192-16c4.1-.3 7.3-3.8 7.3-8s-3.2-7.6-7.3-8L301.5 179.8l57.4-95.6c2.1-3.5 1.2-8.1-2.1-10.5s-7.9-2-10.7 1L256 172.2 165.9 74.6c-2.8-3-7.4-3.4-10.7-1z" + }, + "regular": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M168.5 72L256 165l87.5-93h-175zM383.9 99.1L311.5 176h129L383.9 99.1zm50 124.9H256 78.1L256 420.3 433.9 224zM71.5 176h129L128.1 99.1 71.5 176zm434.3 40.1l-232 256c-4.6 5-11 7.9-17.8 7.9s-13.2-2.9-17.8-7.9l-232-256c-7.7-8.5-8.3-21.2-1.5-30.4l112-152c4.5-6.1 11.7-9.8 19.3-9.8H376c7.6 0 14.8 3.6 19.3 9.8l112 152c6.8 9.2 6.1 21.9-1.5 30.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "genderless": { + "aliases": { + "unicodes": { + "secondary": [ + "10f22d" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "androgynous", + "asexual", + "gender", + "sexless" + ] + }, + "unicode": "f22d", + "label": "Genderless", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M176 144a112 112 0 1 1 0 224 112 112 0 1 1 0-224zm0 288a176 176 0 1 0 0-352 176 176 0 1 0 0 352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "get-pocket": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f265", + "label": "Get Pocket", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gg": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f260", + "label": "GG Currency", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gg-circle": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f261", + "label": "GG Currency Circle", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ghost": { + "aliases": { + "unicodes": { + "composite": [ + "1f47b" + ], + "secondary": [ + "10f6e2" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apparition", + "blinky", + "clyde", + "creature", + "face", + "fairy tale", + "fantasy", + "floating", + "ghost", + "halloween", + "holiday", + "inky", + "monster", + "pacman", + "pinky", + "spirit" + ] + }, + "unicode": "f6e2", + "label": "Ghost", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M40.1 467.1l-11.2 9c-3.2 2.5-7.1 3.9-11.1 3.9C8 480 0 472 0 462.2V192C0 86 86 0 192 0S384 86 384 192V462.2c0 9.8-8 17.8-17.8 17.8c-4 0-7.9-1.4-11.1-3.9l-11.2-9c-13.4-10.7-32.8-9-44.1 3.9L269.3 506c-3.3 3.8-8.2 6-13.3 6s-9.9-2.2-13.3-6l-26.6-30.5c-12.7-14.6-35.4-14.6-48.2 0L141.3 506c-3.3 3.8-8.2 6-13.3 6s-9.9-2.2-13.3-6L84.2 471c-11.3-12.9-30.7-14.6-44.1-3.9zM160 192a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm96 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gift": { + "aliases": { + "unicodes": { + "composite": [ + "1f381" + ], + "secondary": [ + "10f06b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "box", + "celebration", + "christmas", + "generosity", + "gift", + "giving", + "holiday", + "party", + "present", + "wrapped", + "wrapped gift", + "xmas" + ] + }, + "unicode": "f06b", + "label": "Gift", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M190.5 68.8L225.3 128H224 152c-22.1 0-40-17.9-40-40s17.9-40 40-40h2.2c14.9 0 28.8 7.9 36.3 20.8zM64 88c0 14.4 3.5 28 9.6 40H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H480c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H438.4c6.1-12 9.6-25.6 9.6-40c0-48.6-39.4-88-88-88h-2.2c-31.9 0-61.5 16.9-77.7 44.4L256 85.5l-24.1-41C215.7 16.9 186.1 0 154.2 0H152C103.4 0 64 39.4 64 88zm336 0c0 22.1-17.9 40-40 40H288h-1.3l34.8-59.2C329.1 55.9 342.9 48 357.8 48H360c22.1 0 40 17.9 40 40zM32 288V464c0 26.5 21.5 48 48 48H224V288H32zM288 512H432c26.5 0 48-21.5 48-48V288H288V512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gifts": { + "aliases": { + "unicodes": { + "secondary": [ + "10f79c" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "christmas", + "generosity", + "giving", + "holiday", + "party", + "present", + "wrapped", + "xmas" + ] + }, + "unicode": "f79c", + "label": "Gifts", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M200.6 32C205 19.5 198.5 5.8 186 1.4S159.8 3.5 155.4 16L144.7 46.2l-9.9-29.8C130.6 3.8 117-3 104.4 1.2S85 19 89.2 31.6l8.3 25-27.4-20c-10.7-7.8-25.7-5.4-33.5 5.3s-5.4 25.7 5.3 33.5L70.2 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H200.6c-5.4-9.4-8.6-20.3-8.6-32V256c0-29.9 20.5-55 48.2-62c1.8-31 17.1-58.2 40.1-76.1C271.7 104.7 256.9 96 240 96H217.8l28.3-20.6c10.7-7.8 13.1-22.8 5.3-33.5s-22.8-13.1-33.5-5.3L192.5 55.1 200.6 32zM363.5 185.5L393.1 224H344c-13.3 0-24-10.7-24-24c0-13.1 10.8-24 24.2-24c7.6 0 14.7 3.5 19.3 9.5zM272 200c0 8.4 1.4 16.5 4.1 24H272c-26.5 0-48 21.5-48 48v80H416V256h32v96H640V272c0-26.5-21.5-48-48-48h-4.1c2.7-7.5 4.1-15.6 4.1-24c0-39.9-32.5-72-72.2-72c-22.4 0-43.6 10.4-57.3 28.2L432 195.8l-30.5-39.6c-13.7-17.8-35-28.2-57.3-28.2c-39.7 0-72.2 32.1-72.2 72zM224 464c0 26.5 21.5 48 48 48H416V384H224v80zm224 48H592c26.5 0 48-21.5 48-48V384H448V512zm96-312c0 13.3-10.7 24-24 24H470.9l29.6-38.5c4.6-5.9 11.7-9.5 19.3-9.5c13.4 0 24.2 10.9 24.2 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "git": { + "changes": [ + "4.1.0", + "5.0.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d3", + "label": "Git", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M216.29 158.39H137C97 147.9 6.51 150.63 6.51 233.18c0 30.09 15 51.23 35 61-25.1 23-37 33.85-37 49.21 0 11 4.47 21.14 17.89 26.81C8.13 383.61 0 393.35 0 411.65c0 32.11 28.05 50.82 101.63 50.82 70.75 0 111.79-26.42 111.79-73.18 0-58.66-45.16-56.5-151.63-63l13.43-21.55c27.27 7.58 118.7 10 118.7-67.89 0-18.7-7.73-31.71-15-41.07l37.41-2.84zm-63.42 241.9c0 32.06-104.89 32.1-104.89 2.43 0-8.14 5.27-15 10.57-21.54 77.71 5.3 94.32 3.37 94.32 19.11zm-50.81-134.58c-52.8 0-50.46-71.16 1.2-71.16 49.54 0 50.82 71.16-1.2 71.16zm133.3 100.51v-32.1c26.75-3.66 27.24-2 27.24-11V203.61c0-8.5-2.05-7.38-27.24-16.26l4.47-32.92H324v168.71c0 6.51.4 7.32 6.51 8.14l20.73 2.84v32.1zm52.45-244.31c-23.17 0-36.59-13.43-36.59-36.61s13.42-35.77 36.59-35.77c23.58 0 37 12.62 37 35.77s-13.42 36.61-37 36.61zM512 350.46c-17.49 8.53-43.1 16.26-66.28 16.26-48.38 0-66.67-19.5-66.67-65.46V194.75c0-5.42 1.05-4.06-31.71-4.06V154.5c35.78-4.07 50-22 54.47-66.27h38.63c0 65.83-1.34 61.81 3.26 61.81H501v40.65h-60.56v97.15c0 6.92-4.92 51.41 60.57 26.84z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "git-alt": { + "changes": [ + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f841", + "label": "Git Alt", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M439.55 236.05L244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "github": { + "changes": [ + "2.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "unicode": "f09b", + "label": "GitHub", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "github-alt": { + "changes": [ + "3.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "unicode": "f113", + "label": "Alternate GitHub", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 480, + 512 + ], + "width": 480, + "height": 512, + "path": "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gitkraken": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a6", + "label": "GitKraken", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 592, + 512 + ], + "width": 592, + "height": 512, + "path": "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gitlab": { + "changes": [ + "4.6.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "Axosoft" + ] + }, + "unicode": "f296", + "label": "GitLab", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M503.5 204.6L502.8 202.8L433.1 21.02C431.7 17.45 429.2 14.43 425.9 12.38C423.5 10.83 420.8 9.865 417.9 9.57C415 9.275 412.2 9.653 409.5 10.68C406.8 11.7 404.4 13.34 402.4 15.46C400.5 17.58 399.1 20.13 398.3 22.9L351.3 166.9H160.8L113.7 22.9C112.9 20.13 111.5 17.59 109.6 15.47C107.6 13.35 105.2 11.72 102.5 10.7C99.86 9.675 96.98 9.295 94.12 9.587C91.26 9.878 88.51 10.83 86.08 12.38C82.84 14.43 80.33 17.45 78.92 21.02L9.267 202.8L8.543 204.6C-1.484 230.8-2.72 259.6 5.023 286.6C12.77 313.5 29.07 337.3 51.47 354.2L51.74 354.4L52.33 354.8L158.3 434.3L210.9 474L242.9 498.2C246.6 500.1 251.2 502.5 255.9 502.5C260.6 502.5 265.2 500.1 268.9 498.2L300.9 474L353.5 434.3L460.2 354.4L460.5 354.1C482.9 337.2 499.2 313.5 506.1 286.6C514.7 259.6 513.5 230.8 503.5 204.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gitter": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f426", + "label": "Gitter", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "glass-water": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "potable", + "water" + ] + }, + "unicode": "e4f4", + "label": "Glass Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C23.1 0 14.6 3.7 8.6 10.2S-.6 25.4 .1 34.3L28.9 437.7c3 41.9 37.8 74.3 79.8 74.3H275.3c42 0 76.8-32.4 79.8-74.3L383.9 34.3c.6-8.9-2.4-17.6-8.5-24.1S360.9 0 352 0H32zM73 156.5L66.4 64H317.6L311 156.5l-24.2 12.1c-19.4 9.7-42.2 9.7-61.6 0c-20.9-10.4-45.5-10.4-66.4 0c-19.4 9.7-42.2 9.7-61.6 0L73 156.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "glass-water-droplet": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "potable", + "water" + ] + }, + "unicode": "e4f5", + "label": "Glass Water Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C23.1 0 14.6 3.7 8.6 10.2S-.6 25.4 .1 34.3L28.9 437.7c3 41.9 37.8 74.3 79.8 74.3H275.3c42 0 76.8-32.4 79.8-74.3L383.9 34.3c.6-8.9-2.4-17.6-8.5-24.1S360.9 0 352 0H32zM83 297.5L66.4 64H317.6L301 297.5 288 304c-20.1 10.1-43.9 10.1-64 0s-43.9-10.1-64 0s-43.9 10.1-64 0l-13-6.5zM256 196c0-24-33.7-70.1-52.2-93.5c-6.1-7.7-17.5-7.7-23.6 0C161.7 125.9 128 172 128 196c0 33.1 28.7 60 64 60s64-26.9 64-60z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "glasses": { + "aliases": { + "unicodes": { + "secondary": [ + "10f530" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hipster", + "nerd", + "reading", + "sight", + "spectacles", + "vision" + ] + }, + "unicode": "f530", + "label": "Glasses", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M118.6 80c-11.5 0-21.4 7.9-24 19.1L57 260.3c20.5-6.2 48.3-12.3 78.7-12.3c32.3 0 61.8 6.9 82.8 13.5c10.6 3.3 19.3 6.7 25.4 9.2c3.1 1.3 5.5 2.4 7.3 3.2c.9 .4 1.6 .7 2.1 1l.6 .3 .2 .1 .1 0 0 0 0 0s0 0-6.3 12.7h0l6.3-12.7c5.8 2.9 10.4 7.3 13.5 12.7h40.6c3.1-5.3 7.7-9.8 13.5-12.7l6.3 12.7h0c-6.3-12.7-6.3-12.7-6.3-12.7l0 0 0 0 .1 0 .2-.1 .6-.3c.5-.2 1.2-.6 2.1-1c1.8-.8 4.2-1.9 7.3-3.2c6.1-2.6 14.8-5.9 25.4-9.2c21-6.6 50.4-13.5 82.8-13.5c30.4 0 58.2 6.1 78.7 12.3L481.4 99.1c-2.6-11.2-12.6-19.1-24-19.1c-3.1 0-6.2 .6-9.2 1.8L416.9 94.3c-12.3 4.9-26.3-1.1-31.2-13.4s1.1-26.3 13.4-31.2l31.3-12.5c8.6-3.4 17.7-5.2 27-5.2c33.8 0 63.1 23.3 70.8 56.2l43.9 188c1.7 7.3 2.9 14.7 3.5 22.1c.3 1.9 .5 3.8 .5 5.7v6.7V352v16c0 61.9-50.1 112-112 112H419.7c-59.4 0-108.5-46.4-111.8-105.8L306.6 352H269.4l-1.2 22.2C264.9 433.6 215.8 480 156.3 480H112C50.1 480 0 429.9 0 368V352 310.7 304c0-1.9 .2-3.8 .5-5.7c.6-7.4 1.8-14.8 3.5-22.1l43.9-188C55.5 55.3 84.8 32 118.6 32c9.2 0 18.4 1.8 27 5.2l31.3 12.5c12.3 4.9 18.3 18.9 13.4 31.2s-18.9 18.3-31.2 13.4L127.8 81.8c-2.9-1.2-6-1.8-9.2-1.8zM64 325.4V368c0 26.5 21.5 48 48 48h44.3c25.5 0 46.5-19.9 47.9-45.3l2.5-45.6c-2.3-.8-4.9-1.7-7.5-2.5c-17.2-5.4-39.9-10.5-63.6-10.5c-23.7 0-46.2 5.1-63.2 10.5c-3.1 1-5.9 1.9-8.5 2.9zM512 368V325.4c-2.6-.9-5.5-1.9-8.5-2.9c-17-5.4-39.5-10.5-63.2-10.5c-23.7 0-46.4 5.1-63.6 10.5c-2.7 .8-5.2 1.7-7.5 2.5l2.5 45.6c1.4 25.4 22.5 45.3 47.9 45.3H464c26.5 0 48-21.5 48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "glide": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2a5", + "label": "Glide", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "glide-g": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2a6", + "label": "Glide G", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "globe": { + "aliases": { + "unicodes": { + "composite": [ + "1f310" + ], + "secondary": [ + "10f0ac" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.9", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "coordinates", + "country", + "earth", + "global", + "globe", + "globe with meridians", + "gps", + "internet", + "language", + "localize", + "location", + "map", + "meridians", + "network", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "unicode": "f0ac", + "label": "Globe", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 256c0 22.2-1.2 43.6-3.3 64H163.3c-2.2-20.4-3.3-41.8-3.3-64s1.2-43.6 3.3-64H348.7c2.2 20.4 3.3 41.8 3.3 64zm28.8-64H503.9c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64H380.8c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64zm112.6-32H376.7c-10-63.9-29.8-117.4-55.3-151.6c78.3 20.7 142 77.5 171.9 151.6zm-149.1 0H167.7c6.1-36.4 15.5-68.6 27-94.7c10.5-23.6 22.2-40.7 33.5-51.5C239.4 3.2 248.7 0 256 0s16.6 3.2 27.8 13.8c11.3 10.8 23 27.9 33.5 51.5c11.6 26 21 58.2 27 94.7zm-209 0H18.6C48.6 85.9 112.2 29.1 190.6 8.4C165.1 42.6 145.3 96.1 135.3 160zM8.1 192H131.2c-2.1 20.6-3.2 42-3.2 64s1.1 43.4 3.2 64H8.1C2.8 299.5 0 278.1 0 256s2.8-43.5 8.1-64zM194.7 446.6c-11.6-26-20.9-58.2-27-94.6H344.3c-6.1 36.4-15.5 68.6-27 94.6c-10.5 23.6-22.2 40.7-33.5 51.5C272.6 508.8 263.3 512 256 512s-16.6-3.2-27.8-13.8c-11.3-10.8-23-27.9-33.5-51.5zM135.3 352c10 63.9 29.8 117.4 55.3 151.6C112.2 482.9 48.6 426.1 18.6 352H135.3zm358.1 0c-30 74.1-93.6 130.9-171.9 151.6c25.5-34.2 45.2-87.7 55.3-151.6H493.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gofore": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a7", + "label": "Gofore", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 400, + 512 + ], + "width": 400, + "height": 512, + "path": "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "golang": { + "changes": [ + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e40f", + "label": "Go", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M400.1 194.8C389.2 197.6 380.2 199.1 371 202.4C363.7 204.3 356.3 206.3 347.8 208.5L347.2 208.6C343 209.8 342.6 209.9 338.7 205.4C334 200.1 330.6 196.7 324.1 193.5C304.4 183.9 285.4 186.7 267.7 198.2C246.5 211.9 235.6 232.2 235.9 257.4C236.2 282.4 253.3 302.9 277.1 306.3C299.1 309.1 316.9 301.7 330.9 285.8C333 283.2 334.9 280.5 337 277.5V277.5L337 277.5C337.8 276.5 338.5 275.4 339.3 274.2H279.2C272.7 274.2 271.1 270.2 273.3 264.9C277.3 255.2 284.8 239 289.2 230.9C290.1 229.1 292.3 225.1 296.1 225.1H397.2C401.7 211.7 409 198.2 418.8 185.4C441.5 155.5 468.1 139.9 506 133.4C537.8 127.8 567.7 130.9 594.9 149.3C619.5 166.1 634.7 188.9 638.8 218.8C644.1 260.9 631.9 295.1 602.1 324.4C582.4 345.3 557.2 358.4 528.2 364.3C522.6 365.3 517.1 365.8 511.7 366.3C508.8 366.5 506 366.8 503.2 367.1C474.9 366.5 449 358.4 427.2 339.7C411.9 326.4 401.3 310.1 396.1 291.2C392.4 298.5 388.1 305.6 382.1 312.3C360.5 341.9 331.2 360.3 294.2 365.2C263.6 369.3 235.3 363.4 210.3 344.7C187.3 327.2 174.2 304.2 170.8 275.5C166.7 241.5 176.7 210.1 197.2 184.2C219.4 155.2 248.7 136.8 284.5 130.3C313.8 124.1 341.8 128.4 367.1 145.6C383.6 156.5 395.4 171.4 403.2 189.5C405.1 192.3 403.8 193.9 400.1 194.8zM48.3 200.4C47.05 200.4 46.74 199.8 47.36 198.8L53.91 190.4C54.53 189.5 56.09 188.9 57.34 188.9H168.6C169.8 188.9 170.1 189.8 169.5 190.7L164.2 198.8C163.6 199.8 162 200.7 161.1 200.7L48.3 200.4zM1.246 229.1C0 229.1-.3116 228.4 .3116 227.5L6.855 219.1C7.479 218.2 9.037 217.5 10.28 217.5H152.4C153.6 217.5 154.2 218.5 153.9 219.4L151.4 226.9C151.1 228.1 149.9 228.8 148.6 228.8L1.246 229.1zM75.72 255.9C75.1 256.8 75.41 257.7 76.65 257.7L144.6 258C145.5 258 146.8 257.1 146.8 255.9L147.4 248.4C147.4 247.1 146.8 246.2 145.5 246.2H83.2C81.95 246.2 80.71 247.1 80.08 248.1L75.72 255.9zM577.2 237.9C577 235.3 576.9 233.1 576.5 230.9C570.9 200.1 542.5 182.6 512.9 189.5C483.9 196 465.2 214.4 458.4 243.7C452.8 268 464.6 292.6 487 302.6C504.2 310.1 521.3 309.2 537.8 300.7C562.4 287.1 575.8 268 577.4 241.2C577.3 240 577.3 238.9 577.2 237.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "golf-ball-tee": { + "aliases": { + "names": [ + "golf-ball" + ], + "unicodes": { + "secondary": [ + "10f450" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caddy", + "eagle", + "putt", + "tee" + ] + }, + "unicode": "f450", + "label": "Golf Ball Tee", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321826, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 192c0 66.8-34.1 125.6-85.8 160H85.8C34.1 317.6 0 258.8 0 192C0 86 86 0 192 0S384 86 384 192zM242.1 256.6c0 18.5-15 33.5-33.5 33.5c-4.9 0-9.6-1.1-13.8-3c5.3 11.6 16.9 19.7 30.5 19.7c18.5 0 33.5-15 33.5-33.5c0-13.6-8.1-25.3-19.7-30.5c1.9 4.2 3 8.9 3 13.8zm-52.3-49.3c-4.9 0-9.6-1.1-13.8-3c5.3 11.6 16.9 19.7 30.5 19.7c18.5 0 33.5-15 33.5-33.5c0-13.6-8.1-25.3-19.7-30.5c1.9 4.2 3 8.9 3 13.8c0 18.5-15 33.5-33.5 33.5zm113.5-17.5c0 18.5-15 33.5-33.5 33.5c-4.9 0-9.6-1.1-13.8-3c5.3 11.6 16.9 19.7 30.5 19.7c18.5 0 33.5-15 33.5-33.5c0-13.6-8.1-25.3-19.7-30.5c1.9 4.2 3 8.9 3 13.8zM96 416c0-17.7 14.3-32 32-32h64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H240c-8.8 0-16 7.2-16 16v16c0 17.7-14.3 32-32 32s-32-14.3-32-32V464c0-8.8-7.2-16-16-16H128c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "goodreads": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a8", + "label": "Goodreads", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "goodreads-g": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a9", + "label": "Goodreads G", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a0", + "label": "Google Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 488, + 512 + ], + "width": 488, + "height": 512, + "path": "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-drive": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3aa", + "label": "Google Drive", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-pay": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e079", + "label": "Google Pay", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M105.72,215v41.25h57.1a49.66,49.66,0,0,1-21.14,32.6c-9.54,6.55-21.72,10.28-36,10.28-27.6,0-50.93-18.91-59.3-44.22a65.61,65.61,0,0,1,0-41l0,0c8.37-25.46,31.7-44.37,59.3-44.37a56.43,56.43,0,0,1,40.51,16.08L176.47,155a101.24,101.24,0,0,0-70.75-27.84,105.55,105.55,0,0,0-94.38,59.11,107.64,107.64,0,0,0,0,96.18v.15a105.41,105.41,0,0,0,94.38,59c28.47,0,52.55-9.53,70-25.91,20-18.61,31.41-46.15,31.41-78.91A133.76,133.76,0,0,0,205.38,215Zm389.41-4c-10.13-9.38-23.93-14.14-41.39-14.14-22.46,0-39.34,8.34-50.5,24.86l20.85,13.26q11.45-17,31.26-17a34.05,34.05,0,0,1,22.75,8.79A28.14,28.14,0,0,1,487.79,248v5.51c-9.1-5.07-20.55-7.75-34.64-7.75-16.44,0-29.65,3.88-39.49,11.77s-14.82,18.31-14.82,31.56a39.74,39.74,0,0,0,13.94,31.27c9.25,8.34,21,12.51,34.79,12.51,16.29,0,29.21-7.3,39-21.89h1v17.72h22.61V250C510.25,233.45,505.26,220.34,495.13,211ZM475.9,300.3a37.32,37.32,0,0,1-26.57,11.16A28.61,28.61,0,0,1,431,305.21a19.41,19.41,0,0,1-7.77-15.63c0-7,3.22-12.81,9.54-17.42s14.53-7,24.07-7C470,265,480.3,268,487.64,273.94,487.64,284.07,483.68,292.85,475.9,300.3Zm-93.65-142A55.71,55.71,0,0,0,341.74,142H279.07V328.74H302.7V253.1h39c16,0,29.5-5.36,40.51-15.93.88-.89,1.76-1.79,2.65-2.68A54.45,54.45,0,0,0,382.25,158.26Zm-16.58,62.23a30.65,30.65,0,0,1-23.34,9.68H302.7V165h39.63a32,32,0,0,1,22.6,9.23A33.18,33.18,0,0,1,365.67,220.49ZM614.31,201,577.77,292.7h-.45L539.9,201H514.21L566,320.55l-29.35,64.32H561L640,201Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-play": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ab", + "label": "Google Play", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-plus": { + "changes": [ + "4.6.0", + "5.0.0", + "5.13.1" + ], + "ligatures": [], + "search": { + "terms": [ + "google-plus-circle", + "google-plus-official" + ] + }, + "unicode": "f2b3", + "label": "Google Plus", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256,8C119.1,8,8,119.1,8,256S119.1,504,256,504,504,392.9,504,256,392.9,8,256,8ZM185.3,380a124,124,0,0,1,0-248c31.3,0,60.1,11,83,32.3l-33.6,32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9,0-77.2,35.5-77.2,78.1S142.3,334,185.3,334c32.6,0,64.9-19.1,70.1-53.3H185.3V238.1H302.2a109.2,109.2,0,0,1,1.9,20.7c0,70.8-47.5,121.2-118.8,121.2ZM415.5,273.8v35.5H380V273.8H344.5V238.3H380V202.8h35.5v35.5h35.2v35.5Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-plus-g": { + "changes": [ + "2.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "google-plus", + "social network" + ] + }, + "unicode": "f0d5", + "label": "Google Plus G", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-wallet": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1ee", + "label": "Google Wallet", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gopuram": { + "aliases": { + "unicodes": { + "secondary": [ + "10f664" + ] + } + }, + "changes": [ + "5.3.0", + "5.7.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "entrance", + "hinduism", + "temple", + "tower" + ] + }, + "unicode": "f664", + "label": "Gopuram", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M120 0c13.3 0 24 10.7 24 24v8h40V24c0-13.3 10.7-24 24-24s24 10.7 24 24v8h48V24c0-13.3 10.7-24 24-24s24 10.7 24 24v8h40V24c0-13.3 10.7-24 24-24s24 10.7 24 24v8V64v64c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32v96c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H416V352H384V224H352V128H320v96h32V352h32V512H304V464c0-26.5-21.5-48-48-48s-48 21.5-48 48v48H128V352h32V224h32V128H160v96H128V352H96V512H32c-17.7 0-32-14.3-32-32V384c0-17.7 14.3-32 32-32V256c0-17.7 14.3-32 32-32V160c0-17.7 14.3-32 32-32V64 32 24c0-13.3 10.7-24 24-24zM256 272c-17.7 0-32 14.3-32 32v48h64V304c0-17.7-14.3-32-32-32zm-32-80v32h64V192c0-17.7-14.3-32-32-32s-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "graduation-cap": { + "aliases": { + "names": [ + "mortar-board" + ], + "unicodes": { + "composite": [ + "1f393" + ], + "secondary": [ + "10f19d" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.2.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cap", + "celebration", + "ceremony", + "clothing", + "college", + "graduate", + "graduation", + "graduation cap", + "hat", + "learning", + "school", + "student" + ] + }, + "unicode": "f19d", + "label": "Graduation Cap", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 32c-8.1 0-16.1 1.4-23.7 4.1L15.8 137.4C6.3 140.9 0 149.9 0 160s6.3 19.1 15.8 22.6l57.9 20.9C57.3 229.3 48 259.8 48 291.9v28.1c0 28.4-10.8 57.7-22.3 80.8c-6.5 13-13.9 25.8-22.5 37.6C0 442.7-.9 448.3 .9 453.4s6 8.9 11.2 10.2l64 16c4.2 1.1 8.7 .3 12.4-2s6.3-6.1 7.1-10.4c8.6-42.8 4.3-81.2-2.1-108.7C90.3 344.3 86 329.8 80 316.5V291.9c0-30.2 10.2-58.7 27.9-81.5c12.9-15.5 29.6-28 49.2-35.7l157-61.7c8.2-3.2 17.5 .8 20.7 9s-.8 17.5-9 20.7l-157 61.7c-12.4 4.9-23.3 12.4-32.2 21.6l159.6 57.6c7.6 2.7 15.6 4.1 23.7 4.1s16.1-1.4 23.7-4.1L624.2 182.6c9.5-3.4 15.8-12.5 15.8-22.6s-6.3-19.1-15.8-22.6L343.7 36.1C336.1 33.4 328.1 32 320 32zM128 408c0 35.3 86 72 192 72s192-36.7 192-72L496.7 262.6 354.5 314c-11.1 4-22.8 6-34.5 6s-23.5-2-34.5-6L143.3 262.6 128 408z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gratipay": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "like", + "love" + ] + }, + "unicode": "f184", + "label": "Gratipay (Gittip)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "grav": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2d6", + "label": "Grav", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "greater-than": { + "aliases": { + "unicodes": { + "composite": [ + "f531" + ], + "primary": [ + "f531" + ], + "secondary": [ + "103e", + "10f531" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Greater-Than Sign", + "arithmetic", + "compare", + "math" + ] + }, + "unicode": "3e", + "label": "Greater Than", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M3.4 81.7c-7.9 15.8-1.5 35 14.3 42.9L280.5 256 17.7 387.4C1.9 395.3-4.5 414.5 3.4 430.3s27.1 22.2 42.9 14.3l320-160c10.8-5.4 17.7-16.5 17.7-28.6s-6.8-23.2-17.7-28.6l-320-160c-15.8-7.9-35-1.5-42.9 14.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "greater-than-equal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f532" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "compare", + "math" + ] + }, + "unicode": "f532", + "label": "Greater Than Equal", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M52.1 93.7C35.7 87.1 27.7 68.5 34.3 52.1s25.2-24.4 41.6-17.8l320 128C408 167.1 416 178.9 416 192s-8 24.9-20.1 29.7l-320 128c-16.4 6.6-35-1.4-41.6-17.8s1.4-35 17.8-41.6L297.8 192 52.1 93.7zM416 416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "grip": { + "aliases": { + "names": [ + "grip-horizontal" + ], + "unicodes": { + "secondary": [ + "10f58d" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "unicode": "f58d", + "label": "Grip", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 136c0-22.1-17.9-40-40-40L40 96C17.9 96 0 113.9 0 136l0 48c0 22.1 17.9 40 40 40H88c22.1 0 40-17.9 40-40V136zm0 192c0-22.1-17.9-40-40-40H40c-22.1 0-40 17.9-40 40v48c0 22.1 17.9 40 40 40H88c22.1 0 40-17.9 40-40V328zm32-192v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V136c0-22.1-17.9-40-40-40l-48 0c-22.1 0-40 17.9-40 40zM288 328c0-22.1-17.9-40-40-40H200c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V328zm32-192v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V136c0-22.1-17.9-40-40-40l-48 0c-22.1 0-40 17.9-40 40zM448 328c0-22.1-17.9-40-40-40H360c-22.1 0-40 17.9-40 40v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V328z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "grip-lines": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7a4" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "unicode": "f7a4", + "label": "Grip Lines", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 288c-17.7 0-32 14.3-32 32s14.3 32 32 32l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 288zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "grip-lines-vertical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7a5" + ] + } + }, + "changes": [ + "5.6.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "unicode": "f7a5", + "label": "Grip Lines Vertical", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 192, + 512 + ], + "width": 192, + "height": 512, + "path": "M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64zm128 0c0-17.7-14.3-32-32-32s-32 14.3-32 32V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "grip-vertical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f58e" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "unicode": "f58e", + "label": "Grip Vertical", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M40 352c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0zm192 0c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0zM40 320l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40zM232 192c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0zM40 160l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40L40 32C17.9 32 0 49.9 0 72l0 48c0 22.1 17.9 40 40 40zM232 32c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gripfire": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ac", + "label": "Gripfire, Inc.", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M112.5 301.4c0-73.8 105.1-122.5 105.1-203 0-47.1-34-88-39.1-90.4.4 3.3.6 6.7.6 10C179.1 110.1 32 171.9 32 286.6c0 49.8 32.2 79.2 66.5 108.3 65.1 46.7 78.1 71.4 78.1 86.6 0 10.1-4.8 17-4.8 22.3 13.1-16.7 17.4-31.9 17.5-46.4 0-29.6-21.7-56.3-44.2-86.5-16-22.3-32.6-42.6-32.6-69.5zm205.3-39c-12.1-66.8-78-124.4-94.7-130.9l4 7.2c2.4 5.1 3.4 10.9 3.4 17.1 0 44.7-54.2 111.2-56.6 116.7-2.2 5.1-3.2 10.5-3.2 15.8 0 20.1 15.2 42.1 17.9 42.1 2.4 0 56.6-55.4 58.1-87.7 6.4 11.7 9.1 22.6 9.1 33.4 0 41.2-41.8 96.9-41.8 96.9 0 11.6 31.9 53.2 35.5 53.2 1 0 2.2-1.4 3.2-2.4 37.9-39.3 67.3-85 67.3-136.8 0-8-.7-16.2-2.2-24.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "group-arrows-rotate": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "community", + "engagement", + "spin", + "sync" + ] + }, + "unicode": "e4f6", + "label": "Group Arrows Rotate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192.1 71.9c16.9-5 26.6-22.9 21.5-39.8s-22.9-26.6-39.8-21.5c-21.5 6.4-41.8 15.5-60.6 27C105.3 34 96.4 32 87 32C51.7 32 23 60.7 23 96c0 9.4 2 18.3 5.6 26.3C17.2 141 8 161.4 1.6 182.9c-5 16.9 4.6 34.8 21.5 39.8s34.8-4.6 39.8-21.5c4.3-14.6 10.4-28.5 17.9-41.4c2 .2 4.1 .3 6.1 .3c35.3 0 64-28.7 64-64c0-2.1-.1-4.1-.3-6.1c12.9-7.5 26.8-13.6 41.4-17.9zm128-61.3c-16.9-5-34.8 4.6-39.8 21.5s4.6 34.8 21.5 39.8c14.6 4.3 28.5 10.4 41.4 17.9c-.2 2-.3 4.1-.3 6.1c0 35.3 28.7 64 64 64c2.1 0 4.1-.1 6.2-.3c7.5 12.9 13.6 26.8 17.9 41.4c5 16.9 22.9 26.6 39.8 21.5s26.6-22.9 21.5-39.8c-6.4-21.5-15.5-41.8-27-60.6c3.6-8 5.6-16.9 5.6-26.3c0-35.3-28.7-64-64-64c-9.4 0-18.3 2-26.3 5.6c-18.7-11.5-39-20.6-60.6-27zM62.9 310.9c-5-16.9-22.9-26.6-39.8-21.5s-26.6 22.9-21.5 39.8c6.4 21.5 15.5 41.8 27 60.6C25 397.7 23 406.6 23 416c0 35.3 28.7 64 64 64c9.4 0 18.3-2 26.3-5.6c18.7 11.5 39 20.6 60.6 27c16.9 5 34.8-4.6 39.8-21.5s-4.6-34.8-21.5-39.8c-14.6-4.3-28.5-10.4-41.4-17.9c.2-2 .3-4.1 .3-6.2c0-35.3-28.7-64-64-64c-2.1 0-4.1 .1-6.2 .3c-7.5-12.9-13.6-26.8-17.9-41.4zm429.4 18.3c5-16.9-4.6-34.8-21.5-39.8s-34.8 4.6-39.8 21.5c-4.3 14.6-10.4 28.5-17.9 41.4c-2-.2-4.1-.3-6.2-.3c-35.3 0-64 28.7-64 64c0 2.1 .1 4.1 .3 6.2c-12.9 7.5-26.8 13.6-41.4 17.9c-16.9 5-26.6 22.9-21.5 39.8s22.9 26.6 39.8 21.5c21.5-6.4 41.8-15.5 60.6-27c8 3.6 16.9 5.6 26.3 5.6c35.3 0 64-28.7 64-64c0-9.4-2-18.3-5.6-26.3c11.5-18.7 20.6-39 27-60.6zM183.8 256.8c0-15.6 5.6-29.9 14.9-41.1L214 231c6.6 6.6 17.8 1.9 17.8-7.4V163.2c0-5.7-4.7-10.4-10.4-10.4H160.9c-9.3 0-13.9 11.2-7.4 17.8l11.2 11.2c-17.9 19.8-28.9 46.2-28.9 75.1c0 43.6 24.9 81.3 61.1 99.8c11.8 6 26.3 1.4 32.3-10.4s1.4-26.3-10.4-32.3c-20.8-10.6-34.9-32.2-34.9-57zm93.1-58.6c20.8 10.6 34.9 32.2 34.9 57c0 15.6-5.6 29.9-14.9 41.1L281.6 281c-6.6-6.6-17.8-1.9-17.8 7.4v60.5c0 5.7 4.7 10.4 10.4 10.4h60.5c9.3 0 13.9-11.2 7.4-17.8l-11.2-11.2c17.9-19.8 28.9-46.2 28.9-75.1c0-43.6-24.9-81.3-61.1-99.8c-11.8-6-26.3-1.4-32.3 10.4s-1.4 26.3 10.4 32.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "grunt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ad", + "label": "Grunt", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm142.1 45.8c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm62.7-45.8c3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6 7.5-11.4 25.4-26 44.9-37zM160 418.5h-29.4c-5.5 0-8.2 1.6-9.5 2.9-1.9 2-2.2 4.7-.9 8.1 3.5 9.1 11.4 16.5 13.7 18.6 3.1 2.7 7.5 4.3 11.8 4.3 4.4 0 8.3-1.7 11-4.6 7.5-8.2 11.9-17.1 13-19.8.6-1.5 1.3-4.5-.9-6.8-1.8-1.8-4.7-2.7-8.8-2.7zm189.2-101.2c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59zM191.9 187.7h.2c12.7-.1 27.2-17.8 27.2-17.8-9.9 6-18.8 8.1-27.3 8.3-8.5-.2-17.4-2.3-27.3-8.3 0 0 14.5 17.6 27.2 17.8zm61.7 230.7h-29.4c-4.2 0-7.2.9-8.9 2.7-2.2 2.3-1.5 5.2-.9 6.7 1 2.6 5.5 11.3 13 19.3 2.7 2.9 6.6 4.5 11 4.5s8.7-1.6 11.8-4.2c2.3-2 10.2-9.2 13.7-18.1 1.3-3.3 1-6-.9-7.9-1.3-1.3-4-2.9-9.4-3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "guarani-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Guarani Sign", + "currency" + ] + }, + "unicode": "e19a", + "label": "Guarani Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-17.7 0-32 14.3-32 32V66.7C69.2 81.9 0 160.9 0 256s69.2 174.1 160 189.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V445.3c90.8-15.2 160-94.2 160-189.3c0-17.7-14.3-32-32-32H224V132c22.1 5.7 41.8 17.1 57.6 32.6c12.6 12.4 32.9 12.2 45.3-.4s12.2-32.9-.5-45.3C299 92 263.5 73.3 224 66.7V32c0-17.7-14.3-32-32-32zM160 132V380c-55.2-14.2-96-64.3-96-124s40.8-109.8 96-124zM224 380V288h92c-11.6 45-47 80.4-92 92z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "guilded": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07e", + "label": "Guilded", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M443.427,64H4.571c0,103.26,22.192,180.06,43.418,222.358C112.046,414.135,224,448,225.256,448a312.824,312.824,0,0,0,140.55-103.477c25.907-33.923,53.1-87.19,65.916-145.761H171.833c4.14,36.429,22.177,67.946,45.1,86.944h88.589c-17.012,28.213-48.186,54.4-80.456,69.482-31.232-13.259-69.09-46.544-96.548-98.362-26.726-53.833-27.092-105.883-27.092-105.883H437.573A625.91,625.91,0,0,0,443.427,64Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "guitar": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7a6" + ] + } + }, + "changes": [ + "5.6.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acoustic", + "instrument", + "music", + "rock", + "rock and roll", + "song", + "strings" + ] + }, + "unicode": "f7a6", + "label": "Guitar", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M465 7c-9.4-9.4-24.6-9.4-33.9 0L383 55c-2.4 2.4-4.3 5.3-5.5 8.5l-15.4 41-77.5 77.6c-45.1-29.4-99.3-30.2-131 1.6c-11 11-18 24.6-21.4 39.6c-3.7 16.6-19.1 30.7-36.1 31.6c-25.6 1.3-49.3 10.7-67.3 28.6C-16 328.4-7.6 409.4 47.5 464.5s136.1 63.5 180.9 18.7c17.9-17.9 27.4-41.7 28.6-67.3c.9-17 15-32.3 31.6-36.1c15-3.4 28.6-10.5 39.6-21.4c31.8-31.8 31-85.9 1.6-131l77.6-77.6 41-15.4c3.2-1.2 6.1-3.1 8.5-5.5l48-48c9.4-9.4 9.4-24.6 0-33.9L465 7zM208 256a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gulp": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ae", + "label": "Gulp", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gun": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "firearm", + "pistol", + "weapon" + ] + }, + "unicode": "e19b", + "label": "Gun", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M528 56c0-13.3-10.7-24-24-24s-24 10.7-24 24v8H32C14.3 64 0 78.3 0 96V208c0 17.7 14.3 32 32 32H42c20.8 0 36.1 19.6 31 39.8L33 440.2c-2.4 9.6-.2 19.7 5.8 27.5S54.1 480 64 480h96c14.7 0 27.5-10 31-24.2L217 352H321.4c23.7 0 44.8-14.9 52.7-37.2L400.9 240H432c8.5 0 16.6-3.4 22.6-9.4L477.3 208H544c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32H528V56zM321.4 304H229l16-64h105l-21 58.7c-1.1 3.2-4.2 5.3-7.5 5.3zM80 128H464c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "h": { + "aliases": { + "unicodes": { + "composite": [ + "68" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter H", + "Latin Small Letter H", + "letter" + ] + }, + "unicode": "48", + "label": "H", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 256l0 192c0 17.7 14.3 32 32 32s32-14.3 32-32l0-224V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V192L64 192 64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-192 256 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hacker-news": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d4", + "label": "Hacker News", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hackerrank": { + "changes": [ + "5.2.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5f7", + "label": "Hackerrank", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M477.5 128C463 103.05 285.13 0 256.16 0S49.25 102.79 34.84 128s-14.49 230.8 0 256 192.38 128 221.32 128S463 409.08 477.49 384s14.51-231 .01-256zM316.13 414.22c-4 0-40.91-35.77-38-38.69.87-.87 6.26-1.48 17.55-1.83 0-26.23.59-68.59.94-86.32 0-2-.44-3.43-.44-5.85h-79.93c0 7.1-.46 36.2 1.37 72.88.23 4.54-1.58 6-5.74 5.94-10.13 0-20.27-.11-30.41-.08-4.1 0-5.87-1.53-5.74-6.11.92-33.44 3-84-.15-212.67v-3.17c-9.67-.35-16.38-1-17.26-1.84-2.92-2.92 34.54-38.69 38.49-38.69s41.17 35.78 38.27 38.69c-.87.87-7.9 1.49-16.77 1.84v3.16c-2.42 25.75-2 79.59-2.63 105.39h80.26c0-4.55.39-34.74-1.2-83.64-.1-3.39.95-5.17 4.21-5.2 11.07-.08 22.15-.13 33.23-.06 3.46 0 4.57 1.72 4.5 5.38C333 354.64 336 341.29 336 373.69c8.87.35 16.82 1 17.69 1.84 2.88 2.91-33.62 38.69-37.58 38.69z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hammer": { + "aliases": { + "unicodes": { + "composite": [ + "1f528" + ], + "secondary": [ + "10f6e3" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "fix", + "hammer", + "recovery", + "repair", + "settings", + "tool" + ] + }, + "unicode": "f6e3", + "label": "Hammer", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M413.5 237.5c-28.2 4.8-58.2-3.6-80-25.4l-38.1-38.1C280.4 159 272 138.8 272 117.6V105.5L192.3 62c-5.3-2.9-8.6-8.6-8.3-14.7s3.9-11.5 9.5-14l47.2-21C259.1 4.2 279 0 299.2 0h18.1c36.7 0 72 14 98.7 39.1l44.6 42c24.2 22.8 33.2 55.7 26.6 86L503 183l8-8c9.4-9.4 24.6-9.4 33.9 0l24 24c9.4 9.4 9.4 24.6 0 33.9l-88 88c-9.4 9.4-24.6 9.4-33.9 0l-24-24c-9.4-9.4-9.4-24.6 0-33.9l8-8-17.5-17.5zM27.4 377.1L260.9 182.6c3.5 4.9 7.5 9.6 11.8 14l38.1 38.1c6 6 12.4 11.2 19.2 15.7L134.9 484.6c-14.5 17.4-36 27.4-58.6 27.4C34.1 512 0 477.8 0 435.7c0-22.6 10.1-44.1 27.4-58.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hamsa": { + "aliases": { + "unicodes": { + "secondary": [ + "10f665" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "amulet", + "christianity", + "islam", + "jewish", + "judaism", + "muslim", + "protection" + ] + }, + "unicode": "f665", + "label": "Hamsa", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M34.6 288H80c8.8 0 16-7.2 16-16V72c0-22.1 17.9-40 40-40s40 17.9 40 40V204c0 11 9 20 20 20s20-9 20-20V40c0-22.1 17.9-40 40-40s40 17.9 40 40V204c0 11 9 20 20 20s20-9 20-20V72c0-22.1 17.9-40 40-40s40 17.9 40 40V272c0 8.8 7.2 16 16 16h45.4c19.1 0 34.6 15.5 34.6 34.6c0 8.6-3.2 16.9-9 23.3L416.6 441c-41.1 45.2-99.4 71-160.6 71s-119.4-25.8-160.6-71L9 345.9c-5.8-6.4-9-14.7-9-23.3C0 303.5 15.5 288 34.6 288zM256 288c-38.4 0-76.8 35.8-90.6 50.2c-3.6 3.7-5.4 8.7-5.4 13.8s1.8 10.1 5.4 13.8C179.2 380.2 217.6 416 256 416s76.8-35.8 90.6-50.2c3.6-3.7 5.4-8.7 5.4-13.8s-1.8-10.1-5.4-13.8C332.8 323.8 294.4 288 256 288zm0 32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand": { + "aliases": { + "names": [ + "hand-paper" + ], + "unicodes": { + "composite": [ + "1f91a", + "270b" + ], + "secondary": [ + "10f256" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Raised Hand", + "backhand", + "game", + "halt", + "palm", + "raised", + "raised back of hand", + "roshambo", + "stop" + ] + }, + "unicode": "f256", + "label": "Hand", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V336c0 1.5 0 3.1 .1 4.6L67.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6L124.8 448c43.1 41.1 100.4 64 160 64H304c97.2 0 176-78.8 176-176V128c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V32z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c-25.3 0-47.2 14.7-57.6 36c-7-2.6-14.5-4-22.4-4c-35.3 0-64 28.7-64 64V261.5l-2.7-2.7c-25-25-65.5-25-90.5 0s-25 65.5 0 90.5L106.5 437c48 48 113.1 75 181 75H296h8c1.5 0 3-.1 4.5-.4c91.7-6.2 165-79.4 171.1-171.1c.3-1.5 .4-3 .4-4.5V160c0-35.3-28.7-64-64-64c-5.5 0-10.9 .7-16 2V96c0-35.3-28.7-64-64-64c-7.9 0-15.4 1.4-22.4 4C303.2 14.7 281.3 0 256 0zM240 96.1c0 0 0-.1 0-.1V64c0-8.8 7.2-16 16-16s16 7.2 16 16V95.9c0 0 0 .1 0 .1V232c0 13.3 10.7 24 24 24s24-10.7 24-24V96c0 0 0 0 0-.1c0-8.8 7.2-16 16-16s16 7.2 16 16v55.9c0 0 0 .1 0 .1v80c0 13.3 10.7 24 24 24s24-10.7 24-24V160.1c0 0 0-.1 0-.1c0-8.8 7.2-16 16-16s16 7.2 16 16V332.9c-.1 .6-.1 1.3-.2 1.9c-3.4 69.7-59.3 125.6-129 129c-.6 0-1.3 .1-1.9 .2H296h-8.5c-55.2 0-108.1-21.9-147.1-60.9L52.7 315.3c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L119 336.4c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V96c0-8.8 7.2-16 16-16c8.8 0 16 7.1 16 15.9V232c0 13.3 10.7 24 24 24s24-10.7 24-24V96.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-back-fist": { + "aliases": { + "names": [ + "hand-rock" + ], + "unicodes": { + "secondary": [ + "10f255" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fist", + "game", + "roshambo" + ] + }, + "unicode": "f255", + "label": "Hand Back Fist", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0C101.5 0 80 21.5 80 48V96v28.5V176c0 8.8-7.2 16-16 16s-16-7.2-16-16V149.3l-9 7.5C24.4 169 16 187 16 206V244c0 38 16.9 74 46.1 98.3L112 384v96c0 17.7 14.3 32 32 32H304c17.7 0 32-14.3 32-32V374.7c46.9-19 80-65 80-118.7V176 160 144c0-26.5-21.5-48-48-48c-12.4 0-23.6 4.7-32.1 12.3C334 83.5 313.3 64 288 64c-12.4 0-23.6 4.7-32.1 12.3C254 51.5 233.3 32 208 32c-12.4 0-23.6 4.7-32.1 12.3C174 19.5 153.3 0 128 0z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M112 64c0-8.8 7.2-16 16-16s16 7.2 16 16c0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2c8.8 0 16 7.2 16 16c0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2c8.8 0 16 7.2 16 16c0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2c8.8 0 16 7.2 16 16V264c0 31.3-20 58-48 67.9c-9.6 3.4-16 12.5-16 22.6V488c0 13.3 10.7 24 24 24s24-10.7 24-24V370.2c38-20.1 64-60.1 64-106.2V160c0-35.3-28.7-64-64-64c-2.8 0-5.6 .2-8.3 .5C300.8 77.1 279.9 64 256 64c-2.8 0-5.6 .2-8.3 .5C236.8 45.1 215.9 32 192 32c-2.8 0-5.6 .2-8.3 .5C172.8 13.1 151.9 0 128 0C92.7 0 64 28.7 64 64v64.3c-11.7 7.4-22.5 16.4-32 26.9l17.8 16.1L32 155.2l-9.4 10.5C8 181.8 0 202.8 0 224.6v12.8C0 287 24.2 333.4 64.8 361.9l13.8-19.7L64.8 361.9l8.9 6.2c6.9 4.8 14.4 8.6 22.3 11.3V488c0 13.3 10.7 24 24 24s24-10.7 24-24V359.9c0-12.6-9.8-23.1-22.4-23.9c-7.3-.5-14.3-2.9-20.3-7.1L88.2 347.5l13.1-18.7-8.9-6.2C64.6 303.1 48 271.3 48 237.4V224.6c0-9.9 3.7-19.4 10.3-26.8l9.4-10.5c3.8-4.2 7.9-8.1 12.3-11.6V208c0 8.8 7.2 16 16 16s16-7.2 16-16V142.3 128 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-dots": { + "aliases": { + "names": [ + "allergies" + ], + "unicodes": { + "secondary": [ + "10f461" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "allergy", + "freckles", + "hand", + "hives", + "palm", + "pox", + "skin", + "spots" + ] + }, + "unicode": "f461", + "label": "Hand Dots", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V336c0 1.5 0 3.1 .1 4.6L67.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6L124.8 448c43.1 41.1 100.4 64 160 64H304c97.2 0 176-78.8 176-176V128c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V32zM240 336a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm80 16a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm48-16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm-16 80a16 16 0 1 1 0 32 16 16 0 1 1 0-32zM240 432a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm-48-48a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-fist": { + "aliases": { + "names": [ + "fist-raised" + ], + "unicodes": { + "composite": [ + "270a" + ], + "secondary": [ + "10f6de" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "clenched", + "d&d", + "dnd", + "fantasy", + "fist", + "hand", + "ki", + "monk", + "punch", + "raised fist", + "resist", + "strength", + "unarmed combat" + ] + }, + "unicode": "f6de", + "label": "Hand Fist", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M160 0c17.7 0 32 14.3 32 32V144H128V32c0-17.7 14.3-32 32-32zM32 64c0-17.7 14.3-32 32-32s32 14.3 32 32v80H32V64zm192 0c0-17.7 14.3-32 32-32s32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V64zm96 64c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V128zm-96 88l0-.6c9.4 5.4 20.3 8.6 32 8.6c13.2 0 25.4-4 35.6-10.8c8.7 24.9 32.5 42.8 60.4 42.8c11.7 0 22.6-3.1 32-8.6V256c0 52.3-25.1 98.8-64 128v96c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V401.6c-17.3-7.9-33.2-18.8-46.9-32.5L37.5 357.5C13.5 333.5 0 300.9 0 267V240c0-35.3 28.7-64 64-64h88c22.1 0 40 17.9 40 40s-17.9 40-40 40H96c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4bd" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "lift" + ] + }, + "unicode": "f4bd", + "label": "Hand Holding", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M559.7 392.2c17.8-13.1 21.6-38.1 8.5-55.9s-38.1-21.6-55.9-8.5L392.6 416H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h16 64c17.7 0 32-14.3 32-32s-14.3-32-32-32H288 272 193.7c-29.1 0-57.3 9.9-80 28L68.8 384H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H192 352.5c29 0 57.3-9.3 80.7-26.5l126.6-93.3zm-366.1-8.3a.5 .5 0 1 1 -.9 .1 .5 .5 0 1 1 .9-.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding-dollar": { + "aliases": { + "names": [ + "hand-holding-usd" + ], + "unicodes": { + "secondary": [ + "10f4c0" + ] + } + }, + "changes": [ + "5.0.9", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "$", + "carry", + "dollar sign", + "donation", + "giving", + "lift", + "money", + "price" + ] + }, + "unicode": "f4c0", + "label": "Hand Holding Dollar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M312 24V34.5c6.4 1.2 12.6 2.7 18.2 4.2c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17c-10.9-2.9-21.1-4.9-30.2-5c-7.3-.1-14.7 1.7-19.4 4.4c-2.1 1.3-3.1 2.4-3.5 3c-.3 .5-.7 1.2-.7 2.8c0 .3 0 .5 0 .6c.2 .2 .9 1.2 3.3 2.6c5.8 3.5 14.4 6.2 27.4 10.1l.9 .3 0 0c11.1 3.3 25.9 7.8 37.9 15.3c13.7 8.6 26.1 22.9 26.4 44.9c.3 22.5-11.4 38.9-26.7 48.5c-6.7 4.1-13.9 7-21.3 8.8V232c0 13.3-10.7 24-24 24s-24-10.7-24-24V220.6c-9.5-2.3-18.2-5.3-25.6-7.8c-2.1-.7-4.1-1.4-6-2c-12.6-4.2-19.4-17.8-15.2-30.4s17.8-19.4 30.4-15.2c2.6 .9 5 1.7 7.3 2.5c13.6 4.6 23.4 7.9 33.9 8.3c8 .3 15.1-1.6 19.2-4.1c1.9-1.2 2.8-2.2 3.2-2.9c.4-.6 .9-1.8 .8-4.1l0-.2c0-1 0-2.1-4-4.6c-5.7-3.6-14.3-6.4-27.1-10.3l-1.9-.6c-10.8-3.2-25-7.5-36.4-14.4c-13.5-8.1-26.5-22-26.6-44.1c-.1-22.9 12.9-38.6 27.7-47.4c6.4-3.8 13.3-6.4 20.2-8.2V24c0-13.3 10.7-24 24-24s24 10.7 24 24zM568.2 336.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 485.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 384l0 0-.9 0c.3 0 .6 0 .9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding-droplet": { + "aliases": { + "names": [ + "hand-holding-water" + ], + "unicodes": { + "secondary": [ + "10f4c1" + ] + } + }, + "changes": [ + "5.0.9", + "5.13.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "covid-19", + "drought", + "grow", + "lift", + "sanitation" + ] + }, + "unicode": "f4c1", + "label": "Hand Holding Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M275.5 6.6C278.3 2.5 283 0 288 0s9.7 2.5 12.5 6.6L366.8 103C378 119.3 384 138.6 384 158.3V160c0 53-43 96-96 96s-96-43-96-96v-1.7c0-19.8 6-39 17.2-55.3L275.5 6.6zM568.2 336.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 485.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 384l0 0-.9 0c.3 0 .6 0 .9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding-hand": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "care", + "give", + "help", + "hold", + "protect" + ] + }, + "unicode": "e4f7", + "label": "Hand Holding Hand", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M7.8 207.7c-13.1-17.8-9.3-42.8 8.5-55.9L142.9 58.5C166.2 41.3 194.5 32 223.5 32H384 544c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H507.2l-44.9 36c-22.7 18.2-50.9 28-80 28H304 288 224c-17.7 0-32-14.3-32-32s14.3-32 32-32h64 16c8.8 0 16-7.2 16-16s-7.2-16-16-16H183.4L63.7 216.2c-17.8 13.1-42.8 9.3-55.9-8.5zM382.4 160l0 0 .9 0c-.3 0-.6 0-.9 0zM568.2 304.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 453.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V384c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 352l0 0-.9 0c.3 0 .6 0 .9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding-heart": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4be" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "charity", + "gift", + "lift", + "package" + ] + }, + "unicode": "f4be", + "label": "Hand Holding Heart", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M148 76.6C148 34.3 182.3 0 224.6 0c20.3 0 39.8 8.1 54.1 22.4l9.3 9.3 9.3-9.3C311.6 8.1 331.1 0 351.4 0C393.7 0 428 34.3 428 76.6c0 20.3-8.1 39.8-22.4 54.1L302.1 234.1c-7.8 7.8-20.5 7.8-28.3 0L170.4 130.7C156.1 116.4 148 96.9 148 76.6zM568.2 336.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 485.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 384l0 0-.9 0c.3 0 .6 0 .9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10e05c" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "care", + "covid-19", + "donate", + "help" + ] + }, + "unicode": "e05c", + "label": "Hand Holding Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M224 24V80H168c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h56v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V176h56c13.3 0 24-10.7 24-24V104c0-13.3-10.7-24-24-24H320V24c0-13.3-10.7-24-24-24H248c-13.3 0-24 10.7-24 24zM559.7 392.2c17.8-13.1 21.6-38.1 8.5-55.9s-38.1-21.6-55.9-8.5L392.6 416H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h16 64c17.7 0 32-14.3 32-32s-14.3-32-32-32H288 272 193.7c-29.1 0-57.3 9.9-80 28L68.8 384H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H192 352.5c29 0 57.3-9.3 80.7-26.5l126.6-93.3zm-367-8.2l.9 0 0 0c-.3 0-.6 0-.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-lizard": { + "aliases": { + "unicodes": { + "secondary": [ + "10f258" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "game", + "roshambo" + ] + }, + "unicode": "f258", + "label": "Hand Lizard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 112C0 85.5 21.5 64 48 64H160h80 46.5c36.8 0 71.2 18 92.1 48.2l113.5 164c13 18.7 19.9 41 19.9 63.8v12 16 48c0 17.7-14.3 32-32 32H384c-17.7 0-32-14.3-32-32V402.2L273.9 352H240 160 112c-26.5 0-48-21.5-48-48s21.5-48 48-48h48 80c26.5 0 48-21.5 48-48s-21.5-48-48-48H160 48c-26.5 0-48-21.5-48-48z" + }, + "regular": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M72 112c-13.3 0-24 10.7-24 24s10.7 24 24 24H240c35.3 0 64 28.7 64 64s-28.7 64-64 64H136c-13.3 0-24 10.7-24 24s10.7 24 24 24H288c4.5 0 8.9 1.3 12.7 3.6l64 40c7 4.4 11.3 12.1 11.3 20.4v24c0 13.3-10.7 24-24 24s-24-10.7-24-24V413.3L281.1 384H136c-39.8 0-72-32.2-72-72s32.2-72 72-72H240c8.8 0 16-7.2 16-16s-7.2-16-16-16H72c-39.8 0-72-32.2-72-72S32.2 64 72 64H281.6c46.7 0 90.9 21.5 119.7 58.3l78.4 100.1c20.9 26.7 32.3 59.7 32.3 93.7V424c0 13.3-10.7 24-24 24s-24-10.7-24-24V316.1c0-23.2-7.8-45.8-22.1-64.1L363.5 151.9c-19.7-25.2-49.9-39.9-81.9-39.9H72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-middle-finger": { + "aliases": { + "unicodes": { + "composite": [ + "1f595" + ], + "secondary": [ + "10f806" + ] + } + }, + "changes": [ + "5.7.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "flip the bird", + "gesture", + "hand", + "hate", + "middle finger", + "rude" + ] + }, + "unicode": "f806", + "label": "Hand Middle Finger", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M216 0c-22.1 0-40 17.9-40 40V204.2c-8.5-7.6-19.7-12.2-32-12.2c-26.5 0-48 21.5-48 48v7 73c0 8.8-7.2 16-16 16s-16-7.2-16-16V264.3c-2 1.4-3.9 3-5.8 4.5L39 284.8C24.4 297 16 315 16 334V372c0 38 16.9 74 46.1 98.3l5.4 4.5c28.8 24 65 37.1 102.4 37.1H288c70.7 0 128-57.3 128-128V320 288c0-26.5-21.5-48-48-48c-12.4 0-23.6 4.7-32.1 12.3C334 227.5 313.3 208 288 208c-12.3 0-23.5 4.6-32 12.2V40c0-22.1-17.9-40-40-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-peace": { + "aliases": { + "unicodes": { + "composite": [ + "270c" + ], + "secondary": [ + "10f25b" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hand", + "rest", + "truce", + "v", + "victory", + "victory hand" + ] + }, + "unicode": "f25b", + "label": "Hand Peace", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M192 0c17.7 0 32 14.3 32 32V240H160V32c0-17.7 14.3-32 32-32zm96 160c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32zm64 64c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224zM61.3 51.2L143.9 240H74.1L2.7 76.8C-4.4 60.6 3 41.8 19.2 34.7s35.1 .3 42.1 16.5zm27 221.3l-.2-.5h69.9H184c22.1 0 40 17.9 40 40s-17.9 40-40 40H128c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72l0-.6c9.4 5.4 20.3 8.6 32 8.6c13.2 0 25.4-4 35.6-10.8c8.7 24.9 32.5 42.8 60.4 42.8c11.7 0 22.6-3.1 32-8.6V352c0 88.4-71.6 160-160 160H194.3c-42.4 0-83.1-16.9-113.1-46.9L69.5 453.5C45.5 429.5 32 396.9 32 363V336c0-32.7 24.6-59.7 56.3-63.5z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M218.8 1.4c-35.2-3.7-66.6 21.8-70.3 57L142 119 124.7 69.6C113 36.3 76.4 18.8 43.1 30.5S-7.8 78.8 3.9 112.1L56.7 262.2C41.5 276.7 32 297.3 32 320v0 24c0 92.8 75.2 168 168 168h48c92.8 0 168-75.2 168-168V272 256 224c0-35.3-28.7-64-64-64c-7.9 0-15.4 1.4-22.4 4c-10.4-21.3-32.3-36-57.6-36c-.7 0-1.5 0-2.2 0l5.9-56.3c3.7-35.2-21.8-66.6-57-70.3zm-.2 155.4C211.9 166.9 208 179 208 192v48c0 .7 0 1.4 0 2c-5.1-1.3-10.5-2-16-2h-7.4l-5.4-15.3 17-161.3c.9-8.8 8.8-15.2 17.6-14.2s15.2 8.8 14.2 17.6l-9.5 90.1zM79.4 85.6L133.7 240H112c-4 0-8 .3-11.9 .9L49.2 96.2c-2.9-8.3 1.5-17.5 9.8-20.4s17.5 1.5 20.4 9.8zM256 192c0-8.8 7.2-16 16-16s16 7.2 16 16v32 16c0 8.8-7.2 16-16 16s-16-7.2-16-16V192zm38.4 108c10.4 21.3 32.3 36 57.6 36c5.5 0 10.9-.7 16-2v10c0 66.3-53.7 120-120 120H200c-66.3 0-120-53.7-120-120l0-24 0 0c0-17.7 14.3-32 32-32h80c8.8 0 16 7.2 16 16s-7.2 16-16 16H152c-13.3 0-24 10.7-24 24s10.7 24 24 24h40c35.3 0 64-28.7 64-64c0-.7 0-1.4 0-2c5.1 1.3 10.5 2 16 2c7.9 0 15.4-1.4 22.4-4zM368 272c0 8.8-7.2 16-16 16s-16-7.2-16-16V240 224c0-8.8 7.2-16 16-16s16 7.2 16 16v32 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-point-down": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0a7" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "hand-o-down", + "point" + ] + }, + "unicode": "f0a7", + "label": "Hand Point Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 480c0 17.7 14.3 32 32 32s32-14.3 32-32V272H32V480zM224 320c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-17.7-14.3-32-32-32s-32 14.3-32 32v64zm-64 64c17.7 0 32-14.3 32-32V304c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 17.7 14.3 32 32 32zm160-96c0 17.7 14.3 32 32 32s32-14.3 32-32V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64zm-96-88l0 .6c9.4-5.4 20.3-8.6 32-8.6c13.2 0 25.4 4 35.6 10.8c8.7-24.9 32.5-42.8 60.4-42.8c11.7 0 22.6 3.1 32 8.6V160C384 71.6 312.4 0 224 0H162.3C119.8 0 79.1 16.9 49.1 46.9L37.5 58.5C13.5 82.5 0 115.1 0 149v27c0 35.3 28.7 64 64 64h88c22.1 0 40-17.9 40-40s-17.9-40-40-40H96c-8.8 0-16-7.2-16-16s7.2-16 16-16h56c39.8 0 72 32.2 72 72z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 448l0-177.6c5.2 1 10.5 1.6 16 1.6l16 0 0 32 0 144c0 8.8-7.2 16-16 16s-16-7.2-16-16zM80 224c-17.7 0-32-14.3-32-32c0 0 0 0 0 0l0-24c0-66.3 53.7-120 120-120l48 0c52.5 0 97.1 33.7 113.4 80.7c-3.1-.5-6.2-.7-9.4-.7c-20 0-37.9 9.2-49.7 23.6c-9-4.9-19.4-7.6-30.3-7.6c-15.1 0-29 5.3-40 14c-11-8.8-24.9-14-40-14l-40 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l40 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-40 0-40 0zM0 192s0 0 0 0c0 18 6 34.6 16 48l0 208c0 35.3 28.7 64 64 64s64-28.7 64-64l0-82c5.1 1.3 10.5 2 16 2c25.3 0 47.2-14.7 57.6-36c7 2.6 14.5 4 22.4 4c20 0 37.9-9.2 49.7-23.6c9 4.9 19.4 7.6 30.3 7.6c35.3 0 64-28.7 64-64l0-64 0-24C384 75.2 308.8 0 216 0L168 0C75.2 0 0 75.2 0 168l0 24zm336 64c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-48 0-16c0-8.8 7.2-16 16-16s16 7.2 16 16l0 64zM160 272c5.5 0 10.9-.7 16-2l0 2 0 32c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-32 16 0zm64-24l0-40c0-8.8 7.2-16 16-16s16 7.2 16 16l0 48 0 16c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-point-left": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0a5" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "finger", + "hand-o-left", + "left", + "point", + "previous" + ] + }, + "unicode": "f0a5", + "label": "Hand Point Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 96C14.3 96 0 110.3 0 128s14.3 32 32 32l208 0V96L32 96zM192 288c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm-64-64c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32s-14.3-32-32-32H160c-17.7 0-32 14.3-32 32zm96 160c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H224zm88-96l-.6 0c5.4 9.4 8.6 20.3 8.6 32c0 13.2-4 25.4-10.8 35.6c24.9 8.7 42.8 32.5 42.8 60.4c0 11.7-3.1 22.6-8.6 32H352c88.4 0 160-71.6 160-160V226.3c0-42.4-16.9-83.1-46.9-113.1l-11.6-11.6C429.5 77.5 396.9 64 363 64l-27 0c-35.3 0-64 28.7-64 64v88c0 22.1 17.9 40 40 40s40-17.9 40-40V160c0-8.8 7.2-16 16-16s16 7.2 16 16v56c0 39.8-32.2 72-72 72z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 128l177.6 0c-1 5.2-1.6 10.5-1.6 16l0 16-32 0L64 160c-8.8 0-16-7.2-16-16s7.2-16 16-16zm224 16c0-17.7 14.3-32 32-32c0 0 0 0 0 0l24 0c66.3 0 120 53.7 120 120l0 48c0 52.5-33.7 97.1-80.7 113.4c.5-3.1 .7-6.2 .7-9.4c0-20-9.2-37.9-23.6-49.7c4.9-9 7.6-19.4 7.6-30.3c0-15.1-5.3-29-14-40c8.8-11 14-24.9 14-40l0-40c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 40c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-40 0-40zm32-80s0 0 0 0c-18 0-34.6 6-48 16L64 80C28.7 80 0 108.7 0 144s28.7 64 64 64l82 0c-1.3 5.1-2 10.5-2 16c0 25.3 14.7 47.2 36 57.6c-2.6 7-4 14.5-4 22.4c0 20 9.2 37.9 23.6 49.7c-4.9 9-7.6 19.4-7.6 30.3c0 35.3 28.7 64 64 64l64 0 24 0c92.8 0 168-75.2 168-168l0-48c0-92.8-75.2-168-168-168l-24 0zM256 400c-8.8 0-16-7.2-16-16s7.2-16 16-16l48 0 16 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-64 0zM240 224c0 5.5 .7 10.9 2 16l-2 0-32 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l32 0 0 16zm24 64l40 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-48 0-16 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l24 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-point-right": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0a4" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "forward", + "hand-o-right", + "next", + "point", + "right" + ] + }, + "unicode": "f0a4", + "label": "Hand Point Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480 96c17.7 0 32 14.3 32 32s-14.3 32-32 32l-208 0 0-64 208 0zM320 288c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32s14.3-32 32-32h64zm64-64c0 17.7-14.3 32-32 32H304c-17.7 0-32-14.3-32-32s14.3-32 32-32h48c17.7 0 32 14.3 32 32zM288 384c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32h64zm-88-96l.6 0c-5.4 9.4-8.6 20.3-8.6 32c0 13.2 4 25.4 10.8 35.6C177.9 364.3 160 388.1 160 416c0 11.7 3.1 22.6 8.6 32H160C71.6 448 0 376.4 0 288l0-61.7c0-42.4 16.9-83.1 46.9-113.1l11.6-11.6C82.5 77.5 115.1 64 149 64l27 0c35.3 0 64 28.7 64 64v88c0 22.1-17.9 40-40 40s-40-17.9-40-40V160c0-8.8-7.2-16-16-16s-16 7.2-16 16v56c0 39.8 32.2 72 72 72z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 128l-177.6 0c1 5.2 1.6 10.5 1.6 16l0 16 32 0 144 0c8.8 0 16-7.2 16-16s-7.2-16-16-16zM224 144c0-17.7-14.3-32-32-32c0 0 0 0 0 0l-24 0c-66.3 0-120 53.7-120 120l0 48c0 52.5 33.7 97.1 80.7 113.4c-.5-3.1-.7-6.2-.7-9.4c0-20 9.2-37.9 23.6-49.7c-4.9-9-7.6-19.4-7.6-30.3c0-15.1 5.3-29 14-40c-8.8-11-14-24.9-14-40l0-40c0-13.3 10.7-24 24-24s24 10.7 24 24l0 40c0 8.8 7.2 16 16 16s16-7.2 16-16l0-40 0-40zM192 64s0 0 0 0c18 0 34.6 6 48 16l208 0c35.3 0 64 28.7 64 64s-28.7 64-64 64l-82 0c1.3 5.1 2 10.5 2 16c0 25.3-14.7 47.2-36 57.6c2.6 7 4 14.5 4 22.4c0 20-9.2 37.9-23.6 49.7c4.9 9 7.6 19.4 7.6 30.3c0 35.3-28.7 64-64 64l-64 0-24 0C75.2 448 0 372.8 0 280l0-48C0 139.2 75.2 64 168 64l24 0zm64 336c8.8 0 16-7.2 16-16s-7.2-16-16-16l-48 0-16 0c-8.8 0-16 7.2-16 16s7.2 16 16 16l64 0zm16-176c0 5.5-.7 10.9-2 16l2 0 32 0c8.8 0 16-7.2 16-16s-7.2-16-16-16l-32 0 0 16zm-24 64l-40 0c-8.8 0-16 7.2-16 16s7.2 16 16 16l48 0 16 0c8.8 0 16-7.2 16-16s-7.2-16-16-16l-24 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-point-up": { + "aliases": { + "unicodes": { + "composite": [ + "261d" + ], + "secondary": [ + "10f0a6" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "hand", + "hand-o-up", + "index", + "index pointing up", + "point", + "up" + ] + }, + "unicode": "f0a6", + "label": "Hand Point Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 32C32 14.3 46.3 0 64 0S96 14.3 96 32V240H32V32zM224 192c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V192zm-64-64c17.7 0 32 14.3 32 32v48c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32zm160 96c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224zm-96 88l0-.6c9.4 5.4 20.3 8.6 32 8.6c13.2 0 25.4-4 35.6-10.8c8.7 24.9 32.5 42.8 60.4 42.8c11.7 0 22.6-3.1 32-8.6V352c0 88.4-71.6 160-160 160H162.3c-42.4 0-83.1-16.9-113.1-46.9L37.5 453.5C13.5 429.5 0 396.9 0 363V336c0-35.3 28.7-64 64-64h88c22.1 0 40 17.9 40 40s-17.9 40-40 40H96c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 64V241.6c5.2-1 10.5-1.6 16-1.6H96V208 64c0-8.8-7.2-16-16-16s-16 7.2-16 16zM80 288c-17.7 0-32 14.3-32 32c0 0 0 0 0 0v24c0 66.3 53.7 120 120 120h48c52.5 0 97.1-33.7 113.4-80.7c-3.1 .5-6.2 .7-9.4 .7c-20 0-37.9-9.2-49.7-23.6c-9 4.9-19.4 7.6-30.3 7.6c-15.1 0-29-5.3-40-14c-11 8.8-24.9 14-40 14H120c-13.3 0-24-10.7-24-24s10.7-24 24-24h40c8.8 0 16-7.2 16-16s-7.2-16-16-16H120 80zM0 320s0 0 0 0c0-18 6-34.6 16-48V64C16 28.7 44.7 0 80 0s64 28.7 64 64v82c5.1-1.3 10.5-2 16-2c25.3 0 47.2 14.7 57.6 36c7-2.6 14.5-4 22.4-4c20 0 37.9 9.2 49.7 23.6c9-4.9 19.4-7.6 30.3-7.6c35.3 0 64 28.7 64 64v64 24c0 92.8-75.2 168-168 168H168C75.2 512 0 436.8 0 344V320zm336-64c0-8.8-7.2-16-16-16s-16 7.2-16 16v48 16c0 8.8 7.2 16 16 16s16-7.2 16-16V256zM160 240c5.5 0 10.9 .7 16 2v-2V208c0-8.8-7.2-16-16-16s-16 7.2-16 16v32h16zm64 24v40c0 8.8 7.2 16 16 16s16-7.2 16-16V256 240c0-8.8-7.2-16-16-16s-16 7.2-16 16v24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-pointer": { + "aliases": { + "unicodes": { + "secondary": [ + "10f25a" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "cursor", + "select" + ] + }, + "unicode": "f25a", + "label": "Hand Pointer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 40c0-22.1 17.9-40 40-40s40 17.9 40 40V188.2c8.5-7.6 19.7-12.2 32-12.2c25.3 0 46 19.5 47.9 44.3c8.5-7.7 19.8-12.3 32.1-12.3c25.3 0 46 19.5 47.9 44.3c8.5-7.7 19.8-12.3 32.1-12.3c26.5 0 48 21.5 48 48v32 64c0 70.7-57.3 128-128 128l-16 0H240l-.1 0h-5.2c-5 0-9.9-.3-14.7-1c-55.3-5.6-106.2-34-140-79L8 336c-13.3-17.7-9.7-42.7 8-56s42.7-9.7 56 8l56 74.7V40zM240 304c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304zm48-16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304c0-8.8-7.2-16-16-16zm80 16c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 64c0-8.8 7.2-16 16-16s16 7.2 16 16V200c0 10.3 6.6 19.5 16.4 22.8s20.6-.1 26.8-8.3c3-3.9 7.6-6.4 12.8-6.4c8.8 0 16 7.2 16 16v8c0 10.3 6.6 19.5 16.4 22.8s20.6-.1 26.8-8.3c3-3.9 7.6-6.4 12.8-6.4c8.8 0 16 7.2 16 16c0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2c8.8 0 16 7.2 16 16v96 8c0 39.8-32.2 72-72 72H272 212.3h-.9c-37.4 0-72.4-18.7-93.2-49.9L50.7 312.9c-4.9-7.4-2.9-17.3 4.4-22.2s17.3-2.9 22.2 4.4L116 353.2c5.9 8.8 16.8 12.7 26.9 9.7s17-12.4 17-23V320 64zM176 0c-35.3 0-64 28.7-64 64V261.7C91.2 238 55.5 232.8 28.5 250.7C-.9 270.4-8.9 310.1 10.8 339.5L78.3 440.8c29.7 44.5 79.6 71.2 133.1 71.2h.9H272h56c66.3 0 120-53.7 120-120v-8V288c0-35.3-28.7-64-64-64c-2.8 0-5.6 .2-8.3 .5c-11-19.4-31.8-32.5-55.7-32.5c-5.4 0-10.5 .7-15.5 1.9c-10.8-20.2-32-33.9-56.5-33.9c-2.7 0-5.4 .2-8 .5V64c0-35.3-28.7-64-64-64zm48 304c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304zm48-16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304c0-8.8-7.2-16-16-16zm80 16c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-scissors": { + "aliases": { + "unicodes": { + "secondary": [ + "10f257" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cut", + "game", + "roshambo" + ] + }, + "unicode": "f257", + "label": "Hand Scissors", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M40 208c-22.1 0-40 17.9-40 40s17.9 40 40 40l180.2 0c-7.6 8.5-12.2 19.7-12.2 32c0 25.3 19.5 46 44.3 47.9c-7.7 8.5-12.3 19.8-12.3 32.1c0 26.5 21.5 48 48 48l32 0 64 0c70.7 0 128-57.3 128-128l0-113.1c0-40.2-16-78.8-44.4-107.3C444.8 76.8 413.9 64 381.7 64L336 64c-21.3 0-39.3 13.9-45.6 33.1l74.5 23.7c8.4 2.7 13.1 11.7 10.4 20.1s-11.7 13.1-20.1 10.4L288 129.9l0 .1L84 65.8C62.9 59.2 40.5 70.9 33.8 92s5.1 43.5 26.2 50.2L269.5 208 40 208z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M.2 276.3c-1.2-35.3 26.4-65 61.7-66.2l3.3-.1L57 208.1C22.5 200.5 .7 166.3 8.3 131.8S50.2 75.5 84.7 83.2l173 38.3c2.3-2.9 4.6-5.7 7.1-8.5l18.4-20.3C299.9 74.5 323.5 64 348.3 64l10.2 0c54.1 0 104.1 28.7 131.3 75.4l1.5 2.6c13.6 23.2 20.7 49.7 20.7 76.6L512 344c0 66.3-53.7 120-120 120l-8 0-96 0c-35.3 0-64-28.7-64-64c0-2.8 .2-5.6 .5-8.3c-19.4-11-32.5-31.8-32.5-55.7c0-.8 0-1.6 0-2.4L66.4 338c-35.3 1.2-65-26.4-66.2-61.7zm63.4-18.2c-8.8 .3-15.7 7.7-15.4 16.5s7.7 15.7 16.5 15.4l161.5-5.6c9.8-.3 18.7 5.3 22.7 14.2s2.2 19.3-4.5 26.4c-2.8 2.9-4.4 6.7-4.4 11c0 8.8 7.2 16 16 16c9.1 0 17.4 5.1 21.5 13.3s3.2 17.9-2.3 25.1c-2 2.7-3.2 6-3.2 9.6c0 8.8 7.2 16 16 16l96 0 8 0c39.8 0 72-32.2 72-72l0-125.4c0-18.4-4.9-36.5-14.2-52.4l-1.5-2.6c-18.6-32-52.8-51.6-89.8-51.6l-10.2 0c-11.3 0-22 4.8-29.6 13.1l-17.5-15.9 17.5 15.9-18.4 20.3c-.6 .6-1.1 1.3-1.7 1.9l57 13.2c8.6 2 14 10.6 12 19.2s-10.6 14-19.2 12l-85.6-19.7L74.3 130c-8.6-1.9-17.2 3.5-19.1 12.2s3.5 17.2 12.2 19.1l187.5 41.6c10.2 2.3 17.8 10.9 18.7 21.4l.1 1c.6 6.6-1.5 13.1-5.8 18.1s-10.6 7.9-17.2 8.2L63.6 258.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-sparkles": { + "aliases": { + "unicodes": { + "secondary": [ + "10e05d" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clean", + "covid-19", + "hygiene", + "magic", + "palm", + "soap", + "wash" + ] + }, + "unicode": "e05d", + "label": "Hand Sparkles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0c17.7 0 32 14.3 32 32V240c0 8.8 7.2 16 16 16s16-7.2 16-16V64c0-17.7 14.3-32 32-32s32 14.3 32 32V240c0 8.8 7.2 16 16 16s16-7.2 16-16V128c0-17.7 14.3-32 32-32s32 14.3 32 32V323.1c-11.9 4.8-21.3 14.9-25 27.8l-8.9 31.2L478.9 391C460.6 396.3 448 413 448 432c0 18.9 12.5 35.6 30.6 40.9C448.4 497.4 409.9 512 368 512H348.8c-59.6 0-116.9-22.9-160-64L76.4 341c-16-15.2-16.6-40.6-1.4-56.6s40.6-16.6 56.6-1.4l60.5 57.6c0-1.5-.1-3.1-.1-4.6V64c0-17.7 14.3-32 32-32s32 14.3 32 32V240c0 8.8 7.2 16 16 16s16-7.2 16-16V32c0-17.7 14.3-32 32-32zm-7.3 326.6c-1.1-3.9-4.7-6.6-8.7-6.6s-7.6 2.7-8.7 6.6L288 352l-25.4 7.3c-3.9 1.1-6.6 4.7-6.6 8.7s2.7 7.6 6.6 8.7L288 384l7.3 25.4c1.1 3.9 4.7 6.6 8.7 6.6s7.6-2.7 8.7-6.6L320 384l25.4-7.3c3.9-1.1 6.6-4.7 6.6-8.7s-2.7-7.6-6.6-8.7L320 352l-7.3-25.4zM104 120l48.3 13.8c4.6 1.3 7.7 5.5 7.7 10.2s-3.1 8.9-7.7 10.2L104 168 90.2 216.3c-1.3 4.6-5.5 7.7-10.2 7.7s-8.9-3.1-10.2-7.7L56 168 7.7 154.2C3.1 152.9 0 148.7 0 144s3.1-8.9 7.7-10.2L56 120 69.8 71.7C71.1 67.1 75.3 64 80 64s8.9 3.1 10.2 7.7L104 120zM584 408l48.3 13.8c4.6 1.3 7.7 5.5 7.7 10.2s-3.1 8.9-7.7 10.2L584 456l-13.8 48.3c-1.3 4.6-5.5 7.7-10.2 7.7s-8.9-3.1-10.2-7.7L536 456l-48.3-13.8c-4.6-1.3-7.7-5.5-7.7-10.2s3.1-8.9 7.7-10.2L536 408l13.8-48.3c1.3-4.6 5.5-7.7 10.2-7.7s8.9 3.1 10.2 7.7L584 408z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-spock": { + "aliases": { + "unicodes": { + "composite": [ + "1f596" + ], + "secondary": [ + "10f259" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "hand", + "live long", + "palm", + "prosper", + "salute", + "spock", + "star trek", + "vulcan", + "vulcan salute" + ] + }, + "unicode": "f259", + "label": "Hand Spock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M214.9 23.7C210.3 6.6 192.8-3.5 175.7 1.1s-27.2 22.1-22.6 39.2L206 237.8c2.5 9.2-4.5 18.2-14 18.2c-6.4 0-12-4.2-13.9-10.3L134.6 102.7c-5.1-16.9-23-26.4-39.9-21.3s-26.4 23-21.3 39.9l62.8 206.4c2.4 7.9-7.2 13.8-13.2 8.1L67.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6L124.8 448c43.1 41.1 100.4 64 160 64h10.9 8.2c.1 0 .1-.1 .1-.1s.1-.1 .1-.1c58.3-3.5 108.6-43.2 125.3-99.7l81.2-275c5-16.9-4.7-34.7-21.6-39.8s-34.7 4.7-39.8 21.6L411.5 247.1c-1.6 5.3-6.4 8.9-12 8.9c-7.9 0-13.8-7.3-12.2-15.1l36-170.3c3.7-17.3-7.4-34.3-24.7-37.9s-34.3 7.4-37.9 24.7L323.1 235.1c-2.6 12.2-13.3 20.9-25.8 20.9c-11.9 0-22.4-8-25.4-19.5l-57-212.8z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M189.7 25.3l6.2 23.2-6.2-23.2zm48.9 28.4l23.2-6.2v0l-23.2 6.2zM161.3 74.3l-23.2 6.2v0l23.2-6.2zm46.5 175.3l-22.1 9.3c4.9 11.6 17.9 17.5 29.9 13.4s18.7-16.7 15.4-28.9l-23.2 6.2zm-51-121.1l-22.1 9.3 22.1-9.3zm-52.4-21.3l9.3 22.1-9.3-22.1zM83.1 159.5L61 168.8h0l22.1-9.3zm5.4 144.9l14.7-18.9L88.6 304.4zm-56.1 7l18.9 14.7h0L32.4 311.4zm7 56.1L24.7 386.5h0l14.7-18.9zm92 71.6l-14.7 18.9 14.7-18.9zm300.1-48.5l23.3 5.8-23.3-5.8zm55.2-220.9l23.3 5.8v0l-23.3-5.8zm-29.1-48.5l5.8-23.3-5.8 23.3zm-48.5 29.1l23.3 5.8v0l-23.3-5.8zM383 255l-23.3-5.8 0 0L383 255zm-2.6-.5l23.6 4.2 0 0-23.6-4.2zM407.4 103l23.6 4.2v0L407.4 103zM375 56.6l-4.2 23.6L375 56.6zM328.6 89L305 84.8v0L328.6 89zM299.5 252.6l-23.6-4.2 0 0 23.6 4.2zm-8 .3l23.2-6.2 0 0-23.2 6.2zM304 488l.5-24-.5 24zm-157-138L161.8 331l-14.7 18.9zM195.9 48.5c8.5-2.3 17.3 2.8 19.6 11.4l46.4-12.3c-9.1-34.2-44.1-54.5-78.3-45.4l12.3 46.4zM184.5 68.1c-2.3-8.5 2.8-17.3 11.4-19.6L183.6 2.1c-34.2 9.1-54.5 44.1-45.4 78.3l46.4-12.3zM231 243.4L184.5 68.1 138.1 80.4l46.5 175.3L231 243.4zM134.7 137.8l51 121.1L230 240.2 179 119.2l-44.2 18.6zm-21-8.5c8.1-3.4 17.5 .4 21 8.5L179 119.2C165.3 86.6 127.7 71.3 95.2 85l18.6 44.2zm-8.5 21c-3.4-8.1 .4-17.5 8.5-21L95.2 85C62.6 98.7 47.3 136.3 61 168.8l44.2-18.6zm76.2 181l-76.2-181L61 168.8l76.2 181 44.2-18.6zM73.8 323.4l58.5 45.5L161.8 331l-58.5-45.5L73.8 323.4zm-22.5 2.8c5.4-7 15.5-8.2 22.5-2.8l29.5-37.9c-27.9-21.7-68.1-16.7-89.8 11.2l37.9 29.5zm2.8 22.5c-7-5.4-8.2-15.5-2.8-22.5L13.5 296.7c-21.7 27.9-16.7 68.1 11.2 89.8l29.5-37.9zm92 71.6l-92-71.6L24.7 386.5l92 71.6 29.5-37.9zM273.9 464c-46.3 0-91.2-15.4-127.7-43.8l-29.5 37.9C161.6 493 216.9 512 273.9 512V464zm30.1 0H273.9v48H304V464zm2.8 0c-.8 0-1.5 0-2.3 0l-1 48c1.1 0 2.2 0 3.3 0V464zm101.5-79.2C396.7 431.3 354.8 464 306.8 464v48c70 0 131.1-47.7 148-115.6l-46.6-11.6zm55.2-220.9L408.3 384.8l46.6 11.6 55.2-220.9-46.6-11.6zm-11.6-19.4c8.6 2.1 13.8 10.8 11.6 19.4l46.6 11.6c8.6-34.3-12.3-69-46.6-77.6l-11.6 46.6zm-19.4 11.6c2.1-8.6 10.8-13.8 19.4-11.6l11.6-46.6c-34.3-8.6-69 12.3-77.6 46.6l46.6 11.6zM406.3 260.8l26.2-104.7-46.6-11.6L359.7 249.2l46.6 11.6zM381.7 280c11.6 0 21.7-7.9 24.6-19.2l-46.6-11.6c2.5-10.1 11.6-17.2 22-17.2v48zm-24.9-29.7c-2.8 15.5 9.2 29.7 24.9 29.7V232c14.1 0 24.8 12.8 22.3 26.7l-47.3-8.4zM383.8 98.8L356.8 250.3l47.3 8.4L431 107.2l-47.3-8.4zm-13-18.6c8.7 1.5 14.5 9.9 13 18.6l47.3 8.4c6.2-34.8-17-68-51.8-74.2l-8.4 47.3zm-18.6 13c1.5-8.7 9.9-14.5 18.6-13L379.2 33c-34.8-6.2-68 17-74.2 51.8l47.3 8.4zM323.2 256.8L352.2 93.2 305 84.8 275.9 248.4l47.3 8.4zM295.5 280c13.6 0 25.3-9.8 27.7-23.2l-47.3-8.4c1.7-9.5 9.9-16.4 19.6-16.4v48zm-27.2-20.9c3.3 12.3 14.4 20.9 27.2 20.9V232c9 0 16.9 6.1 19.2 14.8l-46.4 12.3zM215.5 59.9l52.8 199.2 46.4-12.3L261.9 47.6 215.5 59.9zM328 488c0 13.4-11.1 24.3-24.5 24l1-48c-13.5-.3-24.5 10.5-24.5 24h48zm-24 24c13.3 0 24-10.8 24-24H280c0-13.2 10.7-24 24-24v48zM137.2 349.8c-6.4-15.2 11.6-29 24.6-18.8l-29.5 37.9c26 20.2 61.9-7.3 49.1-37.7l-44.2 18.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "handcuffs": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrest", + "criminal", + "handcuffs", + "jail", + "lock", + "police", + "wrist" + ] + }, + "unicode": "e4f8", + "label": "Handcuffs", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M240 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM192 48a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm-32 80c17.7 0 32 14.3 32 32h8c13.3 0 24 10.7 24 24v16c0 1.7-.2 3.4-.5 5.1C280.3 229.6 320 286.2 320 352c0 88.4-71.6 160-160 160S0 440.4 0 352c0-65.8 39.7-122.4 96.5-146.9c-.4-1.6-.5-3.3-.5-5.1V184c0-13.3 10.7-24 24-24h8c0-17.7 14.3-32 32-32zm0 320a96 96 0 1 0 0-192 96 96 0 1 0 0 192zm192-96c0-25.9-5.1-50.5-14.4-73.1c16.9-32.9 44.8-59.1 78.9-73.9c-.4-1.6-.5-3.3-.5-5.1V184c0-13.3 10.7-24 24-24h8c0-17.7 14.3-32 32-32s32 14.3 32 32h8c13.3 0 24 10.7 24 24v16c0 1.7-.2 3.4-.5 5.1C600.3 229.6 640 286.2 640 352c0 88.4-71.6 160-160 160c-62 0-115.8-35.3-142.4-86.9c9.3-22.5 14.4-47.2 14.4-73.1zm224 0a96 96 0 1 0 -192 0 96 96 0 1 0 192 0zM368 0a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm80 48a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands": { + "aliases": { + "names": [ + "sign-language", + "signing" + ], + "unicodes": { + "secondary": [ + "10f2a7" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Translate", + "asl", + "deaf", + "hands" + ] + }, + "unicode": "f2a7", + "label": "Hands", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669918857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 160l-.1 72.6c-.1 52.2-24 101-64 133.1c.1-1.9 .1-3.8 .1-5.7v-8c0-71.8-37-138.6-97.9-176.7l-60.2-37.6c-8.6-5.4-17.9-8.4-27.3-9.4L216.7 48.8c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8l78 135.1c3.3 5.7 10.7 7.7 16.4 4.4s7.7-10.7 4.4-16.4l-62-107.4c-6.6-11.5-2.7-26.2 8.8-32.8S330 5 336.6 16.5l68 117.8 0 0 0 0 43.3 75L448 160c0-17.7 14.4-32 32-32s32 14.4 32 32zM211.9 88.5L236.5 131c-13.9 4.5-26.4 13.7-34.7 27c-.9 1.4-1.7 2.9-2.5 4.4l-28.9-50c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8zm-46.4 63.7l26.8 46.4c.6 6 2.1 11.8 4.3 17.4H192 178.7l0 0H147l-23-39.8c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8zM228.9 175c9.4-15 29.1-19.5 44.1-10.2l60.2 37.6C384.7 234.7 416 291.2 416 352v8c0 83.9-68.1 152-152 152H88c-13.3 0-24-10.7-24-24s10.7-24 24-24h92c6.6 0 12-5.4 12-12s-5.4-12-12-12H56c-13.3 0-24-10.7-24-24s10.7-24 24-24H180c6.6 0 12-5.4 12-12s-5.4-12-12-12H24c-13.3 0-24-10.7-24-24s10.7-24 24-24H180c6.6 0 12-5.4 12-12s-5.4-12-12-12H56c-13.3 0-24-10.7-24-24s10.7-24 24-24H192l0 0 0 0h93.2L239 219.1c-15-9.4-19.5-29.1-10.2-44.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-asl-interpreting": { + "aliases": { + "names": [ + "american-sign-language-interpreting", + "asl-interpreting", + "hands-american-sign-language-interpreting" + ], + "unicodes": { + "secondary": [ + "10f2a3" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "asl", + "deaf", + "finger", + "hand", + "interpret", + "speak" + ] + }, + "unicode": "f2a3", + "label": "Hands Asl Interpreting", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M156.6 46.3c7.9-15.8 1.5-35-14.3-42.9s-35-1.5-42.9 14.3L13.5 189.4C4.6 207.2 0 226.8 0 246.7V256c0 70.7 57.3 128 128 128h72 8v-.3c35.2-2.7 65.4-22.8 82.1-51.7c8.8-15.3 3.6-34.9-11.7-43.7s-34.9-3.6-43.7 11.7c-7 12-19.9 20-34.7 20c-22.1 0-40-17.9-40-40s17.9-40 40-40c14.8 0 27.7 8 34.7 20c8.8 15.3 28.4 20.5 43.7 11.7s20.5-28.4 11.7-43.7c-12.8-22.1-33.6-39.1-58.4-47.1l80.8-22c17-4.6 27.1-22.2 22.5-39.3s-22.2-27.1-39.3-22.5L194.9 124.6l81.6-68c13.6-11.3 15.4-31.5 4.1-45.1S249.1-3.9 235.5 7.4L133.6 92.3l23-46zM483.4 465.7c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l85.9-171.7c8.9-17.8 13.5-37.4 13.5-57.2V256c0-70.7-57.3-128-128-128H440h-8v.3c-35.2 2.7-65.4 22.8-82.1 51.7c-8.9 15.3-3.6 34.9 11.7 43.7s34.9 3.6 43.7-11.7c7-12 19.9-20 34.7-20c22.1 0 40 17.9 40 40s-17.9 40-40 40c-14.8 0-27.7-8-34.7-20c-8.9-15.3-28.4-20.5-43.7-11.7s-20.5 28.4-11.7 43.7c12.8 22.1 33.6 39.1 58.4 47.1l-80.8 22c-17.1 4.7-27.1 22.2-22.5 39.3s22.2 27.1 39.3 22.5l100.7-27.5-81.6 68c-13.6 11.3-15.4 31.5-4.1 45.1s31.5 15.4 45.1 4.1l101.9-84.9-23 46z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-bound": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abduction", + "bound", + "handcuff", + "wrist" + ] + }, + "unicode": "e4f9", + "label": "Hands Bound", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32V96v59.1 .7V192v21.9c0 14.2 5.1 27.9 14.3 38.7L99.6 352H96c-13.3 0-24 10.7-24 24s10.7 24 24 24h32H256h64H448h32c13.3 0 24-10.7 24-24s-10.7-24-24-24h-3.6l85.3-99.5c9.2-10.8 14.3-24.5 14.3-38.7V192 155.8v-.7V96 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V96v48.8l-69.3 92.4c-5.7 7.6-16.1 9.6-24.2 4.8c-9.7-5.7-12.1-18.7-5.1-27.5L441 180c10.8-13.5 8.9-33.3-4.4-44.5s-33-9.8-44.5 3.2l-46.7 52.5C329 209.7 320 233.4 320 258.1V320v32H256V320 258.1c0-24.6-9-48.4-25.4-66.8l-46.7-52.5c-11.5-13-31.3-14.4-44.5-3.2s-15.2 30.9-4.4 44.5l27.6 34.5c7 8.8 4.7 21.8-5.1 27.5c-8.1 4.8-18.6 2.7-24.2-4.8L64 144.8V96 32zm64 448v32H256V480h64v32H448V480h32c13.3 0 24-10.7 24-24s-10.7-24-24-24H448 320 256 128 96c-13.3 0-24 10.7-24 24s10.7 24 24 24h32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-bubbles": { + "aliases": { + "names": [ + "hands-wash" + ], + "unicodes": { + "secondary": [ + "10e05e" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "hygiene", + "soap", + "wash" + ] + }, + "unicode": "e05e", + "label": "Hands Bubbles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669918857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M384 64a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm96 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM128 464a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM0 160l.1 72.6c.1 52.2 24 101 64 133.1c-.1-1.9-.1-3.8-.1-5.7v-8c0-71.8 37-138.6 97.9-176.7l60.2-37.6c8.6-5.4 17.9-8.4 27.3-9.4l45.9-79.5c6.6-11.5 2.7-26.2-8.8-32.8s-26.2-2.7-32.8 8.8l-78 135.1c-3.3 5.7-10.7 7.7-16.4 4.4s-7.7-10.7-4.4-16.4l62-107.4c6.6-11.5 2.7-26.2-8.8-32.8S182 5 175.4 16.5l-68 117.8 0 0 0 0-43.3 75L64 160c0-17.7-14.4-32-32-32s-32 14.4-32 32zM300.1 88.5L275.5 131c13.9 4.5 26.4 13.7 34.7 27c.9 1.5 1.7 2.9 2.5 4.4l28.9-50c6.6-11.5 2.7-26.2-8.8-32.8s-26.2-2.7-32.8 8.8zm46.4 63.7l-26.8 46.4c-.6 6-2.1 11.8-4.3 17.4H320h13.3l0 0H365l23-39.8c6.6-11.5 2.7-26.2-8.8-32.8s-26.2-2.7-32.8 8.8zM283.1 175c-9.4-15-29.1-19.5-44.1-10.2l-60.2 37.6C127.3 234.7 96 291.2 96 352v8c0 8.9 .8 17.6 2.2 26.1c35.4 8.2 61.8 40 61.8 77.9c0 6.3-.7 12.5-2.1 18.4C183.1 501 214.3 512 248 512H424c13.3 0 24-10.7 24-24s-10.7-24-24-24H332c-6.6 0-12-5.4-12-12s5.4-12 12-12H456c13.3 0 24-10.7 24-24s-10.7-24-24-24H332c-6.6 0-12-5.4-12-12s5.4-12 12-12H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H332c-6.6 0-12-5.4-12-12s5.4-12 12-12H456c13.3 0 24-10.7 24-24s-10.7-24-24-24H320l0 0 0 0H226.8L273 219.1c15-9.4 19.5-29.1 10.2-44.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-clapping": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "applause", + "clap", + "clapping hands", + "hand" + ] + }, + "unicode": "e1a8", + "label": "Hands Clapping", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669918857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M336 16V80c0 8.8-7.2 16-16 16s-16-7.2-16-16V16c0-8.8 7.2-16 16-16s16 7.2 16 16zm-98.7 7.1l32 48c4.9 7.4 2.9 17.3-4.4 22.2s-17.3 2.9-22.2-4.4l-32-48c-4.9-7.4-2.9-17.3 4.4-22.2s17.3-2.9 22.2 4.4zM135 119c9.4-9.4 24.6-9.4 33.9 0L292.7 242.7c10.1 10.1 27.3 2.9 27.3-11.3V192c0-17.7 14.3-32 32-32s32 14.3 32 32V345.6c0 57.1-30 110-78.9 139.4c-64 38.4-145.8 28.3-198.5-24.4L7 361c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l53 53c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1L23 265c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l93 93c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1L55 185c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l117 117c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1l-93-93c-9.4-9.4-9.4-24.6 0-33.9zM433.1 484.9c-24.2 14.5-50.9 22.1-77.7 23.1c48.1-39.6 76.6-99 76.6-162.4l0-98.1c8.2-.1 16-6.4 16-16V192c0-17.7 14.3-32 32-32s32 14.3 32 32V345.6c0 57.1-30 110-78.9 139.4zM424.9 18.7c7.4 4.9 9.3 14.8 4.4 22.2l-32 48c-4.9 7.4-14.8 9.3-22.2 4.4s-9.3-14.8-4.4-22.2l32-48c4.9-7.4 14.8-9.3 22.2-4.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-holding": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4c2" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "hold", + "lift" + ] + }, + "unicode": "f4c2", + "label": "Hands Holding", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M80 104c0-22.1-17.9-40-40-40S0 81.9 0 104v56 64V325.5c0 25.5 10.1 49.9 28.1 67.9L128 493.3c12 12 28.3 18.7 45.3 18.7H240c26.5 0 48-21.5 48-48V385.1c0-29.7-11.8-58.2-32.8-79.2l-25.3-25.3 0 0-15.2-15.2-32-32c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l32 32 15.2 15.2c11 11 9.2 29.2-3.7 37.8c-9.7 6.5-22.7 5.2-31-3.1L98.7 309.5c-12-12-18.7-28.3-18.7-45.3V224 144 104zm480 0v40 80 40.2c0 17-6.7 33.3-18.7 45.3l-51.1 51.1c-8.3 8.3-21.3 9.6-31 3.1c-12.9-8.6-14.7-26.9-3.7-37.8l15.2-15.2 32-32c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-32 32-15.2 15.2 0 0-25.3 25.3c-21 21-32.8 49.5-32.8 79.2V464c0 26.5 21.5 48 48 48h66.7c17 0 33.3-6.7 45.3-18.7l99.9-99.9c18-18 28.1-42.4 28.1-67.9V224 160 104c0-22.1-17.9-40-40-40s-40 17.9-40 40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-holding-child": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "care", + "give", + "help", + "hold", + "protect" + ] + }, + "unicode": "e4fa", + "label": "Hands Holding Child", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0a40 40 0 1 1 0 80 40 40 0 1 1 0-80zm44.7 164.3L375.8 253c1.6 13.2-7.7 25.1-20.8 26.8s-25.1-7.7-26.8-20.8l-4.4-35h-7.6l-4.4 35c-1.6 13.2-13.6 22.5-26.8 20.8s-22.5-13.6-20.8-26.8l11.1-88.8L255.5 181c-10.1 8.6-25.3 7.3-33.8-2.8s-7.3-25.3 2.8-33.8l27.9-23.6C271.3 104.8 295.3 96 320 96s48.7 8.8 67.6 24.7l27.9 23.6c10.1 8.6 11.4 23.7 2.8 33.8s-23.7 11.4-33.8 2.8l-19.8-16.7zM40 64c22.1 0 40 17.9 40 40v40 80 40.2c0 17 6.7 33.3 18.7 45.3l51.1 51.1c8.3 8.3 21.3 9.6 31 3.1c12.9-8.6 14.7-26.9 3.7-37.8l-15.2-15.2-32-32c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l32 32 15.2 15.2 0 0 25.3 25.3c21 21 32.8 49.5 32.8 79.2V464c0 26.5-21.5 48-48 48H173.3c-17 0-33.3-6.7-45.3-18.7L28.1 393.4C10.1 375.4 0 351 0 325.5V224 160 104C0 81.9 17.9 64 40 64zm560 0c22.1 0 40 17.9 40 40v56 64V325.5c0 25.5-10.1 49.9-28.1 67.9L512 493.3c-12 12-28.3 18.7-45.3 18.7H400c-26.5 0-48-21.5-48-48V385.1c0-29.7 11.8-58.2 32.8-79.2l25.3-25.3 0 0 15.2-15.2 32-32c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-32 32-15.2 15.2c-11 11-9.2 29.2 3.7 37.8c9.7 6.5 22.7 5.2 31-3.1l51.1-51.1c12-12 18.7-28.3 18.7-45.3V224 144 104c0-22.1 17.9-40 40-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-holding-circle": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "circle", + "gift", + "protection" + ] + }, + "unicode": "e4fb", + "label": "Hands Holding Circle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0a128 128 0 1 1 0 256A128 128 0 1 1 320 0zM40 64c22.1 0 40 17.9 40 40v40 80 40.2c0 17 6.7 33.3 18.7 45.3l51.1 51.1c8.3 8.3 21.3 9.6 31 3.1c12.9-8.6 14.7-26.9 3.7-37.8l-15.2-15.2-32-32c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l32 32 15.2 15.2 0 0 25.3 25.3c21 21 32.8 49.5 32.8 79.2V464c0 26.5-21.5 48-48 48H173.3c-17 0-33.3-6.7-45.3-18.7L28.1 393.4C10.1 375.4 0 351 0 325.5V224 160 104C0 81.9 17.9 64 40 64zm560 0c22.1 0 40 17.9 40 40v56 64V325.5c0 25.5-10.1 49.9-28.1 67.9L512 493.3c-12 12-28.3 18.7-45.3 18.7H400c-26.5 0-48-21.5-48-48V385.1c0-29.7 11.8-58.2 32.8-79.2l25.3-25.3 0 0 15.2-15.2 32-32c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-32 32-15.2 15.2c-11 11-9.2 29.2 3.7 37.8c9.7 6.5 22.7 5.2 31-3.1l51.1-51.1c12-12 18.7-28.3 18.7-45.3V224 144 104c0-22.1 17.9-40 40-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-praying": { + "aliases": { + "names": [ + "praying-hands" + ], + "unicodes": { + "secondary": [ + "10f684" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "kneel", + "preach", + "religion", + "worship" + ] + }, + "unicode": "f684", + "label": "Hands Praying", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M351.2 4.8c3.2-2 6.6-3.3 10-4.1c4.7-1 9.6-.9 14.1 .1c7.7 1.8 14.8 6.5 19.4 13.6L514.6 194.2c8.8 13.1 13.4 28.6 13.4 44.4v73.5c0 6.9 4.4 13 10.9 15.2l79.2 26.4C631.2 358 640 370.2 640 384v96c0 9.9-4.6 19.3-12.5 25.4s-18.1 8.1-27.7 5.5L431 465.9c-56-14.9-95-65.7-95-123.7V224c0-17.7 14.3-32 32-32s32 14.3 32 32v80c0 8.8 7.2 16 16 16s16-7.2 16-16V219.1c0-7-1.8-13.8-5.3-19.8L340.3 48.1c-1.7-3-2.9-6.1-3.6-9.3c-1-4.7-1-9.6 .1-14.1c1.9-8 6.8-15.2 14.3-19.9zm-62.4 0c7.5 4.6 12.4 11.9 14.3 19.9c1.1 4.6 1.2 9.4 .1 14.1c-.7 3.2-1.9 6.3-3.6 9.3L213.3 199.3c-3.5 6-5.3 12.9-5.3 19.8V304c0 8.8 7.2 16 16 16s16-7.2 16-16V224c0-17.7 14.3-32 32-32s32 14.3 32 32V342.2c0 58-39 108.7-95 123.7l-168.7 45c-9.6 2.6-19.9 .5-27.7-5.5S0 489.9 0 480V384c0-13.8 8.8-26 21.9-30.4l79.2-26.4c6.5-2.2 10.9-8.3 10.9-15.2V238.5c0-15.8 4.7-31.2 13.4-44.4L245.2 14.5c4.6-7.1 11.7-11.8 19.4-13.6c4.6-1.1 9.4-1.2 14.1-.1c3.5 .8 6.9 2.1 10 4.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "handshake": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2b5" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agreement", + "greeting", + "meeting", + "partnership" + ] + }, + "unicode": "f2b5", + "label": "Handshake", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M323.4 85.2l-96.8 78.4c-16.1 13-19.2 36.4-7 53.1c12.9 17.8 38 21.3 55.3 7.8l99.3-77.2c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L512 316.8V128h-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2zm22.8 124.4l-51.7 40.2C263 274.4 217.3 268 193.7 235.6c-22.2-30.5-16.6-73.1 12.7-96.8l83.2-67.3c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-72 48V352h28.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c4.5-4.9 7.8-10.6 9.9-16.5c19.4 13 45.8 10.3 62.1-7.5c17.9-19.5 16.6-49.9-2.9-67.8l-134.2-123zM16 128c-8.8 0-16 7.2-16 16V352c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V128H16zM48 320a16 16 0 1 1 0 32 16 16 0 1 1 0-32zM544 128V352c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V144c0-8.8-7.2-16-16-16H544zm32 208a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + }, + "regular": { + "lastModified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M272.2 64.6l-51.1 51.1c-15.3 4.2-29.5 11.9-41.5 22.5L153 161.9C142.8 171 129.5 176 115.8 176H96V304c20.4 .6 39.8 8.9 54.3 23.4l35.6 35.6 7 7 0 0L219.9 397c6.2 6.2 16.4 6.2 22.6 0c1.7-1.7 3-3.7 3.7-5.8c2.8-7.7 9.3-13.5 17.3-15.3s16.4 .6 22.2 6.5L296.5 393c11.6 11.6 30.4 11.6 41.9 0c5.4-5.4 8.3-12.3 8.6-19.4c.4-8.8 5.6-16.6 13.6-20.4s17.3-3 24.4 2.1c9.4 6.7 22.5 5.8 30.9-2.6c9.4-9.4 9.4-24.6 0-33.9L340.1 243l-35.8 33c-27.3 25.2-69.2 25.6-97 .9c-31.7-28.2-32.4-77.4-1.6-106.5l70.1-66.2C303.2 78.4 339.4 64 377.1 64c36.1 0 71 13.3 97.9 37.2L505.1 128H544h40 40c8.8 0 16 7.2 16 16V352c0 17.7-14.3 32-32 32H576c-11.8 0-22.2-6.4-27.7-16H463.4c-3.4 6.7-7.9 13.1-13.5 18.7c-17.1 17.1-40.8 23.8-63 20.1c-3.6 7.3-8.5 14.1-14.6 20.2c-27.3 27.3-70 30-100.4 8.1c-25.1 20.8-62.5 19.5-86-4.1L159 404l-7-7-35.6-35.6c-5.5-5.5-12.7-8.7-20.4-9.3C96 369.7 81.6 384 64 384H32c-17.7 0-32-14.3-32-32V144c0-8.8 7.2-16 16-16H56 96h19.8c2 0 3.9-.7 5.3-2l26.5-23.6C175.5 77.7 211.4 64 248.7 64H259c4.4 0 8.9 .2 13.2 .6zM544 320V176H496c-5.9 0-11.6-2.2-15.9-6.1l-36.9-32.8c-18.2-16.2-41.7-25.1-66.1-25.1c-25.4 0-49.8 9.7-68.3 27.1l-70.1 66.2c-10.3 9.8-10.1 26.3 .5 35.7c9.3 8.3 23.4 8.1 32.5-.3l71.9-66.4c9.7-9 24.9-8.4 33.9 1.4s8.4 24.9-1.4 33.9l-.8 .8 74.4 74.4c10 10 16.5 22.3 19.4 35.1H544zM64 336a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm528 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "handshake-angle": { + "aliases": { + "names": [ + "hands-helping" + ], + "unicodes": { + "secondary": [ + "10f4c4" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aid", + "assistance", + "handshake", + "partnership", + "volunteering" + ] + }, + "unicode": "f4c4", + "label": "Handshake Angle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M534 248v3.3l69.7-69.7c21.9-21.9 21.9-57.3 0-79.2L525.6 24.4c-21.9-21.9-57.3-21.9-79.2 0L406.3 64.5c-2.7-.3-5.5-.5-8.3-.5H286c-37.1 0-67.6 28-71.6 64H214V248c0 22.1 17.9 40 40 40s40-17.9 40-40V176c0 0 0-.1 0-.1V160l16 0 136 0c0 0 0 0 .1 0H454c44.2 0 80 35.8 80 80v8zM326 192v56c0 39.8-32.2 72-72 72s-72-32.2-72-72V129.4c-35.9 6.2-65.8 32.3-76 68.2L89.5 255.2 16.3 328.4c-21.9 21.9-21.9 57.3 0 79.2l78.1 78.1c21.9 21.9 57.3 21.9 79.2 0l37.7-37.7c.9 0 1.8 .1 2.7 .1H374c26.5 0 48-21.5 48-48c0-5.6-1-11-2.7-16H422c26.5 0 48-21.5 48-48c0-12.8-5-24.4-13.2-33c25.7-5 45.1-27.6 45.2-54.8v-.4c-.1-30.8-25.1-55.8-56-55.8c0 0 0 0 0 0l-120 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "handshake-simple": { + "aliases": { + "names": [ + "handshake-alt" + ], + "unicodes": { + "composite": [ + "1f91d" + ], + "secondary": [ + "10f4c6" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agreement", + "greeting", + "hand", + "handshake", + "meeting", + "partnership", + "shake" + ] + }, + "unicode": "f4c6", + "label": "Handshake Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M323.4 85.2l-96.8 78.4c-16.1 13-19.2 36.4-7 53.1c12.9 17.8 38 21.3 55.3 7.8l99.3-77.2c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L550.2 352H592c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H516h-4-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2zm22.8 124.4l-51.7 40.2C263 274.4 217.3 268 193.7 235.6c-22.2-30.5-16.6-73.1 12.7-96.8l83.2-67.3c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-72 48H48c-26.5 0-48 21.5-48 48V304c0 26.5 21.5 48 48 48H156.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c4.5-4.9 7.8-10.6 9.9-16.5c19.4 13 45.8 10.3 62.1-7.5c17.9-19.5 16.6-49.9-2.9-67.8l-134.2-123z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "handshake-simple-slash": { + "aliases": { + "names": [ + "handshake-alt-slash" + ], + "unicodes": { + "secondary": [ + "10e05f" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "broken", + "covid-19", + "social distance" + ] + }, + "unicode": "e05f", + "label": "Handshake Simple Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-135-105.8c-1.1-11.4-6.3-22.3-15.3-30.7l-134.2-123-23.4 18.2-26-20.3 77.2-60.1c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L550.2 352H592c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H516h-4-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2l-89.7 72.6-25.8-20.3 81.8-66.2c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-35.5 23.7L38.8 5.1zM0 176V304c0 26.5 21.5 48 48 48H156.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c.8-.8 1.5-1.7 2.2-2.6L41.2 128.5C17.9 131.8 0 151.8 0 176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "handshake-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e060" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "broken", + "covid-19", + "social distance" + ] + }, + "unicode": "e060", + "label": "Handshake Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-135-105.8c-1.1-11.4-6.3-22.3-15.3-30.7l-134.2-123-23.4 18.2-26-20.3 77.2-60.1c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L512 316.8V128h-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2l-89.7 72.6-25.8-20.3 81.8-66.2c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-35.5 23.7L38.8 5.1zM96 171.6L40.6 128H0V352c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V171.6zM413.6 421.9L128 196.9V352h28.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c.8-.8 1.5-1.7 2.2-2.6zM48 320a16 16 0 1 1 0 32 16 16 0 1 1 0-32zM544 128V352c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V128H544zm32 208a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hanukiah": { + "aliases": { + "unicodes": { + "composite": [ + "1f54e" + ], + "secondary": [ + "10f6e6" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "candelabrum", + "candle", + "candlestick", + "hanukkah", + "jewish", + "judaism", + "light", + "menorah", + "religion" + ] + }, + "unicode": "f6e6", + "label": "Hanukiah", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M314.2 3.3C309.1 12.1 296 36.6 296 56c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7C324.6 1.2 322.4 0 320 0s-4.6 1.2-5.8 3.3zm-288 48C21.1 60.1 8 84.6 8 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7C36.6 49.2 34.4 48 32 48s-4.6 1.2-5.8 3.3zM88 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C101.1 60.1 88 84.6 88 104zm82.2-52.7C165.1 60.1 152 84.6 152 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3zM216 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C229.1 60.1 216 84.6 216 104zM394.2 51.3C389.1 60.1 376 84.6 376 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3zM440 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C453.1 60.1 440 84.6 440 104zm82.2-52.7C517.1 60.1 504 84.6 504 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3zM584 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C597.1 60.1 584 84.6 584 104zM112 160c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm160 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zM352 144c0-17.7-14.3-32-32-32s-32 14.3-32 32V320H96c-17.7 0-32-14.3-32-32V192c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 53 43 96 96 96H288v64H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H320 480c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V384H544c53 0 96-43 96-96V192c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H352V144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hard-drive": { + "aliases": { + "names": [ + "hdd" + ], + "unicodes": { + "composite": [ + "1f5b4" + ], + "secondary": [ + "10f0a0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Hard Disk", + "cpu", + "hard drive", + "harddrive", + "machine", + "save", + "storage" + ] + }, + "unicode": "f0a0", + "label": "Hard Drive", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V280.4c-17-15.2-39.4-24.4-64-24.4H64c-24.6 0-47 9.2-64 24.4V96zM64 288H448c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V352c0-35.3 28.7-64 64-64zM320 416a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm128-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + }, + "regular": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16V258c5.1-1.3 10.5-2 16-2H448c5.5 0 10.9 .7 16 2V96c0-8.8-7.2-16-16-16H64zM48 320v96c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V320c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zM0 320V96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V320v96c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320zm280 48a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm120-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hashnode": { + "changes": [ + "6.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e499", + "label": "Hashnode", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M35.19 171.1C-11.72 217.1-11.72 294 35.19 340.9L171.1 476.8C217.1 523.7 294 523.7 340.9 476.8L476.8 340.9C523.7 294 523.7 217.1 476.8 171.1L340.9 35.19C294-11.72 217.1-11.72 171.1 35.19L35.19 171.1zM315.5 315.5C282.6 348.3 229.4 348.3 196.6 315.5C163.7 282.6 163.7 229.4 196.6 196.6C229.4 163.7 282.6 163.7 315.5 196.6C348.3 229.4 348.3 282.6 315.5 315.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hashtag": { + "aliases": { + "unicodes": { + "composite": [ + "f292" + ], + "primary": [ + "f292" + ], + "secondary": [ + "1023", + "10f292" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Number Sign", + "Twitter", + "instagram", + "pound", + "social media", + "tag" + ] + }, + "unicode": "23", + "label": "Hashtag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M181.3 32.4c17.4 2.9 29.2 19.4 26.3 36.8L197.8 128h95.1l11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3s29.2 19.4 26.3 36.8L357.8 128H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H347.1L325.8 320H384c17.7 0 32 14.3 32 32s-14.3 32-32 32H315.1l-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l9.8-58.7H155.1l-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8L90.2 384H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l21.3-128H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3zM187.1 192L165.8 320h95.1l21.3-128H187.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hat-cowboy": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8c0" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buckaroo", + "horse", + "jackeroo", + "john b.", + "old west", + "pardner", + "ranch", + "rancher", + "rodeo", + "western", + "wrangler" + ] + }, + "unicode": "f8c0", + "label": "Hat Cowboy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 64c14.4 0 22.3-7 30.8-14.4C360.4 41.1 370.7 32 392 32c49.3 0 84.4 152.2 97.9 221.9C447.8 272.1 390.9 288 320 288s-127.8-15.9-169.9-34.1C163.6 184.2 198.7 32 248 32c21.3 0 31.6 9.1 41.2 17.6C297.7 57 305.6 64 320 64zM111.1 270.7c47.2 24.5 117.5 49.3 209 49.3s161.8-24.8 208.9-49.3c24.8-12.9 49.8-28.3 70.1-47.7c7.9-7.9 20.2-9.2 29.6-3.3c9.5 5.9 13.5 17.9 9.9 28.5c-13.5 37.7-38.4 72.3-66.1 100.6C523.7 398.9 443.6 448 320 448s-203.6-49.1-252.5-99.2C39.8 320.4 14.9 285.8 1.4 248.1c-3.6-10.6 .4-22.6 9.9-28.5c9.5-5.9 21.7-4.5 29.6 3.3c20.4 19.4 45.3 34.8 70.1 47.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hat-cowboy-side": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8c1" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buckaroo", + "horse", + "jackeroo", + "john b.", + "old west", + "pardner", + "ranch", + "rancher", + "rodeo", + "western", + "wrangler" + ] + }, + "unicode": "f8c1", + "label": "Hat Cowboy Side", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M152.7 135.9l-10.4 57.2c6.8-.7 13.6-1.1 20.5-1.1h10.7c39.4 0 77.8 12.1 110.1 34.7L562.4 421.8l35.1 24.6c24.4-6 42.5-28.1 42.5-54.4c0-75.8-94.7-126.6-134.6-144.7L474 83.9C468.2 53.8 441.8 32 411.1 32h-2.7c-5.6 0-11.1 .7-16.5 2.2L199.2 85.5c-23.9 6.4-42 26-46.5 50.4zM0 384c0 35.3 28.7 64 64 64H544L265.3 252.9c-26.9-18.8-58.9-28.9-91.8-28.9H162.9c-60.6 0-116 34.2-143.1 88.4L13.5 325C4.6 342.7 0 362.3 0 382.2V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hat-wizard": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6e8" + ] + } + }, + "changes": [ + "5.4.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "accessory", + "buckle", + "clothing", + "d&d", + "dnd", + "fantasy", + "halloween", + "head", + "holiday", + "mage", + "magic", + "pointy", + "witch" + ] + }, + "unicode": "f6e8", + "label": "Hat Wizard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 416L168.6 180.7c15.3-34.4 40.3-63.5 72-83.7l146.9-94c3-1.9 6.5-2.9 10-2.9C407.7 0 416 8.3 416 18.6v1.6c0 2.6-.5 5.1-1.4 7.5L354.8 176.9c-1.9 4.7-2.8 9.7-2.8 14.7c0 5.5 1.2 11 3.4 16.1L448 416H240.9l11.8-35.4 40.4-13.5c6.5-2.2 10.9-8.3 10.9-15.2s-4.4-13-10.9-15.2l-40.4-13.5-13.5-40.4C237 276.4 230.9 272 224 272s-13 4.4-15.2 10.9l-13.5 40.4-40.4 13.5C148.4 339 144 345.1 144 352s4.4 13 10.9 15.2l40.4 13.5L207.1 416H64zM279.6 141.5c-1.1-3.3-4.1-5.5-7.6-5.5s-6.5 2.2-7.6 5.5l-6.7 20.2-20.2 6.7c-3.3 1.1-5.5 4.1-5.5 7.6s2.2 6.5 5.5 7.6l20.2 6.7 6.7 20.2c1.1 3.3 4.1 5.5 7.6 5.5s6.5-2.2 7.6-5.5l6.7-20.2 20.2-6.7c3.3-1.1 5.5-4.1 5.5-7.6s-2.2-6.5-5.5-7.6l-20.2-6.7-6.7-20.2zM32 448H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "head-side-cough": { + "aliases": { + "unicodes": { + "secondary": [ + "10e061" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cough", + "covid-19", + "germs", + "lungs", + "respiratory", + "sick" + ] + }, + "unicode": "e061", + "label": "Head Side Cough", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 224.2C0 100.6 100.2 0 224 0h32c95.2 0 174.2 69.3 189.4 160.1c2.2 13 6.7 25.7 15 36.1l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4c0 24.2-19.6 43.8-43.8 43.8H448v0 32L339.2 365.6c-11 1.4-19.2 10.7-19.2 21.8c0 11.6 9 21.2 20.6 21.9L448 416v16c0 26.5-21.5 48-48 48H320v8c0 13.3-10.7 24-24 24H256v0H96c-17.7 0-32-14.3-32-32V407.3c0-16.7-6.9-32.5-17.1-45.8C16.6 322.4 0 274.1 0 224.2zm352-.2a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM464 384a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm152-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM592 480a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM552 312a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm40-24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM552 408a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "head-side-cough-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e062" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cough", + "covid-19", + "germs", + "lungs", + "respiratory", + "sick" + ] + }, + "unicode": "e062", + "label": "Head Side Cough Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L440.3 319.8c22.3-2.1 39.7-20.8 39.7-43.7c0-10-3.4-19.6-9.6-27.4l-42-52.6c-8.3-10.3-12.8-23-15-36.1C398.2 69.3 319.2 0 224 0H201.7C157 0 115.7 14.5 82.2 39.2L38.8 5.1zM0 201.7c0 44.8 18.3 91.5 46.5 127.7C56.9 342.8 64 358.8 64 375.8V480c0 17.7 14.3 32 32 32H256c17.7 0 32-14.3 32-32h64c32.8 0 59.9-24.7 63.6-56.6l-9.4-7.4H352c-17.7 0-32-14.3-32-32c0-10.5 5.1-19.9 12.9-25.7L20.8 112.4C7.5 139.3 0 169.6 0 201.7zM632 288a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm-88 72a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm64 48a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "head-side-mask": { + "aliases": { + "unicodes": { + "secondary": [ + "10e063" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "coronavirus", + "covid-19", + "filter", + "flu", + "infection", + "pandemic", + "respirator", + "virus" + ] + }, + "unicode": "e063", + "label": "Head Side Mask", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224.2c0-22.2 3.2-43.6 9.2-63.9l227 165.1C228.5 337.8 224 352.4 224 368V512H96c-17.7 0-32-14.3-32-32V407.3c0-16.7-6.9-32.5-17.1-45.8C16.6 322.4 0 274.1 0 224.2zm258.6 77.9L21 129.3C56.7 53 134.2 0 224 0h32c95.2 0 174.2 69.3 189.4 160.1c2.2 13 6.7 25.7 15 36.1l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4c0 4.1-.6 8.1-1.6 11.9H304c-16.9 0-32.5 5.2-45.4 14.1zM352 224a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM256 512V368c0-26.5 21.5-48 48-48H512l-16 48H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H485.3l-10.7 32H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H464l-1.4 4.2c-8.7 26.1-33.2 43.8-60.7 43.8H256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "head-side-virus": { + "aliases": { + "unicodes": { + "secondary": [ + "10e064" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "coronavirus", + "covid-19", + "flu", + "infection", + "pandemic", + "sick" + ] + }, + "unicode": "e064", + "label": "Head Side Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224.2C0 100.6 100.2 0 224 0h32c95.2 0 174.2 69.3 189.4 160.1c2.2 13 6.7 25.7 15 36.1l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4c0 24.2-19.6 43.8-43.8 43.8H448v64c0 35.3-28.7 64-64 64H320v32c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V407.3c0-16.7-6.9-32.5-17.1-45.8C16.6 322.4 0 274.1 0 224.2zM240 80c-8.8 0-16 7.2-16 16c0 33-39.9 49.5-63.2 26.2c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6C161.5 168.1 145 208 112 208c-8.8 0-16 7.2-16 16s7.2 16 16 16c33 0 49.5 39.9 26.2 63.2c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0C184.1 302.5 224 319 224 352c0 8.8 7.2 16 16 16s16-7.2 16-16c0-33 39.9-49.5 63.2-26.2c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6C318.5 279.9 335 240 368 240c8.8 0 16-7.2 16-16s-7.2-16-16-16c-33 0-49.5-39.9-26.2-63.2c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0C295.9 145.5 256 129 256 96c0-8.8-7.2-16-16-16zm-24 96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm40 80a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heading": { + "aliases": { + "names": [ + "header" + ], + "unicodes": { + "secondary": [ + "10f1dc" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.9.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "header", + "text", + "title" + ] + }, + "unicode": "f1dc", + "label": "Heading", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H80h48c17.7 0 32 14.3 32 32s-14.3 32-32 32H112V208H336V96H320c-17.7 0-32-14.3-32-32s14.3-32 32-32h48 48c17.7 0 32 14.3 32 32s-14.3 32-32 32H400V240 416h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H368 320c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V272H112V416h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H80 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48V240 96H32C14.3 96 0 81.7 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "headphones": { + "aliases": { + "unicodes": { + "composite": [ + "1f3a7" + ], + "secondary": [ + "10f025" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "earbud", + "headphone", + "listen", + "music", + "sound", + "speaker" + ] + }, + "unicode": "f025", + "label": "Headphones", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 80C149.9 80 62.4 159.4 49.6 262c9.4-3.8 19.6-6 30.4-6c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48c-44.2 0-80-35.8-80-80V384 336 288C0 146.6 114.6 32 256 32s256 114.6 256 256v48 48 16c0 44.2-35.8 80-80 80c-26.5 0-48-21.5-48-48V304c0-26.5 21.5-48 48-48c10.8 0 21 2.1 30.4 6C449.6 159.4 362.1 80 256 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "headphones-simple": { + "aliases": { + "names": [ + "headphones-alt" + ], + "unicodes": { + "secondary": [ + "10f58f" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "listen", + "music", + "sound", + "speaker" + ] + }, + "unicode": "f58f", + "label": "Headphones Simple", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 80C141.1 80 48 173.1 48 288V392c0 13.3-10.7 24-24 24s-24-10.7-24-24V288C0 146.6 114.6 32 256 32s256 114.6 256 256V392c0 13.3-10.7 24-24 24s-24-10.7-24-24V288c0-114.9-93.1-208-208-208zM80 352c0-35.3 28.7-64 64-64h16c17.7 0 32 14.3 32 32V448c0 17.7-14.3 32-32 32H144c-35.3 0-64-28.7-64-64V352zm288-64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H352c-17.7 0-32-14.3-32-32V320c0-17.7 14.3-32 32-32h16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "headset": { + "aliases": { + "unicodes": { + "secondary": [ + "10f590" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "gamer", + "gaming", + "listen", + "live chat", + "microphone", + "shot caller", + "sound", + "support", + "telemarketer" + ] + }, + "unicode": "f590", + "label": "Headset", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48C141.1 48 48 141.1 48 256v40c0 13.3-10.7 24-24 24s-24-10.7-24-24V256C0 114.6 114.6 0 256 0S512 114.6 512 256V400.1c0 48.6-39.4 88-88.1 88L313.6 488c-8.3 14.3-23.8 24-41.6 24H240c-26.5 0-48-21.5-48-48s21.5-48 48-48h32c17.8 0 33.3 9.7 41.6 24l110.4 .1c22.1 0 40-17.9 40-40V256c0-114.9-93.1-208-208-208zM144 208h16c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H144c-35.3 0-64-28.7-64-64V272c0-35.3 28.7-64 64-64zm224 0c35.3 0 64 28.7 64 64v48c0 35.3-28.7 64-64 64H352c-17.7 0-32-14.3-32-32V240c0-17.7 14.3-32 32-32h16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart": { + "aliases": { + "unicodes": { + "composite": [ + "1f499", + "1f49a", + "1f49b", + "1f49c", + "1f5a4", + "1f90d", + "1f90e", + "1f9e1", + "2665", + "2764", + "f08a" + ], + "secondary": [ + "10f004" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "black", + "black heart", + "blue", + "blue heart", + "brown", + "brown heart", + "card", + "evil", + "favorite", + "game", + "green", + "green heart", + "heart", + "heart suit", + "like", + "love", + "orange", + "orange heart", + "purple", + "purple heart", + "red heart", + "relationship", + "valentine", + "white", + "white heart", + "wicked", + "yellow", + "yellow heart" + ] + }, + "unicode": "f004", + "label": "Heart", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z" + }, + "regular": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M244 84L255.1 96L267.1 84.02C300.6 51.37 347 36.51 392.6 44.1C461.5 55.58 512 115.2 512 185.1V190.9C512 232.4 494.8 272.1 464.4 300.4L283.7 469.1C276.2 476.1 266.3 480 256 480C245.7 480 235.8 476.1 228.3 469.1L47.59 300.4C17.23 272.1 0 232.4 0 190.9V185.1C0 115.2 50.52 55.58 119.4 44.1C164.1 36.51 211.4 51.37 244 84C243.1 84 244 84.01 244 84L244 84zM255.1 163.9L210.1 117.1C188.4 96.28 157.6 86.4 127.3 91.44C81.55 99.07 48 138.7 48 185.1V190.9C48 219.1 59.71 246.1 80.34 265.3L256 429.3L431.7 265.3C452.3 246.1 464 219.1 464 190.9V185.1C464 138.7 430.4 99.07 384.7 91.44C354.4 86.4 323.6 96.28 301.9 117.1L255.1 163.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "heart-circle-bolt": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cardiogram", + "ekg", + "electric", + "heart", + "love", + "pacemaker" + ] + }, + "unicode": "e4fc", + "label": "Heart Circle Bolt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm47.9-225c4.3 3.7 5.4 9.9 2.6 14.9L452.4 356H488c5.2 0 9.8 3.3 11.4 8.2s-.1 10.3-4.2 13.4l-96 72c-4.5 3.4-10.8 3.2-15.1-.6s-5.4-9.9-2.6-14.9L411.6 380H376c-5.2 0-9.8-3.3-11.4-8.2s.1-10.3 4.2-13.4l96-72c4.5-3.4 10.8-3.2 15.1 .6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love", + "not affected", + "ok", + "okay" + ] + }, + "unicode": "e4fd", + "label": "Heart Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM576 368c0-79.5-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144s144-64.5 144-144zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L416 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love" + ] + }, + "unicode": "e4fe", + "label": "Heart Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm0-48c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm0-192c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-circle-minus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love" + ] + }, + "unicode": "e4ff", + "label": "Heart Circle Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM576 368c0-79.5-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144s144-64.5 144-144zm-64 0c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16H496c8.8 0 16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-circle-plus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love" + ] + }, + "unicode": "e500", + "label": "Heart Circle Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm16-208v48h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H448v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V384H368c-8.8 0-16-7.2-16-16s7.2-16 16-16h48V304c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love" + ] + }, + "unicode": "e501", + "label": "Heart Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm59.3-180.7L454.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L432 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L409.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L432 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-crack": { + "aliases": { + "names": [ + "heart-broken" + ], + "unicodes": { + "composite": [ + "1f494" + ], + "secondary": [ + "10f7a9" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "break", + "breakup", + "broken", + "broken heart", + "crushed", + "dislike", + "dumped", + "grief", + "love", + "lovesick", + "relationship", + "sad" + ] + }, + "unicode": "f7a9", + "label": "Heart Crack", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M119.4 44.1c23.3-3.9 46.8-1.9 68.6 5.3l49.8 77.5-75.4 75.4c-1.5 1.5-2.4 3.6-2.3 5.8s1 4.2 2.6 5.7l112 104c2.9 2.7 7.4 2.9 10.5 .3s3.8-7 1.7-10.4l-60.4-98.1 90.7-75.6c2.6-2.1 3.5-5.7 2.4-8.8L296.8 61.8c28.5-16.7 62.4-23.2 95.7-17.6C461.5 55.6 512 115.2 512 185.1v5.8c0 41.5-17.2 81.2-47.6 109.5L283.7 469.1c-7.5 7-17.4 10.9-27.7 10.9s-20.2-3.9-27.7-10.9L47.6 300.4C17.2 272.1 0 232.4 0 190.9v-5.8c0-69.9 50.5-129.5 119.4-141z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-pulse": { + "aliases": { + "names": [ + "heartbeat" + ], + "unicodes": { + "secondary": [ + "10f21e" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ekg", + "electrocardiogram", + "health", + "lifeline", + "vital signs" + ] + }, + "unicode": "f21e", + "label": "Heart Pulse", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M228.3 469.1L47.6 300.4c-4.2-3.9-8.2-8.1-11.9-12.4h87c22.6 0 43-13.6 51.7-34.5l10.5-25.2 49.3 109.5c3.8 8.5 12.1 14 21.4 14.1s17.8-5 22-13.3L320 253.7l1.7 3.4c9.5 19 28.9 31 50.1 31H476.3c-3.7 4.3-7.7 8.5-11.9 12.4L283.7 469.1c-7.5 7-17.4 10.9-27.7 10.9s-20.2-3.9-27.7-10.9zM503.7 240h-132c-3 0-5.8-1.7-7.2-4.4l-23.2-46.3c-4.1-8.1-12.4-13.3-21.5-13.3s-17.4 5.1-21.5 13.3l-41.4 82.8L205.9 158.2c-3.9-8.7-12.7-14.3-22.2-14.1s-18.1 5.9-21.8 14.8l-31.8 76.3c-1.2 3-4.2 4.9-7.4 4.9H16c-2.6 0-5 .4-7.3 1.1C3 225.2 0 208.2 0 190.9v-5.8c0-69.9 50.5-129.5 119.4-141C165 36.5 211.4 51.4 244 84l12 12 12-12c32.6-32.6 79-47.5 124.6-39.9C461.5 55.6 512 115.2 512 185.1v5.8c0 16.9-2.8 33.5-8.3 49.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "helicopter": { + "aliases": { + "unicodes": { + "composite": [ + "1f681" + ], + "secondary": [ + "10f533" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airwolf", + "apache", + "chopper", + "flight", + "fly", + "helicopter", + "travel", + "vehicle" + ] + }, + "unicode": "f533", + "label": "Helicopter", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 32c0-17.7 14.3-32 32-32H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H384v64h32c88.4 0 160 71.6 160 160v64c0 17.7-14.3 32-32 32H384 320c-20.1 0-39.1-9.5-51.2-25.6l-71.4-95.2c-3.5-4.7-8.3-8.3-13.7-10.5L47.2 198.1c-9.5-3.8-16.7-12-19.2-22L5 83.9C2.4 73.8 10.1 64 20.5 64H48c10.1 0 19.6 4.7 25.6 12.8L112 128H320V64H160c-17.7 0-32-14.3-32-32zM384 320H512V288c0-53-43-96-96-96H384V320zM630.6 425.4c12.5 12.5 12.5 32.8 0 45.3l-3.9 3.9c-24 24-56.6 37.5-90.5 37.5H256c-17.7 0-32-14.3-32-32s14.3-32 32-32H536.2c17 0 33.3-6.7 45.3-18.7l3.9-3.9c12.5-12.5 32.8-12.5 45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "helicopter-symbol": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chopper", + "helicopter", + "landing pad", + "whirlybird" + ] + }, + "unicode": "e502", + "label": "Helicopter Symbol", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M443.3 224H508C493.6 108.2 401.8 16.4 286 2V66.7C366.4 80.1 429.9 143.6 443.3 224zM508 288H443.3C429.9 368.4 366.4 431.9 286 445.4V510c115.8-14.4 207.6-106.2 222-222zM0 288C14.4 403.8 106.2 495.6 222 510V445.4C141.6 431.9 78.1 368.4 64.7 288H0zm0-64H64.7C78.1 143.6 141.6 80.1 222 66.7V2C106.2 16.4 14.4 108.2 0 224zm206-64c0-17.7-14.3-32-32-32s-32 14.3-32 32V352c0 17.7 14.3 32 32 32s32-14.3 32-32V288h96v64c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H206V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "helmet-safety": { + "aliases": { + "names": [ + "hard-hat", + "hat-hard" + ], + "unicodes": { + "secondary": [ + "10f807" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "construction", + "hardhat", + "helmet", + "safety" + ] + }, + "unicode": "f807", + "label": "Helmet Safety", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M256 32c-17.7 0-32 14.3-32 32v2.3 99.6c0 5.6-4.5 10.1-10.1 10.1c-3.6 0-7-1.9-8.8-5.1L157.1 87C83 123.5 32 199.8 32 288v64H544l0-66.4c-.9-87.2-51.7-162.4-125.1-198.6l-48 83.9c-1.8 3.2-5.2 5.1-8.8 5.1c-5.6 0-10.1-4.5-10.1-10.1V66.3 64c0-17.7-14.3-32-32-32H256zM16.6 384C7.4 384 0 391.4 0 400.6c0 4.7 2 9.2 5.8 11.9C27.5 428.4 111.8 480 288 480s260.5-51.6 282.2-67.5c3.8-2.8 5.8-7.2 5.8-11.9c0-9.2-7.4-16.6-16.6-16.6H16.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "helmet-un": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "helmet", + "united nations" + ] + }, + "unicode": "e503", + "label": "Helmet Un", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M479.5 224C471.2 98.9 367.2 0 240 0C107.5 0 0 107.5 0 240v56.3C0 344.8 39.2 384 87.7 384H200h14.9L343.5 505.4c4.5 4.2 10.4 6.6 16.5 6.6h96c13.3 0 24-10.7 24-24s-10.7-24-24-24H369.5l-1.5-1.5V288h80 32c17.7 0 32-14.3 32-32s-14.3-32-32-32h-.5zM320 417.2l-78-73.7L274.4 288H320V417.2zM285.3 103.1l34.7 52V112c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52V208c0 8.8-7.2 16-16 16s-16-7.2-16-16V112c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4zM160 112v64c0 8.8 7.2 16 16 16s16-7.2 16-16V112c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48V112c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "highlighter": { + "aliases": { + "unicodes": { + "secondary": [ + "10f591" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "marker", + "sharpie", + "update", + "write" + ] + }, + "unicode": "f591", + "label": "Highlighter", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M315 315l158.4-215L444.1 70.6 229 229 315 315zm-187 5l0 0V248.3c0-15.3 7.2-29.6 19.5-38.6L420.6 8.4C428 2.9 437 0 446.2 0c11.4 0 22.4 4.5 30.5 12.6l54.8 54.8c8.1 8.1 12.6 19 12.6 30.5c0 9.2-2.9 18.2-8.4 25.6L334.4 396.5c-9 12.3-23.4 19.5-38.6 19.5H224l-25.4 25.4c-12.5 12.5-32.8 12.5-45.3 0l-50.7-50.7c-12.5-12.5-12.5-32.8 0-45.3L128 320zM7 466.3l63-63 70.6 70.6-31 31c-4.5 4.5-10.6 7-17 7H24c-13.3 0-24-10.7-24-24v-4.7c0-6.4 2.5-12.5 7-17z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hill-avalanche": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mudslide", + "snow", + "winter" + ] + }, + "unicode": "e507", + "label": "Hill Avalanche", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M440.7 401.9c34.2 23.1 81.1 19.5 111.4-10.8c34.4-34.4 34.4-90.1 0-124.4c-27.8-27.8-69.5-33.1-102.6-16c-11.8 6.1-16.4 20.6-10.3 32.3s20.6 16.4 32.3 10.3c15.1-7.8 34-5.3 46.6 7.3c15.6 15.6 15.6 40.9 0 56.6s-40.9 15.6-56.6 0l-81.7-81.7C402.2 261.3 417 236.4 417 208c0-33.9-21.1-62.9-50.9-74.5c1.9-6.8 2.9-14 2.9-21.5c0-44.2-35.8-80-80-80c-27.3 0-51.5 13.7-65.9 34.6C217.3 46.6 198.9 32 177 32c-26.5 0-48 21.5-48 48c0 4 .5 7.9 1.4 11.6L440.7 401.9zM481 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM69.3 87C44.1 61.8 1 79.7 1 115.3V432c0 44.2 35.8 80 80 80H397.7c35.6 0 53.5-43.1 28.3-68.3L69.3 87z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hill-rockslide": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mudslide" + ] + }, + "unicode": "e508", + "label": "Hill Rockslide", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M252.4 103.8l27 48c2.8 5 8.2 8.2 13.9 8.2l53.3 0c5.8 0 11.1-3.1 13.9-8.2l27-48c2.7-4.9 2.7-10.8 0-15.7l-27-48c-2.8-5-8.2-8.2-13.9-8.2H293.4c-5.8 0-11.1 3.1-13.9 8.2l-27 48c-2.7 4.9-2.7 10.8 0 15.7zM68.3 87C43.1 61.8 0 79.7 0 115.3V432c0 44.2 35.8 80 80 80H396.7c35.6 0 53.5-43.1 28.3-68.3L68.3 87zM504.2 403.6c4.9 2.7 10.8 2.7 15.7 0l48-27c5-2.8 8.2-8.2 8.2-13.9V309.4c0-5.8-3.1-11.1-8.2-13.9l-48-27c-4.9-2.7-10.8-2.7-15.7 0l-48 27c-5 2.8-8.2 8.2-8.2 13.9v53.3c0 5.8 3.1 11.1 8.2 13.9l48 27zM192 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM384 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hippo": { + "aliases": { + "unicodes": { + "composite": [ + "1f99b" + ], + "secondary": [ + "10f6ed" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.1", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "fauna", + "hippo", + "hippopotamus", + "hungry", + "mammal" + ] + }, + "unicode": "f6ed", + "label": "Hippo", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M407 47c9.4-9.4 24.6-9.4 33.9 0l17.2 17.2c1.9-.1 3.9-.2 5.8-.2h32c11.2 0 21.9 2.3 31.6 6.5L543 55c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L564 101.9c7.6 12.2 12 26.7 12 42.1c0 10.2 7.4 18.8 16.7 23c27.9 12.5 47.3 40.5 47.3 73c0 26.2-12.6 49.4-32 64v32c0 8.8-7.2 16-16 16H560c-8.8 0-16-7.2-16-16V320H480v16c0 8.8-7.2 16-16 16H432c-8.8 0-16-7.2-16-16V318.4c-11.8-2.4-22.7-7.4-32-14.4c-1.5-1.1-2.9-2.3-4.3-3.5c-17-14.7-27.7-36.4-27.7-60.5c0-8.8-7.2-16-16-16s-16 7.2-16 16c0 44.7 26.2 83.2 64 101.2V352c0 17.7 14.3 32 32 32h32v64c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V372c-19.8 7.7-41.4 12-64 12s-44.2-4.3-64-12v76c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V329.1L45.9 369.7c-5.4 12.1-19.6 17.6-31.7 12.2S-3.3 362.4 2.1 350.3L24 300.9c5.3-11.9 8-24.7 8-37.7C32 155.7 117.2 68 223.8 64.1l.2-.1h7.2H256h32c41.7 0 83.4 12.1 117.2 25.7c1.7-1.8 3.5-3.6 5.3-5.2L407 81c-9.4-9.4-9.4-24.6 0-33.9zm73 185a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm88 24a24 24 0 1 0 0-48 24 24 0 1 0 0 48zM480 144a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm48 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hips": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f452", + "label": "Hips", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M251.6 157.6c0-1.9-.9-2.8-2.8-2.8h-40.9c-1.6 0-2.7 1.4-2.7 2.8v201.8c0 1.4 1.1 2.8 2.7 2.8h40.9c1.9 0 2.8-.9 2.8-2.8zM156.5 168c-16.1-11.8-36.3-17.9-60.3-18-18.1-.1-34.6 3.7-49.8 11.4V80.2c0-1.8-.9-2.7-2.8-2.7H2.7c-1.8 0-2.7.9-2.7 2.7v279.2c0 1.9.9 2.8 2.7 2.8h41c1.9 0 2.8-.9 2.8-2.8V223.3c0-.8-2.8-27 45.8-27 48.5 0 45.8 26.1 45.8 27v122.6c0 9 7.3 16.3 16.4 16.3h27.3c1.8 0 2.7-.9 2.7-2.8V223.3c0-23.4-9.3-41.8-28-55.3zm478.4 110.1c-6.8-15.7-18.4-27-34.9-34.1l-57.6-25.3c-8.6-3.6-9.2-11.2-2.6-16.1 7.4-5.5 44.3-13.9 84 6.8 1.7 1 4-.3 4-2.4v-44.7c0-1.3-.6-2.1-1.9-2.6-17.7-6.6-36.1-9.9-55.1-9.9-26.5 0-45.3 5.8-58.5 15.4-.5.4-28.4 20-22.7 53.7 3.4 19.6 15.8 34.2 37.2 43.6l53.6 23.5c11.6 5.1 15.2 13.3 12.2 21.2-3.7 9.1-13.2 13.6-36.5 13.6-24.3 0-44.7-8.9-58.4-19.1-2.1-1.4-4.4.2-4.4 2.3v34.4c0 10.4 4.9 17.3 14.6 20.7 15.6 5.5 31.6 8.2 48.2 8.2 12.7 0 25.8-1.2 36.3-4.3.7-.3 36-8.9 45.6-45.8 3.5-13.5 2.4-26.5-3.1-39.1zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zM228.3 72.5c-15.9 0-28.8 12.9-28.9 28.9 0 15.6 12.7 28.9 28.9 28.9s28.9-13.1 28.9-28.9c0-16.2-13-28.9-28.9-28.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hire-a-helper": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b0", + "label": "HireAHelper", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hive": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07f", + "label": "Hive Blockchain Network", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M260.353,254.878,131.538,33.1a2.208,2.208,0,0,0-3.829.009L.3,254.887A2.234,2.234,0,0,0,.3,257.122L129.116,478.9a2.208,2.208,0,0,0,3.83-.009L260.358,257.113A2.239,2.239,0,0,0,260.353,254.878Zm39.078-25.713a2.19,2.19,0,0,0,1.9,1.111h66.509a2.226,2.226,0,0,0,1.9-3.341L259.115,33.111a2.187,2.187,0,0,0-1.9-1.111H190.707a2.226,2.226,0,0,0-1.9,3.341ZM511.7,254.886,384.9,33.112A2.2,2.2,0,0,0,382.99,32h-66.6a2.226,2.226,0,0,0-1.906,3.34L440.652,256,314.481,476.66a2.226,2.226,0,0,0,1.906,3.34h66.6a2.2,2.2,0,0,0,1.906-1.112L511.7,257.114A2.243,2.243,0,0,0,511.7,254.886ZM366.016,284.917H299.508a2.187,2.187,0,0,0-1.9,1.111l-108.8,190.631a2.226,2.226,0,0,0,1.9,3.341h66.509a2.187,2.187,0,0,0,1.9-1.111l108.8-190.631A2.226,2.226,0,0,0,366.016,284.917Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hockey-puck": { + "aliases": { + "unicodes": { + "secondary": [ + "10f453" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ice", + "nhl", + "sport" + ] + }, + "unicode": "f453", + "label": "Hockey Puck", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321831, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 256C114.6 256 0 213 0 160s114.6-96 256-96s256 43 256 96s-114.6 96-256 96zm192.3 1.8c24.7-9.3 46.9-21 63.7-35.6V352c0 53-114.6 96-256 96S0 405 0 352V222.3c16.8 14.6 39 26.3 63.7 35.6C114.5 276.9 182.5 288 256 288s141.5-11.1 192.3-30.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "holly-berry": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7aa" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "catwoman", + "christmas", + "decoration", + "flora", + "halle", + "holiday", + "ororo munroe", + "plant", + "storm", + "xmas" + ] + }, + "unicode": "f7aa", + "label": "Holly Berry", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M247 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-80 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM267.8 383.8c1 .1 2.1 .2 3.2 .2c39.8 0 72 32.2 72 72v22.7c0 16.4 16 27.9 31.6 22.8l12.8-4.3c18-6 37.3-6.5 55.6-1.5l19.4 5.3c17.9 4.9 34.4-11.6 29.5-29.5L486.6 452c-5-18.3-4.4-37.6 1.5-55.6l4.3-12.8c5.2-15.5-6.4-31.6-22.8-31.6c-34.6 0-62.7-28.1-62.7-62.7v-32c0-16.4-16-27.9-31.6-22.8l-12.8 4.3c-18 6-37.3 6.5-55.6 1.5l-29.6-8.1c-2.9-.8-5.9-1-8.7-.7c4.2 9.7 5.8 20.8 3.7 32.3L266 298.7c-1.5 8.4-1.4 17 .5 25.3l5.3 23.9c2.8 12.7 1.1 25.2-4 35.9zM118.6 234.5c-15.5-5.2-31.6 6.4-31.6 22.8v32C87 323.9 58.9 352 24.3 352C7.9 352-3.6 368 1.5 383.6l4.3 12.8c6 18 6.5 37.3 1.5 55.6L2.1 471.5c-4.9 17.9 11.6 34.4 29.5 29.5L51 495.6c18.3-5 37.6-4.5 55.6 1.5l12.8 4.3c15.5 5.2 31.6-6.4 31.6-22.8v-32c0-34.6 28.1-62.7 62.7-62.7c16.4 0 27.9-16 22.8-31.6l-4.3-12.8c-6-18-6.5-37.3-1.5-55.6l5.3-19.4c4.9-17.9-11.6-34.4-29.5-29.5L187 240.4c-18.3 5-37.6 4.4-55.6-1.5l-12.8-4.3zM375 144a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hooli": { + "changes": [ + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f427", + "label": "Hooli", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8zm57.7-5.3v5.3l-19.4.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3zm408.9-115.2c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zm-29 120.5H640V241.5h-57.9zm-73.7 0h57.9V156.7L508.4 184zm-31-119.4c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6s-1.4 34.3 16.8 52.5 50.4 17.1 50.4 17.1 32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5s-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9s10.7 2.1 10.7 10.9zm-106.2-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.8 110.8V352h57.9v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.4-21.6-38.4-31.4v-31c13.1 14.7 30.5 31.4 53.4 50.3l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5s50.4 17.1 50.4 17.1 32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zM65.2 184v63.3c-48.7-54.5-38.9-76-35.2-79.1 13.5-11.4 37.5-8 64.4 2.1zm226.5 120.5c0 3.6-1.8 12.5-10.7 12.5s-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9s10.7 2.1 10.7 10.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hornbill": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f592", + "label": "Hornbill", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M76.38 370.3a37.8 37.8 0 1 1-32.07-32.42c-78.28-111.35 52-190.53 52-190.53-5.86 43-8.24 91.16-8.24 91.16-67.31 41.49.93 64.06 39.81 72.87a140.38 140.38 0 0 0 131.66 91.94c1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6zm108-327.7A37.57 37.57 0 0 0 181 21.45a37.95 37.95 0 1 0-31.17 54.22c-22.55 29.91-53.83 89.57-52.42 190l21.84-.15c0-.9-.14-1.77-.14-2.68A140.42 140.42 0 0 1 207 132.71c8-37.71 30.7-114.3 73.8-44.29 0 0 48.14 2.38 91.18 8.24 0 0-77.84-128-187.59-54.06zm304.19 134.17a37.94 37.94 0 1 0-53.84-28.7C403 126.13 344.89 99 251.28 100.33l.14 22.5c2.7-.15 5.39-.41 8.14-.41a140.37 140.37 0 0 1 130.49 88.76c39.1 9 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 49-194.61a37.45 37.45 0 0 0 19.31-3.5zM374.06 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15a140.34 140.34 0 0 1-91.39 131.45c-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 51a37.5 37.5 0 0 0 3.64 14 37.93 37.93 0 1 0 33.89-54.29z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "horse": { + "aliases": { + "unicodes": { + "composite": [ + "1f40e" + ], + "secondary": [ + "10f6f0" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "equestrian", + "equus", + "fauna", + "horse", + "mammmal", + "mare", + "neigh", + "pony", + "racehorse", + "racing" + ] + }, + "unicode": "f6f0", + "label": "Horse", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M448 238.1V160h16l9.8 19.6c12.5 25.1 42.2 36.4 68.3 26c20.5-8.2 33.9-28 33.9-50.1V80c0-19.1-8.4-36.3-21.7-48H560c8.8 0 16-7.2 16-16s-7.2-16-16-16H480 448C377.3 0 320 57.3 320 128H224 203.2 148.8c-30.7 0-57.6 16.3-72.5 40.8C33.2 174.5 0 211.4 0 256v56c0 13.3 10.7 24 24 24s24-10.7 24-24V256c0-13.4 6.6-25.2 16.7-32.5c1.6 13 6.3 25.4 13.6 36.4l28.2 42.4c8.3 12.4 6.4 28.7-1.2 41.6c-16.5 28-20.6 62.2-10 93.9l17.5 52.4c4.4 13.1 16.6 21.9 30.4 21.9h33.7c21.8 0 37.3-21.4 30.4-42.1l-20.8-62.5c-2.1-6.4-.5-13.4 4.3-18.2l12.7-12.7c13.2-13.2 20.6-31.1 20.6-49.7c0-2.3-.1-4.6-.3-6.9l84 24c4.1 1.2 8.2 2.1 12.3 2.8V480c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V315.7c19.2-19.2 31.5-45.7 32-75.7h0v-1.9zM496 64a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "horse-head": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ab" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "equus", + "fauna", + "mammmal", + "mare", + "neigh", + "pony" + ] + }, + "unicode": "f7ab", + "label": "Horse Head", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 464V316.9C0 208.5 68.3 111.8 170.5 75.6L340.2 15.5C361.6 7.9 384 23.8 384 46.4c0 11-5.5 21.2-14.6 27.3L336 96c48.1 0 91.2 29.8 108.1 74.9l48.6 129.5c11.8 31.4 4.1 66.8-19.6 90.5c-16 16-37.8 25.1-60.5 25.1h-3.4c-26.1 0-50.9-11.6-67.6-31.7l-32.3-38.7c-11.7 4.1-24.2 6.4-37.3 6.4l-.1 0 0 0c-6.3 0-12.5-.5-18.6-1.5c-3.6-.6-7.2-1.4-10.7-2.3l0 0c-28.9-7.8-53.1-26.8-67.8-52.2c-4.4-7.6-14.2-10.3-21.9-5.8s-10.3 14.2-5.8 21.9c24 41.5 68.3 70 119.3 71.9l47.2 70.8c4 6.1 6.2 13.2 6.2 20.4c0 20.3-16.5 36.8-36.8 36.8H48c-26.5 0-48-21.5-48-48zM328 224a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hospital": { + "aliases": { + "names": [ + "hospital-alt", + "hospital-wide" + ], + "unicodes": { + "composite": [ + "1f3e5", + "f47d" + ], + "primary": [ + "f47d" + ], + "secondary": [ + "10f0f8", + "10f47d" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "covid-19", + "doctor", + "emergency room", + "hospital", + "medical center", + "medicine" + ] + }, + "unicode": "f0f8", + "label": "Hospital", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 48c0-26.5 21.5-48 48-48H400c26.5 0 48 21.5 48 48V512H368V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H192V48zM48 96H160V512H48c-26.5 0-48-21.5-48-48V320H80c8.8 0 16-7.2 16-16s-7.2-16-16-16H0V224H80c8.8 0 16-7.2 16-16s-7.2-16-16-16H0V144c0-26.5 21.5-48 48-48zm544 0c26.5 0 48 21.5 48 48v48H560c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H560c-8.8 0-16 7.2-16 16s7.2 16 16 16h80V464c0 26.5-21.5 48-48 48H480V96H592zM312 64c-8.8 0-16 7.2-16 16v24H272c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h24v24c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16V152h24c8.8 0 16-7.2 16-16V120c0-8.8-7.2-16-16-16H344V80c0-8.8-7.2-16-16-16H312z" + }, + "regular": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M232 0c-39.8 0-72 32.2-72 72v8H72C32.2 80 0 112.2 0 152V440c0 39.8 32.2 72 72 72h.2 .2 .2 .2 .2H73h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2H75h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2H77h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2H79h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2H82h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2H85h.2 .2 .2 .2H86h.2 .2 .2 .2H87h.2 .2 .2 .2H88h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2H98h.2 .2 .2 .2H99h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2v0H456h8v0H568c39.8 0 72-32.2 72-72V152c0-39.8-32.2-72-72-72H480V72c0-39.8-32.2-72-72-72H232zM480 128h88c13.3 0 24 10.7 24 24v40H536c-13.3 0-24 10.7-24 24s10.7 24 24 24h56v48H536c-13.3 0-24 10.7-24 24s10.7 24 24 24h56V440c0 13.3-10.7 24-24 24H480V336 128zM72 128h88V464h-.1-.2-.2-.2H159h-.2-.2-.2H158h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H154h-.2-.2-.2H153h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H150h-.2-.2-.2H149h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H146h-.2-.2-.2H145h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H142h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H139h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H136h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H133h-.2-.2-.2-.2-.2-.2-.2-.2H131h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H128h-.2-.2-.2-.2-.2-.2-.2-.2H126h-.2-.2-.2-.2-.2-.2-.2-.2H124h-.2-.2-.2-.2-.2-.2-.2-.2H122h-.2-.2-.2-.2-.2-.2-.2-.2H120h-.2-.2-.2-.2-.2-.2-.2-.2H118h-.2-.2-.2-.2-.2-.2-.2-.2H116h-.2-.2-.2-.2-.2-.2-.2-.2H114h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H111h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H108h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H105h-.2-.2-.2-.2H104h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H100h-.2-.2-.2-.2H99h-.2-.2-.2-.2H98h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H88h-.2-.2-.2-.2H87h-.2-.2-.2-.2H86h-.2-.2-.2-.2H85h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H82h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H79h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H77h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H75h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H73h-.2-.2-.2-.2-.2H72c-13.2 0-24-10.7-24-24V336h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H48V240h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H48V152c0-13.3 10.7-24 24-24zM208 72c0-13.3 10.7-24 24-24H408c13.3 0 24 10.7 24 24V336 464H368V400c0-26.5-21.5-48-48-48s-48 21.5-48 48v64H208V72zm88 24v24H272c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h24v24c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16V168h24c8.8 0 16-7.2 16-16V136c0-8.8-7.2-16-16-16H344V96c0-8.8-7.2-16-16-16H312c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hospital-user": { + "aliases": { + "unicodes": { + "secondary": [ + "10f80d" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "network", + "patient", + "primary care" + ] + }, + "unicode": "f80d", + "label": "Hospital User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V256H144c8.8 0 16 7.2 16 16s-7.2 16-16 16H0v64H144c8.8 0 16 7.2 16 16s-7.2 16-16 16H0v80c0 26.5 21.5 48 48 48H265.9c-6.3-10.2-9.9-22.2-9.9-35.1c0-46.9 25.8-87.8 64-109.2V271.8 48c0-26.5-21.5-48-48-48H48zM152 64h16c8.8 0 16 7.2 16 16v24h24c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H184v24c0 8.8-7.2 16-16 16H152c-8.8 0-16-7.2-16-16V152H112c-8.8 0-16-7.2-16-16V120c0-8.8 7.2-16 16-16h24V80c0-8.8 7.2-16 16-16zM512 272a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM288 477.1c0 19.3 15.6 34.9 34.9 34.9H541.1c19.3 0 34.9-15.6 34.9-34.9c0-51.4-41.7-93.1-93.1-93.1H381.1c-51.4 0-93.1 41.7-93.1 93.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hot-tub-person": { + "aliases": { + "names": [ + "hot-tub" + ], + "unicodes": { + "secondary": [ + "10f593" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "jacuzzi", + "spa" + ] + }, + "unicode": "f593", + "label": "Hot Tub Person", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M272 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v5.2c0 34 14.4 66.4 39.7 89.2l16.4 14.8c15.2 13.7 23.8 33.1 23.8 53.5V200c0 13.3 10.7 24 24 24s24-10.7 24-24V186.8c0-34-14.4-66.4-39.7-89.2L295.8 82.8C280.7 69.1 272 49.7 272 29.2V24zM0 320v16V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64H277.3c-13.8 0-27.3-4.5-38.4-12.8l-85.3-64C137 166.7 116.8 160 96 160c-53 0-96 43-96 96v64zm128 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16s16 7.2 16 16zm80-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm112 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16s16 7.2 16 16zm80-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM360 0c-13.3 0-24 10.7-24 24v5.2c0 34 14.4 66.4 39.7 89.2l16.4 14.8c15.2 13.7 23.8 33.1 23.8 53.5V200c0 13.3 10.7 24 24 24s24-10.7 24-24V186.8c0-34-14.4-66.4-39.7-89.2L407.8 82.8C392.7 69.1 384 49.7 384 29.2V24c0-13.3-10.7-24-24-24zM64 128A64 64 0 1 0 64 0a64 64 0 1 0 0 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hotdog": { + "aliases": { + "unicodes": { + "composite": [ + "1f32d" + ], + "secondary": [ + "10f80f" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bun", + "chili", + "frankfurt", + "frankfurter", + "hot dog", + "hotdog", + "kosher", + "polish", + "sandwich", + "sausage", + "vienna", + "weiner" + ] + }, + "unicode": "f80f", + "label": "Hotdog", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M488.6 23.4c31.2 31.2 31.2 81.9 0 113.1l-352 352c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1l352-352c31.2-31.2 81.9-31.2 113.1 0zM443.3 92.7c-6.2-6.2-16.4-6.2-22.6 0c-12.5 12.5-23.8 15.1-37.5 17.6l-2.5 .4c-13.8 2.5-31.6 5.6-48 22c-16.7 16.7-20.9 36-24.1 50.9l0 0v0l-.2 1c-3.4 15.6-6 26.4-15.7 36.1s-20.5 12.3-36.1 15.7l-1 .2c-14.9 3.2-34.2 7.4-50.9 24.1s-20.9 36-24.1 50.9l-.2 1c-3.4 15.6-6 26.4-15.7 36.1c-9.2 9.2-18 10.8-32.7 13.4l0 0-.9 .2c-15.6 2.8-34.9 6.9-54.4 26.4c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0c12.5-12.5 23.8-15.1 37.5-17.6l2.5-.4c13.8-2.5 31.6-5.6 48-22c16.7-16.7 20.9-36 24.1-50.9l.2-1c3.4-15.6 6-26.4 15.7-36.1s20.5-12.3 36.1-15.7l1-.2c14.9-3.2 34.2-7.4 50.9-24.1s20.9-36 24.1-50.9l.2-1c3.4-15.6 6-26.4 15.7-36.1c9.2-9.2 18-10.8 32.7-13.4l.9-.2c15.6-2.8 34.9-6.9 54.4-26.4c6.2-6.2 6.2-16.4 0-22.6zM191.2 479.2l288-288L495 207c10.9 10.9 17 25.6 17 41s-6.1 30.1-17 41L289 495c-10.9 10.9-25.6 17-41 17s-30.1-6.1-41-17l-15.8-15.8zM17 305C6.1 294.1 0 279.4 0 264s6.1-30.1 17-41L223 17C233.9 6.1 248.6 0 264 0s30.1 6.1 41 17l15.8 15.8-288 288L17 305z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hotel": { + "aliases": { + "unicodes": { + "composite": [ + "1f3e8" + ], + "secondary": [ + "10f594" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "hotel", + "inn", + "lodging", + "motel", + "resort", + "travel" + ] + }, + "unicode": "f594", + "label": "Hotel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H480c17.7 0 32 14.3 32 32s-14.3 32-32 32V448c17.7 0 32 14.3 32 32s-14.3 32-32 32H304V464c0-26.5-21.5-48-48-48s-48 21.5-48 48v48H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V64C14.3 64 0 49.7 0 32zm96 80v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H112c-8.8 0-16 7.2-16 16zM240 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H240zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zM112 192c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H112zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H368zM328 384c13.3 0 24.3-10.9 21-23.8c-10.6-41.5-48.2-72.2-93-72.2s-82.5 30.7-93 72.2c-3.3 12.8 7.8 23.8 21 23.8H328z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hotjar": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b1", + "label": "Hotjar", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hourglass": { + "aliases": { + "names": [ + "hourglass-empty" + ], + "unicodes": { + "composite": [ + "23f3", + "f250" + ], + "secondary": [ + "10f254" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "hourglass", + "hourglass not done", + "minute", + "sand", + "stopwatch", + "time", + "timer" + ] + }, + "unicode": "f254", + "label": "Hourglass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H64 320h32c17.7 0 32 14.3 32 32s-14.3 32-32 32V75c0 42.4-16.9 83.1-46.9 113.1L237.3 256l67.9 67.9c30 30 46.9 70.7 46.9 113.1v11c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32V437c0-42.4 16.9-83.1 46.9-113.1L146.7 256 78.9 188.1C48.9 158.1 32 117.4 32 75V64C14.3 64 0 49.7 0 32zM96 64V75c0 25.5 10.1 49.9 28.1 67.9L192 210.7l67.9-67.9c18-18 28.1-42.4 28.1-67.9V64H96zm0 384H288V437c0-25.5-10.1-49.9-28.1-67.9L192 301.3l-67.9 67.9c-18 18-28.1 42.4-28.1 67.9v11z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M24 0C10.7 0 0 10.7 0 24S10.7 48 24 48h8V67c0 40.3 16 79 44.5 107.5L158.1 256 76.5 337.5C48 366 32 404.7 32 445v19H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H360c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8V445c0-40.3-16-79-44.5-107.5L225.9 256l81.5-81.5C336 146 352 107.3 352 67V48h8c13.3 0 24-10.7 24-24s-10.7-24-24-24H24zM192 289.9l81.5 81.5C293 391 304 417.4 304 445v19H80V445c0-27.6 11-54 30.5-73.5L192 289.9zm0-67.9l-81.5-81.5C91 121 80 94.6 80 67V48H304V67c0 27.6-11 54-30.5 73.5L192 222.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hourglass-end": { + "aliases": { + "names": [ + "hourglass-3" + ], + "unicodes": { + "composite": [ + "231b" + ], + "secondary": [ + "10f253" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "hourglass done", + "minute", + "sand", + "stopwatch", + "time", + "timer" + ] + }, + "unicode": "f253", + "label": "Hourglass End", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM96 75V64H288V75c0 25.5-10.1 49.9-28.1 67.9L192 210.7l-67.9-67.9C106.1 124.9 96 100.4 96 75z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hourglass-half": { + "aliases": { + "names": [ + "hourglass-2" + ], + "unicodes": { + "secondary": [ + "10f252" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "minute", + "sand", + "stopwatch", + "time" + ] + }, + "unicode": "f252", + "label": "Hourglass Half", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM96 75V64H288V75c0 19-5.6 37.4-16 53H112c-10.3-15.6-16-34-16-53zm16 309c3.5-5.3 7.6-10.3 12.1-14.9L192 301.3l67.9 67.9c4.6 4.6 8.6 9.6 12.2 14.9H112z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 24C0 10.7 10.7 0 24 0H360c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8V67c0 40.3-16 79-44.5 107.5L225.9 256l81.5 81.5C336 366 352 404.7 352 445v19h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V445c0-40.3 16-79 44.5-107.5L158.1 256 76.5 174.5C48 146 32 107.3 32 67V48H24C10.7 48 0 37.3 0 24zM110.5 371.5c-3.9 3.9-7.5 8.1-10.7 12.5H284.2c-3.2-4.4-6.8-8.6-10.7-12.5L192 289.9l-81.5 81.5zM284.2 128C297 110.4 304 89 304 67V48H80V67c0 22.1 7 43.4 19.8 61H284.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hourglass-start": { + "aliases": { + "names": [ + "hourglass-1" + ], + "unicodes": { + "secondary": [ + "10f251" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "minute", + "sand", + "stopwatch", + "time" + ] + }, + "unicode": "f251", + "label": "Hourglass Start", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM288 437v11H96V437c0-25.5 10.1-49.9 28.1-67.9L192 301.3l67.9 67.9c18 18 28.1 42.4 28.1 67.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house": { + "aliases": { + "names": [ + "home", + "home-alt", + "home-lg-alt" + ], + "unicodes": { + "composite": [ + "1f3e0", + "f80a", + "f80c" + ], + "primary": [ + "f80a", + "f80c" + ], + "secondary": [ + "10f015", + "10f80a", + "10f80c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "building", + "home", + "house", + "main", + "residence" + ] + }, + "unicode": "f015", + "label": "House", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c0 2.7-.2 5.4-.5 8.1V472c0 22.1-17.9 40-40 40H456c-1.1 0-2.2 0-3.3-.1c-1.4 .1-2.8 .1-4.2 .1H416 392c-22.1 0-40-17.9-40-40V448 384c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32v64 24c0 22.1-17.9 40-40 40H160 128.1c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2H104c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9 .1-2.8V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-chimney": { + "aliases": { + "names": [ + "home-lg" + ], + "unicodes": { + "composite": [ + "f80b" + ], + "primary": [ + "f80b" + ], + "secondary": [ + "10f80b" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "building", + "chimney", + "house", + "main", + "residence", + "smokestack" + ] + }, + "unicode": "e3af", + "label": "House Chimney", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L512 185V64c0-17.7-14.3-32-32-32H448c-17.7 0-32 14.3-32 32v36.7L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32v69.7c-.1 .9-.1 1.8-.1 2.8V472c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2H160h24c22.1 0 40-17.9 40-40V448 384c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v64 24c0 22.1 17.9 40 40 40h24 32.5c1.4 0 2.8 0 4.2-.1c1.1 .1 2.2 .1 3.3 .1h16c22.1 0 40-17.9 40-40V455.8c.3-2.6 .5-5.3 .5-8.1l-.7-160.2h32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-chimney-crack": { + "aliases": { + "names": [ + "house-damage" + ], + "unicodes": { + "secondary": [ + "10f6f1" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "devastation", + "disaster", + "earthquake", + "home", + "insurance" + ] + }, + "unicode": "f6f1", + "label": "House Chimney Crack", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H326.4L288 448l80.8-67.3c7.8-6.5 7.6-18.6-.4-24.9L250.6 263.2c-14.6-11.5-33.8 7-22.8 22L288 368l-85.5 71.2c-6.1 5-7.5 13.8-3.5 20.5L230.4 512H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V185l52.8 46.4c8 7 12 15 11 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-chimney-medical": { + "aliases": { + "names": [ + "clinic-medical" + ], + "unicodes": { + "secondary": [ + "10f7f2" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "general practitioner", + "hospital", + "infirmary", + "medicine", + "office", + "outpatient" + ] + }, + "unicode": "f7f2", + "label": "House Chimney Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V185l52.8 46.4c8 7 12 15 11 24zM272 192c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320h48c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H320V208c0-8.8-7.2-16-16-16H272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-chimney-user": { + "aliases": { + "unicodes": { + "secondary": [ + "10e065" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "home", + "isolation", + "quarantine" + ] + }, + "unicode": "e065", + "label": "House Chimney User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L512 185V64c0-17.7-14.3-32-32-32H448c-17.7 0-32 14.3-32 32v36.7L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64H448.5c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32zM288 160a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM176 400c0-44.2 35.8-80 80-80h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H192c-8.8 0-16-7.2-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-chimney-window": { + "aliases": { + "unicodes": { + "secondary": [ + "10e00d" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "building", + "family", + "home", + "residence" + ] + }, + "unicode": "e00d", + "label": "House Chimney Window", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V185l52.8 46.4c8 7 12 15 11 24zM248 192c-13.3 0-24 10.7-24 24v80c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V216c0-13.3-10.7-24-24-24H248z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "home", + "house", + "not affected", + "ok", + "okay" + ] + }, + "unicode": "e509", + "label": "House Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320.7 352c8.1-89.7 83.5-160 175.3-160c8.9 0 17.6 .7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32v69.7c-.1 .9-.1 1.8-.1 2.8V472c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2H160h24c22.1 0 40-17.9 40-40V448 384c0-17.7 14.3-32 32-32h64l.7 0zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "affected", + "home", + "house" + ] + }, + "unicode": "e50a", + "label": "House Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320.7 352c8.1-89.7 83.5-160 175.3-160c8.9 0 17.6 .7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32v69.7c-.1 .9-.1 1.8-.1 2.8V472c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2H160h24c22.1 0 40-17.9 40-40V448 384c0-17.7 14.3-32 32-32h64l.7 0zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "destroy", + "home", + "house" + ] + }, + "unicode": "e50b", + "label": "House Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320.7 352c8.1-89.7 83.5-160 175.3-160c8.9 0 17.6 .7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32v69.7c-.1 .9-.1 1.8-.1 2.8V472c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2H160h24c22.1 0 40-17.9 40-40V448 384c0-17.7 14.3-32 32-32h64l.7 0zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-crack": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "devastation", + "disaster", + "earthquake", + "home", + "insurance" + ] + }, + "unicode": "e3b1", + "label": "House Crack", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64H230.4l-31.3-52.2c-4.1-6.8-2.6-15.5 3.5-20.5L288 368l-60.2-82.8c-10.9-15 8.2-33.5 22.8-22l117.9 92.6c8 6.3 8.2 18.4 .4 24.9L288 448l38.4 64H448.5c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-fire": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "emergency", + "home" + ] + }, + "unicode": "e50c", + "label": "House Fire", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 350.1l0 1.9H256c-17.7 0-32 14.3-32 32v64 24c0 22.1-17.9 40-40 40H160 128.1c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2H104c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9 .1-2.8V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L447.3 128.1c-12.3-1-25 3-34.8 11.7c-35.4 31.6-65.6 67.7-87.3 102.8C304.3 276.5 288 314.9 288 350.1zM453.5 163.8c19.7 17.8 38.2 37 55.5 57.7c7.9-9.9 16.8-20.7 26.5-29.5c5.6-5.1 14.4-5.1 20 0c24.7 22.7 45.6 52.7 60.4 81.1c14.5 28 24.2 58.8 24.2 79C640 440 568.7 512 480 512c-89.7 0-160-72.1-160-159.8c0-26.4 12.7-60.7 32.4-92.6c20-32.4 48.1-66.1 81.4-95.8c2.8-2.5 6.4-3.8 10-3.7c3.5 0 7 1.3 9.8 3.8zM530 433c30-21 38-63 20-96c-2-4-4-8-7-12l-36 42s-58-74-62-79c-30 37-45 58-45 82c0 49 36 78 81 78c18 0 34-5 49-15z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camp", + "home" + ] + }, + "unicode": "e50d", + "label": "House Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 0c-17.7 0-32 14.3-32 32V192 512h64V192H624c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H512c0-17.7-14.3-32-32-32zM416 159L276.8 39.7c-12-10.3-29.7-10.3-41.7 0l-224 192C1 240.4-2.7 254.5 2 267.1S18.6 288 32 288H64V480c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v96c0 17.7 14.3 32 32 32h64.7l.2 0h-1V159z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-flood-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "damage", + "flood", + "water" + ] + }, + "unicode": "e50e", + "label": "House Flood Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M306.8 6.1C295.6-2 280.4-2 269.2 6.1l-176 128c-11.2 8.2-15.9 22.6-11.6 35.8S98.1 192 112 192h16v73c1.7 1 3.3 2 4.9 3.1c18 12.4 40.1 20.3 59.2 20.3c21.1 0 42-8.5 59.2-20.3c22.1-15.5 51.6-15.5 73.7 0c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c1.5-1 3-2 4.5-2.9l-.3-73.2H464c13.9 0 26.1-8.9 30.4-22.1s-.4-27.6-11.6-35.8l-176-128zM269.5 309.9C247 325.4 219.5 336 192 336c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 389.7 159 400 192 400c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.5-27.3-10.1-39.2-1.7l0 0C439.4 325.2 410.9 336 384 336c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0zM384 448c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-flood-water-circle-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "damage", + "flood", + "water" + ] + }, + "unicode": "e50f", + "label": "House Flood Water Circle Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 144A144 144 0 1 0 0 144a144 144 0 1 0 288 0zM140.7 76.7c6.2-6.2 16.4-6.2 22.6 0l56 56c6.2 6.2 6.2 16.4 0 22.6l-56 56c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L169.4 160H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h89.4L140.7 99.3c-6.2-6.2-6.2-16.4 0-22.6zM320 144c0 57.3-27.4 108.2-69.8 140.3c11.8-3.6 23-9.4 33-16.2c22.1-15.5 51.6-15.5 73.7 0c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.4 78.1 3.4c2.1 1.7 4.2 3.3 6.5 4.9l-.3-84.4H576c13.9 0 26.1-8.9 30.4-22.1s-.4-27.6-11.6-35.8l-176-128C407.6-2 392.4-2 381.2 6.1L301 64.4c12.1 23.9 19 50.9 19 79.6zm18.5 165.9c-11.1-7.9-25.9-7.9-37 0C279 325.4 251.5 336 224 336c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C158.5 389.7 191 400 224 400c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.5-27.3-10.1-39.2-1.7l0 0C471.4 325.2 442.9 336 416 336c-27.5 0-55-10.6-77.5-26.1zm0 112c-11.1-7.9-25.9-7.9-37 0C279 437.4 251.5 448 224 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C158.5 501.7 191 512 224 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C471.4 437.2 442.9 448 416 448c-27.5 0-55-10.6-77.5-26.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-laptop": { + "aliases": { + "names": [ + "laptop-house" + ], + "unicodes": { + "secondary": [ + "10e066" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "covid-19", + "device", + "office", + "remote", + "work from home" + ] + }, + "unicode": "e066", + "label": "House Laptop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M218.3 8.5c12.3-11.3 31.2-11.3 43.4 0l208 192c6.7 6.2 10.3 14.8 10.3 23.5H336c-19.1 0-36.3 8.4-48 21.7V208c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64V416H112c-26.5 0-48-21.5-48-48V256H32c-13.2 0-25-8.1-29.8-20.3s-1.6-26.2 8.1-35.2l208-192zM352 304V448H544V304H352zm-48-16c0-17.7 14.3-32 32-32H560c17.7 0 32 14.3 32 32V448h32c8.8 0 16 7.2 16 16c0 26.5-21.5 48-48 48H544 352 304c-26.5 0-48-21.5-48-48c0-8.8 7.2-16 16-16h32V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "home", + "house", + "lockdown", + "quarantine" + ] + }, + "unicode": "e510", + "label": "House Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M384 480c0 11.7 3.1 22.6 8.6 32H392c-22.1 0-40-17.9-40-40V448 384c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32v64 24c0 22.1-17.9 40-40 40H160 128.1c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2H104c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9 .1-2.8V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L490.7 166.3C447.2 181.7 416 223.2 416 272v24.6c-19.1 11.1-32 31.7-32 55.4V480zM528 240c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-medical": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "facility", + "general practitioner", + "health", + "hospital", + "infirmary", + "medicine", + "office", + "outpatient" + ] + }, + "unicode": "e3b2", + "label": "House Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64H448.5c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32zM256 208c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H320v48c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V320H208c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h48V208z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-medical-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clinic", + "hospital", + "not affected", + "ok", + "okay" + ] + }, + "unicode": "e511", + "label": "House Medical Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L522.1 193.9c-8.5-1.3-17.3-1.9-26.1-1.9c-54.7 0-103.5 24.9-135.8 64H320V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zm32 0a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L480 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-medical-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "clinic", + "hospital" + ] + }, + "unicode": "e512", + "label": "House Medical Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L522.1 193.9c-8.5-1.3-17.3-1.9-26.1-1.9c-54.7 0-103.5 24.9-135.8 64H320V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zM496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-medical-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clinic", + "destroy", + "hospital" + ] + }, + "unicode": "e513", + "label": "House Medical Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L522.1 193.9c-8.5-1.3-17.3-1.9-26.1-1.9c-54.7 0-103.5 24.9-135.8 64H320V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zM496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm22.6 144l36.7-36.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L496 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L473.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L496 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L518.6 368z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-medical-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clinic", + "hospital", + "mash" + ] + }, + "unicode": "e514", + "label": "House Medical Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 0c17.7 0 32 14.3 32 32H624c8.8 0 16 7.2 16 16V176c0 8.8-7.2 16-16 16H512V512H448V192 32c0-17.7 14.3-32 32-32zM276.8 39.7L416 159V512h1l-.2 0H96c-17.7 0-32-14.3-32-32V288H32c-13.4 0-25.4-8.3-30-20.9s-1-26.7 9.2-35.4l224-192c12-10.3 29.7-10.3 41.7 0zM224 208v48H176c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320h48c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H288V208c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-signal": { + "aliases": { + "unicodes": { + "secondary": [ + "10e012" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "building", + "connect", + "family", + "home", + "residence", + "smart home", + "wifi" + ] + }, + "unicode": "e012", + "label": "House Signal", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M357.7 8.5c-12.3-11.3-31.2-11.3-43.4 0l-208 192c-9.4 8.6-12.7 22-8.5 34c87.1 25.3 155.6 94.2 180.3 181.6H464c26.5 0 48-21.5 48-48V256h32c13.2 0 25-8.1 29.8-20.3s1.6-26.2-8.1-35.2l-208-192zM288 208c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H304c-8.8 0-16-7.2-16-16V208zM24 256c-13.3 0-24 10.7-24 24s10.7 24 24 24c101.6 0 184 82.4 184 184c0 13.3 10.7 24 24 24s24-10.7 24-24c0-128.1-103.9-232-232-232zm8 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM0 376c0 13.3 10.7 24 24 24c48.6 0 88 39.4 88 88c0 13.3 10.7 24 24 24s24-10.7 24-24c0-75.1-60.9-136-136-136c-13.3 0-24 10.7-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-tsunami": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "damage", + "flood", + "tidal wave", + "wave" + ] + }, + "unicode": "e515", + "label": "House Tsunami", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M80.8 136.5C104.9 93.8 152.6 64 209 64c16.9 0 33.1 2.7 48.2 7.7c16.8 5.5 34.9-3.6 40.4-20.4s-3.6-34.9-20.4-40.4C255.8 3.8 232.8 0 209 0C95.2 0 0 88 0 200c0 91.6 53.5 172.1 142.2 194.1c13.4 3.8 27.5 5.9 42.2 5.9c.7 0 1.4 0 2.1-.1c1.8 0 3.7 .1 5.5 .1l0 0c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.5-27.3-10.1-39.2-1.7l0 0C439.4 325.2 410.9 336 384 336c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0c-22.4 15.5-49.9 26.1-77.4 26.1c0 0-.1 0-.1 0c-12.4 0-24-1.5-34.9-4.3C121.6 320.2 96 287 96 248c0-48.5 39.5-88 88.4-88c13.5 0 26.1 3 37.5 8.3c16 7.5 35.1 .6 42.5-15.5s.6-35.1-15.5-42.5C229.3 101.1 207.4 96 184.4 96c-40 0-76.4 15.4-103.6 40.5zm252-18.1c-8.1 6-12.8 15.5-12.8 25.6V265c1.6 1 3.3 2 4.8 3.1c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.3 78.1 3.4c10.6 8.8 24.2 15.6 37.3 18.6c5.8 1.4 11.2 3.4 16.2 6.2c.7-2.7 1.1-5.5 1.1-8.4l-.4-144c0-10-4.7-19.4-12.7-25.5l-95.5-72c-11.4-8.6-27.1-8.6-38.5 0l-96 72zM384 448c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-user": { + "aliases": { + "names": [ + "home-user" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "house" + ] + }, + "unicode": "e1b0", + "label": "House User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24zM352 224a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zm-96 96c-44.2 0-80 35.8-80 80c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16c0-44.2-35.8-80-80-80H256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "houzz": { + "changes": [ + "4.4.0", + "5.0.0", + "5.0.9", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f27c", + "label": "Houzz", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M275.9 330.7H171.3V480H17V32h109.5v104.5l305.1 85.6V480H275.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hryvnia-sign": { + "aliases": { + "names": [ + "hryvnia" + ], + "unicodes": { + "composite": [ + "20b4" + ], + "secondary": [ + "10f6f2" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Hryvnia Sign", + "currency" + ] + }, + "unicode": "f6f2", + "label": "Hryvnia Sign", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M121.9 116.2C138.3 103.1 158.7 96 179.6 96H223c27.1 0 49 21.9 49 49c0 11.5-4 22.4-11.1 31H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H155.5l-50.6 28.9c-1.7 1-3.4 2-5.1 3.1H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H52.3c-2.8 9.9-4.3 20.4-4.3 31c0 62.4 50.6 113 113 113h43.4c35.5 0 70-12.1 97.7-34.3L308 441c13.8-11 16-31.2 5-45s-31.2-16-45-5l-5.9 4.7c-16.4 13.1-36.7 20.2-57.7 20.2H161c-27.1 0-49-21.9-49-49c0-11.5 4-22.4 11.1-31H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H228.5l50.6-28.9c1.7-1 3.4-2 5.1-3.1H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H331.7c2.8-10 4.3-20.4 4.3-31c0-62.4-50.6-113-113-113H179.6c-35.5 0-70 12.1-97.7 34.3L76 71c-13.8 11-16 31.2-5 45s31.2 16 45 5l5.9-4.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "html5": { + "changes": [ + "3.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f13b", + "label": "HTML 5 Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hubspot": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b2", + "label": "HubSpot", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hurricane": { + "aliases": { + "unicodes": { + "secondary": [ + "10f751" + ] + } + }, + "changes": [ + "5.5.0", + "5.10.1", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "coriolis effect", + "eye", + "storm", + "tropical cyclone", + "typhoon" + ] + }, + "unicode": "f751", + "label": "Hurricane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 208C0 104.4 75.7 18.5 174.9 2.6C184 1.2 192 8.6 192 17.9V81.2c0 8.4 6.5 15.3 14.7 16.5C307 112.5 384 199 384 303.4c0 103.6-75.7 189.5-174.9 205.4c-9.2 1.5-17.1-5.9-17.1-15.2V430.2c0-8.4-6.5-15.3-14.7-16.5C77 398.9 0 312.4 0 208zm288 48A96 96 0 1 0 96 256a96 96 0 1 0 192 0zm-96-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "i": { + "aliases": { + "unicodes": { + "composite": [ + "69" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter I", + "Latin Small Letter I", + "letter" + ] + }, + "unicode": "49", + "label": "I", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96h96V416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H192V96h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "i-cursor": { + "aliases": { + "unicodes": { + "secondary": [ + "10f246" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "editing", + "i-beam", + "type", + "writing" + ] + }, + "unicode": "f246", + "label": "I Cursor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M.1 29.3C-1.4 47 11.7 62.4 29.3 63.9l8 .7C70.5 67.3 96 95 96 128.3V224H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H96v95.7c0 33.3-25.5 61-58.7 63.8l-8 .7C11.7 449.6-1.4 465 .1 482.7s16.9 30.7 34.5 29.2l8-.7c34.1-2.8 64.2-18.9 85.4-42.9c21.2 24 51.2 40.1 85.4 42.9l8 .7c17.6 1.5 33.1-11.6 34.5-29.2s-11.6-33.1-29.2-34.5l-8-.7C185.5 444.7 160 417 160 383.7V288h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H160V128.3c0-33.3 25.5-61 58.7-63.8l8-.7c17.6-1.5 30.7-16.9 29.2-34.5S239-1.4 221.3 .1l-8 .7C179.2 3.6 149.2 19.7 128 43.7c-21.2-24-51.2-40-85.4-42.9l-8-.7C17-1.4 1.6 11.7 .1 29.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ice-cream": { + "aliases": { + "unicodes": { + "composite": [ + "1f368" + ], + "secondary": [ + "10f810" + ] + } + }, + "changes": [ + "5.7.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chocolate", + "cone", + "cream", + "dessert", + "frozen", + "ice", + "ice cream", + "scoop", + "sorbet", + "sweet", + "vanilla", + "yogurt" + ] + }, + "unicode": "f810", + "label": "Ice Cream", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M335.1 160c.6-5.3 .9-10.6 .9-16C336 64.5 271.5 0 192 0S48 64.5 48 144c0 5.4 .3 10.7 .9 16H48c-26.5 0-48 21.5-48 48s21.5 48 48 48h53.5 181H336c26.5 0 48-21.5 48-48s-21.5-48-48-48h-.9zM64 288L168.8 497.7c4.4 8.8 13.3 14.3 23.2 14.3s18.8-5.5 23.2-14.3L320 288H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "icicles": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ad" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "frozen", + "hanging", + "ice", + "seasonal", + "sharp" + ] + }, + "unicode": "f7ad", + "label": "Icicles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M75.8 304.8L1 35.7c-.7-2.5-1-5-1-7.5C0 12.6 12.6 0 28.2 0H482.4C498.8 0 512 13.2 512 29.6c0 1.6-.1 3.3-.4 4.9L434.6 496.1c-1.5 9.2-9.5 15.9-18.8 15.9c-9.2 0-17.1-6.6-18.7-15.6L336 160 307.2 303.9c-1.9 9.3-10.1 16.1-19.6 16.1c-9.2 0-17.2-6.2-19.4-15.1L240 192 210.6 368.2c-1.5 9.1-9.4 15.8-18.6 15.8s-17.1-6.7-18.6-15.8L144 192 115.9 304.3c-2.3 9.2-10.6 15.7-20.1 15.7c-9.3 0-17.5-6.2-20-15.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "icons": { + "aliases": { + "names": [ + "heart-music-camera-bolt" + ], + "unicodes": { + "secondary": [ + "10f86d" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bolt", + "emoji", + "heart", + "image", + "music", + "photo", + "symbols" + ] + }, + "unicode": "f86d", + "label": "Icons", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M500.3 7.3C507.7 13.3 512 22.4 512 32V176c0 26.5-28.7 48-64 48s-64-21.5-64-48s28.7-48 64-48V71L352 90.2V208c0 26.5-28.7 48-64 48s-64-21.5-64-48s28.7-48 64-48V64c0-15.3 10.8-28.4 25.7-31.4l160-32c9.4-1.9 19.1 .6 26.6 6.6zM74.7 304l11.8-17.8c5.9-8.9 15.9-14.2 26.6-14.2h61.7c10.7 0 20.7 5.3 26.6 14.2L213.3 304H240c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V352c0-26.5 21.5-48 48-48H74.7zM192 408a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM478.7 278.3L440.3 368H496c6.7 0 12.6 4.1 15 10.4s.6 13.3-4.4 17.7l-128 112c-5.6 4.9-13.9 5.3-19.9 .9s-8.2-12.4-5.3-19.2L391.7 400H336c-6.7 0-12.6-4.1-15-10.4s-.6-13.3 4.4-17.7l128-112c5.6-4.9 13.9-5.3 19.9-.9s8.2 12.4 5.3 19.2zm-339-59.2c-6.5 6.5-17 6.5-23 0L19.9 119.2c-28-29-26.5-76.9 5-103.9c27-23.5 68.4-19 93.4 6.5l10 10.5 9.5-10.5c25-25.5 65.9-30 93.9-6.5c31 27 32.5 74.9 4.5 103.9l-96.4 99.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "id-badge": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2c1" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "contact", + "identification", + "license", + "profile" + ] + }, + "unicode": "f2c1", + "label": "Id Badge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zm96 320h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-32-96a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM144 64h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M256 48V64c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H256zM0 64C0 28.7 28.7 0 64 0H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM160 320h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-32-96a64 64 0 1 1 128 0 64 64 0 1 1 -128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "id-card": { + "aliases": { + "names": [ + "drivers-license" + ], + "unicodes": { + "composite": [ + "f2c3" + ], + "secondary": [ + "10f2c2" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "5.8.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contact", + "demographics", + "document", + "identification", + "issued", + "profile", + "registration" + ] + }, + "unicode": "f2c2", + "label": "Id Card", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 96l576 0c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96zm0 32V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128H0zM64 405.3c0-29.5 23.9-53.3 53.3-53.3H234.7c29.5 0 53.3 23.9 53.3 53.3c0 5.9-4.8 10.7-10.7 10.7H74.7c-5.9 0-10.7-4.8-10.7-10.7zM176 192a64 64 0 1 1 0 128 64 64 0 1 1 0-128zm176 16c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16z" + }, + "regular": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M528 160V416c0 8.8-7.2 16-16 16H320c0-44.2-35.8-80-80-80H176c-44.2 0-80 35.8-80 80H64c-8.8 0-16-7.2-16-16V160H528zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM272 256a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zm104-48c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H376zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H376z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "id-card-clip": { + "aliases": { + "names": [ + "id-card-alt" + ], + "unicodes": { + "secondary": [ + "10f47f" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contact", + "demographics", + "document", + "identification", + "issued", + "profile" + ] + }, + "unicode": "f47f", + "label": "Id Card Clip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M256 0h64c17.7 0 32 14.3 32 32V96c0 17.7-14.3 32-32 32H256c-17.7 0-32-14.3-32-32V32c0-17.7 14.3-32 32-32zM64 64H192v48c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48V64H512c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128C0 92.7 28.7 64 64 64zM176 437.3c0 5.9 4.8 10.7 10.7 10.7H389.3c5.9 0 10.7-4.8 10.7-10.7c0-29.5-23.9-53.3-53.3-53.3H229.3c-29.5 0-53.3 23.9-53.3 53.3zM288 352a64 64 0 1 0 0-128 64 64 0 1 0 0 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ideal": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e013", + "label": "iDeal", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M125.61,165.48a49.07,49.07,0,1,0,49.06,49.06A49.08,49.08,0,0,0,125.61,165.48ZM86.15,425.84h78.94V285.32H86.15Zm151.46-211.6c0-20-10-22.53-18.74-22.53H204.82V237.5h14.05C228.62,237.5,237.61,234.69,237.61,214.24Zm201.69,46V168.93h22.75V237.5h33.69C486.5,113.08,388.61,86.19,299.67,86.19H204.84V169h14c25.6,0,41.5,17.35,41.5,45.26,0,28.81-15.52,46-41.5,46h-14V425.88h94.83c144.61,0,194.94-67.16,196.72-165.64Zm-109.75,0H273.3V169h54.43v22.73H296v10.58h30V225H296V237.5h33.51Zm74.66,0-5.16-17.67H369.31l-5.18,17.67H340.47L368,168.92h32.35l27.53,91.34ZM299.65,32H32V480H299.65c161.85,0,251-79.73,251-224.52C550.62,172,518,32,299.65,32Zm0,426.92H53.07V53.07H299.65c142.1,0,229.9,64.61,229.9,202.41C529.55,389.57,448.55,458.92,299.65,458.92Zm83.86-264.85L376,219.88H392.4l-7.52-25.81Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "igloo": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ae" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dome", + "dwelling", + "eskimo", + "home", + "house", + "ice", + "snow" + ] + }, + "unicode": "f7ae", + "label": "Igloo", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M320 33.8V160H48.5C100.2 82.8 188.1 32 288 32c10.8 0 21.5 .6 32 1.8zM352 160V39.1C424.9 55.7 487.2 99.8 527.5 160H352zM29.9 192H96V320H0c0-46 10.8-89.4 29.9-128zM192 320H128V192H448V320H384v32H576v80c0 26.5-21.5 48-48 48H352V352c0-35.3-28.7-64-64-64s-64 28.7-64 64V480H48c-26.5 0-48-21.5-48-48V352H192V320zm288 0V192h66.1c19.2 38.6 29.9 82 29.9 128H480z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "image": { + "aliases": { + "unicodes": { + "secondary": [ + "10f03e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "album", + "landscape", + "photo", + "picture" + ] + }, + "unicode": "f03e", + "label": "Image", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM323.8 202.5c-4.5-6.6-11.9-10.5-19.8-10.5s-15.4 3.9-19.8 10.5l-87 127.6L170.7 297c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6h96 32H424c8.9 0 17.1-4.9 21.2-12.8s3.6-17.4-1.4-24.7l-120-176zM112 192a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 80c8.8 0 16 7.2 16 16V415.8l-5-6.5-136-176c-4.5-5.9-11.6-9.3-19-9.3s-14.4 3.4-19 9.3L202 340.7l-30.5-42.7C167 291.7 159.8 288 152 288s-15 3.7-19.5 10.1l-80 112L48 416.3l0-.3V96c0-8.8 7.2-16 16-16H448zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm80 192a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "image-portrait": { + "aliases": { + "names": [ + "portrait" + ], + "unicodes": { + "secondary": [ + "10f3e0" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "id", + "image", + "photo", + "picture", + "selfie" + ] + }, + "unicode": "f3e0", + "label": "Image Portrait", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 64c0-35.3-28.7-64-64-64H64C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64l0-384zM128 192a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM80 356.6c0-37.9 30.7-68.6 68.6-68.6h86.9c37.9 0 68.6 30.7 68.6 68.6c0 15.1-12.3 27.4-27.4 27.4H107.4C92.3 384 80 371.7 80 356.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "images": { + "aliases": { + "unicodes": { + "secondary": [ + "10f302" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "album", + "landscape", + "photo", + "picture" + ] + }, + "unicode": "f302", + "label": "Images", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M160 32c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H160zM396 138.7l96 144c4.9 7.4 5.4 16.8 1.2 24.6S480.9 320 472 320H328 280 200c-9.2 0-17.6-5.3-21.6-13.6s-2.9-18.2 2.9-25.4l64-80c4.6-5.7 11.4-9 18.7-9s14.2 3.3 18.7 9l17.3 21.6 56-84C360.5 132 368 128 376 128s15.5 4 20 10.7zM192 128a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM48 120c0-13.3-10.7-24-24-24S0 106.7 0 120V344c0 75.1 60.9 136 136 136H456c13.3 0 24-10.7 24-24s-10.7-24-24-24H136c-48.6 0-88-39.4-88-88V120z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M160 80H512c8.8 0 16 7.2 16 16V320c0 8.8-7.2 16-16 16H490.8L388.1 178.9c-4.4-6.8-12-10.9-20.1-10.9s-15.7 4.1-20.1 10.9l-52.2 79.8-12.4-16.9c-4.5-6.2-11.7-9.8-19.4-9.8s-14.8 3.6-19.4 9.8L175.6 336H160c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16zM96 96V320c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H160c-35.3 0-64 28.7-64 64zM48 120c0-13.3-10.7-24-24-24S0 106.7 0 120V344c0 75.1 60.9 136 136 136H456c13.3 0 24-10.7 24-24s-10.7-24-24-24H136c-48.6 0-88-39.4-88-88V120zm208 24a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "imdb": { + "changes": [ + "4.7.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2d8", + "label": "IMDB", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M89.5 323.6H53.93V186.2H89.5V323.6zM156.1 250.5L165.2 186.2H211.5V323.6H180.5V230.9L167.1 323.6H145.8L132.8 232.9L132.7 323.6H101.5V186.2H147.6C148.1 194.5 150.4 204.3 151.9 215.6L156.1 250.5zM223.7 323.6V186.2H250.3C267.3 186.2 277.3 187.1 283.3 188.6C289.4 190.3 294 192.8 297.2 196.5C300.3 199.8 302.3 203.1 303 208.5C303.9 212.9 304.4 221.6 304.4 234.7V282.9C304.4 295.2 303.7 303.4 302.5 307.6C301.4 311.7 299.4 315 296.5 317.3C293.7 319.7 290.1 321.4 285.8 322.3C281.6 323.1 275.2 323.6 266.7 323.6H223.7zM259.2 209.7V299.1C264.3 299.1 267.5 298.1 268.6 296.8C269.7 294.8 270.4 289.2 270.4 280.1V226.8C270.4 220.6 270.3 216.6 269.7 214.8C269.4 213 268.5 211.8 267.1 210.1C265.7 210.1 263 209.7 259.2 209.7V209.7zM316.5 323.6V186.2H350.6V230.1C353.5 227.7 356.7 225.2 360.1 223.5C363.7 222 368.9 221.1 372.9 221.1C377.7 221.1 381.8 221.9 385.2 223.3C388.6 224.8 391.2 226.8 393.2 229.5C394.9 232.1 395.9 234.8 396.3 237.3C396.7 239.9 396.1 245.3 396.1 253.5V292.1C396.1 300.3 396.3 306.4 395.3 310.5C394.2 314.5 391.5 318.1 387.5 320.1C383.4 324 378.6 325.4 372.9 325.4C368.9 325.4 363.7 324.5 360.2 322.9C356.7 321.1 353.5 318.4 350.6 314.9L348.5 323.6L316.5 323.6zM361.6 302.9C362.3 301.1 362.6 296.9 362.6 290.4V255C362.6 249.4 362.3 245.5 361.5 243.8C360.8 241.9 357.8 241.1 355.7 241.1C353.7 241.1 352.3 241.9 351.6 243.4C351 244.9 350.6 248.8 350.6 255V291.4C350.6 297.5 351 301.4 351.8 303C352.4 304.7 353.9 305.5 355.9 305.5C358.1 305.5 360.1 304.7 361.6 302.9L361.6 302.9zM418.4 32.04C434.1 33.27 447.1 47.28 447.1 63.92V448.1C447.1 464.5 435.2 478.5 418.9 479.1C418.6 479.1 418.4 480 418.1 480H29.88C29.6 480 29.32 479.1 29.04 479.9C13.31 478.5 1.093 466.1 0 449.7L.0186 61.78C1.081 45.88 13.82 33.09 30.26 31.1H417.7C417.9 31.1 418.2 32.01 418.4 32.04L418.4 32.04zM30.27 41.26C19 42.01 10.02 51.01 9.257 62.4V449.7C9.63 455.1 11.91 460.2 15.7 464C19.48 467.9 24.51 470.3 29.89 470.7H418.1C429.6 469.7 438.7 459.1 438.7 448.1V63.91C438.7 58.17 436.6 52.65 432.7 48.45C428.8 44.24 423.4 41.67 417.7 41.26L30.27 41.26z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "inbox": { + "aliases": { + "unicodes": { + "secondary": [ + "10f01c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "desk", + "email", + "mail", + "message" + ] + }, + "unicode": "f01c", + "label": "Inbox", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M121 32C91.6 32 66 52 58.9 80.5L1.9 308.4C.6 313.5 0 318.7 0 323.9V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V323.9c0-5.2-.6-10.4-1.9-15.5l-57-227.9C446 52 420.4 32 391 32H121zm0 64H391l48 192H387.8c-12.1 0-23.2 6.8-28.6 17.7l-14.3 28.6c-5.4 10.8-16.5 17.7-28.6 17.7H195.8c-12.1 0-23.2-6.8-28.6-17.7l-14.3-28.6c-5.4-10.8-16.5-17.7-28.6-17.7H73L121 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "indent": { + "aliases": { + "unicodes": { + "secondary": [ + "10f03c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "align", + "justify", + "paragraph", + "tab" + ] + }, + "unicode": "f03c", + "label": "Indent", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64zM192 192c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32zm32 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zM0 448c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM127.8 268.6L25.8 347.9C15.3 356.1 0 348.6 0 335.3V176.7c0-13.3 15.3-20.8 25.8-12.6l101.9 79.3c8.2 6.4 8.2 18.9 0 25.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "indian-rupee-sign": { + "aliases": { + "names": [ + "indian-rupee", + "inr" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Indian Rupee Sign", + "currency" + ] + }, + "unicode": "e1bc", + "label": "Indian Rupee Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H96h16H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H231.8c9.6 14.4 16.7 30.6 20.7 48H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H252.4c-13.2 58.3-61.9 103.2-122.2 110.9L274.6 422c14.4 10.3 17.7 30.3 7.4 44.6s-30.3 17.7-44.6 7.4L13.4 314C2.1 306-2.7 291.5 1.5 278.2S18.1 256 32 256h80c32.8 0 61-19.7 73.3-48H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H185.3C173 115.7 144.8 96 112 96H96 32C14.3 96 0 81.7 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "industry": { + "aliases": { + "unicodes": { + "secondary": [ + "10f275" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "factory", + "industrial", + "manufacturing", + "mill", + "warehouse" + ] + }, + "unicode": "f275", + "label": "Industry", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64V304v48 80c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V304 152.2c0-18.2-19.4-29.7-35.4-21.1L320 215.4V152.2c0-18.2-19.4-29.7-35.4-21.1L128 215.4V64c0-17.7-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "infinity": { + "aliases": { + "unicodes": { + "composite": [ + "221e", + "267e" + ], + "secondary": [ + "10f534" + ] + } + }, + "changes": [ + "5.0.13", + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Infinity", + "eternity", + "forever", + "infinity", + "math", + "unbounded", + "universal" + ] + }, + "unicode": "f534", + "label": "Infinity", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 241.1C0 161 65 96 145.1 96c38.5 0 75.4 15.3 102.6 42.5L320 210.7l72.2-72.2C419.5 111.3 456.4 96 494.9 96C575 96 640 161 640 241.1v29.7C640 351 575 416 494.9 416c-38.5 0-75.4-15.3-102.6-42.5L320 301.3l-72.2 72.2C220.5 400.7 183.6 416 145.1 416C65 416 0 351 0 270.9V241.1zM274.7 256l-72.2-72.2c-15.2-15.2-35.9-23.8-57.4-23.8C100.3 160 64 196.3 64 241.1v29.7c0 44.8 36.3 81.1 81.1 81.1c21.5 0 42.2-8.5 57.4-23.8L274.7 256zm90.5 0l72.2 72.2c15.2 15.2 35.9 23.8 57.4 23.8c44.8 0 81.1-36.3 81.1-81.1V241.1c0-44.8-36.3-81.1-81.1-81.1c-21.5 0-42.2 8.5-57.4 23.8L365.3 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "info": { + "aliases": { + "unicodes": { + "secondary": [ + "10f129" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "details", + "help", + "information", + "more", + "support" + ] + }, + "unicode": "f129", + "label": "Info", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 192, + 512 + ], + "width": 192, + "height": 512, + "path": "M48 80a48 48 0 1 1 96 0A48 48 0 1 1 48 80zM0 224c0-17.7 14.3-32 32-32H96c17.7 0 32 14.3 32 32V448h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H64V256H32c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "instagram": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f16d", + "label": "Instagram", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "instalod": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e081", + "label": "InstaLOD", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M153.384,480H387.113L502.554,275.765,204.229,333.211ZM504.726,240.078,387.113,32H155.669L360.23,267.9ZM124.386,48.809,7.274,256,123.236,461.154,225.627,165.561Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "intercom": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "customer", + "messenger" + ] + }, + "unicode": "f7af", + "label": "Intercom", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zm-108.3 82.1c0-19.8 29.9-19.8 29.9 0v199.5c0 19.8-29.9 19.8-29.9 0V114.1zm-74.6-7.5c0-19.8 29.9-19.8 29.9 0v216.5c0 19.8-29.9 19.8-29.9 0V106.6zm-74.7 7.5c0-19.8 29.9-19.8 29.9 0v199.5c0 19.8-29.9 19.8-29.9 0V114.1zM59.7 144c0-19.8 29.9-19.8 29.9 0v134.3c0 19.8-29.9 19.8-29.9 0V144zm323.4 227.8c-72.8 63-241.7 65.4-318.1 0-15-12.8 4.4-35.5 19.4-22.7 65.9 55.3 216.1 53.9 279.3 0 14.9-12.9 34.3 9.8 19.4 22.7zm5.2-93.5c0 19.8-29.9 19.8-29.9 0V144c0-19.8 29.9-19.8 29.9 0v134.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "internet-explorer": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "ie" + ] + }, + "unicode": "f26b", + "label": "Internet-explorer", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "invision": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "design", + "interface" + ] + }, + "unicode": "f7b0", + "label": "InVision", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M407.4 32H40.6C18.2 32 0 50.2 0 72.6v366.8C0 461.8 18.2 480 40.6 480h366.8c22.4 0 40.6-18.2 40.6-40.6V72.6c0-22.4-18.2-40.6-40.6-40.6zM176.1 145.6c.4 23.4-22.4 27.3-26.6 27.4-14.9 0-27.1-12-27.1-27 .1-35.2 53.1-35.5 53.7-.4zM332.8 377c-65.6 0-34.1-74-25-106.6 14.1-46.4-45.2-59-59.9.7l-25.8 103.3H177l8.1-32.5c-31.5 51.8-94.6 44.4-94.6-4.3.1-14.3.9-14 23-104.1H81.7l9.7-35.6h76.4c-33.6 133.7-32.6 126.9-32.9 138.2 0 20.9 40.9 13.5 57.4-23.2l19.8-79.4h-32.3l9.7-35.6h68.8l-8.9 40.5c40.5-75.5 127.9-47.8 101.8 38-14.2 51.1-14.6 50.7-14.9 58.8 0 15.5 17.5 22.6 31.8-16.9L386 325c-10.5 36.7-29.4 52-53.2 52z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ioxhost": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f208", + "label": "ioxhost", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "italic": { + "aliases": { + "unicodes": { + "secondary": [ + "10f033" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "emphasis", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f033", + "label": "Italic", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M128 64c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H293.3L160 416h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H90.7L224 96H160c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "itch-io": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f83a", + "label": "itch.io", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M71.92 34.77C50.2 47.67 7.4 96.84 7 109.73v21.34c0 27.06 25.29 50.84 48.25 50.84 27.57 0 50.54-22.85 50.54-50 0 27.12 22.18 50 49.76 50s49-22.85 49-50c0 27.12 23.59 50 51.16 50h.5c27.57 0 51.16-22.85 51.16-50 0 27.12 21.47 50 49 50s49.76-22.85 49.76-50c0 27.12 23 50 50.54 50 23 0 48.25-23.78 48.25-50.84v-21.34c-.4-12.9-43.2-62.07-64.92-75C372.56 32.4 325.76 32 256 32S91.14 33.1 71.92 34.77zm132.32 134.39c-22 38.4-77.9 38.71-99.85.25-13.17 23.14-43.17 32.07-56 27.66-3.87 40.15-13.67 237.13 17.73 269.15 80 18.67 302.08 18.12 379.76 0 31.65-32.27 21.32-232 17.75-269.15-12.92 4.44-42.88-4.6-56-27.66-22 38.52-77.85 38.1-99.85-.24-7.1 12.49-23.05 28.94-51.76 28.94a57.54 57.54 0 0 1-51.75-28.94zm-41.58 53.77c16.47 0 31.09 0 49.22 19.78a436.91 436.91 0 0 1 88.18 0C318.22 223 332.85 223 349.31 223c52.33 0 65.22 77.53 83.87 144.45 17.26 62.15-5.52 63.67-33.95 63.73-42.15-1.57-65.49-32.18-65.49-62.79-39.25 6.43-101.93 8.79-155.55 0 0 30.61-23.34 61.22-65.49 62.79-28.42-.06-51.2-1.58-33.94-63.73 18.67-67 31.56-144.45 83.88-144.45zM256 270.79s-44.38 40.77-52.35 55.21l29-1.17v25.32c0 1.55 21.34.16 23.33.16 11.65.54 23.31 1 23.31-.16v-25.28l29 1.17c-8-14.48-52.35-55.24-52.35-55.24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "itunes": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b4", + "label": "iTunes", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "itunes-note": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b5", + "label": "Itunes Note", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "j": { + "aliases": { + "unicodes": { + "composite": [ + "6a" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter J", + "Latin Small Letter J", + "letter" + ] + }, + "unicode": "4a", + "label": "J", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M288 32c17.7 0 32 14.3 32 32V320c0 88.4-71.6 160-160 160S0 408.4 0 320V288c0-17.7 14.3-32 32-32s32 14.3 32 32v32c0 53 43 96 96 96s96-43 96-96V64c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "jar": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "jam", + "jelly", + "storage" + ] + }, + "unicode": "e516", + "label": "Jar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32 32C32 14.3 46.3 0 64 0H256c17.7 0 32 14.3 32 32s-14.3 32-32 32H64C46.3 64 32 49.7 32 32zM0 160c0-35.3 28.7-64 64-64H256c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V160zm96 64c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32H224c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32H96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "jar-wheat": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flour", + "storage" + ] + }, + "unicode": "e517", + "label": "Jar Wheat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32 32C32 14.3 46.3 0 64 0H256c17.7 0 32 14.3 32 32s-14.3 32-32 32H64C46.3 64 32 49.7 32 32zM0 160c0-35.3 28.7-64 64-64H256c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V160zm112 0H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 198 90 224 122.2 224H144h32 21.8c32.1 0 58.2-26 58.2-58.2c0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7c-11.7-13.3-28.9-21.7-48-21.7zm48 117.7c-11.7-13.3-28.9-21.7-48-21.7H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 294 90 320 122.2 320H144h32 21.8c32.1 0 58.2-26 58.2-58.2c0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7zM112 352H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 390 90 416 122.2 416H144v32c0 8.8 7.2 16 16 16s16-7.2 16-16V416h21.8c32.1 0 58.2-26 58.2-58.2c0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7c-11.7-13.3-28.9-21.7-48-21.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "java": { + "changes": [ + "5.0.10", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4e4", + "label": "Java", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M277.74 312.9c9.8-6.7 23.4-12.5 23.4-12.5s-38.7 7-77.2 10.2c-47.1 3.9-97.7 4.7-123.1 1.3-60.1-8 33-30.1 33-30.1s-36.1-2.4-80.6 19c-52.5 25.4 130 37 224.5 12.1zm-85.4-32.1c-19-42.7-83.1-80.2 0-145.8C296 53.2 242.84 0 242.84 0c21.5 84.5-75.6 110.1-110.7 162.6-23.9 35.9 11.7 74.4 60.2 118.2zm114.6-176.2c.1 0-175.2 43.8-91.5 140.2 24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3zm-6.1 270.5a12.19 12.19 0 0 1-2 2.6c128.3-33.7 81.1-118.9 19.8-97.3a17.33 17.33 0 0 0-8.2 6.3 70.45 70.45 0 0 1 11-3c31-6.5 75.5 41.5-20.6 91.4zM348 437.4s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2C232.84 509.4 401 461.3 348 437.4zM124.44 396c-78.7 22 47.9 67.4 148.1 24.5a185.89 185.89 0 0 1-28.2-13.8c-44.7 8.5-65.4 9.1-106 4.5-33.5-3.8-13.9-15.2-13.9-15.2zm179.8 97.2c-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6 92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7zM260.64 353c-59.2 11.4-93.5 11.1-136.8 6.6-33.5-3.5-11.6-19.7-11.6-19.7-86.8 28.8 48.2 61.4 169.5 25.9a60.37 60.37 0 0 1-21.1-12.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "jedi": { + "aliases": { + "unicodes": { + "secondary": [ + "10f669" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crest", + "force", + "sith", + "skywalker", + "star wars", + "yoda" + ] + }, + "unicode": "f669", + "label": "Jedi", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M230 315.7l-21.2-31.9c-2.1-3.2-1.7-7.4 1-10.1s6.9-3.1 10.1-1l29.5 19.7c2.1 1.4 4.9 0 5-2.6L263.7 8c.1-4.5 3.8-8 8.3-8s8.1 3.5 8.3 8l9.4 281.9c.1 2.5 2.9 3.9 5 2.6l29.5-19.7c3.2-2.1 7.4-1.7 10.1 1s3.1 6.9 1 10.1L314 315.7c-1.3 1.9-.2 4.5 2 4.9l37.6 7.5c3.7 .7 6.4 4 6.4 7.8s-2.7 7.1-6.4 7.8L316 351.4c-2.2 .4-3.3 3-2 4.9l21.2 31.9c2.1 3.2 1.7 7.4-1 10.1s-6.9 3.1-10.1 1l-26.3-17.6c-2.2-1.4-5.1 .2-5 2.8l2.1 61.5C354.6 435.2 400 382.9 400 320c0-37-15.7-70.4-40.8-93.7c-7-6.5-6.5-18.6 1-24.4C394.1 175.5 416 134.3 416 88c0-16.8-2.9-33-8.2-48c-4.6-13 10.2-30 21.4-22c53.5 38 92.7 94.8 107.8 160.7c.5 2.1-.2 4.3-1.7 5.9l-28.4 28.4c-4 4-1.2 10.9 4.5 10.9h26c3.4 0 6.2 2.6 6.3 6c.1 3.3 .2 6.6 .2 10c0 17.5-1.7 34.7-4.8 51.3c-.2 1.2-.9 2.4-1.7 3.3l-46.5 46.5c-4 4-1.2 10.9 4.5 10.9H510c4.6 0 7.7 4.8 5.7 9C471.2 450.5 378.8 512 272 512S72.8 450.5 28.3 361c-2.1-4.2 1-9 5.7-9H48.5c5.7 0 8.6-6.9 4.5-10.9L6.6 294.6c-.9-.9-1.5-2-1.7-3.3C1.7 274.7 0 257.5 0 240c0-3.3 .1-6.7 .2-10c.1-3.4 2.9-6 6.3-6h26c5.7 0 8.6-6.9 4.5-10.9L8.6 184.6c-1.5-1.5-2.2-3.8-1.7-5.9C22.1 112.8 61.3 56 114.8 18c11.3-8 26 8.9 21.4 22c-5.3 15-8.2 31.2-8.2 48c0 46.3 21.9 87.5 55.8 113.9c7.5 5.8 8 17.9 1 24.4C159.7 249.6 144 283 144 320c0 62.9 45.4 115.2 105.1 126l2.1-61.5c.1-2.6-2.8-4.2-5-2.8l-26.3 17.6c-3.2 2.1-7.4 1.7-10.1-1s-3.1-6.9-1-10.1L230 356.3c1.3-1.9 .2-4.5-2-4.9l-37.6-7.5c-3.7-.7-6.4-4-6.4-7.8s2.7-7.1 6.4-7.8l37.6-7.5c2.2-.4 3.3-3 2-4.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "jedi-order": { + "changes": [ + "5.0.12", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "star wars" + ] + }, + "unicode": "f50e", + "label": "Jedi Order", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M398.5 373.6c95.9-122.1 17.2-233.1 17.2-233.1 45.4 85.8-41.4 170.5-41.4 170.5 105-171.5-60.5-271.5-60.5-271.5 96.9 72.7-10.1 190.7-10.1 190.7 85.8 158.4-68.6 230.1-68.6 230.1s-.4-16.9-2.2-85.7c4.3 4.5 34.5 36.2 34.5 36.2l-24.2-47.4 62.6-9.1-62.6-9.1 20.2-55.5-31.4 45.9c-2.2-87.7-7.8-305.1-7.9-306.9v-2.4 1-1 2.4c0 1-5.6 219-7.9 306.9l-31.4-45.9 20.2 55.5-62.6 9.1 62.6 9.1-24.2 47.4 34.5-36.2c-1.8 68.8-2.2 85.7-2.2 85.7s-154.4-71.7-68.6-230.1c0 0-107-118.1-10.1-190.7 0 0-165.5 99.9-60.5 271.5 0 0-86.8-84.8-41.4-170.5 0 0-78.7 111 17.2 233.1 0 0-26.2-16.1-49.4-77.7 0 0 16.9 183.3 222 185.7h4.1c205-2.4 222-185.7 222-185.7-23.6 61.5-49.9 77.7-49.9 77.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "jenkins": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b6", + "label": "Jenkis", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "jet-fighter": { + "aliases": { + "names": [ + "fighter-jet" + ], + "unicodes": { + "secondary": [ + "10f0fb" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airforce", + "airplane", + "airport", + "fast", + "fly", + "goose", + "marines", + "maverick", + "military", + "plane", + "quick", + "top gun", + "transportation", + "travel" + ] + }, + "unicode": "f0fb", + "label": "Jet Fighter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M160 24c0-13.3 10.7-24 24-24H296c13.3 0 24 10.7 24 24s-10.7 24-24 24H280L384 192H500.4c7.7 0 15.3 1.4 22.5 4.1L625 234.4c9 3.4 15 12 15 21.6s-6 18.2-15 21.6L522.9 315.9c-7.2 2.7-14.8 4.1-22.5 4.1H384L280 464h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V320H160l-54.6 54.6c-6 6-14.1 9.4-22.6 9.4H64c-17.7 0-32-14.3-32-32V288c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32H82.7c8.5 0 16.6 3.4 22.6 9.4L160 192h32V48h-8c-13.3 0-24-10.7-24-24zM80 240c-8.8 0-16 7.2-16 16s7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "jet-fighter-up": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airforce", + "airplane", + "airport", + "fast", + "fly", + "goose", + "marines", + "maverick", + "military", + "plane", + "quick", + "top gun", + "transportation", + "travel" + ] + }, + "unicode": "e518", + "label": "Jet Fighter Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M270.7 9.7C268.2 3.8 262.4 0 256 0s-12.2 3.8-14.7 9.7L197.2 112.6c-3.4 8-5.2 16.5-5.2 25.2v77l-144 84V280c0-13.3-10.7-24-24-24s-24 10.7-24 24v56 32 24c0 13.3 10.7 24 24 24s24-10.7 24-24v-8H192v32.7L133.5 468c-3.5 3-5.5 7.4-5.5 12v16c0 8.8 7.2 16 16 16h96V448c0-8.8 7.2-16 16-16s16 7.2 16 16v64h96c8.8 0 16-7.2 16-16V480c0-4.6-2-9-5.5-12L320 416.7V384H464v8c0 13.3 10.7 24 24 24s24-10.7 24-24V368 336 280c0-13.3-10.7-24-24-24s-24 10.7-24 24v18.8l-144-84v-77c0-8.7-1.8-17.2-5.2-25.2L270.7 9.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "jira": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian" + ] + }, + "unicode": "f7b1", + "label": "Jira", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M490 241.7C417.1 169 320.6 71.8 248.5 0 83 164.9 6 241.7 6 241.7c-7.9 7.9-7.9 20.7 0 28.7C138.8 402.7 67.8 331.9 248.5 512c379.4-378 15.7-16.7 241.5-241.7 8-7.9 8-20.7 0-28.6zm-241.5 90l-76-75.7 76-75.7 76 75.7-76 75.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "joget": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b7", + "label": "Joget", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M378.1 45C337.6 19.9 292.6 8 248.2 8 165 8 83.8 49.9 36.9 125.9c-71.9 116.6-35.6 269.3 81 341.2s269.3 35.6 341.2-80.9c71.9-116.6 35.6-269.4-81-341.2zm51.8 323.2c-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6zm-200.8-86.3c-55.5-1.4-81.7-20.8-58.5-48.2s51.1-40.7 68.9-51.2c17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9zm183.8-54.8c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5 31.9-14 13.4-24.6c-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "joint": { + "aliases": { + "unicodes": { + "secondary": [ + "10f595" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blunt", + "cannabis", + "doobie", + "drugs", + "marijuana", + "roach", + "smoke", + "smoking", + "spliff" + ] + }, + "unicode": "f595", + "label": "Joint", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M448 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43c0 55.2 21.9 108.1 60.9 147.1l21 21c9 9 14.1 21.2 14.1 33.9v11c0 17.7 14.3 32 32 32s32-14.3 32-32V245c0-29.7-11.8-58.2-32.8-79.2l-21-21C463.2 117.8 448 81.2 448 43V32zM576 256c0 17.7 14.3 32 32 32s32-14.3 32-32V245c0-55.2-21.9-108.1-60.9-147.1l-21-21c-9-9-14.1-21.2-14.1-33.9V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43c0 29.7 11.8 58.2 32.8 79.2l21 21c27 27 42.2 63.6 42.2 101.8v11zM229.8 360c-4.7-2.3-10-2.7-15.2-2c-37.8 5.6-75.2 14.3-106.9 22.8C81.3 388 58.3 395.1 42 400.4c-8.2 2.7-14.7 4.9-19.2 6.5c-2.3 .8-4 1.4-5.2 1.8l-1.3 .5C6.8 412.5 0 421.4 0 432s6.8 19.5 16.3 22.7l1.3 .5c1.2 .4 3 1.1 5.2 1.8c4.5 1.6 11 3.8 19.2 6.5c16.3 5.4 39.2 12.5 65.7 19.6C160.3 497.3 228.8 512 288 512h67.3c4.1 0 6.3-5.1 3.6-8.3L256.5 380.8c-7.4-8.9-16.5-15.9-26.7-20.8zM445 512h19 51.3c4.1 0 6.3-5.1 3.6-8.3L416.5 380.8C401.3 362.5 378.8 352 355 352H336 288c-1.1 0-2.3 0-3.4 0c-4.1 0-6.2 5.1-3.5 8.3L383.5 483.2C398.7 501.5 421.2 512 445 512zm-3.9-151.7L543.5 483.2c14.6 17.5 35.9 27.9 58.6 28.7c21.1-1.1 37.9-18.6 37.9-39.9V392c0-22.1-17.9-40-40-40H444.7c-4.1 0-6.3 5.1-3.6 8.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "joomla": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1aa", + "label": "Joomla Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "js": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b8", + "label": "JavaScript (JS)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "jsfiddle": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1cc", + "label": "jsFiddle", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "jug-detergent": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "detergent", + "laundry", + "soap", + "wash" + ] + }, + "unicode": "e519", + "label": "Jug Detergent", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 24c0-13.3 10.7-24 24-24h80c13.3 0 24 10.7 24 24V48h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H88C74.7 96 64 85.3 64 72s10.7-24 24-24h8V24zM0 256c0-70.7 57.3-128 128-128H256c70.7 0 128 57.3 128 128V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256zm256 0v96c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-17.7-14.3-32-32-32s-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "k": { + "aliases": { + "unicodes": { + "composite": [ + "6b" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter K", + "Latin Small Letter K", + "letter" + ] + }, + "unicode": "4b", + "label": "K", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M311 86.3c12.3-12.7 12-32.9-.7-45.2s-32.9-12-45.2 .7l-155.2 160L64 249V64c0-17.7-14.3-32-32-32S0 46.3 0 64V328 448c0 17.7 14.3 32 32 32s32-14.3 32-32V341l64.7-66.7 133 192c10.1 14.5 30 18.1 44.5 8.1s18.1-30 8.1-44.5L174.1 227.4 311 86.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kaaba": { + "aliases": { + "unicodes": { + "composite": [ + "1f54b" + ], + "secondary": [ + "10f66b" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Muslim", + "building", + "cube", + "islam", + "kaaba", + "muslim", + "religion" + ] + }, + "unicode": "f66b", + "label": "Kaaba", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M60 120l228 71.2L516 120 288 48.8 60 120zM278.5 1.5c6.2-1.9 12.9-1.9 19.1 0l256 80C566.9 85.6 576 98 576 112v16 0 21.2L292.8 237.7c-3.1 1-6.4 1-9.5 0L0 149.2V128 112C0 98 9.1 85.6 22.5 81.5l256-80zm23.9 266.8L576 182.8v46.5l-52.8 16.5c-8.4 2.6-13.1 11.6-10.5 20s11.6 13.1 20 10.5L576 262.8V400c0 14-9.1 26.4-22.5 30.5l-256 80c-6.2 1.9-12.9 1.9-19.1 0l-256-80C9.1 426.4 0 414 0 400V262.8l43.2 13.5c8.4 2.6 17.4-2.1 20-10.5s-2.1-17.4-10.5-20L0 229.2V182.8l273.7 85.5c9.3 2.9 19.3 2.9 28.6 0zm-185.5-2.6c-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20l64 20c8.4 2.6 17.4-2.1 20-10.5s-2.1-17.4-10.5-20l-64-20zm352 30.5c8.4-2.6 13.1-11.6 10.5-20s-11.6-13.1-20-10.5l-64 20c-8.4 2.6-13.1 11.6-10.5 20s11.6 13.1 20 10.5l64-20zm-224 9.5c-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20l38.5 12c9.3 2.9 19.3 2.9 28.6 0l38.5-12c8.4-2.6 13.1-11.6 10.5-20s-11.6-13.1-20-10.5l-38.5 12c-3.1 1-6.4 1-9.5 0l-38.5-12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kaggle": { + "changes": [ + "5.2.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5fa", + "label": "Kaggle", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M304.2 501.5L158.4 320.3 298.2 185c2.6-2.7 1.7-10.5-5.3-10.5h-69.2c-3.5 0-7 1.8-10.5 5.3L80.9 313.5V7.5q0-7.5-7.5-7.5H21.5Q14 0 14 7.5v497q0 7.5 7.5 7.5h51.9q7.5 0 7.5-7.5v-109l30.8-29.3 110.5 140.6c3 3.5 6.5 5.3 10.5 5.3h66.9q5.25 0 6-3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "key": { + "aliases": { + "unicodes": { + "composite": [ + "1f511" + ], + "secondary": [ + "10f084" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "key", + "lock", + "password", + "private", + "secret", + "unlock" + ] + }, + "unicode": "f084", + "label": "Key", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M336 352c97.2 0 176-78.8 176-176S433.2 0 336 0S160 78.8 160 176c0 18.7 2.9 36.8 8.3 53.7L7 391c-4.5 4.5-7 10.6-7 17v80c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V448h40c13.3 0 24-10.7 24-24V384h40c6.4 0 12.5-2.5 17-7l33.3-33.3c16.9 5.4 35 8.3 53.7 8.3zM376 96a40 40 0 1 1 0 80 40 40 0 1 1 0-80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "keybase": { + "changes": [ + "5.0.11", + "5.8.0", + "5.10.2", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f5", + "label": "Keybase", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M286.17 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18zm111.92-147.6c-9.5-14.62-39.37-52.45-87.26-73.71q-9.1-4.06-18.38-7.27a78.43 78.43 0 0 0-47.88-104.13c-12.41-4.1-23.33-6-32.41-5.77-.6-2-1.89-11 9.4-35L198.66 32l-5.48 7.56c-8.69 12.06-16.92 23.55-24.34 34.89a51 51 0 0 0-8.29-1.25c-41.53-2.45-39-2.33-41.06-2.33-50.61 0-50.75 52.12-50.75 45.88l-2.36 36.68c-1.61 27 19.75 50.21 47.63 51.85l8.93.54a214 214 0 0 0-46.29 35.54C14 304.66 14 374 14 429.77v33.64l23.32-29.8a148.6 148.6 0 0 0 14.56 37.56c5.78 10.13 14.87 9.45 19.64 7.33 4.21-1.87 10-6.92 3.75-20.11a178.29 178.29 0 0 1-15.76-53.13l46.82-59.83-24.66 74.11c58.23-42.4 157.38-61.76 236.25-38.59 34.2 10.05 67.45.69 84.74-23.84.72-1 1.2-2.16 1.85-3.22a156.09 156.09 0 0 1 2.8 28.43c0 23.3-3.69 52.93-14.88 81.64-2.52 6.46 1.76 14.5 8.6 15.74 7.42 1.57 15.33-3.1 18.37-11.15C429 443 434 414 434 382.32c0-38.58-13-77.46-35.91-110.92zM142.37 128.58l-15.7-.93-1.39 21.79 13.13.78a93 93 0 0 0 .32 19.57l-22.38-1.34a12.28 12.28 0 0 1-11.76-12.79L107 119c1-12.17 13.87-11.27 13.26-11.32l29.11 1.73a144.35 144.35 0 0 0-7 19.17zm148.42 172.18a10.51 10.51 0 0 1-14.35-1.39l-9.68-11.49-34.42 27a8.09 8.09 0 0 1-11.13-1.08l-15.78-18.64a7.38 7.38 0 0 1 1.34-10.34l34.57-27.18-14.14-16.74-17.09 13.45a7.75 7.75 0 0 1-10.59-1s-3.72-4.42-3.8-4.53a7.38 7.38 0 0 1 1.37-10.34L214 225.19s-18.51-22-18.6-22.14a9.56 9.56 0 0 1 1.74-13.42 10.38 10.38 0 0 1 14.3 1.37l81.09 96.32a9.58 9.58 0 0 1-1.74 13.44zM187.44 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "keyboard": { + "aliases": { + "unicodes": { + "composite": [ + "2328" + ], + "secondary": [ + "10f11c" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accessory", + "computer", + "edit", + "input", + "keyboard", + "text", + "type", + "write" + ] + }, + "unicode": "f11c", + "label": "Keyboard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm16 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm80-176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V144zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zM160 336c0-8.8 7.2-16 16-16H400c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V336zM272 128h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM256 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM368 128h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM352 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V240zM464 128h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM448 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V240zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16z" + }, + "regular": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 112c-8.8 0-16 7.2-16 16V384c0 8.8 7.2 16 16 16H512c8.8 0 16-7.2 16-16V128c0-8.8-7.2-16-16-16H64zM0 128C0 92.7 28.7 64 64 64H512c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM176 320H400c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm-72-72c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H120c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H120c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16zm64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H200c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H200c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16zm64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H280c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H280c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16zm64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H360c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H360c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16zm64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H440c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H440c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "keycdn": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ba", + "label": "KeyCDN", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "khanda": { + "aliases": { + "unicodes": { + "composite": [ + "262c" + ], + "secondary": [ + "10f66d" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Adi Shakti", + "chakkar", + "sikh", + "sikhism", + "sword" + ] + }, + "unicode": "f66d", + "label": "Khanda", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M246.8 3.7c5.9-4.9 14.6-4.9 20.5 0l48 40c5.9 4.9 7.5 13.2 3.8 19.9l0 0 0 0 0 0 0 0-.1 .1-.3 .6c-.3 .5-.7 1.3-1.2 2.3c-1 2-2.6 5-4.4 8.6c-.5 .9-.9 1.9-1.4 2.9C345.9 97.4 369 134 369 176s-23.1 78.6-57.3 97.8c.5 1 1 2 1.4 2.9c1.8 3.7 3.3 6.6 4.4 8.6c.5 1 .9 1.8 1.2 2.3l.3 .6 .1 .1 0 0 0 0c3.6 6.7 2 15-3.8 19.9L273 343.5v19.8l35.6-24.5 41.1-28.2c42.8-29.4 68.4-78 68.4-130c0-31.1-9.2-61.6-26.5-87.5l-2.8-4.2c-4-6-3.5-14 1.3-19.5s12.7-7 19.2-3.7L402.1 80c7.2-14.3 7.2-14.3 7.2-14.3l0 0 0 0 .1 0 .3 .2 1 .5c.8 .4 2 1.1 3.5 1.9c2.9 1.7 7 4.1 11.8 7.3c9.6 6.4 22.5 16.1 35.4 29c25.7 25.7 52.7 65.6 52.7 119.3c0 53.1-26.4 100.5-51.2 133.6c-12.6 16.7-25.1 30.3-34.5 39.7c-4.7 4.7-8.7 8.4-11.5 10.9c-1.4 1.3-2.5 2.2-3.3 2.9l-.9 .8-.3 .2-.1 .1 0 0 0 0s0 0-10.2-12.3l10.2 12.3c-5.1 4.3-12.4 4.9-18.2 1.6l-75.6-43-32.7 22.5 45.5 31.3c1.8-.4 3.7-.7 5.7-.7c13.3 0 24 10.7 24 24s-10.7 24-24 24c-12.2 0-22.3-9.1-23.8-21L273 423.4v28.9c9.6 5.5 16 15.9 16 27.7c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-11.8 6.4-22.2 16-27.7V424.1l-40.3 27.7C198.8 463.3 188.9 472 177 472c-13.3 0-24-10.7-24-24s10.7-24 24-24c2.2 0 4.4 .3 6.5 .9l45.8-31.5-32.7-22.5-75.6 43c-5.8 3.3-13 2.7-18.2-1.6L113 400c-10.2 12.3-10.2 12.3-10.3 12.3l0 0 0 0-.1-.1-.3-.2-.9-.8c-.8-.7-1.9-1.7-3.3-2.9c-2.8-2.5-6.7-6.2-11.5-10.9c-9.4-9.4-21.9-23-34.5-39.7C27.4 324.5 1 277.1 1 224c0-53.7 26.9-93.6 52.7-119.3c12.9-12.9 25.8-22.6 35.4-29C94 72.5 98 70 100.9 68.4c1.5-.8 2.6-1.5 3.5-1.9l1-.5 .3-.2 .1 0 0 0 0 0s0 0 7.2 14.3l-7.2-14.3c6.5-3.2 14.3-1.7 19.2 3.7s5.3 13.4 1.3 19.5l-2.8 4.2C106.2 119 97 149.5 97 180.6c0 51.9 25.6 100.6 68.4 130l41.1 28.2L241 362.6V343.5l-42.2-35.2c-5.9-4.9-7.5-13.2-3.8-19.9l0 0 0 0 0 0 .1-.1 .3-.6c.3-.5 .7-1.3 1.2-2.3c1-2 2.6-5 4.4-8.6c.5-.9 .9-1.9 1.4-2.9C168.1 254.6 145 218 145 176s23.1-78.6 57.3-97.8c-.5-1-1-2-1.4-2.9c-1.8-3.7-3.3-6.6-4.4-8.6c-.5-1-.9-1.8-1.2-2.3l-.3-.6-.1-.1 0 0 0 0 0 0c-3.6-6.7-2-15 3.8-19.9l48-40zM221.2 122.9c-17 11.5-28.2 31-28.2 53.1s11.2 41.6 28.2 53.1C228 210.2 233 190.9 233 176s-5-34.2-11.8-53.1zm71.5 106.2c17-11.5 28.2-31 28.2-53.1s-11.2-41.6-28.2-53.1C286 141.8 281 161.1 281 176s5 34.2 11.8 53.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kickstarter": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3bb", + "label": "Kickstarter", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "kickstarter-k": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3bc", + "label": "Kickstarter K", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "kip-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Kip Sign", + "currency" + ] + }, + "unicode": "e1c4", + "label": "Kip Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M340.8 88.3c13.4-11.5 15-31.7 3.5-45.1s-31.7-15-45.1-3.5L128 186.4V64c0-17.7-14.3-32-32-32S64 46.3 64 64V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V325.6L299.2 472.3c13.4 11.5 33.6 9.9 45.1-3.5s9.9-33.6-3.5-45.1L182.5 288H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H182.5L340.8 88.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kit-medical": { + "aliases": { + "names": [ + "first-aid" + ], + "unicodes": { + "secondary": [ + "10f479" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emergency", + "emt", + "health", + "medical", + "rescue" + ] + }, + "unicode": "f479", + "label": "Kit Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H96V32H64zm64 0V480H448V32H128zM512 480c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H480V480h32zM256 176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H320v48c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V288H208c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16h48V176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kitchen-set": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chef", + "cook", + "cup", + "kitchen", + "pan", + "pot", + "skillet" + ] + }, + "unicode": "e51a", + "label": "Kitchen Set", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M240 144A96 96 0 1 0 48 144a96 96 0 1 0 192 0zm44.4 32C269.9 240.1 212.5 288 144 288C64.5 288 0 223.5 0 144S64.5 0 144 0c68.5 0 125.9 47.9 140.4 112h71.8c8.8-9.8 21.6-16 35.8-16H496c26.5 0 48 21.5 48 48s-21.5 48-48 48H392c-14.2 0-27-6.2-35.8-16H284.4zM144 80a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM400 240c13.3 0 24 10.7 24 24v8h96c13.3 0 24 10.7 24 24s-10.7 24-24 24H280c-13.3 0-24-10.7-24-24s10.7-24 24-24h96v-8c0-13.3 10.7-24 24-24zM288 464V352H512V464c0 26.5-21.5 48-48 48H336c-26.5 0-48-21.5-48-48zM48 320h80 16 32c26.5 0 48 21.5 48 48s-21.5 48-48 48H160c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V336c0-8.8 7.2-16 16-16zm128 64c8.8 0 16-7.2 16-16s-7.2-16-16-16H160v32h16zM24 464H200c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kiwi-bird": { + "aliases": { + "unicodes": { + "secondary": [ + "10f535" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "fauna", + "new zealand" + ] + }, + "unicode": "f535", + "label": "Kiwi Bird", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M291.2 388.4c31.2-18.8 64.7-36.4 101.1-36.4H448c4.6 0 9.1-.2 13.6-.7l85.3 121.9c4 5.7 11.3 8.2 17.9 6.1s11.2-8.3 11.2-15.3V224c0-70.7-57.3-128-128-128H392.3c-36.4 0-69.9-17.6-101.1-36.4C262.3 42.1 228.3 32 192 32C86 32 0 118 0 224c0 71.1 38.6 133.1 96 166.3V456c0 13.3 10.7 24 24 24s24-10.7 24-24V410c15.3 3.9 31.4 6 48 6c5.4 0 10.7-.2 16-.7V456c0 13.3 10.7 24 24 24s24-10.7 24-24V405.1c12.4-4.4 24.2-10 35.2-16.7zM448 200a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "korvue": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42f", + "label": "KORVUE", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 446, + 512 + ], + "width": 446, + "height": 512, + "path": "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "l": { + "aliases": { + "unicodes": { + "composite": [ + "6c" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter L", + "Latin Small Letter L", + "letter" + ] + }, + "unicode": "4c", + "label": "L", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32c17.7 0 32 14.3 32 32V416H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "land-mine-on": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bomb", + "danger", + "explosion", + "war" + ] + }, + "unicode": "e51b", + "label": "Land Mine On", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M312 24V168c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24s24 10.7 24 24zM160 320c0-17.7 14.3-32 32-32H384c17.7 0 32 14.3 32 32v32H160V320zM82.7 410.5c8.1-16.3 24.8-26.5 42.9-26.5H450.3c18.2 0 34.8 10.3 42.9 26.5l27.6 55.2C531.5 487 516 512 492.2 512H83.8c-23.8 0-39.3-25-28.6-46.3l27.6-55.2zM4.3 138.3c7.5-10.9 22.5-13.6 33.4-6.1l104 72c10.9 7.5 13.6 22.5 6.1 33.4s-22.5 13.6-33.4 6.1l-104-72c-10.9-7.5-13.6-22.5-6.1-33.4zm534.1-6.1c10.9-7.5 25.8-4.8 33.4 6.1s4.8 25.8-6.1 33.4l-104 72c-10.9 7.5-25.8 4.8-33.4-6.1s-4.8-25.8 6.1-33.4l104-72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "landmark": { + "aliases": { + "unicodes": { + "composite": [ + "1f3db" + ], + "secondary": [ + "10f66f" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "classical", + "historic", + "memorable", + "monument", + "museum", + "politics" + ] + }, + "unicode": "f66f", + "label": "Landmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M240.1 4.2c9.8-5.6 21.9-5.6 31.8 0l171.8 98.1L448 104l0 .9 47.9 27.4c12.6 7.2 18.8 22 15.1 36s-16.4 23.8-30.9 23.8H32c-14.5 0-27.2-9.8-30.9-23.8s2.5-28.8 15.1-36L64 104.9V104l4.4-1.6L240.1 4.2zM64 224h64V416h40V224h64V416h48V224h64V416h40V224h64V420.3c.6 .3 1.2 .7 1.8 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1V224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "landmark-dome": { + "aliases": { + "names": [ + "landmark-alt" + ], + "unicodes": { + "secondary": [ + "10f752" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "historic", + "memorable", + "monument", + "politics" + ] + }, + "unicode": "f752", + "label": "Landmark Dome", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M248 0h16c13.3 0 24 10.7 24 24V34.7C368.4 48.1 431.9 111.6 445.3 192H448c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h2.7C80.1 111.6 143.6 48.1 224 34.7V24c0-13.3 10.7-24 24-24zM64 288h64V416h40V288h64V416h48V288h64V416h40V288h64V420.3c.6 .3 1.2 .7 1.7 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "landmark-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "capitol", + "flag", + "landmark", + "memorial" + ] + }, + "unicode": "e51c", + "label": "Landmark Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M272 0h80c8.8 0 16 7.2 16 16V80c0 8.8-7.2 16-16 16H272v32H464c17.7 0 32 14.3 32 32s-14.3 32-32 32H48c-17.7 0-32-14.3-32-32s14.3-32 32-32H240V16c0-8.8 7.2-16 16-16h16zM64 224h64V416h40V224h64V416h48V224h64V416h40V224h64V420.3c.6 .3 1.2 .7 1.8 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1V224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "language": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1ab" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dialect", + "idiom", + "localize", + "speech", + "translate", + "vernacular" + ] + }, + "unicode": "f1ab", + "label": "Language", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H256h48 16H576c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H320 304 256 64c-35.3 0-64-28.7-64-64V128zm320 0V384H576V128H320zM178.3 175.9c-3.2-7.2-10.4-11.9-18.3-11.9s-15.1 4.7-18.3 11.9l-64 144c-4.5 10.1 .1 21.9 10.2 26.4s21.9-.1 26.4-10.2l8.9-20.1h73.6l8.9 20.1c4.5 10.1 16.3 14.6 26.4 10.2s14.6-16.3 10.2-26.4l-64-144zM160 233.2L179 276H141l19-42.8zM448 164c11 0 20 9 20 20v4h44 16c11 0 20 9 20 20s-9 20-20 20h-2l-1.6 4.5c-8.9 24.4-22.4 46.6-39.6 65.4c.9 .6 1.8 1.1 2.7 1.6l18.9 11.3c9.5 5.7 12.5 18 6.9 27.4s-18 12.5-27.4 6.9l-18.9-11.3c-4.5-2.7-8.8-5.5-13.1-8.5c-10.6 7.5-21.9 14-34 19.4l-3.6 1.6c-10.1 4.5-21.9-.1-26.4-10.2s.1-21.9 10.2-26.4l3.6-1.6c6.4-2.9 12.6-6.1 18.5-9.8l-12.2-12.2c-7.8-7.8-7.8-20.5 0-28.3s20.5-7.8 28.3 0l14.6 14.6 .5 .5c12.4-13.1 22.5-28.3 29.8-45H448 376c-11 0-20-9-20-20s9-20 20-20h52v-4c0-11 9-20 20-20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "laptop": { + "aliases": { + "unicodes": { + "composite": [ + "1f4bb" + ], + "secondary": [ + "10f109" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "dell", + "demo", + "device", + "laptop", + "mac", + "macbook", + "machine", + "pc", + "personal" + ] + }, + "unicode": "f109", + "label": "Laptop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 32C92.7 32 64 60.7 64 96V352h64V96H512V352h64V96c0-35.3-28.7-64-64-64H128zM19.2 384C8.6 384 0 392.6 0 403.2C0 445.6 34.4 480 76.8 480H563.2c42.4 0 76.8-34.4 76.8-76.8c0-10.6-8.6-19.2-19.2-19.2H19.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "laptop-code": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5fc" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "dell", + "demo", + "develop", + "device", + "mac", + "macbook", + "machine", + "pc" + ] + }, + "unicode": "f5fc", + "label": "Laptop Code", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 96c0-35.3 28.7-64 64-64H512c35.3 0 64 28.7 64 64V352H512V96H128V352H64V96zM0 403.2C0 392.6 8.6 384 19.2 384H620.8c10.6 0 19.2 8.6 19.2 19.2c0 42.4-34.4 76.8-76.8 76.8H76.8C34.4 480 0 445.6 0 403.2zM281 209l-31 31 31 31c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-48-48c-9.4-9.4-9.4-24.6 0-33.9l48-48c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM393 175l48 48c9.4 9.4 9.4 24.6 0 33.9l-48 48c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l31-31-31-31c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "laptop-file": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "education", + "laptop", + "learning", + "remote work" + ] + }, + "unicode": "e51d", + "label": "Laptop File", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 0H48C21.5 0 0 21.5 0 48V368c0 26.5 21.5 48 48 48H162.7c6.6-18.6 24.4-32 45.3-32V272c0-44.2 35.8-80 80-80h32V128H224c-17.7 0-32-14.3-32-32V0zm96 224c-26.5 0-48 21.5-48 48v16 96 32H208c-8.8 0-16 7.2-16 16v16c0 35.3 28.7 64 64 64H576c35.3 0 64-28.7 64-64V432c0-8.8-7.2-16-16-16H592V288c0-35.3-28.7-64-64-64H320 304 288zm32 64H528V416H304V288h16zM224 0V96h96L224 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "laptop-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f812" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "device", + "ehr", + "electronic health records", + "history" + ] + }, + "unicode": "f812", + "label": "Laptop Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 96c0-35.3 28.7-64 64-64H512c35.3 0 64 28.7 64 64V352H512V96H128V352H64V96zM0 403.2C0 392.6 8.6 384 19.2 384H620.8c10.6 0 19.2 8.6 19.2 19.2c0 42.4-34.4 76.8-76.8 76.8H76.8C34.4 480 0 445.6 0 403.2zM288 160c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H352v48c0 8.8-7.2 16-16 16H304c-8.8 0-16-7.2-16-16V272H240c-8.8 0-16-7.2-16-16V224c0-8.8 7.2-16 16-16h48V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "laravel": { + "changes": [ + "5.0.0", + "5.0.3", + "5.11.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3bd", + "label": "Laravel", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504.4,115.83a5.72,5.72,0,0,0-.28-.68,8.52,8.52,0,0,0-.53-1.25,6,6,0,0,0-.54-.71,9.36,9.36,0,0,0-.72-.94c-.23-.22-.52-.4-.77-.6a8.84,8.84,0,0,0-.9-.68L404.4,55.55a8,8,0,0,0-8,0L300.12,111h0a8.07,8.07,0,0,0-.88.69,7.68,7.68,0,0,0-.78.6,8.23,8.23,0,0,0-.72.93c-.17.24-.39.45-.54.71a9.7,9.7,0,0,0-.52,1.25c-.08.23-.21.44-.28.68a8.08,8.08,0,0,0-.28,2.08V223.18l-80.22,46.19V63.44a7.8,7.8,0,0,0-.28-2.09c-.06-.24-.2-.45-.28-.68a8.35,8.35,0,0,0-.52-1.24c-.14-.26-.37-.47-.54-.72a9.36,9.36,0,0,0-.72-.94,9.46,9.46,0,0,0-.78-.6,9.8,9.8,0,0,0-.88-.68h0L115.61,1.07a8,8,0,0,0-8,0L11.34,56.49h0a6.52,6.52,0,0,0-.88.69,7.81,7.81,0,0,0-.79.6,8.15,8.15,0,0,0-.71.93c-.18.25-.4.46-.55.72a7.88,7.88,0,0,0-.51,1.24,6.46,6.46,0,0,0-.29.67,8.18,8.18,0,0,0-.28,2.1v329.7a8,8,0,0,0,4,6.95l192.5,110.84a8.83,8.83,0,0,0,1.33.54c.21.08.41.2.63.26a7.92,7.92,0,0,0,4.1,0c.2-.05.37-.16.55-.22a8.6,8.6,0,0,0,1.4-.58L404.4,400.09a8,8,0,0,0,4-6.95V287.88l92.24-53.11a8,8,0,0,0,4-7V117.92A8.63,8.63,0,0,0,504.4,115.83ZM111.6,17.28h0l80.19,46.15-80.2,46.18L31.41,63.44Zm88.25,60V278.6l-46.53,26.79-33.69,19.4V123.5l46.53-26.79Zm0,412.78L23.37,388.5V77.32L57.06,96.7l46.52,26.8V338.68a6.94,6.94,0,0,0,.12.9,8,8,0,0,0,.16,1.18h0a5.92,5.92,0,0,0,.38.9,6.38,6.38,0,0,0,.42,1v0a8.54,8.54,0,0,0,.6.78,7.62,7.62,0,0,0,.66.84l0,0c.23.22.52.38.77.58a8.93,8.93,0,0,0,.86.66l0,0,0,0,92.19,52.18Zm8-106.17-80.06-45.32,84.09-48.41,92.26-53.11,80.13,46.13-58.8,33.56Zm184.52,4.57L215.88,490.11V397.8L346.6,323.2l45.77-26.15Zm0-119.13L358.68,250l-46.53-26.79V131.79l33.69,19.4L392.37,178Zm8-105.28-80.2-46.17,80.2-46.16,80.18,46.15Zm8,105.28V178L455,151.19l33.68-19.4v91.39h0Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "lari-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Lari Sign", + "currency" + ] + }, + "unicode": "e1c8", + "label": "Lari Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M144 32c17.7 0 32 14.3 32 32V96.7c5.3-.4 10.6-.7 16-.7s10.7 .2 16 .7V64c0-17.7 14.3-32 32-32s32 14.3 32 32v49.4c54.9 25.2 95.8 75.5 108.2 136.2c3.5 17.3-7.7 34.2-25 37.7s-34.2-7.7-37.7-25c-6.1-29.9-22.5-55.9-45.4-74.3V256c0 17.7-14.3 32-32 32s-32-14.3-32-32V161c-5.2-.7-10.6-1-16-1s-10.8 .3-16 1v95c0 17.7-14.3 32-32 32s-32-14.3-32-32V188.1C82.7 211.5 64 247.6 64 288c0 70.7 57.3 128 128 128H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H192 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48.9C18.5 382 0 337.2 0 288c0-77.5 45.9-144.3 112-174.6V64c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lastfm": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f202", + "label": "last.fm", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "layer-group": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5fd" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "develop", + "layers", + "map", + "stack" + ] + }, + "unicode": "f5fd", + "label": "Layer Group", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321837, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M264.5 5.2c14.9-6.9 32.1-6.9 47 0l218.6 101c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 149.8C37.4 145.8 32 137.3 32 128s5.4-17.9 13.9-21.8L264.5 5.2zM476.9 209.6l53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 277.8C37.4 273.8 32 265.3 32 256s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0l152-70.2zm-152 198.2l152-70.2 53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 405.8C37.4 401.8 32 393.3 32 384s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "leaf": { + "aliases": { + "unicodes": { + "secondary": [ + "10f06c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eco", + "flora", + "nature", + "plant", + "vegan" + ] + }, + "unicode": "f06c", + "label": "Leaf", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M272 96c-78.6 0-145.1 51.5-167.7 122.5c33.6-17 71.5-26.5 111.7-26.5h88c8.8 0 16 7.2 16 16s-7.2 16-16 16H288 216s0 0 0 0c-16.6 0-32.7 1.9-48.3 5.4c-25.9 5.9-49.9 16.4-71.4 30.7c0 0 0 0 0 0C38.3 298.8 0 364.9 0 440v16c0 13.3 10.7 24 24 24s24-10.7 24-24V440c0-48.7 20.7-92.5 53.8-123.2C121.6 392.3 190.3 448 272 448l1 0c132.1-.7 239-130.9 239-291.4c0-42.6-7.5-83.1-21.1-119.6c-2.6-6.9-12.7-6.6-16.2-.1C455.9 72.1 418.7 96 376 96L272 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "leanpub": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f212", + "label": "Leanpub", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "left-long": { + "aliases": { + "names": [ + "long-arrow-alt-left" + ], + "unicodes": { + "secondary": [ + "10f30a" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "long-arrow-left", + "previous" + ] + }, + "unicode": "f30a", + "label": "Left Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M177.5 414c-8.8 3.8-19 2-26-4.6l-144-136C2.7 268.9 0 262.6 0 256s2.7-12.9 7.5-17.4l144-136c7-6.6 17.2-8.4 26-4.6s14.5 12.5 14.5 22l0 72 288 0c17.7 0 32 14.3 32 32l0 64c0 17.7-14.3 32-32 32l-288 0 0 72c0 9.6-5.7 18.2-14.5 22z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "left-right": { + "aliases": { + "names": [ + "arrows-alt-h" + ], + "unicodes": { + "composite": [ + "2194" + ], + "secondary": [ + "10f337" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows-h", + "expand", + "horizontal", + "landscape", + "left-right arrow", + "resize", + "wide" + ] + }, + "unicode": "f337", + "label": "Left Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504.3 273.6c4.9-4.5 7.7-10.9 7.7-17.6s-2.8-13-7.7-17.6l-112-104c-7-6.5-17.2-8.2-25.9-4.4s-14.4 12.5-14.4 22l0 56-192 0 0-56c0-9.5-5.7-18.2-14.4-22s-18.9-2.1-25.9 4.4l-112 104C2.8 243 0 249.3 0 256s2.8 13 7.7 17.6l112 104c7 6.5 17.2 8.2 25.9 4.4s14.4-12.5 14.4-22l0-56 192 0 0 56c0 9.5 5.7 18.2 14.4 22s18.9 2.1 25.9-4.4l112-104z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lemon": { + "aliases": { + "unicodes": { + "composite": [ + "1f34b" + ], + "secondary": [ + "10f094" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "citrus", + "fruit", + "lemon", + "lemonade", + "lime", + "tart" + ] + }, + "unicode": "f094", + "label": "Lemon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 96c0-35.3-28.7-64-64-64c-6.6 0-13 1-19 2.9c-22.5 7-48.1 14.9-71 9c-75.2-19.1-156.4 11-213.7 68.3S-7.2 250.8 11.9 326c5.8 22.9-2 48.4-9 71C1 403 0 409.4 0 416c0 35.3 28.7 64 64 64c6.6 0 13-1 19.1-2.9c22.5-7 48.1-14.9 71-9c75.2 19.1 156.4-11 213.7-68.3s87.5-138.5 68.3-213.7c-5.8-22.9 2-48.4 9-71c1.9-6 2.9-12.4 2.9-19.1zM212.5 127.4c-54.6 16-101.1 62.5-117.1 117.1C92.9 253 84 257.8 75.5 255.4S62.2 244 64.6 235.5c19.1-65.1 73.7-119.8 138.9-138.9c8.5-2.5 17.4 2.4 19.9 10.9s-2.4 17.4-10.9 19.9z" + }, + "regular": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M368 80c-3.2 0-6.2 .4-8.9 1.3C340 86.8 313 91.9 284.8 84.6C227.4 69.7 160.2 92 110.1 142.1S37.7 259.4 52.6 316.8c7.3 28.2 2.2 55.2-3.3 74.3c-.8 2.8-1.3 5.8-1.3 8.9c0 17.7 14.3 32 32 32c3.2 0 6.2-.4 8.9-1.3c19.1-5.5 46.1-10.7 74.3-3.3c57.4 14.9 124.6-7.4 174.7-57.5s72.4-117.3 57.5-174.7c-7.3-28.2-2.2-55.2 3.3-74.3c.8-2.8 1.3-5.8 1.3-8.9c0-17.7-14.3-32-32-32zm0-48c44.2 0 80 35.8 80 80c0 7.7-1.1 15.2-3.1 22.3c-4.6 15.8-7.1 32.9-3 48.9c20.1 77.6-10.9 161.5-70 220.7s-143.1 90.2-220.7 70c-16-4.1-33-1.6-48.9 3c-7.1 2-14.6 3.1-22.3 3.1c-44.2 0-80-35.8-80-80c0-7.7 1.1-15.2 3.1-22.3c4.6-15.8 7.1-32.9 3-48.9C-14 251.3 17 167.3 76.2 108.2S219.3 18 296.8 38.1c16 4.1 33 1.6 48.9-3c7.1-2 14.6-3.1 22.3-3.1zM246.7 167c-52 15.2-96.5 59.7-111.7 111.7c-3.7 12.7-17.1 20-29.8 16.3s-20-17.1-16.3-29.8c19.8-67.7 76.6-124.5 144.3-144.3c12.7-3.7 26.1 3.6 29.8 16.3s-3.6 26.1-16.3 29.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "less": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41d", + "label": "Less", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "less-than": { + "aliases": { + "unicodes": { + "composite": [ + "f536" + ], + "primary": [ + "f536" + ], + "secondary": [ + "103c", + "10f536" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Less-Than Sign", + "arithmetic", + "compare", + "math" + ] + }, + "unicode": "3c", + "label": "Less Than", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M380.6 81.7c7.9 15.8 1.5 35-14.3 42.9L103.6 256 366.3 387.4c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-320-160C6.8 279.2 0 268.1 0 256s6.8-23.2 17.7-28.6l320-160c15.8-7.9 35-1.5 42.9 14.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "less-than-equal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f537" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "compare", + "math" + ] + }, + "unicode": "f537", + "label": "Less Than Equal", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M395.9 93.7c16.4-6.6 24.4-25.2 17.8-41.6s-25.2-24.4-41.6-17.8l-320 128C40 167.1 32 178.9 32 192s8 24.9 20.1 29.7l320 128c16.4 6.6 35-1.4 41.6-17.8s-1.4-35-17.8-41.6L150.2 192 395.9 93.7zM32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "life-ring": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1cd" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "coast guard", + "help", + "overboard", + "save", + "support" + ] + }, + "unicode": "f1cd", + "label": "Life Ring", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M367.2 412.5C335.9 434.9 297.5 448 256 448s-79.9-13.1-111.2-35.5l58-58c15.8 8.6 34 13.5 53.3 13.5s37.4-4.9 53.3-13.5l58 58zm90.7 .8c33.8-43.4 54-98 54-157.3s-20.2-113.9-54-157.3c9-12.5 7.9-30.1-3.4-41.3S425.8 45 413.3 54C369.9 20.2 315.3 0 256 0S142.1 20.2 98.7 54c-12.5-9-30.1-7.9-41.3 3.4S45 86.2 54 98.7C20.2 142.1 0 196.7 0 256s20.2 113.9 54 157.3c-9 12.5-7.9 30.1 3.4 41.3S86.2 467 98.7 458c43.4 33.8 98 54 157.3 54s113.9-20.2 157.3-54c12.5 9 30.1 7.9 41.3-3.4s12.4-28.8 3.4-41.3zm-45.5-46.1l-58-58c8.6-15.8 13.5-34 13.5-53.3s-4.9-37.4-13.5-53.3l58-58C434.9 176.1 448 214.5 448 256s-13.1 79.9-35.5 111.2zM367.2 99.5l-58 58c-15.8-8.6-34-13.5-53.3-13.5s-37.4 4.9-53.3 13.5l-58-58C176.1 77.1 214.5 64 256 64s79.9 13.1 111.2 35.5zM157.5 309.3l-58 58C77.1 335.9 64 297.5 64 256s13.1-79.9 35.5-111.2l58 58c-8.6 15.8-13.5 34-13.5 53.3s4.9 37.4 13.5 53.3zM208 256a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z" + }, + "regular": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M385.1 419.1C349.7 447.2 304.8 464 256 464s-93.7-16.8-129.1-44.9l80.4-80.4c14.3 8.4 31 13.3 48.8 13.3s34.5-4.8 48.8-13.3l80.4 80.4zm68.1 .2C489.9 374.9 512 318.1 512 256s-22.1-118.9-58.8-163.3L465 81c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L419.3 58.8C374.9 22.1 318.1 0 256 0S137.1 22.1 92.7 58.8L81 47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L58.8 92.7C22.1 137.1 0 193.9 0 256s22.1 118.9 58.8 163.3L47 431c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l11.8-11.8C137.1 489.9 193.9 512 256 512s118.9-22.1 163.3-58.8L431 465c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-11.8-11.8zm-34.1-34.1l-80.4-80.4c8.4-14.3 13.3-31 13.3-48.8s-4.8-34.5-13.3-48.8l80.4-80.4C447.2 162.3 464 207.2 464 256s-16.8 93.7-44.9 129.1zM385.1 92.9l-80.4 80.4c-14.3-8.4-31-13.3-48.8-13.3s-34.5 4.8-48.8 13.3L126.9 92.9C162.3 64.8 207.2 48 256 48s93.7 16.8 129.1 44.9zM173.3 304.8L92.9 385.1C64.8 349.7 48 304.8 48 256s16.8-93.7 44.9-129.1l80.4 80.4c-8.4 14.3-13.3 31-13.3 48.8s4.8 34.5 13.3 48.8zM208 256a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "lightbulb": { + "aliases": { + "unicodes": { + "composite": [ + "1f4a1" + ], + "secondary": [ + "10f0eb" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bulb", + "comic", + "electric", + "energy", + "idea", + "inspiration", + "light", + "light bulb" + ] + }, + "unicode": "f0eb", + "label": "Lightbulb", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M256 384c9.6-31.9 29.5-59.1 49.2-86.2l0 0c5.2-7.1 10.4-14.2 15.4-21.4c19.8-28.5 31.4-63 31.4-100.3C352 78.8 273.2 0 176 0S0 78.8 0 176c0 37.3 11.6 71.9 31.4 100.3c5 7.2 10.2 14.3 15.4 21.4l0 0C66.5 324.9 86.4 352.1 96 384H256zM176 512c44.2 0 80-35.8 80-80V416H96v16c0 44.2 35.8 80 80 80zM96 176c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-61.9 50.1-112 112-112c8.8 0 16 7.2 16 16s-7.2 16-16 16c-44.2 0-80 35.8-80 80z" + }, + "regular": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M281.2 248.9C295.6 228.3 304 203.2 304 176c0-70.7-57.3-128-128-128S48 105.3 48 176c0 27.2 8.4 52.3 22.8 72.9c3.7 5.3 8.1 11.3 12.8 17.7l0 0c12.9 17.7 28.3 38.9 39.8 59.8c10.4 19 15.7 38.8 18.3 57.5H93c-2.2-12-5.9-23.7-11.8-34.5c-9.9-18-22.2-34.9-34.5-51.8l0 0 0 0c-5.2-7.1-10.4-14.2-15.4-21.4C11.6 247.9 0 213.3 0 176C0 78.8 78.8 0 176 0s176 78.8 176 176c0 37.3-11.6 71.9-31.4 100.3c-5 7.2-10.2 14.3-15.4 21.4l0 0 0 0c-12.3 16.8-24.6 33.7-34.5 51.8c-5.9 10.8-9.6 22.5-11.8 34.5H210.4c2.6-18.7 7.9-38.6 18.3-57.5c11.5-20.9 26.9-42.1 39.8-59.8l0 0 0 0 0 0c4.7-6.4 9-12.4 12.7-17.7zM176 128c-26.5 0-48 21.5-48 48c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16s-7.2 16-16 16zm0 384c-44.2 0-80-35.8-80-80V416H256v16c0 44.2-35.8 80-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "line": { + "changes": [ + "5.0.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3c0", + "label": "Line", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1672840969, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M311 196.8v81.3c0 2.1-1.6 3.7-3.7 3.7h-13c-1.3 0-2.4-.7-3-1.5l-37.3-50.3v48.2c0 2.1-1.6 3.7-3.7 3.7h-13c-2.1 0-3.7-1.6-3.7-3.7V196.9c0-2.1 1.6-3.7 3.7-3.7h12.9c1.1 0 2.4 .6 3 1.6l37.3 50.3V196.9c0-2.1 1.6-3.7 3.7-3.7h13c2.1-.1 3.8 1.6 3.8 3.5zm-93.7-3.7h-13c-2.1 0-3.7 1.6-3.7 3.7v81.3c0 2.1 1.6 3.7 3.7 3.7h13c2.1 0 3.7-1.6 3.7-3.7V196.8c0-1.9-1.6-3.7-3.7-3.7zm-31.4 68.1H150.3V196.8c0-2.1-1.6-3.7-3.7-3.7h-13c-2.1 0-3.7 1.6-3.7 3.7v81.3c0 1 .3 1.8 1 2.5c.7 .6 1.5 1 2.5 1h52.2c2.1 0 3.7-1.6 3.7-3.7v-13c0-1.9-1.6-3.7-3.5-3.7zm193.7-68.1H327.3c-1.9 0-3.7 1.6-3.7 3.7v81.3c0 1.9 1.6 3.7 3.7 3.7h52.2c2.1 0 3.7-1.6 3.7-3.7V265c0-2.1-1.6-3.7-3.7-3.7H344V247.7h35.5c2.1 0 3.7-1.6 3.7-3.7V230.9c0-2.1-1.6-3.7-3.7-3.7H344V213.5h35.5c2.1 0 3.7-1.6 3.7-3.7v-13c-.1-1.9-1.7-3.7-3.7-3.7zM512 93.4V419.4c-.1 51.2-42.1 92.7-93.4 92.6H92.6C41.4 511.9-.1 469.8 0 418.6V92.6C.1 41.4 42.2-.1 93.4 0H419.4c51.2 .1 92.7 42.1 92.6 93.4zM441.6 233.5c0-83.4-83.7-151.3-186.4-151.3s-186.4 67.9-186.4 151.3c0 74.7 66.3 137.4 155.9 149.3c21.8 4.7 19.3 12.7 14.4 42.1c-.8 4.7-3.8 18.4 16.1 10.1s107.3-63.2 146.5-108.2c27-29.7 39.9-59.8 39.9-93.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "lines-leaning": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "canted", + "domino", + "falling", + "resilience", + "resilient", + "tipped" + ] + }, + "unicode": "e51e", + "label": "Lines Leaning", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M190.4 74.1c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2l-128 384c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l128-384zm70.9-41.7c-17.4-2.9-33.9 8.9-36.8 26.3l-64 384c-2.9 17.4 8.9 33.9 26.3 36.8s33.9-8.9 36.8-26.3l64-384c2.9-17.4-8.9-33.9-26.3-36.8zM352 32c-17.7 0-32 14.3-32 32V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "link": { + "aliases": { + "names": [ + "chain" + ], + "unicodes": { + "composite": [ + "1f517" + ], + "secondary": [ + "10f0c1" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attach", + "attachment", + "chain", + "connect", + "lin", + "link" + ] + }, + "unicode": "f0c1", + "label": "Link", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M562.8 267.7c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114L405.3 334.8c-31.5 31.5-82.5 31.5-114 0c-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C189.5 251.2 196 330 246 380c56.5 56.5 148 56.5 204.5 0L562.8 267.7zM43.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C57 372 57 321 88.5 289.5L200.7 177.2c31.5-31.5 82.5-31.5 114 0c27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C416.5 260.8 410 182 360 132c-56.5-56.5-148-56.5-204.5 0L43.2 244.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "link-slash": { + "aliases": { + "names": [ + "chain-broken", + "chain-slash", + "unlink" + ], + "unicodes": { + "secondary": [ + "10f127" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attachment", + "chain", + "chain-broken", + "remove" + ] + }, + "unicode": "f127", + "label": "Link Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L489.3 358.2l90.5-90.5c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114l-96 96-31.9-25C430.9 239.6 420.1 175.1 377 132c-52.2-52.3-134.5-56.2-191.3-11.7L38.8 5.1zM239 162c30.1-14.9 67.7-9.9 92.8 15.3c20 20 27.5 48.3 21.7 74.5L239 162zM406.6 416.4L220.9 270c-2.1 39.8 12.2 80.1 42.2 110c38.9 38.9 94.4 51 143.6 36.3zm-290-228.5L60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5l61.8-61.8-50.6-39.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "linkedin": { + "changes": [ + "1.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linkedin-square" + ] + }, + "unicode": "f08c", + "label": "LinkedIn", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "linkedin-in": { + "changes": [ + "2.0.0", + "5.0.0", + "5.4.1", + "5.8.0", + "5.8.1" + ], + "ligatures": [], + "search": { + "terms": [ + "linkedin" + ] + }, + "unicode": "f0e1", + "label": "LinkedIn In", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "linode": { + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2b8", + "label": "Linode", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M366.036,186.867l-59.5,36.871-.838,36.871-29.329-19.273-39.384,24.3c2.238,55.211,2.483,59.271,2.51,59.5l-97.2,65.359L127.214,285.748l108.1-62.01L195.09,197.761l-75.417,38.547L98.723,93.015,227.771,43.574,136.432,0,10.737,39.385,38.39,174.3l41.9,32.681L48.445,222.062,69.394,323.457,98.723,351.11,77.774,363.679l16.76,78.769L160.733,512c-10.8-74.842-11.658-78.641-11.725-78.773l77.925-55.3c16.759-12.57,15.083-10.894,15.083-10.894l.838,24.3,33.519,28.491-.838-77.093,46.927-33.519,26.815-18.435-2.514,36.033,25.139,17.6,6.7-74.579,58.657-43.575Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "linux": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "tux" + ] + }, + "unicode": "f17c", + "label": "Linux", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M220.8 123.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm-21.9 1.7c1.2 0 2-1.2 3-1.7 1.1-.6 3.1-.4 3.5-1.6.2-.4-.2-.9-.6-1.1-1.6-.9-3.8-.6-5.5.1-1.3.6-3.4 1.5-3.2 2.9.1 1 1.8 1.5 2.8 1.4zM420 403.8c-3.6-4-5.3-11.6-7.2-19.7-1.8-8.1-3.9-16.8-10.5-22.4-1.3-1.1-2.6-2.1-4-2.9-1.3-.8-2.7-1.5-4.1-2 9.2-27.3 5.6-54.5-3.7-79.1-11.4-30.1-31.3-56.4-46.5-74.4-17.1-21.5-33.7-41.9-33.4-72C311.1 85.4 315.7.1 234.8 0 132.4-.2 158 103.4 156.9 135.2c-1.7 23.4-6.4 41.8-22.5 64.7-18.9 22.5-45.5 58.8-58.1 96.7-6 17.9-8.8 36.1-6.2 53.3-6.5 5.8-11.4 14.7-16.6 20.2-4.2 4.3-10.3 5.9-17 8.3s-14 6-18.5 14.5c-2.1 3.9-2.8 8.1-2.8 12.4 0 3.9.6 7.9 1.2 11.8 1.2 8.1 2.5 15.7.8 20.8-5.2 14.4-5.9 24.4-2.2 31.7 3.8 7.3 11.4 10.5 20.1 12.3 17.3 3.6 40.8 2.7 59.3 12.5 19.8 10.4 39.9 14.1 55.9 10.4 11.6-2.6 21.1-9.6 25.9-20.2 12.5-.1 26.3-5.4 48.3-6.6 14.9-1.2 33.6 5.3 55.1 4.1.6 2.3 1.4 4.6 2.5 6.7v.1c8.3 16.7 23.8 24.3 40.3 23 16.6-1.3 34.1-11 48.3-27.9 13.6-16.4 36-23.2 50.9-32.2 7.4-4.5 13.4-10.1 13.9-18.3.4-8.2-4.4-17.3-15.5-29.7zM223.7 87.3c9.8-22.2 34.2-21.8 44-.4 6.5 14.2 3.6 30.9-4.3 40.4-1.6-.8-5.9-2.6-12.6-4.9 1.1-1.2 3.1-2.7 3.9-4.6 4.8-11.8-.2-27-9.1-27.3-7.3-.5-13.9 10.8-11.8 23-4.1-2-9.4-3.5-13-4.4-1-6.9-.3-14.6 2.9-21.8zM183 75.8c10.1 0 20.8 14.2 19.1 33.5-3.5 1-7.1 2.5-10.2 4.6 1.2-8.9-3.3-20.1-9.6-19.6-8.4.7-9.8 21.2-1.8 28.1 1 .8 1.9-.2-5.9 5.5-15.6-14.6-10.5-52.1 8.4-52.1zm-13.6 60.7c6.2-4.6 13.6-10 14.1-10.5 4.7-4.4 13.5-14.2 27.9-14.2 7.1 0 15.6 2.3 25.9 8.9 6.3 4.1 11.3 4.4 22.6 9.3 8.4 3.5 13.7 9.7 10.5 18.2-2.6 7.1-11 14.4-22.7 18.1-11.1 3.6-19.8 16-38.2 14.9-3.9-.2-7-1-9.6-2.1-8-3.5-12.2-10.4-20-15-8.6-4.8-13.2-10.4-14.7-15.3-1.4-4.9 0-9 4.2-12.3zm3.3 334c-2.7 35.1-43.9 34.4-75.3 18-29.9-15.8-68.6-6.5-76.5-21.9-2.4-4.7-2.4-12.7 2.6-26.4v-.2c2.4-7.6.6-16-.6-23.9-1.2-7.8-1.8-15 .9-20 3.5-6.7 8.5-9.1 14.8-11.3 10.3-3.7 11.8-3.4 19.6-9.9 5.5-5.7 9.5-12.9 14.3-18 5.1-5.5 10-8.1 17.7-6.9 8.1 1.2 15.1 6.8 21.9 16l19.6 35.6c9.5 19.9 43.1 48.4 41 68.9zm-1.4-25.9c-4.1-6.6-9.6-13.6-14.4-19.6 7.1 0 14.2-2.2 16.7-8.9 2.3-6.2 0-14.9-7.4-24.9-13.5-18.2-38.3-32.5-38.3-32.5-13.5-8.4-21.1-18.7-24.6-29.9s-3-23.3-.3-35.2c5.2-22.9 18.6-45.2 27.2-59.2 2.3-1.7.8 3.2-8.7 20.8-8.5 16.1-24.4 53.3-2.6 82.4.6-20.7 5.5-41.8 13.8-61.5 12-27.4 37.3-74.9 39.3-112.7 1.1.8 4.6 3.2 6.2 4.1 4.6 2.7 8.1 6.7 12.6 10.3 12.4 10 28.5 9.2 42.4 1.2 6.2-3.5 11.2-7.5 15.9-9 9.9-3.1 17.8-8.6 22.3-15 7.7 30.4 25.7 74.3 37.2 95.7 6.1 11.4 18.3 35.5 23.6 64.6 3.3-.1 7 .4 10.9 1.4 13.8-35.7-11.7-74.2-23.3-84.9-4.7-4.6-4.9-6.6-2.6-6.5 12.6 11.2 29.2 33.7 35.2 59 2.8 11.6 3.3 23.7.4 35.7 16.4 6.8 35.9 17.9 30.7 34.8-2.2-.1-3.2 0-4.2 0 3.2-10.1-3.9-17.6-22.8-26.1-19.6-8.6-36-8.6-38.3 12.5-12.1 4.2-18.3 14.7-21.4 27.3-2.8 11.2-3.6 24.7-4.4 39.9-.5 7.7-3.6 18-6.8 29-32.1 22.9-76.7 32.9-114.3 7.2zm257.4-11.5c-.9 16.8-41.2 19.9-63.2 46.5-13.2 15.7-29.4 24.4-43.6 25.5s-26.5-4.8-33.7-19.3c-4.7-11.1-2.4-23.1 1.1-36.3 3.7-14.2 9.2-28.8 9.9-40.6.8-15.2 1.7-28.5 4.2-38.7 2.6-10.3 6.6-17.2 13.7-21.1.3-.2.7-.3 1-.5.8 13.2 7.3 26.6 18.8 29.5 12.6 3.3 30.7-7.5 38.4-16.3 9-.3 15.7-.9 22.6 5.1 9.9 8.5 7.1 30.3 17.1 41.6 10.6 11.6 14 19.5 13.7 24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4s5.9-6.3 3.1-6.6-2.6 2.6-6 5.1c-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2s-18.7-4.8-24.9-9.7c-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "lira-sign": { + "aliases": { + "unicodes": { + "composite": [ + "20a4" + ], + "secondary": [ + "10f195" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Lira Sign", + "currency" + ] + }, + "unicode": "f195", + "label": "Lira Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M112 160.4c0-35.5 28.8-64.4 64.4-64.4c6.9 0 13.8 1.1 20.4 3.3l81.2 27.1c16.8 5.6 34.9-3.5 40.5-20.2s-3.5-34.9-20.2-40.5L217 38.6c-13.1-4.4-26.8-6.6-40.6-6.6C105.5 32 48 89.5 48 160.4V192H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H46c-2.2 10.5-6.1 20.6-11.7 29.9L4.6 431.5c-5.9 9.9-6.1 22.2-.4 32.2S20.5 480 32 480H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H88.5l.7-1.1c11.6-19.3 18.9-40.7 21.6-62.9H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V256H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V160.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "list": { + "aliases": { + "names": [ + "list-squares" + ], + "unicodes": { + "secondary": [ + "10f03a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "unicode": "f03a", + "label": "List", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M40 48C26.7 48 16 58.7 16 72v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V72c0-13.3-10.7-24-24-24H40zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM16 232v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V232c0-13.3-10.7-24-24-24H40c-13.3 0-24 10.7-24 24zM40 368c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V392c0-13.3-10.7-24-24-24H40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "list-check": { + "aliases": { + "names": [ + "tasks" + ], + "unicodes": { + "secondary": [ + "10f0ae" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "downloading", + "downloads", + "loading", + "progress", + "project management", + "settings", + "to do" + ] + }, + "unicode": "f0ae", + "label": "List Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M152.1 38.2c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 113C-2.3 103.6-2.3 88.4 7 79s24.6-9.4 33.9 0l22.1 22.1 55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zm0 160c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 273c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22.1 22.1 55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zM224 96c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zm0 160c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zM160 416c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H192c-17.7 0-32-14.3-32-32zM48 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "list-ol": { + "aliases": { + "names": [ + "list-1-2", + "list-numeric" + ], + "unicodes": { + "secondary": [ + "10f0cb" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "numbers", + "ol", + "todo", + "ul" + ] + }, + "unicode": "f0cb", + "label": "List Ol", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M24 56c0-13.3 10.7-24 24-24H80c13.3 0 24 10.7 24 24V176h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H40c-13.3 0-24-10.7-24-24s10.7-24 24-24H56V80H48C34.7 80 24 69.3 24 56zM86.7 341.2c-6.5-7.4-18.3-6.9-24 1.2L51.5 357.9c-7.7 10.8-22.7 13.3-33.5 5.6s-13.3-22.7-5.6-33.5l11.1-15.6c23.7-33.2 72.3-35.6 99.2-4.9c21.3 24.4 20.8 60.9-1.1 84.7L86.8 432H120c13.3 0 24 10.7 24 24s-10.7 24-24 24H32c-9.5 0-18.2-5.6-22-14.4s-2.1-18.9 4.3-25.9l72-78c5.3-5.8 5.4-14.6 .3-20.5zM224 64H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "list-ul": { + "aliases": { + "names": [ + "list-dots" + ], + "unicodes": { + "secondary": [ + "10f0ca" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "unicode": "f0ca", + "label": "List Ul", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 144a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM64 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm48-208a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "litecoin-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency" + ] + }, + "unicode": "e1d3", + "label": "Litecoin Sign", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M128 64c0-17.7-14.3-32-32-32S64 46.3 64 64V213.6L23.2 225.2c-17 4.9-26.8 22.6-22 39.6s22.6 26.8 39.6 22L64 280.1V448c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V261.9l136.8-39.1c17-4.9 26.8-22.6 22-39.6s-22.6-26.8-39.6-22L128 195.3V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "location-arrow": { + "aliases": { + "unicodes": { + "secondary": [ + "10f124" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "compass", + "coordinate", + "direction", + "gps", + "map", + "navigation", + "place" + ] + }, + "unicode": "f124", + "label": "Location Arrow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M413.6 92.1c4.9-11.9 2.1-25.6-7-34.7s-22.8-11.9-34.7-7l-352 144C5.7 200.2-2.3 215.2 .6 230.2s16.1 25.8 31.4 25.8H208V432c0 15.3 10.8 28.4 25.8 31.4s30-5.1 35.8-19.3l144-352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "location-crosshairs": { + "aliases": { + "names": [ + "location" + ], + "unicodes": { + "secondary": [ + "10f601" + ] + } + }, + "changes": [ + "5.2.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinate", + "direction", + "gps", + "location", + "map", + "navigation", + "place", + "where" + ] + }, + "unicode": "f601", + "label": "Location Crosshairs", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c17.7 0 32 14.3 32 32V66.7C368.4 80.1 431.9 143.6 445.3 224H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H445.3C431.9 368.4 368.4 431.9 288 445.3V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.3C143.6 431.9 80.1 368.4 66.7 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H66.7C80.1 143.6 143.6 80.1 224 66.7V32c0-17.7 14.3-32 32-32zM128 256a128 128 0 1 0 256 0 128 128 0 1 0 -256 0zm128-80a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "location-dot": { + "aliases": { + "names": [ + "map-marker-alt" + ], + "unicodes": { + "secondary": [ + "10f3c5" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "unicode": "f3c5", + "label": "Location Dot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "location-pin": { + "aliases": { + "names": [ + "map-marker" + ], + "unicodes": { + "secondary": [ + "10f041" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "unicode": "f041", + "label": "Location Pin", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 192c0 87.4-117 243-168.3 307.2c-12.3 15.3-35.1 15.3-47.4 0C117 435 0 279.4 0 192C0 86 86 0 192 0S384 86 384 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "location-pin-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "lockdown", + "map", + "quarantine" + ] + }, + "unicode": "e51f", + "label": "Location Pin Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M215.7 499.2c11-13.8 25.1-31.7 40.3-52.3V352c0-23.7 12.9-44.4 32-55.4V272c0-55.6 40.5-101.7 93.6-110.5C367 70 287.7 0 192 0C86 0 0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM400 240c17.7 0 32 14.3 32 32v48H368V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H480c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lock": { + "aliases": { + "unicodes": { + "composite": [ + "1f512" + ], + "secondary": [ + "10f023" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "closed", + "lock", + "locked", + "open", + "password", + "private", + "protect", + "security" + ] + }, + "unicode": "f023", + "label": "Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M144 144v48H304V144c0-44.2-35.8-80-80-80s-80 35.8-80 80zM80 192V144C80 64.5 144.5 0 224 0s144 64.5 144 144v48h16c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lock-open": { + "aliases": { + "unicodes": { + "secondary": [ + "10f3c1" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "open", + "password", + "private", + "protect", + "security", + "unlock" + ] + }, + "unicode": "f3c1", + "label": "Lock Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M352 144c0-44.2 35.8-80 80-80s80 35.8 80 80v48c0 17.7 14.3 32 32 32s32-14.3 32-32V144C576 64.5 511.5 0 432 0S288 64.5 288 144v48H64c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V256c0-35.3-28.7-64-64-64H352V144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "locust": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "horde", + "infestation", + "locust", + "plague", + "swarm" + ] + }, + "unicode": "e520", + "label": "Locust", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M312 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h16c98.7 0 180.6 71.4 197 165.4c-9-3.5-18.8-5.4-29-5.4H431.8l-41.8-97.5c-3.4-7.9-10.8-13.4-19.3-14.4s-17 2.7-22.1 9.6l-40.9 55.5-21.7-50.7c-3.3-7.8-10.5-13.2-18.9-14.3s-16.7 2.3-22 8.9l-240 304c-8.2 10.4-6.4 25.5 4 33.7s25.5 6.4 33.7-4l79.4-100.5 43 16.4-40.5 55c-7.9 10.7-5.6 25.7 5.1 33.6s25.7 5.6 33.6-5.1L215.1 400h74.5l-29.3 42.3c-7.5 10.9-4.8 25.8 6.1 33.4s25.8 4.8 33.4-6.1L348 400h80.4l38.8 67.9c6.6 11.5 21.2 15.5 32.7 8.9s15.5-21.2 8.9-32.7L483.6 400H496c44.1 0 79.8-35.7 80-79.7c0-.1 0-.2 0-.3V280C576 143 465 32 328 32H312zm50.5 168l17.1 40H333l29.5-40zm-87.7 38.1l-1.4 1.9H225.1l32.7-41.5 16.9 39.5zM88.8 240C57.4 240 32 265.4 32 296.8c0 15.5 6.3 30 16.9 40.4L126.7 240H88.8zM496 288a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lungs": { + "aliases": { + "unicodes": { + "composite": [ + "1fac1" + ], + "secondary": [ + "10f604" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air", + "breath", + "covid-19", + "exhalation", + "inhalation", + "lungs", + "organ", + "respiration", + "respiratory" + ] + }, + "unicode": "f604", + "label": "Lungs", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0c17.7 0 32 14.3 32 32V164.1c0 16.4 8.4 31.7 22.2 40.5l9.8 6.2V165.3C384 127 415 96 453.3 96c21.7 0 42.8 10.2 55.8 28.8c15.4 22.1 44.3 65.4 71 116.9c26.5 50.9 52.4 112.5 59.6 170.3c.2 1.3 .2 2.6 .2 4v7c0 49.1-39.8 89-89 89c-7.3 0-14.5-.9-21.6-2.7l-72.7-18.2C414 480.5 384 442.1 384 398V325l90.5 57.6c7.5 4.7 17.3 2.5 22.1-4.9s2.5-17.3-4.9-22.1L384 287.1v-.4l-44.1-28.1c-7.3-4.6-13.9-10.1-19.9-16.1c-5.9 6-12.6 11.5-19.9 16.1L256 286.7 161.2 347l-13.5 8.6c0 0 0 0-.1 0c-7.4 4.8-9.6 14.6-4.8 22.1c4.7 7.5 14.6 9.7 22.1 4.9l91.1-58V398c0 44.1-30 82.5-72.7 93.1l-72.7 18.2c-7.1 1.8-14.3 2.7-21.6 2.7c-49.1 0-89-39.8-89-89v-7c0-1.3 .1-2.7 .2-4c7.2-57.9 33.1-119.4 59.6-170.3c26.8-51.5 55.6-94.8 71-116.9c13-18.6 34-28.8 55.8-28.8C225 96 256 127 256 165.3v45.5l9.8-6.2c13.8-8.8 22.2-24.1 22.2-40.5V32c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lungs-virus": { + "aliases": { + "unicodes": { + "secondary": [ + "10e067" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "coronavirus", + "covid-19", + "flu", + "infection", + "pandemic", + "respiratory", + "sick" + ] + }, + "unicode": "e067", + "label": "Lungs Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0c17.7 0 32 14.3 32 32V156.2c-8.5-7.6-19.7-12.2-32-12.2s-23.5 4.6-32 12.2V32c0-17.7 14.3-32 32-32zM444.5 195.5c-16.4-16.4-41.8-18.5-60.5-6.1V165.3C384 127 415 96 453.3 96c21.7 0 42.8 10.2 55.8 28.8c15.4 22.1 44.3 65.4 71 116.9c26.5 50.9 52.4 112.5 59.6 170.3c.2 1.3 .2 2.6 .2 4v7c0 49.1-39.8 89-89 89c-7.3 0-14.5-.9-21.6-2.7l-72.7-18.2c-20.9-5.2-38.7-17.1-51.5-32.9c14 1.5 28.5-3 39.2-13.8l-22.6-22.6 22.6 22.6c18.7-18.7 18.7-49.1 0-67.9c-1.1-1.1-1.4-2-1.5-2.5c-.1-.8-.1-1.8 .4-2.9s1.2-1.9 1.8-2.3c.5-.3 1.3-.8 2.9-.8c26.5 0 48-21.5 48-48s-21.5-48-48-48c-1.6 0-2.4-.4-2.9-.8c-.6-.4-1.3-1.2-1.8-2.3s-.5-2.2-.4-2.9c.1-.6 .4-1.4 1.5-2.5c18.7-18.7 18.7-49.1 0-67.9zM421.8 421.8c-6.2 6.2-16.4 6.2-22.6 0C375.9 398.5 336 415 336 448c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C241.5 375.9 225 336 192 336c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C264.1 241.5 304 225 304 192c0-8.8 7.2-16 16-16s16 7.2 16 16c0 33 39.9 49.5 63.2 26.2c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C398.5 264.1 415 304 448 304c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2c6.2 6.2 6.2 16.4 0 22.6zM183.3 491.2l-72.7 18.2c-7.1 1.8-14.3 2.7-21.6 2.7c-49.1 0-89-39.8-89-89v-7c0-1.3 .1-2.7 .2-4c7.2-57.9 33.1-119.4 59.6-170.3c26.8-51.5 55.6-94.8 71-116.9c13-18.6 34-28.8 55.8-28.8C225 96 256 127 256 165.3v24.1c-18.6-12.4-44-10.3-60.5 6.1c-18.7 18.7-18.7 49.1 0 67.9c1.1 1.1 1.4 2 1.5 2.5c.1 .8 .1 1.8-.4 2.9s-1.2 1.9-1.8 2.3c-.5 .3-1.3 .8-2.9 .8c-26.5 0-48 21.5-48 48s21.5 48 48 48c1.6 0 2.4 .4 2.9 .8c.6 .4 1.3 1.2 1.8 2.3s.5 2.2 .4 2.9c-.1 .6-.4 1.4-1.5 2.5c-18.7 18.7-18.7 49.1 0 67.9c10.7 10.7 25.3 15.3 39.2 13.8c-12.8 15.9-30.6 27.7-51.5 32.9zM296 320a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm72 32a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lyft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3c3", + "label": "lyft", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "m": { + "aliases": { + "unicodes": { + "composite": [ + "6d" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter M", + "Latin Small Letter M", + "letter" + ] + }, + "unicode": "4d", + "label": "M", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M22.7 33.4c13.5-4.1 28.1 1.1 35.9 12.9L224 294.3 389.4 46.2c7.8-11.7 22.4-17 35.9-12.9S448 49.9 448 64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V169.7L250.6 369.8c-5.9 8.9-15.9 14.2-26.6 14.2s-20.7-5.3-26.6-14.2L64 169.7V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 49.9 9.2 37.5 22.7 33.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magento": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3c4", + "label": "Magento", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "magnet": { + "aliases": { + "unicodes": { + "composite": [ + "1f9f2" + ], + "secondary": [ + "10f076" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Attract", + "attraction", + "horseshoe", + "lodestone", + "magnet", + "magnetic", + "tool" + ] + }, + "unicode": "f076", + "label": "Magnet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 160v96C0 379.7 100.3 480 224 480s224-100.3 224-224V160H320v96c0 53-43 96-96 96s-96-43-96-96V160H0zm0-32H128V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v64zm320 0H448V64c0-17.7-14.3-32-32-32H352c-17.7 0-32 14.3-32 32v64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass": { + "aliases": { + "names": [ + "search" + ], + "unicodes": { + "composite": [ + "1f50d" + ], + "secondary": [ + "10f002" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "find", + "glass", + "magnify", + "magnifying", + "magnifying glass tilted left", + "preview", + "search", + "tool", + "zoom" + ] + }, + "unicode": "f002", + "label": "Magnifying Glass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "find", + "next", + "search" + ] + }, + "unicode": "e521", + "label": "Magnifying Glass Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM241 119c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l31 31H120c-13.3 0-24 10.7-24 24s10.7 24 24 24H238.1l-31 31c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9l-72-72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-chart": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analysis", + "chart" + ] + }, + "unicode": "e522", + "label": "Magnifying Glass Chart", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zm-312 8v64c0 13.3 10.7 24 24 24s24-10.7 24-24l0-64c0-13.3-10.7-24-24-24s-24 10.7-24 24zm80-96V280c0 13.3 10.7 24 24 24s24-10.7 24-24V120c0-13.3-10.7-24-24-24s-24 10.7-24 24zm80 64v96c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24s-24 10.7-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-dollar": { + "aliases": { + "names": [ + "search-dollar" + ], + "unicodes": { + "secondary": [ + "10f688" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "find", + "magnify", + "money", + "preview", + "zoom" + ] + }, + "unicode": "f688", + "label": "Magnifying Glass Dollar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM228 104c0-11-9-20-20-20s-20 9-20 20v14c-7.6 1.7-15.2 4.4-22.2 8.5c-13.9 8.3-25.9 22.8-25.8 43.9c.1 20.3 12 33.1 24.7 40.7c11 6.6 24.7 10.8 35.6 14l1.7 .5c12.6 3.8 21.8 6.8 28 10.7c5.1 3.2 5.8 5.4 5.9 8.2c.1 5-1.8 8-5.9 10.5c-5 3.1-12.9 5-21.4 4.7c-11.1-.4-21.5-3.9-35.1-8.5c-2.3-.8-4.7-1.6-7.2-2.4c-10.5-3.5-21.8 2.2-25.3 12.6s2.2 21.8 12.6 25.3c1.9 .6 4 1.3 6.1 2.1l0 0 0 0c8.3 2.9 17.9 6.2 28.2 8.4V312c0 11 9 20 20 20s20-9 20-20V298.2c8-1.7 16-4.5 23.2-9c14.3-8.9 25.1-24.1 24.8-45c-.3-20.3-11.7-33.4-24.6-41.6c-11.5-7.2-25.9-11.6-37.1-15l-.7-.2c-12.8-3.9-21.9-6.7-28.3-10.5c-5.2-3.1-5.3-4.9-5.3-6.7c0-3.7 1.4-6.5 6.2-9.3c5.4-3.2 13.6-5.1 21.5-5c9.6 .1 20.2 2.2 31.2 5.2c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-6.5-1.7-13.7-3.4-21.1-4.7V104z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-location": { + "aliases": { + "names": [ + "search-location" + ], + "unicodes": { + "secondary": [ + "10f689" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "find", + "magnify", + "preview", + "zoom" + ] + }, + "unicode": "f689", + "label": "Magnifying Glass Location", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM288 176c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 48.8 46.5 111.6 68.6 138.6c6 7.3 16.8 7.3 22.7 0c22.1-27 68.6-89.8 68.6-138.6zm-112 0a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-minus": { + "aliases": { + "names": [ + "search-minus" + ], + "unicodes": { + "secondary": [ + "10f010" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "minify", + "negative", + "smaller", + "zoom", + "zoom out" + ] + }, + "unicode": "f010", + "label": "Magnifying Glass Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM136 184c-13.3 0-24 10.7-24 24s10.7 24 24 24H280c13.3 0 24-10.7 24-24s-10.7-24-24-24H136z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-plus": { + "aliases": { + "names": [ + "search-plus" + ], + "unicodes": { + "secondary": [ + "10f00e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "magnify", + "positive", + "zoom", + "zoom in" + ] + }, + "unicode": "f00e", + "label": "Magnifying Glass Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM184 296c0 13.3 10.7 24 24 24s24-10.7 24-24V232h64c13.3 0 24-10.7 24-24s-10.7-24-24-24H232V120c0-13.3-10.7-24-24-24s-24 10.7-24 24v64H120c-13.3 0-24 10.7-24 24s10.7 24 24 24h64v64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mailchimp": { + "changes": [ + "5.1.0", + "5.7.0", + "5.8.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f59e", + "label": "Mailchimp", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M330.61 243.52a36.15 36.15 0 0 1 9.3 0c1.66-3.83 1.95-10.43.45-17.61-2.23-10.67-5.25-17.14-11.48-16.13s-6.47 8.74-4.24 19.42c1.26 6 3.49 11.14 6 14.32zM277.05 252c4.47 2 7.2 3.26 8.28 2.13 1.89-1.94-3.48-9.39-12.12-13.09a31.44 31.44 0 0 0-30.61 3.68c-3 2.18-5.81 5.22-5.41 7.06.85 3.74 10-2.71 22.6-3.48 7-.44 12.8 1.75 17.26 3.71zm-9 5.13c-9.07 1.42-15 6.53-13.47 10.1.9.34 1.17.81 5.21-.81a37 37 0 0 1 18.72-1.95c2.92.34 4.31.52 4.94-.49 1.46-2.22-5.71-8-15.39-6.85zm54.17 17.1c3.38-6.87-10.9-13.93-14.3-7s10.92 13.88 14.32 6.97zm15.66-20.47c-7.66-.13-7.95 15.8-.26 15.93s7.98-15.81.28-15.96zm-218.79 78.9c-1.32.31-6 1.45-8.47-2.35-5.2-8 11.11-20.38 3-35.77-9.1-17.47-27.82-13.54-35.05-5.54-8.71 9.6-8.72 23.54-5 24.08 4.27.57 4.08-6.47 7.38-11.63a12.83 12.83 0 0 1 17.85-3.72c11.59 7.59 1.37 17.76 2.28 28.62 1.39 16.68 18.42 16.37 21.58 9a2.08 2.08 0 0 0-.2-2.33c.03.89.68-1.3-3.35-.39zm299.72-17.07c-3.35-11.73-2.57-9.22-6.78-20.52 2.45-3.67 15.29-24-3.07-43.25-10.4-10.92-33.9-16.54-41.1-18.54-1.5-11.39 4.65-58.7-21.52-83 20.79-21.55 33.76-45.29 33.73-65.65-.06-39.16-48.15-51-107.42-26.47l-12.55 5.33c-.06-.05-22.71-22.27-23.05-22.57C169.5-18-41.77 216.81 25.78 273.85l14.76 12.51a72.49 72.49 0 0 0-4.1 33.5c3.36 33.4 36 60.42 67.53 60.38 57.73 133.06 267.9 133.28 322.29 3 1.74-4.47 9.11-24.61 9.11-42.38s-10.09-25.27-16.53-25.27zm-316 48.16c-22.82-.61-47.46-21.15-49.91-45.51-6.17-61.31 74.26-75.27 84-12.33 4.54 29.64-4.67 58.49-34.12 57.81zM84.3 249.55C69.14 252.5 55.78 261.09 47.6 273c-4.88-4.07-14-12-15.59-15-13.01-24.85 14.24-73 33.3-100.21C112.42 90.56 186.19 39.68 220.36 48.91c5.55 1.57 23.94 22.89 23.94 22.89s-34.15 18.94-65.8 45.35c-42.66 32.85-74.89 80.59-94.2 132.4zM323.18 350.7s-35.74 5.3-69.51-7.07c6.21-20.16 27 6.1 96.4-13.81 15.29-4.38 35.37-13 51-25.35a102.85 102.85 0 0 1 7.12 24.28c3.66-.66 14.25-.52 11.44 18.1-3.29 19.87-11.73 36-25.93 50.84A106.86 106.86 0 0 1 362.55 421a132.45 132.45 0 0 1-20.34 8.58c-53.51 17.48-108.3-1.74-126-43a66.33 66.33 0 0 1-3.55-9.74c-7.53-27.2-1.14-59.83 18.84-80.37 1.23-1.31 2.48-2.85 2.48-4.79a8.45 8.45 0 0 0-1.92-4.54c-7-10.13-31.19-27.4-26.33-60.83 3.5-24 24.49-40.91 44.07-39.91l5 .29c8.48.5 15.89 1.59 22.88 1.88 11.69.5 22.2-1.19 34.64-11.56 4.2-3.5 7.57-6.54 13.26-7.51a17.45 17.45 0 0 1 13.6 2.24c10 6.64 11.4 22.73 11.92 34.49.29 6.72 1.1 23 1.38 27.63.63 10.67 3.43 12.17 9.11 14 3.19 1.05 6.15 1.83 10.51 3.06 13.21 3.71 21 7.48 26 12.31a16.38 16.38 0 0 1 4.74 9.29c1.56 11.37-8.82 25.4-36.31 38.16-46.71 21.68-93.68 14.45-100.48 13.68-20.15-2.71-31.63 23.32-19.55 41.15 22.64 33.41 122.4 20 151.37-21.35.69-1 .12-1.59-.73-1-41.77 28.58-97.06 38.21-128.46 26-4.77-1.85-14.73-6.44-15.94-16.67 43.6 13.49 71 .74 71 .74s2.03-2.79-.56-2.53zm-68.47-5.7zm-83.4-187.5c16.74-19.35 37.36-36.18 55.83-45.63a.73.73 0 0 1 1 1c-1.46 2.66-4.29 8.34-5.19 12.65a.75.75 0 0 0 1.16.79c11.49-7.83 31.48-16.22 49-17.3a.77.77 0 0 1 .52 1.38 41.86 41.86 0 0 0-7.71 7.74.75.75 0 0 0 .59 1.19c12.31.09 29.66 4.4 41 10.74.76.43.22 1.91-.64 1.72-69.55-15.94-123.08 18.53-134.5 26.83a.76.76 0 0 1-1-1.12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "manat-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Manat Sign", + "currency" + ] + }, + "unicode": "e1d5", + "label": "Manat Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 32c-17.7 0-32 14.3-32 32V98.7C69.2 113.9 0 192.9 0 288V448c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-59.6 40.8-109.8 96-124V448c0 17.7 14.3 32 32 32s32-14.3 32-32V164c55.2 14.2 96 64.3 96 124V448c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-95.1-69.2-174.1-160-189.3V64c0-17.7-14.3-32-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mandalorian": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f50f", + "label": "Mandalorian", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M232.27 511.89c-1-3.26-1.69-15.83-1.39-24.58.55-15.89 1-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-1 .4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-1-11.43a92.38 92.38 0 0 0-.34-12.71c-2-13-3.46-27.7-3.25-33.9s.43-7.15 2.06-9.67c3.05-4.71 6.51-14 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74a109.54 109.54 0 0 1 4.42-15.05c2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71s-4.76 4.8-8.29 7.36c-8.37 6.08-11.7 9.39-12.66 12.58s-1 7.23-.16 7.76c.34.21 1.29 2.4 2.11 4.88a28.83 28.83 0 0 1 .72 15.36c-.39 1.77-1 5.47-1.46 8.23s-1 6.46-1.25 8.22a9.85 9.85 0 0 1-1.55 4.26c-1 1-1.14.91-2.05-.53a14.87 14.87 0 0 1-1.44-4.75c-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-1-21a14.24 14.24 0 0 0 1.67-4.61c0-2.39-2.2-5.32-7.41-9.89-7-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3-2.6 9.11-3 22l-.34 12.19 2 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56s.95 22.75 2 24.71c.36.66.51 1.35.34 1.52s.41 2.09 1.29 4.27a38.14 38.14 0 0 1 2.06 9 91 91 0 0 0 1.71 10.37c2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 58-2 61.21-.12 2-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4-4.79-2.83-9.95.7-3 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73s.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57 0-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-11-1.9-23.85-14.55-6.15-6-12.34-12-13.75-13.19-2.81-2.42-2.79-2-.56-9.63l1.35-4.65-1.69-3a32.22 32.22 0 0 0-2.59-4.07c-1.33-1.51-5.5-10.89-6-13.49a4.24 4.24 0 0 1 .87-3.9c2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1 9.41 5 1.34 4.79 1.37 9.79.1 18.55a101.2 101.2 0 0 0-1 11.11c0 4 .19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52a18.67 18.67 0 0 1 4.72 2.85c11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 8 4.54 10 13.39 1.31 5.65 4 11.14 5.46 11.14a9.38 9.38 0 0 0 3.33-1.39c2-1.22 2.25-1.73 2.25-4.18a132.88 132.88 0 0 0-2-17.84c-.37-1.66-.78-4.06-.93-5.35s-.61-3.85-1-5.69c-2.55-11.16-3.65-15.46-4.1-16-1.55-2-4.08-10.2-4.93-15.92-1.64-11.11-4-14.23-12.91-17.39A43.15 43.15 0 0 1 165.24 78c-1.15-1-4-3.22-6.35-5.06s-4.41-3.53-4.6-3.76a22.7 22.7 0 0 0-2.69-2c-6.24-4.22-8.84-7-11.26-12l-2.44-5-.22-13-.22-13 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2 8.53-.19 10.12 0 11.66 1.56s1.36 6.4-.29 8.5a6.66 6.66 0 0 0-1.34 2.32c0 .58-2.61 4.91-5.42 9a30.39 30.39 0 0 0-2.37 6.82c20.44 13.39 21.55 3.77 14.07 29L194 66.92c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-12-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28a45.3 45.3 0 0 1 7.55-1.68 29.57 29.57 0 0 0 6-1.29c3.65-1.11 4.5-1.17 6.35-.4a29.54 29.54 0 0 0 5.82 1.36 18.18 18.18 0 0 1 6 1.91 22.67 22.67 0 0 0 5 2.17c2.51.68 3 .57 7.05-1.67l4.35-2.4L268.32 5c10.44-.4 10.81-.47 15.26-2.68L288.16 0l2.46 1.43c1.76 1 3.14 2.73 4.85 6 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39a35.76 35.76 0 0 0 2.1 5.91 13.55 13.55 0 0 1 1.31 4c.31 4.33 0 5.3-2.41 6.92-2.17 1.47-7 7.91-7 9.34a14.77 14.77 0 0 1-1.07 3c-5 11.51-6.76 13.56-14.26 17-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26a18.33 18.33 0 0 1-4.09 3.71 13.62 13.62 0 0 0-4.38 4.78 5.89 5.89 0 0 1-2.49 2.91 6.88 6.88 0 0 0-2.45 1.71 67.62 67.62 0 0 1-7 5.38c-3.33 2.34-6.87 5-7.87 6A7.27 7.27 0 0 1 224 100a5.76 5.76 0 0 0-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6a36.45 36.45 0 0 0 1.42 5.88c1.32 3.8 1.31 7.86 0 10.57s-.89 6.65 1.35 9.59c2 2.63 2.16 4.56.71 8.84a33.45 33.45 0 0 0-1.06 8.91c0 4.88.22 6.28 1.46 8.38s1.82 2.48 3.24 2.32c2-.23 2.3-1.05 4.71-12.12 2.18-10 3.71-11.92 13.76-17.08 2.94-1.51 7.46-4 10-5.44s6.79-3.69 9.37-4.91a40.09 40.09 0 0 0 15.22-11.67c7.11-8.79 10-16.22 12.85-33.3a18.37 18.37 0 0 1 2.86-7.73 20.39 20.39 0 0 0 2.89-7.31c1-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8-2.18 3.11-6.46 13-8.76 20.26l-2.29 7.22-7 6.49c-3.83 3.57-8 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 10a14.62 14.62 0 0 0 1.59 7.26 42 42 0 0 1 2.09 4.83 9.28 9.28 0 0 0 1.57 2.89c1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12-4.7 12-1.79 0-4.06 9.27-5.07 20.74-.18 2-.62 5.94-1 8.7s-1 10-1.35 16.05c-.77 12.22-.19 18.77 2 23.15 3.41 6.69.52 12.69-11 22.84l-4 3.49.07 5.19a40.81 40.81 0 0 0 1.14 8.87c4.61 16 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15a61.31 61.31 0 0 1 1.08 7c.17 2 .66 5.33 1.08 7.36.47 2.26.78 11 .79 22.74v19.06l-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3-17.66-3-21.3 0-4.23 1-6 5.28-9.13s4.86-3.14 5.48-.72c.28 1.1 1.45 5.62 2.6 10 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-1 7.07-1.17 12.39-1 28.43.17 19.4-.64 35.73-2 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-71-37.58a101 101 0 0 1-1.73-10.79 100.5 100.5 0 0 0-1.73-10.79 37.53 37.53 0 0 1-1-6.49c-.31-3.19-.91-7.46-1.33-9.48-1-4.79-3.35-19.35-3.42-21.07 0-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29 1-1 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83s-.49 9.87-.67 11.71-.61 9.36-.94 16.72c-.79 17.41-1.94 31.29-2.65 32a.62.62 0 0 1-1-.14zm-87.18-266.59c21.07 12.79 17.84 14.15 28.49 17.66 13 4.29 18.87 7.13 23.15 16.87C111.6 233.28 86.25 255 78.55 268c-31 52-6 101.59 62.75 87.21-14.18 29.23-78 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-68 3-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.3 70.64-78.7 91.18-105.29 61.71z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "map": { + "aliases": { + "unicodes": { + "composite": [ + "1f5fa", + "f278" + ], + "secondary": [ + "10f279" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel", + "world", + "world map" + ] + }, + "unicode": "f279", + "label": "Map", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 476.1L192 421.2V35.9L384 90.8V476.1zm32-1.2V88.4L543.1 37.5c15.8-6.3 32.9 5.3 32.9 22.3V394.6c0 9.8-6 18.6-15.1 22.3L416 474.8zM15.1 95.1L160 37.2V423.6L32.9 474.5C17.1 480.8 0 469.2 0 452.2V117.4c0-9.8 6-18.6 15.1-22.3z" + }, + "regular": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M565.6 36.2C572.1 40.7 576 48.1 576 56V392c0 10-6.2 18.9-15.5 22.4l-168 64c-5.2 2-10.9 2.1-16.1 .3L192.5 417.5l-160 61c-7.4 2.8-15.7 1.8-22.2-2.7S0 463.9 0 456V120c0-10 6.2-18.9 15.5-22.4l168-64c5.2-2 10.9-2.1 16.1-.3L383.5 94.5l160-61c7.4-2.8 15.7-1.8 22.2 2.7zM48 136.5V421.2l120-45.7V90.8L48 136.5zM360 422.7V137.3l-144-48V374.7l144 48zm48-1.5l120-45.7V90.8L408 136.5V421.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "map-location": { + "aliases": { + "names": [ + "map-marked" + ], + "unicodes": { + "secondary": [ + "10f59f" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "unicode": "f59f", + "label": "Map Location", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M302.8 312C334.9 271.9 408 174.6 408 120C408 53.7 354.3 0 288 0S168 53.7 168 120c0 54.6 73.1 151.9 105.2 192c7.7 9.6 22 9.6 29.6 0zM416 503l144.9-58c9.1-3.6 15.1-12.5 15.1-22.3V152c0-17-17.1-28.6-32.9-22.3l-116 46.4c-.5 1.2-1 2.5-1.5 3.7c-2.9 6.8-6.1 13.7-9.6 20.6V503zM15.1 187.3C6 191 0 199.8 0 209.6V480.4c0 17 17.1 28.6 32.9 22.3L160 451.8V200.4c-3.5-6.9-6.7-13.8-9.6-20.6c-5.6-13.2-10.4-27.4-12.8-41.5l-122.6 49zM384 255c-20.5 31.3-42.3 59.6-56.2 77c-20.5 25.6-59.1 25.6-79.6 0c-13.9-17.4-35.7-45.7-56.2-77V449.4l192 54.9V255z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "map-location-dot": { + "aliases": { + "names": [ + "map-marked-alt" + ], + "unicodes": { + "secondary": [ + "10f5a0" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "unicode": "f5a0", + "label": "Map Location Dot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M408 120c0 54.6-73.1 151.9-105.2 192c-7.7 9.6-22 9.6-29.6 0C241.1 271.9 168 174.6 168 120C168 53.7 221.7 0 288 0s120 53.7 120 120zm8 80.4c3.5-6.9 6.7-13.8 9.6-20.6c.5-1.2 1-2.5 1.5-3.7l116-46.4C558.9 123.4 576 135 576 152V422.8c0 9.8-6 18.6-15.1 22.3L416 503V200.4zM137.6 138.3c2.4 14.1 7.2 28.3 12.8 41.5c2.9 6.8 6.1 13.7 9.6 20.6V451.8L32.9 502.7C17.1 509 0 497.4 0 480.4V209.6c0-9.8 6-18.6 15.1-22.3l122.6-49zM327.8 332c13.9-17.4 35.7-45.7 56.2-77V504.3L192 449.4V255c20.5 31.3 42.3 59.6 56.2 77c20.5 25.6 59.1 25.6 79.6 0zM288 152a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "map-pin": { + "aliases": { + "unicodes": { + "composite": [ + "1f4cd" + ], + "secondary": [ + "10f276" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "agree", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "marker", + "navigation", + "pin", + "place", + "position", + "pushpin", + "round pushpin", + "travel" + ] + }, + "unicode": "f276", + "label": "Map Pin", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32 144a144 144 0 1 1 288 0A144 144 0 1 1 32 144zM176 80c8.8 0 16-7.2 16-16s-7.2-16-16-16c-53 0-96 43-96 96c0 8.8 7.2 16 16 16s16-7.2 16-16c0-35.3 28.7-64 64-64zM144 480V317.1c10.4 1.9 21.1 2.9 32 2.9s21.6-1 32-2.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "markdown": { + "changes": [ + "5.2.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f60f", + "label": "Markdown", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M593.8 59.1H46.2C20.7 59.1 0 79.8 0 105.2v301.5c0 25.5 20.7 46.2 46.2 46.2h547.7c25.5 0 46.2-20.7 46.1-46.1V105.2c0-25.4-20.7-46.1-46.2-46.1zM338.5 360.6H277v-120l-61.5 76.9-61.5-76.9v120H92.3V151.4h61.5l61.5 76.9 61.5-76.9h61.5v209.2zm135.3 3.1L381.5 256H443V151.4h61.5V256H566z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "marker": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5a1" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "sharpie", + "update", + "write" + ] + }, + "unicode": "f5a1", + "label": "Marker", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M481 31C445.1-4.8 386.9-4.8 351 31l-15 15L322.9 33C294.8 4.9 249.2 4.9 221.1 33L135 119c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0L255 66.9c9.4-9.4 24.6-9.4 33.9 0L302.1 80 186.3 195.7 316.3 325.7 481 161c35.9-35.9 35.9-94.1 0-129.9zM293.7 348.3L163.7 218.3 99.5 282.5c-48 48-80.8 109.2-94.1 175.8l-5 25c-1.6 7.9 .9 16 6.6 21.7s13.8 8.1 21.7 6.6l25-5c66.6-13.3 127.8-46.1 175.8-94.1l64.2-64.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars": { + "aliases": { + "unicodes": { + "composite": [ + "2642" + ], + "secondary": [ + "10f222" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gender", + "male", + "male sign", + "man" + ] + }, + "unicode": "f222", + "label": "Mars", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M289.8 46.8c3.7-9 12.5-14.8 22.2-14.8H424c13.3 0 24 10.7 24 24V168c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-33.4-33.4L321 204.2c19.5 28.4 31 62.7 31 99.8c0 97.2-78.8 176-176 176S0 401.2 0 304s78.8-176 176-176c37 0 71.4 11.4 99.8 31l52.6-52.6L295 73c-6.9-6.9-8.9-17.2-5.2-26.2zM400 80l0 0h0v0zM176 416a112 112 0 1 0 0-224 112 112 0 1 0 0 224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-and-venus": { + "aliases": { + "unicodes": { + "composite": [ + "26a5" + ], + "secondary": [ + "10f224" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Male and Female Sign", + "female", + "gender", + "intersex", + "male", + "transgender" + ] + }, + "unicode": "f224", + "label": "Mars And Venus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M321.8 14.8C325.5 5.8 334.3 0 344 0H456c13.3 0 24 10.7 24 24V136c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39-24.7 24.7C391 163.3 400 192.6 400 224c0 80.2-59.1 146.7-136.1 158.2c0 .6 .1 1.2 .1 1.8v.4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .3 .4 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3h24c13.3 0 24 10.7 24 24s-10.7 24-24 24H264v.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0l-24 0-24 0v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V486 486v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V485 485v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V484v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V483v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V481v-.1-.1-.1-.1-.1-.1-.1-.1V480v-.1-.1-.1-.1-.1-.1-.1V479v-.1-.1-.1-.1-.1-.1-.1V478v-.1-.1-.1-.1-.1-.1V477v-.1-.1-.1-.1-.1-.1V476v-.1-.1-.1-.1-.1-.1V475v-.1-.2-.2-.2-.2-.2V474v-.2-.2-.2-.2-.2V473v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V470v-.2-.2-.2-.2-.2V469v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V467v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V463v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V459v-.2-.2-.2-.2-.2-.2-.2-.2V457v-.2-.2-.2-.2V456H192c-13.3 0-24-10.7-24-24s10.7-24 24-24h24v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3V403v-.3-.3V402v-.3-.3V401v-.3-.3V400v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.4-.3-.4-.4-.4-.4V393v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V388v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V384c0-.6 0-1.2 .1-1.8C139.1 370.7 80 304.2 80 224c0-88.4 71.6-160 160-160c39.6 0 75.9 14.4 103.8 38.2L366.1 80 327 41c-6.9-6.9-8.9-17.2-5.2-26.2zM432 48l0 0h0v0zM240 488h24c0 13.3-10.7 24-24 24s-24-10.7-24-24h24zm96-264a96 96 0 1 0 -192 0 96 96 0 1 0 192 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-and-venus-burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gender", + "violence" + ] + }, + "unicode": "e523", + "label": "Mars And Venus Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M504 0c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l39 39-22.2 22.2C475.9 78.4 439.6 64 400 64c-88.4 0-160 71.6-160 160c0 80.2 59.1 146.7 136.1 158.2c0 .6-.1 1.2-.1 1.8v.4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .3 .4 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3H352c-13.3 0-24 10.7-24 24s10.7 24 24 24h24v.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0l24 0H376c0 13.3 10.7 24 24 24s24-10.7 24-24H400l24 0v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V486 486v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V485 485v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V484v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V483v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V481v-.1-.1-.1-.1-.1-.1-.1-.1V480v-.1-.1-.1-.1-.1-.1-.1V479v-.1-.1-.1-.1-.1-.1-.1V478v-.1-.1-.1-.1-.1-.1V477v-.1-.1-.1-.1-.1-.1V476v-.1-.1-.1-.1-.1-.1V475v-.1-.2-.2-.2-.2-.2V474v-.2-.2-.2-.2-.2V473v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V470v-.2-.2-.2-.2-.2V469v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V467v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V463v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V459v-.2-.2-.2-.2-.2-.2-.2-.2V457v-.2-.2-.2-.2V456h24c13.3 0 24-10.7 24-24s-10.7-24-24-24H424v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3V403v-.3-.3V402v-.3-.3V401v-.3-.3V400v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.4-.3-.4-.4-.4-.4V393v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V388v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V384c0-.6 0-1.2-.1-1.8c77-11.6 136.1-78 136.1-158.2c0-31.4-9-60.7-24.7-85.4L560 113.9l39 39c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V24c0-13.3-10.7-24-24-24H504zM400 128a96 96 0 1 1 0 192 96 96 0 1 1 0-192zM190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74L55.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L10.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L90.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6L176 286.1l58.6 53.9c4.1 3.8 9.9 5.1 15.2 3.6C223.6 310.8 208 269.2 208 224c0-60.8 28.3-115 72.4-150.2L220.3 92.1l-29.4-74z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-double": { + "aliases": { + "unicodes": { + "composite": [ + "26a3" + ], + "secondary": [ + "10f227" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Doubled Male Sign", + "gay", + "gender", + "male", + "men" + ] + }, + "unicode": "f227", + "label": "Mars Double", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M312 32c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l33.4 33.4L275.8 159c-28.4-19.5-62.7-31-99.8-31C78.8 128 0 206.8 0 304s78.8 176 176 176s176-78.8 176-176c0-37-11.4-71.4-31-99.8l52.6-52.6L407 185c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V56c0-13.3-10.7-24-24-24H312zm88 48h0v0l0 0zM64 304a112 112 0 1 1 224 0A112 112 0 1 1 64 304zM368 480c97.2 0 176-78.8 176-176c0-37-11.4-71.4-31-99.8l52.6-52.6L599 185c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V56c0-13.3-10.7-24-24-24H504c-9.7 0-18.5 5.8-22.2 14.8c-1.2 2.9-1.8 6-1.8 9l0 .2v.2c0 6.2 2.5 12.2 7 16.8l33.4 33.4L480 146.7V168c0 22.6-13.6 43.1-34.6 51.7c-.8 .3-1.7 .7-2.5 1C465.7 241.2 480 270.9 480 304c0 61.9-50.1 112-112 112c-5.4 0-10.8-.4-16-1.1c-12.9 20.4-29.1 38.3-48.1 53.1c19.8 7.8 41.4 12 64 12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-stroke": { + "aliases": { + "unicodes": { + "composite": [ + "26a6" + ], + "secondary": [ + "10f229" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Male with Stroke Sign", + "gender", + "transgender" + ] + }, + "unicode": "f229", + "label": "Mars Stroke", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M376 0c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l33.4 33.4L370.3 96.4 345 71c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l25.4 25.4L307.8 159c-28.4-19.5-62.7-31-99.8-31c-97.2 0-176 78.8-176 176s78.8 176 176 176s176-78.8 176-176c0-37-11.4-71.4-31-99.8l28.6-28.6L407 201c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-25.4-25.4 22.1-22.1L471 153c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V24c0-13.3-10.7-24-24-24H376zm88 48h0v0l0 0zM96 304a112 112 0 1 1 224 0A112 112 0 1 1 96 304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-stroke-right": { + "aliases": { + "names": [ + "mars-stroke-h" + ], + "unicodes": { + "composite": [ + "26a9" + ], + "secondary": [ + "10f22b" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Horizontal Male with Stroke Sign", + "gender" + ] + }, + "unicode": "f22b", + "label": "Mars Stroke Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 368a112 112 0 1 0 0-224 112 112 0 1 0 0 224zm174.4-88C354.7 365.8 281.1 432 192 432C94.8 432 16 353.2 16 256S94.8 80 192 80c89.1 0 162.7 66.2 174.4 152H400V176c0-13.3 10.7-24 24-24s24 10.7 24 24v56h32V176c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l80 80c9.4 9.4 9.4 24.6 0 33.9l-80 80c-6.9 6.9-17.2 8.9-26.2 5.2s-14.8-12.5-14.8-22.2V280H448v56c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H366.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-stroke-up": { + "aliases": { + "names": [ + "mars-stroke-v" + ], + "unicodes": { + "composite": [ + "26a8" + ], + "secondary": [ + "10f22a" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Vertical Male with Stroke Sign", + "gender" + ] + }, + "unicode": "f22a", + "label": "Mars Stroke Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M148.7 4.7c6.2-6.2 16.4-6.2 22.6 0l64 64c4.6 4.6 5.9 11.5 3.5 17.4s-8.3 9.9-14.8 9.9H184v24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H184v24c0 .6 0 1.2-.1 1.8c77 11.6 136.1 78 136.1 158.2c0 88.4-71.6 160-160 160S0 440.4 0 352c0-80.2 59.1-146.7 136.1-158.2c0-.6-.1-1.2-.1-1.8V168H104c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V96H96c-6.5 0-12.3-3.9-14.8-9.9s-1.1-12.9 3.5-17.4l64-64zM256 352A96 96 0 1 0 64 352a96 96 0 1 0 192 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "martini-glass": { + "aliases": { + "names": [ + "glass-martini-alt" + ], + "unicodes": { + "composite": [ + "1f378" + ], + "secondary": [ + "10f57b" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "cocktail", + "cocktail glass", + "drink", + "glass", + "liquor" + ] + }, + "unicode": "f57b", + "label": "Martini Glass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 0C19.1 0 7.4 7.8 2.4 19.8s-2.2 25.7 6.9 34.9L224 269.3V448H160c-17.7 0-32 14.3-32 32s14.3 32 32 32h96 96c17.7 0 32-14.3 32-32s-14.3-32-32-32H288V269.3L502.6 54.6c9.2-9.2 11.9-22.9 6.9-34.9S492.9 0 480 0H32zM173.3 128l-64-64H402.7l-64 64H173.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "martini-glass-citrus": { + "aliases": { + "names": [ + "cocktail" + ], + "unicodes": { + "secondary": [ + "10f561" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "beverage", + "drink", + "gin", + "glass", + "margarita", + "martini", + "vodka" + ] + }, + "unicode": "f561", + "label": "Martini Glass Citrus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M432 240c53 0 96-43 96-96s-43-96-96-96c-35.5 0-66.6 19.3-83.2 48H296.2C316 40.1 369.3 0 432 0c79.5 0 144 64.5 144 144s-64.5 144-144 144c-27.7 0-53.5-7.8-75.5-21.3l35.4-35.4c12.2 5.6 25.8 8.7 40.1 8.7zM1.8 142.8C5.5 133.8 14.3 128 24 128H392c9.7 0 18.5 5.8 22.2 14.8s1.7 19.3-5.2 26.2l-177 177V464h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H208 120c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V345.9L7 169c-6.9-6.9-8.9-17.2-5.2-26.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "martini-glass-empty": { + "aliases": { + "names": [ + "glass-martini" + ], + "unicodes": { + "secondary": [ + "10f000" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.1.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "drink", + "liquor" + ] + }, + "unicode": "f000", + "label": "Martini Glass Empty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 0C19.1 0 7.4 7.8 2.4 19.8s-2.2 25.7 6.9 34.9L224 269.3V448H160c-17.7 0-32 14.3-32 32s14.3 32 32 32h96 96c17.7 0 32-14.3 32-32s-14.3-32-32-32H288V269.3L502.6 54.6c9.2-9.2 11.9-22.9 6.9-34.9S492.9 0 480 0H32zM256 210.7L109.3 64H402.7L256 210.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mask": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6fa" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carnivale", + "costume", + "disguise", + "halloween", + "secret", + "super hero" + ] + }, + "unicode": "f6fa", + "label": "Mask", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 64C64 64 0 160 0 272S80 448 176 448h8.4c24.2 0 46.4-13.7 57.2-35.4l23.2-46.3c4.4-8.8 13.3-14.3 23.2-14.3s18.8 5.5 23.2 14.3l23.2 46.3c10.8 21.7 33 35.4 57.2 35.4H400c96 0 176-64 176-176s-64-208-288-208zM96 256a64 64 0 1 1 128 0A64 64 0 1 1 96 256zm320-64a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mask-face": { + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "coronavirus", + "covid-19", + "filter", + "flu", + "infection", + "pandemic", + "respirator", + "virus" + ] + }, + "unicode": "e1d7", + "label": "Mask Face", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 64c-27.2 0-53.8 8-76.4 23.1l-37.1 24.8c-15.8 10.5-34.3 16.1-53.3 16.1H144 128 56c-30.9 0-56 25.1-56 56v85c0 55.1 37.5 103.1 90.9 116.4l108 27C233.8 435 275.4 448 320 448s86.2-13 121.1-35.5l108-27C602.5 372.1 640 324.1 640 269V184c0-30.9-25.1-56-56-56H512 496h-9.2c-19 0-37.5-5.6-53.3-16.1L396.4 87.1C373.8 72 347.2 64 320 64zM132.3 346.3l-29.8-7.4C70.5 330.9 48 302.1 48 269V184c0-4.4 3.6-8 8-8H96v48c0 45.1 13.4 87.2 36.3 122.3zm405.1-7.4l-29.8 7.4c23-35.2 36.3-77.2 36.3-122.3V176h40c4.4 0 8 3.6 8 8v85c0 33-22.5 61.8-54.5 69.9zM192 208c0-8.8 7.2-16 16-16H432c8.8 0 16 7.2 16 16s-7.2 16-16 16H208c-8.8 0-16-7.2-16-16zm16 48H432c8.8 0 16 7.2 16 16s-7.2 16-16 16H208c-8.8 0-16-7.2-16-16s7.2-16 16-16zm16 80c0-8.8 7.2-16 16-16H400c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mask-ventilator": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "gas", + "mask", + "oxygen", + "respirator", + "ventilator" + ] + }, + "unicode": "e524", + "label": "Mask Ventilator", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M159.1 176C139.4 219.2 128 264.7 128 300.8c0 15.9 2.2 31.4 6.3 46l-31.8-7.9C70.5 330.9 48 302.1 48 269V184c0-4.4 3.6-8 8-8H159.1zm26-48H56c-30.9 0-56 25.1-56 56v85c0 55.1 37.5 103.1 90.9 116.4l71.3 17.8c22.7 30.5 55.4 54.1 93.8 66.6V393.3c-19.7-16.4-32-40.3-32-66.9c0-49.5 43-134.4 96-134.4c52.5 0 96 84.9 96 134.4c0 26.7-12.4 50.4-32 66.8v76.6c38-12.6 70.6-36 93.5-66.4l71.6-17.9C602.5 372.1 640 324.1 640 269V184c0-30.9-25.1-56-56-56H454.5C419.7 73.8 372.1 32 320 32c-52.6 0-100.2 41.8-134.9 96zm295.6 48H584c4.4 0 8 3.6 8 8v85c0 33-22.5 61.8-54.5 69.9l-31.8 8c4.2-14.7 6.4-30.1 6.4-46.1c0-36.1-11.6-81.6-31.3-124.8zM288 320V512h64V320c0-17.7-14.3-32-32-32s-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "masks-theater": { + "aliases": { + "names": [ + "theater-masks" + ], + "unicodes": { + "composite": [ + "1f3ad" + ], + "secondary": [ + "10f630" + ] + } + }, + "changes": [ + "5.2.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "comedy", + "mask", + "perform", + "performing", + "performing arts", + "theater", + "theatre", + "tragedy" + ] + }, + "unicode": "f630", + "label": "Masks Theater", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M74.6 373.2c41.7 36.1 108 82.5 166.1 73.7c6.1-.9 12.1-2.5 18-4.5c-9.2-12.3-17.3-24.4-24.2-35.4c-21.9-35-28.8-75.2-25.9-113.6c-20.6 4.1-39.2 13-54.7 25.4c-6.5 5.2-16.3 1.3-14.8-7c6.4-33.5 33-60.9 68.2-66.3c2.6-.4 5.3-.7 7.9-.8l19.4-131.3c2-13.8 8-32.7 25-45.9C278.2 53.2 310.5 37 363.2 32.2c-.8-.7-1.6-1.4-2.4-2.1C340.6 14.5 288.4-11.5 175.7 5.6S20.5 63 5.7 83.9C0 91.9-.8 102 .6 111.8L24.8 276.1c5.5 37.3 21.5 72.6 49.8 97.2zm87.7-219.6c4.4-3.1 10.8-2 11.8 3.3c.1 .5 .2 1.1 .3 1.6c3.2 21.8-11.6 42-33.1 45.3s-41.5-11.8-44.7-33.5c-.1-.5-.1-1.1-.2-1.6c-.6-5.4 5.2-8.4 10.3-6.7c9 3 18.8 3.9 28.7 2.4s19.1-5.3 26.8-10.8zM261.6 390c29.4 46.9 79.5 110.9 137.6 119.7s124.5-37.5 166.1-73.7c28.3-24.5 44.3-59.8 49.8-97.2l24.2-164.3c1.4-9.8 .6-19.9-5.1-27.9c-14.8-20.9-57.3-61.2-170-78.3S299.4 77.2 279.2 92.8c-7.8 6-11.5 15.4-12.9 25.2L242.1 282.3c-5.5 37.3-.4 75.8 19.6 107.7zM404.5 235.3c-7.7-5.5-16.8-9.3-26.8-10.8s-19.8-.6-28.7 2.4c-5.1 1.7-10.9-1.3-10.3-6.7c.1-.5 .1-1.1 .2-1.6c3.2-21.8 23.2-36.8 44.7-33.5s36.3 23.5 33.1 45.3c-.1 .5-.2 1.1-.3 1.6c-1 5.3-7.4 6.4-11.8 3.3zm136.2 15.5c-1 5.3-7.4 6.4-11.8 3.3c-7.7-5.5-16.8-9.3-26.8-10.8s-19.8-.6-28.7 2.4c-5.1 1.7-10.9-1.3-10.3-6.7c.1-.5 .1-1.1 .2-1.6c3.2-21.8 23.2-36.8 44.7-33.5s36.3 23.5 33.1 45.3c-.1 .5-.2 1.1-.3 1.6zM530 350.2c-19.6 44.7-66.8 72.5-116.8 64.9s-87.1-48.2-93-96.7c-1-8.3 8.9-12.1 15.2-6.7c23.9 20.8 53.6 35.3 87 40.3s66.1 .1 94.9-12.8c7.6-3.4 16 3.2 12.6 10.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mastodon": { + "changes": [ + "5.0.11", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f6", + "label": "Mastodon", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M433 179.11c0-97.2-63.71-125.7-63.71-125.7-62.52-28.7-228.56-28.4-290.48 0 0 0-63.72 28.5-63.72 125.7 0 115.7-6.6 259.4 105.63 289.1 40.51 10.7 75.32 13 103.33 11.4 50.81-2.8 79.32-18.1 79.32-18.1l-1.7-36.9s-36.31 11.4-77.12 10.1c-40.41-1.4-83-4.4-89.63-54a102.54 102.54 0 0 1-.9-13.9c85.63 20.9 158.65 9.1 178.75 6.7 56.12-6.7 105-41.3 111.23-72.9 9.8-49.8 9-121.5 9-121.5zm-75.12 125.2h-46.63v-114.2c0-49.7-64-51.6-64 6.9v62.5h-46.33V197c0-58.5-64-56.6-64-6.9v114.2H90.19c0-122.1-5.2-147.9 18.41-175 25.9-28.9 79.82-30.8 103.83 6.1l11.6 19.5 11.6-19.5c24.11-37.1 78.12-34.8 103.83-6.1 23.71 27.3 18.4 53 18.4 175z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mattress-pillow": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air mattress", + "mattress", + "pillow", + "rest", + "sleep" + ] + }, + "unicode": "e525", + "label": "Mattress Pillow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 64H64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H256V64zm32 384H576c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H288V448zM64 160c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "maxcdn": { + "changes": [ + "3.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f136", + "label": "MaxCDN", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "maximize": { + "aliases": { + "names": [ + "expand-arrows-alt" + ], + "unicodes": { + "secondary": [ + "10f31e" + ] + } + }, + "changes": [ + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "fullscreen", + "move", + "resize" + ] + }, + "unicode": "f31e", + "label": "Maximize", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M168 32H24C10.7 32 0 42.7 0 56V200c0 9.7 5.8 18.5 14.8 22.2s19.3 1.7 26.2-5.2l40-40 79 79L81 335 41 295c-6.9-6.9-17.2-8.9-26.2-5.2S0 302.3 0 312V456c0 13.3 10.7 24 24 24H168c9.7 0 18.5-5.8 22.2-14.8s1.7-19.3-5.2-26.2l-40-40 79-79 79 79-40 40c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8H424c13.3 0 24-10.7 24-24V312c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2l-40 40-79-79 79-79 40 40c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V56c0-13.3-10.7-24-24-24H280c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l40 40-79 79-79-79 40-40c6.9-6.9 8.9-17.2 5.2-26.2S177.7 32 168 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mdb": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f8ca", + "label": "Material Design for Bootstrap", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M17.37 160.41L7 352h43.91l5.59-79.83L84.43 352h44.71l25.54-77.43 4.79 77.43H205l-12.79-191.59H146.7L106 277.74 63.67 160.41zm281 0h-47.9V352h47.9s95 .8 94.2-95.79c-.78-94.21-94.18-95.78-94.18-95.78zm-1.2 146.46V204.78s46 4.27 46.8 50.57-46.78 51.54-46.78 51.54zm238.29-74.24a56.16 56.16 0 0 0 8-38.31c-5.34-35.76-55.08-34.32-55.08-34.32h-51.9v191.58H482s87 4.79 87-63.85c0-43.14-33.52-55.08-33.52-55.08zm-51.9-31.94s13.57-1.59 16 9.59c1.43 6.66-4 12-4 12h-12v-21.57zm-.1 109.46l.1-24.92V267h.08s41.58-4.73 41.19 22.43c-.33 25.65-41.35 20.74-41.35 20.74z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "medal": { + "aliases": { + "unicodes": { + "composite": [ + "1f3c5" + ], + "secondary": [ + "10f5a2" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "award", + "medal", + "ribbon", + "sports medal", + "star", + "trophy" + ] + }, + "unicode": "f5a2", + "label": "Medal", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M4.1 38.2C1.4 34.2 0 29.4 0 24.6C0 11 11 0 24.6 0H133.9c11.2 0 21.7 5.9 27.4 15.5l68.5 114.1c-48.2 6.1-91.3 28.6-123.4 61.9L4.1 38.2zm503.7 0L405.6 191.5c-32.1-33.3-75.2-55.8-123.4-61.9L350.7 15.5C356.5 5.9 366.9 0 378.1 0H487.4C501 0 512 11 512 24.6c0 4.8-1.4 9.6-4.1 13.6zM80 336a176 176 0 1 1 352 0A176 176 0 1 1 80 336zm184.4-94.9c-3.4-7-13.3-7-16.8 0l-22.4 45.4c-1.4 2.8-4 4.7-7 5.1L168 298.9c-7.7 1.1-10.7 10.5-5.2 16l36.3 35.4c2.2 2.2 3.2 5.2 2.7 8.3l-8.6 49.9c-1.3 7.6 6.7 13.5 13.6 9.9l44.8-23.6c2.7-1.4 6-1.4 8.7 0l44.8 23.6c6.9 3.6 14.9-2.2 13.6-9.9l-8.6-49.9c-.5-3 .5-6.1 2.7-8.3l36.3-35.4c5.6-5.4 2.5-14.8-5.2-16l-50.1-7.3c-3-.4-5.7-2.4-7-5.1l-22.4-45.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "medapps": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3c6", + "label": "MedApps", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "medium": { + "aliases": { + "names": [ + "medium-m" + ], + "unicodes": { + "composite": [ + "f3c7" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f23a", + "label": "Medium", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M180.5,74.262C80.813,74.262,0,155.633,0,256S80.819,437.738,180.5,437.738,361,356.373,361,256,280.191,74.262,180.5,74.262Zm288.25,10.646c-49.845,0-90.245,76.619-90.245,171.095s40.406,171.1,90.251,171.1,90.251-76.619,90.251-171.1H559C559,161.5,518.6,84.908,468.752,84.908Zm139.506,17.821c-17.526,0-31.735,68.628-31.735,153.274s14.2,153.274,31.735,153.274S640,340.631,640,256C640,171.351,625.785,102.729,608.258,102.729Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "medrt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3c8", + "label": "MRT", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 544, + 512 + ], + "width": 544, + "height": 512, + "path": "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "meetup": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2e0", + "label": "Meetup", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "megaport": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5a3", + "label": "Megaport", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M214.5 209.6v66.2l33.5 33.5 33.3-33.3v-66.4l-33.4-33.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm145.1 414.4L367 441.6l-26-19.2v-65.5l-33.4-33.4-33.4 33.4v65.5L248 441.6l-26.1-19.2v-65.5l-33.4-33.4-33.5 33.4v65.5l-26.1 19.2-26.1-19.2v-87l59.5-59.5V188l59.5-59.5V52.9l26.1-19.2L274 52.9v75.6l59.5 59.5v87.6l59.7 59.7v87.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "memory": { + "aliases": { + "unicodes": { + "secondary": [ + "10f538" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "DIMM", + "RAM", + "hardware", + "storage", + "technology" + ] + }, + "unicode": "f538", + "label": "Memory", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128v7.4c0 6.8 4.4 12.6 10.1 16.3C23.3 160.3 32 175.1 32 192s-8.7 31.7-21.9 40.3C4.4 236 0 241.8 0 248.6V320H576V248.6c0-6.8-4.4-12.6-10.1-16.3C552.7 223.7 544 208.9 544 192s8.7-31.7 21.9-40.3c5.7-3.7 10.1-9.5 10.1-16.3V128c0-35.3-28.7-64-64-64H64zM576 352H0v64c0 17.7 14.3 32 32 32H80V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h48c17.7 0 32-14.3 32-32V352zM192 160v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32zm128 0v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32zm128 0v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mendeley": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f7b3", + "label": "Mendeley", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M624.6 325.2c-12.3-12.4-29.7-19.2-48.4-17.2-43.3-1-49.7-34.9-37.5-98.8 22.8-57.5-14.9-131.5-87.4-130.8-77.4.7-81.7 82-130.9 82-48.1 0-54-81.3-130.9-82-72.9-.8-110.1 73.3-87.4 130.8 12.2 63.9 5.8 97.8-37.5 98.8-21.2-2.3-37 6.5-53 22.5-19.9 19.7-19.3 94.8 42.6 102.6 47.1 5.9 81.6-42.9 61.2-87.8-47.3-103.7 185.9-106.1 146.5-8.2-.1.1-.2.2-.3.4-26.8 42.8 6.8 97.4 58.8 95.2 52.1 2.1 85.4-52.6 58.8-95.2-.1-.2-.2-.3-.3-.4-39.4-97.9 193.8-95.5 146.5 8.2-4.6 10-6.7 21.3-5.7 33 4.9 53.4 68.7 74.1 104.9 35.2 17.8-14.8 23.1-65.6 0-88.3zm-303.9-19.1h-.6c-43.4 0-62.8-37.5-62.8-62.8 0-34.7 28.2-62.8 62.8-62.8h.6c34.7 0 62.8 28.1 62.8 62.8 0 25-19.2 62.8-62.8 62.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "menorah": { + "aliases": { + "unicodes": { + "secondary": [ + "10f676" + ] + } + }, + "changes": [ + "5.3.0", + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "candle", + "hanukkah", + "jewish", + "judaism", + "light" + ] + }, + "unicode": "f676", + "label": "Menorah", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M20.8 7.4C22.8 2.9 27.1 0 32 0s9.2 2.9 11.2 7.4L61.3 49.7c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32S0 81.7 0 64V62.8c0-4.5 .9-8.9 2.7-13.1L20.8 7.4zm96 0C118.8 2.9 123.1 0 128 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1L116.8 7.4zm77.8 42.4L212.8 7.4C214.8 2.9 219.1 0 224 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1zM308.8 7.4C310.8 2.9 315.1 0 320 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1L308.8 7.4zm77.8 42.4L404.8 7.4C406.8 2.9 411.1 0 416 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1zM500.8 7.4C502.8 2.9 507.1 0 512 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1L500.8 7.4zm77.8 42.4L596.8 7.4C598.8 2.9 603.1 0 608 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1zM32 128c17.7 0 32 14.3 32 32V288c0 17.7 14.3 32 32 32H288V160c0-17.7 14.3-32 32-32s32 14.3 32 32V320H544c17.7 0 32-14.3 32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32V288c0 53-43 96-96 96H352v64H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 160c-17.7 0-32-14.3-32-32s14.3-32 32-32H288V384H96c-53 0-96-43-96-96V160c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96 32H96V256 160c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96 32H192V256 160c0-17.7 14.3-32 32-32zm192 0c17.7 0 32 14.3 32 32v96 32H384V256 160c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96 32H480V256 160c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mercury": { + "aliases": { + "unicodes": { + "composite": [ + "263f" + ], + "secondary": [ + "10f223" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Mercury", + "gender", + "hybrid", + "transgender" + ] + }, + "unicode": "f223", + "label": "Mercury", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M56.1 7C69.8-4 90-1.8 101 12c17.6 22 44.7 36 75 36s57.3-14 75-36c11.1-13.8 31.2-16 45-5s16 31.2 5 45c-7.8 9.7-16.6 18.4-26.4 26.1C321.3 109.7 352 163.3 352 224c0 89.1-66.2 162.7-152 174.4V424h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H200v16c0 13.3-10.7 24-24 24s-24-10.7-24-24V472H120c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V398.4C66.2 386.7 0 313.1 0 224C0 163.3 30.7 109.7 77.5 78.1C67.7 70.5 58.9 61.7 51.1 52c-11.1-13.8-8.8-33.9 5-45zM64 224a112 112 0 1 0 224 0A112 112 0 1 0 64 224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "message": { + "aliases": { + "names": [ + "comment-alt" + ], + "unicodes": { + "secondary": [ + "10f27a" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "unicode": "f27a", + "label": "Message", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V352c0 35.3 28.7 64 64 64h96v80c0 6.1 3.4 11.6 8.8 14.3s11.9 2.1 16.8-1.5L309.3 416H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 368c26.5 0 48 21.5 48 48v16l72.5-54.4c8.3-6.2 18.4-9.6 28.8-9.6H448c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16V352c0 8.8 7.2 16 16 16h96zm48 124l-.2 .2-5.1 3.8-17.1 12.8c-4.8 3.6-11.3 4.2-16.8 1.5s-8.8-8.2-8.8-14.3V474.7v-6.4V468v-4V416H112 64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0H448c35.3 0 64 28.7 64 64V352c0 35.3-28.7 64-64 64H309.3L208 492z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "meta": { + "changes": [ + "6.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e49b", + "label": "Meta", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 317.9C640 409.2 600.6 466.4 529.7 466.4C467.1 466.4 433.9 431.8 372.8 329.8L341.4 277.2C333.1 264.7 326.9 253 320.2 242.2C300.1 276 273.1 325.2 273.1 325.2C206.1 441.8 168.5 466.4 116.2 466.4C43.42 466.4 0 409.1 0 320.5C0 177.5 79.78 42.4 183.9 42.4C234.1 42.4 277.7 67.08 328.7 131.9C365.8 81.8 406.8 42.4 459.3 42.4C558.4 42.4 640 168.1 640 317.9H640zM287.4 192.2C244.5 130.1 216.5 111.7 183 111.7C121.1 111.7 69.22 217.8 69.22 321.7C69.22 370.2 87.7 397.4 118.8 397.4C149 397.4 167.8 378.4 222 293.6C222 293.6 246.7 254.5 287.4 192.2V192.2zM531.2 397.4C563.4 397.4 578.1 369.9 578.1 322.5C578.1 198.3 523.8 97.08 454.9 97.08C421.7 97.08 393.8 123 360 175.1C369.4 188.9 379.1 204.1 389.3 220.5L426.8 282.9C485.5 377 500.3 397.4 531.2 397.4L531.2 397.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "meteor": { + "aliases": { + "unicodes": { + "composite": [ + "2604" + ], + "secondary": [ + "10f753" + ] + } + }, + "changes": [ + "5.5.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "armageddon", + "asteroid", + "comet", + "shooting star", + "space" + ] + }, + "unicode": "f753", + "label": "Meteor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M493.7 .9L299.4 75.6l2.3-29.3c1-12.8-12.8-21.5-24-15.1L101.3 133.4C38.6 169.7 0 236.6 0 309C0 421.1 90.9 512 203 512c72.4 0 139.4-38.6 175.7-101.3L480.8 234.3c6.5-11.1-2.2-25-15.1-24l-29.3 2.3L511.1 18.3c.6-1.5 .9-3.2 .9-4.8C512 6 506 0 498.5 0c-1.7 0-3.3 .3-4.8 .9zM192 192a128 128 0 1 1 0 256 128 128 0 1 1 0-256zm0 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm16 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microblog": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e01a", + "label": "Micro.blog", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M399.36,362.23c29.49-34.69,47.1-78.34,47.1-125.79C446.46,123.49,346.86,32,224,32S1.54,123.49,1.54,236.44,101.14,440.87,224,440.87a239.28,239.28,0,0,0,79.44-13.44,7.18,7.18,0,0,1,8.12,2.56c18.58,25.09,47.61,42.74,79.89,49.92a4.42,4.42,0,0,0,5.22-3.43,4.37,4.37,0,0,0-.85-3.62,87,87,0,0,1,3.69-110.69ZM329.52,212.4l-57.3,43.49L293,324.75a6.5,6.5,0,0,1-9.94,7.22L224,290.92,164.94,332a6.51,6.51,0,0,1-9.95-7.22l20.79-68.86-57.3-43.49a6.5,6.5,0,0,1,3.8-11.68l71.88-1.51,23.66-67.92a6.5,6.5,0,0,1,12.28,0l23.66,67.92,71.88,1.51a6.5,6.5,0,0,1,3.88,11.68Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "microchip": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2db" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cpu", + "hardware", + "processor", + "technology" + ] + }, + "unicode": "f2db", + "label": "Microchip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64c-35.3 0-64 28.7-64 64H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H64v56H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H64v56H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H64c0 35.3 28.7 64 64 64v40c0 13.3 10.7 24 24 24s24-10.7 24-24V448h56v40c0 13.3 10.7 24 24 24s24-10.7 24-24V448h56v40c0 13.3 10.7 24 24 24s24-10.7 24-24V448c35.3 0 64-28.7 64-64h40c13.3 0 24-10.7 24-24s-10.7-24-24-24H448V280h40c13.3 0 24-10.7 24-24s-10.7-24-24-24H448V176h40c13.3 0 24-10.7 24-24s-10.7-24-24-24H448c0-35.3-28.7-64-64-64V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H280V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H176V24zM160 128H352c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32zm192 32H160V352H352V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microphone": { + "aliases": { + "unicodes": { + "secondary": [ + "10f130" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "audio", + "information", + "podcast", + "public", + "record", + "sing", + "sound", + "voice" + ] + }, + "unicode": "f130", + "label": "Microphone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M176 0C123 0 80 43 80 96V256c0 53 43 96 96 96s96-43 96-96V96c0-53-43-96-96-96zM48 216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 89.1 66.2 162.7 152 174.4V464H104c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H200V430.4c85.8-11.7 152-85.3 152-174.4V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 70.7-57.3 128-128 128s-128-57.3-128-128V216z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microphone-lines": { + "aliases": { + "names": [ + "microphone-alt" + ], + "unicodes": { + "composite": [ + "1f399" + ], + "secondary": [ + "10f3c9" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "mic", + "microphone", + "music", + "podcast", + "record", + "sing", + "sound", + "studio", + "studio microphone", + "voice" + ] + }, + "unicode": "f3c9", + "label": "Microphone Lines", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M80 96V256c0 53 43 96 96 96s96-43 96-96H192c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V192H192c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V128H192c-8.8 0-16-7.2-16-16s7.2-16 16-16h80c0-53-43-96-96-96S80 43 80 96zM304 240v16c0 70.7-57.3 128-128 128s-128-57.3-128-128V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 89.1 66.2 162.7 152 174.4V464H104c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H200V430.4c85.8-11.7 152-85.3 152-174.4V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microphone-lines-slash": { + "aliases": { + "names": [ + "microphone-alt-slash" + ], + "unicodes": { + "secondary": [ + "10f539" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "disable", + "mute", + "podcast", + "record", + "sing", + "sound", + "voice" + ] + }, + "unicode": "f539", + "label": "Microphone Lines Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c15.2-26 23.9-56.3 23.9-88.7V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v24 16c0 21.2-5.1 41.1-14.2 58.7L416 300.8V256H358.9l-34.5-27c2.9-3.1 7-5 11.6-5h80V192H336c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V128H336c-8.8 0-16-7.2-16-16s7.2-16 16-16h80c0-53-43-96-96-96s-96 43-96 96v54.3L38.8 5.1zm362.5 407l-43.1-33.9C346.1 382 333.3 384 320 384c-70.7 0-128-57.3-128-128v-8.7L144.7 210c-.5 1.9-.7 3.9-.7 6v40c0 89.1 66.2 162.7 152 174.4V464H248c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V430.4c20.4-2.8 39.7-9.1 57.3-18.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microphone-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f131" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "disable", + "mute", + "podcast", + "record", + "sing", + "sound", + "voice" + ] + }, + "unicode": "f131", + "label": "Microphone Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c15.2-26 23.9-56.3 23.9-88.7V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 21.2-5.1 41.1-14.2 58.7L416 300.8V96c0-53-43-96-96-96s-96 43-96 96v54.3L38.8 5.1zM344 430.4c20.4-2.8 39.7-9.1 57.3-18.2l-43.1-33.9C346.1 382 333.3 384 320 384c-70.7 0-128-57.3-128-128v-8.7L144.7 210c-.5 1.9-.7 3.9-.7 6v40c0 89.1 66.2 162.7 152 174.4V464H248c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V430.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microscope": { + "aliases": { + "unicodes": { + "composite": [ + "1f52c" + ], + "secondary": [ + "10f610" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "electron", + "lens", + "microscope", + "optics", + "science", + "shrink", + "testing", + "tool" + ] + }, + "unicode": "f610", + "label": "Microscope", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 32c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32c17.7 0 32 14.3 32 32V288c0 17.7-14.3 32-32 32c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32zM32 448H320c70.7 0 128-57.3 128-128s-57.3-128-128-128V128c106 0 192 86 192 192c0 49.2-18.5 94-48.9 128H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm80-64H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microsoft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ca", + "label": "Microsoft", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mill-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Mill Sign", + "currency" + ] + }, + "unicode": "e1ed", + "label": "Mill Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M302.1 42.8c5.9-16.6-2.7-35-19.4-40.9s-35 2.7-40.9 19.4L208 116.1c-5.7 4-11.1 8.5-16 13.5C171.7 108.9 143.3 96 112 96c-19.5 0-37.8 5-53.7 13.7C52.5 101.4 42.9 96 32 96C14.3 96 0 110.3 0 128v80V416c0 17.7 14.3 32 32 32s32-14.3 32-32V208c0-26.5 21.5-48 48-48s48 21.5 48 48v42.5L81.9 469.2c-5.9 16.6 2.7 35 19.4 40.9s35-2.7 40.9-19.4l21.4-60C168.9 441 179.6 448 192 448c17.7 0 32-14.3 32-32V261.5l35.7-100c3.9-1 8.1-1.6 12.3-1.6c26.5 0 48 21.5 48 48V416c0 17.7 14.3 32 32 32s32-14.3 32-32V208c0-58.2-44.3-106-101.1-111.5l19.2-53.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "minimize": { + "aliases": { + "names": [ + "compress-arrows-alt" + ], + "unicodes": { + "secondary": [ + "10f78c" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "fullscreen", + "minimize", + "move", + "resize", + "shrink", + "smaller" + ] + }, + "unicode": "f78c", + "label": "Minimize", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M456 224H312c-13.3 0-24-10.7-24-24V56c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l40 40L442.3 5.7C446 2 450.9 0 456 0s10 2 13.7 5.7l36.7 36.7C510 46 512 50.9 512 56s-2 10-5.7 13.7L433 143l40 40c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8zm0 64c9.7 0 18.5 5.8 22.2 14.8s1.7 19.3-5.2 26.2l-40 40 73.4 73.4c3.6 3.6 5.7 8.5 5.7 13.7s-2 10-5.7 13.7l-36.7 36.7C466 510 461.1 512 456 512s-10-2-13.7-5.7L369 433l-40 40c-6.9 6.9-17.2 8.9-26.2 5.2s-14.8-12.5-14.8-22.2V312c0-13.3 10.7-24 24-24H456zm-256 0c13.3 0 24 10.7 24 24V456c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-40-40L69.7 506.3C66 510 61.1 512 56 512s-10-2-13.7-5.7L5.7 469.7C2 466 0 461.1 0 456s2-10 5.7-13.7L79 369 39 329c-6.9-6.9-8.9-17.2-5.2-26.2s12.5-14.8 22.2-14.8H200zM56 224c-9.7 0-18.5-5.8-22.2-14.8s-1.7-19.3 5.2-26.2l40-40L5.7 69.7C2 66 0 61.1 0 56s2-10 5.7-13.7L42.3 5.7C46 2 50.9 0 56 0s10 2 13.7 5.7L143 79l40-40c6.9-6.9 17.2-8.9 26.2-5.2s14.8 12.5 14.8 22.2V200c0 13.3-10.7 24-24 24H56z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "minus": { + "aliases": { + "names": [ + "subtract" + ], + "unicodes": { + "composite": [ + "2013", + "2212", + "2796" + ], + "secondary": [ + "10f068" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "En Dash", + "Minus Sign", + "collapse", + "delete", + "hide", + "math", + "minify", + "minus", + "negative", + "remove", + "sign", + "trash", + "−" + ] + }, + "unicode": "f068", + "label": "Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M416 256c0 17.7-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mitten": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7b5" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing", + "cold", + "glove", + "hands", + "knitted", + "seasonal", + "warmth" + ] + }, + "unicode": "f7b5", + "label": "Mitten", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 384H64L5.4 178.9C1.8 166.4 0 153.4 0 140.3C0 62.8 62.8 0 140.3 0h3.4c66 0 123.5 44.9 139.5 108.9l31.4 125.8 17.6-20.1C344.8 200.2 362.9 192 382 192h2.8c34.9 0 63.3 28.3 63.3 63.3c0 15.9-6 31.2-16.8 42.9L352 384zM32 448c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mix": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3cb", + "label": "Mix", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mixcloud": { + "changes": [ + "4.5.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f289", + "label": "Mixcloud", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M212.98 346.566H179.789V195.114L185.973 173.47H175.262L137.127 346.566H76.1069L37.7323 173.47H27.276L33.1913 195.114V346.566H0V165H65.6506L102.248 338.096H110.747L147.329 165H212.98L212.98 346.566ZM544.459 283.589L458.434 345.655V307.534L531.329 255.776L458.434 204.017V165.896L544.459 228.231H553.721L640 165.896V204.017L566.866 255.776L640 307.549V345.655L553.721 283.589H544.459ZM430.157 272.311H248.113V239.255H430.157V272.311Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mixer": { + "changes": [ + "5.12.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e056", + "label": "Mixer", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M114.57,76.07a45.71,45.71,0,0,0-67.51-6.41c-17.58,16.18-19,43.52-4.75,62.77l91.78,123L41.76,379.58c-14.23,19.25-13.11,46.59,4.74,62.77A45.71,45.71,0,0,0,114,435.94L242.89,262.7a12.14,12.14,0,0,0,0-14.23ZM470.24,379.58,377.91,255.45l91.78-123c14.22-19.25,12.83-46.59-4.75-62.77a45.71,45.71,0,0,0-67.51,6.41l-128,172.12a12.14,12.14,0,0,0,0,14.23L398,435.94a45.71,45.71,0,0,0,67.51,6.41C483.35,426.17,484.47,398.83,470.24,379.58Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mizuni": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3cc", + "label": "Mizuni", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mobile": { + "aliases": { + "names": [ + "mobile-android", + "mobile-phone" + ], + "unicodes": { + "composite": [ + "1f4f1" + ], + "secondary": [ + "10f3ce" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "android", + "call", + "cell", + "cell phone", + "device", + "mobile", + "mobile phone", + "number", + "phone", + "screen", + "telephone", + "text" + ] + }, + "unicode": "f3ce", + "label": "Mobile", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zm80 432h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mobile-button": { + "aliases": { + "unicodes": { + "secondary": [ + "10f10b" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "call", + "cell phone", + "device", + "iphone", + "number", + "screen", + "telephone" + ] + }, + "unicode": "f10b", + "label": "Mobile button", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM176 400a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mobile-retro": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cellphone", + "cellular", + "phone" + ] + }, + "unicode": "e527", + "label": "Mobile Retro", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H256c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm64 96v64c0 17.7 14.3 32 32 32H224c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32zM80 352a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm24 56a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm56-56a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm24 56a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm56-56a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm24 56a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM128 48c-8.8 0-16 7.2-16 16s7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16H128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mobile-screen": { + "aliases": { + "names": [ + "mobile-android-alt" + ], + "unicodes": { + "secondary": [ + "10f3cf" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "android", + "call", + "cell phone", + "device", + "number", + "screen", + "telephone", + "text" + ] + }, + "unicode": "f3cf", + "label": "Mobile screen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H288c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM128 448c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16H144c-8.8 0-16 7.2-16 16zM288 64H64V384H288V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mobile-screen-button": { + "aliases": { + "names": [ + "mobile-alt" + ], + "unicodes": { + "secondary": [ + "10f3cd" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "call", + "cell phone", + "device", + "iphone", + "number", + "screen", + "telephone" + ] + }, + "unicode": "f3cd", + "label": "Mobile Screen Button", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H288c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM208 448a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM288 64H64V384H288V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "modx": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f285", + "label": "MODX", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "monero": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d0", + "label": "Monero", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "money-bill": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0d6" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f0d6", + "label": "Money Bill", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm64 320H64V320c35.3 0 64 28.7 64 64zM64 192V128h64c0 35.3-28.7 64-64 64zM448 384c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM288 160a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bill-1": { + "aliases": { + "names": [ + "money-bill-alt" + ], + "unicodes": { + "secondary": [ + "10f3d1" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f3d1", + "label": "Money Bill 1", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm64 320H64V320c35.3 0 64 28.7 64 64zM64 192V128h64c0 35.3-28.7 64-64 64zM448 384c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM176 256a112 112 0 1 1 224 0 112 112 0 1 1 -224 0zm76-48c0 9.7 6.9 17.7 16 19.6V276h-4c-11 0-20 9-20 20s9 20 20 20h24 24c11 0 20-9 20-20s-9-20-20-20h-4V208c0-11-9-20-20-20H272c-11 0-20 9-20 20z" + }, + "regular": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 112c0 35.3-28.7 64-64 64V336c35.3 0 64 28.7 64 64H464c0-35.3 28.7-64 64-64V176c-35.3 0-64-28.7-64-64H112zM0 128C0 92.7 28.7 64 64 64H512c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM176 256a112 112 0 1 1 224 0 112 112 0 1 1 -224 0zm80-48c0 8.8 7.2 16 16 16v64h-8c-8.8 0-16 7.2-16 16s7.2 16 16 16h24 24c8.8 0 16-7.2 16-16s-7.2-16-16-16h-8V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "money-bill-1-wave": { + "aliases": { + "names": [ + "money-bill-wave-alt" + ], + "unicodes": { + "secondary": [ + "10f53b" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f53b", + "label": "Money Bill 1 Wave", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 112.5V422.3c0 18 10.1 35 27 41.3c87 32.5 174 10.3 261-11.9c79.8-20.3 159.6-40.7 239.3-18.9c23 6.3 48.7-9.5 48.7-33.4V89.7c0-18-10.1-35-27-41.3C462 15.9 375 38.1 288 60.3C208.2 80.6 128.4 100.9 48.7 79.1C25.6 72.8 0 88.6 0 112.5zM128 416H64V352c35.3 0 64 28.7 64 64zM64 224V160h64c0 35.3-28.7 64-64 64zM448 352c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM384 256c0 61.9-43 112-96 112s-96-50.1-96-112s43-112 96-112s96 50.1 96 112zM252 208c0 9.7 6.9 17.7 16 19.6V276h-4c-11 0-20 9-20 20s9 20 20 20h24 24c11 0 20-9 20-20s-9-20-20-20h-4V208c0-11-9-20-20-20H272c-11 0-20 9-20 20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bill-transfer": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "conversion", + "deposit", + "money", + "transfer", + "withdrawal" + ] + }, + "unicode": "e528", + "label": "Money Bill Transfer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M535 41c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l64 64c4.5 4.5 7 10.6 7 17s-2.5 12.5-7 17l-64 64c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l23-23L384 112c-13.3 0-24-10.7-24-24s10.7-24 24-24l174.1 0L535 41zM105 377l-23 23L256 400c13.3 0 24 10.7 24 24s-10.7 24-24 24L81.9 448l23 23c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L7 441c-4.5-4.5-7-10.6-7-17s2.5-12.5 7-17l64-64c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM96 64H337.9c-3.7 7.2-5.9 15.3-5.9 24c0 28.7 23.3 52 52 52l117.4 0c-4 17 .6 35.5 13.8 48.8c20.3 20.3 53.2 20.3 73.5 0L608 169.5V384c0 35.3-28.7 64-64 64H302.1c3.7-7.2 5.9-15.3 5.9-24c0-28.7-23.3-52-52-52l-117.4 0c4-17-.6-35.5-13.8-48.8c-20.3-20.3-53.2-20.3-73.5 0L32 342.5V128c0-35.3 28.7-64 64-64zm64 64H96v64c35.3 0 64-28.7 64-64zM544 320c-35.3 0-64 28.7-64 64h64V320zM320 352a96 96 0 1 0 0-192 96 96 0 1 0 0 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bill-trend-up": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "bonds", + "inflation", + "market", + "stocks", + "trade" + ] + }, + "unicode": "e529", + "label": "Money Bill Trend Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M470.7 9.4c3 3.1 5.3 6.6 6.9 10.3s2.4 7.8 2.4 12.2l0 .1v0 96c0 17.7-14.3 32-32 32s-32-14.3-32-32V109.3L310.6 214.6c-11.8 11.8-30.8 12.6-43.5 1.7L176 138.1 84.8 216.3c-13.4 11.5-33.6 9.9-45.1-3.5s-9.9-33.6 3.5-45.1l112-96c12-10.3 29.7-10.3 41.7 0l89.5 76.7L370.7 64H352c-17.7 0-32-14.3-32-32s14.3-32 32-32h96 0c8.8 0 16.8 3.6 22.6 9.3l.1 .1zM0 304c0-26.5 21.5-48 48-48H464c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V304zM48 416v48H96c0-26.5-21.5-48-48-48zM96 304H48v48c26.5 0 48-21.5 48-48zM464 416c-26.5 0-48 21.5-48 48h48V416zM416 304c0 26.5 21.5 48 48 48V304H416zm-96 80a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bill-wave": { + "aliases": { + "unicodes": { + "secondary": [ + "10f53a" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f53a", + "label": "Money Bill Wave", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 112.5V422.3c0 18 10.1 35 27 41.3c87 32.5 174 10.3 261-11.9c79.8-20.3 159.6-40.7 239.3-18.9c23 6.3 48.7-9.5 48.7-33.4V89.7c0-18-10.1-35-27-41.3C462 15.9 375 38.1 288 60.3C208.2 80.6 128.4 100.9 48.7 79.1C25.6 72.8 0 88.6 0 112.5zM288 352c-44.2 0-80-43-80-96s35.8-96 80-96s80 43 80 96s-35.8 96-80 96zM64 352c35.3 0 64 28.7 64 64H64V352zm64-208c0 35.3-28.7 64-64 64V144h64zM512 304v64H448c0-35.3 28.7-64 64-64zM448 96h64v64c-35.3 0-64-28.7-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bill-wheat": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agribusiness", + "agriculture", + "farming", + "food", + "livelihood", + "subsidy" + ] + }, + "unicode": "e52a", + "label": "Money Bill Wheat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 0c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80c0-8.8 7.2-16 16-16zM56 16h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56C42.7 64 32 53.3 32 40s10.7-24 24-24zM24 88H136c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24S10.7 88 24 88zm8 96c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24zM272 16c0-8.8 7.2-16 16-16c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80zM400 0c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80c0-8.8 7.2-16 16-16zm80 144c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM352 128c8.8 0 16 7.2 16 16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-96 16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM0 304c0-26.5 21.5-48 48-48H464c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V304zM48 416v48H96c0-26.5-21.5-48-48-48zM96 304H48v48c26.5 0 48-21.5 48-48zM464 416c-26.5 0-48 21.5-48 48h48V416zM416 304c0 26.5 21.5 48 48 48V304H416zm-96 80a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bills": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atm", + "cash", + "money", + "moolah" + ] + }, + "unicode": "e1f3", + "label": "Money Bills", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 96V320c0 35.3 28.7 64 64 64H576c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H160c-35.3 0-64 28.7-64 64zm64 160c35.3 0 64 28.7 64 64H160V256zM224 96c0 35.3-28.7 64-64 64V96h64zM576 256v64H512c0-35.3 28.7-64 64-64zM512 96h64v64c-35.3 0-64-28.7-64-64zM288 208a80 80 0 1 1 160 0 80 80 0 1 1 -160 0zM48 120c0-13.3-10.7-24-24-24S0 106.7 0 120V360c0 66.3 53.7 120 120 120H520c13.3 0 24-10.7 24-24s-10.7-24-24-24H120c-39.8 0-72-32.2-72-72V120z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f53c" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank check", + "buy", + "checkout", + "cheque", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f53c", + "label": "Money Check", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm48 160H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zM96 336c0-8.8 7.2-16 16-16H464c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zM376 160h80c13.3 0 24 10.7 24 24v48c0 13.3-10.7 24-24 24H376c-13.3 0-24-10.7-24-24V184c0-13.3 10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-check-dollar": { + "aliases": { + "names": [ + "money-check-alt" + ], + "unicodes": { + "secondary": [ + "10f53d" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank check", + "buy", + "checkout", + "cheque", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f53d", + "label": "Money Check Dollar", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zM272 192H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H272c-8.8 0-16-7.2-16-16s7.2-16 16-16zM256 304c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H272c-8.8 0-16-7.2-16-16zM164 152v13.9c7.5 1.2 14.6 2.9 21.1 4.7c10.7 2.8 17 13.8 14.2 24.5s-13.8 17-24.5 14.2c-11-2.9-21.6-5-31.2-5.2c-7.9-.1-16 1.8-21.5 5c-4.8 2.8-6.2 5.6-6.2 9.3c0 1.8 .1 3.5 5.3 6.7c6.3 3.8 15.5 6.7 28.3 10.5l.7 .2c11.2 3.4 25.6 7.7 37.1 15c12.9 8.1 24.3 21.3 24.6 41.6c.3 20.9-10.5 36.1-24.8 45c-7.2 4.5-15.2 7.3-23.2 9V360c0 11-9 20-20 20s-20-9-20-20V345.4c-10.3-2.2-20-5.5-28.2-8.4l0 0 0 0c-2.1-.7-4.1-1.4-6.1-2.1c-10.5-3.5-16.1-14.8-12.6-25.3s14.8-16.1 25.3-12.6c2.5 .8 4.9 1.7 7.2 2.4c13.6 4.6 24 8.1 35.1 8.5c8.6 .3 16.5-1.6 21.4-4.7c4.1-2.5 6-5.5 5.9-10.5c0-2.9-.8-5-5.9-8.2c-6.3-4-15.4-6.9-28-10.7l-1.7-.5c-10.9-3.3-24.6-7.4-35.6-14c-12.7-7.7-24.6-20.5-24.7-40.7c-.1-21.1 11.8-35.7 25.8-43.9c6.9-4.1 14.5-6.8 22.2-8.5V152c0-11 9-20 20-20s20 9 20 20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "monument": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5a6" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "historic", + "landmark", + "memorable" + ] + }, + "unicode": "f5a6", + "label": "Monument", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M180.7 4.7c6.2-6.2 16.4-6.2 22.6 0l80 80c2.5 2.5 4.1 5.8 4.6 9.3l40.2 322H55.9L96.1 94c.4-3.5 2-6.8 4.6-9.3l80-80zM152 272c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H152zM32 448H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "moon": { + "aliases": { + "unicodes": { + "composite": [ + "1f319", + "23fe" + ], + "secondary": [ + "10f186" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Power Sleep Symbol", + "contrast", + "crescent", + "crescent moon", + "dark", + "lunar", + "moon", + "night" + ] + }, + "unicode": "f186", + "label": "Moon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M223.5 32C100 32 0 132.3 0 256S100 480 223.5 480c60.6 0 115.5-24.2 155.8-63.4c5-4.9 6.3-12.5 3.1-18.7s-10.1-9.7-17-8.5c-9.8 1.7-19.8 2.6-30.1 2.6c-96.9 0-175.5-78.8-175.5-176c0-65.8 36-123.1 89.3-153.3c6.1-3.5 9.2-10.5 7.7-17.3s-7.3-11.9-14.3-12.5c-6.3-.5-12.6-.8-19-.8z" + }, + "regular": { + "lastModified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M144.7 98.7c-21 34.1-33.1 74.3-33.1 117.3c0 98 62.8 181.4 150.4 211.7c-12.4 2.8-25.3 4.3-38.6 4.3C126.6 432 48 353.3 48 256c0-68.9 39.4-128.4 96.8-157.3zm62.1-66C91.1 41.2 0 137.9 0 256C0 379.7 100 480 223.5 480c47.8 0 92-15 128.4-40.6c1.9-1.3 3.7-2.7 5.5-4c4.8-3.6 9.4-7.4 13.9-11.4c2.7-2.4 5.3-4.8 7.9-7.3c5-4.9 6.3-12.5 3.1-18.7s-10.1-9.7-17-8.5c-3.7 .6-7.4 1.2-11.1 1.6c-5 .5-10.1 .9-15.3 1c-1.2 0-2.5 0-3.7 0c-.1 0-.2 0-.3 0c-96.8-.2-175.2-78.9-175.2-176c0-54.8 24.9-103.7 64.1-136c1-.9 2.1-1.7 3.2-2.6c4-3.2 8.2-6.2 12.5-9c3.1-2 6.3-4 9.6-5.8c6.1-3.5 9.2-10.5 7.7-17.3s-7.3-11.9-14.3-12.5c-3.6-.3-7.1-.5-10.7-.6c-2.7-.1-5.5-.1-8.2-.1c-3.3 0-6.5 .1-9.8 .2c-2.3 .1-4.6 .2-6.9 .4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "mortar-pestle": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5a7" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crush", + "culinary", + "grind", + "medical", + "mix", + "pharmacy", + "prescription", + "spices" + ] + }, + "unicode": "f5a7", + "label": "Mortar Pestle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504.3 11.1C493.3-1.6 474.5-3.7 461 6.2L252.3 160H397.3L502.6 54.6c11.8-11.8 12.6-30.8 1.6-43.5zM32 192c-17.7 0-32 14.3-32 32s14.3 32 32 32c0 82.5 43.4 147.7 123.9 176.2c-11.1 13.9-19.4 30.3-23.9 48.1C127.6 497.4 142.3 512 160 512H352c17.7 0 32.4-14.6 28.1-31.7c-4.5-17.8-12.8-34.1-23.9-48.1C436.6 403.7 480 338.5 480 256c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mosque": { + "aliases": { + "unicodes": { + "composite": [ + "1f54c" + ], + "secondary": [ + "10f678" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Muslim", + "building", + "islam", + "landmark", + "mosque", + "muslim", + "religion" + ] + }, + "unicode": "f678", + "label": "Mosque", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M400 0c5 0 9.8 2.4 12.8 6.4c34.7 46.3 78.1 74.9 133.5 111.5l0 0 0 0c5.2 3.4 10.5 7 16 10.6c28.9 19.2 45.7 51.7 45.7 86.1c0 28.6-11.3 54.5-29.8 73.4H221.8c-18.4-19-29.8-44.9-29.8-73.4c0-34.4 16.7-66.9 45.7-86.1c5.4-3.6 10.8-7.1 16-10.6l0 0 0 0C309.1 81.3 352.5 52.7 387.2 6.4c3-4 7.8-6.4 12.8-6.4zM288 512V440c0-13.3-10.7-24-24-24s-24 10.7-24 24v72H192c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32H608c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H560V440c0-13.3-10.7-24-24-24s-24 10.7-24 24v72H448V454c0-19-8.4-37-23-49.2L400 384l-25 20.8C360.4 417 352 435 352 454v58H288zM70.4 5.2c5.7-4.3 13.5-4.3 19.2 0l16 12C139.8 42.9 160 83.2 160 126v2H0v-2C0 83.2 20.2 42.9 54.4 17.2l16-12zM0 160H160V296.6c-19.1 11.1-32 31.7-32 55.4V480c0 9.6 2.1 18.6 5.8 26.8c-6.6 3.4-14 5.2-21.8 5.2H48c-26.5 0-48-21.5-48-48V176 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mosquito": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bite", + "bug", + "mosquito", + "west nile" + ] + }, + "unicode": "e52b", + "label": "Mosquito", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M463.7 505.9c9.8-8.9 10.7-24.3 2.1-34.3l-42.1-49 0-54.7c0-5.5-1.8-10.8-5.1-15.1L352 266.3l0-.3L485.4 387.8C542.4 447.6 640 405.2 640 320.6c0-47.9-34-88.3-79.4-94.2l-153-23.9 40.8-40.9c7.8-7.8 9.4-20.1 3.9-29.8L428.5 90.1l38.2-50.9c8-10.6 6.1-25.9-4.3-34.1s-25.2-6.3-33.2 4.4l-48 63.9c-5.9 7.9-6.6 18.6-1.7 27.2L402.2 140 352 190.3l0-38.2c0-14.9-10.2-27.4-24-31l0-57.2c0-4.4-3.6-8-8-8s-8 3.6-8 8l0 57.2c-13.8 3.6-24 16.1-24 31l0 38.1L237.8 140l22.6-39.5c4.9-8.6 4.2-19.3-1.7-27.2l-48-63.9c-8-10.6-22.8-12.6-33.2-4.4s-12.2 23.5-4.3 34.1l38.2 50.9-23.9 41.7c-5.5 9.7-3.9 22 3.9 29.8l40.8 40.9-153 23.9C34 232.3 0 272.7 0 320.6c0 84.6 97.6 127 154.6 67.1L288 266l0 .3-66.5 86.4c-3.3 4.3-5.1 9.6-5.1 15.1l0 54.7-42.1 49c-8.6 10.1-7.7 25.5 2.1 34.3s24.7 7.9 33.4-2.1l48-55.9c3.8-4.4 5.9-10.2 5.9-16.1l0-55.4L288 344.7l0 63.1c0 17.7 14.3 32 32 32s32-14.3 32-32l0-63.1 24.3 31.6 0 55.4c0 5.9 2.1 11.7 5.9 16.1l48 55.9c8.6 10.1 23.6 11 33.4 2.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mosquito-net": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bite", + "malaria", + "mosquito", + "net" + ] + }, + "unicode": "e52c", + "label": "Mosquito Net", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M168.8 462.3c-7.9-4-11.1-13.6-7.2-21.5L192 380.2l0-44.2c0-4.2 1.7-8.3 4.7-11.3L256 265.4V242.2L139.2 344C87.8 395.3 0 358.9 0 286.3c0-41.1 30.6-75.8 71.4-80.9l159.9-23.9-49.6-41.3c-5.1-4.2-7-11.1-4.9-17.4l13.9-41.7-29-58.1c-4-7.9-.7-17.5 7.2-21.5s17.5-.7 21.5 7.2l32 64c1.9 3.8 2.2 8.2 .9 12.2l-12.5 37.6L256 160.5V137.9c0-14.9 10.1-27.3 23.8-31V63.7c0-4.5 3.7-8.2 8.2-8.2s8.2 3.7 8.2 8.2V107c13.7 3.6 23.8 16.1 23.8 31v22.6l45.4-37.8L352.8 85.1c-1.3-4-1-8.4 .9-12.2l32-64c4-7.9 13.6-11.1 21.5-7.2s11.1 13.6 7.2 21.5l-29 58.1 13.9 41.7c2.1 6.2 .1 13.1-4.9 17.4l-49.6 41.3 159.9 23.9c22.5 2.8 41.8 14.6 54.7 31.4c-2.7 2.6-5.2 5.4-7.3 8.6c-8.6-12.9-23.3-21.5-40-21.5s-31.4 8.5-40 21.5c-8.6-12.9-23.3-21.5-40-21.5c-21.7 0-40 14.3-45.9 34.1c-10.7 3.2-19.8 10.1-25.9 19.2l-40.2-35v23.1l32.4 32.4c-.3 2-.4 4.1-.4 6.2c0 16.7 8.5 31.4 21.5 40c-4 2.6-7.5 5.9-10.6 9.5L320 310.6v50c0 17.7-14.3 32-32 32s-32-14.3-32-32v-50l-32 32 0 41.4c0 2.5-.6 4.9-1.7 7.2l-32 64c-4 7.9-13.6 11.1-21.5 7.2zM512 256c8.8 0 16 7.2 16 16v16h48V272c0-8.8 7.2-16 16-16s16 7.2 16 16v16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H608v48h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H608v48h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H608v16c0 8.8-7.2 16-16 16s-16-7.2-16-16V480H528v16c0 8.8-7.2 16-16 16s-16-7.2-16-16V480H448v16c0 8.8-7.2 16-16 16s-16-7.2-16-16V480H400c-8.8 0-16-7.2-16-16s7.2-16 16-16h16V400H400c-8.8 0-16-7.2-16-16s7.2-16 16-16h16V320H400c-8.8 0-16-7.2-16-16s7.2-16 16-16h16V272c0-8.8 7.2-16 16-16s16 7.2 16 16v16h48V272c0-8.8 7.2-16 16-16zm16 112h48V320H528v48zm0 80h48V400H528v48zM448 320v48h48V320H448zm0 80v48h48V400H448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "motorcycle": { + "aliases": { + "unicodes": { + "composite": [ + "1f3cd" + ], + "secondary": [ + "10f21c" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bike", + "machine", + "motorcycle", + "racing", + "transportation", + "vehicle" + ] + }, + "unicode": "f21c", + "label": "Motorcycle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M280 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h57.7l16.4 30.3L256 192l-45.3-45.3c-12-12-28.3-18.7-45.3-18.7H64c-17.7 0-32 14.3-32 32v32h96c88.4 0 160 71.6 160 160c0 11-1.1 21.7-3.2 32h70.4c-2.1-10.3-3.2-21-3.2-32c0-52.2 25-98.6 63.7-127.8l15.4 28.6C402.4 276.3 384 312 384 352c0 70.7 57.3 128 128 128s128-57.3 128-128s-57.3-128-128-128c-13.5 0-26.5 2.1-38.7 6L418.2 128H480c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H459.6c-7.5 0-14.7 2.6-20.5 7.4L391.7 78.9l-14-26c-7-12.9-20.5-21-35.2-21H280zM462.7 311.2l28.2 52.2c6.3 11.7 20.9 16 32.5 9.7s16-20.9 9.7-32.5l-28.2-52.2c2.3-.3 4.7-.4 7.1-.4c35.3 0 64 28.7 64 64s-28.7 64-64 64s-64-28.7-64-64c0-15.5 5.5-29.7 14.7-40.8zM187.3 376c-9.5 23.5-32.5 40-59.3 40c-35.3 0-64-28.7-64-64s28.7-64 64-64c26.9 0 49.9 16.5 59.3 40h66.4C242.5 268.8 190.5 224 128 224C57.3 224 0 281.3 0 352s57.3 128 128 128c62.5 0 114.5-44.8 125.8-104H187.3zM128 384a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mound": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barrier", + "hill", + "pitcher", + "speedbump" + ] + }, + "unicode": "e52d", + "label": "Mound", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M113.1 179.2C142.8 127.7 197.6 96 257 96s114.2 31.7 143.9 83.2L509.4 368c12.3 21.3-3.1 48-27.7 48H32.3c-24.6 0-40-26.6-27.7-48L113.1 179.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mountain": { + "aliases": { + "unicodes": { + "composite": [ + "1f3d4" + ], + "secondary": [ + "10f6fc" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "glacier", + "hiking", + "hill", + "landscape", + "mountain", + "snow", + "snow-capped mountain", + "travel", + "view" + ] + }, + "unicode": "f6fc", + "label": "Mountain", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669918857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 32c12.5 0 24.1 6.4 30.7 17L503.4 394.4c5.6 8.9 8.6 19.2 8.6 29.7c0 30.9-25 55.9-55.9 55.9H55.9C25 480 0 455 0 424.1c0-10.5 3-20.8 8.6-29.7L225.2 49c6.6-10.6 18.3-17 30.8-17zm65 192L256 120.4 176.9 246.5l18.3 24.4c6.4 8.5 19.2 8.5 25.6 0l25.6-34.1c6-8.1 15.5-12.8 25.6-12.8h49z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mountain-city": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "location", + "rural", + "urban" + ] + }, + "unicode": "e52e", + "label": "Mountain City", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M336 0c-26.5 0-48 21.5-48 48v92.1l71.4 118.4c2.5-1.6 5.4-2.5 8.6-2.5h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-3.5l73.8 122.4c12.4 20.6 12.9 46.3 1.2 67.3c-.4 .8-.9 1.6-1.4 2.3H592c26.5 0 48-21.5 48-48V240c0-26.5-21.5-48-48-48H568V120c0-13.3-10.7-24-24-24s-24 10.7-24 24v72H480V48c0-26.5-21.5-48-48-48H336zm32 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V80c0-8.8 7.2-16 16-16zM352 176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V176zm160 96c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V272zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16zM224 188.9L283.8 288H223l-48 64-24.6-41.2L224 188.9zm29.4-44.2C247.1 134.3 236 128 224 128s-23.1 6.3-29.4 16.7L5.1 458.9c-6.5 10.8-6.7 24.3-.7 35.3S22 512 34.5 512H413.5c12.5 0 24-6.8 30.1-17.8s5.8-24.5-.7-35.3L253.4 144.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mountain-sun": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "country", + "hiking", + "landscape", + "rural", + "travel", + "view" + ] + }, + "unicode": "e52f", + "label": "Mountain Sun", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M560 160A80 80 0 1 0 560 0a80 80 0 1 0 0 160zM55.9 512H381.1h75H578.9c33.8 0 61.1-27.4 61.1-61.1c0-11.2-3.1-22.2-8.9-31.8l-132-216.3C495 196.1 487.8 192 480 192s-15 4.1-19.1 10.7l-48.2 79L286.8 81c-6.6-10.6-18.3-17-30.8-17s-24.1 6.4-30.8 17L8.6 426.4C3 435.3 0 445.6 0 456.1C0 487 25 512 55.9 512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mug-hot": { + "aliases": { + "unicodes": { + "composite": [ + "2615" + ], + "secondary": [ + "10f7b6" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beverage", + "caliente", + "cocoa", + "coffee", + "cup", + "drink", + "holiday", + "hot", + "hot beverage", + "hot chocolate", + "steam", + "steaming", + "tea", + "warmth" + ] + }, + "unicode": "f7b6", + "label": "Mug Hot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M88 0C74.7 0 64 10.7 64 24c0 38.9 23.4 59.4 39.1 73.1l1.1 1C120.5 112.3 128 119.9 128 136c0 13.3 10.7 24 24 24s24-10.7 24-24c0-38.9-23.4-59.4-39.1-73.1l-1.1-1C119.5 47.7 112 40.1 112 24c0-13.3-10.7-24-24-24zM32 192c-17.7 0-32 14.3-32 32V416c0 53 43 96 96 96H288c53 0 96-43 96-96h16c61.9 0 112-50.1 112-112s-50.1-112-112-112H352 32zm352 64h16c26.5 0 48 21.5 48 48s-21.5 48-48 48H384V256zM224 24c0-13.3-10.7-24-24-24s-24 10.7-24 24c0 38.9 23.4 59.4 39.1 73.1l1.1 1C232.5 112.3 240 119.9 240 136c0 13.3 10.7 24 24 24s24-10.7 24-24c0-38.9-23.4-59.4-39.1-73.1l-1.1-1C231.5 47.7 224 40.1 224 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mug-saucer": { + "aliases": { + "names": [ + "coffee" + ], + "unicodes": { + "secondary": [ + "10f0f4" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beverage", + "breakfast", + "cafe", + "drink", + "fall", + "morning", + "mug", + "seasonal", + "tea" + ] + }, + "unicode": "f0f4", + "label": "Mug Saucer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 64c0-17.7 14.3-32 32-32H448h64c70.7 0 128 57.3 128 128s-57.3 128-128 128H480c0 53-43 96-96 96H192c-53 0-96-43-96-96V64zM480 224h32c35.3 0 64-28.7 64-64s-28.7-64-64-64H480V224zM32 416H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "music": { + "aliases": { + "unicodes": { + "composite": [ + "1f3b5" + ], + "secondary": [ + "10f001" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.2.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "lyrics", + "melody", + "music", + "musical note", + "note", + "sing", + "sound" + ] + }, + "unicode": "f001", + "label": "Music", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M499.1 6.3c8.1 6 12.9 15.6 12.9 25.7v72V368c0 44.2-43 80-96 80s-96-35.8-96-80s43-80 96-80c11.2 0 22 1.6 32 4.6V147L192 223.8V432c0 44.2-43 80-96 80s-96-35.8-96-80s43-80 96-80c11.2 0 22 1.6 32 4.6V200 128c0-14.1 9.3-26.6 22.8-30.7l320-96c9.7-2.9 20.2-1.1 28.3 5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "n": { + "aliases": { + "unicodes": { + "composite": [ + "6e" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter N", + "Latin Small Letter N", + "letter", + "nay", + "no" + ] + }, + "unicode": "4e", + "label": "N", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M21.1 33.9c12.7-4.6 26.9-.7 35.5 9.6L320 359.6V64c0-17.7 14.3-32 32-32s32 14.3 32 32V448c0 13.5-8.4 25.5-21.1 30.1s-26.9 .7-35.5-9.6L64 152.4V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 50.5 8.4 38.5 21.1 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "naira-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Naira Sign", + "currency" + ] + }, + "unicode": "e1f6", + "label": "Naira Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M122.6 46.3c-7.8-11.7-22.4-17-35.9-12.9S64 49.9 64 64V256H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V320H228.2l97.2 145.8c7.8 11.7 22.4 17 35.9 12.9s22.7-16.5 22.7-30.6V320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H384V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V256H262.5L122.6 46.3zM305.1 320H320v22.3L305.1 320zM185.5 256H128V169.7L185.5 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "napster": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d2", + "label": "Napster", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "neos": { + "changes": [ + "5.2.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f612", + "label": "Neos", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M415.44 512h-95.11L212.12 357.46v91.1L125.69 512H28V29.82L68.47 0h108.05l123.74 176.13V63.45L386.69 0h97.69v461.5zM38.77 35.27V496l72-52.88V194l215.5 307.64h84.79l52.35-38.17h-78.27L69 13zm82.54 466.61l80-58.78v-101l-79.76-114.4v220.94L49 501.89h72.34zM80.63 10.77l310.6 442.57h82.37V10.77h-79.75v317.56L170.91 10.77zM311 191.65l72 102.81V15.93l-72 53v122.72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "network-wired": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6ff" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "connect", + "ethernet", + "internet", + "intranet" + ] + }, + "unicode": "f6ff", + "label": "Network Wired", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321846, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 64H384v64H256V64zM240 0c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48h48v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96v32H80c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H240c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H192V288H448v32H400c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H560c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H512V288h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V192h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H240zM96 448V384H224v64H96zm320-64H544v64H416V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "neuter": { + "aliases": { + "unicodes": { + "composite": [ + "26b2" + ], + "secondary": [ + "10f22c" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Neuter", + "gender" + ] + }, + "unicode": "f22c", + "label": "Neuter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 176a112 112 0 1 1 224 0A112 112 0 1 1 64 176zM208 349.1c81.9-15 144-86.8 144-173.1C352 78.8 273.2 0 176 0S0 78.8 0 176c0 86.3 62.1 158.1 144 173.1V480c0 17.7 14.3 32 32 32s32-14.3 32-32V349.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "newspaper": { + "aliases": { + "unicodes": { + "composite": [ + "1f4f0" + ], + "secondary": [ + "10f1ea" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "article", + "editorial", + "headline", + "journal", + "journalism", + "news", + "newspaper", + "paper", + "press" + ] + }, + "unicode": "f1ea", + "label": "Newspaper", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 96c0-35.3 28.7-64 64-64H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H80c-44.2 0-80-35.8-80-80V128c0-17.7 14.3-32 32-32s32 14.3 32 32V400c0 8.8 7.2 16 16 16s16-7.2 16-16V96zm64 24v80c0 13.3 10.7 24 24 24H424c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24H184c-13.3 0-24 10.7-24 24zm0 184c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm160 0c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H336c-8.8 0-16 7.2-16 16zM160 400c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm160 0c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H336c-8.8 0-16 7.2-16 16z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M168 80c-13.3 0-24 10.7-24 24V408c0 8.4-1.4 16.5-4.1 24H440c13.3 0 24-10.7 24-24V104c0-13.3-10.7-24-24-24H168zM72 432c13.3 0 24-10.7 24-24V104c0-39.8 32.2-72 72-72H440c39.8 0 72 32.2 72 72V408c0 39.8-32.2 72-72 72H72c-39.8 0-72-32.2-72-72V112C0 98.7 10.7 88 24 88s24 10.7 24 24V408c0 13.3 10.7 24 24 24zM176 136c0-13.3 10.7-24 24-24H408c13.3 0 24 10.7 24 24v80c0 13.3-10.7 24-24 24H200c-13.3 0-24-10.7-24-24V136zm24 136h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24s10.7-24 24-24zm144 0h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H344c-13.3 0-24-10.7-24-24s10.7-24 24-24zM200 352h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24s10.7-24 24-24zm144 0h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H344c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "nfc-directional": { + "changes": [ + "6.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connect", + "data", + "near field communication", + "nfc", + "scan", + "signal", + "transfer", + "wireless" + ] + }, + "unicode": "e530", + "label": "NFC Directional", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M211.8 488.6C213.4 491.1 213.9 494.2 213.2 497.1C212.6 500 210.8 502.6 208.3 504.2C205.7 505.8 202.7 506.3 199.7 505.7C138.3 491.8 84.1 455.8 47.53 404.5C10.97 353.2-5.395 290.3 1.57 227.7C8.536 165 38.34 107.2 85.29 65.21C132.2 23.2 193-.0131 256 0C257.5 0 258.1 .2931 260.3 .8627C261.7 1.432 262.1 2.267 264 3.319C265.1 4.371 265.9 5.619 266.5 6.993C267 8.367 267.3 9.839 267.3 11.32V112.3L291.8 86.39C292.8 85.31 294 84.44 295.4 83.84C296.7 83.23 298.2 82.9 299.7 82.86C301.2 82.81 302.6 83.06 304 83.59C305.4 84.12 306.7 84.92 307.8 85.94C308.8 86.96 309.7 88.18 310.3 89.54C310.9 90.89 311.3 92.35 311.3 93.84C311.3 95.32 311.1 96.8 310.6 98.18C310 99.57 309.2 100.8 308.2 101.9L264.2 148.5C263.1 149.6 261.9 150.5 260.5 151.1C259 151.7 257.5 152 255.1 152C254.5 152 252.9 151.7 251.5 151.1C250.1 150.5 248.8 149.6 247.8 148.5L203.7 101.9C201.7 99.74 200.6 96.83 200.7 93.84C200.7 90.84 202 87.1 204.2 85.94C206.4 83.88 209.3 82.77 212.3 82.86C215.3 82.94 218.1 84.21 220.2 86.39L244.7 112.4V22.89C188.3 25.64 134.9 48.73 94.23 87.87C53.58 127 28.49 179.6 23.61 235.8C18.73 292 34.38 348.1 67.68 393.7C100.1 439.2 149.7 471.2 204.7 483.6C207.6 484.3 210.2 486.1 211.8 488.6L211.8 488.6zM171.4 126.1C170.6 127.4 169.5 128.5 168.3 129.3C147.8 143.2 131.1 161.9 119.5 183.8C107.9 205.7 101.8 230.1 101.8 254.9C101.8 279.7 107.9 304.1 119.5 325.1C131.1 347.9 147.8 366.6 168.3 380.5C170.8 382.2 172.5 384.8 173 387.8C173.6 390.7 172.1 393.8 171.3 396.2C169.6 398.7 166.1 400.4 164 400.1C161.1 401.5 158 400.9 155.6 399.2C132 383.2 112.8 361.7 99.46 336.5C86.15 311.4 79.19 283.4 79.19 254.9C79.19 226.5 86.15 198.4 99.46 173.3C112.8 148.1 132 126.6 155.6 110.6C156.8 109.8 158.2 109.2 159.6 108.8C161.1 108.5 162.6 108.5 164.1 108.8C165.5 109 166.9 109.6 168.2 110.4C169.5 111.2 170.5 112.3 171.4 113.5C172.2 114.7 172.8 116.1 173.1 117.6C173.4 119.1 173.4 120.6 173.1 122C172.8 123.5 172.3 124.9 171.4 126.1H171.4zM340.9 383.5C341.7 382.3 342.8 381.2 343.1 380.4V380.3C364.4 366.3 381.1 347.6 392.7 325.7C404.2 303.9 410.2 279.5 410.2 254.8C410.2 230.1 404.2 205.7 392.7 183.8C381.1 161.1 364.4 143.3 343.1 129.3C342.8 128.5 341.7 127.4 340.9 126.2C340.1 124.9 339.5 123.5 339.3 122.1C338.1 120.6 339 119.1 339.3 117.7C339.6 116.2 340.2 114.8 341 113.6C341.9 112.4 342.1 111.3 344.2 110.5C345.4 109.7 346.8 109.2 348.3 108.9C349.8 108.6 351.2 108.6 352.7 108.9C354.2 109.2 355.5 109.8 356.8 110.7C380.2 126.7 399.5 148.2 412.7 173.3C426 198.4 432.1 226.4 432.1 254.8C432.1 283.3 426 311.3 412.7 336.4C399.5 361.5 380.2 383 356.8 399C355.5 399.9 354.2 400.5 352.7 400.8C351.2 401.1 349.8 401.1 348.3 400.8C346.8 400.5 345.4 399.1 344.2 399.2C342.1 398.4 341.9 397.3 341 396.1C340.2 394.9 339.6 393.5 339.3 392C339 390.6 338.1 389.1 339.3 387.6C339.5 386.2 340.1 384.8 340.9 383.5V383.5zM312.3 6.307C368.5 19.04 418.7 50.28 455 95.01C485.4 132.6 504.6 178 510.3 226C515.9 274 507.9 322.7 487.1 366.3C466.2 409.9 433.5 446.8 392.6 472.6C351.7 498.3 304.4 512 256 512C254.5 512 253.1 511.7 251.7 511.1C250.3 510.6 249.1 509.7 248 508.7C246.1 507.6 246.1 506.4 245.6 505C245 503.6 244.7 502.2 244.7 500.7V401.5L220.2 427.5C218.1 429.7 215.3 430.1 212.3 431.1C209.3 431.2 206.4 430 204.2 427.1C202 425.9 200.7 423.1 200.7 420.1C200.6 417.1 201.7 414.2 203.7 412L247.8 365.4C249.1 363.2 252.9 362 255.1 362C259.1 362 262 363.2 264.2 365.4L308.2 412C310.3 414.2 311.4 417.1 311.3 420.1C311.2 423.1 309.9 425.9 307.8 427.1C305.6 430 302.7 431.2 299.7 431.1C296.7 430.1 293.8 429.7 291.8 427.5L267.3 401.6V489.1C323.7 486.3 377.1 463.3 417.8 424.1C458.5 384.1 483.6 332.4 488.5 276.2C493.3 219.1 477.7 163.9 444.4 118.3C411.1 72.75 362.4 40.79 307.4 28.36C305.9 28.03 304.6 27.42 303.3 26.57C302.1 25.71 301.1 24.63 300.3 23.37C299.5 22.12 298.1 20.72 298.7 19.26C298.5 17.8 298.5 16.3 298.8 14.85C299.2 13.41 299.8 12.04 300.6 10.82C301.5 9.61 302.6 8.577 303.8 7.784C305.1 6.99 306.5 6.451 307.9 6.198C309.4 5.945 310.9 5.982 312.3 6.307L312.3 6.307zM353.1 256.1C353.1 287.5 335.6 317.2 303.8 339.6C301.7 341.1 299 341.9 296.4 341.6C293.7 341.4 291.2 340.3 289.4 338.4L219.3 268.6C217.1 266.5 215.1 263.6 215.9 260.6C215.9 257.6 217.1 254.7 219.2 252.6C221.4 250.5 224.2 249.3 227.2 249.3C230.2 249.3 233.1 250.5 235.2 252.6L298.3 315.4C319.1 298.3 330.5 277.5 330.5 256.1C330.5 232.2 316.4 209.1 290.8 191C288.3 189.3 286.7 186.7 286.2 183.7C285.7 180.8 286.3 177.7 288.1 175.3C289.8 172.8 292.4 171.2 295.4 170.7C298.3 170.2 301.4 170.8 303.8 172.6C335.6 195 353.1 224.7 353.1 256.1V256.1zM216.7 341.5C213.7 342 210.7 341.3 208.2 339.6C176.5 317.2 158.1 287.5 158.1 256.1C158.1 224.7 176.5 195 208.2 172.6C210.4 171 213.1 170.3 215.7 170.5C218.4 170.8 220.8 171.9 222.7 173.8L292.8 243.6C294.9 245.7 296.1 248.6 296.1 251.6C296.1 254.6 294.1 257.4 292.8 259.6C290.7 261.7 287.8 262.9 284.9 262.9C281.9 262.9 278.1 261.7 276.9 259.6L213.8 196.7C192.9 214 181.6 234.7 181.6 256.1C181.6 279.1 195.7 303.1 221.3 321.1C223.7 322.9 225.4 325.5 225.9 328.5C226.4 331.4 225.7 334.4 224 336.9C222.3 339.3 219.6 341 216.7 341.5L216.7 341.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "nfc-symbol": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connect", + "data", + "near field communication", + "nfc", + "scan", + "signal", + "transfer", + "wireless" + ] + }, + "unicode": "e531", + "label": "Nfc Symbol", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M392.9 32.43C400.6 31.1 408.6 32.89 414.1 37.41C498.2 96.14 544 173.7 544 255.1C544 338.2 498.2 415.9 414.1 474.6C409.3 478.6 402.4 480.5 395.5 479.9C388.5 479.3 382 476.3 377.1 471.4L193.7 288.7C188.1 283.2 185 275.7 184.1 267.8C184.1 260 188.1 252.5 193.6 246.9C199.2 241.4 206.7 238.2 214.5 238.2C222.4 238.2 229.9 241.3 235.4 246.8L400.5 411.2C455.1 366.5 484.8 312 484.8 255.1C484.8 193.5 447.9 132.9 380.9 85.76C374.5 81.24 370.1 74.35 368.8 66.62C367.4 58.89 369.2 50.94 373.8 44.53C378.3 38.12 385.2 33.77 392.9 32.43V32.43zM186.9 479.6C179.2 480.9 171.3 479.1 164.8 474.6C81.67 415.9 35.84 338.2 35.84 255.1C35.84 173.7 81.67 96.14 164.8 37.41C170.5 33.4 177.4 31.53 184.4 32.12C191.3 32.71 197.8 35.72 202.7 40.63L386.1 223.3C391.7 228.8 394.8 236.3 394.8 244.2C394.9 251.1 391.8 259.5 386.2 265.1C380.7 270.6 373.2 273.8 365.3 273.8C357.5 273.8 349.1 270.7 344.4 265.2L179.3 100.7C124.7 145.9 95.03 199.9 95.03 255.1C95.03 318.5 131.9 379.1 198.1 426.2C205.4 430.8 209.7 437.6 211.1 445.4C212.4 453.1 210.6 461.1 206.1 467.5C201.6 473.9 194.7 478.2 186.9 479.6V479.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "nimblr": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5a8", + "label": "Nimblr", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M246.6 299.29c15.57 0 27.15 11.46 27.15 27s-11.62 27-27.15 27c-15.7 0-27.15-11.57-27.15-27s11.55-27 27.15-27zM113 326.25c0-15.61 11.68-27 27.15-27s27.15 11.46 27.15 27-11.47 27-27.15 27c-15.44 0-27.15-11.31-27.15-27M191.76 159C157 159 89.45 178.77 59.25 227L14 0v335.48C14 433.13 93.61 512 191.76 512s177.76-78.95 177.76-176.52S290.13 159 191.76 159zm0 308.12c-73.27 0-132.51-58.9-132.51-131.59s59.24-131.59 132.51-131.59 132.51 58.86 132.51 131.54S265 467.07 191.76 467.07z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "node": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f419", + "label": "Node.js", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "node-js": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d3", + "label": "Node.js JS", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "not-equal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f53e" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "compare", + "math" + ] + }, + "unicode": "f53e", + "label": "Not Equal", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M353.8 37.4c14.7 9.8 18.7 29.7 8.9 44.4L321.1 144H384c17.7 0 32 14.3 32 32s-14.3 32-32 32H278.5l-64 96H384c17.7 0 32 14.3 32 32s-14.3 32-32 32H171.8l-65.2 97.7c-9.8 14.7-29.7 18.7-44.4 8.9s-18.7-29.7-8.9-44.4L94.9 368H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H137.5l64-96H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H244.2l65.2-97.7c9.8-14.7 29.7-18.7 44.4-8.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "notdef": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "close", + "missing" + ] + }, + "unicode": "e1fe", + "label": "Notdef", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 390.3L153.5 256 64 121.7V390.3zM102.5 448H281.5L192 313.7 102.5 448zm128-192L320 390.3V121.7L230.5 256zM281.5 64H102.5L192 198.3 281.5 64zM0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "note-sticky": { + "aliases": { + "names": [ + "sticky-note" + ], + "unicodes": { + "composite": [ + "f24a" + ], + "secondary": [ + "10f249" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "message", + "note", + "paper", + "reminder", + "sticker" + ] + }, + "unicode": "f249", + "label": "Note Sticky", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H288V368c0-26.5 21.5-48 48-48H448V96c0-35.3-28.7-64-64-64H64zM448 352H402.7 336c-8.8 0-16 7.2-16 16v66.7V480l32-32 64-64 32-32z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H288V352c0-17.7 14.3-32 32-32h80V96c0-8.8-7.2-16-16-16H64zM288 480H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V320v5.5c0 17-6.7 33.3-18.7 45.3l-90.5 90.5c-12 12-28.3 18.7-45.3 18.7H288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "notes-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f481" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clipboard", + "doctor", + "ehr", + "health", + "history", + "records" + ] + }, + "unicode": "f481", + "label": "Notes Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 352V96c0-35.3 28.7-64 64-64H416c35.3 0 64 28.7 64 64V293.5c0 17-6.7 33.3-18.7 45.3l-58.5 58.5c-12 12-28.3 18.7-45.3 18.7H160c-35.3 0-64-28.7-64-64zM272 128c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V256h48c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H320V144c0-8.8-7.2-16-16-16H272zm24 336c13.3 0 24 10.7 24 24s-10.7 24-24 24H136C60.9 512 0 451.1 0 376V152c0-13.3 10.7-24 24-24s24 10.7 24 24l0 224c0 48.6 39.4 88 88 88H296z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "npm": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d4", + "label": "npm", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ns8": { + "changes": [ + "5.0.0", + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d5", + "label": "NS8", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M104.324,269.172h26.067V242.994H104.324Zm52.466-26.178-.055-26.178v-.941a39.325,39.325,0,0,0-78.644.941v.166h26.4v-.166a12.98,12.98,0,0,1,25.956,0v26.178Zm52.356,25.846a91.1,91.1,0,0,1-91.1,91.1h-.609a91.1,91.1,0,0,1-91.1-91.1H0v.166A117.33,117.33,0,0,0,117.44,386.28h.775A117.331,117.331,0,0,0,235.49,268.84V242.828H209.146Zm-157.233,0a65.362,65.362,0,0,0,130.723,0H156.292a39.023,39.023,0,0,1-78.035,0V242.883H51.968v-26.62A65.42,65.42,0,0,1,182.8,217.48v25.293h26.344V217.48a91.761,91.761,0,0,0-183.522,0v25.4H51.913Zm418.4-71.173c13.67,0,24.573,6.642,30.052,18.264l.719,1.549,23.245-11.511-.609-1.439c-8.025-19.26-28.5-31.27-53.407-31.27-23.134,0-43.611,11.4-50.972,28.447-.123,26.876-.158,23.9,0,24.85,4.7,11.013,14.555,19.37,28.668,24.241a102.033,102.033,0,0,0,19.813,3.984c5.479.72,10.626,1.384,15.829,3.1,6.364,2.1,10.46,5.257,12.84,9.851v9.851c-3.708,7.527-13.781,12.342-25.791,12.342-14.334,0-25.956-6.918-31.933-19.039l-.72-1.494L415.026,280.9l.553,1.439c7.915,19.426,29.609,32.044,55.289,32.044,23.632,0,44.608-11.4,52.3-28.447l.166-25.9-.166-.664c-4.87-11.014-15.219-19.647-28.944-24.241-7.693-2.712-14.335-3.6-20.7-4.427a83.777,83.777,0,0,1-14.832-2.878c-6.31-1.937-10.4-5.092-12.619-9.63v-8.412C449.45,202.427,458.969,197.667,470.315,197.667ZM287.568,311.344h26.067v-68.4H287.568Zm352.266-53.3c-2.933-6.254-8.3-12.01-15.441-16.714A37.99,37.99,0,0,0,637.4,226l.166-25.347-.166-.664C630.038,184,610.667,173.26,589.25,173.26S548.461,184,541.1,199.992l-.166,25.347.166.664a39.643,39.643,0,0,0,13.006,15.331c-7.2,4.7-12.508,10.46-15.441,16.714l-.166,28.889.166.72c7.582,15.994,27.893,26.731,50.585,26.731s43.057-10.737,50.584-26.731l.166-28.89Zm-73.22-50.806c3.6-6.31,12.563-10.516,22.58-10.516s19.038,4.206,22.636,10.516v13.725c-3.542,6.2-12.563,10.349-22.636,10.349s-19.094-4.15-22.58-10.349Zm47.319,72.169c-3.764,6.641-13.338,10.9-24.683,10.9-11.125,0-20.976-4.372-24.684-10.9V263.25c3.708-6.309,13.5-10.515,24.684-10.515,11.345,0,20.919,4.15,24.683,10.515ZM376.4,265.962l-59.827-89.713h-29v40.623h26.51v.387l62.539,94.085H402.3V176.249H376.4Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "nutritionix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d6", + "label": "Nutritionix", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 400, + 512 + ], + "width": 400, + "height": 512, + "path": "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "o": { + "aliases": { + "unicodes": { + "composite": [ + "6f" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter O", + "Latin Small Letter O", + "letter" + ] + }, + "unicode": "4f", + "label": "O", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 96a160 160 0 1 0 0 320 160 160 0 1 0 0-320zM448 256A224 224 0 1 1 0 256a224 224 0 1 1 448 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "object-group": { + "aliases": { + "unicodes": { + "secondary": [ + "10f247" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "combine", + "copy", + "design", + "merge", + "select" + ] + }, + "unicode": "f247", + "label": "Object Group", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M32 119.4C12.9 108.4 0 87.7 0 64C0 28.7 28.7 0 64 0c23.7 0 44.4 12.9 55.4 32H456.6C467.6 12.9 488.3 0 512 0c35.3 0 64 28.7 64 64c0 23.7-12.9 44.4-32 55.4V392.6c19.1 11.1 32 31.7 32 55.4c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H119.4c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V119.4zM456.6 96H119.4c-5.6 9.7-13.7 17.8-23.4 23.4V392.6c9.7 5.6 17.8 13.7 23.4 23.4H456.6c5.6-9.7 13.7-17.8 23.4-23.4V119.4c-9.7-5.6-17.8-13.7-23.4-23.4zM128 160c0-17.7 14.3-32 32-32H288c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V160zM256 320h32c35.3 0 64-28.7 64-64V224h64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H288c-17.7 0-32-14.3-32-32V320z" + }, + "regular": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M16 115.8C6.2 107 0 94.2 0 80C0 53.5 21.5 32 48 32c14.2 0 27 6.2 35.8 16H428.2c8.8-9.8 21.6-16 35.8-16c26.5 0 48 21.5 48 48c0 14.2-6.2 27-16 35.8V396.2c9.8 8.8 16 21.6 16 35.8c0 26.5-21.5 48-48 48c-14.2 0-27-6.2-35.8-16H83.8C75 473.8 62.2 480 48 480c-26.5 0-48-21.5-48-48c0-14.2 6.2-27 16-35.8V115.8zM93.3 96c-4.8 13.6-15.6 24.4-29.3 29.3V386.7c13.6 4.8 24.4 15.6 29.3 29.3H418.7c4.8-13.6 15.6-24.4 29.3-29.3V125.3c-13.6-4.8-24.4-15.6-29.3-29.3H93.3zM96 160c0-17.7 14.3-32 32-32H256c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V160zM224 320h32c35.3 0 64-28.7 64-64V224h64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H256c-17.7 0-32-14.3-32-32V320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "object-ungroup": { + "aliases": { + "unicodes": { + "secondary": [ + "10f248" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copy", + "design", + "merge", + "select", + "separate" + ] + }, + "unicode": "f248", + "label": "Object Ungroup", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 119.4C12.9 108.4 0 87.7 0 64C0 28.7 28.7 0 64 0c23.7 0 44.4 12.9 55.4 32H328.6C339.6 12.9 360.3 0 384 0c35.3 0 64 28.7 64 64c0 23.7-12.9 44.4-32 55.4V232.6c19.1 11.1 32 31.7 32 55.4c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H119.4c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V119.4zM119.4 96c-5.6 9.7-13.7 17.8-23.4 23.4V232.6c9.7 5.6 17.8 13.7 23.4 23.4H328.6c5.6-9.7 13.7-17.8 23.4-23.4V119.4c-9.7-5.6-17.8-13.7-23.4-23.4H119.4zm192 384c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V352h64v40.6c9.7 5.6 17.8 13.7 23.4 23.4H520.6c5.6-9.7 13.7-17.8 23.4-23.4V279.4c-9.7-5.6-17.8-13.7-23.4-23.4h-46c-5.4-15.4-14.6-28.9-26.5-39.6V192h72.6c11.1-19.1 31.7-32 55.4-32c35.3 0 64 28.7 64 64c0 23.7-12.9 44.4-32 55.4V392.6c19.1 11.1 32 31.7 32 55.4c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H311.4z" + }, + "regular": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48.2 66.8c-.1-.8-.2-1.7-.2-2.5c0-.1 0-.1 0-.2c0-8.8 7.2-16 16-16c.9 0 1.9 .1 2.8 .2C74.3 49.5 80 56.1 80 64c0 8.8-7.2 16-16 16c-7.9 0-14.5-5.7-15.8-13.2zM0 64c0 26.9 16.5 49.9 40 59.3V228.7C16.5 238.1 0 261.1 0 288c0 35.3 28.7 64 64 64c26.9 0 49.9-16.5 59.3-40H324.7c9.5 23.5 32.5 40 59.3 40c35.3 0 64-28.7 64-64c0-26.9-16.5-49.9-40-59.3V123.3c23.5-9.5 40-32.5 40-59.3c0-35.3-28.7-64-64-64c-26.9 0-49.9 16.5-59.3 40H123.3C113.9 16.5 90.9 0 64 0C28.7 0 0 28.7 0 64zm368 0a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM324.7 88c6.5 16 19.3 28.9 35.3 35.3V228.7c-16 6.5-28.9 19.3-35.3 35.3H123.3c-6.5-16-19.3-28.9-35.3-35.3V123.3c16-6.5 28.9-19.3 35.3-35.3H324.7zM384 272a16 16 0 1 1 0 32 16 16 0 1 1 0-32zM80 288c0 7.9-5.7 14.5-13.2 15.8c-.8 .1-1.7 .2-2.5 .2l-.2 0c-8.8 0-16-7.2-16-16c0-.9 .1-1.9 .2-2.8C49.5 277.7 56.1 272 64 272c8.8 0 16 7.2 16 16zm391.3-40h45.4c6.5 16 19.3 28.9 35.3 35.3V388.7c-16 6.5-28.9 19.3-35.3 35.3H315.3c-6.5-16-19.3-28.9-35.3-35.3V352H232v36.7c-23.5 9.5-40 32.5-40 59.3c0 35.3 28.7 64 64 64c26.9 0 49.9-16.5 59.3-40H516.7c9.5 23.5 32.5 40 59.3 40c35.3 0 64-28.7 64-64c0-26.9-16.5-49.9-40-59.3V283.3c23.5-9.5 40-32.5 40-59.3c0-35.3-28.7-64-64-64c-26.9 0-49.9 16.5-59.3 40H448v16.4c9.8 8.8 17.8 19.5 23.3 31.6zm88.9-26.7a16 16 0 1 1 31.5 5.5 16 16 0 1 1 -31.5-5.5zM271.8 450.7a16 16 0 1 1 -31.5-5.5 16 16 0 1 1 31.5 5.5zm301.5 13c-7.5-1.3-13.2-7.9-13.2-15.8c0-8.8 7.2-16 16-16c7.9 0 14.5 5.7 15.8 13.2l0 .1c.1 .9 .2 1.8 .2 2.7c0 8.8-7.2 16-16 16c-.9 0-1.9-.1-2.8-.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "octopus-deploy": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e082", + "label": "Octopus Deploy", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M455.6,349.2c-45.891-39.09-36.67-77.877-16.095-128.11C475.16,134.04,415.967,34.14,329.93,8.3,237.04-19.6,134.252,24.341,99.677,117.147a180.862,180.862,0,0,0-10.988,73.544c1.733,29.543,14.717,52.97,24.09,80.3,17.2,50.161-28.1,92.743-66.662,117.582-46.806,30.2-36.319,39.857-8.428,41.858,23.378,1.68,44.478-4.548,65.265-15.045,9.2-4.647,40.687-18.931,45.13-28.588C135.9,413.388,111.122,459.5,126.621,488.9c19.1,36.229,67.112-31.77,76.709-45.812,8.591-12.572,42.963-81.279,63.627-46.926,18.865,31.361,8.6,76.391,35.738,104.622,32.854,34.2,51.155-18.312,51.412-44.221.163-16.411-6.1-95.852,29.9-59.944C405.428,418,436.912,467.8,472.568,463.642c38.736-4.516-22.123-67.967-28.262-78.695,5.393,4.279,53.665,34.128,53.818,9.52C498.234,375.678,468.039,359.8,455.6,349.2Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "odnoklassniki": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f263", + "label": "Odnoklassniki", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "odysee": { + "changes": [ + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e5c6", + "label": "Odysee", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1667828915, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M406.7 463c-42.3 30.8-94.4 49-150.7 49C144.9 512 50.3 441.2 14.9 342.2c2.4 1.7 5.9 3.6 7.9 4.4c16.3 7.4 40.1-5.4 62.9-28.7c6.9-6.9 14.4-12.4 22.8-17.3c18.3-11.9 37.6-20.8 58.4-27.2c0 0 22.3 34.2 43.1 74.8s-22.3 54-27.2 54c-.3 0-.8 0-1.5-.1c-11-.5-70-3-56 51.1c14.9 57.4 97.5 36.6 139.6 8.9s31.7-118.3 31.7-118.3c41.1-6.4 54 37.1 57.9 59.4c.8 4.6 1.1 9.9 1.4 15.5c1.1 21.2 2.3 45.6 35.3 46.4c5.3 0 10.6-.8 15.5-2zm-95.3-23.7c-2-.5-3.5-2.5-3-5c1-2.5 3-3.5 5-3s3.5 3 3 5s-2.5 3.5-5 3zm-207-95.6c1.5-.5 3.5 1 4 3c0 2-1 4-3 4c-1.5 .5-3.5-1-4-3c-.5-1.5 1-3.5 3-4zM451.8 421C489.3 376.4 512 318.8 512 256c0-67.5-26.1-128.9-68.8-174.7c-.1 23.5-6.1 48.2-16.8 69.2c-11.9 20.3-49 58.9-69.8 78.7c-.7 .3-1.1 .9-1.5 1.4c-.2 .2-.3 .4-.5 .6c-5 6.9-4 16.8 3 21.8c21.3 15.8 56.4 45.6 59.4 72.8c3.5 34.9 27.9 75.6 34.2 86.2l0 0c.8 1.3 1.3 2.1 1.4 2.4c0 2.2-.4 4.3-.8 6.5zM390.7 251c-.5 3 1 5.9 4 6.4s5.9-1 6.4-4s-1-5.9-4-6.4c-3-1-5.9 1-6.4 4zm61.4-60.9l-11.4 5.4-3 12.9-5.4-11.4-12.9-3 11.4-5.4 3-12.9 5.4 11.4 12.9 3zM395.5 41.3c-16.2 8.2-22.1 32.8-29 61.4l0 0c-.3 1.4-.7 2.8-1 4.2c-9.5 38.5-30.6 37.6-41.7 37.2c-1.1 0-2-.1-2.9-.1c-5.1 0-6-4-8.9-17.1c-2.6-12.1-6.9-32-17.9-63.6C271.4-2.5 211.4 13.9 165.9 41.1C110.6 74.2 131.5 143 146.1 190.5c.7 2.2 1.4 4.4 2 6.6c-4 4-13.8 7.5-26 11.9c-12.1 4.3-26.6 9.5-40.3 16.9C47.9 243.9 11.5 274.9 2 288.5C.7 277.8 0 267 0 256C0 114.6 114.6 0 256 0c51.4 0 99.4 15.2 139.5 41.3zM58.9 189.6c-1.5-2-4.5-3-6.4-1.5s-3 4.5-1.5 6.4s4.5 3 6.4 1.5c2.5-1.5 3-4.5 1.5-6.4zM327.3 64.9c2-1.5 5-.5 6.4 1.5c1.5 2.5 1 5.4-1.5 6.4c-2 1.5-5 .5-6.4-1.5s-.5-5 1.5-6.4zM95.1 105c-.5 1.5 .5 3 2 3c1.5 .5 3-.5 3-2c.5-1.5-.5-3-2-3s-3 .5-3 2zm84.7-.5c-3.5-43.1 37.1-54 37.1-54c44.1-15.4 56 5.9 66.4 37.6s3 42.6-38.6 58.9s-61.9-4.5-64.9-42.6zm89.6 14.9h1c2.5 0 5-2 5-5c2-6.9 1-14.4-2-20.8c-1.5-2-4-3.5-6.4-2.5c-3 1-4.5 4-3.5 6.9c2 4.5 3 9.9 1.5 14.9c-.5 3 1.5 5.9 4.5 6.4zm-9.9-41.6c-2 0-4-1-5-3s-2-3.5-3-5c-2-2-2-5.4 0-7.4s5.4-2 7.4 0c2 2.5 3.5 5 5 7.4s.5 5.9-2.5 7.4c-.6 0-1 .2-1.3 .3c-.2 .1-.4 .2-.6 .2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "oil-can": { + "aliases": { + "unicodes": { + "secondary": [ + "10f613" + ] + } + }, + "changes": [ + "5.2.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "crude", + "gasoline", + "grease", + "lubricate", + "petroleum" + ] + }, + "unicode": "f613", + "label": "Oil Can", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 128c17.7 0 32-14.3 32-32s-14.3-32-32-32H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v32H144 96 48c-26.5 0-48 21.5-48 48v64.8c0 19 11.2 36.2 28.5 43.9l67.5 30V368c0 26.5 21.5 48 48 48H403.1c18.4 0 35.8-7.9 48-21.7L633.5 187.7c12.3-13.9-.3-35.4-18.4-31.5L448 192l-50.5-25.2c-8.9-4.4-18.7-6.8-28.6-6.8H288V128h32zM96 208v86.1L48 272.8V208H96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "oil-well": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drill", + "oil", + "rig" + ] + }, + "unicode": "e532", + "label": "Oil Well", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M528.3 61.3c-11.4-42.7-55.3-68-98-56.6L414.9 8.8C397.8 13.4 387.7 31 392.3 48l24.5 91.4L308.5 167.5l-6.3-18.1C297.7 136.6 285.6 128 272 128s-25.7 8.6-30.2 21.4l-13.6 39L96 222.6V184c0-13.3-10.7-24-24-24s-24 10.7-24 24V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H406.7L340 257.5l-62.2 16.1L305.3 352H238.7L265 277l-74.6 19.3L137.3 448H96V288.8l337.4-87.5 25.2 94c4.6 17.1 22.1 27.2 39.2 22.6l15.5-4.1c42.7-11.4 68-55.3 56.6-98L528.3 61.3zM205.1 448l11.2-32H327.7l11.2 32H205.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "old-republic": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [ + "politics", + "star wars" + ] + }, + "unicode": "f510", + "label": "Old Republic", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "om": { + "aliases": { + "unicodes": { + "composite": [ + "1f549" + ], + "secondary": [ + "10f679" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Hindu", + "buddhism", + "hinduism", + "jainism", + "mantra", + "om", + "religion" + ] + }, + "unicode": "f679", + "label": "Om", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M379.3 4.7c-6.2-6.2-16.4-6.2-22.6 0l-16 16c-6.2 6.2-6.2 16.4 0 22.6l16 16c6.2 6.2 16.4 6.2 22.6 0l16-16c6.2-6.2 6.2-16.4 0-22.6l-16-16zM115.2 169.6c8-6 17.9-9.6 28.8-9.6c26.5 0 48 21.5 48 48s-21.5 48-48 48H109.8c-7.6 0-13.8 6.2-13.8 13.8c0 1.5 .2 2.9 .7 4.4l8 24c4.4 13.1 16.6 21.9 30.4 21.9H144h16c35.3 0 64 28.7 64 64s-28.7 64-64 64c-50.8 0-82.7-21.5-102.2-42.8c-9.9-10.8-16.6-21.6-20.9-29.7c-2.1-4-3.6-7.3-4.5-9.6c-.5-1.1-.8-2-1-2.5l-.2-.5 0-.1c-2.6-7.8-10.7-12.3-18.7-10.5C4.4 354.2-.9 361.8 .1 370L16 368C.1 370 .1 370 .1 370l0 0 0 0 0 .1 .1 .4c0 .3 .1 .8 .2 1.3c.2 1.1 .4 2.7 .8 4.6c.8 3.9 2 9.4 3.9 15.9c3.8 13 10.3 30.4 21.3 48C48.7 476.2 89.4 512 160 512c70.7 0 128-57.3 128-128c0-23.3-6.2-45.2-17.1-64h22.6c25.5 0 49.9-10.1 67.9-28.1l26.5-26.5c6-6 14.1-9.4 22.6-9.4H416c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32c-25.7 0-41.4-12.5-51.2-25.6c-5-6.7-8.4-13.4-10.5-18.6c-1.1-2.5-1.8-4.6-2.2-6c-.2-.7-.4-1.2-.5-1.5l-.1-.3 0 0c0 0 0 0 0 0c-1.9-7.3-8.6-12.4-16.2-12.1c-7.6 .3-13.9 5.9-15.1 13.4L336 368c-15.8-2.6-15.8-2.6-15.8-2.6l0 0 0 0 0 .1-.1 .3c0 .3-.1 .6-.2 1.1c-.1 .9-.3 2.1-.4 3.6c-.3 3-.6 7.3-.6 12.4c0 10.1 1.1 23.9 5.8 38.1c4.8 14.3 13.4 29.3 28.6 40.7C368.7 473.3 389.3 480 416 480c53 0 96-43 96-96V288c0-53-43-96-96-96h-5.5c-25.5 0-49.9 10.1-67.9 28.1l-26.5 26.5c-6 6-14.1 9.4-22.6 9.4H245.2c6.9-14.5 10.8-30.8 10.8-48c0-61.9-50.1-112-112-112c-25.2 0-48.5 8.3-67.2 22.4c-14.1 10.6-17 30.7-6.4 44.8s30.7 17 44.8 6.4zM280.9 66.7c-6-4-14-3.5-19.5 1.3s-7 12.7-3.7 19.2L272 80c-14.3 7.2-14.3 7.2-14.3 7.2l0 0 0 0 0 .1 .1 .2 .4 .7c.3 .6 .8 1.4 1.4 2.4c1.2 2 2.9 4.8 5.1 8.2c4.4 6.7 11.1 15.5 20 24.4C302.4 141.1 330.3 160 368 160c31.2 0 56.6-10.4 73.9-20.2c8.7-5 15.6-9.9 20.4-13.8c2.4-1.9 4.3-3.6 5.7-4.9c.7-.6 1.3-1.2 1.7-1.6l.6-.5 .2-.2 .1-.1 0 0 0 0c0 0 0 0-22.6-22.6l22.6 22.6c12.5-12.5 12.5-32.8 0-45.3c-12.4-12.4-32.6-12.5-45.1-.2c-.1 .1-.2 .2-.5 .4c-.5 .5-1.5 1.3-2.8 2.4c-2.7 2.2-6.8 5.2-12.1 8.2C399.4 90.4 384.8 96 368 96c-20.8 0-42.4-7-59.5-14.6c-8.4-3.7-15.4-7.5-20.3-10.3c-2.4-1.4-4.3-2.5-5.6-3.3c-.6-.4-1.1-.7-1.4-.9l-.3-.2 0 0 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "opencart": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f23d", + "label": "OpenCart", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "openid": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f19b", + "label": "OpenID", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "opera": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f26a", + "label": "Opera", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "optin-monster": { + "changes": [ + "4.4.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f23c", + "label": "Optin Monster", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M572.6 421.4c5.6-9.5 4.7-15.2-5.4-11.6-3-4.9-7-9.5-11.1-13.8 2.9-9.7-.7-14.2-10.8-9.2-4.6-3.2-10.3-6.5-15.9-9.2 0-15.1-11.6-11.6-17.6-5.7-10.4-1.5-18.7-.3-26.8 5.7.3-6.5.3-13 .3-19.7 12.6 0 40.2-11 45.9-36.2 1.4-6.8 1.6-13.8-.3-21.9-3-13.5-14.3-21.3-25.1-25.7-.8-5.9-7.6-14.3-14.9-15.9s-12.4 4.9-14.1 10.3c-8.5 0-19.2 2.8-21.1 8.4-5.4-.5-11.1-1.4-16.8-1.9 2.7-1.9 5.4-3.5 8.4-4.6 5.4-9.2 14.6-11.4 25.7-11.6V256c19.5-.5 43-5.9 53.8-18.1 12.7-13.8 14.6-37.3 12.4-55.1-2.4-17.3-9.7-37.6-24.6-48.1-8.4-5.9-21.6-.8-22.7 9.5-2.2 19.6 1.2 30-38.6 25.1-10.3-23.8-24.6-44.6-42.7-60C341 49.6 242.9 55.5 166.4 71.7c19.7 4.6 41.1 8.6 59.7 16.5-26.2 2.4-52.7 11.3-76.2 23.2-32.8 17-44 29.9-56.7 42.4 14.9-2.2 28.9-5.1 43.8-3.8-9.7 5.4-18.4 12.2-26.5 20-25.8.9-23.8-5.3-26.2-25.9-1.1-10.5-14.3-15.4-22.7-9.7-28.1 19.9-33.5 79.9-12.2 103.5 10.8 12.2 35.1 17.3 54.9 17.8-.3 1.1-.3 1.9-.3 2.7 10.8.5 19.5 2.7 24.6 11.6 3 1.1 5.7 2.7 8.1 4.6-5.4.5-11.1 1.4-16.5 1.9-3.3-6.6-13.7-8.1-21.1-8.1-1.6-5.7-6.5-12.2-14.1-10.3-6.8 1.9-14.1 10-14.9 15.9-22.5 9.5-30.1 26.8-25.1 47.6 5.3 24.8 33 36.2 45.9 36.2v19.7c-6.6-5-14.3-7.5-26.8-5.7-5.5-5.5-17.3-10.1-17.3 5.7-5.9 2.7-11.4 5.9-15.9 9.2-9.8-4.9-13.6-1.7-11.1 9.2-4.1 4.3-7.8 8.6-11.1 13.8-10.2-3.7-11 2.2-5.4 11.6-1.1 3.5-1.6 7-1.9 10.8-.5 31.6 44.6 64 73.5 65.1 17.3.5 34.6-8.4 43-23.5 113.2 4.9 226.7 4.1 340.2 0 8.1 15.1 25.4 24.3 42.7 23.5 29.2-1.1 74.3-33.5 73.5-65.1.2-3.7-.7-7.2-1.7-10.7zm-73.8-254c1.1-3 2.4-8.4 2.4-14.6 0-5.9 6.8-8.1 14.1-.8 11.1 11.6 14.9 40.5 13.8 51.1-4.1-13.6-13-29-30.3-35.7zm-4.6 6.7c19.5 6.2 28.6 27.6 29.7 48.9-1.1 2.7-3 5.4-4.9 7.6-5.7 5.9-15.4 10-26.2 12.2 4.3-21.3.3-47.3-12.7-63 4.9-.8 10.9-2.4 14.1-5.7zm-24.1 6.8c13.8 11.9 20 39.2 14.1 63.5-4.1.5-8.1.8-11.6.8-1.9-21.9-6.8-44-14.3-64.6 3.7.3 8.1.3 11.8.3zM47.5 203c-1.1-10.5 2.4-39.5 13.8-51.1 7-7.3 14.1-5.1 14.1.8 0 6.2 1.4 11.6 2.4 14.6-17.3 6.8-26.2 22.2-30.3 35.7zm9.7 27.6c-1.9-2.2-3.5-4.9-4.9-7.6 1.4-21.3 10.3-42.7 29.7-48.9 3.2 3.2 9.2 4.9 14.1 5.7-13 15.7-17 41.6-12.7 63-10.8-2.2-20.5-6-26.2-12.2zm47.9 14.6c-4.1 0-8.1-.3-12.7-.8-4.6-18.6-1.9-38.9 5.4-53v.3l12.2-5.1c4.9-1.9 9.7-3.8 14.9-4.9-10.7 19.7-17.4 41.3-19.8 63.5zm184-162.7c41.9 0 76.2 34 76.2 75.9 0 42.2-34.3 76.2-76.2 76.2s-76.2-34-76.2-76.2c0-41.8 34.3-75.9 76.2-75.9zm115.6 174.3c-.3 17.8-7 48.9-23 57-13.2 6.6-6.5-7.5-16.5-58.1 13.3.3 26.6.3 39.5 1.1zm-54-1.6c.8 4.9 3.8 40.3-1.6 41.9-11.6 3.5-40 4.3-51.1-1.1-4.1-3-4.6-35.9-4.3-41.1v.3c18.9-.3 38.1-.3 57 0zM278.3 309c-13 3.5-41.6 4.1-54.6-1.6-6.5-2.7-3.8-42.4-1.9-51.6 19.2-.5 38.4-.5 57.8-.8v.3c1.1 8.3 3.3 51.2-1.3 53.7zm-106.5-51.1c12.2-.8 24.6-1.4 36.8-1.6-2.4 15.4-3 43.5-4.9 52.2-1.1 6.8-4.3 6.8-9.7 4.3-21.9-9.8-27.6-35.2-22.2-54.9zm-35.4 31.3c7.8-1.1 15.7-1.9 23.5-2.7 1.6 6.2 3.8 11.9 7 17.6 10 17 44 35.7 45.1 7 6.2 14.9 40.8 12.2 54.9 10.8 15.7-1.4 23.8-1.4 26.8-14.3 12.4 4.3 30.8 4.1 44 3 11.3-.8 20.8-.5 24.6-8.9 1.1 5.1 1.9 11.6 4.6 16.8 10.8 21.3 37.3 1.4 46.8-31.6 8.6.8 17.6 1.9 26.5 2.7-.4 1.3-3.8 7.3 7.3 11.6-47.6 47-95.7 87.8-163.2 107-63.2-20.8-112.1-59.5-155.9-106.5 9.6-3.4 10.4-8.8 8-12.5zm-21.6 172.5c-3.8 17.8-21.9 29.7-39.7 28.9-19.2-.8-46.5-17-59.2-36.5-2.7-31.1 43.8-61.3 66.2-54.6 14.9 4.3 27.8 30.8 33.5 54 0 3-.3 5.7-.8 8.2zm-8.7-66c-.5-13.5-.5-27-.3-40.5h.3c2.7-1.6 5.7-3.8 7.8-6.5 6.5-1.6 13-5.1 15.1-9.2 3.3-7.1-7-7.5-5.4-12.4 2.7-1.1 5.7-2.2 7.8-3.5 29.2 29.2 58.6 56.5 97.3 77-36.8 11.3-72.4 27.6-105.9 47-1.2-18.6-7.7-35.9-16.7-51.9zm337.6 64.6c-103 3.5-206.2 4.1-309.4 0 0 .3 0 .3-.3.3v-.3h.3c35.1-21.6 72.2-39.2 112.4-50.8 11.6 5.1 23 9.5 34.9 13.2 2.2.8 2.2.8 4.3 0 14.3-4.1 28.4-9.2 42.2-15.4 41.5 11.7 78.8 31.7 115.6 53zm10.5-12.4c-35.9-19.5-73-35.9-111.9-47.6 38.1-20 71.9-47.3 103.5-76.7 2.2 1.4 4.6 2.4 7.6 3.2 0 .8.3 1.9.5 2.4-4.6 2.7-7.8 6.2-5.9 10.3 2.2 3.8 8.6 7.6 15.1 8.9 2.4 2.7 5.1 5.1 8.1 6.8 0 13.8-.3 27.6-.8 41.3l.3-.3c-9.3 15.9-15.5 37-16.5 51.7zm105.9 6.2c-12.7 19.5-40 35.7-59.2 36.5-19.3.9-40.5-13.2-40.5-37 5.7-23.2 18.9-49.7 33.5-54 22.7-6.9 69.2 23.4 66.2 54.5zM372.9 75.2c-3.8-72.1-100.8-79.7-126-23.5 44.6-24.3 90.3-15.7 126 23.5zM74.8 407.1c-15.7 1.6-49.5 25.4-49.5 43.2 0 11.6 15.7 19.5 32.2 14.9 12.2-3.2 31.1-17.6 35.9-27.3 6-11.6-3.7-32.7-18.6-30.8zm215.9-176.2c28.6 0 51.9-21.6 51.9-48.4 0-36.1-40.5-58.1-72.2-44.3 9.5 3 16.5 11.6 16.5 21.6 0 23.3-33.3 32-46.5 11.3-7.3 34.1 19.4 59.8 50.3 59.8zM68 474.1c.5 6.5 12.2 12.7 21.6 9.5 6.8-2.7 14.6-10.5 17.3-16.2 3-7-1.1-20-9.7-18.4-8.9 1.6-29.7 16.7-29.2 25.1zm433.2-67c-14.9-1.9-24.6 19.2-18.9 30.8 4.9 9.7 24.1 24.1 36.2 27.3 16.5 4.6 32.2-3.2 32.2-14.9 0-17.8-33.8-41.6-49.5-43.2zM478.8 449c-8.4-1.6-12.4 11.3-9.5 18.4 2.4 5.7 10.3 13.5 17.3 16.2 9.2 3.2 21.1-3 21.3-9.5.9-8.4-20.2-23.5-29.1-25.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "orcid": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f8d2", + "label": "ORCID", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M294.75 188.19h-45.92V342h47.47c67.62 0 83.12-51.34 83.12-76.91 0-41.64-26.54-76.9-84.67-76.9zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-80.79 360.76h-29.84v-207.5h29.84zm-14.92-231.14a19.57 19.57 0 1 1 19.57-19.57 19.64 19.64 0 0 1-19.57 19.57zM300 369h-81V161.26h80.6c76.73 0 110.44 54.83 110.44 103.85C410 318.39 368.38 369 300 369z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "osi": { + "changes": [ + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41a", + "label": "Open Source Initiative", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M8 266.44C10.3 130.64 105.4 34 221.8 18.34c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7q-26.7-69.45-53.4-139c-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8a71.47 71.47 0 0 0-64.5-82.2c-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4q-26.85 69.9-53.7 139.9c-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119-24.9-49.2-25.2-87.7-26.8-108.7zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3q22.35-58.65 45-117.3c1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6a91.64 91.64 0 0 1 45.2 90.4c-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6q22.8 58.8 45.2 117.7c1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161-13.7-117.5-119.4-214.8-255.5-198-106.1 13-195.3 102.5-197.1 225.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "otter": { + "aliases": { + "unicodes": { + "composite": [ + "1f9a6" + ], + "secondary": [ + "10f700" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "badger", + "fauna", + "fishing", + "fur", + "mammal", + "marten", + "otter", + "playful" + ] + }, + "unicode": "f700", + "label": "Otter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M181.5 197.1l12.9 6.4c5.9 3 12.4 4.5 19.1 4.5c23.5 0 42.6-19.1 42.6-42.6V144c0-35.3-28.7-64-64-64H128c-35.3 0-64 28.7-64 64v21.4c0 23.5 19.1 42.6 42.6 42.6c6.6 0 13.1-1.5 19.1-4.5l12.9-6.4 8.4-4.2L135.1 185c-4.5-3-7.1-8-7.1-13.3V168c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24v3.7c0 5.3-2.7 10.3-7.1 13.3l-11.8 7.9 8.4 4.2zm-8.6 49.4L160 240l-12.9 6.4c-12.6 6.3-26.5 9.6-40.5 9.6c-3.6 0-7.1-.2-10.6-.6v.6c0 35.3 28.7 64 64 64h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384V336 320c0-23.7 12.9-44.4 32-55.4c9.4-5.4 20.3-8.6 32-8.6V240c0-26.5 21.5-48 48-48c8.8 0 16 7.2 16 16v32 16 48c0 8.8 7.2 16 16 16s16-7.2 16-16V204.3c0-48.2-30.8-91-76.6-106.3l-8.5-2.8c-8-2.7-12.6-11.1-10.4-19.3s10.3-13.2 18.6-11.6l19.9 4C576 86.1 640 164.2 640 254.9l0 1.1h0c0 123.7-100.3 224-224 224h-1.1H256h-.6C132 480 32 380 32 256.6V256 216.8c-10.1-14.6-16-32.3-16-51.4V144l0-1.4C6.7 139.3 0 130.5 0 120c0-13.3 10.7-24 24-24h2.8C44.8 58.2 83.3 32 128 32h64c44.7 0 83.2 26.2 101.2 64H296c13.3 0 24 10.7 24 24c0 10.5-6.7 19.3-16 22.6l0 1.4v21.4c0 1.4 0 2.8-.1 4.3c12-6.2 25.7-9.6 40.1-9.6h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-13.3 0-24 10.7-24 24v8h56.4c-15.2 17-24.4 39.4-24.4 64H320c-42.3 0-78.2-27.4-91-65.3c-5.1 .9-10.3 1.3-15.6 1.3c-14.1 0-27.9-3.3-40.5-9.6zM96 128a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm112 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "outdent": { + "aliases": { + "names": [ + "dedent" + ], + "unicodes": { + "secondary": [ + "10f03b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "align", + "justify", + "paragraph", + "tab" + ] + }, + "unicode": "f03b", + "label": "Outdent", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M6 64C6 46.3 20.3 32 38 32H422c17.7 0 32 14.3 32 32s-14.3 32-32 32H38C20.3 96 6 81.7 6 64zM198 192c0-17.7 14.3-32 32-32H422c17.7 0 32 14.3 32 32s-14.3 32-32 32H230c-17.7 0-32-14.3-32-32zm32 96H422c17.7 0 32 14.3 32 32s-14.3 32-32 32H230c-17.7 0-32-14.3-32-32s14.3-32 32-32zM6 448c0-17.7 14.3-32 32-32H422c17.7 0 32 14.3 32 32s-14.3 32-32 32H38c-17.7 0-32-14.3-32-32zm.2-179.4c-8.2-6.4-8.2-18.9 0-25.3l101.9-79.3c10.5-8.2 25.8-.7 25.8 12.6V335.3c0 13.3-15.3 20.8-25.8 12.6L6.2 268.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "p": { + "aliases": { + "unicodes": { + "composite": [ + "70" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter P", + "Latin Small Letter P", + "letter" + ] + }, + "unicode": "50", + "label": "P", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32h96c88.4 0 160 71.6 160 160s-71.6 160-160 160H64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V320 96zM64 288h96c53 0 96-43 96-96s-43-96-96-96H64V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "padlet": { + "changes": [ + "6.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e4a0", + "label": "Padlet", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M297.9 0L298 .001C305.6 .1078 312.4 4.72 315.5 11.78L447.5 320.3L447.8 320.2L448 320.6L445.2 330.6L402.3 488.6C398.6 504.8 382.6 514.9 366.5 511.2L298.1 495.6L229.6 511.2C213.5 514.9 197.5 504.8 193.8 488.6L150.9 330.6L148.2 320.6L148.3 320.2L280.4 11.78C283.4 4.797 290.3 .1837 297.9 .0006L297.9 0zM160.1 322.1L291.1 361.2L298 483.7L305.9 362.2L436.5 322.9L436.7 322.8L305.7 347.9L297.1 27.72L291.9 347.9L160.1 322.1zM426 222.6L520.4 181.6H594.2L437.2 429.2L468.8 320.2L426 222.6zM597.5 181.4L638.9 257.6C642.9 265.1 635 273.5 627.3 269.8L579.7 247.1L597.5 181.4zM127.3 318.5L158.7 430L1.61 154.5C-4.292 144.1 7.128 132.5 17.55 138.3L169.4 222.5L127.3 318.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "page4": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d7", + "label": "page4 Corporation", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pagelines": { + "changes": [ + "4.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eco", + "flora", + "leaf", + "leaves", + "nature", + "plant", + "tree" + ] + }, + "unicode": "f18c", + "label": "Pagelines", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pager": { + "aliases": { + "unicodes": { + "composite": [ + "1f4df" + ], + "secondary": [ + "10f815" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beeper", + "cell phone", + "communication", + "page", + "pager" + ] + }, + "unicode": "f815", + "label": "Pager", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H448c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zm64 32v64c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32zM80 320c-13.3 0-24 10.7-24 24s10.7 24 24 24h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H80zm136 0c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c13.3 0 24-10.7 24-24s-10.7-24-24-24H216z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paint-roller": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5aa" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrylic", + "art", + "brush", + "color", + "fill", + "paint", + "pigment", + "watercolor" + ] + }, + "unicode": "f5aa", + "label": "Paint Roller", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H352c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM160 352c0-17.7 14.3-32 32-32V304c0-44.2 35.8-80 80-80H416c17.7 0 32-14.3 32-32V160 69.5c37.3 13.2 64 48.7 64 90.5v32c0 53-43 96-96 96H272c-8.8 0-16 7.2-16 16v16c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paintbrush": { + "aliases": { + "names": [ + "paint-brush" + ], + "unicodes": { + "composite": [ + "1f58c" + ], + "secondary": [ + "10f1fc" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrylic", + "art", + "brush", + "color", + "fill", + "paint", + "paintbrush", + "painting", + "pigment", + "watercolor" + ] + }, + "unicode": "f1fc", + "label": "Paintbrush", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M339.3 367.1c27.3-3.9 51.9-19.4 67.2-42.9L568.2 74.1c12.6-19.5 9.4-45.3-7.6-61.2S517.7-4.4 499.1 9.6L262.4 187.2c-24 18-38.2 46.1-38.4 76.1L339.3 367.1zm-19.6 25.4l-116-104.4C143.9 290.3 96 339.6 96 400c0 3.9 .2 7.8 .6 11.6C98.4 429.1 86.4 448 68.8 448H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H208c61.9 0 112-50.1 112-112c0-2.5-.1-5-.2-7.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "palette": { + "aliases": { + "unicodes": { + "composite": [ + "1f3a8" + ], + "secondary": [ + "10f53f" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrylic", + "art", + "artist palette", + "brush", + "color", + "fill", + "museum", + "paint", + "painting", + "palette", + "pigment", + "watercolor" + ] + }, + "unicode": "f53f", + "label": "Palette", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256c0 .9 0 1.8 0 2.7c-.4 36.5-33.6 61.3-70.1 61.3H344c-26.5 0-48 21.5-48 48c0 3.4 .4 6.7 1 9.9c2.1 10.2 6.5 20 10.8 29.9c6.1 13.8 12.1 27.5 12.1 42c0 31.8-21.6 60.7-53.4 62c-3.5 .1-7 .2-10.6 .2C114.6 512 0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM128 288a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0-96a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm96 96a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "palfed": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d8", + "label": "Palfed", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pallet": { + "aliases": { + "unicodes": { + "secondary": [ + "10f482" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "box", + "inventory", + "shipping", + "warehouse" + ] + }, + "unicode": "f482", + "label": "Pallet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 320c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v64H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H96 320 544h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H576V384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H544 320 96 32zm96 64H288v64H128V384zm224 0H512v64H352V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "panorama": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "image", + "landscape", + "photo", + "wide" + ] + }, + "unicode": "e209", + "label": "Panorama", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M45.6 32C20.4 32 0 52.4 0 77.6V434.4C0 459.6 20.4 480 45.6 480c5.1 0 10-.8 14.7-2.4C74.6 472.8 177.6 440 320 440s245.4 32.8 259.6 37.6c4.7 1.6 9.7 2.4 14.7 2.4c25.2 0 45.6-20.4 45.6-45.6V77.6C640 52.4 619.6 32 594.4 32c-5 0-10 .8-14.7 2.4C565.4 39.2 462.4 72 320 72S74.6 39.2 60.4 34.4C55.6 32.8 50.7 32 45.6 32zM96 160a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm272 0c7.9 0 15.4 3.9 19.8 10.5L512.3 353c5.4 8 5.6 18.4 .4 26.5s-14.7 12.3-24.2 10.7C442.7 382.4 385.2 376 320 376c-65.6 0-123.4 6.5-169.3 14.4c-9.8 1.7-19.7-2.9-24.7-11.5s-4.3-19.4 1.9-27.2L197.3 265c4.6-5.7 11.4-9 18.7-9s14.2 3.3 18.7 9l26.4 33.1 87-127.6c4.5-6.6 11.9-10.5 19.8-10.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paper-plane": { + "aliases": { + "unicodes": { + "composite": [ + "f1d9" + ], + "secondary": [ + "10f1d8" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air", + "float", + "fold", + "mail", + "paper", + "send" + ] + }, + "unicode": "f1d8", + "label": "Paper Plane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480V396.4c0-4 1.5-7.8 4.2-10.7L331.8 202.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8 17.7 316.6C7.1 311.3 .3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M16.1 260.2c-22.6 12.9-20.5 47.3 3.6 57.3L160 376V479.3c0 18.1 14.6 32.7 32.7 32.7c9.7 0 18.9-4.3 25.1-11.8l62-74.3 123.9 51.6c18.9 7.9 40.8-4.5 43.9-24.7l64-416c1.9-12.1-3.4-24.3-13.5-31.2s-23.3-7.5-34-1.4l-448 256zm52.1 25.5L409.7 90.6 190.1 336l1.2 1L68.2 285.7zM403.3 425.4L236.7 355.9 450.8 116.6 403.3 425.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "paperclip": { + "aliases": { + "unicodes": { + "composite": [ + "1f4ce" + ], + "secondary": [ + "10f0c6" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attach", + "attachment", + "connect", + "link", + "papercli", + "paperclip" + ] + }, + "unicode": "f0c6", + "label": "Paperclip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M360.2 83.8c-24.4-24.4-64-24.4-88.4 0l-184 184c-42.1 42.1-42.1 110.3 0 152.4s110.3 42.1 152.4 0l152-152c10.9-10.9 28.7-10.9 39.6 0s10.9 28.7 0 39.6l-152 152c-64 64-167.6 64-231.6 0s-64-167.6 0-231.6l184-184c46.3-46.3 121.3-46.3 167.6 0s46.3 121.3 0 167.6l-176 176c-28.6 28.6-75 28.6-103.6 0s-28.6-75 0-103.6l144-144c10.9-10.9 28.7-10.9 39.6 0s10.9 28.7 0 39.6l-144 144c-6.7 6.7-6.7 17.7 0 24.4s17.7 6.7 24.4 0l176-176c24.4-24.4 24.4-64 0-88.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "parachute-box": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4cd" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aid", + "assistance", + "goods", + "relief", + "rescue", + "supplies" + ] + }, + "unicode": "f4cd", + "label": "Parachute Box", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M380.5 192c.3-5.3 .5-10.6 .5-16c0-51-15.9-96-40.2-127.6C316.5 16.9 285.2 0 253 0s-63.5 16.9-87.8 48.4C140.9 80 125 125 125 176c0 5.4 .2 10.7 .5 16H237V320H205c-7 0-13.7 1.5-19.7 4.2L65.2 192H93.5c-.3-5.3-.5-10.6-.5-16c0-64 22.2-121.2 57.1-159.3C59 49.3 15.6 122.6 1.2 173.6C-1.5 183.1 6 192 15.9 192h6L162.2 346.3c-3.3 6.5-5.2 13.9-5.2 21.7v96c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48V368c0-7.8-1.9-15.2-5.2-21.7L484.1 192h6c9.9 0 17.4-8.9 14.7-18.4C490.4 122.6 447 49.3 355.9 16.7C390.8 54.8 413 112.1 413 176c0 5.4-.2 10.7-.5 16h28.3L320.7 324.2c-6-2.7-12.7-4.2-19.7-4.2H269V192H380.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paragraph": { + "aliases": { + "unicodes": { + "composite": [ + "b6" + ], + "secondary": [ + "10f1dd" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pilcrow Sign", + "edit", + "format", + "text", + "writing" + ] + }, + "unicode": "f1dd", + "label": "Paragraph", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M192 32h64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H384l0 352c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-352H288V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H192c-88.4 0-160-71.6-160-160s71.6-160 160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "passport": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5ab" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "id", + "identification", + "issued", + "travel" + ] + }, + "unicode": "f5ab", + "label": "Passport", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM183 278.8c-27.9-13.2-48.4-39.4-53.7-70.8h39.1c1.6 30.4 7.7 53.8 14.6 70.8zm41.3 9.2l-.3 0-.3 0c-2.4-3.5-5.7-8.9-9.1-16.5c-6-13.6-12.4-34.3-14.2-63.5h47.1c-1.8 29.2-8.1 49.9-14.2 63.5c-3.4 7.6-6.7 13-9.1 16.5zm40.7-9.2c6.8-17.1 12.9-40.4 14.6-70.8h39.1c-5.3 31.4-25.8 57.6-53.7 70.8zM279.6 176c-1.6-30.4-7.7-53.8-14.6-70.8c27.9 13.2 48.4 39.4 53.7 70.8H279.6zM223.7 96l.3 0 .3 0c2.4 3.5 5.7 8.9 9.1 16.5c6 13.6 12.4 34.3 14.2 63.5H200.5c1.8-29.2 8.1-49.9 14.2-63.5c3.4-7.6 6.7-13 9.1-16.5zM183 105.2c-6.8 17.1-12.9 40.4-14.6 70.8H129.3c5.3-31.4 25.8-57.6 53.7-70.8zM352 192A128 128 0 1 0 96 192a128 128 0 1 0 256 0zM112 384c-8.8 0-16 7.2-16 16s7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paste": { + "aliases": { + "names": [ + "file-clipboard" + ], + "unicodes": { + "secondary": [ + "10f0ea" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clipboard", + "copy", + "document", + "paper" + ] + }, + "unicode": "f0ea", + "label": "Paste", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 0c-23.7 0-44.4 12.9-55.4 32H48C21.5 32 0 53.5 0 80V400c0 26.5 21.5 48 48 48H192V176c0-44.2 35.8-80 80-80h48V80c0-26.5-21.5-48-48-48H215.4C204.4 12.9 183.7 0 160 0zM272 128c-26.5 0-48 21.5-48 48V448v16c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V256H416c-17.7 0-32-14.3-32-32V128H320 272zM160 40a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm256 88v96h96l-96-96z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M80 96v16c0 17.7 14.3 32 32 32h60.8c16.6-28.7 47.6-48 83.2-48h62c-7.1-27.6-32.2-48-62-48H215.4C211.6 20.9 188.2 0 160 0s-51.6 20.9-55.4 48H64C28.7 48 0 76.7 0 112V384c0 35.3 28.7 64 64 64h96V400H64c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H80zm64-40a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM256 464c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H384v48c0 17.7 14.3 32 32 32h48V448c0 8.8-7.2 16-16 16H256zm192 48c35.3 0 64-28.7 64-64V227.9c0-12.7-5.1-24.9-14.1-33.9l-51.9-51.9c-9-9-21.2-14.1-33.9-14.1H256c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "patreon": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d9", + "label": "Patreon", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pause": { + "aliases": { + "unicodes": { + "composite": [ + "23f8" + ], + "secondary": [ + "10f04c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bar", + "double", + "hold", + "pause", + "pause button", + "vertical", + "wait" + ] + }, + "unicode": "f04c", + "label": "Pause", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M48 64C21.5 64 0 85.5 0 112V400c0 26.5 21.5 48 48 48H80c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H48zm192 0c-26.5 0-48 21.5-48 48V400c0 26.5 21.5 48 48 48h32c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H240z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paw": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1b0" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "cat", + "dog", + "pet", + "print" + ] + }, + "unicode": "f1b0", + "label": "Paw", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5s.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3S-2.7 179.3 21.8 165.3s59.7 .9 78.5 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7c-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2C84.9 480 64 459.1 64 433.3v-1.6c0-10.4 1.6-20.8 5.2-30.5zM421.8 282.7c-24.5-14-29.1-51.7-10.2-84.1s54-47.3 78.5-33.3s29.1 51.7 10.2 84.1s-54 47.3-78.5 33.3zM310.1 189.7c-32.3-10.6-46.9-53.9-32.6-96.8s52.1-69.1 84.4-58.5s46.9 53.9 32.6 96.8s-52.1 69.1-84.4 58.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paypal": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1ed", + "label": "Paypal", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "peace": { + "aliases": { + "unicodes": { + "composite": [ + "262e" + ], + "secondary": [ + "10f67c" + ] + } + }, + "changes": [ + "5.3.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "peace", + "peace symbol", + "serenity", + "tranquility", + "truce", + "war" + ] + }, + "unicode": "f67c", + "label": "Peace", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 445.3V323.5l-94.3 77.1c26.1 22.8 58.5 38.7 94.3 44.7zM89.2 351.1L224 240.8V66.7C133.2 81.9 64 160.9 64 256c0 34.6 9.2 67.1 25.2 95.1zm293.1 49.5L288 323.5V445.3c35.7-6 68.1-21.9 94.3-44.7zm40.6-49.5c16-28 25.2-60.5 25.2-95.1c0-95.1-69.2-174.1-160-189.3V240.8L422.8 351.1zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen": { + "aliases": { + "unicodes": { + "composite": [ + "1f58a" + ], + "secondary": [ + "10f304" + ] + } + }, + "changes": [ + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ballpoint", + "design", + "edit", + "pen", + "update", + "write" + ] + }, + "unicode": "f304", + "label": "Pen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M362.7 19.3L314.3 67.7 444.3 197.7l48.4-48.4c25-25 25-65.5 0-90.5L453.3 19.3c-25-25-65.5-25-90.5 0zm-71 71L58.6 323.5c-10.4 10.4-18 23.3-22.2 37.4L1 481.2C-1.5 489.7 .8 498.8 7 505s15.3 8.5 23.7 6.1l120.3-35.4c14.1-4.2 27-11.8 37.4-22.2L421.7 220.3 291.7 90.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen-clip": { + "aliases": { + "names": [ + "pen-alt" + ], + "unicodes": { + "secondary": [ + "10f305" + ] + } + }, + "changes": [ + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "update", + "write" + ] + }, + "unicode": "f305", + "label": "Pen Clip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M453.3 19.3l39.4 39.4c25 25 25 65.5 0 90.5l-52.1 52.1 0 0-1-1 0 0-16-16-96-96-17-17 52.1-52.1c25-25 65.5-25 90.5 0zM241 114.9c-9.4-9.4-24.6-9.4-33.9 0L105 217c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L173.1 81c28.1-28.1 73.7-28.1 101.8 0L288 94.1l17 17 96 96 16 16 1 1-17 17L229.5 412.5c-48 48-109.2 80.8-175.8 94.1l-25 5c-7.9 1.6-16-.9-21.7-6.6s-8.1-13.8-6.6-21.7l5-25c13.3-66.6 46.1-127.8 94.1-175.8L254.1 128 241 114.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen-fancy": { + "aliases": { + "unicodes": { + "composite": [ + "1f58b", + "2712" + ], + "secondary": [ + "10f5ac" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "black nib", + "design", + "edit", + "fountain", + "fountain pen", + "nib", + "pen", + "update", + "write" + ] + }, + "unicode": "f5ac", + "label": "Pen Fancy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M373.5 27.1C388.5 9.9 410.2 0 433 0c43.6 0 79 35.4 79 79c0 22.8-9.9 44.6-27.1 59.6L277.7 319l-10.3-10.3-64-64L193 234.3 373.5 27.1zM170.3 256.9l10.4 10.4 64 64 10.4 10.4-19.2 83.4c-3.9 17.1-16.9 30.7-33.8 35.4L24.4 510.3l95.4-95.4c2.6 .7 5.4 1.1 8.3 1.1c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32c0 2.9 .4 5.6 1.1 8.3L1.7 487.6 51.5 310c4.7-16.9 18.3-29.9 35.4-33.8l83.4-19.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen-nib": { + "aliases": { + "unicodes": { + "composite": [ + "2711" + ], + "secondary": [ + "10f5ad" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "fountain pen", + "update", + "write" + ] + }, + "unicode": "f5ad", + "label": "Pen Nib", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M366.4 18.3L310.7 74.1 435.9 199.3l55.7-55.7c21.9-21.9 21.9-57.3 0-79.2L445.6 18.3c-21.9-21.9-57.3-21.9-79.2 0zM286 94.6l-9.2 2.8L132.7 140.6c-19.9 6-35.7 21.2-42.3 41L1.8 445.8c-3.8 11.3-1 23.9 7.3 32.4L162.7 324.7c-3-6.3-4.7-13.3-4.7-20.7c0-26.5 21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48c-7.4 0-14.4-1.7-20.7-4.7L31.7 500.9c8.6 8.3 21.1 11.2 32.4 7.3l264.3-88.6c19.7-6.6 35-22.4 41-42.3l43.2-144.1 2.8-9.2L286 94.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen-ruler": { + "aliases": { + "names": [ + "pencil-ruler" + ], + "unicodes": { + "secondary": [ + "10f5ae" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "draw", + "pencil" + ] + }, + "unicode": "f5ae", + "label": "Pen Ruler", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M469.3 19.3l23.4 23.4c25 25 25 65.5 0 90.5l-56.4 56.4L322.3 75.7l56.4-56.4c25-25 65.5-25 90.5 0zM44.9 353.2L299.7 98.3 413.7 212.3 158.8 467.1c-6.7 6.7-15.1 11.6-24.2 14.2l-104 29.7c-8.4 2.4-17.4 .1-23.6-6.1s-8.5-15.2-6.1-23.6l29.7-104c2.6-9.2 7.5-17.5 14.2-24.2zM249.4 103.4L103.4 249.4 16 161.9c-18.7-18.7-18.7-49.1 0-67.9L94.1 16c18.7-18.7 49.1-18.7 67.9 0l19.8 19.8c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1l45.1 45.1zM408.6 262.6l45.1 45.1c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1L496 350.1c18.7 18.7 18.7 49.1 0 67.9L417.9 496c-18.7 18.7-49.1 18.7-67.9 0l-87.4-87.4L408.6 262.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen-to-square": { + "aliases": { + "names": [ + "edit" + ], + "unicodes": { + "secondary": [ + "10f044" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "pen", + "pencil", + "update", + "write" + ] + }, + "unicode": "f044", + "label": "Pen To Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M471.6 21.7c-21.9-21.9-57.3-21.9-79.2 0L362.3 51.7l97.9 97.9 30.1-30.1c21.9-21.9 21.9-57.3 0-79.2L471.6 21.7zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.8 15.7-7.4 21.9-13.5L437.7 172.3 339.7 74.3 172.4 241.7zM96 64C43 64 0 107 0 160V416c0 53 43 96 96 96H352c53 0 96-43 96-96V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H96z" + }, + "regular": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M441 58.9L453.1 71c9.4 9.4 9.4 24.6 0 33.9L424 134.1 377.9 88 407 58.9c9.4-9.4 24.6-9.4 33.9 0zM209.8 256.2L344 121.9 390.1 168 255.8 302.2c-2.9 2.9-6.5 5-10.4 6.1l-58.5 16.7 16.7-58.5c1.1-3.9 3.2-7.5 6.1-10.4zM373.1 25L175.8 222.2c-8.7 8.7-15 19.4-18.3 31.1l-28.6 100c-2.4 8.4-.1 17.4 6.1 23.6s15.2 8.5 23.6 6.1l100-28.6c11.8-3.4 22.5-9.7 31.1-18.3L487 138.9c28.1-28.1 28.1-73.7 0-101.8L474.9 25C446.8-3.1 401.2-3.1 373.1 25zM88 64C39.4 64 0 103.4 0 152V424c0 48.6 39.4 88 88 88H360c48.6 0 88-39.4 88-88V312c0-13.3-10.7-24-24-24s-24 10.7-24 24V424c0 22.1-17.9 40-40 40H88c-22.1 0-40-17.9-40-40V152c0-22.1 17.9-40 40-40H200c13.3 0 24-10.7 24-24s-10.7-24-24-24H88z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "pencil": { + "aliases": { + "names": [ + "pencil-alt" + ], + "unicodes": { + "composite": [ + "270f", + "f040" + ], + "primary": [ + "f040" + ], + "secondary": [ + "10f040", + "10f303" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Lower Left Pencil", + "design", + "draw", + "edit", + "lead", + "pencil", + "update", + "write" + ] + }, + "unicode": "f303", + "label": "Pencil", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M410.3 231l11.3-11.3-33.9-33.9-62.1-62.1L291.7 89.8l-11.3 11.3-22.6 22.6L58.6 322.9c-10.4 10.4-18 23.3-22.2 37.4L1 480.7c-2.5 8.4-.2 17.5 6.1 23.7s15.3 8.5 23.7 6.1l120.3-35.4c14.1-4.2 27-11.8 37.4-22.2L387.7 253.7 410.3 231zM160 399.4l-9.1 22.7c-4 3.1-8.5 5.4-13.3 6.9L59.4 452l23-78.1c1.4-4.9 3.8-9.4 6.9-13.3l22.7-9.1v32c0 8.8 7.2 16 16 16h32zM362.7 18.7L348.3 33.2 325.7 55.8 314.3 67.1l33.9 33.9 62.1 62.1 33.9 33.9 11.3-11.3 22.6-22.6 14.5-14.5c25-25 25-65.5 0-90.5L453.3 18.7c-25-25-65.5-25-90.5 0zm-47.4 168l-144 144c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l144-144c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-arrows": { + "aliases": { + "names": [ + "people-arrows-left-right" + ], + "unicodes": { + "secondary": [ + "10e068" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "distance", + "isolation", + "separate", + "social distancing", + "users-people" + ] + }, + "unicode": "e068", + "label": "People Arrows", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M43 64a64 64 0 1 1 128 0A64 64 0 1 1 43 64zM4.9 233.4C8.3 191.9 43 160 84.6 160h44.8c27 0 51 13.4 65.5 34.1c-2.7 1.9-5.2 4-7.5 6.3l-64 64c-21.9 21.9-21.9 57.3 0 79.2L171 391.2V464c0 26.5-21.5 48-48 48H91c-26.5 0-48-21.5-48-48V348.3C16.5 338.8-1.7 312.4 .8 282.7l4.1-49.3zM427 64a64 64 0 1 1 128 0A64 64 0 1 1 427 64zM410.6 200.4c-2.3-2.3-4.9-4.4-7.5-6.3c14.5-20.7 38.6-34.1 65.5-34.1h44.8c41.6 0 76.3 31.9 79.7 73.4l4.1 49.3c2.5 29.8-15.7 56.1-42.2 65.6V464c0 26.5-21.5 48-48 48H475c-26.5 0-48-21.5-48-48V391.2l47.6-47.6c21.9-21.9 21.9-57.3 0-79.2l-64-64zM251 240v32h96V240c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l64 64c9.4 9.4 9.4 24.6 0 33.9l-64 64c-6.9 6.9-17.2 8.9-26.2 5.2s-14.8-12.5-14.8-22.2V336H251v32c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-64-64c-9.4-9.4-9.4-24.6 0-33.9l64-64c6.9-6.9 17.2-8.9 26.2-5.2s14.8 12.5 14.8 22.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-carry-box": { + "aliases": { + "names": [ + "people-carry" + ], + "unicodes": { + "secondary": [ + "10f4ce" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4ce", + "label": "People Carry Box", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M80 48a48 48 0 1 1 96 0A48 48 0 1 1 80 48zm64 193.7v65.1l51 51c7.1 7.1 11.8 16.2 13.4 26.1l15.2 90.9c2.9 17.4-8.9 33.9-26.3 36.8s-33.9-8.9-36.8-26.3l-14.3-85.9L66.8 320C54.8 308 48 291.7 48 274.7V186.6c0-32.4 26.2-58.6 58.6-58.6c24.1 0 46.5 12 59.9 32l47.4 71.1 10.1 5V160c0-17.7 14.3-32 32-32H384c17.7 0 32 14.3 32 32v76.2l10.1-5L473.5 160c13.3-20 35.8-32 59.9-32c32.4 0 58.6 26.2 58.6 58.6v88.1c0 17-6.7 33.3-18.7 45.3l-79.4 79.4-14.3 85.9c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l15.2-90.9c1.6-9.9 6.3-19 13.4-26.1l51-51V241.7l-19 28.5c-4.6 7-11 12.6-18.5 16.3l-59.6 29.8c-2.4 1.3-4.9 2.2-7.6 2.8c-2.6 .6-5.3 .9-7.9 .8H256.7c-2.5 .1-5-.2-7.5-.7c-2.9-.6-5.6-1.6-8.1-3l-59.5-29.8c-7.5-3.7-13.8-9.4-18.5-16.3l-19-28.5zM2.3 468.1L50.1 348.6l49.2 49.2-37.6 94c-6.6 16.4-25.2 24.4-41.6 17.8S-4.3 484.5 2.3 468.1zM512 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm77.9 348.6l47.8 119.5c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8l-37.6-94 49.2-49.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-group": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "family", + "group", + "team" + ] + }, + "unicode": "e533", + "label": "People Group", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M72 88a56 56 0 1 1 112 0A56 56 0 1 1 72 88zM64 245.7C54 256.9 48 271.8 48 288s6 31.1 16 42.3V245.7zm144.4-49.3C178.7 222.7 160 261.2 160 304c0 34.3 12 65.8 32 90.5V416c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V389.2C26.2 371.2 0 332.7 0 288c0-61.9 50.1-112 112-112h32c24 0 46.2 7.5 64.4 20.3zM448 416V394.5c20-24.7 32-56.2 32-90.5c0-42.8-18.7-81.3-48.4-107.7C449.8 183.5 472 176 496 176h32c61.9 0 112 50.1 112 112c0 44.7-26.2 83.2-64 101.2V416c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32zm8-328a56 56 0 1 1 112 0A56 56 0 1 1 456 88zM576 245.7v84.7c10-11.3 16-26.1 16-42.3s-6-31.1-16-42.3zM320 32a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM240 304c0 16.2 6 31 16 42.3V261.7c-10 11.3-16 26.1-16 42.3zm144-42.3v84.7c10-11.3 16-26.1 16-42.3s-6-31.1-16-42.3zM448 304c0 44.7-26.2 83.2-64 101.2V448c0 17.7-14.3 32-32 32H288c-17.7 0-32-14.3-32-32V405.2c-37.8-18-64-56.5-64-101.2c0-61.9 50.1-112 112-112h32c61.9 0 112 50.1 112 112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "group", + "need" + ] + }, + "unicode": "e534", + "label": "People Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M360 72a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zM144 208a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM496 208a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM200 313.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-36.3-67.5c1.7-1.7 3.2-3.6 4.3-5.8L264 217.5V272c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V217.5l26.9 49.9c1.2 2.2 2.6 4.1 4.3 5.8l-36.3 67.5c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L440 313.5V352c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V313.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3H486.2c-16.3 0-31.9 4.5-45.4 12.6l-33.6-62.3c-15.3-28.5-45.1-46.3-77.5-46.3H310.2c-32.4 0-62.1 17.8-77.5 46.3l-33.6 62.3c-13.5-8.1-29.1-12.6-45.4-12.6H134.2c-32.4 0-62.1 17.8-77.5 46.3L18.9 340.6c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L88 313.5V352c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V313.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-pulling": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forced return", + "yanking" + ] + }, + "unicode": "e535", + "label": "People Pulling", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M80 96A48 48 0 1 0 80 0a48 48 0 1 0 0 96zM64 128c-35.3 0-64 28.7-64 64V320c0 17.7 14.3 32 32 32c9.8 0 18.5-4.4 24.4-11.2L80.4 485.3c2.9 17.4 19.4 29.2 36.8 26.3s29.2-19.4 26.3-36.8L123.1 352h15.7l30 134.9c3.8 17.3 20.9 28.1 38.2 24.3s28.1-20.9 24.3-38.2l-57.3-258 116.3 53.8c.5 .3 1.1 .5 1.6 .7c8.6 3.6 18 3.1 25.9-.7c3.4-1.6 6.6-3.9 9.3-6.7c3.1-3.2 5.5-7 7.1-11.4c.1-.3 .2-.7 .3-1l2.5-7.5c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L537 232.7l-15.3-36.8C504.5 154.8 464.3 128 419.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-24.4 10.9-44.6 29-58.1 51.6L157.3 136.9C144.7 131 130.9 128 117 128H64zM464 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM349.7 335.6l-25 62.4-59.4 59.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L372.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-robbery": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "criminal", + "hands up", + "looting", + "robbery", + "steal" + ] + }, + "unicode": "e536", + "label": "People Robbery", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M480.2 59.1C470.1 99.6 433.7 128 392 128s-78.1-28.4-88.2-68.9L295 24.2C290.8 7.1 273.4-3.3 256.2 1S228.7 22.6 233 39.8l8.7 34.9c11 44 40.2 79.6 78.3 99.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V174.3c38.1-20 67.3-55.6 78.3-99.6L551 39.8c4.3-17.1-6.1-34.5-23.3-38.8S493.2 7.1 489 24.2l-8.7 34.9zM392 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM72 96A48 48 0 1 0 72 0a48 48 0 1 0 0 96zm-8 32c-35.3 0-64 28.7-64 64v96l0 .6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352H80V480c0 17.7 14.3 32 32 32s32-14.3 32-32V252.7l13 20.5c5.9 9.2 16.1 14.9 27 14.9h48c17.7 0 32-14.3 32-32s-14.3-32-32-32H201.6l-37.4-58.9C149.6 142 124.1 128 96.7 128H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-roof": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "family", + "group", + "manage", + "people", + "safe", + "shelter" + ] + }, + "unicode": "e537", + "label": "People Roof", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M335.5 4l288 160c15.4 8.6 21 28.1 12.4 43.5s-28.1 21-43.5 12.4L320 68.6 47.5 220c-15.4 8.6-34.9 3-43.5-12.4s-3-34.9 12.4-43.5L304.5 4c9.7-5.4 21.4-5.4 31.1 0zM320 160a40 40 0 1 1 0 80 40 40 0 1 1 0-80zM144 256a40 40 0 1 1 0 80 40 40 0 1 1 0-80zm312 40a40 40 0 1 1 80 0 40 40 0 1 1 -80 0zM226.9 491.4L200 441.5V480c0 17.7-14.3 32-32 32H120c-17.7 0-32-14.3-32-32V441.5L61.1 491.4c-6.3 11.7-20.8 16-32.5 9.8s-16-20.8-9.8-32.5l37.9-70.3c15.3-28.5 45.1-46.3 77.5-46.3h19.5c16.3 0 31.9 4.5 45.4 12.6l33.6-62.3c15.3-28.5 45.1-46.3 77.5-46.3h19.5c32.4 0 62.1 17.8 77.5 46.3l33.6 62.3c13.5-8.1 29.1-12.6 45.4-12.6h19.5c32.4 0 62.1 17.8 77.5 46.3l37.9 70.3c6.3 11.7 1.9 26.2-9.8 32.5s-26.2 1.9-32.5-9.8L552 441.5V480c0 17.7-14.3 32-32 32H472c-17.7 0-32-14.3-32-32V441.5l-26.9 49.9c-6.3 11.7-20.8 16-32.5 9.8s-16-20.8-9.8-32.5l36.3-67.5c-1.7-1.7-3.2-3.6-4.3-5.8L376 345.5V400c0 17.7-14.3 32-32 32H296c-17.7 0-32-14.3-32-32V345.5l-26.9 49.9c-1.2 2.2-2.6 4.1-4.3 5.8l36.3 67.5c6.3 11.7 1.9 26.2-9.8 32.5s-26.2 1.9-32.5-9.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pepper-hot": { + "aliases": { + "unicodes": { + "composite": [ + "1f336" + ], + "secondary": [ + "10f816" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buffalo wings", + "capsicum", + "chili", + "chilli", + "habanero", + "hot", + "hot pepper", + "jalapeno", + "mexican", + "pepper", + "spicy", + "tabasco", + "vegetable" + ] + }, + "unicode": "f816", + "label": "Pepper Hot", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M428.3 3c11.6-6.4 26.2-2.3 32.6 9.3l4.8 8.7c19.3 34.7 19.8 75.7 3.4 110C495.8 159.6 512 197.9 512 240c0 18.5-3.1 36.3-8.9 52.8c-6.1 17.3-28.5 16.3-36.8-.1l-11.7-23.4c-4.1-8.1-12.4-13.3-21.5-13.3H360c-13.3 0-24-10.7-24-24V152c0-13.3-10.7-24-24-24l-17.1 0c-21.3 0-30-23.9-10.8-32.9C304.7 85.4 327.7 80 352 80c28.3 0 54.8 7.3 77.8 20.2c5.5-18.2 3.7-38.4-6-55.8L419 35.7c-6.4-11.6-2.3-26.2 9.3-32.6zM171.2 345.5L264 160l40 0v80c0 26.5 21.5 48 48 48h76.2l23.9 47.8C372.3 443.9 244.3 512 103.2 512H44.4C19.9 512 0 492.1 0 467.6c0-20.8 14.5-38.8 34.8-43.3l49.8-11.1c37.6-8.4 69.5-33.2 86.7-67.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "perbyte": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e083", + "label": "PerByte", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M305.314,284.578H246.6V383.3h58.711q24.423,0,38.193-13.77t13.77-36.11q0-21.826-14.032-35.335T305.314,284.578ZM149.435,128.7H90.724v98.723h58.711q24.42,0,38.19-13.773t13.77-36.107q0-21.826-14.029-35.338T149.435,128.7ZM366.647,32H81.353A81.445,81.445,0,0,0,0,113.352V398.647A81.445,81.445,0,0,0,81.353,480H366.647A81.445,81.445,0,0,0,448,398.647V113.352A81.445,81.445,0,0,0,366.647,32Zm63.635,366.647a63.706,63.706,0,0,1-63.635,63.635H81.353a63.706,63.706,0,0,1-63.635-63.635V113.352A63.706,63.706,0,0,1,81.353,49.718H366.647a63.706,63.706,0,0,1,63.635,63.634ZM305.314,128.7H246.6v98.723h58.711q24.423,0,38.193-13.773t13.77-36.107q0-21.826-14.032-35.338T305.314,128.7Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "percent": { + "aliases": { + "names": [ + "percentage" + ], + "unicodes": { + "composite": [ + "f295", + "f541" + ], + "primary": [ + "f295", + "f541" + ], + "secondary": [ + "1025", + "10f295", + "10f541" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Percent Sign", + "discount", + "fraction", + "proportion", + "rate", + "ratio" + ] + }, + "unicode": "25", + "label": "Percent", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M374.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-320 320c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l320-320zM128 128A64 64 0 1 0 0 128a64 64 0 1 0 128 0zM384 384a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "periscope": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3da", + "label": "Periscope", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "person": { + "aliases": { + "names": [ + "male" + ], + "unicodes": { + "composite": [ + "1f9cd" + ], + "secondary": [ + "10f183" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "man", + "person standing", + "stand", + "standing", + "woman" + ] + }, + "unicode": "f183", + "label": "Person", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-arrow-down-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ground", + "indigenous", + "native" + ] + }, + "unicode": "e538", + "label": "Person Arrow Down To Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8 352V352h16v96H184zm-64 0H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H152h80H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H264V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6H177.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L120 256.9V448zM464 64V306.7l-25.4-25.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l80 80c12.5 12.5 32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L528 306.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-arrow-up-from-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "population", + "rise" + ] + }, + "unicode": "e539", + "label": "Person Arrow Up From Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8 352V352h16v96H184zm-64 0H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H152h80H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H264V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6H177.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L120 256.9V448zM598.6 121.4l-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L464 141.3 464 384c0 17.7 14.3 32 32 32s32-14.3 32-32V141.3l25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-biking": { + "aliases": { + "names": [ + "biking" + ], + "unicodes": { + "composite": [ + "1f6b4" + ], + "secondary": [ + "10f84a" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bicycle", + "bike", + "biking", + "cyclist", + "pedal", + "person biking", + "summer", + "wheel" + ] + }, + "unicode": "f84a", + "label": "Person Biking", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M400 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm27.2 64l-61.8-48.8c-17.3-13.6-41.7-13.8-59.1-.3l-83.1 64.2c-30.7 23.8-28.5 70.8 4.3 91.6L288 305.1V416c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-10.7-5.3-20.7-14.2-26.6L295 232.9l60.3-48.5L396 217c5.7 4.5 12.7 7 20 7h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H427.2zM56 384a72 72 0 1 1 144 0A72 72 0 1 1 56 384zm200 0A128 128 0 1 0 0 384a128 128 0 1 0 256 0zm184 0a72 72 0 1 1 144 0 72 72 0 1 1 -144 0zm200 0a128 128 0 1 0 -256 0 128 128 0 1 0 256 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-booth": { + "aliases": { + "unicodes": { + "secondary": [ + "10f756" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "changing room", + "curtain", + "vote", + "voting" + ] + }, + "unicode": "f756", + "label": "Person Booth", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V192h64V32zm320 0c0-17.7-14.3-32-32-32s-32 14.3-32 32V480c0 17.7 14.3 32 32 32s32-14.3 32-32V32zM224 512c17.7 0 32-14.3 32-32V320H192V480c0 17.7 14.3 32 32 32zM320 0c-9.3 0-18.1 4-24.2 11s-8.8 16.3-7.5 25.5l31.2 218.6L288.6 409.7c-3.5 17.3 7.8 34.2 25.1 37.7s34.2-7.8 37.7-25.1l.7-3.6c1.3 16.4 15.1 29.4 31.9 29.4c17.7 0 32-14.3 32-32c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H320zM112 80A48 48 0 1 0 16 80a48 48 0 1 0 96 0zm0 261.3V269.3l4.7 4.7c9 9 21.2 14.1 33.9 14.1H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H157.3l-41.6-41.6c-14.3-14.3-33.8-22.4-54-22.4C27.6 160 0 187.6 0 221.6v55.7l0 .9V480c0 17.7 14.3 32 32 32s32-14.3 32-32V384l32 42.7V480c0 17.7 14.3 32 32 32s32-14.3 32-32V421.3c0-10.4-3.4-20.5-9.6-28.8L112 341.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-breastfeeding": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baby", + "child", + "infant", + "mother", + "nutrition", + "sustenance" + ] + }, + "unicode": "e53a", + "label": "Person Breastfeeding", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0a80 80 0 1 1 0 160A80 80 0 1 1 224 0zM436.8 382.8L373.5 462c-16.6 20.7-46.8 24.1-67.5 7.5c-17.6-14.1-22.7-38.1-13.5-57.7l-.7-.1c-38.9-5.6-74.3-25.1-99.7-54.8V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 .8 0 1.6 .1 2.4l101.4 50.7c23.7 11.9 33.3 40.7 21.5 64.4s-40.7 33.3-64.4 21.5L27.2 427.3c-1.1-.5-2.2-1.1-3.3-1.7c-4.9-2.8-9.2-6.4-12.6-10.6c-4.6-5.4-7.8-11.7-9.6-18.4c-3.3-12-1.9-25.2 4.8-36.6c.6-1.1 1.3-2.2 2-3.2L75.6 256.1c26.7-40.1 71.7-64.1 119.8-64.1h75.2c46.5 0 90.1 22.5 117.2 60.3l50.7 70.9c2.2 3 4 6.1 5.5 9.4c2.9 6.7 4.3 13.8 4 20.8c-.3 10.6-4.2 21-11.2 29.4zM320 332a44 44 0 1 0 -88 0 44 44 0 1 0 88 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abuse", + "accident", + "crash", + "explode", + "violence" + ] + }, + "unicode": "e53b", + "label": "Person Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8 384V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6H465.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L408 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32zM190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74L55.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L10.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L90.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6L176 286.1l58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 50.5-7.8 24.4-40.5-55.2-38L315 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3L220.3 92.1l-29.4-74z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-cane": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aging", + "cane", + "elderly", + "old", + "staff" + ] + }, + "unicode": "e53c", + "label": "Person Cane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M240 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm-8 187.3l47.4 57.1c11.3 13.6 31.5 15.5 45.1 4.2s15.5-31.5 4.2-45.1l-73.7-88.9c-18.2-22-45.3-34.7-73.9-34.7H145.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L88 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V235.3zM320 376c0-4.4 3.6-8 8-8s8 3.6 8 8V488c0 13.3 10.7 24 24 24s24-10.7 24-24V376c0-30.9-25.1-56-56-56s-56 25.1-56 56v8c0 13.3 10.7 24 24 24s24-10.7 24-24v-8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-chalkboard": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blackboard", + "instructor", + "keynote", + "lesson", + "presentation", + "teacher" + ] + }, + "unicode": "e53d", + "label": "Person Chalkboard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8 384V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V192h56 64 16c17.7 0 32-14.3 32-32s-14.3-32-32-32H384V64H576V256H384V224H320v48c0 26.5 21.5 48 48 48H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H368c-26.5 0-48 21.5-48 48v80H243.1 177.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L120 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "approved", + "not affected", + "ok", + "okay" + ] + }, + "unicode": "e53e", + "label": "Person Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zm136 16a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L416 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "alert", + "lost", + "missing" + ] + }, + "unicode": "e53f", + "label": "Person Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-minus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "remove" + ] + }, + "unicode": "e540", + "label": "Person Circle Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zm136 16a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm224 0c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16s7.2 16 16 16H496c8.8 0 16-7.2 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-plus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "found" + ] + }, + "unicode": "e541", + "label": "Person Circle Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm16 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H368c-8.8 0-16 7.2-16 16s7.2 16 16 16h48v48c0 8.8 7.2 16 16 16s16-7.2 16-16V384h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H448V304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-question": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "lost", + "missing" + ] + }, + "unicode": "e542", + "label": "Person Circle Question", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zM368 321.6V328c0 8.8 7.2 16 16 16s16-7.2 16-16v-6.4c0-5.3 4.3-9.6 9.6-9.6h40.5c7.7 0 13.9 6.2 13.9 13.9c0 5.2-2.9 9.9-7.4 12.3l-32 16.8c-5.3 2.8-8.6 8.2-8.6 14.2V384c0 8.8 7.2 16 16 16s16-7.2 16-16v-5.1l23.5-12.3c15.1-7.9 24.5-23.6 24.5-40.6c0-25.4-20.6-45.9-45.9-45.9H409.6c-23 0-41.6 18.6-41.6 41.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dead", + "removed" + ] + }, + "unicode": "e543", + "label": "Person Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm59.3 107.3c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L409.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L432 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368l36.7-36.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-digging": { + "aliases": { + "names": [ + "digging" + ], + "unicodes": { + "secondary": [ + "10f85e" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bury", + "construction", + "debris", + "dig", + "men at work" + ] + }, + "unicode": "f85e", + "label": "Person Digging", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M208 64a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM9.8 214.8c5.1-12.2 19.1-18 31.4-12.9L60.7 210l22.9-38.1C99.9 144.6 129.3 128 161 128c51.4 0 97 32.9 113.3 81.7l34.6 103.7 79.3 33.1 34.2-45.6c6.4-8.5 16.6-13.3 27.2-12.8s20.3 6.4 25.8 15.5l96 160c5.9 9.9 6.1 22.2 .4 32.2s-16.3 16.2-27.8 16.2H288c-11.1 0-21.4-5.7-27.2-15.2s-6.4-21.2-1.4-31.1l16-32c5.4-10.8 16.5-17.7 28.6-17.7h32l22.5-30L22.8 246.2c-12.2-5.1-18-19.1-12.9-31.4zm82.8 91.8l112 48c11.8 5 19.4 16.6 19.4 29.4v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V405.1l-60.6-26-37 111c-5.6 16.8-23.7 25.8-40.5 20.2S-3.9 486.6 1.6 469.9l48-144 11-33 32 13.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-dots-from-line": { + "aliases": { + "names": [ + "diagnoses" + ], + "unicodes": { + "secondary": [ + "10f470" + ] + } + }, + "changes": [ + "5.0.7", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "allergy", + "diagnosis" + ] + }, + "unicode": "f470", + "label": "Person Dots From Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 176A88 88 0 1 0 288 0a88 88 0 1 0 0 176zM78.7 372.9c15-12.5 50-34.4 97.3-50.1V432H400V322.7c47.3 15.8 82.3 37.7 97.3 50.1c20.4 17 50.6 14.2 67.6-6.1s14.2-50.6-6.1-67.6c-12-10-30.1-22.5-53.2-35C497.2 278.4 481.7 288 464 288c-26.5 0-48-21.5-48-48c0-4.3 .6-8.4 1.6-12.4C379.1 215.9 335.3 208 288 208c-60.2 0-114.9 12.9-160 29.9c0 .7 0 1.4 0 2.1c0 26.5-21.5 48-48 48c-11.8 0-22.7-4.3-31-11.4c-13.1 8.1-23.7 15.9-31.7 22.5c-20.4 17-23.1 47.2-6.1 67.6s47.2 23.1 67.6 6.1zM24 464c-13.3 0-24 10.7-24 24s10.7 24 24 24H552c13.3 0 24-10.7 24-24s-10.7-24-24-24H24zM224 280a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm104 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM96 240a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm368 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-dress": { + "aliases": { + "names": [ + "female" + ], + "unicodes": { + "secondary": [ + "10f182" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "man", + "skirt", + "woman" + ] + }, + "unicode": "f182", + "label": "Person Dress", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM88 384H70.2c-10.9 0-18.6-10.7-15.2-21.1L93.3 248.1 59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l53.6-89.2c20.3-33.7 56.7-54.3 96-54.3h11.6c39.3 0 75.7 20.6 96 54.3l53.6 89.2c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9l-33.9-56.3L265 362.9c3.5 10.4-4.3 21.1-15.2 21.1H232v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H152v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-dress-burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abuse", + "accident", + "crash", + "explode", + "violence" + ] + }, + "unicode": "e544", + "label": "Person Dress Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M528 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM390.2 384H408v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h16v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h17.8c10.9 0 18.6-10.7 15.2-21.1L546.7 248.1l33.9 56.3c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-53.6-89.2c-20.2-33.7-56.7-54.3-96-54.3H474.2c-39.3 0-75.7 20.6-96 54.3l-53.6 89.2c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9l33.9-56.3L375 362.9c-3.5 10.4 4.3 21.1 15.2 21.1zM190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74L55.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L10.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L90.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6L176 286.1l58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 50.5-7.8 24.4-40.5-55.2-38L315 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3L220.3 92.1l-29.4-74z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-drowning": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drown", + "emergency", + "swim" + ] + }, + "unicode": "e545", + "label": "Person Drowning", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M192 64c0-17.7-14.3-32-32-32s-32 14.3-32 32V96.2c0 54.1 23.5 104 62.2 138.3l-21 146.7c7.8 2.1 15.5 3.3 22.8 3.3c21.1 0 42-8.5 59.2-20.3c22.1-15.5 51.6-15.5 73.7 0c12.4 8.5 26.1 14.8 39.7 18l17.7-97.6c10.7-1.2 21.3-3.1 31.9-5.5l105-23.9c17.2-3.9 28-21.1 24.1-38.3s-21.1-28-38.3-24.1L400 216.6c-41 9.3-83.7 7.5-123.7-5.2c-50.2-16-84.3-62.6-84.3-115.3V64zM320 192a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM306.5 389.9c-11.1-7.9-25.9-7.9-37 0C247 405.4 219.5 416 192 416c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 469.7 159 480 192 480c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 405.2 410.9 416 384 416c-27.5 0-55-10.6-77.5-26.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-falling": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accident", + "fall", + "trip" + ] + }, + "unicode": "e546", + "label": "Person Falling", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M256 0c17.7 0 32 14.3 32 32l0 9.8c0 54.6-27.9 104.6-72.5 133.6l.2 .3L272.5 256l87.5 0c15.1 0 29.3 7.1 38.4 19.2l43.2 57.6c10.6 14.1 7.7 34.2-6.4 44.8s-34.2 7.7-44.8-6.4L352 320l-96 0h-1.4l92.3 142.6c9.6 14.8 5.4 34.6-9.5 44.3s-34.6 5.4-44.3-9.5L132.5 249.2c-2.9 9.2-4.5 19-4.5 29l0 73.8c0 17.7-14.3 32-32 32s-32-14.3-32-32V278.2c0-65.1 39.6-123.7 100.1-147.9C200.3 115.8 224 80.8 224 41.8l0-9.8c0-17.7 14.3-32 32-32zM80 32a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-falling-burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accident", + "crash", + "death", + "fall", + "homicide", + "murder" + ] + }, + "unicode": "e547", + "label": "Person Falling Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 9.8c0 39-23.7 74-59.9 88.4C71.6 154.5 32 213 32 278.2V352c0 17.7 14.3 32 32 32s32-14.3 32-32l0-73.8c0-10 1.6-19.8 4.5-29L261.1 497.4c9.6 14.8 29.4 19.1 44.3 9.5s19.1-29.4 9.5-44.3L222.6 320H224l80 0 38.4 51.2c10.6 14.1 30.7 17 44.8 6.4s17-30.7 6.4-44.8l-43.2-57.6C341.3 263.1 327.1 256 312 256l-71.5 0-56.8-80.2-.2-.3c44.7-29 72.5-79 72.5-133.6l0-9.8zM96 80A48 48 0 1 0 0 80a48 48 0 1 0 96 0zM464 286.1l58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 78.7-12.2c6.5-1 11.7-5.9 13.1-12.2s-1.1-13-6.5-16.7l-65.6-45.1L603 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3L508.3 92.1l-29.4-74C476.4 12 470.6 8 464 8s-12.4 4-14.9 10.1l-29.4 74L343.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1-65.6 45.1c-5.4 3.7-8 10.3-6.5 16.7c.1 .3 .1 .6 .2 .8l19.4 0c20.1 0 39.2 7.5 53.8 20.8l18.4 2.9L383 265.3l36.2 48.3c2.1 2.8 3.9 5.7 5.5 8.6L464 286.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-half-dress": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gender", + "man", + "restroom", + "transgender", + "woman" + ] + }, + "unicode": "e548", + "label": "Person Half Dress", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm8 352V128h6.9c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352h0zM58.2 182.3c19.9-33.1 55.3-53.5 93.8-54.3V384h0v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H70.2c-10.9 0-18.6-10.7-15.2-21.1L93.3 248.1 59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l53.6-89.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-harassing": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abuse", + "scream", + "shame", + "shout", + "yell" + ] + }, + "unicode": "e549", + "label": "Person Harassing", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM59.4 304.5L88 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V235.3l47.4 57.1c11.3 13.6 31.5 15.5 45.1 4.2s15.5-31.5 4.2-45.1l-73.7-88.9c-18.2-22-45.3-34.7-73.9-34.7H145.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9zM480 240a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM464 344v58.7l-41.4-41.4c-7.3-7.3-17.6-10.6-27.8-9s-18.9 8.1-23.5 17.3l-48 96c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3L408.8 438l54.7 54.7c12.4 12.4 29.1 19.3 46.6 19.3c36.4 0 65.9-29.5 65.9-65.9V344c0-30.9-25.1-56-56-56s-56 25.1-56 56zM288 48c0 8.8 7.2 16 16 16h56c8.8 0 16-7.2 16-16s-7.2-16-16-16H304c-8.8 0-16 7.2-16 16zm-.8 49.7c-7.9-4-17.5-.7-21.5 7.2s-.7 17.5 7.2 21.5l48 24c7.9 4 17.5 .7 21.5-7.2s.7-17.5-7.2-21.5l-48-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-hiking": { + "aliases": { + "names": [ + "hiking" + ], + "unicodes": { + "secondary": [ + "10f6ec" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "autumn", + "fall", + "hike", + "mountain", + "outdoors", + "summer", + "walk" + ] + }, + "unicode": "f6ec", + "label": "Person Hiking", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm51.3 182.7L224.2 307l49.7 49.7c9 9 14.1 21.2 14.1 33.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V397.3l-73.9-73.9c-15.8-15.8-22.2-38.6-16.9-60.3l20.4-84c8.3-34.1 42.7-54.9 76.7-46.4c19 4.8 35.6 16.4 46.4 32.7L305.1 208H336V184c0-13.3 10.7-24 24-24s24 10.7 24 24v55.8c0 .1 0 .2 0 .2s0 .2 0 .2V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V272H296.6c-16 0-31-8-39.9-21.4l-13.3-20zM81.1 471.9L117.3 334c3 4.2 6.4 8.2 10.1 11.9l41.9 41.9L142.9 488.1c-4.5 17.1-22 27.3-39.1 22.8s-27.3-22-22.8-39.1zm55.5-346L101.4 266.5c-3 12.1-14.9 19.9-27.2 17.9l-47.9-8c-14-2.3-22.9-16.3-19.2-30L31.9 155c9.5-34.8 41.1-59 77.2-59h4.2c15.6 0 27.1 14.7 23.3 29.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-military-pointing": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "army", + "customs", + "guard" + ] + }, + "unicode": "e54a", + "label": "Person Military Pointing", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M214.9 14.1C202 15.2 192 26 192 39c0 13.8 11.2 25 25 25H368c8.8 0 16-7.2 16-16V17.4C384 8 376 .7 366.7 1.4L214.9 14.1zM208 112c0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H209.6c-1 5.2-1.6 10.5-1.6 16zM40 224c-22.1 0-40 17.9-40 40s17.9 40 40 40H192v89.4L354.8 230.5c-13.3-4.3-27.3-6.5-41.6-6.5H208 40zm345.7 20.9L214.6 416H384V369.7l53.6 90.6c11.2 19 35.8 25.3 54.8 14.1s25.3-35.8 14.1-54.8L430.3 290.8c-11.2-18.9-26.6-34.5-44.6-45.9zM192 448v32c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32V448H192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-military-rifle": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "armed forces", + "army", + "military", + "rifle", + "war" + ] + }, + "unicode": "e54b", + "label": "Person Military Rifle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 39c0-13 10-23.8 22.9-24.9L302.7 1.4C312 .7 320 8 320 17.4V48c0 8.8-7.2 16-16 16H153c-13.8 0-25-11.2-25-25zm17.6 57H302.4c1 5.2 1.6 10.5 1.6 16c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-5.5 .6-10.8 1.6-16zm228 364.3L320 369.7V480c0 1.3-.1 2.5-.2 3.8L145.5 234.9c16.6-7.1 34.6-10.9 53.3-10.9h50.4c15.9 0 31.3 2.8 45.8 7.9L389.9 67.7c-7.7-4.4-10.3-14.2-5.9-21.9s14.2-10.3 21.9-5.9l13.9 8 13.9 8c7.7 4.4 10.3 14.2 5.9 21.9L384 173.9l1.6 .9c15.3 8.8 20.6 28.4 11.7 43.7L360.6 282c2 2.8 3.9 5.8 5.7 8.8l76.1 128.8c11.2 19 4.9 43.5-14.1 54.8s-43.5 4.9-54.8-14.1zM288 512H160c-17.7 0-32-14.3-32-32V369.7L74.4 460.3c-11.2 19-35.8 25.3-54.8 14.1S-5.7 438.7 5.6 419.7L81.7 290.8c9.4-15.8 21.7-29.3 36-40L299.1 510c-3.5 1.3-7.2 2-11.1 2zM264 320a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-military-to-person": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "civilian", + "coordination", + "military" + ] + }, + "unicode": "e54c", + "label": "Person Military To Person", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M67.1 11.7c-8 .9-14.1 7.7-14.1 15.8c0 8.7 7 15.8 15.8 15.9H173.5c8.3-.1 14.9-6.8 14.9-15.1V15.1c0-9-7.8-16-16.7-15L67.1 11.7zM178.6 73.5H62.9c-1.5 5.3-2.4 11-2.4 16.8c0 33.3 27 60.2 60.2 60.2s60.2-27 60.2-60.2c0-5.8-.8-11.5-2.4-16.8zM30.4 240.9v30.1c0 16.6 13.5 30.1 30.1 30.1H180.9c1.7 0 3.3-.1 4.9-.4L50.1 196.4c-12.1 11-19.7 26.9-19.7 44.6zm179.1 40c1.1-3.1 1.6-6.4 1.6-9.9V240.9c0-33.3-27-60.2-60.2-60.2H90.6c-3.5 0-7 .3-10.3 .9l129.1 99.3zM361.6 150.6a60.2 60.2 0 1 0 0-120.5 60.2 60.2 0 1 0 0 120.5zm-30.1 30.1c-33.3 0-60.2 27-60.2 60.2v30.1c0 16.6 13.5 30.1 30.1 30.1H421.9c16.6 0 30.1-13.5 30.1-30.1V240.9c0-33.3-27-60.2-60.2-60.2H331.5zM203.3 423.6c4.9-4.3 7.7-10.5 7.7-17s-2.8-12.7-7.7-17l-60.2-52.7c-6.7-5.8-16.1-7.2-24.2-3.6s-13.3 11.7-13.3 20.6V384l-82.8 0C10.3 384 .2 394.1 .2 406.6s10.1 22.6 22.6 22.6l82.8 0v30.1c0 8.9 5.2 16.9 13.3 20.6s17.5 2.3 24.2-3.6l60.2-52.7zm67.9-17c0 6.5 2.8 12.7 7.7 17l60.2 53.1c6.7 5.9 16.1 7.3 24.2 3.6s13.3-11.7 13.3-20.6l0-30.5 82.8 0c12.5 0 22.6-10.1 22.6-22.6s-10.1-22.6-22.6-22.6l-82.8 0 0-30.1c0-8.9-5.2-16.9-13.3-20.6s-17.5-2.3-24.2 3.6L279 389.6c-4.9 4.3-7.7 10.5-7.7 17z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-praying": { + "aliases": { + "names": [ + "pray" + ], + "unicodes": { + "composite": [ + "1f6d0" + ], + "secondary": [ + "10f683" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "kneel", + "place of worship", + "religion", + "thank", + "worship" + ] + }, + "unicode": "f683", + "label": "Person Praying", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 64A64 64 0 1 0 192 64a64 64 0 1 0 128 0zM200.7 264l22.9 31.5c6.5 8.9 16.3 14.7 27.2 16.1s21.9-1.7 30.4-8.7l88-72c17.1-14 19.6-39.2 5.6-56.3s-39.2-19.6-56.3-5.6l-55.2 45.2-26.2-36C221.6 156.7 196.6 144 170 144c-30.9 0-59.2 17.1-73.6 44.4L47.8 280.9c-20.2 38.5-9.4 85.9 25.6 111.8L126.6 432H40c-22.1 0-40 17.9-40 40s17.9 40 40 40H248c17.3 0 32.6-11.1 38-27.5s-.3-34.4-14.2-44.7L155.7 354l45-90z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-pregnant": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baby", + "birth", + "child", + "pregnant", + "pregnant woman", + "woman" + ] + }, + "unicode": "e31e", + "label": "Person Pregnant", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM88 383c-13.8-3.6-24-16.1-24-31V296.9l-4.6 7.6c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c15-24.9 40.3-41.5 68.7-45.6c4.1-.6 8.2-1 12.5-1h1.1 12.5H160c1.4 0 2.8 .1 4.1 .3c35.7 2.9 65.4 29.3 72.1 65l6.1 32.5c44.3 8.6 77.7 47.5 77.7 94.3v32c0 17.7-14.3 32-32 32H272 232v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384h-8-8v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V383z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-rays": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "focus", + "shine" + ] + }, + "unicode": "e54d", + "label": "Person Rays", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9l-28.6 47.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L328 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H248zM7 7C16.4-2.3 31.6-2.3 41 7l80 80c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L7 41C-2.3 31.6-2.3 16.4 7 7zM471 7c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-80 80c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L471 7zM7 505c-9.4-9.4-9.4-24.6 0-33.9l80-80c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L41 505c-9.4 9.4-24.6 9.4-33.9 0zm464 0l-80-80c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l80 80c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-rifle": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "army", + "combatant", + "gun", + "military", + "rifle", + "war" + ] + }, + "unicode": "e54e", + "label": "Person Rifle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M249.2 192c25.4 0 49.8 7.1 70.8 19.9V512H128V337.7L74.4 428.3c-11.2 19-35.8 25.3-54.8 14.1S-5.7 406.7 5.6 387.7L81.7 258.8c24.5-41.4 69-66.8 117.1-66.8h50.4zM144 80a80 80 0 1 1 160 0A80 80 0 1 1 144 80zM432 0c8.8 0 16 7.2 16 16V132.3c9.6 5.5 16 15.9 16 27.7V269.3l16-5.3V208c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v84.5c0 6.9-4.4 13-10.9 15.2L464 325.3V352h48c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H468l23 92.1c2.5 10.1-5.1 19.9-15.5 19.9H416c-8.8 0-16-7.2-16-16V400H384c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32V160c0-11.8 6.4-22.2 16-27.7V32c-8.8 0-16-7.2-16-16s7.2-16 16-16h16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-running": { + "aliases": { + "names": [ + "running" + ], + "unicodes": { + "composite": [ + "1f3c3" + ], + "secondary": [ + "10f70c" + ] + } + }, + "changes": [ + "5.4.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exit", + "flee", + "marathon", + "person running", + "race", + "running" + ] + }, + "unicode": "f70c", + "label": "Person Running", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M320 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM125.7 175.5c9.9-9.9 23.4-15.5 37.5-15.5c1.9 0 3.8 .1 5.6 .3L137.6 254c-9.3 28 1.7 58.8 26.8 74.5l86.2 53.9-25.4 88.8c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l28.7-100.4c5.9-20.6-2.6-42.6-20.7-53.9L238 299l30.9-82.4 5.1 12.3C289 264.7 323.9 288 362.7 288H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H362.7c-12.9 0-24.6-7.8-29.5-19.7l-6.3-15c-14.6-35.1-44.1-61.9-80.5-73.1l-48.7-15c-11.1-3.4-22.7-5.2-34.4-5.2c-31 0-60.8 12.3-82.7 34.3L57.4 153.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l23.1-23.1zM91.2 352H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h69.6c19 0 36.2-11.2 43.9-28.5L157 361.6l-9.5-6c-17.5-10.9-30.5-26.8-37.9-44.9L91.2 352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-shelter": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "house", + "inside", + "roof", + "safe", + "safety", + "shelter" + ] + }, + "unicode": "e54f", + "label": "Person Shelter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M271.9 4.2c-9.8-5.6-21.9-5.6-31.8 0l-224 128C6.2 137.9 0 148.5 0 160V480c0 17.7 14.3 32 32 32s32-14.3 32-32V178.6L256 68.9 448 178.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-11.5-6.2-22.1-16.1-27.8l-224-128zM256 208a40 40 0 1 0 0-80 40 40 0 1 0 0 80zm-8 280V400h16v88c0 13.3 10.7 24 24 24s24-10.7 24-24V313.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3H246.2c-32.4 0-62.1 17.8-77.5 46.3l-37.9 70.3c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L200 313.5V488c0 13.3 10.7 24 24 24s24-10.7 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-skating": { + "aliases": { + "names": [ + "skating" + ], + "unicodes": { + "secondary": [ + "10f7c5" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "figure skating", + "ice", + "olympics", + "rink", + "skate", + "winter" + ] + }, + "unicode": "f7c5", + "label": "Person Skating", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM128 128c0-17.7 14.3-32 32-32H319.4c43.6 0 64.6 53.4 32.8 83.1l-74.4 69.4 60.2 60.2c9 9 14.1 21.2 14.1 33.9V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V349.3l-77.9-77.8c-26.6-26.6-24.6-70.3 4.3-94.4l20.4-17H160c-17.7 0-32-14.3-32-32zM81.4 353.4l86.9-86.9c4.6 10 11 19.3 19.3 27.5l21.8 21.8-82.7 82.7c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3zm322.5 95.1c8.6 2.1 13.8 10.8 11.6 19.4l-.4 1.7c-6.2 24.9-28.6 42.4-54.3 42.4H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h88.8c11 0 20.6-7.5 23.3-18.2l.4-1.7c2.1-8.6 10.8-13.8 19.4-11.6zM135.2 478.3l-6.2 3.1c-21.6 10.8-47.6 6.6-64.6-10.5L4.7 411.3c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l59.6 59.6c7.3 7.3 18.5 9.1 27.7 4.5l6.2-3.1c7.9-4 17.5-.7 21.5 7.2s.7 17.5-7.2 21.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-skiing": { + "aliases": { + "names": [ + "skiing" + ], + "unicodes": { + "composite": [ + "26f7" + ], + "secondary": [ + "10f7c9" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "downhill", + "olympics", + "ski", + "skier", + "snow", + "winter" + ] + }, + "unicode": "f7c9", + "label": "Person Skiing", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M380.7 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM2.7 268.9c6.1-11.8 20.6-16.3 32.4-10.2L232.7 361.3l46.2-69.2-75.1-75.1c-14.6-14.6-20.4-33.9-18.4-52.1l108.8 52 39.3 39.3c16.2 16.2 18.7 41.5 6 60.6L289.8 391l128.7 66.8c13.6 7.1 29.8 7.2 43.6 .3l15.2-7.6c11.9-5.9 26.3-1.1 32.2 10.7s1.1 26.3-10.7 32.2l-15.2 7.6c-27.5 13.7-59.9 13.5-87.2-.7L12.9 301.3C1.2 295.2-3.4 280.7 2.7 268.9zM118.9 65.6L137 74.2l8.7-17.4c4-7.9 13.6-11.1 21.5-7.2s11.1 13.6 7.2 21.5l-8.5 16.9 54.7 26.2c1.5-.7 3.1-1.4 4.7-2.1l83.4-33.4c34.2-13.7 72.8 4.2 84.5 39.2l17.1 51.2 52.1 26.1c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-58.1-29c-11.4-5.7-20-15.7-24.1-27.8l-5.8-17.3-27.3 12.1-6.8 3-6.7-3.2L151.5 116.7l-9.2 18.4c-4 7.9-13.6 11.1-21.5 7.2s-11.1-13.6-7.2-21.5l9-18-17.6-8.4c-8-3.8-11.3-13.4-7.5-21.3s13.4-11.3 21.3-7.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-skiing-nordic": { + "aliases": { + "names": [ + "skiing-nordic" + ], + "unicodes": { + "secondary": [ + "10f7ca" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cross country", + "olympics", + "winter" + ] + }, + "unicode": "f7ca", + "label": "Person Skiing Nordic", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M336 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM227.2 160c1.9 0 3.8 .1 5.6 .3L201.6 254c-9.3 28 1.7 58.8 26.8 74.5l86.2 53.9L291.3 464H202.8l41.1-88.1-32.4-20.3c-7.8-4.9-14.7-10.7-20.6-17.3L132.2 464H99.7l54.2-257.6c4.6-1.5 9-4.1 12.7-7.8l23.1-23.1c9.9-9.9 23.4-15.5 37.5-15.5zM121.4 198.6c.4 .4 .8 .8 1.3 1.2L67 464H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H159.3c.4 0 .9 0 1.3 0H319.3c.5 0 1 0 1.4 0H504c39.8 0 72-32.2 72-72v-8c0-13.3-10.7-24-24-24s-24 10.7-24 24v8c0 13.3-10.7 24-24 24H434.6l27.6-179.3c10.5-5.2 17.8-16.1 17.8-28.7c0-17.7-14.3-32-32-32H426.7c-12.9 0-24.6-7.8-29.5-19.7l-6.3-15c-14.6-35.1-44.1-61.9-80.5-73.1l-48.7-15c-11.1-3.4-22.7-5.2-34.4-5.2c-31 0-60.8 12.3-82.7 34.3l-23.1 23.1c-12.5 12.5-12.5 32.8 0 45.3zm308 89.4L402.3 464H357.8l21.6-75.6c5.9-20.6-2.6-42.6-20.7-53.9L302 299l30.9-82.4 5.1 12.3C353 264.7 387.9 288 426.7 288h2.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-snowboarding": { + "aliases": { + "names": [ + "snowboarding" + ], + "unicodes": { + "composite": [ + "1f3c2" + ], + "secondary": [ + "10f7ce" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "olympics", + "ski", + "snow", + "snowboard", + "snowboarder", + "winter" + ] + }, + "unicode": "f7ce", + "label": "Person Snowboarding", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M209.7 3.4c15.8-7.9 35-1.5 42.9 14.3l25 50 42.4 8.5c19.5 3.9 37.8 12.3 53.5 24.5l126.1 98.1c14 10.9 16.5 31 5.6 44.9s-31 16.5-44.9 5.6l-72.1-56.1-71.5 31.8 33.1 27.6c23.2 19.3 33.5 50 26.7 79.4l-17.4 75.2c-2.2 9.4-8.2 16.8-16.1 21l86.5 33.1c4.6 1.8 9.4 2.6 14.3 2.6H472c13.3 0 24 10.7 24 24s-10.7 24-24 24H443.8c-10.8 0-21.4-2-31.5-5.8L60.1 371.3c-11.5-4.4-22-11.2-30.8-20L7 329c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22.4 22.4c4 4 8.7 7.1 14 9.1l22.4 8.6c-.8-1.6-1.5-3.2-2.1-4.9c-5.6-16.8 3.5-34.9 20.2-40.5L192 264.9l0-53.2c0-24.2 13.7-46.4 35.4-57.2l45.2-22.6-7.5-1.5c-19.4-3.9-35.9-16.5-44.7-34.1l-25-50c-7.9-15.8-1.5-35 14.3-42.9zM139 350.1l159 60.9c-2.1-5.6-2.6-11.9-1.1-18.2l17.4-75.2c1.4-5.9-.7-12-5.4-15.9l-52.8-44 0 18.8c0 20.7-13.2 39-32.8 45.5L139 350.1zM432 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-swimming": { + "aliases": { + "names": [ + "swimmer" + ], + "unicodes": { + "composite": [ + "1f3ca" + ], + "secondary": [ + "10f5c4" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ocean", + "person swimming", + "pool", + "sea", + "swim", + "water" + ] + }, + "unicode": "f5c4", + "label": "Person Swimming", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M309.5 178.4L447.9 297.1c-1.6 .9-3.2 2-4.8 3c-18 12.4-40.1 20.3-59.2 20.3c-19.6 0-40.8-7.7-59.2-20.3c-22.1-15.5-51.6-15.5-73.7 0c-17.1 11.8-38 20.3-59.2 20.3c-10.1 0-21.1-2.2-31.9-6.2C163.1 193.2 262.2 96 384 96h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384c-26.9 0-52.3 6.6-74.5 18.4zM160 160A64 64 0 1 1 32 160a64 64 0 1 1 128 0zM306.5 325.9C329 341.4 356.5 352 384 352c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 405.7 417 416 384 416c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 341.2 165.1 352 192 352c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-through-window": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "door", + "exit", + "forced entry", + "leave", + "robbery", + "steal", + "window" + ] + }, + "unicode": "e5a9", + "label": "Person Through Window", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 64l224 0 0 9.8c0 39-23.7 74-59.9 88.4C167.6 186.5 128 245 128 310.2l0 73.8s0 0 0 0H64V64zm288 0l224 0V384H508.3l-3.7-4.5-75.2-90.2c-9.1-10.9-22.6-17.3-36.9-17.3l-71.1 0-41-63.1c-.3-.5-.6-1-1-1.4c44.7-29 72.5-79 72.5-133.6l0-9.8zm73 320H379.2l42.7 64H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48V400c0 26.5 21.5 48 48 48H308.2l33.2 49.8c9.8 14.7 29.7 18.7 44.4 8.9s18.7-29.7 8.9-44.4L310.5 336l74.6 0 40 48zm-159.5 0H192s0 0 0 0l0-73.8c0-10.2 1.6-20.1 4.7-29.5L265.5 384zM192 128a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking": { + "aliases": { + "names": [ + "walking" + ], + "unicodes": { + "composite": [ + "1f6b6" + ], + "secondary": [ + "10f554" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crosswalk", + "exercise", + "hike", + "move", + "person walking", + "walk", + "walking" + ] + }, + "unicode": "f554", + "label": "Person Walking", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM126.5 199.3c-1 .4-1.9 .8-2.9 1.2l-8 3.5c-16.4 7.3-29 21.2-34.7 38.2l-2.6 7.8c-5.6 16.8-23.7 25.8-40.5 20.2s-25.8-23.7-20.2-40.5l2.6-7.8c11.4-34.1 36.6-61.9 69.4-76.5l8-3.5c20.8-9.2 43.3-14 66.1-14c44.6 0 84.8 26.8 101.9 67.9L281 232.7l21.4 10.7c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3L247 287.3c-10.3-5.2-18.4-13.8-22.8-24.5l-9.6-23-19.3 65.5 49.5 54c5.4 5.9 9.2 13 11.2 20.8l23 92.1c4.3 17.1-6.1 34.5-23.3 38.8s-34.5-6.1-38.8-23.3l-22-88.1-70.7-77.1c-14.8-16.1-20.3-38.6-14.7-59.7l16.9-63.5zM68.7 398l25-62.4c2.1 3 4.5 5.8 7 8.6l40.7 44.4-14.5 36.2c-2.4 6-6 11.5-10.6 16.1L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L68.7 398z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking-arrow-loop-left": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "population return", + "return" + ] + }, + "unicode": "e551", + "label": "Person Walking Arrow Loop Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM123.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8C248.5 154.8 208.3 128 163.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1L68.7 398 9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L116.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zm347.7 119c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L461.3 384H480c88.4 0 160-71.6 160-160s-71.6-160-160-160L352 64c-17.7 0-32 14.3-32 32s14.3 32 32 32l128 0c53 0 96 43 96 96s-43 96-96 96H461.3l25.4-25.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3l80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exit", + "internally displaced", + "leave", + "refugee" + ] + }, + "unicode": "e552", + "label": "Person Walking Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM123.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8C248.5 154.8 208.3 128 163.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1L68.7 398 9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L116.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zM550.6 153.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L530.7 224H384c-17.7 0-32 14.3-32 32s14.3 32 32 32H530.7l-25.4 25.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3l-80-80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking-dashed-line-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exit", + "refugee" + ] + }, + "unicode": "e553", + "label": "Person Walking Dashed Line Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM123.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8C248.5 154.8 208.3 128 163.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1L68.7 398 9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L116.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zM550.6 153.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L530.7 224H384c-17.7 0-32 14.3-32 32s14.3 32 32 32H530.7l-25.4 25.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3l-80-80zM392 0c-13.3 0-24 10.7-24 24V72c0 13.3 10.7 24 24 24s24-10.7 24-24V24c0-13.3-10.7-24-24-24zm24 152c0-13.3-10.7-24-24-24s-24 10.7-24 24v16c0 13.3 10.7 24 24 24s24-10.7 24-24V152zM392 320c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24s24-10.7 24-24V344c0-13.3-10.7-24-24-24zm24 120c0-13.3-10.7-24-24-24s-24 10.7-24 24v48c0 13.3 10.7 24 24 24s24-10.7 24-24V440z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking-luggage": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "baggage", + "briefcase", + "carry-on", + "deployment", + "rolling" + ] + }, + "unicode": "e554", + "label": "Person Walking Luggage", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M400 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM315.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L473 232.7l-15.3-36.8C440.5 154.8 400.3 128 355.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1l-25 62.4-59.4 59.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L308.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zM224 274.1c-7.7-4.4-17.4-1.8-21.9 5.9l-32 55.4L115.7 304c-15.3-8.8-34.9-3.6-43.7 11.7L8 426.6c-8.8 15.3-3.6 34.9 11.7 43.7l55.4 32c15.3 8.8 34.9 3.6 43.7-11.7l64-110.9c1.5-2.6 2.6-5.2 3.3-8L229.9 296c4.4-7.7 1.8-17.4-5.9-21.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking-with-cane": { + "aliases": { + "names": [ + "blind" + ], + "unicodes": { + "secondary": [ + "10f29d" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "cane" + ] + }, + "unicode": "f29d", + "label": "Person Walking With Cane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M144 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8.4 32c-36.4 0-69.6 20.5-85.9 53.1L3.4 273.7c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3L96 231.6v43.2c0 17 6.7 33.3 18.7 45.3L192 397.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V390.6c0-12.7-5.1-24.9-14.1-33.9L192 306.7V213.3l70.4 93.9c10.6 14.1 30.7 17 44.8 6.4s17-30.7 6.4-44.8L236.8 166.4C218.7 142.2 190.2 128 160 128H135.6zM96.3 346.8L65 472.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l22-88.2L96.3 346.8zM418.8 505.1c5 7.3 15 9.1 22.3 4s9.1-15 4-22.3L326.9 316.1c-2.8 3.8-6.1 7.3-10.1 10.3c-5 3.8-10.5 6.4-16.2 7.9L418.8 505.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "peseta-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Peseta Sign", + "currency" + ] + }, + "unicode": "e221", + "label": "Peseta Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64v96c-17.7 0-32 14.3-32 32s14.3 32 32 32l0 96V448c0 17.7 14.3 32 32 32s32-14.3 32-32V352h96c77.4 0 142-55 156.8-128H352c17.7 0 32-14.3 32-32s-14.3-32-32-32h-3.2C334 87 269.4 32 192 32H64zM282.5 160H96V96h96c41.8 0 77.4 26.7 90.5 64zM96 224H282.5c-13.2 37.3-48.7 64-90.5 64H96V224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "peso-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Peso Sign", + "currency" + ] + }, + "unicode": "e222", + "label": "Peso Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64v64c-17.7 0-32 14.3-32 32s14.3 32 32 32l0 32c-17.7 0-32 14.3-32 32s14.3 32 32 32l0 64v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c68.4 0 127.7-39 156.8-96H352c17.7 0 32-14.3 32-32s-14.3-32-32-32h-.7c.5-5.3 .7-10.6 .7-16s-.2-10.7-.7-16h.7c17.7 0 32-14.3 32-32s-14.3-32-32-32H332.8C303.7 71 244.4 32 176 32H64zm190.4 96H96V96h80c30.5 0 58.2 12.2 78.4 32zM96 192H286.9c.7 5.2 1.1 10.6 1.1 16s-.4 10.8-1.1 16H96V192zm158.4 96c-20.2 19.8-47.9 32-78.4 32H96V288H254.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "phabricator": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3db", + "label": "Phabricator", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "phoenix-framework": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3dc", + "label": "Phoenix Framework", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "phoenix-squadron": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f511", + "label": "Phoenix Squadron", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 63.38C142.49 27.25 201.55 7.31 260.51 8.81c29.58-.38 59.11 5.37 86.91 15.33-24.13-4.63-49-6.34-73.38-2.45C231.17 27 191 48.84 162.21 80.87c5.67-1 10.78-3.67 16-5.86 18.14-7.87 37.49-13.26 57.23-14.83 19.74-2.13 39.64-.43 59.28 1.92-14.42 2.79-29.12 4.57-43 9.59-34.43 11.07-65.27 33.16-86.3 62.63-13.8 19.71-23.63 42.86-24.67 67.13-.35 16.49 5.22 34.81 19.83 44a53.27 53.27 0 0 0 37.52 6.74c15.45-2.46 30.07-8.64 43.6-16.33 11.52-6.82 22.67-14.55 32-24.25 3.79-3.22 2.53-8.45 2.62-12.79-2.12-.34-4.38-1.11-6.3.3a203 203 0 0 1-35.82 15.37c-20 6.17-42.16 8.46-62.1.78 12.79 1.73 26.06.31 37.74-5.44 20.23-9.72 36.81-25.2 54.44-38.77a526.57 526.57 0 0 1 88.9-55.31c25.71-12 52.94-22.78 81.57-24.12-15.63 13.72-32.15 26.52-46.78 41.38-14.51 14-27.46 29.5-40.11 45.18-3.52 4.6-8.95 6.94-13.58 10.16a150.7 150.7 0 0 0-51.89 60.1c-9.33 19.68-14.5 41.85-11.77 63.65 1.94 13.69 8.71 27.59 20.9 34.91 12.9 8 29.05 8.07 43.48 5.1 32.8-7.45 61.43-28.89 81-55.84 20.44-27.52 30.52-62.2 29.16-96.35-.52-7.5-1.57-15-1.66-22.49 8 19.48 14.82 39.71 16.65 60.83 2 14.28.75 28.76-1.62 42.9-1.91 11-5.67 21.51-7.78 32.43a165 165 0 0 0 39.34-81.07 183.64 183.64 0 0 0-14.21-104.64c20.78 32 32.34 69.58 35.71 107.48.49 12.73.49 25.51 0 38.23A243.21 243.21 0 0 1 482 371.34c-26.12 47.34-68 85.63-117.19 108-78.29 36.23-174.68 31.32-248-14.68A248.34 248.34 0 0 1 25.36 366 238.34 238.34 0 0 1 0 273.08v-31.34C3.93 172 40.87 105.82 96 63.38m222 80.33a79.13 79.13 0 0 0 16-4.48c5-1.77 9.24-5.94 10.32-11.22-8.96 4.99-17.98 9.92-26.32 15.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "phone": { + "aliases": { + "unicodes": { + "composite": [ + "1f4de", + "1f57b" + ], + "secondary": [ + "10f095" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Left Hand Telephone Receiver", + "call", + "earphone", + "number", + "phone", + "receiver", + "support", + "telephone", + "telephone receiver", + "voice" + ] + }, + "unicode": "f095", + "label": "Phone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "phone-flip": { + "aliases": { + "names": [ + "phone-alt" + ], + "unicodes": { + "composite": [ + "1f57d" + ], + "secondary": [ + "10f879" + ] + } + }, + "changes": [ + "5.9.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right Hand Telephone Receiver", + "call", + "earphone", + "number", + "support", + "telephone", + "voice" + ] + }, + "unicode": "f879", + "label": "Phone Flip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M347.1 24.6c7.7-18.6 28-28.5 47.4-23.2l88 24C499.9 30.2 512 46 512 64c0 247.4-200.6 448-448 448c-18 0-33.8-12.1-38.6-29.5l-24-88c-5.3-19.4 4.6-39.7 23.2-47.4l96-40c16.3-6.8 35.2-2.1 46.3 11.6L207.3 368c70.4-33.3 127.4-90.3 160.7-160.7L318.7 167c-13.7-11.2-18.4-30-11.6-46.3l40-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "phone-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f3dd" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "cancel", + "earphone", + "mute", + "number", + "support", + "telephone", + "voice" + ] + }, + "unicode": "f3dd", + "label": "Phone Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M228.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C76.1 30.2 64 46 64 64c0 107.4 37.8 206 100.8 283.1L9.2 469.1c-10.4 8.2-12.3 23.3-4.1 33.7s23.3 12.3 33.7 4.1l592-464c10.4-8.2 12.3-23.3 4.1-33.7s-23.3-12.3-33.7-4.1L253 278c-17.8-21.5-32.9-45.2-45-70.7L257.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96zm96.8 319l-91.3 72C310.7 476 407.1 512 512 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L368.7 368c-15-7.1-29.3-15.2-43-24.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "phone-volume": { + "aliases": { + "names": [ + "volume-control-phone" + ], + "unicodes": { + "secondary": [ + "10f2a0" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.0.3", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "sound", + "support", + "telephone", + "voice", + "volume-control-phone" + ] + }, + "unicode": "f2a0", + "label": "Phone Volume", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M280 0C408.1 0 512 103.9 512 232c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-101.6-82.4-184-184-184c-13.3 0-24-10.7-24-24s10.7-24 24-24zm8 192a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm-32-72c0-13.3 10.7-24 24-24c75.1 0 136 60.9 136 136c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-48.6-39.4-88-88-88c-13.3 0-24-10.7-24-24zM117.5 1.4c19.4-5.3 39.7 4.6 47.4 23.2l40 96c6.8 16.3 2.1 35.2-11.6 46.3L144 207.3c33.3 70.4 90.3 127.4 160.7 160.7L345 318.7c11.2-13.7 30-18.4 46.3-11.6l96 40c18.6 7.7 28.5 28 23.2 47.4l-24 88C481.8 499.9 466 512 448 512C200.6 512 0 311.4 0 64C0 46 12.1 30.2 29.5 25.4l88-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "photo-film": { + "aliases": { + "names": [ + "photo-video" + ], + "unicodes": { + "secondary": [ + "10f87c" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "av", + "film", + "image", + "library", + "media" + ] + }, + "unicode": "f87c", + "label": "Photo Film", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 0H576c35.3 0 64 28.7 64 64V288c0 35.3-28.7 64-64 64H256c-35.3 0-64-28.7-64-64V64c0-35.3 28.7-64 64-64zM476 106.7C471.5 100 464 96 456 96s-15.5 4-20 10.7l-56 84L362.7 169c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6h80 48H552c8.9 0 17-4.9 21.2-12.7s3.7-17.3-1.2-24.6l-96-144zM336 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM64 128h96V384v32c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V384H512v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192c0-35.3 28.7-64 64-64zm8 64c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16H88c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H72zm0 104c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16H88c8.8 0 16-7.2 16-16V312c0-8.8-7.2-16-16-16H72zm0 104c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16H88c8.8 0 16-7.2 16-16V416c0-8.8-7.2-16-16-16H72zm336 16v16c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16V416c0-8.8-7.2-16-16-16H424c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "php": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f457", + "label": "PHP", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pied-piper": { + "changes": [ + "4.6.0", + "5.0.0", + "5.0.10", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2ae", + "label": "Pied Piper Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 480, + 512 + ], + "width": 480, + "height": 512, + "path": "M455.93,23.2C429.23,30,387.79,51.69,341.35,90.66A206,206,0,0,0,240,64C125.13,64,32,157.12,32,272s93.13,208,208,208,208-93.13,208-208a207.25,207.25,0,0,0-58.75-144.81,155.35,155.35,0,0,0-17,27.4A176.16,176.16,0,0,1,417.1,272c0,97.66-79.44,177.11-177.09,177.11a175.81,175.81,0,0,1-87.63-23.4c82.94-107.33,150.79-37.77,184.31-226.65,5.79-32.62,28-94.26,126.23-160.18C471,33.45,465.35,20.8,455.93,23.2ZM125,406.4A176.66,176.66,0,0,1,62.9,272C62.9,174.34,142.35,94.9,240,94.9a174,174,0,0,1,76.63,17.75C250.64,174.76,189.77,265.52,125,406.4Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pied-piper-alt": { + "changes": [ + "4.1.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a8", + "label": "Alternate Pied Piper Logo (Old)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9zm135.9 197.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM340.8 177c6.6 2.8 11.5 9.2 22.7 22.1 2-1.4 7.5-5.2 7.5-8.6 0-4.9-11.8-13.2-13.2-23 11.2-5.7 25.2-6 37.6-8.9 68.1-16.4 116.3-52.9 146.8-116.7C548.3 29.3 554 16.1 554.6 2l-2 2.6c-28.4 50-33 63.2-81.3 100-31.9 24.4-69.2 40.2-106.6 54.6l-6.3-.3v-21.8c-19.6 1.6-19.7-14.6-31.6-23-18.7 20.6-31.6 40.8-58.9 51.1-12.7 4.8-19.6 10-25.9 21.8 34.9-16.4 91.2-13.5 98.8-10zM555.5 0l-.6 1.1-.3.9.6-.6zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46.1v27.2l11.8-3.4-2.9-23.8zm-68.7-150.4l24.1 61.2 21-13.8-31.3-50.9zm84.4 154.9l2 12.4c9-1.5 58.4-6.6 58.4-14.1 0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pied-piper-hat": { + "changes": [ + "5.0.10" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing" + ] + }, + "unicode": "f4e5", + "label": "Pied Piper Hat (Old)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pied-piper-pp": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a7", + "label": "Pied Piper PP Logo (Old)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "piggy-bank": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4d3" + ] + } + }, + "changes": [ + "5.0.9", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "save", + "savings" + ] + }, + "unicode": "f4d3", + "label": "Piggy Bank", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M400 96l0 .7c-5.3-.4-10.6-.7-16-.7H256c-16.5 0-32.5 2.1-47.8 6c-.1-2-.2-4-.2-6c0-53 43-96 96-96s96 43 96 96zm-16 32c3.5 0 7 .1 10.4 .3c4.2 .3 8.4 .7 12.6 1.3C424.6 109.1 450.8 96 480 96h32l-18.8 75.1c15.8 14.8 28.7 32.8 37.5 52.9H544c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H512c-9.1 12.1-19.9 22.9-32 32v64c0 17.7-14.3 32-32 32H416c-17.7 0-32-14.3-32-32V448H256v32c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V416c-34.9-26.2-58.7-66.3-63.2-112H68c-37.6 0-68-30.4-68-68s30.4-68 68-68h4c13.3 0 24 10.7 24 24s-10.7 24-24 24H68c-11 0-20 9-20 20s9 20 20 20H99.2c12.1-59.8 57.7-107.5 116.3-122.8c12.9-3.4 26.5-5.2 40.5-5.2H384zm64 136a24 24 0 1 0 -48 0 24 24 0 1 0 48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pills": { + "aliases": { + "unicodes": { + "secondary": [ + "10f484" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine", + "prescription", + "tablets" + ] + }, + "unicode": "f484", + "label": "Pills", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 96c-26.5 0-48 21.5-48 48V256h96V144c0-26.5-21.5-48-48-48zM0 144C0 82.1 50.1 32 112 32s112 50.1 112 112V368c0 61.9-50.1 112-112 112S0 429.9 0 368V144zM554.9 399.4c-7.1 12.3-23.7 13.1-33.8 3.1L333.5 214.9c-10-10-9.3-26.7 3.1-33.8C360 167.7 387.1 160 416 160c88.4 0 160 71.6 160 160c0 28.9-7.7 56-21.1 79.4zm-59.5 59.5C472 472.3 444.9 480 416 480c-88.4 0-160-71.6-160-160c0-28.9 7.7-56 21.1-79.4c7.1-12.3 23.7-13.1 33.8-3.1L498.5 425.1c10 10 9.3 26.7-3.1 33.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pinterest": { + "changes": [ + "2.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f0d2", + "label": "Pinterest", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pinterest-p": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f231", + "label": "Pinterest P", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pix": { + "changes": [ + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e43a", + "label": "Pix", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M242.4 292.5C247.8 287.1 257.1 287.1 262.5 292.5L339.5 369.5C353.7 383.7 372.6 391.5 392.6 391.5H407.7L310.6 488.6C280.3 518.1 231.1 518.1 200.8 488.6L103.3 391.2H112.6C132.6 391.2 151.5 383.4 165.7 369.2L242.4 292.5zM262.5 218.9C256.1 224.4 247.9 224.5 242.4 218.9L165.7 142.2C151.5 127.1 132.6 120.2 112.6 120.2H103.3L200.7 22.76C231.1-7.586 280.3-7.586 310.6 22.76L407.8 119.9H392.6C372.6 119.9 353.7 127.7 339.5 141.9L262.5 218.9zM112.6 142.7C126.4 142.7 139.1 148.3 149.7 158.1L226.4 234.8C233.6 241.1 243 245.6 252.5 245.6C261.9 245.6 271.3 241.1 278.5 234.8L355.5 157.8C365.3 148.1 378.8 142.5 392.6 142.5H430.3L488.6 200.8C518.9 231.1 518.9 280.3 488.6 310.6L430.3 368.9H392.6C378.8 368.9 365.3 363.3 355.5 353.5L278.5 276.5C264.6 262.6 240.3 262.6 226.4 276.6L149.7 353.2C139.1 363 126.4 368.6 112.6 368.6H80.78L22.76 310.6C-7.586 280.3-7.586 231.1 22.76 200.8L80.78 142.7H112.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pizza-slice": { + "aliases": { + "unicodes": { + "secondary": [ + "10f818" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cheese", + "chicago", + "italian", + "mozzarella", + "new york", + "pepperoni", + "pie", + "slice", + "teenage mutant ninja turtles", + "tomato" + ] + }, + "unicode": "f818", + "label": "Pizza Slice", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M169.7 .9c-22.8-1.6-41.9 14-47.5 34.7L110.4 80c.5 0 1.1 0 1.6 0c176.7 0 320 143.3 320 320c0 .5 0 1.1 0 1.6l44.4-11.8c20.8-5.5 36.3-24.7 34.7-47.5C498.5 159.5 352.5 13.5 169.7 .9zM399.8 410.2c.1-3.4 .2-6.8 .2-10.2c0-159.1-128.9-288-288-288c-3.4 0-6.8 .1-10.2 .2L.5 491.9c-1.5 5.5 .1 11.4 4.1 15.4s9.9 5.6 15.4 4.1L399.8 410.2zM176 208a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm64 128a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM96 384a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "place-of-worship": { + "aliases": { + "unicodes": { + "secondary": [ + "10f67f" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "church", + "holy", + "mosque", + "synagogue" + ] + }, + "unicode": "f67f", + "label": "Place Of Worship", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 109.3V217.6L183.3 242c-14.5 8.7-23.3 24.3-23.3 41.2V512h96V416c0-35.3 28.7-64 64-64s64 28.7 64 64v96h96V283.2c0-16.9-8.8-32.5-23.3-41.2L416 217.6V109.3c0-8.5-3.4-16.6-9.4-22.6L331.3 11.3c-6.2-6.2-16.4-6.2-22.6 0L233.4 86.6c-6 6-9.4 14.1-9.4 22.6zM24.9 330.3C9.5 338.8 0 354.9 0 372.4V464c0 26.5 21.5 48 48 48h80V273.6L24.9 330.3zM592 512c26.5 0 48-21.5 48-48V372.4c0-17.5-9.5-33.6-24.9-42.1L512 273.6V512h80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane": { + "aliases": { + "unicodes": { + "secondary": [ + "10f072" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "destination", + "fly", + "location", + "mode", + "travel", + "trip" + ] + }, + "unicode": "f072", + "label": "Plane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M482.3 192c34.2 0 93.7 29 93.7 64c0 36-59.5 64-93.7 64l-116.6 0L265.2 495.9c-5.7 10-16.3 16.1-27.8 16.1l-56.2 0c-10.6 0-18.3-10.2-15.4-20.4l49-171.6L112 320 68.8 377.6c-3 4-7.8 6.4-12.8 6.4l-42 0c-7.8 0-14-6.3-14-14c0-1.3 .2-2.6 .5-3.9L32 256 .5 145.9c-.4-1.3-.5-2.6-.5-3.9c0-7.8 6.3-14 14-14l42 0c5 0 9.8 2.4 12.8 6.4L112 192l102.9 0-49-171.6C162.9 10.2 170.6 0 181.2 0l56.2 0c11.5 0 22.1 6.2 27.8 16.1L365.7 192l116.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-arrival": { + "aliases": { + "unicodes": { + "composite": [ + "1f6ec" + ], + "secondary": [ + "10f5af" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aeroplane", + "airplane", + "airplane arrival", + "airport", + "arrivals", + "arriving", + "destination", + "fly", + "land", + "landing", + "location", + "mode", + "travel", + "trip" + ] + }, + "unicode": "f5af", + "label": "Plane Arrival", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M.3 166.9L0 68C0 57.7 9.5 50.1 19.5 52.3l35.6 7.9c10.6 2.3 19.2 9.9 23 20L96 128l127.3 37.6L181.8 20.4C178.9 10.2 186.6 0 197.2 0h40.1c11.6 0 22.2 6.2 27.9 16.3l109 193.8 107.2 31.7c15.9 4.7 30.8 12.5 43.7 22.8l34.4 27.6c24 19.2 18.1 57.3-10.7 68.2c-41.2 15.6-86.2 18.1-128.8 7L121.7 289.8c-11.1-2.9-21.2-8.7-29.3-16.9L9.5 189.4c-5.9-6-9.3-14-9.3-22.5zM32 448H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm96-80a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm128-16a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "flight", + "fly", + "not affected", + "ok", + "okay", + "travel" + ] + }, + "unicode": "e555", + "label": "Plane Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49 0 70.9-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14c1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3 .4 2.6 .5 3.9 .5c6 0 11.1-3.7 13.1-9C344.5 470.7 320 422.2 320 368c0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "airplane", + "airport", + "flight", + "fly", + "travel" + ] + }, + "unicode": "e556", + "label": "Plane Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49 0 70.9-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14c1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3 .4 2.6 .5 3.9 .5c6 0 11.1-3.7 13.1-9C344.5 470.7 320 422.2 320 368c0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "destroy", + "flight", + "fly", + "travel" + ] + }, + "unicode": "e557", + "label": "Plane Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49 0 70.9-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14c1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3 .4 2.6 .5 3.9 .5c6 0 11.1-3.7 13.1-9C344.5 470.7 320 422.2 320 368c0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-departure": { + "aliases": { + "unicodes": { + "composite": [ + "1f6eb" + ], + "secondary": [ + "10f5b0" + ] + } + }, + "changes": [ + "5.1.0", + "5.8.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aeroplane", + "airplane", + "airplane departure", + "airport", + "check-in", + "departing", + "departure", + "departures", + "destination", + "fly", + "location", + "mode", + "take off", + "taking off", + "travel", + "trip" + ] + }, + "unicode": "f5b0", + "label": "Plane Departure", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M381 114.9L186.1 41.8c-16.7-6.2-35.2-5.3-51.1 2.7L89.1 67.4C78 73 77.2 88.5 87.6 95.2l146.9 94.5L136 240 77.8 214.1c-8.7-3.9-18.8-3.7-27.3 .6L18.3 230.8c-9.3 4.7-11.8 16.8-5 24.7l73.1 85.3c6.1 7.1 15 11.2 24.3 11.2H248.4c5 0 9.9-1.2 14.3-3.4L535.6 212.2c46.5-23.3 82.5-63.3 100.8-112C645.9 75 627.2 48 600.2 48H542.8c-20.2 0-40.2 4.8-58.2 14L381 114.9zM0 480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "closed", + "flight", + "fly", + "lockdown", + "quarantine", + "travel" + ] + }, + "unicode": "e558", + "label": "Plane Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 93.7C192 59.5 221 0 256 0c36 0 64 59.5 64 93.7v84.6l101.8 58.2C418 247.6 416 259.6 416 272v24.6c-17.9 10.4-30.3 29.1-31.8 50.9L320 329.1V400l57.6 43.2c4 3 6.4 7.8 6.4 12.8v24 18c0 7.8-6.3 14-14 14c-1.3 0-2.6-.2-3.9-.5L256 480 145.9 511.5c-1.3 .4-2.6 .5-3.9 .5c-7.8 0-14-6.3-14-14V456c0-5 2.4-9.8 6.4-12.8L192 400l0-70.9-171.6 49C10.2 381.1 0 373.4 0 362.8V297.3c0-5.7 3.1-11 8.1-13.9L192 178.3V93.7zM528 240c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e069" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane mode", + "airport", + "canceled", + "covid-19", + "delayed", + "grounded", + "travel" + ] + }, + "unicode": "e069", + "label": "Plane Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M514.3 192c34.2 0 93.7 29 93.7 64c0 36-59.5 64-93.7 64H440.6L630.8 469.1c10.4 8.2 12.3 23.3 4.1 33.7s-23.3 12.3-33.7 4.1L9.2 42.9C-1.2 34.7-3.1 19.6 5.1 9.2S28.4-3.1 38.8 5.1L238.1 161.3 197.8 20.4C194.9 10.2 202.6 0 213.2 0h56.2c11.5 0 22.1 6.2 27.8 16.1L397.7 192l116.6 0zM41.5 128.7l321 252.9L297.2 495.9c-5.7 10-16.3 16.1-27.8 16.1l-56.2 0c-10.6 0-18.3-10.2-15.4-20.4l49-171.6H144l-43.2 57.6c-3 4-7.8 6.4-12.8 6.4H46c-7.8 0-14-6.3-14-14c0-1.3 .2-2.6 .5-3.9L64 256 32.5 145.9c-.4-1.3-.5-2.6-.5-3.9c0-6.2 4-11.4 9.5-13.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-up": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "internet", + "signal", + "sky", + "wifi", + "wireless" + ] + }, + "unicode": "e22d", + "label": "Plane Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 93.7C192 59.5 221 0 256 0c36 0 64 59.5 64 93.7l0 66.3L497.8 278.5c8.9 5.9 14.2 15.9 14.2 26.6v56.7c0 10.9-10.7 18.6-21.1 15.2L320 320v80l57.6 43.2c4 3 6.4 7.8 6.4 12.8v42c0 7.8-6.3 14-14 14c-1.3 0-2.6-.2-3.9-.5L256 480 145.9 511.5c-1.3 .4-2.6 .5-3.9 .5c-7.8 0-14-6.3-14-14V456c0-5 2.4-9.8 6.4-12.8L192 400V320L21.1 377C10.7 380.4 0 372.7 0 361.8V305.1c0-10.7 5.3-20.7 14.2-26.6L192 160V93.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plant-wilt": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drought", + "planting", + "vegetation", + "wilt" + ] + }, + "unicode": "e5aa", + "label": "Plant Wilt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 120c0-30.9 25.1-56 56-56s56 25.1 56 56v13c-29.3 10-48 34.5-48 70.1c0 27.9 25.3 74.8 66 111.6c3.8 3.5 8.9 5.3 14 5.3s10.2-1.8 14-5.3c40.7-36.8 66-83.7 66-111.6c0-35.6-18.7-60.2-48-70.1V120C464 53.7 410.3 0 344 0S224 53.7 224 120v21.8C207.3 133 188.2 128 168 128c-66.3 0-120 53.7-120 120v13c-29.3 10-48 34.5-48 70.1C0 359 25.3 405.9 66 442.7c3.8 3.5 8.9 5.3 14 5.3s10.2-1.8 14-5.3c40.7-36.8 66-83.7 66-111.6c0-35.6-18.7-60.2-48-70.1V248c0-30.9 25.1-56 56-56s56 25.1 56 56v32V480c0 17.7 14.3 32 32 32s32-14.3 32-32V280 248 120z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plate-wheat": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bowl", + "hunger", + "rations", + "wheat" + ] + }, + "unicode": "e55a", + "label": "Plate Wheat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 32c44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80V48c0-8.8 7.2-16 16-16zM56 64h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24s10.7-24 24-24zM24 136H136c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24zm8 96c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24zM272 48c0-8.8 7.2-16 16-16c44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80V48zM400 32c44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80V48c0-8.8 7.2-16 16-16zm80 160v16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16V256c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM352 176c8.8 0 16 7.2 16 16v16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16V256c0-44.2 35.8-80 80-80zm-96 16v16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16V256c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM3.5 347.6C1.6 332.9 13 320 27.8 320H484.2c14.8 0 26.2 12.9 24.4 27.6C502.3 397.8 464.2 437 416 446v2c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32v-2c-48.2-9-86.3-48.2-92.5-98.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "play": { + "aliases": { + "unicodes": { + "composite": [ + "25b6" + ], + "secondary": [ + "10f04b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "audio", + "music", + "play", + "play button", + "playing", + "right", + "sound", + "start", + "triangle", + "video" + ] + }, + "unicode": "f04b", + "label": "Play", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80V432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "playstation": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3df", + "label": "PlayStation", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "plug": { + "aliases": { + "unicodes": { + "composite": [ + "1f50c" + ], + "secondary": [ + "10f1e6" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connect", + "electric", + "electric plug", + "electricity", + "online", + "plug", + "power" + ] + }, + "unicode": "f1e6", + "label": "Plug", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8C297 398 352 333.4 352 256V224c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-bolt": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "electricity", + "plug", + "power" + ] + }, + "unicode": "e55b", + "label": "Plug Circle Bolt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm47.9-225c4.3 3.7 5.4 9.9 2.6 14.9L452.4 356H488c5.2 0 9.8 3.3 11.4 8.2s-.1 10.3-4.2 13.4l-96 72c-4.5 3.4-10.8 3.2-15.1-.6s-5.4-9.9-2.6-14.9L411.6 380H376c-5.2 0-9.8-3.3-11.4-8.2s.1-10.3 4.2-13.4l96-72c4.5-3.4 10.8-3.2 15.1 .6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "electricity", + "not affected", + "ok", + "okay", + "plug", + "power" + ] + }, + "unicode": "e55c", + "label": "Plug Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM576 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L416 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "electric", + "electricity", + "plug", + "power" + ] + }, + "unicode": "e55d", + "label": "Plug Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-minus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "electricity", + "plug", + "power" + ] + }, + "unicode": "e55e", + "label": "Plug Circle Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM576 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-64 0c0 8.8-7.2 16-16 16l-128 0c-8.8 0-16-7.2-16-16s7.2-16 16-16H496c8.8 0 16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-plus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "electricity", + "plug", + "power" + ] + }, + "unicode": "e55f", + "label": "Plug Circle Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm16-208v48h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H448v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V384H368c-8.8 0-16-7.2-16-16s7.2-16 16-16h48V304c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destroy", + "electric", + "electricity", + "outage", + "plug", + "power" + ] + }, + "unicode": "e560", + "label": "Plug Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L454.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L432 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L409.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L432 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plus": { + "aliases": { + "names": [ + "add" + ], + "unicodes": { + "composite": [ + "2795", + "f067" + ], + "primary": [ + "f067" + ], + "secondary": [ + "102b", + "10f067" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "+", + "Plus Sign", + "add", + "create", + "expand", + "math", + "new", + "plus", + "positive", + "shape", + "sign" + ] + }, + "unicode": "2b", + "label": "Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M240 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H176V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H240V80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plus-minus": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Plus-Minus Sign", + "add", + "math", + "subtract" + ] + }, + "unicode": "e43c", + "label": "Plus Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M224 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V144H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H160V320c0 17.7 14.3 32 32 32s32-14.3 32-32V208H336c17.7 0 32-14.3 32-32s-14.3-32-32-32H224V32zM0 480c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "podcast": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2ce" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "broadcast", + "music", + "sound" + ] + }, + "unicode": "f2ce", + "label": "Podcast", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M319.4 372c48.5-31.3 80.6-85.9 80.6-148c0-97.2-78.8-176-176-176S48 126.8 48 224c0 62.1 32.1 116.6 80.6 148c1.2 17.3 4 38 7.2 57.1l.2 1C56 395.8 0 316.5 0 224C0 100.3 100.3 0 224 0S448 100.3 448 224c0 92.5-56 171.9-136 206.1l.2-1.1c3.1-19.2 6-39.8 7.2-57zm-2.3-38.1c-1.6-5.7-3.9-11.1-7-16.2c-5.8-9.7-13.5-17-21.9-22.4c19.5-17.6 31.8-43 31.8-71.3c0-53-43-96-96-96s-96 43-96 96c0 28.3 12.3 53.8 31.8 71.3c-8.4 5.4-16.1 12.7-21.9 22.4c-3.1 5.1-5.4 10.5-7 16.2C99.8 307.5 80 268 80 224c0-79.5 64.5-144 144-144s144 64.5 144 144c0 44-19.8 83.5-50.9 109.9zM224 312c32.9 0 64 8.6 64 43.8c0 33-12.9 104.1-20.6 132.9c-5.1 19-24.5 23.4-43.4 23.4s-38.2-4.4-43.4-23.4c-7.8-28.5-20.6-99.7-20.6-132.8c0-35.1 31.1-43.8 64-43.8zm0-144a56 56 0 1 1 0 112 56 56 0 1 1 0-112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "poo": { + "aliases": { + "unicodes": { + "composite": [ + "1f4a9" + ], + "secondary": [ + "10f2fe" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crap", + "dung", + "face", + "monster", + "pile of poo", + "poo", + "poop", + "shit", + "smile", + "turd" + ] + }, + "unicode": "f2fe", + "label": "Poo", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M268.9 .9c-5.5-.7-11 1.4-14.5 5.7s-4.6 10.1-2.8 15.4c2.8 8.2 4.3 16.9 4.3 26.1c0 44.1-35.7 79.9-79.8 80H160c-35.3 0-64 28.7-64 64c0 19.1 8.4 36.3 21.7 48H104c-39.8 0-72 32.2-72 72c0 23.2 11 43.8 28 57c-34.1 5.7-60 35.3-60 71c0 39.8 32.2 72 72 72H440c39.8 0 72-32.2 72-72c0-35.7-25.9-65.3-60-71c17-13.2 28-33.8 28-57c0-39.8-32.2-72-72-72H394.3c13.3-11.7 21.7-28.9 21.7-48c0-35.3-28.7-64-64-64h-5.5c3.5-10 5.5-20.8 5.5-32c0-48.6-36.2-88.8-83.1-95.1zM192 256a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm96 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm64 108.3c0 2.4-.7 4.8-2.2 6.7c-8.2 10.5-39.5 45-93.8 45s-85.6-34.6-93.8-45c-1.5-1.9-2.2-4.3-2.2-6.7c0-6.8 5.5-12.3 12.3-12.3H339.7c6.8 0 12.3 5.5 12.3 12.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "poo-storm": { + "aliases": { + "names": [ + "poo-bolt" + ], + "unicodes": { + "secondary": [ + "10f75a" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bolt", + "cloud", + "euphemism", + "lightning", + "mess", + "poop", + "shit", + "turd" + ] + }, + "unicode": "f75a", + "label": "Poo Storm", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M236.9 .2c-5.5-.7-11 1.4-14.5 5.7s-4.6 10.1-2.8 15.3c2.8 8.2 4.3 16.9 4.3 26.1c0 21.7-8.5 37.2-21.9 47.6c-13.8 10.8-34 17-57.8 17H128c-35.3 0-64 28.7-64 64c0 12.2 3.4 23.5 9.3 33.2C31.7 216.2 0 252.4 0 296c0 41 28 75.4 65.8 85.2c-5.3-18.5 1-38.5 16.2-50.7l160-128c17.6-14.1 42.6-14 60.2 .2s22.8 38.6 12.8 58.8L285.7 320H304c20.4 0 38.5 12.9 45.3 32.1c3.7 10.6 3.5 21.8 0 31.9H360c48.6 0 88-39.4 88-88c0-43.6-31.7-79.8-73.3-86.8c5.9-9.7 9.3-21.1 9.3-33.2c0-35.3-28.7-64-64-64h-1.4c.9-5.4 1.4-10.9 1.4-16.6c0-48.7-36.1-88.9-83.1-95.2zm45.1 227.4c-5.8-4.7-14.2-4.7-20.1-.1l-160 128c-5.3 4.2-7.4 11.4-5.1 17.8s8.3 10.7 15.1 10.7h70.1L129.7 488.8c-3.4 6.7-1.6 14.9 4.3 19.6s14.2 4.7 20.1 .1l160-128c5.3-4.2 7.4-11.4 5.1-17.8s-8.3-10.7-15.1-10.7H233.9l52.4-104.8c3.4-6.7 1.6-14.9-4.2-19.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "poop": { + "aliases": { + "unicodes": { + "secondary": [ + "10f619" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crap", + "poop", + "shit", + "smile", + "turd" + ] + }, + "unicode": "f619", + "label": "Poop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M254.4 6.6c3.5-4.3 9-6.5 14.5-5.7C315.8 7.2 352 47.4 352 96c0 11.2-1.9 22-5.5 32H352c35.3 0 64 28.7 64 64c0 19.1-8.4 36.3-21.7 48H408c39.8 0 72 32.2 72 72c0 23.2-11 43.8-28 57c34.1 5.7 60 35.3 60 71c0 39.8-32.2 72-72 72H72c-39.8 0-72-32.2-72-72c0-35.7 25.9-65.3 60-71c-17-13.2-28-33.8-28-57c0-39.8 32.2-72 72-72h13.7C104.4 228.3 96 211.1 96 192c0-35.3 28.7-64 64-64h16.2c44.1-.1 79.8-35.9 79.8-80c0-9.2-1.5-17.9-4.3-26.1c-1.8-5.2-.8-11.1 2.8-15.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "power-off": { + "aliases": { + "unicodes": { + "composite": [ + "23fb" + ], + "secondary": [ + "10f011" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Power Symbol", + "cancel", + "computer", + "on", + "reboot", + "restart" + ] + }, + "unicode": "f011", + "label": "Power Off", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321856, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V256c0 17.7 14.3 32 32 32s32-14.3 32-32V32zM143.5 120.6c13.6-11.3 15.4-31.5 4.1-45.1s-31.5-15.4-45.1-4.1C49.7 115.4 16 181.8 16 256c0 132.5 107.5 240 240 240s240-107.5 240-240c0-74.2-33.8-140.6-86.6-184.6c-13.6-11.3-33.8-9.4-45.1 4.1s-9.4 33.8 4.1 45.1c38.9 32.3 63.5 81 63.5 135.4c0 97.2-78.8 176-176 176s-176-78.8-176-176c0-54.4 24.7-103.1 63.5-135.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "prescription": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5b1" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "pharmacy", + "rx" + ] + }, + "unicode": "f5b1", + "label": "Prescription", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32V192v96c0 17.7 14.3 32 32 32s32-14.3 32-32V224h50.7l128 128L137.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L288 397.3 393.4 502.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L333.3 352 438.6 246.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 306.7l-85.8-85.8C251.4 209.1 288 164.8 288 112C288 50.1 237.9 0 176 0H32zM176 160H64V64H176c26.5 0 48 21.5 48 48s-21.5 48-48 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "prescription-bottle": { + "aliases": { + "unicodes": { + "secondary": [ + "10f485" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "pharmacy", + "rx" + ] + }, + "unicode": "f485", + "label": "Prescription Bottle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H352c17.7 0 32 14.3 32 32V64c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64V32zm32 96H352V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V416H144c8.8 0 16-7.2 16-16s-7.2-16-16-16H32V320H144c8.8 0 16-7.2 16-16s-7.2-16-16-16H32V224H144c8.8 0 16-7.2 16-16s-7.2-16-16-16H32V128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "prescription-bottle-medical": { + "aliases": { + "names": [ + "prescription-bottle-alt" + ], + "unicodes": { + "secondary": [ + "10f486" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "pharmacy", + "rx" + ] + }, + "unicode": "f486", + "label": "Prescription Bottle Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H352c17.7 0 32 14.3 32 32V64c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64V32zm32 96H352V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V128zM160 240v48H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V352h48c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H224V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "print": { + "aliases": { + "unicodes": { + "composite": [ + "1f5a8", + "1f5b6", + "2399" + ], + "secondary": [ + "10f02f" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Print Screen Symbol", + "Printer Icon", + "business", + "computer", + "copy", + "document", + "office", + "paper", + "printer" + ] + }, + "unicode": "f02f", + "label": "Print", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 0C92.7 0 64 28.7 64 64v96h64V64H354.7L384 93.3V160h64V93.3c0-17-6.7-33.3-18.7-45.3L400 18.7C388 6.7 371.7 0 354.7 0H128zM384 352v32 64H128V384 368 352H384zm64 32h32c17.7 0 32-14.3 32-32V256c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v96c0 17.7 14.3 32 32 32H64v64c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V384zM432 248a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "product-hunt": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f288", + "label": "Product Hunt", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pump-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06a" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anti-bacterial", + "clean", + "covid-19", + "disinfect", + "hygiene", + "medical grade", + "sanitizer", + "soap" + ] + }, + "unicode": "e06a", + "label": "Pump Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 32v96H224V96h60.1c4.2 0 8.3 1.7 11.3 4.7l33.9 33.9c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L340.7 55.4c-15-15-35.4-23.4-56.6-23.4H224c0-17.7-14.3-32-32-32H128C110.3 0 96 14.3 96 32zM85.4 160c-33.3 0-61 25.5-63.8 58.7L3 442.7C-.1 480 29.3 512 66.8 512H253.2c37.4 0 66.9-32 63.8-69.3l-18.7-224c-2.8-33.2-30.5-58.7-63.8-58.7H85.4zM184 280v32h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H184v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V360H104c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V280c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pump-soap": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06b" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anti-bacterial", + "clean", + "covid-19", + "disinfect", + "hygiene", + "sanitizer", + "soap" + ] + }, + "unicode": "e06b", + "label": "Pump Soap", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 32v96H224V96h60.1c4.2 0 8.3 1.7 11.3 4.7l33.9 33.9c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L340.7 55.4c-15-15-35.4-23.4-56.6-23.4H224c0-17.7-14.3-32-32-32H128C110.3 0 96 14.3 96 32zM85.4 160c-33.3 0-61 25.5-63.8 58.7L3 442.7C-.1 480 29.3 512 66.8 512H253.2c37.4 0 66.9-32 63.8-69.3l-18.7-224c-2.8-33.2-30.5-58.7-63.8-58.7H85.4zM224 360c0 35.3-28.7 56-64 56s-64-20.7-64-56c0-32.5 37-80.9 50.9-97.9c3.2-3.9 8.1-6.1 13.1-6.1s9.9 2.2 13.1 6.1C187 279.1 224 327.5 224 360z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pushed": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e1", + "label": "Pushed", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 432, + 512 + ], + "width": 432, + "height": 512, + "path": "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "puzzle-piece": { + "aliases": { + "unicodes": { + "composite": [ + "1f9e9" + ], + "secondary": [ + "10f12e" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add-on", + "addon", + "clue", + "game", + "interlocking", + "jigsaw", + "piece", + "puzzle", + "puzzle piece", + "section" + ] + }, + "unicode": "f12e", + "label": "Puzzle Piece", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 104.8c0-9.2-5.8-17.3-13.2-22.8C167.2 73.3 160 61.3 160 48c0-26.5 28.7-48 64-48s64 21.5 64 48c0 13.3-7.2 25.3-18.8 34c-7.4 5.5-13.2 13.6-13.2 22.8c0 12.8 10.4 23.2 23.2 23.2H336c26.5 0 48 21.5 48 48v56.8c0 12.8 10.4 23.2 23.2 23.2c9.2 0 17.3-5.8 22.8-13.2c8.7-11.6 20.7-18.8 34-18.8c26.5 0 48 28.7 48 64s-21.5 64-48 64c-13.3 0-25.3-7.2-34-18.8c-5.5-7.4-13.6-13.2-22.8-13.2c-12.8 0-23.2 10.4-23.2 23.2V464c0 26.5-21.5 48-48 48H279.2c-12.8 0-23.2-10.4-23.2-23.2c0-9.2 5.8-17.3 13.2-22.8c11.6-8.7 18.8-20.7 18.8-34c0-26.5-28.7-48-64-48s-64 21.5-64 48c0 13.3 7.2 25.3 18.8 34c7.4 5.5 13.2 13.6 13.2 22.8c0 12.8-10.4 23.2-23.2 23.2H48c-26.5 0-48-21.5-48-48V343.2C0 330.4 10.4 320 23.2 320c9.2 0 17.3 5.8 22.8 13.2C54.7 344.8 66.7 352 80 352c26.5 0 48-28.7 48-64s-21.5-64-48-64c-13.3 0-25.3 7.2-34 18.8C40.5 250.2 32.4 256 23.2 256C10.4 256 0 245.6 0 232.8V176c0-26.5 21.5-48 48-48H168.8c12.8 0 23.2-10.4 23.2-23.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "python": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e2", + "label": "Python", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "q": { + "aliases": { + "unicodes": { + "composite": [ + "71" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter Q", + "Latin Small Letter Q", + "letter" + ] + }, + "unicode": "51", + "label": "Q", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 256c0 88.4 71.6 160 160 160c28.9 0 56-7.7 79.4-21.1l-72-86.4c-11.3-13.6-9.5-33.8 4.1-45.1s33.8-9.5 45.1 4.1l70.9 85.1C371.9 325.8 384 292.3 384 256c0-88.4-71.6-160-160-160S64 167.6 64 256zM344.9 444.6C310 467 268.5 480 224 480C100.3 480 0 379.7 0 256S100.3 32 224 32s224 100.3 224 224c0 56.1-20.6 107.4-54.7 146.7l47.3 56.8c11.3 13.6 9.5 33.8-4.1 45.1s-33.8 9.5-45.1-4.1l-46.6-55.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "qq": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d6", + "label": "QQ", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "qrcode": { + "aliases": { + "unicodes": { + "secondary": [ + "10f029" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barcode", + "info", + "information", + "scan" + ] + }, + "unicode": "f029", + "label": "Qrcode", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 80C0 53.5 21.5 32 48 32h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80zM64 96v64h64V96H64zM0 336c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V336zm64 16v64h64V352H64zM304 32h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H304c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48zm80 64H320v64h64V96zM256 304c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s7.2-16 16-16s16 7.2 16 16v96c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s-7.2-16-16-16s-16 7.2-16 16v64c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V304zM368 480a16 16 0 1 1 0-32 16 16 0 1 1 0 32zm64 0a16 16 0 1 1 0-32 16 16 0 1 1 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "question": { + "aliases": { + "unicodes": { + "composite": [ + "2753", + "2754", + "f128" + ], + "primary": [ + "f128" + ], + "secondary": [ + "103f", + "10f128" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "?", + "Question Mark", + "help", + "information", + "mark", + "outlined", + "punctuation", + "question", + "red question mark", + "support", + "unknown", + "white question mark" + ] + }, + "unicode": "3f", + "label": "Question", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 160c0-35.3 28.7-64 64-64h32c35.3 0 64 28.7 64 64v3.6c0 21.8-11.1 42.1-29.4 53.8l-42.2 27.1c-25.2 16.2-40.4 44.1-40.4 74V320c0 17.7 14.3 32 32 32s32-14.3 32-32v-1.4c0-8.2 4.2-15.8 11-20.2l42.2-27.1c36.6-23.6 58.8-64.1 58.8-107.7V160c0-70.7-57.3-128-128-128H128C57.3 32 0 89.3 0 160c0 17.7 14.3 32 32 32s32-14.3 32-32zm80 320a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "quinscape": { + "changes": [ + "5.0.5", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f459", + "label": "QuinScape", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M313.6 474.6h-1a158.1 158.1 0 0 1 0-316.2c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C501.1 117.5 391.6 8 256.5 8S12 117.5 12 252.6s109.5 244.6 244.5 244.6a237.36 237.36 0 0 0 70.4-10.1c-5.2-3.5-8.9-8.1-13.3-12.5zm-.1-.1l.4.1zm78.4-168.9a99.2 99.2 0 1 0 99.2 99.2 99.18 99.18 0 0 0-99.2-99.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "quora": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2c4", + "label": "Quora", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "quote-left": { + "aliases": { + "names": [ + "quote-left-alt" + ], + "unicodes": { + "composite": [ + "201c" + ], + "secondary": [ + "10f10d" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Left Double Quotation Mark", + "mention", + "note", + "phrase", + "text", + "type" + ] + }, + "unicode": "f10d", + "label": "Quote Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 216C0 149.7 53.7 96 120 96h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320 288 216zm256 0c0-66.3 53.7-120 120-120h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H320c-35.3 0-64-28.7-64-64V320 288 216z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "quote-right": { + "aliases": { + "names": [ + "quote-right-alt" + ], + "unicodes": { + "composite": [ + "201d" + ], + "secondary": [ + "10f10e" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right Double Quotation Mark", + "mention", + "note", + "phrase", + "text", + "type" + ] + }, + "unicode": "f10e", + "label": "Quote Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 296c0 66.3-53.7 120-120 120h-8c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H320c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72zm-256 0c0 66.3-53.7 120-120 120H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "r": { + "aliases": { + "unicodes": { + "composite": [ + "72" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter R", + "Latin Small Letter R", + "letter" + ] + }, + "unicode": "52", + "label": "R", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V288 448c0 17.7 14.3 32 32 32s32-14.3 32-32V320h95.3L261.8 466.4c10.1 14.5 30.1 18 44.6 7.9s18-30.1 7.9-44.6L230.1 309.5C282.8 288.1 320 236.4 320 176c0-79.5-64.5-144-144-144H64zM176 256H64V96H176c44.2 0 80 35.8 80 80s-35.8 80-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "r-project": { + "changes": [ + "5.0.11", + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f7", + "label": "R Project", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 581, + 512 + ], + "width": 581, + "height": 512, + "path": "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "radiation": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7b9" + ] + } + }, + "changes": [ + "5.6.0", + "5.8.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "danger", + "dangerous", + "deadly", + "hazard", + "nuclear", + "radioactive", + "warning" + ] + }, + "unicode": "f7b9", + "label": "Radiation", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M215 186.7c-23.9 13.8-40 39.7-40 69.3L31 256c-17.7 0-32.2-14.4-30-31.9C9.7 154 46.8 92.7 100.3 52c14.1-10.7 33.8-5.3 42.7 10l72 124.7zM255 336c14.6 0 28.2-3.9 40-10.7l72 124.8c8.8 15.3 3.7 35.1-12.6 41.9c-30.6 12.9-64.2 20-99.4 20s-68.9-7.1-99.4-20c-16.3-6.9-21.4-26.6-12.6-41.9l72-124.8c11.8 6.8 25.4 10.7 40 10.7zm224-80l-144 0c0-29.6-16.1-55.5-40-69.3L367 62c8.8-15.3 28.6-20.7 42.7-10c53.6 40.7 90.6 102 99.4 172.1c2.2 17.5-12.4 31.9-30 31.9zM257 208a48 48 0 1 1 -2 96 48 48 0 1 1 2-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "radio": { + "aliases": { + "unicodes": { + "composite": [ + "1f4fb" + ], + "secondary": [ + "10f8d7" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "am", + "broadcast", + "fm", + "frequency", + "music", + "news", + "radio", + "receiver", + "transmitter", + "tuner", + "video" + ] + }, + "unicode": "f8d7", + "label": "Radio", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M494.8 47c12.7-3.7 20-17.1 16.3-29.8S494-2.8 481.2 1L51.7 126.9c-9.4 2.7-17.9 7.3-25.1 13.2C10.5 151.7 0 170.6 0 192v4V304 448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H218.5L494.8 47zM368 240a80 80 0 1 1 0 160 80 80 0 1 1 0-160zM80 256c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16zM64 320c0-8.8 7.2-16 16-16H208c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm16 64c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rainbow": { + "aliases": { + "unicodes": { + "composite": [ + "1f308" + ], + "secondary": [ + "10f75b" + ] + } + }, + "changes": [ + "5.5.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gold", + "leprechaun", + "prism", + "rain", + "rainbow", + "sky" + ] + }, + "unicode": "f75b", + "label": "Rainbow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96C178.6 96 64 210.6 64 352v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352C0 175.3 143.3 32 320 32s320 143.3 320 320v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352C576 210.6 461.4 96 320 96zm0 192c-35.3 0-64 28.7-64 64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-70.7 57.3-128 128-128s128 57.3 128 128v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-35.3-28.7-64-64-64zM160 352v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-123.7 100.3-224 224-224s224 100.3 224 224v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-88.4-71.6-160-160-160s-160 71.6-160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ranking-star": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "first place", + "podium", + "rank", + "win" + ] + }, + "unicode": "e561", + "label": "Ranking Star", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321857, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M353.8 54.1L330.2 6.3c-3.9-8.3-16.1-8.6-20.4 0L286.2 54.1l-52.3 7.5c-9.3 1.4-13.3 12.9-6.4 19.8l38 37-9 52.1c-1.4 9.3 8.2 16.5 16.8 12.2l46.9-24.8 46.6 24.4c8.6 4.3 18.3-2.9 16.8-12.2l-9-52.1 38-36.6c6.8-6.8 2.9-18.3-6.4-19.8l-52.3-7.5zM256 256c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H384c17.7 0 32-14.3 32-32V288c0-17.7-14.3-32-32-32H256zM32 320c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H160c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32H32zm416 96v64c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V416c0-17.7-14.3-32-32-32H480c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "raspberry-pi": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f7bb", + "label": "Raspberry Pi", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 407, + 512 + ], + "width": 407, + "height": 512, + "path": "M372 232.5l-3.7-6.5c.1-46.4-21.4-65.3-46.5-79.7 7.6-2 15.4-3.6 17.6-13.2 13.1-3.3 15.8-9.4 17.1-15.8 3.4-2.3 14.8-8.7 13.6-19.7 6.4-4.4 10-10.1 8.1-18.1 6.9-7.5 8.7-13.7 5.8-19.4 8.3-10.3 4.6-15.6 1.1-20.9 6.2-11.2.7-23.2-16.6-21.2-6.9-10.1-21.9-7.8-24.2-7.8-2.6-3.2-6-6-16.5-4.7-6.8-6.1-14.4-5-22.3-2.1-9.3-7.3-15.5-1.4-22.6.8C271.6.6 269 5.5 263.5 7.6c-12.3-2.6-16.1 3-22 8.9l-6.9-.1c-18.6 10.8-27.8 32.8-31.1 44.1-3.3-11.3-12.5-33.3-31.1-44.1l-6.9.1c-5.9-5.9-9.7-11.5-22-8.9-5.6-2-8.1-7-19.4-3.4-4.6-1.4-8.9-4.4-13.9-4.3-2.6.1-5.5 1-8.7 3.5-7.9-3-15.5-4-22.3 2.1-10.5-1.3-14 1.4-16.5 4.7-2.3 0-17.3-2.3-24.2 7.8C21.2 16 15.8 28 22 39.2c-3.5 5.4-7.2 10.7 1.1 20.9-2.9 5.7-1.1 11.9 5.8 19.4-1.8 8 1.8 13.7 8.1 18.1-1.2 11 10.2 17.4 13.6 19.7 1.3 6.4 4 12.4 17.1 15.8 2.2 9.5 10 11.2 17.6 13.2-25.1 14.4-46.6 33.3-46.5 79.7l-3.7 6.5c-28.8 17.2-54.7 72.7-14.2 117.7 2.6 14.1 7.1 24.2 11 35.4 5.9 45.2 44.5 66.3 54.6 68.8 14.9 11.2 30.8 21.8 52.2 29.2C159 504.2 181 512 203 512h1c22.1 0 44-7.8 64.2-28.4 21.5-7.4 37.3-18 52.2-29.2 10.2-2.5 48.7-23.6 54.6-68.8 3.9-11.2 8.4-21.3 11-35.4 40.6-45.1 14.7-100.5-14-117.7zm-22.2-8c-1.5 18.7-98.9-65.1-82.1-67.9 45.7-7.5 83.6 19.2 82.1 67.9zm-43 93.1c-24.5 15.8-59.8 5.6-78.8-22.8s-14.6-64.2 9.9-80c24.5-15.8 59.8-5.6 78.8 22.8s14.6 64.2-9.9 80zM238.9 29.3c.8 4.2 1.8 6.8 2.9 7.6 5.4-5.8 9.8-11.7 16.8-17.3 0 3.3-1.7 6.8 2.5 9.4 3.7-5 8.8-9.5 15.5-13.3-3.2 5.6-.6 7.3 1.2 9.6 5.1-4.4 10-8.8 19.4-12.3-2.6 3.1-6.2 6.2-2.4 9.8 5.3-3.3 10.6-6.6 23.1-8.9-2.8 3.1-8.7 6.3-5.1 9.4 6.6-2.5 14-4.4 22.1-5.4-3.9 3.2-7.1 6.3-3.9 8.8 7.1-2.2 16.9-5.1 26.4-2.6l-6 6.1c-.7.8 14.1.6 23.9.8-3.6 5-7.2 9.7-9.3 18.2 1 1 5.8.4 10.4 0-4.7 9.9-12.8 12.3-14.7 16.6 2.9 2.2 6.8 1.6 11.2.1-3.4 6.9-10.4 11.7-16 17.3 1.4 1 3.9 1.6 9.7.9-5.2 5.5-11.4 10.5-18.8 15 1.3 1.5 5.8 1.5 10 1.6-6.7 6.5-15.3 9.9-23.4 14.2 4 2.7 6.9 2.1 10 2.1-5.7 4.7-15.4 7.1-24.4 10 1.7 2.7 3.4 3.4 7.1 4.1-9.5 5.3-23.2 2.9-27 5.6.9 2.7 3.6 4.4 6.7 5.8-15.4.9-57.3-.6-65.4-32.3 15.7-17.3 44.4-37.5 93.7-62.6-38.4 12.8-73 30-102 53.5-34.3-15.9-10.8-55.9 5.8-71.8zm-34.4 114.6c24.2-.3 54.1 17.8 54 34.7-.1 15-21 27.1-53.8 26.9-32.1-.4-53.7-15.2-53.6-29.8 0-11.9 26.2-32.5 53.4-31.8zm-123-12.8c3.7-.7 5.4-1.5 7.1-4.1-9-2.8-18.7-5.3-24.4-10 3.1 0 6 .7 10-2.1-8.1-4.3-16.7-7.7-23.4-14.2 4.2-.1 8.7 0 10-1.6-7.4-4.5-13.6-9.5-18.8-15 5.8.7 8.3.1 9.7-.9-5.6-5.6-12.7-10.4-16-17.3 4.3 1.5 8.3 2 11.2-.1-1.9-4.2-10-6.7-14.7-16.6 4.6.4 9.4 1 10.4 0-2.1-8.5-5.8-13.3-9.3-18.2 9.8-.1 24.6 0 23.9-.8l-6-6.1c9.5-2.5 19.3.4 26.4 2.6 3.2-2.5-.1-5.6-3.9-8.8 8.1 1.1 15.4 2.9 22.1 5.4 3.5-3.1-2.3-6.3-5.1-9.4 12.5 2.3 17.8 5.6 23.1 8.9 3.8-3.6.2-6.7-2.4-9.8 9.4 3.4 14.3 7.9 19.4 12.3 1.7-2.3 4.4-4 1.2-9.6 6.7 3.8 11.8 8.3 15.5 13.3 4.1-2.6 2.5-6.2 2.5-9.4 7 5.6 11.4 11.5 16.8 17.3 1.1-.8 2-3.4 2.9-7.6 16.6 15.9 40.1 55.9 6 71.8-29-23.5-63.6-40.7-102-53.5 49.3 25 78 45.3 93.7 62.6-8 31.8-50 33.2-65.4 32.3 3.1-1.4 5.8-3.2 6.7-5.8-4-2.8-17.6-.4-27.2-5.6zm60.1 24.1c16.8 2.8-80.6 86.5-82.1 67.9-1.5-48.7 36.5-75.5 82.1-67.9zM38.2 342c-23.7-18.8-31.3-73.7 12.6-98.3 26.5-7 9 107.8-12.6 98.3zm91 98.2c-13.3 7.9-45.8 4.7-68.8-27.9-15.5-27.4-13.5-55.2-2.6-63.4 16.3-9.8 41.5 3.4 60.9 25.6 16.9 20 24.6 55.3 10.5 65.7zm-26.4-119.7c-24.5-15.8-28.9-51.6-9.9-80s54.3-38.6 78.8-22.8 28.9 51.6 9.9 80c-19.1 28.4-54.4 38.6-78.8 22.8zM205 496c-29.4 1.2-58.2-23.7-57.8-32.3-.4-12.7 35.8-22.6 59.3-22 23.7-1 55.6 7.5 55.7 18.9.5 11-28.8 35.9-57.2 35.4zm58.9-124.9c.2 29.7-26.2 53.8-58.8 54-32.6.2-59.2-23.8-59.4-53.4v-.6c-.2-29.7 26.2-53.8 58.8-54 32.6-.2 59.2 23.8 59.4 53.4v.6zm82.2 42.7c-25.3 34.6-59.6 35.9-72.3 26.3-13.3-12.4-3.2-50.9 15.1-72 20.9-23.3 43.3-38.5 58.9-26.6 10.5 10.3 16.7 49.1-1.7 72.3zm22.9-73.2c-21.5 9.4-39-105.3-12.6-98.3 43.9 24.7 36.3 79.6 12.6 98.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ravelry": { + "changes": [ + "4.7.0", + "5.0.0", + "5.15.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2d9", + "label": "Ravelry", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M498.252,234.223c-1.208-10.34-1.7-20.826-3.746-31a310.306,310.306,0,0,0-9.622-36.6,184.068,184.068,0,0,0-30.874-57.5,251.154,251.154,0,0,0-18.818-21.689,237.362,237.362,0,0,0-47.113-36.116A240.8,240.8,0,0,0,331.356,26.65c-11.018-3.1-22.272-5.431-33.515-7.615-6.78-1.314-13.749-1.667-20.627-2.482-.316-.036-.6-.358-.9-.553q-16.143.009-32.288.006c-2.41.389-4.808.925-7.236,1.15a179.331,179.331,0,0,0-34.256,7.1,221.5,221.5,0,0,0-39.768,16.355,281.385,281.385,0,0,0-38.08,24.158c-6.167,4.61-12.268,9.36-17.974,14.518C96.539,88.494,86.34,97.72,76.785,107.555a243.878,243.878,0,0,0-33.648,43.95,206.488,206.488,0,0,0-20.494,44.6,198.2,198.2,0,0,0-7.691,34.759A201.13,201.13,0,0,0,13.4,266.385a299.716,299.716,0,0,0,4.425,40.24,226.865,226.865,0,0,0,16.73,53.3,210.543,210.543,0,0,0,24,39.528,213.589,213.589,0,0,0,26.358,28.416A251.313,251.313,0,0,0,126.7,458.455a287.831,287.831,0,0,0,55.9,25.277,269.5,269.5,0,0,0,40.641,9.835c6.071,1.01,12.275,1.253,18.412,1.873a4.149,4.149,0,0,1,1.19.56h32.289c2.507-.389,5-.937,7.527-1.143,16.336-1.332,32.107-5.335,47.489-10.717A219.992,219.992,0,0,0,379.1,460.322c9.749-6.447,19.395-13.077,28.737-20.1,5.785-4.348,10.988-9.5,16.3-14.457,3.964-3.7,7.764-7.578,11.51-11.5a232.162,232.162,0,0,0,31.427-41.639c9.542-16.045,17.355-32.905,22.3-50.926,2.859-10.413,4.947-21.045,7.017-31.652,1.032-5.279,1.251-10.723,1.87-16.087.036-.317.358-.6.552-.9V236.005A9.757,9.757,0,0,1,498.252,234.223Zm-161.117-1.15s-16.572-2.98-28.47-2.98c-27.2,0-33.57,14.9-33.57,37.04V360.8H201.582V170.062H275.1v31.931c8.924-26.822,26.771-36.189,62.04-36.189Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "react": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41b", + "label": "React", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zM167.2 307.5c5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5 4.6 8.8 9.3 17.5 14.3 26.1zm-30.3-120.3c14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26-6.3-14.9-11.6-29.5-16-43.6zm27.4 68.9c6.6-13.8 13.8-27.3 21.4-40.6s15.8-26.2 24.4-38.9c15-1.1 30.3-1.7 45.9-1.7s31 .6 45.9 1.7c8.5 12.6 16.6 25.5 24.3 38.7s14.9 26.7 21.7 40.4c-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6s-30.9-.5-45.6-1.4c-8.7-12.7-16.9-25.7-24.6-39s-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zm-149.7-15c25.3 0 45.8-20.5 45.8-45.8s-20.5-45.8-45.8-45.8c-25.3 0-45.8 20.5-45.8 45.8s20.5 45.8 45.8 45.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "reacteurope": { + "changes": [ + "5.5.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f75d", + "label": "ReactEurope", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M250.6 211.74l5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.1-.1-2.3-6.8-2.3 6.8-7.2.1 5.7 4.3zm63.7 0l5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.2-.1-2.3-6.8-2.3 6.8-7.2.1 5.7 4.3zm-91.3 50.5h-3.4c-4.8 0-3.8 4-3.8 12.1 0 4.7-2.3 6.1-5.8 6.1s-5.8-1.4-5.8-6.1v-36.6c0-4.7 2.3-6.1 5.8-6.1s5.8 1.4 5.8 6.1c0 7.2-.7 10.5 3.8 10.5h3.4c4.7-.1 3.8-3.9 3.8-12.3 0-9.9-6.7-14.1-16.8-14.1h-.2c-10.1 0-16.8 4.2-16.8 14.1V276c0 10.4 6.7 14.1 16.8 14.1h.2c10.1 0 16.8-3.8 16.8-14.1 0-9.86 1.1-13.76-3.8-13.76zm-80.7 17.4h-14.7v-19.3H139c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-11.4v-18.3H142c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-21.7c-2.4-.1-3.7 1.3-3.7 3.8v59.1c0 2.5 1.3 3.8 3.8 3.8h21.9c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8zm-42-18.5c4.6-2 7.3-6 7.3-12.4v-11.9c0-10.1-6.7-14.1-16.8-14.1H77.4c-2.5 0-3.8 1.3-3.8 3.8v59.1c0 2.5 1.3 3.8 3.8 3.8h3.4c2.5 0 3.8-1.3 3.8-3.8v-22.9h5.6l7.4 23.5a4.1 4.1 0 0 0 4.3 3.2h3.3c2.8 0 4-1.8 3.2-4.4zm-3.8-14c0 4.8-2.5 6.1-6.1 6.1h-5.8v-20.9h5.8c3.6 0 6.1 1.3 6.1 6.1zM176 226a3.82 3.82 0 0 0-4.2-3.4h-6.9a3.68 3.68 0 0 0-4 3.4l-11 59.2c-.5 2.7.9 4.1 3.4 4.1h3a3.74 3.74 0 0 0 4.1-3.5l1.8-11.3h12.2l1.8 11.3a3.74 3.74 0 0 0 4.1 3.5h3.5c2.6 0 3.9-1.4 3.4-4.1zm-12.3 39.3l4.7-29.7 4.7 29.7zm89.3 20.2v-53.2h7.5c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-25.8c-2.5 0-3.8 1.3-3.8 3.8v2.1c0 2.5 1.3 3.8 3.8 3.8h7.3v53.2c0 2.5 1.3 3.8 3.8 3.8h3.4c2.5.04 3.8-1.3 3.8-3.76zm248-.8h-19.4V258h16.1a1.89 1.89 0 0 0 2-2v-.8a1.89 1.89 0 0 0-2-2h-16.1v-25.8h19.1a1.89 1.89 0 0 0 2-2v-.8a1.77 1.77 0 0 0-2-1.9h-22.2a1.62 1.62 0 0 0-2 1.8v63a1.81 1.81 0 0 0 2 1.9H501a1.81 1.81 0 0 0 2-1.9v-.8a1.84 1.84 0 0 0-2-1.96zm-93.1-62.9h-.8c-10.1 0-15.3 4.7-15.3 14.1V276c0 9.3 5.2 14.1 15.3 14.1h.8c10.1 0 15.3-4.8 15.3-14.1v-40.1c0-9.36-5.2-14.06-15.3-14.06zm10.2 52.4c-.1 8-3 11.1-10.5 11.1s-10.5-3.1-10.5-11.1v-36.6c0-7.9 3-11.1 10.5-11.1s10.5 3.2 10.5 11.1zm-46.5-14.5c6.1-1.6 9.2-6.1 9.2-13.3v-9.7c0-9.4-5.2-14.1-15.3-14.1h-13.7a1.81 1.81 0 0 0-2 1.9v63a1.81 1.81 0 0 0 2 1.9h1.2a1.74 1.74 0 0 0 1.9-1.9v-26.9h11.6l10.4 27.2a2.32 2.32 0 0 0 2.3 1.5h1.5c1.4 0 2-1 1.5-2.3zm-6.4-3.9H355v-28.5h10.2c7.5 0 10.5 3.1 10.5 11.1v6.4c0 7.84-3 11.04-10.5 11.04zm85.9-33.1h-13.7a1.62 1.62 0 0 0-2 1.8v63a1.81 1.81 0 0 0 2 1.9h1.2a1.74 1.74 0 0 0 1.9-1.9v-26.1h10.6c10.1 0 15.3-4.8 15.3-14.1v-10.5c0-9.4-5.2-14.1-15.3-14.1zm10.2 22.8c0 7.9-3 11.1-10.5 11.1h-10.2v-29.2h10.2c7.5-.1 10.5 3.1 10.5 11zM259.5 308l-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm227.6-136.1a364.42 364.42 0 0 0-35.6-11.3c19.6-78 11.6-134.7-22.3-153.9C394.7-12.66 343.3 11 291 61.94q5.1 4.95 10.2 10.2c82.5-80 119.6-53.5 120.9-52.8 22.4 12.7 36 55.8 15.5 137.8a587.83 587.83 0 0 0-84.6-13C281.1 43.64 212.4 2 170.8 2 140 2 127 23 123.2 29.74c-18.1 32-13.3 84.2.1 133.8-70.5 20.3-120.7 54.1-120.3 95 .5 59.6 103.2 87.8 122.1 92.8-20.5 81.9-10.1 135.6 22.3 153.9 28 15.8 75.1 6 138.2-55.2q-5.1-4.95-10.2-10.2c-82.5 80-119.7 53.5-120.9 52.8-22.3-12.6-36-55.6-15.5-137.9 12.4 2.9 41.8 9.5 84.6 13 71.9 100.4 140.6 142 182.1 142 30.8 0 43.8-21 47.6-27.7 18-31.9 13.3-84.1-.1-133.8 152.3-43.8 156.2-130.2 33.9-176.3zM135.9 36.84c2.9-5.1 11.9-20.3 34.9-20.3 36.8 0 98.8 39.6 163.3 126.2a714 714 0 0 0-93.9.9 547.76 547.76 0 0 1 42.2-52.4Q277.3 86 272.2 81a598.25 598.25 0 0 0-50.7 64.2 569.69 569.69 0 0 0-84.4 14.6c-.2-1.4-24.3-82.2-1.2-123zm304.8 438.3c-2.9 5.1-11.8 20.3-34.9 20.3-36.7 0-98.7-39.4-163.3-126.2a695.38 695.38 0 0 0 93.9-.9 547.76 547.76 0 0 1-42.2 52.4q5.1 5.25 10.2 10.2a588.47 588.47 0 0 0 50.7-64.2c47.3-4.7 80.3-13.5 84.4-14.6 22.7 84.4 4.5 117 1.2 123zm9.1-138.6c-3.6-11.9-7.7-24.1-12.4-36.4a12.67 12.67 0 0 1-10.7-5.7l-.1.1a19.61 19.61 0 0 1-5.4 3.6c5.7 14.3 10.6 28.4 14.7 42.2a535.3 535.3 0 0 1-72 13c3.5-5.3 17.2-26.2 32.2-54.2a24.6 24.6 0 0 1-6-3.2c-1.1 1.2-3.6 4.2-10.9 4.2-6.2 11.2-17.4 30.9-33.9 55.2a711.91 711.91 0 0 1-112.4 1c-7.9-11.2-21.5-31.1-36.8-57.8a21 21 0 0 1-3-1.5c-1.9 1.6-3.9 3.2-12.6 3.2 6.3 11.2 17.5 30.7 33.8 54.6a548.81 548.81 0 0 1-72.2-11.7q5.85-21 14.1-42.9c-3.2 0-5.4.2-8.4-1a17.58 17.58 0 0 1-6.9 1c-4.9 13.4-9.1 26.5-12.7 39.4C-31.7 297-12.1 216 126.7 175.64c3.6 11.9 7.7 24.1 12.4 36.4 10.4 0 12.9 3.4 14.4 5.3a12 12 0 0 1 2.3-2.2c-5.8-14.7-10.9-29.2-15.2-43.3 7-1.8 32.4-8.4 72-13-15.9 24.3-26.7 43.9-32.8 55.3a14.22 14.22 0 0 1 6.4 8 23.42 23.42 0 0 1 10.2-8.4c6.5-11.7 17.9-31.9 34.8-56.9a711.72 711.72 0 0 1 112.4-1c31.5 44.6 28.9 48.1 42.5 64.5a21.42 21.42 0 0 1 10.4-7.4c-6.4-11.4-17.6-31-34.3-55.5 40.4 4.1 65 10 72.2 11.7-4 14.4-8.9 29.2-14.6 44.2a20.74 20.74 0 0 1 6.8 4.3l.1.1a12.72 12.72 0 0 1 8.9-5.6c4.9-13.4 9.2-26.6 12.8-39.5a359.71 359.71 0 0 1 34.5 11c106.1 39.9 74 87.9 72.6 90.4-19.8 35.1-80.1 55.2-105.7 62.5zm-114.4-114h-1.2a1.74 1.74 0 0 0-1.9 1.9v49.8c0 7.9-2.6 11.1-10.1 11.1s-10.1-3.1-10.1-11.1v-49.8a1.69 1.69 0 0 0-1.9-1.9H309a1.81 1.81 0 0 0-2 1.9v51.5c0 9.6 5 14.1 15.1 14.1h.4c10.1 0 15.1-4.6 15.1-14.1v-51.5a2 2 0 0 0-2.2-1.9zM321.7 308l-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm-31.1 7.4l-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm5.1-30.8h-19.4v-26.7h16.1a1.89 1.89 0 0 0 2-2v-.8a1.89 1.89 0 0 0-2-2h-16.1v-25.8h19.1a1.89 1.89 0 0 0 2-2v-.8a1.77 1.77 0 0 0-2-1.9h-22.2a1.81 1.81 0 0 0-2 1.9v63a1.81 1.81 0 0 0 2 1.9h22.5a1.77 1.77 0 0 0 2-1.9v-.8a1.83 1.83 0 0 0-2-2.06zm-7.4-99.4L286 192l-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.1-.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "readme": { + "changes": [ + "5.0.9", + "5.0.10" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4d5", + "label": "ReadMe", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "rebel": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d0", + "label": "Rebel Alliance", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "receipt": { + "aliases": { + "unicodes": { + "composite": [ + "1f9fe" + ], + "secondary": [ + "10f543" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accounting", + "bookkeeping", + "check", + "evidence", + "invoice", + "money", + "pay", + "proof", + "receipt", + "table" + ] + }, + "unicode": "f543", + "label": "Receipt", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M14 2.2C22.5-1.7 32.5-.3 39.6 5.8L80 40.4 120.4 5.8c9-7.7 22.3-7.7 31.2 0L192 40.4 232.4 5.8c9-7.7 22.2-7.7 31.2 0L304 40.4 344.4 5.8c7.1-6.1 17.1-7.5 25.6-3.6s14 12.4 14 21.8V488c0 9.4-5.5 17.9-14 21.8s-18.5 2.5-25.6-3.6L304 471.6l-40.4 34.6c-9 7.7-22.2 7.7-31.2 0L192 471.6l-40.4 34.6c-9 7.7-22.3 7.7-31.2 0L80 471.6 39.6 506.2c-7.1 6.1-17.1 7.5-25.6 3.6S0 497.4 0 488V24C0 14.6 5.5 6.1 14 2.2zM96 144c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96zM80 352c0 8.8 7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zM96 240c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "record-vinyl": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8d9" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LP", + "album", + "analog", + "music", + "phonograph", + "sound" + ] + }, + "unicode": "f8d9", + "label": "Record Vinyl", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256-96a96 96 0 1 1 0 192 96 96 0 1 1 0-192zm0 224a128 128 0 1 0 0-256 128 128 0 1 0 0 256zm0-96a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rectangle-ad": { + "aliases": { + "names": [ + "ad" + ], + "unicodes": { + "secondary": [ + "10f641" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "advertisement", + "media", + "newspaper", + "promotion", + "publicity" + ] + }, + "unicode": "f641", + "label": "Rectangle Ad", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM229.5 173.3l72 144c5.9 11.9 1.1 26.3-10.7 32.2s-26.3 1.1-32.2-10.7L253.2 328H162.8l-5.4 10.7c-5.9 11.9-20.3 16.7-32.2 10.7s-16.7-20.3-10.7-32.2l72-144c4.1-8.1 12.4-13.3 21.5-13.3s17.4 5.1 21.5 13.3zM208 237.7L186.8 280h42.3L208 237.7zM392 256a24 24 0 1 0 0 48 24 24 0 1 0 0-48zm24-43.9V184c0-13.3 10.7-24 24-24s24 10.7 24 24v96 48c0 13.3-10.7 24-24 24c-6.6 0-12.6-2.7-17-7c-9.4 4.5-19.9 7-31 7c-39.8 0-72-32.2-72-72s32.2-72 72-72c8.4 0 16.5 1.4 24 4.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rectangle-list": { + "aliases": { + "names": [ + "list-alt" + ], + "unicodes": { + "secondary": [ + "10f022" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "unicode": "f022", + "label": "Rectangle List", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H512c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM128 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm32-128a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM128 384a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm96-248c-13.3 0-24 10.7-24 24s10.7 24 24 24H448c13.3 0 24-10.7 24-24s-10.7-24-24-24H224zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24H448c13.3 0 24-10.7 24-24s-10.7-24-24-24H224zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24H448c13.3 0 24-10.7 24-24s-10.7-24-24-24H224z" + }, + "regular": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H512c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16H64zM0 96C0 60.7 28.7 32 64 32H512c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm96 64a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm104 0c0-13.3 10.7-24 24-24H448c13.3 0 24 10.7 24 24s-10.7 24-24 24H224c-13.3 0-24-10.7-24-24zm0 96c0-13.3 10.7-24 24-24H448c13.3 0 24 10.7 24 24s-10.7 24-24 24H224c-13.3 0-24-10.7-24-24zm0 96c0-13.3 10.7-24 24-24H448c13.3 0 24 10.7 24 24s-10.7 24-24 24H224c-13.3 0-24-10.7-24-24zm-72-64a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM96 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "rectangle-xmark": { + "aliases": { + "names": [ + "rectangle-times", + "times-rectangle", + "window-close" + ], + "unicodes": { + "composite": [ + "f2d4" + ], + "secondary": [ + "10f410" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "cancel", + "computer", + "development" + ] + }, + "unicode": "f410", + "label": "Rectangle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321858, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM175 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + }, + "regular": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M175 175C184.4 165.7 199.6 165.7 208.1 175L255.1 222.1L303 175C312.4 165.7 327.6 165.7 336.1 175C346.3 184.4 346.3 199.6 336.1 208.1L289.9 255.1L336.1 303C346.3 312.4 346.3 327.6 336.1 336.1C327.6 346.3 312.4 346.3 303 336.1L255.1 289.9L208.1 336.1C199.6 346.3 184.4 346.3 175 336.1C165.7 327.6 165.7 312.4 175 303L222.1 255.1L175 208.1C165.7 199.6 165.7 184.4 175 175V175zM0 96C0 60.65 28.65 32 64 32H448C483.3 32 512 60.65 512 96V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H448C456.8 432 464 424.8 464 416V96C464 87.16 456.8 80 448 80H64C55.16 80 48 87.16 48 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "recycle": { + "aliases": { + "unicodes": { + "composite": [ + "2672", + "267a", + "267b" + ], + "secondary": [ + "10f1b8" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Recycling Symbol For Generic Materials", + "Universal Recycling Symbol", + "Waste", + "compost", + "garbage", + "recycle", + "recycling symbol", + "reuse", + "trash" + ] + }, + "unicode": "f1b8", + "label": "Recycle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M174.7 45.1C192.2 17 223 0 256 0s63.8 17 81.3 45.1l38.6 61.7 27-15.6c8.4-4.9 18.9-4.2 26.6 1.7s11.1 15.9 8.6 25.3l-23.4 87.4c-3.4 12.8-16.6 20.4-29.4 17l-87.4-23.4c-9.4-2.5-16.3-10.4-17.6-20s3.4-19.1 11.8-23.9l28.4-16.4L283 79c-5.8-9.3-16-15-27-15s-21.2 5.7-27 15l-17.5 28c-9.2 14.8-28.6 19.5-43.6 10.5c-15.3-9.2-20.2-29.2-10.7-44.4l17.5-28zM429.5 251.9c15-9 34.4-4.3 43.6 10.5l24.4 39.1c9.4 15.1 14.4 32.4 14.6 50.2c.3 53.1-42.7 96.4-95.8 96.4L320 448v32c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-64-64c-9.4-9.4-9.4-24.6 0-33.9l64-64c6.9-6.9 17.2-8.9 26.2-5.2s14.8 12.5 14.8 22.2v32l96.2 0c17.6 0 31.9-14.4 31.8-32c0-5.9-1.7-11.7-4.8-16.7l-24.4-39.1c-9.5-15.2-4.7-35.2 10.7-44.4zm-364.6-31L36 204.2c-8.4-4.9-13.1-14.3-11.8-23.9s8.2-17.5 17.6-20l87.4-23.4c12.8-3.4 26 4.2 29.4 17L182 241.2c2.5 9.4-.9 19.3-8.6 25.3s-18.2 6.6-26.6 1.7l-26.5-15.3L68.8 335.3c-3.1 5-4.8 10.8-4.8 16.7c-.1 17.6 14.2 32 31.8 32l32.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-32.2 0C42.7 448-.3 404.8 0 351.6c.1-17.8 5.1-35.1 14.6-50.2l50.3-80.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "red-river": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e3", + "label": "red river", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "reddit": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a1", + "label": "reddit Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "reddit-alien": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f281", + "label": "reddit Alien", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "redhat": { + "changes": [ + "5.6.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "unicode": "f7bc", + "label": "Redhat", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M341.52 285.56c33.65 0 82.34-6.94 82.34-47 .22-6.74.86-1.82-20.88-96.24-4.62-19.15-8.68-27.84-42.31-44.65-26.09-13.34-82.92-35.37-99.73-35.37-15.66 0-20.2 20.17-38.87 20.17-18 0-31.31-15.06-48.12-15.06-16.14 0-26.66 11-34.78 33.62-27.5 77.55-26.28 74.27-26.12 78.27 0 24.8 97.64 106.11 228.47 106.11M429 254.84c4.65 22 4.65 24.35 4.65 27.25 0 37.66-42.33 58.56-98 58.56-125.74.08-235.91-73.65-235.91-122.33a49.55 49.55 0 0 1 4.06-19.72C58.56 200.86 0 208.93 0 260.63c0 84.67 200.63 189 359.49 189 121.79 0 152.51-55.08 152.51-98.58 0-34.21-29.59-73.05-82.93-96.24" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "registered": { + "aliases": { + "unicodes": { + "composite": [ + "ae" + ], + "secondary": [ + "10f25d" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copyright", + "mark", + "r", + "registered", + "trademark" + ] + }, + "unicode": "f25d", + "label": "Registered", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM160 152c0-13.3 10.7-24 24-24h88c44.2 0 80 35.8 80 80c0 28-14.4 52.7-36.3 67l34.1 75.1c5.5 12.1 .1 26.3-11.9 31.8s-26.3 .1-31.8-11.9L268.9 288H208v72c0 13.3-10.7 24-24 24s-24-10.7-24-24V264 152zm48 88h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H208v64z" + }, + "regular": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM160 152V264v96c0 13.3 10.7 24 24 24s24-10.7 24-24V288h60.9l37.2 81.9c5.5 12.1 19.7 17.4 31.8 11.9s17.4-19.7 11.9-31.8L315.7 275c21.8-14.3 36.3-39 36.3-67c0-44.2-35.8-80-80-80H184c-13.3 0-24 10.7-24 24zm48 88V176h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H208z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "renren": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f18b", + "label": "Renren", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "repeat": { + "aliases": { + "unicodes": { + "composite": [ + "1f501" + ], + "secondary": [ + "10f363" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "clockwise", + "flip", + "reload", + "repeat", + "repeat button", + "rewind", + "switch" + ] + }, + "unicode": "f363", + "label": "Repeat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224c0 17.7 14.3 32 32 32s32-14.3 32-32c0-53 43-96 96-96H320v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9S320 19.1 320 32V64H160C71.6 64 0 135.6 0 224zm512 64c0-17.7-14.3-32-32-32s-32 14.3-32 32c0 53-43 96-96 96H192V352c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V448H352c88.4 0 160-71.6 160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "reply": { + "aliases": { + "names": [ + "mail-reply" + ], + "unicodes": { + "composite": [ + "f112" + ], + "secondary": [ + "10f3e5" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mail", + "message", + "respond" + ] + }, + "unicode": "f3e5", + "label": "Reply", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M205 34.8c11.5 5.1 19 16.6 19 29.2v64H336c97.2 0 176 78.8 176 176c0 113.3-81.5 163.9-100.2 174.1c-2.5 1.4-5.3 1.9-8.1 1.9c-10.9 0-19.7-8.9-19.7-19.7c0-7.5 4.3-14.4 9.8-19.5c9.4-8.8 22.2-26.4 22.2-56.7c0-53-43-96-96-96H224v64c0 12.6-7.4 24.1-19 29.2s-25 3-34.4-5.4l-160-144C3.9 225.7 0 217.1 0 208s3.9-17.7 10.6-23.8l160-144c9.4-8.5 22.9-10.6 34.4-5.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "reply-all": { + "aliases": { + "names": [ + "mail-reply-all" + ], + "unicodes": { + "secondary": [ + "10f122" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mail", + "message", + "respond" + ] + }, + "unicode": "f122", + "label": "Reply All", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M209.4 39.5c-9.1-9.6-24.3-10-33.9-.9L33.8 173.2c-19.9 18.9-19.9 50.7 0 69.6L175.5 377.4c9.6 9.1 24.8 8.7 33.9-.9s8.7-24.8-.9-33.9L66.8 208 208.5 73.4c9.6-9.1 10-24.3 .9-33.9zM352 64c0-12.6-7.4-24.1-19-29.2s-25-3-34.4 5.4l-160 144c-6.7 6.1-10.6 14.7-10.6 23.8s3.9 17.7 10.6 23.8l160 144c9.4 8.5 22.9 10.6 34.4 5.4s19-16.6 19-29.2V288h32c53 0 96 43 96 96c0 30.4-12.8 47.9-22.2 56.7c-5.5 5.1-9.8 12-9.8 19.5c0 10.9 8.8 19.7 19.7 19.7c2.8 0 5.6-.6 8.1-1.9C494.5 467.9 576 417.3 576 304c0-97.2-78.8-176-176-176H352V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "replyd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e6", + "label": "replyd", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "republican": { + "aliases": { + "unicodes": { + "secondary": [ + "10f75e" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "conservative", + "election", + "elephant", + "politics", + "republican party", + "right", + "right-wing", + "usa" + ] + }, + "unicode": "f75e", + "label": "Republican", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 192C0 103.6 71.6 32 160 32H384c88.4 0 160 71.6 160 160v64H0V192zm415.9-64c-2.4 0-4.7 1.3-5.7 3.4l-12.6 24.6-28.2 4c-2.4 .3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3 .6 4.7 2.5 6s4.6 1.6 6.7 .5l25.2-12.8 25.2 12.8c2.2 1.1 4.8 .9 6.7-.5s3-3.7 2.5-6l-4.8-27.1L466 170.5c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4-12.6-24.6c-1.1-2.1-3.3-3.4-5.7-3.4zm-138.3 3.4c-1.1-2.1-3.3-3.4-5.7-3.4s-4.7 1.3-5.7 3.4l-12.6 24.6-28.2 4c-2.4 .3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3 .6 4.7 2.5 6s4.6 1.6 6.7 .5l25.2-12.8 25.2 12.8c2.2 1.1 4.8 .9 6.7-.5s3-3.7 2.5-6l-4.8-27.1L322 170.5c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4-12.6-24.6zM127.9 128c-2.4 0-4.7 1.3-5.7 3.4l-12.6 24.6-28.2 4c-2.4 .3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3 .6 4.7 2.5 6s4.6 1.6 6.7 .5l25.2-12.8 25.2 12.8c2.2 1.1 4.8 .9 6.7-.5s3-3.7 2.5-6l-4.8-27.1L178 170.5c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4-12.6-24.6c-1.1-2.1-3.3-3.4-5.7-3.4zm.1 160H320h96 32 64 32v32 80c0 8.8 7.2 16 16 16s16-7.2 16-16V352c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 44.2-35.8 80-80 80s-80-35.8-80-80V352H448v32 64c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V384H128v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V384 288H128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "researchgate": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f8", + "label": "Researchgate", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "resolving": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e7", + "label": "Resolving", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "restroom": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7bd" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "toilet", + "water closet", + "wc" + ] + }, + "unicode": "f7bd", + "label": "Restroom", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M80 48a48 48 0 1 1 96 0A48 48 0 1 1 80 48zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V325.2c-8.1 9.2-21.1 13.2-33.5 9.4c-16.9-5.3-26.3-23.2-21-40.1l30.9-99.1C44.9 155.3 82 128 124 128h8c42 0 79.1 27.3 91.6 67.4l30.9 99.1c5.3 16.9-4.1 34.8-21 40.1c-12.4 3.9-25.4-.2-33.5-9.4V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H120zM320 0c13.3 0 24 10.7 24 24V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24zM464 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM440 480V384H422.2c-10.9 0-18.6-10.7-15.2-21.1l9-26.9c-3.2 0-6.4-.5-9.5-1.5c-16.9-5.3-26.3-23.2-21-40.1l29.7-95.2C428.4 156.9 467.6 128 512 128s83.6 28.9 96.8 71.2l29.7 95.2c5.3 16.9-4.1 34.8-21 40.1c-3.2 1-6.4 1.5-9.5 1.5l9 26.9c3.5 10.4-4.3 21.1-15.2 21.1H584v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H504v96c0 17.7-14.3 32-32 32s-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "retweet": { + "aliases": { + "unicodes": { + "secondary": [ + "10f079" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refresh", + "reload", + "share", + "swap" + ] + }, + "unicode": "f079", + "label": "Retweet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M272 416c17.7 0 32-14.3 32-32s-14.3-32-32-32H160c-17.7 0-32-14.3-32-32V192h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8l32 0 0 128c0 53 43 96 96 96H272zM304 96c-17.7 0-32 14.3-32 32s14.3 32 32 32l112 0c17.7 0 32 14.3 32 32l0 128H416c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8l-32 0V192c0-53-43-96-96-96L304 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rev": { + "changes": [ + "5.1.0", + "5.1.1", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5b2", + "label": "Rev.io", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M289.67 274.89a65.57 65.57 0 1 1-65.56-65.56 65.64 65.64 0 0 1 65.56 65.56zm139.55-5.05h-.13a204.69 204.69 0 0 0-74.32-153l-45.38 26.2a157.07 157.07 0 0 1 71.81 131.84C381.2 361.5 310.73 432 224.11 432S67 361.5 67 274.88c0-81.88 63-149.27 143-156.43v39.12l108.77-62.79L210 32v38.32c-106.7 7.25-191 96-191 204.57 0 111.59 89.12 202.29 200.06 205v.11h210.16V269.84z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ribbon": { + "aliases": { + "unicodes": { + "composite": [ + "1f397" + ], + "secondary": [ + "10f4d6" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "badge", + "cause", + "celebration", + "lapel", + "pin", + "reminder", + "reminder ribbon", + "ribbon" + ] + }, + "unicode": "f4d6", + "label": "Ribbon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M315.2 322.8l0 0-133.9-146 0 0L128 118.6c7.8-5.1 37-22.6 78-22.6s70.2 17.4 78 22.6L227.7 180l85.6 93.4 27.4-29.8c16.3-17.7 25.3-40.9 25.3-65V149.1c0-19-5.6-37.5-16.1-53.3L309.8 35.6C294.9 13.4 269.9 0 243.2 0h-76c-25.8 0-50.1 12.5-65.1 33.5L63.9 87C52.3 103.2 46 122.8 46 142.8V164c0 23.2 8.4 45.6 23.6 63.1l56 64.2 0 0 83.3 95.6 0 0 91.8 105.3c10 11.5 26.8 14.3 40 6.8l54.5-31.1c17.8-10.2 21.6-34.3 7.7-49.4l-87.7-95.7zM187.2 410.6l-83.3-95.6L9.1 418.5C-4.8 433.6-1 457.7 16.8 467.9l55.1 31.5c13 7.4 29.3 4.9 39.4-6.1l75.9-82.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "right-from-bracket": { + "aliases": { + "names": [ + "sign-out-alt" + ], + "unicodes": { + "secondary": [ + "10f2f5" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "exit", + "leave", + "log out", + "logout", + "sign-out" + ] + }, + "unicode": "f2f5", + "label": "Right From Bracket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M377.9 105.9L500.7 228.7c7.2 7.2 11.3 17.1 11.3 27.3s-4.1 20.1-11.3 27.3L377.9 406.1c-6.4 6.4-15 9.9-24 9.9c-18.7 0-33.9-15.2-33.9-33.9l0-62.1-128 0c-17.7 0-32-14.3-32-32l0-64c0-17.7 14.3-32 32-32l128 0 0-62.1c0-18.7 15.2-33.9 33.9-33.9c9 0 17.6 3.6 24 9.9zM160 96L96 96c-17.7 0-32 14.3-32 32l0 256c0 17.7 14.3 32 32 32l64 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-64 0c-53 0-96-43-96-96L0 128C0 75 43 32 96 32l64 0c17.7 0 32 14.3 32 32s-14.3 32-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "right-left": { + "aliases": { + "names": [ + "exchange-alt" + ], + "unicodes": { + "secondary": [ + "10f362" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "exchange", + "reciprocate", + "return", + "swap", + "transfer" + ] + }, + "unicode": "f362", + "label": "Right Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 96l320 0V32c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l96 96c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-96 96c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V160L32 160c-17.7 0-32-14.3-32-32s14.3-32 32-32zM480 352c17.7 0 32 14.3 32 32s-14.3 32-32 32H160v64c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-96-96c-6-6-9.4-14.1-9.4-22.6s3.4-16.6 9.4-22.6l96-96c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 64H480z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "right-long": { + "aliases": { + "names": [ + "long-arrow-alt-right" + ], + "unicodes": { + "secondary": [ + "10f30b" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "long-arrow-right", + "next" + ] + }, + "unicode": "f30b", + "label": "Right Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M334.5 414c8.8 3.8 19 2 26-4.6l144-136c4.8-4.5 7.5-10.8 7.5-17.4s-2.7-12.9-7.5-17.4l-144-136c-7-6.6-17.2-8.4-26-4.6s-14.5 12.5-14.5 22l0 72L32 192c-17.7 0-32 14.3-32 32l0 64c0 17.7 14.3 32 32 32l288 0 0 72c0 9.6 5.7 18.2 14.5 22z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "right-to-bracket": { + "aliases": { + "names": [ + "sign-in-alt" + ], + "unicodes": { + "secondary": [ + "10f2f6" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "enter", + "join", + "log in", + "login", + "sign in", + "sign up", + "sign-in", + "signin", + "signup" + ] + }, + "unicode": "f2f6", + "label": "Right To Bracket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M217.9 105.9L340.7 228.7c7.2 7.2 11.3 17.1 11.3 27.3s-4.1 20.1-11.3 27.3L217.9 406.1c-6.4 6.4-15 9.9-24 9.9c-18.7 0-33.9-15.2-33.9-33.9l0-62.1L32 320c-17.7 0-32-14.3-32-32l0-64c0-17.7 14.3-32 32-32l128 0 0-62.1c0-18.7 15.2-33.9 33.9-33.9c9 0 17.6 3.6 24 9.9zM352 416l64 0c17.7 0 32-14.3 32-32l0-256c0-17.7-14.3-32-32-32l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l64 0c53 0 96 43 96 96l0 256c0 53-43 96-96 96l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ring": { + "aliases": { + "unicodes": { + "secondary": [ + "10f70b" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "Gollum", + "band", + "binding", + "d&d", + "dnd", + "engagement", + "fantasy", + "gold", + "jewelry", + "marriage", + "precious" + ] + }, + "unicode": "f70b", + "label": "Ring", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 208c0 7.8 4.4 18.7 17.1 30.3C126.5 214.1 188.9 200 256 200s129.5 14.1 174.9 38.3C443.6 226.7 448 215.8 448 208c0-12.3-10.8-32-47.9-50.6C364.9 139.8 314 128 256 128s-108.9 11.8-144.1 29.4C74.8 176 64 195.7 64 208zm192 40c-47 0-89.3 7.6-122.9 19.7C166.3 280.2 208.8 288 256 288s89.7-7.8 122.9-20.3C345.3 255.6 303 248 256 248zM0 208c0-49.6 39.4-85.8 83.3-107.8C129.1 77.3 190.3 64 256 64s126.9 13.3 172.7 36.2c43.9 22 83.3 58.2 83.3 107.8v96c0 49.6-39.4 85.8-83.3 107.8C382.9 434.7 321.7 448 256 448s-126.9-13.3-172.7-36.2C39.4 389.8 0 353.6 0 304V208z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road": { + "aliases": { + "unicodes": { + "composite": [ + "1f6e3" + ], + "secondary": [ + "10f018" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "highway", + "map", + "motorway", + "pavement", + "road", + "route", + "street", + "travel" + ] + }, + "unicode": "f018", + "label": "Road", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M256 32H181.2c-27.1 0-51.3 17.1-60.3 42.6L3.1 407.2C1.1 413 0 419.2 0 425.4C0 455.5 24.5 480 54.6 480H256V416c0-17.7 14.3-32 32-32s32 14.3 32 32v64H521.4c30.2 0 54.6-24.5 54.6-54.6c0-6.2-1.1-12.4-3.1-18.2L455.1 74.6C446 49.1 421.9 32 394.8 32H320V96c0 17.7-14.3 32-32 32s-32-14.3-32-32V32zm64 192v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-barrier": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "border", + "no entry", + "roadblock" + ] + }, + "unicode": "e562", + "label": "Road Barrier", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V266.3L149.2 96H64V64c0-17.7-14.3-32-32-32zM405.2 96H330.8l-5.4 10.7L234.8 288h74.3l5.4-10.7L405.2 96zM362.8 288h74.3l5.4-10.7L533.2 96H458.8l-5.4 10.7L362.8 288zM202.8 96l-5.4 10.7L106.8 288h74.3l5.4-10.7L277.2 96H202.8zm288 192H576V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v53.7L490.8 288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-bridge": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "infrastructure", + "road", + "travel" + ] + }, + "unicode": "e563", + "label": "Road Bridge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M352 0H608c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V32c0-17.7 14.3-32 32-32zM480 200c-13.3 0-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24V224c0-13.3-10.7-24-24-24zm24 184c0-13.3-10.7-24-24-24s-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24V384zM480 40c-13.3 0-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24V64c0-13.3-10.7-24-24-24zM32 96H288v64H248v64h40v96c-53 0-96 43-96 96v64c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V416c0-53-43-96-96-96V224H72V160H32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm168 64H120v64h80V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "freeway", + "highway", + "not affected", + "ok", + "okay", + "pavement", + "road" + ] + }, + "unicode": "e564", + "label": "Road Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M213.2 32H288V96c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2c-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32c2.3 0 4.6-.3 6.8-.7c-4.5 15.5-6.8 31.8-6.8 48.7c0 5.4 .2 10.7 .7 16l-.7 0c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32zM352 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L480 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "freeway", + "highway", + "pavement", + "road" + ] + }, + "unicode": "e565", + "label": "Road Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M213.2 32H288V96c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2c-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32c2.3 0 4.6-.3 6.8-.7c-4.5 15.5-6.8 31.8-6.8 48.7c0 5.4 .2 10.7 .7 16l-.7 0c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32zM496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destroy", + "freeway", + "highway", + "pavement", + "road" + ] + }, + "unicode": "e566", + "label": "Road Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M213.2 32H288V96c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2c-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32c2.3 0 4.6-.3 6.8-.7c-4.5 15.5-6.8 31.8-6.8 48.7c0 5.4 .2 10.7 .7 16l-.7 0c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32zM496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm22.6 144l36.7-36.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L496 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L473.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L496 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L518.6 368z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "freeway", + "highway", + "lockdown", + "pavement", + "quarantine", + "road" + ] + }, + "unicode": "e567", + "label": "Road Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 32H213.2c-27.1 0-51.3 17.1-60.3 42.6L35.1 407.2c-2.1 5.9-3.1 12-3.1 18.2C32 455.5 56.5 480 86.6 480H288V416c0-17.7 14.3-32 32-32s32 14.3 32 32v64h32V352c0-23.7 12.9-44.4 32-55.4V272c0-58.3 44.6-106.2 101.5-111.5L487.1 74.6C478 49.1 453.9 32 426.8 32H352V96c0 17.7-14.3 32-32 32s-32-14.3-32-32V32zm64 192v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32s32 14.3 32 32zm176 16c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-spikes": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barrier", + "roadblock", + "spikes" + ] + }, + "unicode": "e568", + "label": "Road Spikes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 116.8c0-15.8 20.5-22 29.3-8.9L192 256V116.8c0-15.8 20.5-22 29.3-8.9L320 256V116.8c0-15.8 20.5-22 29.3-8.9L448 256V116.8c0-15.8 20.5-22 29.3-8.9L606.8 302.2c14.2 21.3-1.1 49.7-26.6 49.7H512 448 384 320 256 192 64V116.8zM32 384H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "robot": { + "aliases": { + "unicodes": { + "composite": [ + "1f916" + ], + "secondary": [ + "10f544" + ] + } + }, + "changes": [ + "5.0.13", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "android", + "automate", + "computer", + "cyborg", + "face", + "monster", + "robot" + ] + }, + "unicode": "f544", + "label": "Robot", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0c17.7 0 32 14.3 32 32V96H472c39.8 0 72 32.2 72 72V440c0 39.8-32.2 72-72 72H168c-39.8 0-72-32.2-72-72V168c0-39.8 32.2-72 72-72H288V32c0-17.7 14.3-32 32-32zM208 384c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H208zm96 0c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H304zm96 0c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H400zM264 256a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zm152 40a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM48 224H64V416H48c-26.5 0-48-21.5-48-48V272c0-26.5 21.5-48 48-48zm544 0c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H576V224h16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rocket": { + "aliases": { + "unicodes": { + "secondary": [ + "10f135" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.7.0", + "5.12.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aircraft", + "app", + "jet", + "launch", + "nasa", + "space" + ] + }, + "unicode": "f135", + "label": "Rocket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M156.6 384.9L125.7 354c-8.5-8.5-11.5-20.8-7.7-32.2c3-8.9 7-20.5 11.8-33.8L24 288c-8.6 0-16.6-4.6-20.9-12.1s-4.2-16.7 .2-24.1l52.5-88.5c13-21.9 36.5-35.3 61.9-35.3l82.3 0c2.4-4 4.8-7.7 7.2-11.3C289.1-4.1 411.1-8.1 483.9 5.3c11.6 2.1 20.6 11.2 22.8 22.8c13.4 72.9 9.3 194.8-111.4 276.7c-3.5 2.4-7.3 4.8-11.3 7.2v82.3c0 25.4-13.4 49-35.3 61.9l-88.5 52.5c-7.4 4.4-16.6 4.5-24.1 .2s-12.1-12.2-12.1-20.9V380.8c-14.1 4.9-26.4 8.9-35.7 11.9c-11.2 3.6-23.4 .5-31.8-7.8zM384 168a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rocketchat": { + "changes": [ + "5.0.0", + "5.4.2", + "5.8.0", + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e8", + "label": "Rocket.Chat", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M284.046,224.8a34.114,34.114,0,1,0,34.317,34.113A34.217,34.217,0,0,0,284.046,224.8Zm-110.45,0a34.114,34.114,0,1,0,34.317,34.113A34.217,34.217,0,0,0,173.6,224.8Zm220.923,0a34.114,34.114,0,1,0,34.317,34.113A34.215,34.215,0,0,0,394.519,224.8Zm153.807-55.319c-15.535-24.172-37.31-45.57-64.681-63.618-52.886-34.817-122.374-54-195.666-54a405.975,405.975,0,0,0-72.032,6.357,238.524,238.524,0,0,0-49.51-36.588C99.684-11.7,40.859.711,11.135,11.421A14.291,14.291,0,0,0,5.58,34.782C26.542,56.458,61.222,99.3,52.7,138.252c-33.142,33.9-51.112,74.776-51.112,117.337,0,43.372,17.97,84.248,51.112,118.148,8.526,38.956-26.154,81.816-47.116,103.491a14.284,14.284,0,0,0,5.555,23.34c29.724,10.709,88.549,23.147,155.324-10.2a238.679,238.679,0,0,0,49.51-36.589A405.972,405.972,0,0,0,288,460.14c73.313,0,142.8-19.159,195.667-53.975,27.371-18.049,49.145-39.426,64.679-63.619,17.309-26.923,26.07-55.916,26.07-86.125C574.394,225.4,565.634,196.43,548.326,169.485ZM284.987,409.9a345.65,345.65,0,0,1-89.446-11.5l-20.129,19.393a184.366,184.366,0,0,1-37.138,27.585,145.767,145.767,0,0,1-52.522,14.87c.983-1.771,1.881-3.563,2.842-5.356q30.258-55.68,16.325-100.078c-32.992-25.962-52.778-59.2-52.778-95.4,0-83.1,104.254-150.469,232.846-150.469s232.867,67.373,232.867,150.469C517.854,342.525,413.6,409.9,284.987,409.9Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "rockrms": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e9", + "label": "Rockrms", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "rotate": { + "aliases": { + "names": [ + "sync-alt" + ], + "unicodes": { + "composite": [ + "1f504" + ], + "secondary": [ + "10f2f1" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anticlockwise", + "arrow", + "counterclockwise", + "counterclockwise arrows button", + "exchange", + "refresh", + "reload", + "rotate", + "swap", + "withershins" + ] + }, + "unicode": "f2f1", + "label": "Rotate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M126.9 142.9c62.2-62.2 162.7-62.5 225.3-1L311 183c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8H447.5c0 0 0 0 0 0H456c13.3 0 24-10.7 24-24V72c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2L397.4 96.6c-87.6-86.5-228.7-86.2-315.8 1C57.2 122 39.6 150.7 28.8 181.4c-5.9 16.7 2.9 34.9 19.5 40.8s34.9-2.9 40.8-19.5c7.7-21.8 20.2-42.3 37.8-59.8zM0 312v7.6 .7V440c0 9.7 5.8 18.5 14.8 22.2s19.3 1.7 26.2-5.2l41.6-41.6c87.6 86.5 228.7 86.2 315.8-1c24.4-24.4 42.1-53.1 52.9-83.7c5.9-16.7-2.9-34.9-19.5-40.8s-34.9 2.9-40.8 19.5c-7.7 21.8-20.2 42.3-37.8 59.8c-62.2 62.2-162.7 62.5-225.3 1L169 329c6.9-6.9 8.9-17.2 5.2-26.2s-12.5-14.8-22.2-14.8H32.4h-.7H24c-13.3 0-24 10.7-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rotate-left": { + "aliases": { + "names": [ + "rotate-back", + "rotate-backward", + "undo-alt" + ], + "unicodes": { + "secondary": [ + "10f2ea" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "exchange", + "oops", + "return", + "swap" + ] + }, + "unicode": "f2ea", + "label": "Rotate Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32.5 224H24c-13.3 0-24-10.7-24-24V72c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2L82.6 96.6c87.6-86.5 228.7-86.2 315.8 1c87.5 87.5 87.5 229.3 0 316.8s-229.3 87.5-316.8 0c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0c62.5 62.5 163.8 62.5 226.3 0s62.5-163.8 0-226.3c-62.2-62.2-162.7-62.5-225.3-1L169 183c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8H32.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rotate-right": { + "aliases": { + "names": [ + "redo-alt", + "rotate-forward" + ], + "unicodes": { + "secondary": [ + "10f2f9" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "refresh", + "reload", + "repeat" + ] + }, + "unicode": "f2f9", + "label": "Rotate Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M447.5 224H456c13.3 0 24-10.7 24-24V72c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2L397.4 96.6c-87.6-86.5-228.7-86.2-315.8 1c-87.5 87.5-87.5 229.3 0 316.8s229.3 87.5 316.8 0c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3c62.2-62.2 162.7-62.5 225.3-1L311 183c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8H447.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "route": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4d7" + ] + } + }, + "changes": [ + "5.0.9", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "navigation", + "travel" + ] + }, + "unicode": "f4d7", + "label": "Route", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 96c0 50.2-59.1 125.1-84.6 155c-3.8 4.4-9.4 6.1-14.5 5H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c53 0 96 43 96 96s-43 96-96 96H139.6c8.7-9.9 19.3-22.6 30-36.8c6.3-8.4 12.8-17.6 19-27.2H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-53 0-96-43-96-96s43-96 96-96h39.8c-21-31.5-39.8-67.7-39.8-96c0-53 43-96 96-96s96 43 96 96zM117.1 489.1c-3.8 4.3-7.2 8.1-10.1 11.3l-1.8 2-.2-.2c-6 4.6-14.6 4-20-1.8C59.8 473 0 402.5 0 352c0-53 43-96 96-96s96 43 96 96c0 30-21.1 67-43.5 97.9c-10.7 14.7-21.7 28-30.8 38.5l-.6 .7zM128 352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM416 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rss": { + "aliases": { + "names": [ + "feed" + ], + "unicodes": { + "secondary": [ + "10f09e" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blog", + "feed", + "journal", + "news", + "writing" + ] + }, + "unicode": "f09e", + "label": "Rss", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32c229.8 0 416 186.2 416 416c0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96C14.3 96 0 81.7 0 64zM0 416a64 64 0 1 1 128 0A64 64 0 1 1 0 416zM32 160c159.1 0 288 128.9 288 288c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ruble-sign": { + "aliases": { + "names": [ + "rouble", + "rub", + "ruble" + ], + "unicodes": { + "composite": [ + "20bd" + ], + "secondary": [ + "10f158" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Ruble Sign", + "currency" + ] + }, + "unicode": "f158", + "label": "Ruble Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 32C78.3 32 64 46.3 64 64V256H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v32c0 17.7 14.3 32 32 32s32-14.3 32-32V416H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V320H240c79.5 0 144-64.5 144-144s-64.5-144-144-144H96zM240 256H128V96H240c44.2 0 80 35.8 80 80s-35.8 80-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rug": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blanket", + "carpet", + "rug", + "textile" + ] + }, + "unicode": "e569", + "label": "Rug", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M24 64H56 80V88v88 80 80 88 24H56 24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V360H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V280H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V200H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V112H24C10.7 112 0 101.3 0 88S10.7 64 24 64zm88 0H528V448H112V64zM640 88c0 13.3-10.7 24-24 24h-8v40h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v32h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v32h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v40h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H584 560V424 336 256 176 88 64h24 32c13.3 0 24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ruler": { + "aliases": { + "unicodes": { + "composite": [ + "1f4cf" + ], + "secondary": [ + "10f545" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning", + "ruler", + "straight edge", + "straight ruler" + ] + }, + "unicode": "f545", + "label": "Ruler", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M174.9 494.1c-18.7 18.7-49.1 18.7-67.9 0L14.9 401.9c-18.7-18.7-18.7-49.1 0-67.9l50.7-50.7 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 50.7-50.7c18.7-18.7 49.1-18.7 67.9 0l92.1 92.1c18.7 18.7 18.7 49.1 0 67.9L174.9 494.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ruler-combined": { + "aliases": { + "unicodes": { + "secondary": [ + "10f546" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning" + ] + }, + "unicode": "f546", + "label": "Ruler Combined", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M.2 468.9C2.7 493.1 23.1 512 48 512l96 0 320 0c26.5 0 48-21.5 48-48l0-96c0-26.5-21.5-48-48-48l-48 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-80 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l80 0 0-64-80 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l80 0 0-64-80 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l80 0 0-48c0-26.5-21.5-48-48-48L48 0C21.5 0 0 21.5 0 48L0 368l0 96c0 1.7 .1 3.3 .2 4.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ruler-horizontal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f547" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning" + ] + }, + "unicode": "f547", + "label": "Ruler Horizontal", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 336c0 26.5 21.5 48 48 48l544 0c26.5 0 48-21.5 48-48l0-160c0-26.5-21.5-48-48-48l-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0c-26.5 0-48 21.5-48 48L0 336z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ruler-vertical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f548" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning" + ] + }, + "unicode": "f548", + "label": "Ruler Vertical", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H208c26.5 0 48 21.5 48 48V96H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rupee-sign": { + "aliases": { + "names": [ + "rupee" + ], + "unicodes": { + "composite": [ + "20a8" + ], + "secondary": [ + "10f156" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rupee Sign", + "currency" + ] + }, + "unicode": "f156", + "label": "Rupee Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256zm256.5 16.4c-.9 6 0 8.7 .4 9.8c.4 1.1 1.4 2.6 4.2 4.9c7.2 5.7 18.7 10 37.9 16.8l1.3 .5c16 5.6 38.7 13.6 55.7 28.1c9.5 8.1 17.9 18.6 23.1 32.3c5.1 13.7 6.1 28.5 3.8 44c-4.2 28.1-20.5 49.3-43.8 60.9c-22.1 11-48.1 12.5-73.2 8l-.2 0 0 0c-9.3-1.8-20.5-5.7-29.3-9c-6-2.3-12.6-4.9-17.7-6.9l0 0c-2.5-1-4.6-1.8-6.3-2.5c-16.5-6.4-24.6-25-18.2-41.4s25-24.6 41.4-18.2c2.6 1 5.2 2 7.9 3.1l0 0c4.8 1.9 9.8 3.9 15.4 6c8.8 3.3 15.3 5.4 18.7 6c15.7 2.8 26.7 .8 32.9-2.3c5-2.5 8-6 9.1-13c1-6.9 .2-10.5-.5-12.3c-.6-1.7-1.8-3.6-4.5-5.9c-6.9-5.8-18.2-10.4-36.9-17l-3-1.1c-15.5-5.4-37-13-53.3-25.9c-9.5-7.5-18.3-17.6-23.7-31c-5.4-13.4-6.6-28-4.4-43.2c8.5-57.1 67-78 116.9-68.9c6.9 1.3 27.3 5.8 35.4 8.4c16.9 5.2 26.3 23.2 21.1 40.1s-23.2 26.3-40.1 21.1c-4.7-1.4-22.3-5.5-27.9-6.5c-14.6-2.7-25.8-.4-32.6 3.2c-6.3 3.3-8.9 7.6-9.5 12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rupiah-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency" + ] + }, + "unicode": "e23d", + "label": "Rupiah Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256zm256-96h80c61.9 0 112 50.1 112 112s-50.1 112-112 112H352v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352 192c0-17.7 14.3-32 32-32zm80 160c26.5 0 48-21.5 48-48s-21.5-48-48-48H352v96h48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rust": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07a", + "label": "Rust", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M508.52,249.75,486.7,236.24c-.17-2-.34-3.93-.55-5.88l18.72-17.5a7.35,7.35,0,0,0-2.44-12.25l-24-9c-.54-1.88-1.08-3.78-1.67-5.64l15-20.83a7.35,7.35,0,0,0-4.79-11.54l-25.42-4.15c-.9-1.73-1.79-3.45-2.73-5.15l10.68-23.42a7.35,7.35,0,0,0-6.95-10.39l-25.82.91q-1.79-2.22-3.61-4.4L439,81.84A7.36,7.36,0,0,0,430.16,73L405,78.93q-2.17-1.83-4.4-3.61l.91-25.82a7.35,7.35,0,0,0-10.39-7L367.7,53.23c-1.7-.94-3.43-1.84-5.15-2.73L358.4,25.08a7.35,7.35,0,0,0-11.54-4.79L326,35.26c-1.86-.59-3.75-1.13-5.64-1.67l-9-24a7.35,7.35,0,0,0-12.25-2.44l-17.5,18.72c-1.95-.21-3.91-.38-5.88-.55L262.25,3.48a7.35,7.35,0,0,0-12.5,0L236.24,25.3c-2,.17-3.93.34-5.88.55L212.86,7.13a7.35,7.35,0,0,0-12.25,2.44l-9,24c-1.89.55-3.79,1.08-5.66,1.68l-20.82-15a7.35,7.35,0,0,0-11.54,4.79l-4.15,25.41c-1.73.9-3.45,1.79-5.16,2.73L120.88,42.55a7.35,7.35,0,0,0-10.39,7l.92,25.81c-1.49,1.19-3,2.39-4.42,3.61L81.84,73A7.36,7.36,0,0,0,73,81.84L78.93,107c-1.23,1.45-2.43,2.93-3.62,4.41l-25.81-.91a7.42,7.42,0,0,0-6.37,3.26,7.35,7.35,0,0,0-.57,7.13l10.66,23.41c-.94,1.7-1.83,3.43-2.73,5.16L25.08,153.6a7.35,7.35,0,0,0-4.79,11.54l15,20.82c-.59,1.87-1.13,3.77-1.68,5.66l-24,9a7.35,7.35,0,0,0-2.44,12.25l18.72,17.5c-.21,1.95-.38,3.91-.55,5.88L3.48,249.75a7.35,7.35,0,0,0,0,12.5L25.3,275.76c.17,2,.34,3.92.55,5.87L7.13,299.13a7.35,7.35,0,0,0,2.44,12.25l24,9c.55,1.89,1.08,3.78,1.68,5.65l-15,20.83a7.35,7.35,0,0,0,4.79,11.54l25.42,4.15c.9,1.72,1.79,3.45,2.73,5.14L42.56,391.12a7.35,7.35,0,0,0,.57,7.13,7.13,7.13,0,0,0,6.37,3.26l25.83-.91q1.77,2.22,3.6,4.4L73,430.16A7.36,7.36,0,0,0,81.84,439L107,433.07q2.18,1.83,4.41,3.61l-.92,25.82a7.35,7.35,0,0,0,10.39,6.95l23.43-10.68c1.69.94,3.42,1.83,5.14,2.73l4.15,25.42a7.34,7.34,0,0,0,11.54,4.78l20.83-15c1.86.6,3.76,1.13,5.65,1.68l9,24a7.36,7.36,0,0,0,12.25,2.44l17.5-18.72c1.95.21,3.92.38,5.88.55l13.51,21.82a7.35,7.35,0,0,0,12.5,0l13.51-21.82c2-.17,3.93-.34,5.88-.56l17.5,18.73a7.36,7.36,0,0,0,12.25-2.44l9-24c1.89-.55,3.78-1.08,5.65-1.68l20.82,15a7.34,7.34,0,0,0,11.54-4.78l4.15-25.42c1.72-.9,3.45-1.79,5.15-2.73l23.42,10.68a7.35,7.35,0,0,0,10.39-6.95l-.91-25.82q2.22-1.79,4.4-3.61L430.16,439a7.36,7.36,0,0,0,8.84-8.84L433.07,405q1.83-2.17,3.61-4.4l25.82.91a7.23,7.23,0,0,0,6.37-3.26,7.35,7.35,0,0,0,.58-7.13L458.77,367.7c.94-1.7,1.83-3.43,2.73-5.15l25.42-4.15a7.35,7.35,0,0,0,4.79-11.54l-15-20.83c.59-1.87,1.13-3.76,1.67-5.65l24-9a7.35,7.35,0,0,0,2.44-12.25l-18.72-17.5c.21-1.95.38-3.91.55-5.87l21.82-13.51a7.35,7.35,0,0,0,0-12.5Zm-151,129.08A13.91,13.91,0,0,0,341,389.51l-7.64,35.67A187.51,187.51,0,0,1,177,424.44l-7.64-35.66a13.87,13.87,0,0,0-16.46-10.68l-31.51,6.76a187.38,187.38,0,0,1-16.26-19.21H258.3c1.72,0,2.89-.29,2.89-1.91V309.55c0-1.57-1.17-1.91-2.89-1.91H213.47l.05-34.35H262c4.41,0,23.66,1.28,29.79,25.87,1.91,7.55,6.17,32.14,9.06,40,2.89,8.82,14.6,26.46,27.1,26.46H407a187.3,187.3,0,0,1-17.34,20.09Zm25.77,34.49A15.24,15.24,0,1,1,368,398.08h.44A15.23,15.23,0,0,1,383.24,413.32Zm-225.62-.68a15.24,15.24,0,1,1-15.25-15.25h.45A15.25,15.25,0,0,1,157.62,412.64ZM69.57,234.15l32.83-14.6a13.88,13.88,0,0,0,7.06-18.33L102.69,186h26.56V305.73H75.65A187.65,187.65,0,0,1,69.57,234.15ZM58.31,198.09a15.24,15.24,0,0,1,15.23-15.25H74a15.24,15.24,0,1,1-15.67,15.24Zm155.16,24.49.05-35.32h63.26c3.28,0,23.07,3.77,23.07,18.62,0,12.29-15.19,16.7-27.68,16.7ZM399,306.71c-9.8,1.13-20.63-4.12-22-10.09-5.78-32.49-15.39-39.4-30.57-51.4,18.86-11.95,38.46-29.64,38.46-53.26,0-25.52-17.49-41.59-29.4-49.48-16.76-11-35.28-13.23-40.27-13.23H116.32A187.49,187.49,0,0,1,221.21,70.06l23.47,24.6a13.82,13.82,0,0,0,19.6.44l26.26-25a187.51,187.51,0,0,1,128.37,91.43l-18,40.57A14,14,0,0,0,408,220.43l34.59,15.33a187.12,187.12,0,0,1,.4,32.54H423.71c-1.91,0-2.69,1.27-2.69,3.13v8.82C421,301,409.31,305.58,399,306.71ZM240,60.21A15.24,15.24,0,0,1,255.21,45h.45A15.24,15.24,0,1,1,240,60.21ZM436.84,214a15.24,15.24,0,1,1,0-30.48h.44a15.24,15.24,0,0,1-.44,30.48Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "s": { + "aliases": { + "unicodes": { + "composite": [ + "73" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter S", + "Latin Small Letter S", + "letter" + ] + }, + "unicode": "53", + "label": "S", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M99.1 105.4C79 114 68.2 127.2 65.2 144.8c-2.4 14.1-.7 23.2 2 29.4c2.8 6.3 7.9 12.4 16.7 18.6c19.2 13.4 48.3 22.1 84.9 32.5c1 .3 1.9 .6 2.9 .8c32.7 9.3 72 20.6 100.9 40.7c15.7 10.9 29.9 25.5 38.6 45.1c8.8 19.8 10.8 42 6.6 66.3c-7.3 42.5-35.3 71.7-71.8 87.3c-35.4 15.2-79.1 17.9-123.7 10.9l-.2 0 0 0c-24-3.9-62.7-17.1-87.6-25.6c-4.8-1.7-9.2-3.1-12.8-4.3C5.1 440.8-3.9 422.7 1.6 405.9s23.7-25.8 40.5-20.3c4.9 1.6 10.2 3.4 15.9 5.4c25.4 8.6 56.4 19.2 74.4 22.1c36.8 5.7 67.5 2.5 88.5-6.5c20.1-8.6 30.8-21.8 33.9-39.4c2.4-14.1 .7-23.2-2-29.4c-2.8-6.3-7.9-12.4-16.7-18.6c-19.2-13.4-48.3-22.1-84.9-32.5c-1-.3-1.9-.6-2.9-.8c-32.7-9.3-72-20.6-100.9-40.7c-15.7-10.9-29.9-25.5-38.6-45.1c-8.8-19.8-10.8-42-6.6-66.3l31.5 5.5L2.1 133.9C9.4 91.4 37.4 62.2 73.9 46.6c35.4-15.2 79.1-17.9 123.7-10.9c13 2 52.4 9.6 66.6 13.4c17.1 4.5 27.2 22.1 22.7 39.2s-22.1 27.2-39.1 22.7c-11.2-3-48.2-10.2-60.1-12l4.9-31.5-4.9 31.5c-36.9-5.8-67.5-2.5-88.6 6.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sack-dollar": { + "aliases": { + "unicodes": { + "composite": [ + "1f4b0" + ], + "secondary": [ + "10f81d" + ] + } + }, + "changes": [ + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "burlap", + "cash", + "dollar", + "money", + "money bag", + "moneybag", + "robber", + "santa", + "usd" + ] + }, + "unicode": "f81d", + "label": "Sack Dollar", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M320 96H192L144.6 24.9C137.5 14.2 145.1 0 157.9 0H354.1c12.8 0 20.4 14.2 13.3 24.9L320 96zM192 128H320c3.8 2.5 8.1 5.3 13 8.4C389.7 172.7 512 250.9 512 416c0 53-43 96-96 96H96c-53 0-96-43-96-96C0 250.9 122.3 172.7 179 136.4l0 0 0 0c4.8-3.1 9.2-5.9 13-8.4zm84 88c0-11-9-20-20-20s-20 9-20 20v14c-7.6 1.7-15.2 4.4-22.2 8.5c-13.9 8.3-25.9 22.8-25.8 43.9c.1 20.3 12 33.1 24.7 40.7c11 6.6 24.7 10.8 35.6 14l1.7 .5c12.6 3.8 21.8 6.8 28 10.7c5.1 3.2 5.8 5.4 5.9 8.2c.1 5-1.8 8-5.9 10.5c-5 3.1-12.9 5-21.4 4.7c-11.1-.4-21.5-3.9-35.1-8.5c-2.3-.8-4.7-1.6-7.2-2.4c-10.5-3.5-21.8 2.2-25.3 12.6s2.2 21.8 12.6 25.3c1.9 .6 4 1.3 6.1 2.1l0 0 0 0c8.3 2.9 17.9 6.2 28.2 8.4V424c0 11 9 20 20 20s20-9 20-20V410.2c8-1.7 16-4.5 23.2-9c14.3-8.9 25.1-24.1 24.8-45c-.3-20.3-11.7-33.4-24.6-41.6c-11.5-7.2-25.9-11.6-37.1-15l0 0-.7-.2c-12.8-3.9-21.9-6.7-28.3-10.5c-5.2-3.1-5.3-4.9-5.3-6.7c0-3.7 1.4-6.5 6.2-9.3c5.4-3.2 13.6-5.1 21.5-5c9.6 .1 20.2 2.2 31.2 5.2c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-6.5-1.7-13.7-3.4-21.1-4.7V216z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sack-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "burlap", + "rations" + ] + }, + "unicode": "e56a", + "label": "Sack Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 96H320l47.4-71.1C374.5 14.2 366.9 0 354.1 0H157.9c-12.8 0-20.4 14.2-13.3 24.9L192 96zm128 32H192c-3.8 2.5-8.1 5.3-13 8.4l0 0 0 0C122.3 172.7 0 250.9 0 416c0 53 43 96 96 96H416c53 0 96-43 96-96c0-165.1-122.3-243.3-179-279.6c-4.8-3.1-9.2-5.9-13-8.4zM289.9 336l47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "safari": { + "changes": [ + "4.4.0", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "unicode": "f267", + "label": "Safari", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M274.69,274.69l-37.38-37.38L166,346ZM256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8ZM411.85,182.79l14.78-6.13A8,8,0,0,1,437.08,181h0a8,8,0,0,1-4.33,10.46L418,197.57a8,8,0,0,1-10.45-4.33h0A8,8,0,0,1,411.85,182.79ZM314.43,94l6.12-14.78A8,8,0,0,1,331,74.92h0a8,8,0,0,1,4.33,10.45l-6.13,14.78a8,8,0,0,1-10.45,4.33h0A8,8,0,0,1,314.43,94ZM256,60h0a8,8,0,0,1,8,8V84a8,8,0,0,1-8,8h0a8,8,0,0,1-8-8V68A8,8,0,0,1,256,60ZM181,74.92a8,8,0,0,1,10.46,4.33L197.57,94a8,8,0,1,1-14.78,6.12l-6.13-14.78A8,8,0,0,1,181,74.92Zm-63.58,42.49h0a8,8,0,0,1,11.31,0L140,128.72A8,8,0,0,1,140,140h0a8,8,0,0,1-11.31,0l-11.31-11.31A8,8,0,0,1,117.41,117.41ZM60,256h0a8,8,0,0,1,8-8H84a8,8,0,0,1,8,8h0a8,8,0,0,1-8,8H68A8,8,0,0,1,60,256Zm40.15,73.21-14.78,6.13A8,8,0,0,1,74.92,331h0a8,8,0,0,1,4.33-10.46L94,314.43a8,8,0,0,1,10.45,4.33h0A8,8,0,0,1,100.15,329.21Zm4.33-136h0A8,8,0,0,1,94,197.57l-14.78-6.12A8,8,0,0,1,74.92,181h0a8,8,0,0,1,10.45-4.33l14.78,6.13A8,8,0,0,1,104.48,193.24ZM197.57,418l-6.12,14.78a8,8,0,0,1-14.79-6.12l6.13-14.78A8,8,0,1,1,197.57,418ZM264,444a8,8,0,0,1-8,8h0a8,8,0,0,1-8-8V428a8,8,0,0,1,8-8h0a8,8,0,0,1,8,8Zm67-6.92h0a8,8,0,0,1-10.46-4.33L314.43,418a8,8,0,0,1,4.33-10.45h0a8,8,0,0,1,10.45,4.33l6.13,14.78A8,8,0,0,1,331,437.08Zm63.58-42.49h0a8,8,0,0,1-11.31,0L372,383.28A8,8,0,0,1,372,372h0a8,8,0,0,1,11.31,0l11.31,11.31A8,8,0,0,1,394.59,394.59ZM286.25,286.25,110.34,401.66,225.75,225.75,401.66,110.34ZM437.08,331h0a8,8,0,0,1-10.45,4.33l-14.78-6.13a8,8,0,0,1-4.33-10.45h0A8,8,0,0,1,418,314.43l14.78,6.12A8,8,0,0,1,437.08,331ZM444,264H428a8,8,0,0,1-8-8h0a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8h0A8,8,0,0,1,444,264Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sailboat": { + "changes": [ + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dinghy", + "mast", + "sailboat", + "sailing", + "yacht" + ] + }, + "unicode": "e445", + "label": "Sailboat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M251 16c0-7 4.5-13.2 11.2-15.3s13.9 .4 17.9 6.1l224 320c3.4 4.9 3.8 11.3 1.1 16.6s-8.2 8.6-14.2 8.6H267c-8.8 0-16-7.2-16-16V16zM207.1 96.5c7 1.9 11.9 8.2 11.9 15.5V336c0 8.8-7.2 16-16 16H75c-5.7 0-11-3-13.8-8s-2.9-11-.1-16l128-224c3.6-6.3 11-9.4 18-7.5zM.7 404.3C-2.2 394.1 5.5 384 16.1 384H549.9c10.6 0 18.3 10.1 15.4 20.3l-4 14.3C545.7 473.9 495.4 512 438 512H128C70.6 512 20.3 473.9 4.7 418.7l-4-14.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "salesforce": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f83b", + "label": "Salesforce", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M248.89 245.64h-26.35c.69-5.16 3.32-14.12 13.64-14.12 6.75 0 11.97 3.82 12.71 14.12zm136.66-13.88c-.47 0-14.11-1.77-14.11 20s13.63 20 14.11 20c13 0 14.11-13.54 14.11-20 0-21.76-13.66-20-14.11-20zm-243.22 23.76a8.63 8.63 0 0 0-3.29 7.29c0 4.78 2.08 6.05 3.29 7.05 4.7 3.7 15.07 2.12 20.93.95v-16.94c-5.32-1.07-16.73-1.96-20.93 1.65zM640 232c0 87.58-80 154.39-165.36 136.43-18.37 33-70.73 70.75-132.2 41.63-41.16 96.05-177.89 92.18-213.81-5.17C8.91 428.78-50.19 266.52 53.36 205.61 18.61 126.18 76 32 167.67 32a124.24 124.24 0 0 1 98.56 48.7c20.7-21.4 49.4-34.81 81.15-34.81 42.34 0 79 23.52 98.8 58.57C539 63.78 640 132.69 640 232zm-519.55 31.8c0-11.76-11.69-15.17-17.87-17.17-5.27-2.11-13.41-3.51-13.41-8.94 0-9.46 17-6.66 25.17-2.12 0 0 1.17.71 1.64-.47.24-.7 2.36-6.58 2.59-7.29a1.13 1.13 0 0 0-.7-1.41c-12.33-7.63-40.7-8.51-40.7 12.7 0 12.46 11.49 15.44 17.88 17.17 4.72 1.58 13.17 3 13.17 8.7 0 4-3.53 7.06-9.17 7.06a31.76 31.76 0 0 1-19-6.35c-.47-.23-1.42-.71-1.65.71l-2.4 7.47c-.47.94.23 1.18.23 1.41 1.75 1.4 10.3 6.59 22.82 6.59 13.17 0 21.4-7.06 21.4-18.11zm32-42.58c-10.13 0-18.66 3.17-21.4 5.18a1 1 0 0 0-.24 1.41l2.59 7.06a1 1 0 0 0 1.18.7c.65 0 6.8-4 16.93-4 4 0 7.06.71 9.18 2.36 3.6 2.8 3.06 8.29 3.06 10.58-4.79-.3-19.11-3.44-29.41 3.76a16.92 16.92 0 0 0-7.34 14.54c0 5.9 1.51 10.4 6.59 14.35 12.24 8.16 36.28 2 38.1 1.41 1.58-.32 3.53-.66 3.53-1.88v-33.88c.04-4.61.32-21.64-22.78-21.64zM199 200.24a1.11 1.11 0 0 0-1.18-1.18H188a1.11 1.11 0 0 0-1.17 1.18v79a1.11 1.11 0 0 0 1.17 1.18h9.88a1.11 1.11 0 0 0 1.18-1.18zm55.75 28.93c-2.1-2.31-6.79-7.53-17.65-7.53-3.51 0-14.16.23-20.7 8.94-6.35 7.63-6.58 18.11-6.58 21.41 0 3.12.15 14.26 7.06 21.17 2.64 2.91 9.06 8.23 22.81 8.23 10.82 0 16.47-2.35 18.58-3.76.47-.24.71-.71.24-1.88l-2.35-6.83a1.26 1.26 0 0 0-1.41-.7c-2.59.94-6.35 2.82-15.29 2.82-17.42 0-16.85-14.74-16.94-16.7h37.17a1.23 1.23 0 0 0 1.17-.94c-.29 0 2.07-14.7-6.09-24.23zm36.69 52.69c13.17 0 21.41-7.06 21.41-18.11 0-11.76-11.7-15.17-17.88-17.17-4.14-1.66-13.41-3.38-13.41-8.94 0-3.76 3.29-6.35 8.47-6.35a38.11 38.11 0 0 1 16.7 4.23s1.18.71 1.65-.47c.23-.7 2.35-6.58 2.58-7.29a1.13 1.13 0 0 0-.7-1.41c-7.91-4.9-16.74-4.94-20.23-4.94-12 0-20.46 7.29-20.46 17.64 0 12.46 11.48 15.44 17.87 17.17 6.11 2 13.17 3.26 13.17 8.7 0 4-3.52 7.06-9.17 7.06a31.8 31.8 0 0 1-19-6.35 1 1 0 0 0-1.65.71l-2.35 7.52c-.47.94.23 1.18.23 1.41 1.72 1.4 10.33 6.59 22.79 6.59zM357.09 224c0-.71-.24-1.18-1.18-1.18h-11.76c0-.14.94-8.94 4.47-12.47 4.16-4.15 11.76-1.64 12-1.64 1.17.47 1.41 0 1.64-.47l2.83-7.77c.7-.94 0-1.17-.24-1.41-5.09-2-17.35-2.87-24.46 4.24-5.48 5.48-7 13.92-8 19.52h-8.47a1.28 1.28 0 0 0-1.17 1.18l-1.42 7.76c0 .7.24 1.17 1.18 1.17h8.23c-8.51 47.9-8.75 50.21-10.35 55.52-1.08 3.62-3.29 6.9-5.88 7.76-.09 0-3.88 1.68-9.64-.24 0 0-.94-.47-1.41.71-.24.71-2.59 6.82-2.83 7.53s0 1.41.47 1.41c5.11 2 13 1.77 17.88 0 6.28-2.28 9.72-7.89 11.53-12.94 2.75-7.71 2.81-9.79 11.76-59.74h12.23a1.29 1.29 0 0 0 1.18-1.18zm53.39 16c-.56-1.68-5.1-18.11-25.17-18.11-15.25 0-23 10-25.16 18.11-1 3-3.18 14 0 23.52.09.3 4.41 18.12 25.16 18.12 14.95 0 22.9-9.61 25.17-18.12 3.21-9.61 1.01-20.52 0-23.52zm45.4-16.7c-5-1.65-16.62-1.9-22.11 5.41v-4.47a1.11 1.11 0 0 0-1.18-1.17h-9.4a1.11 1.11 0 0 0-1.18 1.17v55.28a1.12 1.12 0 0 0 1.18 1.18h9.64a1.12 1.12 0 0 0 1.18-1.18v-27.77c0-2.91.05-11.37 4.46-15.05 4.9-4.9 12-3.36 13.41-3.06a1.57 1.57 0 0 0 1.41-.94 74 74 0 0 0 3.06-8 1.16 1.16 0 0 0-.47-1.41zm46.81 54.1l-2.12-7.29c-.47-1.18-1.41-.71-1.41-.71-4.23 1.82-10.15 1.89-11.29 1.89-4.64 0-17.17-1.13-17.17-19.76 0-6.23 1.85-19.76 16.47-19.76a34.85 34.85 0 0 1 11.52 1.65s.94.47 1.18-.71c.94-2.59 1.64-4.47 2.59-7.53.23-.94-.47-1.17-.71-1.17-11.59-3.87-22.34-2.53-27.76 0-1.59.74-16.23 6.49-16.23 27.52 0 2.9-.58 30.11 28.94 30.11a44.45 44.45 0 0 0 15.52-2.83 1.3 1.3 0 0 0 .47-1.42zm53.87-39.52c-.8-3-5.37-16.23-22.35-16.23-16 0-23.52 10.11-25.64 18.59a38.58 38.58 0 0 0-1.65 11.76c0 25.87 18.84 29.4 29.88 29.4 10.82 0 16.46-2.35 18.58-3.76.47-.24.71-.71.24-1.88l-2.36-6.83a1.26 1.26 0 0 0-1.41-.7c-2.59.94-6.35 2.82-15.29 2.82-17.42 0-16.85-14.74-16.93-16.7h37.16a1.25 1.25 0 0 0 1.18-.94c-.24-.01.94-7.07-1.41-15.54zm-23.29-6.35c-10.33 0-13 9-13.64 14.12H546c-.88-11.92-7.62-14.13-12.73-14.13z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sass": { + "changes": [ + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41e", + "label": "Sass", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M301.84 378.92c-.3.6-.6 1.08 0 0zm249.13-87a131.16 131.16 0 0 0-58 13.5c-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.3-6.7-24 2.5-25.29 5.9a122.83 122.83 0 0 0-5.3 19.1c-2.3 11.7-25.79 53.5-39.09 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.29-6.7-24 2.5-25.3 5.9-2.7 11.4-5.3 19.1-33.89 77.3-42.08 95.4c-4.2 9.2-7.8 16.6-10.4 21.6-.4.8-.7 1.3-.9 1.7.3-.5.5-1 .5-.8-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2s-1.4 2-1.4 2 10.1-42.4-19.39-42.4c-18.4 0-44 20.2-56.58 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.79-38.2-101.87-65.2-99.07-116.5 1-18.7 7.5-67.8 127.07-127.4 98-48.8 176.35-35.4 189.84-5.6 19.4 42.5-41.89 121.6-143.66 133-38.79 4.3-59.18-10.7-64.28-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.79 28.9 18.7 6.1 64.18 9.5 119.17-11.8 61.78-23.8 109.87-90.1 95.77-145.6C386.52 18.32 293-.18 204.57 31.22c-52.69 18.7-109.67 48.1-150.66 86.4-48.69 45.6-56.48 85.3-53.28 101.9 11.39 58.9 92.57 97.3 125.06 125.7-1.6.9-3.1 1.7-4.5 2.5-16.29 8.1-78.18 40.5-93.67 74.7-17.5 38.8 2.9 66.6 16.29 70.4 41.79 11.6 84.58-9.3 107.57-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.29-4.9 16.39-9.4 23.49-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.49 5 15.39 5 13.8 0 20-11.4 26.89-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.39 0 18.79-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.59-46 16.2-31.8 31.69-71.5 31.69-71.5a201.24 201.24 0 0 0 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2a.31.31 0 0 0 .1.2c-3 4-6.4 8.3-9.9 12.5-12.79 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.69 2.5 11.5-.8 19.6-3.6 23.5-5.4a82.2 82.2 0 0 0 20.19-10.6c12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5C434.8 301.72 450.1 270 450.1 270a201.24 201.24 0 0 0 6.2 25.8c2.4 8.1 7.09 17 11.39 25.7-18.59 15.1-30.09 32.6-34.09 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5a79.46 79.46 0 0 0 21.59-11.1c12.5-9.2 24.59-22.1 23.79-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.09-10.2 62.09-7.2 55.68 6.5 66.58 41.3 64.48 55.8s-13.8 22.6-17.7 25-5.1 3.3-4.8 5.1c.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.19-11.8 30.29-38.7 1.6-34-31.09-71.4-89-71.1zm-429.18 144.7c-18.39 20.1-44.19 27.7-55.28 21.3C54.61 451 59.31 421.42 82 400c13.8-13 31.59-25 43.39-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.29 30.4.3 57.2-19.1 78.3zm134.36-91.4c-6.4 15.7-19.89 55.7-28.09 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.09-11.3 21.19-14.9 23.79-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.89-13.9 0 .5.1 1 .1 1.6-.13 17.9-17.32 30-25.12 34.8zm85.58-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.59-15.3 19-24.5a36.18 36.18 0 0 1 1.9 10.8c-.1 22.5-16.2 30.9-25.89 34.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "satellite": { + "aliases": { + "unicodes": { + "composite": [ + "1f6f0" + ], + "secondary": [ + "10f7bf" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "communications", + "hardware", + "orbit", + "satellite", + "space" + ] + }, + "unicode": "f7bf", + "label": "Satellite", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M233 7c-9.4-9.4-24.6-9.4-33.9 0l-96 96c-9.4 9.4-9.4 24.6 0 33.9l89.4 89.4-15.5 15.5C152.3 230.4 124.9 224 96 224c-31.7 0-61.5 7.7-87.8 21.2c-9 4.7-10.3 16.7-3.1 23.8L112.7 376.7 96.3 393.1c-2.6-.7-5.4-1.1-8.3-1.1c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32c0-2.9-.4-5.6-1.1-8.3l16.4-16.4L242.9 506.9c7.2 7.2 19.2 5.9 23.8-3.1C280.3 477.5 288 447.7 288 416c0-28.9-6.4-56.3-17.8-80.9l15.5-15.5L375 409c9.4 9.4 24.6 9.4 33.9 0l96-96c9.4-9.4 9.4-24.6 0-33.9l-89.4-89.4 55-55c12.5-12.5 12.5-32.8 0-45.3l-48-48c-12.5-12.5-32.8-12.5-45.3 0l-55 55L233 7zm159 351l-72.4-72.4 62.1-62.1L454.1 296 392 358.1zM226.3 192.4L153.9 120 216 57.9l72.4 72.4-62.1 62.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "satellite-dish": { + "aliases": { + "unicodes": { + "composite": [ + "1f4e1" + ], + "secondary": [ + "10f7c0" + ] + } + }, + "changes": [ + "5.6.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "SETI", + "antenna", + "communications", + "dish", + "hardware", + "radar", + "receiver", + "satellite", + "satellite antenna", + "saucer", + "signal", + "space" + ] + }, + "unicode": "f7c0", + "label": "Satellite Dish", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 32c0-17.7 14.3-32 32-32C383.1 0 512 128.9 512 288c0 17.7-14.3 32-32 32s-32-14.3-32-32C448 164.3 347.7 64 224 64c-17.7 0-32-14.3-32-32zM60.6 220.6L164.7 324.7l28.4-28.4c-.7-2.6-1.1-5.4-1.1-8.3c0-17.7 14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32c-2.9 0-5.6-.4-8.3-1.1l-28.4 28.4L291.4 451.4c14.5 14.5 11.8 38.8-7.3 46.3C260.5 506.9 234.9 512 208 512C93.1 512 0 418.9 0 304c0-26.9 5.1-52.5 14.4-76.1c7.5-19 31.8-21.8 46.3-7.3zM224 96c106 0 192 86 192 192c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-70.7-57.3-128-128-128c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scale-balanced": { + "aliases": { + "names": [ + "balance-scale" + ], + "unicodes": { + "composite": [ + "2696" + ], + "secondary": [ + "10f24e" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Libra", + "balance", + "balance scale", + "balanced", + "justice", + "law", + "legal", + "measure", + "rule", + "scale", + "weight", + "zodiac" + ] + }, + "unicode": "f24e", + "label": "Scale Balanced", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M384 32H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H398.4c-5.2 25.8-22.9 47.1-46.4 57.3V448H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 128c-17.7 0-32-14.3-32-32s14.3-32 32-32H288V153.3c-23.5-10.3-41.2-31.6-46.4-57.3H128c-17.7 0-32-14.3-32-32s14.3-32 32-32H256c14.6-19.4 37.8-32 64-32s49.4 12.6 64 32zm55.6 288H584.4L512 195.8 439.6 320zM512 416c-62.9 0-115.2-34-126-78.9c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C627.2 382 574.9 416 512 416zM126.8 195.8L54.4 320H199.3L126.8 195.8zM.9 337.1c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C242 382 189.7 416 126.8 416S11.7 382 .9 337.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scale-unbalanced": { + "aliases": { + "names": [ + "balance-scale-left" + ], + "unicodes": { + "secondary": [ + "10f515" + ] + } + }, + "changes": [ + "5.0.13", + "5.9.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "justice", + "legal", + "measure", + "unbalanced", + "weight" + ] + }, + "unicode": "f515", + "label": "Scale Unbalanced", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M521.1 62.4c16.8-5.6 25.8-23.7 20.2-40.5S517.6-3.9 500.9 1.6l-113 37.7C374 15.8 348.3 0 319 0c-44.2 0-80 35.8-80 80c0 3 .2 5.9 .5 8.8L116.9 129.6c-16.8 5.6-25.8 23.7-20.2 40.5s23.7 25.8 40.5 20.2l135.5-45.2c4.5 3.2 9.3 5.9 14.4 8.2V480c0 17.7 14.3 32 32 32H511c17.7 0 32-14.3 32-32s-14.3-32-32-32H351V153.3c21-9.2 37.2-27 44.2-49l125.9-42zM438.6 288L511 163.8 583.4 288H438.6zM511 384c62.9 0 115.2-34 126-78.9c2.6-11-1-22.3-6.7-32.1L535.1 109.8c-5-8.6-14.2-13.8-24.1-13.8s-19.1 5.3-24.1 13.8L391.7 273.1c-5.7 9.8-9.3 21.1-6.7 32.1C395.8 350 448.1 384 511 384zM128.2 291.8L200.6 416H55.7l72.4-124.2zM2.2 433.1C13 478 65.3 512 128.2 512s115.2-34 126-78.9c2.6-11-1-22.3-6.7-32.1L152.2 237.8c-5-8.6-14.2-13.8-24.1-13.8s-19.1 5.3-24.1 13.8L8.9 401.1c-5.7 9.8-9.3 21.1-6.7 32.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scale-unbalanced-flip": { + "aliases": { + "names": [ + "balance-scale-right" + ], + "unicodes": { + "secondary": [ + "10f516" + ] + } + }, + "changes": [ + "5.0.13", + "5.9.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "justice", + "legal", + "measure", + "unbalanced", + "weight" + ] + }, + "unicode": "f516", + "label": "Scale Unbalanced Flip", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M116.9 62.4c-16.8-5.6-25.8-23.7-20.2-40.5s23.7-25.8 40.5-20.2l113 37.7C264 15.8 289.7 0 319 0c44.2 0 80 35.8 80 80c0 3-.2 5.9-.5 8.8l122.6 40.9c16.8 5.6 25.8 23.7 20.2 40.5s-23.7 25.8-40.5 20.2L365.4 145.2c-4.5 3.2-9.3 5.9-14.4 8.2V480c0 17.7-14.3 32-32 32H127c-17.7 0-32-14.3-32-32s14.3-32 32-32H287V153.3c-21-9.2-37.2-27-44.2-49l-125.9-42zM199.4 288L127 163.8 54.6 288H199.4zM127 384C64.1 384 11.8 350 1 305.1c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C242.2 350 189.9 384 127 384zm382.8-92.2L437.4 416H582.3L509.8 291.8zm126 141.3C625 478 572.7 512 509.8 512s-115.2-34-126-78.9c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "schlix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ea", + "label": "SCHLIX", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "school": { + "aliases": { + "unicodes": { + "composite": [ + "1f3eb" + ], + "secondary": [ + "10f549" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "education", + "learn", + "school", + "student", + "teacher" + ] + }, + "unicode": "f549", + "label": "School", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H592c26.5 0 48-21.5 48-48V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM256 416c0-35.3 28.7-64 64-64s64 28.7 64 64v96H256V416zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm400 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H512c-8.8 0-16-7.2-16-16V208zM96 320h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm400 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H512c-8.8 0-16-7.2-16-16V336zM232 176a88 88 0 1 1 176 0 88 88 0 1 1 -176 0zm88-48c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "school-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "not affected", + "ok", + "okay", + "schoolhouse" + ] + }, + "unicode": "e56b", + "label": "School Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H320v0H256V416c0-35.3 28.7-64 64-64l.3 0h.5c3.4-37.7 18.7-72.1 42.2-99.1C350.2 260 335.6 264 320 264c-48.6 0-88-39.4-88-88s39.4-88 88-88s88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4c29-21 64.6-33.4 103.1-33.4c59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM320 128c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-99.3-43.3c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "school-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "schoolhouse" + ] + }, + "unicode": "e56c", + "label": "School Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H320v0H256V416c0-35.3 28.7-64 64-64l.3 0h.5c3.4-37.7 18.7-72.1 42.2-99.1C350.2 260 335.6 264 320 264c-48.6 0-88-39.4-88-88s39.4-88 88-88s88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4c29-21 64.6-33.4 103.1-33.4c59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM320 128c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "school-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destroy", + "schoolhouse" + ] + }, + "unicode": "e56d", + "label": "School Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H320v0H256V416c0-35.3 28.7-64 64-64l.3 0h.5c3.4-37.7 18.7-72.1 42.2-99.1C350.2 260 335.6 264 320 264c-48.6 0-88-39.4-88-88s39.4-88 88-88s88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4c29-21 64.6-33.4 103.1-33.4c59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM320 128c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm22.6-144l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L518.6 368z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "school-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "educate", + "flag", + "school", + "schoolhouse" + ] + }, + "unicode": "e56e", + "label": "School Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 0H400c8.8 0 16 7.2 16 16V80c0 8.8-7.2 16-16 16H320.7l89.6 64H512c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H336V400c0-26.5-21.5-48-48-48s-48 21.5-48 48V512H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64H165.7L256 95.5V32c0-17.7 14.3-32 32-32zm48 240a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM80 224c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm368 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H464c-8.8 0-16 7.2-16 16zM80 352c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H80zm384 0c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H464z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "school-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "lockdown", + "quarantine", + "schoolhouse" + ] + }, + "unicode": "e56f", + "label": "School Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M302.2 5.4c10.7-7.2 24.8-7.2 35.5 0L473.7 96H592c26.5 0 48 21.5 48 48V272c0-61.9-50.1-112-112-112s-112 50.1-112 112v24.6c-19.1 11.1-32 31.7-32 55.4H320.3l-.3 0c-35.3 0-64 28.7-64 64v96h64v0H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48H166.3L302.2 5.4zM80 208v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zm0 128v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-8.8-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zm240-72a88 88 0 1 0 0-176 88 88 0 1 0 0 176zm16-120v16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H320c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16s16 7.2 16 16zm192 96c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scissors": { + "aliases": { + "names": [ + "cut" + ], + "unicodes": { + "composite": [ + "2700", + "2702", + "2704" + ], + "secondary": [ + "10f0c4" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Safety Scissors", + "White Scissors", + "clip", + "cutting", + "scissors", + "snip", + "tool" + ] + }, + "unicode": "f0c4", + "label": "Scissors", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 192l-39.5-39.5c4.9-12.6 7.5-26.2 7.5-40.5C224 50.1 173.9 0 112 0S0 50.1 0 112s50.1 112 112 112c14.3 0 27.9-2.7 40.5-7.5L192 256l-39.5 39.5c-12.6-4.9-26.2-7.5-40.5-7.5C50.1 288 0 338.1 0 400s50.1 112 112 112s112-50.1 112-112c0-14.3-2.7-27.9-7.5-40.5L499.2 76.8c7.1-7.1 7.1-18.5 0-25.6c-28.3-28.3-74.1-28.3-102.4 0L256 192zm22.6 150.6L396.8 460.8c28.3 28.3 74.1 28.3 102.4 0c7.1-7.1 7.1-18.5 0-25.6L342.6 278.6l-64 64zM64 112a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm48 240a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "screenpal": { + "changes": [ + "6.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e570", + "label": "Screenpal", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M233.5 22.49C233.5 10.07 243.6 0 256 0C268.4 0 278.5 10.07 278.5 22.49C278.5 34.91 268.4 44.98 256 44.98C243.6 44.98 233.5 34.91 233.5 22.49zM313.4 259C313.4 290.7 287.7 316.4 256 316.4C224.3 316.4 198.6 290.7 198.6 259C198.6 227.3 224.3 201.6 256 201.6C287.7 201.6 313.4 227.3 313.4 259zM337.2 350C359.5 330.1 373.7 302.7 377.1 273H496.6C493.1 334.4 466.2 392.2 421.4 434.4C376.7 476.6 317.5 500.2 256 500.2C194.5 500.2 135.3 476.6 90.56 434.4C45.83 392.2 18.94 334.4 15.39 273H135.1C138.5 302.7 152.7 330.1 175 350C197.3 369.9 226.2 380.9 256.1 380.9C285.1 380.9 314.8 369.9 337.2 350zM73.14 140.3C73.54 152.7 63.81 163.1 51.39 163.5C38.97 163.9 28.59 154.2 28.18 141.8C27.78 129.3 37.52 118.9 49.94 118.5C62.35 118.1 72.74 127.9 73.14 140.3zM438.9 141C438.9 128.6 448.9 118.5 461.4 118.5C473.8 118.5 483.8 128.6 483.8 141C483.8 153.5 473.8 163.5 461.4 163.5C448.9 163.5 438.9 153.5 438.9 141zM317.9 95.27C300.6 109.1 278.7 118.1 256 118.1C233.3 118.1 211.4 109.1 194.1 95.27C176.8 80.55 165.3 60.18 161.7 37.78C176.8 31.37 192.5 26.52 208.6 23.31C208.6 35.88 213.6 47.93 222.5 56.82C231.4 65.7 243.4 70.7 256 70.7C268.6 70.7 280.6 65.7 289.5 56.82C298.4 47.93 303.4 35.88 303.4 23.31C319.5 26.52 335.2 31.37 350.3 37.78C346.7 60.18 335.2 80.55 317.9 95.27H317.9zM82.78 231C61.42 238.6 38.06 238.4 16.86 230.4C18.82 214.1 22.46 198.1 27.71 182.5C33.1 185.6 39.05 187.6 45.22 188.5C51.39 189.3 57.67 188.9 63.68 187.3C69.69 185.6 75.33 182.9 80.27 179.1C85.21 175.3 89.36 170.6 92.47 165.2C95.58 159.8 97.61 153.8 98.42 147.7C99.23 141.5 98.83 135.2 97.22 129.2C95.61 123.2 92.83 117.6 89.04 112.6C85.25 107.7 80.53 103.5 75.14 100.4C85.96 88.11 98.01 76.94 111.1 67.07C128.7 81.42 140.6 101.6 144.7 123.9C148.8 146.2 144.8 169.3 133.5 188.9C122.1 208.5 104.1 223.4 82.78 231V231zM429.2 231.1C407.9 223.5 389.9 208.5 378.5 188.9C367.2 169.3 363.3 146.2 367.4 123.9C371.5 101.7 383.4 81.54 400.9 67.19C414 77.04 426.1 88.21 436.9 100.5C426.2 106.9 418.5 117.2 415.4 129.3C412.2 141.3 413.1 154.1 420.2 164.9C426.4 175.7 436.6 183.6 448.6 186.9C460.6 190.2 473.5 188.6 484.3 182.6C489.6 198.1 493.2 214.2 495.2 230.4C473.1 238.5 450.6 238.7 429.2 231.1L429.2 231.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "screwdriver": { + "aliases": { + "unicodes": { + "composite": [ + "1fa9b" + ], + "secondary": [ + "10f54a" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "fix", + "mechanic", + "repair", + "screw", + "screwdriver", + "settings", + "tool" + ] + }, + "unicode": "f54a", + "label": "Screwdriver", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M465 7c-8.5-8.5-22-9.4-31.6-2.1l-104 80c-5.9 4.5-9.4 11.6-9.4 19v54.1l-85.6 85.6c6.7 4.2 13 9.3 18.8 15.1s10.9 12.2 15.1 18.8L353.9 192H408c7.5 0 14.5-3.5 19-9.4l80-104c7.4-9.6 6.5-23.1-2.1-31.6L465 7zM121.4 281.4l-112 112c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0l112-112c30.2-30.2 30.2-79.1 0-109.3s-79.1-30.2-109.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "screwdriver-wrench": { + "aliases": { + "names": [ + "tools" + ], + "unicodes": { + "secondary": [ + "10f7d9" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "fix", + "repair", + "screwdriver", + "settings", + "tools", + "wrench" + ] + }, + "unicode": "f7d9", + "label": "Screwdriver Wrench", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M78.6 5C69.1-2.4 55.6-1.5 47 7L7 47c-8.5 8.5-9.4 22-2.1 31.6l80 104c4.5 5.9 11.6 9.4 19 9.4h54.1l109 109c-14.7 29-10 65.4 14.3 89.6l112 112c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-112-112c-24.2-24.2-60.6-29-89.6-14.3l-109-109V104c0-7.5-3.5-14.5-9.4-19L78.6 5zM19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L233.7 374.3c-7.8-20.9-9-43.6-3.6-65.1l-61.7-61.7L19.9 396.1zM512 144c0-10.5-1.1-20.7-3.2-30.5c-2.4-11.2-16.1-14.1-24.2-6l-63.9 63.9c-3 3-7.1 4.7-11.3 4.7H352c-8.8 0-16-7.2-16-16V102.6c0-4.2 1.7-8.3 4.7-11.3l63.9-63.9c8.1-8.1 5.2-21.8-6-24.2C388.7 1.1 378.5 0 368 0C288.5 0 224 64.5 224 144l0 .8 85.3 85.3c36-9.1 75.8 .5 104 28.7L429 274.5c49-23 83-72.8 83-130.5zM56 432a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scribd": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f28a", + "label": "Scribd", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "scroll": { + "aliases": { + "unicodes": { + "composite": [ + "1f4dc" + ], + "secondary": [ + "10f70e" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "announcement", + "d&d", + "dnd", + "fantasy", + "paper", + "script", + "scroll" + ] + }, + "unicode": "f70e", + "label": "Scroll", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 80v48c0 17.7 14.3 32 32 32H48 96V80c0-26.5-21.5-48-48-48S0 53.5 0 80zM112 32c10 13.4 16 30 16 48V384c0 35.3 28.7 64 64 64s64-28.7 64-64v-5.3c0-32.4 26.3-58.7 58.7-58.7H480V128c0-53-43-96-96-96H112zM464 480c61.9 0 112-50.1 112-112c0-8.8-7.2-16-16-16H314.7c-14.7 0-26.7 11.9-26.7 26.7V384c0 53-43 96-96 96H368h96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scroll-torah": { + "aliases": { + "names": [ + "torah" + ], + "unicodes": { + "secondary": [ + "10f6a0" + ] + } + }, + "changes": [ + "5.3.0", + "5.7.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "jewish", + "judaism", + "religion", + "scroll" + ] + }, + "unicode": "f6a0", + "label": "Scroll Torah", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 480V32C96 14.3 74.5 0 48 0S0 14.3 0 32V480c0 17.7 21.5 32 48 32s48-14.3 48-32zM512 32H128V480H512V32zM592 0c-26.5 0-48 14.3-48 32V480c0 17.7 21.5 32 48 32s48-14.3 48-32V32c0-17.7-21.5-32-48-32zM196 313.7c0-3.2 .9-6.4 2.5-9.2L226.7 256l-28.3-48.5c-1.6-2.8-2.5-6-2.5-9.2c0-10.1 8.2-18.3 18.3-18.3H271l31.4-53.9c3.6-6.3 10.3-10.1 17.6-10.1s13.9 3.8 17.6 10.1L369 180h56.7c10.1 0 18.3 8.2 18.3 18.3c0 3.2-.9 6.4-2.5 9.2L413.3 256l28.3 48.5c1.6 2.8 2.5 6 2.5 9.2c0 10.1-8.2 18.3-18.3 18.3H369l-31.4 53.9c-3.6 6.3-10.3 10.1-17.6 10.1s-13.9-3.8-17.6-10.1L271 332H214.3c-10.1 0-18.3-8.2-18.3-18.3zm124 54.7L341.2 332H298.8L320 368.4zM254.5 256l30.3 52h70.4l30.3-52-30.3-52H284.8l-30.3 52zm144.9 23.8L383 308h32.8l-16.4-28.2zM415.8 204H383l16.4 28.2L415.8 204zM320 143.6L298.8 180h42.4L320 143.6zM224.2 204l16.4 28.2L257 204H224.2zM257 308l-16.4-28.2L224.2 308H257z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sd-card": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7c2" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "image", + "memory", + "photo", + "save" + ] + }, + "unicode": "f7c2", + "label": "Sd Card", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 0H141.3C124.3 0 108 6.7 96 18.7L18.7 96C6.7 108 0 124.3 0 141.3V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zM160 88v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24zm80 0v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24zm80 0v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "searchengin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3eb", + "label": "Searchengin", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 460, + 512 + ], + "width": 460, + "height": 512, + "path": "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "section": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Section Sign", + "law", + "legal", + "silcrow" + ] + }, + "unicode": "e447", + "label": "Section", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M64.9 96C67.1 84.4 73.7 76.2 86 70.6c13.8-6.2 34.8-8.9 61.2-4.5c8.8 1.4 36.1 7.1 44.1 9.3c17 4.8 34.7-5.1 39.5-22.2s-5.1-34.7-22.2-39.5c-11.1-3.1-41-9.2-50.9-10.8C123-2.7 88.3-.6 59.7 12.3C29.9 25.8 7.5 50.9 1.6 86.5c-.1 .5-.2 1.1-.2 1.6c-2.2 19.7 .3 37.9 8.1 54.1c7.7 16.1 19.4 28 32 36.9c.6 .5 1.3 .9 2 1.4C22.3 194.2 6.5 215.1 1.7 243c-.1 .6-.2 1.1-.2 1.7c-2.3 19.3 .4 37.1 8.4 53c7.9 15.6 19.8 27 32.3 35.5c22.4 15.2 51.9 24 75.4 31l0 0 3.7 1.1c27.2 8.2 46.9 14.6 59.4 23.8c5.5 4 8.2 7.6 9.5 10.9c1.3 3.2 2.6 8.6 .9 18.1c-1.7 10.1-7.7 18-20.7 23.5c-14 6-35.4 8.5-62 4.4c-12.8-2.1-35.1-9.7-54.1-16.2l0 0c-4.3-1.5-8.5-2.9-12.3-4.2C25.3 420 7.2 429.1 1.6 445.8s3.5 34.9 20.3 40.5c2.6 .8 5.7 1.9 9.2 3.1c18.6 6.3 48.5 16.6 67.3 19.6l0 0 .2 0c34.5 5.4 68.8 3.4 97.2-8.7c29.4-12.6 52.5-36.5 58.5-71.5c3.3-19.3 1.9-37.4-5-53.9c-6.3-15-16.4-26.4-27.6-35.2c16.5-13.9 28.5-33.2 32.6-58.2c3.2-19.8 1.9-38.3-4.8-55.1c-6.7-16.8-17.8-29.4-30.2-39c-22.8-17.6-53.6-27.4-77.7-35l-1.4-.5c-27.4-8.7-47.8-15.3-61.5-25c-6.1-4.4-9.5-8.5-11.4-12.4c-1.8-3.7-3.2-9.3-2.3-18.5zm76.7 208.5c-.2-.1-.4-.1-.6-.2l-1.4-.4c-27.4-8.2-47.9-14.5-61.7-23.8c-6.2-4.2-9.3-7.9-11-11.3c-1.5-3-2.9-7.7-2.1-15.7c1.9-9.7 7.9-17.3 20.5-22.7c14-6 35.4-8.5 62.1-4.3l16.4 2.6c6.3 2.9 11.7 6 16.2 9.5c5.5 4.2 8.4 8.2 10 12.2c1.6 4 2.8 10.4 1.1 20.9c-2.4 14.7-12.8 26.4-37.1 31l-12.4 2.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "seedling": { + "aliases": { + "names": [ + "sprout" + ], + "unicodes": { + "composite": [ + "1f331" + ], + "secondary": [ + "10f4d8" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "environment", + "flora", + "grow", + "plant", + "sapling", + "seedling", + "vegan", + "young" + ] + }, + "unicode": "f4d8", + "label": "Seedling", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 32c0 113.6-84.6 207.5-194.2 222c-7.1-53.4-30.6-101.6-65.3-139.3C290.8 46.3 364 0 448 0h32c17.7 0 32 14.3 32 32zM0 96C0 78.3 14.3 64 32 64H64c123.7 0 224 100.3 224 224v32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V320C100.3 320 0 219.7 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sellcast": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eercast" + ] + }, + "unicode": "f2da", + "label": "Sellcast", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sellsy": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f213", + "label": "Sellsy", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "server": { + "aliases": { + "unicodes": { + "secondary": [ + "10f233" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "database", + "hardware", + "network" + ] + }, + "unicode": "f233", + "label": "Server", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm48 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM64 288c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V352c0-35.3-28.7-64-64-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm56 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "servicestack": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ec", + "label": "Servicestack", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "shapes": { + "aliases": { + "names": [ + "triangle-circle-square" + ], + "unicodes": { + "secondary": [ + "10f61f" + ] + } + }, + "changes": [ + "5.2.0", + "5.12.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "build", + "circle", + "square", + "triangle" + ] + }, + "unicode": "f61f", + "label": "Shapes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M315.4 15.5C309.7 5.9 299.2 0 288 0s-21.7 5.9-27.4 15.5l-96 160c-5.9 9.9-6.1 22.2-.4 32.2s16.3 16.2 27.8 16.2H384c11.5 0 22.2-6.2 27.8-16.2s5.5-22.3-.4-32.2l-96-160zM288 312V456c0 22.1 17.9 40 40 40H472c22.1 0 40-17.9 40-40V312c0-22.1-17.9-40-40-40H328c-22.1 0-40 17.9-40 40zM128 512a128 128 0 1 0 0-256 128 128 0 1 0 0 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "share": { + "aliases": { + "names": [ + "arrow-turn-right", + "mail-forward" + ], + "unicodes": { + "secondary": [ + "10f064" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "unicode": "f064", + "label": "Share", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M307 34.8c-11.5 5.1-19 16.6-19 29.2v64H176C78.8 128 0 206.8 0 304C0 417.3 81.5 467.9 100.2 478.1c2.5 1.4 5.3 1.9 8.1 1.9c10.9 0 19.7-8.9 19.7-19.7c0-7.5-4.3-14.4-9.8-19.5C108.8 431.9 96 414.4 96 384c0-53 43-96 96-96h96v64c0 12.6 7.4 24.1 19 29.2s25 3 34.4-5.4l160-144c6.7-6.1 10.6-14.7 10.6-23.8s-3.8-17.7-10.6-23.8l-160-144c-9.4-8.5-22.9-10.6-34.4-5.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "share-from-square": { + "aliases": { + "names": [ + "share-square" + ], + "unicodes": { + "composite": [ + "f045" + ], + "secondary": [ + "10f14d" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "unicode": "f14d", + "label": "Share From Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M352 224H305.5c-45 0-81.5 36.5-81.5 81.5c0 22.3 10.3 34.3 19.2 40.5c6.8 4.7 12.8 12 12.8 20.3c0 9.8-8 17.8-17.8 17.8h-2.5c-2.4 0-4.8-.4-7.1-1.4C210.8 374.8 128 333.4 128 240c0-79.5 64.5-144 144-144h80V34.7C352 15.5 367.5 0 386.7 0c8.6 0 16.8 3.2 23.2 8.9L548.1 133.3c7.6 6.8 11.9 16.5 11.9 26.7s-4.3 19.9-11.9 26.7l-139 125.1c-5.9 5.3-13.5 8.2-21.4 8.2H384c-17.7 0-32-14.3-32-32V224zM80 96c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16H400c8.8 0 16-7.2 16-16V384c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 44.2-35.8 80-80 80H80c-44.2 0-80-35.8-80-80V112C0 67.8 35.8 32 80 32h48c17.7 0 32 14.3 32 32s-14.3 32-32 32H80z" + }, + "regular": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M400 255.4V240 208c0-8.8-7.2-16-16-16H352 336 289.5c-50.9 0-93.9 33.5-108.3 79.6c-3.3-9.4-5.2-19.8-5.2-31.6c0-61.9 50.1-112 112-112h48 16 32c8.8 0 16-7.2 16-16V80 64.6L506 160 400 255.4zM336 240h16v48c0 17.7 14.3 32 32 32h3.7c7.9 0 15.5-2.9 21.4-8.2l139-125.1c7.6-6.8 11.9-16.5 11.9-26.7s-4.3-19.9-11.9-26.7L409.9 8.9C403.5 3.2 395.3 0 386.7 0C367.5 0 352 15.5 352 34.7V80H336 304 288c-88.4 0-160 71.6-160 160c0 60.4 34.6 99.1 63.9 120.9c5.9 4.4 11.5 8.1 16.7 11.2c4.4 2.7 8.5 4.9 11.9 6.6c3.4 1.7 6.2 3 8.2 3.9c2.2 1 4.6 1.4 7.1 1.4h2.5c9.8 0 17.8-8 17.8-17.8c0-7.8-5.3-14.7-11.6-19.5l0 0c-.4-.3-.7-.5-1.1-.8c-1.7-1.1-3.4-2.5-5-4.1c-.8-.8-1.7-1.6-2.5-2.6s-1.6-1.9-2.4-2.9c-1.8-2.5-3.5-5.3-5-8.5c-2.6-6-4.3-13.3-4.3-22.4c0-36.1 29.3-65.5 65.5-65.5H304h32zM72 32C32.2 32 0 64.2 0 104V440c0 39.8 32.2 72 72 72H408c39.8 0 72-32.2 72-72V376c0-13.3-10.7-24-24-24s-24 10.7-24 24v64c0 13.3-10.7 24-24 24H72c-13.3 0-24-10.7-24-24V104c0-13.3 10.7-24 24-24h64c13.3 0 24-10.7 24-24s-10.7-24-24-24H72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "share-nodes": { + "aliases": { + "names": [ + "share-alt" + ], + "unicodes": { + "secondary": [ + "10f1e0" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "unicode": "f1e0", + "label": "Share Nodes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321862, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 224c53 0 96-43 96-96s-43-96-96-96s-96 43-96 96c0 4 .2 8 .7 11.9l-94.1 47C145.4 170.2 121.9 160 96 160c-53 0-96 43-96 96s43 96 96 96c25.9 0 49.4-10.2 66.6-26.9l94.1 47c-.5 3.9-.7 7.8-.7 11.9c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-25.9 0-49.4 10.2-66.6 26.9l-94.1-47c.5-3.9 .7-7.8 .7-11.9s-.2-8-.7-11.9l94.1-47C302.6 213.8 326.1 224 352 224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sheet-plastic": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "plastic", + "plastic wrap", + "protect", + "tarp", + "tarpaulin", + "waterproof" + ] + }, + "unicode": "e571", + "label": "Sheet Plastic", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 448c0 35.3 28.7 64 64 64H224V384c0-17.7 14.3-32 32-32H384V64c0-35.3-28.7-64-64-64H64C28.7 0 0 28.7 0 64V448zM171.3 75.3l-96 96c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l96-96c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6zm96 32l-160 160c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l160-160c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6zM384 384H256V512L384 384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shekel-sign": { + "aliases": { + "names": [ + "ils", + "shekel", + "sheqel", + "sheqel-sign" + ], + "unicodes": { + "composite": [ + "20aa" + ], + "secondary": [ + "10f20b" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "New Sheqel Sign", + "currency", + "ils", + "money" + ] + }, + "unicode": "f20b", + "label": "Shekel Sign", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V96H192c35.3 0 64 28.7 64 64V320c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-70.7-57.3-128-128-128H32zM320 480c70.7 0 128-57.3 128-128V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V352c0 35.3-28.7 64-64 64H192V192c0-17.7-14.3-32-32-32s-32 14.3-32 32V448c0 17.7 14.3 32 32 32H320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield": { + "aliases": { + "names": [ + "shield-blank" + ], + "unicodes": { + "composite": [ + "1f6e1" + ], + "secondary": [ + "10f132" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "armor", + "award", + "block", + "cleric", + "defend", + "defense", + "holy", + "paladin", + "protect", + "safety", + "security", + "shield", + "weapon", + "winner" + ] + }, + "unicode": "f132", + "label": "Shield", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M240 0c4.6 0 9.2 1 13.4 2.9L441.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.6 363.2c-16.7 8-36.1 8-52.8 0C41.3 420.7 .5 239.2 0 140c-.1-26.2 16.3-47.9 38.3-57.2L226.7 2.9C230.8 1 235.4 0 240 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield-cat": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "feline", + "pet", + "protect", + "safety", + "veterinary" + ] + }, + "unicode": "e572", + "label": "Shield Cat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M253.4 2.9C249.2 1 244.7 0 240 0s-9.2 1-13.4 2.9L38.3 82.8C16.3 92.1-.1 113.8 0 140c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C438.7 420.7 479.5 239.2 480 140c.1-26.2-16.3-47.9-38.3-57.2L253.4 2.9zM144 154.4c0-5.8 4.7-10.4 10.4-10.4h.2c3.4 0 6.5 1.6 8.5 4.3l40 53.3c3 4 7.8 6.4 12.8 6.4h48c5 0 9.8-2.4 12.8-6.4l40-53.3c2-2.7 5.2-4.3 8.5-4.3h.2c5.8 0 10.4 4.7 10.4 10.4V272c0 53-43 96-96 96s-96-43-96-96V154.4zM200 288a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm96-16a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield-dog": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "canine", + "pet", + "protect", + "safety", + "veterinary" + ] + }, + "unicode": "e573", + "label": "Shield Dog", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M253.4 2.9C249.2 1 244.7 0 240 0s-9.2 1-13.4 2.9L38.3 82.8C16.3 92.1-.1 113.8 0 140c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C438.7 420.7 479.5 239.2 480 140c.1-26.2-16.3-47.9-38.3-57.2L253.4 2.9zM144.9 286.2c4.8 1.2 9.9 1.8 15.1 1.8c35.3 0 64-28.7 64-64V160h44.2c12.1 0 23.2 6.8 28.6 17.7L304 192h64c8.8 0 16 7.2 16 16v32c0 44.2-35.8 80-80 80H256v50.7c0 7.3-5.9 13.3-13.3 13.3c-1.8 0-3.6-.4-5.2-1.1l-98.7-42.3c-6.6-2.8-10.8-9.3-10.8-16.4c0-2.8 .6-5.5 1.9-8l15-30zM144 160h40 8v32 32c0 17.7-14.3 32-32 32s-32-14.3-32-32V176c0-8.8 7.2-16 16-16zm128 48a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield-halved": { + "aliases": { + "names": [ + "shield-alt" + ], + "unicodes": { + "secondary": [ + "10f3ed" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "armor", + "award", + "block", + "cleric", + "defend", + "defense", + "holy", + "paladin", + "security", + "shield", + "weapon", + "winner" + ] + }, + "unicode": "f3ed", + "label": "Shield Halved", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M240 0c4.6 0 9.2 1 13.4 2.9L441.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.7 363.2c-16.7 8-36.1 8-52.8 0C41.3 420.7 .5 239.2 0 140c-.1-26.2 16.3-47.9 38.3-57.2L226.7 2.9C230.8 1 235.4 0 240 0zm0 66.8V444.8C378 378 415.1 230.1 416 141.4L240 66.8l0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield-heart": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "love", + "protect", + "safe", + "safety", + "shield" + ] + }, + "unicode": "e574", + "label": "Shield Heart", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M253.4 2.9C249.2 1 244.7 0 240 0s-9.2 1-13.4 2.9L38.3 82.8C16.3 92.1-.1 113.8 0 140c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C438.7 420.7 479.5 239.2 480 140c.1-26.2-16.3-47.9-38.3-57.2L253.4 2.9zM128 221.3c0-33.8 27.4-61.3 61.3-61.3c16.2 0 31.8 6.5 43.3 17.9l7.4 7.4 7.4-7.4c11.5-11.5 27.1-17.9 43.3-17.9c33.8 0 61.3 27.4 61.3 61.3c0 16.2-6.5 31.8-17.9 43.3l-82.7 82.7c-6.2 6.2-16.4 6.2-22.6 0l-82.7-82.7c-11.5-11.5-17.9-27.1-17.9-43.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield-virus": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06c" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antibodies", + "barrier", + "coronavirus", + "covid-19", + "flu", + "health", + "infection", + "pandemic", + "protect", + "safety", + "vaccine" + ] + }, + "unicode": "e06c", + "label": "Shield Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M253.4 2.9C249.2 1 244.7 0 240 0s-9.2 1-13.4 2.9L38.3 82.8C16.3 92.1-.1 113.8 0 140c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C438.7 420.7 479.5 239.2 480 140c.1-26.2-16.3-47.9-38.3-57.2L253.4 2.9zM240 112c8.8 0 16 7.2 16 16c0 33 39.9 49.5 63.2 26.2c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C318.5 200.1 335 240 368 240c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0C295.9 334.5 256 351 256 384c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C161.5 311.9 145 272 112 272c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C184.1 177.5 224 161 224 128c0-8.8 7.2-16 16-16zM216 256a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm72 32a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ship": { + "aliases": { + "unicodes": { + "composite": [ + "1f6a2" + ], + "secondary": [ + "10f21a" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.10.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boat", + "passenger", + "sea", + "ship", + "water" + ] + }, + "unicode": "f21a", + "label": "Ship", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M192 32c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32V64h48c26.5 0 48 21.5 48 48V240l44.4 14.8c23.1 7.7 29.5 37.5 11.5 53.9l-101 92.6c-16.2 9.4-34.7 15.1-50.9 15.1c-19.6 0-40.8-7.7-59.2-20.3c-22.1-15.5-51.6-15.5-73.7 0c-17.1 11.8-38 20.3-59.2 20.3c-16.2 0-34.7-5.7-50.9-15.1l-101-92.6c-18-16.5-11.6-46.2 11.5-53.9L96 240V112c0-26.5 21.5-48 48-48h48V32zM160 218.7l107.8-35.9c13.1-4.4 27.3-4.4 40.5 0L416 218.7V128H160v90.7zM306.5 421.9C329 437.4 356.5 448 384 448c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 501.7 417 512 384 512c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 437.2 165.1 448 192 448c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shirt": { + "aliases": { + "names": [ + "t-shirt", + "tshirt" + ], + "unicodes": { + "composite": [ + "1f455" + ], + "secondary": [ + "10f553" + ] + } + }, + "changes": [ + "5.0.13", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing", + "fashion", + "garment", + "shirt", + "short sleeve", + "t-shirt", + "tshirt" + ] + }, + "unicode": "f553", + "label": "Shirt", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321863, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M211.8 0c7.8 0 14.3 5.7 16.7 13.2C240.8 51.9 277.1 80 320 80s79.2-28.1 91.5-66.8C413.9 5.7 420.4 0 428.2 0h12.6c22.5 0 44.2 7.9 61.5 22.3L628.5 127.4c6.6 5.5 10.7 13.5 11.4 22.1s-2.1 17.1-7.8 23.6l-56 64c-11.4 13.1-31.2 14.6-44.6 3.5L480 197.7V448c0 35.3-28.7 64-64 64H224c-35.3 0-64-28.7-64-64V197.7l-51.5 42.9c-13.3 11.1-33.1 9.6-44.6-3.5l-56-64c-5.7-6.5-8.5-15-7.8-23.6s4.8-16.6 11.4-22.1L137.7 22.3C155 7.9 176.7 0 199.2 0h12.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shirtsinbulk": { + "changes": [ + "4.3.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f214", + "label": "Shirts in Bulk", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M100 410.3l30.6 13.4 4.4-9.9-30.6-13.4zm39.4 17.5l30.6 13.4 4.4-9.9-30.6-13.4zm172.1-14l4.4 9.9 30.6-13.4-4.4-9.9zM179.1 445l30.3 13.7 4.4-9.9-30.3-13.4zM60.4 392.8L91 406.2l4.4-9.6-30.6-13.7zm211.4 38.5l4.4 9.9 30.6-13.4-4.4-9.9zm-39.3 17.5l4.4 9.9 30.6-13.7-4.4-9.6zm118.4-52.2l4.4 9.6 30.6-13.4-4.4-9.9zM170 46.6h-33.5v10.5H170zm-47.2 0H89.2v10.5h33.5zm-47.3 0H42.3v10.5h33.3zm141.5 0h-33.2v10.5H217zm94.5 0H278v10.5h33.5zm47.3 0h-33.5v10.5h33.5zm-94.6 0H231v10.5h33.2zm141.5 0h-33.3v10.5h33.3zM52.8 351.1H42v33.5h10.8zm70-215.9H89.2v10.5h33.5zm-70 10.6h22.8v-10.5H42v33.5h10.8zm168.9 228.6c50.5 0 91.3-40.8 91.3-91.3 0-50.2-40.8-91.3-91.3-91.3-50.2 0-91.3 41.1-91.3 91.3 0 50.5 41.1 91.3 91.3 91.3zm-48.2-111.1c0-25.4 29.5-31.8 49.6-31.8 16.9 0 29.2 5.8 44.3 12l-8.8 16.9h-.9c-6.4-9.9-24.8-13.1-35.6-13.1-9 0-29.8 1.8-29.8 14.9 0 21.6 78.5-10.2 78.5 37.9 0 25.4-31.5 31.2-51 31.2-18.1 0-32.4-2.9-47.2-12.2l9-18.4h.9c6.1 12.2 23.6 14.9 35.9 14.9 8.7 0 32.7-1.2 32.7-14.3 0-26.1-77.6 6.3-77.6-38zM52.8 178.4H42V212h10.8zm342.4 206.2H406v-33.5h-10.8zM52.8 307.9H42v33.5h10.8zM0 3.7v406l221.7 98.6L448 409.7V3.7zm418.8 387.1L222 476.5 29.2 390.8V120.7h389.7v270.1zm0-299.3H29.2V32.9h389.7v58.6zm-366 130.1H42v33.5h10.8zm0 43.2H42v33.5h10.8zM170 135.2h-33.5v10.5H170zm225.2 163.1H406v-33.5h-10.8zm0-43.2H406v-33.5h-10.8zM217 135.2h-33.2v10.5H217zM395.2 212H406v-33.5h-10.8zm0 129.5H406V308h-10.8zm-131-206.3H231v10.5h33.2zm47.3 0H278v10.5h33.5zm83.7 33.6H406v-33.5h-33.5v10.5h22.8zm-36.4-33.6h-33.5v10.5h33.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "shoe-prints": { + "aliases": { + "unicodes": { + "secondary": [ + "10f54b" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "feet", + "footprints", + "steps", + "walk" + ] + }, + "unicode": "f54b", + "label": "Shoe Prints", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M416 0C352.3 0 256 32 256 32V160c48 0 76 16 104 32s56 32 104 32c56.4 0 176-16 176-96S512 0 416 0zM128 96c0 35.3 28.7 64 64 64h32V32H192c-35.3 0-64 28.7-64 64zM288 512c96 0 224-48 224-128s-119.6-96-176-96c-48 0-76 16-104 32s-56 32-104 32V480s96.3 32 160 32zM0 416c0 35.3 28.7 64 64 64H96V352H64c-35.3 0-64 28.7-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shop": { + "aliases": { + "names": [ + "store-alt" + ], + "unicodes": { + "secondary": [ + "10f54f" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bodega", + "building", + "buy", + "market", + "purchase", + "shopping", + "store" + ] + }, + "unicode": "f54f", + "label": "Shop", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M36.8 192H603.2c20.3 0 36.8-16.5 36.8-36.8c0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4L6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192zM64 224V384v80c0 26.5 21.5 48 48 48H336c26.5 0 48-21.5 48-48V384 224H320V384H128V224H64zm448 0V480c0 17.7 14.3 32 32 32s32-14.3 32-32V224H512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shop-lock": { + "changes": [ + "6.0.0", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bodega", + "building", + "buy", + "closed", + "lock", + "lockdown", + "market", + "purchase", + "quarantine", + "shop", + "shopping", + "store" + ] + }, + "unicode": "e4a5", + "label": "Shop Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M36.8 192H449.6c20.2-19.8 47.9-32 78.4-32c30.5 0 58.1 12.2 78.3 31.9c18.9-1.6 33.7-17.4 33.7-36.7c0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4L6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192zM384 224H320V384H128V224H64V384v80c0 26.5 21.5 48 48 48H336c26.5 0 48-21.5 48-48V384 352 224zm144 16c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shop-slash": { + "aliases": { + "names": [ + "store-alt-slash" + ], + "unicodes": { + "secondary": [ + "10e070" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "buy", + "closed", + "covid-19", + "purchase", + "shopping" + ] + }, + "unicode": "e070", + "label": "Shop Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-54.8-43V224H512V376L384 275.7V224H320v1.5L277.2 192H603.2c20.3 0 36.8-16.5 36.8-36.8c0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4L74.1 32.8 38.8 5.1zM36.8 192h85L21 112.5 6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192zM320 384H128V224H64V384v80c0 26.5 21.5 48 48 48H336c26.5 0 48-21.5 48-48V398.5l-64-50.4V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shopify": { + "changes": [ + "5.12.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e057", + "label": "Shopify", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M388.32,104.1a4.66,4.66,0,0,0-4.4-4c-2,0-37.23-.8-37.23-.8s-21.61-20.82-29.62-28.83V503.2L442.76,472S388.72,106.5,388.32,104.1ZM288.65,70.47a116.67,116.67,0,0,0-7.21-17.61C271,32.85,255.42,22,237,22a15,15,0,0,0-4,.4c-.4-.8-1.2-1.2-1.6-2C223.4,11.63,213,7.63,200.58,8c-24,.8-48,18-67.25,48.83-13.61,21.62-24,48.84-26.82,70.06-27.62,8.4-46.83,14.41-47.23,14.81-14,4.4-14.41,4.8-16,18-1.2,10-38,291.82-38,291.82L307.86,504V65.67a41.66,41.66,0,0,0-4.4.4S297.86,67.67,288.65,70.47ZM233.41,87.69c-16,4.8-33.63,10.4-50.84,15.61,4.8-18.82,14.41-37.63,25.62-50,4.4-4.4,10.41-9.61,17.21-12.81C232.21,54.86,233.81,74.48,233.41,87.69ZM200.58,24.44A27.49,27.49,0,0,1,215,28c-6.4,3.2-12.81,8.41-18.81,14.41-15.21,16.42-26.82,42-31.62,66.45-14.42,4.41-28.83,8.81-42,12.81C131.33,83.28,163.75,25.24,200.58,24.44ZM154.15,244.61c1.6,25.61,69.25,31.22,73.25,91.66,2.8,47.64-25.22,80.06-65.65,82.47-48.83,3.2-75.65-25.62-75.65-25.62l10.4-44s26.82,20.42,48.44,18.82c14-.8,19.22-12.41,18.81-20.42-2-33.62-57.24-31.62-60.84-86.86-3.2-46.44,27.22-93.27,94.47-97.68,26-1.6,39.23,4.81,39.23,4.81L221.4,225.39s-17.21-8-37.63-6.4C154.15,221,153.75,239.8,154.15,244.61ZM249.42,82.88c0-12-1.6-29.22-7.21-43.63,18.42,3.6,27.22,24,31.23,36.43Q262.63,78.68,249.42,82.88Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "shopware": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5b5", + "label": "Shopware", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M403.5 455.41A246.17 246.17 0 0 1 256 504C118.81 504 8 393 8 256 8 118.81 119 8 256 8a247.39 247.39 0 0 1 165.7 63.5 3.57 3.57 0 0 1-2.86 6.18A418.62 418.62 0 0 0 362.13 74c-129.36 0-222.4 53.47-222.4 155.35 0 109 92.13 145.88 176.83 178.73 33.64 13 65.4 25.36 87 41.59a3.58 3.58 0 0 1 0 5.72zM503 233.09a3.64 3.64 0 0 0-1.27-2.44c-51.76-43-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93a3.57 3.57 0 0 0 5-1.82A249 249 0 0 0 503 233.09z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "shower": { + "aliases": { + "unicodes": { + "composite": [ + "1f6bf" + ], + "secondary": [ + "10f2cc" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bath", + "clean", + "faucet", + "shower", + "water" + ] + }, + "unicode": "f2cc", + "label": "Shower", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 131.9C64 112.1 80.1 96 99.9 96c9.5 0 18.6 3.8 25.4 10.5l16.2 16.2c-21 38.9-17.4 87.5 10.9 123L151 247c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0L345 121c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-1.3 1.3c-35.5-28.3-84.1-31.9-123-10.9L170.5 61.3C151.8 42.5 126.4 32 99.9 32C44.7 32 0 76.7 0 131.9V448c0 17.7 14.3 32 32 32s32-14.3 32-32V131.9zM256 352a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm64 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0-128a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm64 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0-128a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm64 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm32-32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shrimp": { + "aliases": { + "unicodes": { + "composite": [ + "1f990" + ] + } + }, + "changes": [ + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "allergy", + "crustacean", + "prawn", + "seafood", + "shellfish", + "shrimp", + "tail" + ] + }, + "unicode": "e448", + "label": "Shrimp", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96s28.7 64 64 64h1c3.7 88.9 77 160 167 160h56V128H264 88.8 64c-17.7 0-32-14.3-32-32s14.3-32 32-32H464c8.8 0 16-7.2 16-16s-7.2-16-16-16H64zM224 456c0 13.3 10.7 24 24 24h72V407.8l-64.1-22.4c-12.5-4.4-26.2 2.2-30.6 14.7s2.2 26.2 14.7 30.6l4.5 1.6C233 433.9 224 443.9 224 456zm128 23.3c36.4-3.3 69.5-17.6 96.1-39.6l-86.5-34.6c-3 1.8-6.2 3.2-9.6 4.3v69.9zM472.6 415c24.6-30.3 39.4-68.9 39.4-111c0-12.3-1.3-24.3-3.7-35.9L382.8 355.1c.8 3.4 1.2 7 1.2 10.6c0 4.6-.7 9-1.9 13.1L472.6 415zM336 128H320V320h18.3c9.9 0 19.1 3.2 26.6 8.5l133.5-92.4C471.8 172.6 409.1 128 336 128zM168 192a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shuffle": { + "aliases": { + "names": [ + "random" + ], + "unicodes": { + "composite": [ + "1f500" + ], + "secondary": [ + "10f074" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "crossed", + "shuffle", + "shuffle tracks button", + "sort", + "swap", + "switch", + "transfer" + ] + }, + "unicode": "f074", + "label": "Shuffle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M403.8 34.4c12-5 25.7-2.2 34.9 6.9l64 64c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-64 64c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V160H352c-10.1 0-19.6 4.7-25.6 12.8L284 229.3 244 176l31.2-41.6C293.3 110.2 321.8 96 352 96h32V64c0-12.9 7.8-24.6 19.8-29.6zM164 282.7L204 336l-31.2 41.6C154.7 401.8 126.2 416 96 416H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96c10.1 0 19.6-4.7 25.6-12.8L164 282.7zm274.6 188c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V416H352c-30.2 0-58.7-14.2-76.8-38.4L121.6 172.8c-6-8.1-15.5-12.8-25.6-12.8H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96c30.2 0 58.7 14.2 76.8 38.4L326.4 339.2c6 8.1 15.5 12.8 25.6 12.8h32V320c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l64 64c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shuttle-space": { + "aliases": { + "names": [ + "space-shuttle" + ], + "unicodes": { + "secondary": [ + "10f197" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "astronaut", + "machine", + "nasa", + "rocket", + "space", + "transportation" + ] + }, + "unicode": "f197", + "label": "Shuttle Space", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M130 480c40.6 0 80.4-11 115.2-31.9L352 384l-224 0 0 96h2zM352 128L245.2 63.9C210.4 43 170.6 32 130 32h-2v96l224 0zM96 128l0-96H80C53.5 32 32 53.5 32 80v48h8c-22.1 0-40 17.9-40 40v16V328v16c0 22.1 17.9 40 40 40H32v48c0 26.5 21.5 48 48 48H96l0-96h8c26.2 0 49.4-12.6 64-32H456c69.3 0 135-22.7 179.2-81.6c6.4-8.5 6.4-20.3 0-28.8C591 182.7 525.3 160 456 160H168c-14.6-19.4-37.8-32-64-32l-8 0zM512 243.6v24.9c0 19.6-15.9 35.6-35.6 35.6c-2.5 0-4.4-2-4.4-4.4V212.4c0-2.5 2-4.4 4.4-4.4c19.6 0 35.6 15.9 35.6 35.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sign-hanging": { + "aliases": { + "names": [ + "sign" + ], + "unicodes": { + "secondary": [ + "10f4d9" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "real estate", + "signage", + "wayfinding" + ] + }, + "unicode": "f4d9", + "label": "Sign Hanging", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 0c17.7 0 32 14.3 32 32V64l352 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-352 0V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V128H32C14.3 128 0 113.7 0 96S14.3 64 32 64H64V32C64 14.3 78.3 0 96 0zm96 160H448c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "signal": { + "aliases": { + "names": [ + "signal-5", + "signal-perfect" + ], + "unicodes": { + "composite": [ + "1f4f6" + ], + "secondary": [ + "10f012" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antenna", + "antenna bars", + "bar", + "bars", + "cell", + "graph", + "mobile", + "online", + "phone", + "reception", + "status" + ] + }, + "unicode": "f012", + "label": "Signal", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M544 0c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V32c0-17.7 14.3-32 32-32zM416 96c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V128c0-17.7 14.3-32 32-32zM320 224V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32s32 14.3 32 32zM160 288c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V320c0-17.7 14.3-32 32-32zM64 416v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V416c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "signature": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5b7" + ] + } + }, + "changes": [ + "5.1.0", + "5.6.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "John Hancock", + "cursive", + "name", + "writing" + ] + }, + "unicode": "f5b7", + "label": "Signature", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 128c0-17.7 14.3-32 32-32s32 14.3 32 32v7.8c0 27.7-2.4 55.3-7.1 82.5l-84.4 25.3c-40.6 12.2-68.4 49.6-68.4 92v71.9c0 40 32.5 72.5 72.5 72.5c26 0 50-13.9 62.9-36.5l13.9-24.3c26.8-47 46.5-97.7 58.4-150.5l94.4-28.3-12.5 37.5c-3.3 9.8-1.6 20.5 4.4 28.8s15.7 13.3 26 13.3H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H460.4l18-53.9c3.8-11.3 .9-23.8-7.4-32.4s-20.7-11.8-32.2-8.4L316.4 198.1c2.4-20.7 3.6-41.4 3.6-62.3V128c0-53-43-96-96-96s-96 43-96 96v32c0 17.7 14.3 32 32 32s32-14.3 32-32V128zm-9.2 177l49-14.7c-10.4 33.8-24.5 66.4-42.1 97.2l-13.9 24.3c-1.5 2.6-4.3 4.3-7.4 4.3c-4.7 0-8.5-3.8-8.5-8.5V335.6c0-14.1 9.3-26.6 22.8-30.7zM24 368c-13.3 0-24 10.7-24 24s10.7 24 24 24H64.3c-.2-2.8-.3-5.6-.3-8.5V368H24zm592 48c13.3 0 24-10.7 24-24s-10.7-24-24-24H305.9c-6.7 16.3-14.2 32.3-22.3 48H616z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "signs-post": { + "aliases": { + "names": [ + "map-signs" + ], + "unicodes": { + "secondary": [ + "10f277" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "directory", + "map", + "signage", + "wayfinding" + ] + }, + "unicode": "f277", + "label": "Signs Post", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M218 32H58C40.3 32 26 46.3 26 64v64c0 17.7 14.3 32 32 32H435.4c4.2 0 8.3-1.7 11.3-4.7l48-48c6.2-6.2 6.2-16.4 0-22.6l-48-48c-3-3-7.1-4.7-11.3-4.7H282c0-17.7-14.3-32-32-32s-32 14.3-32 32zM474 256c0-17.7-14.3-32-32-32H282V192H218v32H64.6c-4.2 0-8.3 1.7-11.3 4.7l-48 48c-6.2 6.2-6.2 16.4 0 22.6l48 48c3 3 7.1 4.7 11.3 4.7H442c17.7 0 32-14.3 32-32V256zM282 480V384H218v96c0 17.7 14.3 32 32 32s32-14.3 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sim-card": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7c4" + ] + } + }, + "changes": [ + "5.6.0", + "5.8.2", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hard drive", + "hardware", + "portable", + "storage", + "technology", + "tiny" + ] + }, + "unicode": "f7c4", + "label": "Sim Card", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0H242.7c17 0 33.3 6.7 45.3 18.7L365.3 96c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0zM96 192c-17.7 0-32 14.3-32 32v32h64V192H96zM64 352h80 96 80V288H240 144 64v64zM320 224c0-17.7-14.3-32-32-32H256v64h64V224zM160 192v64h64V192H160zM288 448c17.7 0 32-14.3 32-32V384H256v64h32zM160 384v64h64V384H160zM64 416c0 17.7 14.3 32 32 32h32V384H64v32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "simplybuilt": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f215", + "label": "SimplyBuilt", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sink": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06d" + ] + } + }, + "changes": [ + "5.13.0", + "5.13.1", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "covid-19", + "faucet", + "kitchen", + "wash" + ] + }, + "unicode": "e06d", + "label": "Sink", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 96c0-17.7 14.3-32 32-32s32 14.3 32 32s14.3 32 32 32s32-14.3 32-32c0-53-43-96-96-96s-96 43-96 96V288H160V264c0-30.9-25.1-56-56-56H56c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c4.4 0 8 3.6 8 8v24H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H256 480c17.7 0 32-14.3 32-32s-14.3-32-32-32H400V264c0-4.4 3.6-8 8-8h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H408c-30.9 0-56 25.1-56 56v24H288V96zM480 416V384H32v32c0 53 43 96 96 96H384c53 0 96-43 96-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sistrix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ee", + "label": "SISTRIX", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sitemap": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0e8" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directory", + "hierarchy", + "ia", + "information architecture", + "organization" + ] + }, + "unicode": "f0e8", + "label": "Sitemap", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M208 80c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48h-8v40H464c30.9 0 56 25.1 56 56v32h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H464c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48h8V288c0-4.4-3.6-8-8-8H312v40h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H256c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48h8V280H112c-4.4 0-8 3.6-8 8v32h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48h8V288c0-30.9 25.1-56 56-56H264V192h-8c-26.5 0-48-21.5-48-48V80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sith": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f512", + "label": "Sith", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sitrox": { + "changes": [ + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e44a", + "label": "Sitrox", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M212.439 0.00846128V0H448V128H64C64 57.6008 141.755 0.475338 212.439 0.00846128ZM237.256 192V192.007C307.135 192.475 384 249.6 384 320H210.809V319.995C140.915 319.563 64 262.424 64 192H237.256ZM235.565 511.993C306.251 511.521 384 454.399 384 384H0V512H235.565V511.993Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sketch": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "design", + "interface" + ] + }, + "unicode": "f7c6", + "label": "Sketch", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M27.5 162.2L9 187.1h90.5l6.9-130.7-78.9 105.8zM396.3 45.7L267.7 32l135.7 147.2-7.1-133.5zM112.2 218.3l-11.2-22H9.9L234.8 458zm2-31.2h284l-81.5-88.5L256.3 33zm297.3 9.1L277.6 458l224.8-261.7h-90.9zM415.4 69L406 56.4l.9 17.3 6.1 113.4h90.3zM113.5 93.5l-4.6 85.6L244.7 32 116.1 45.7zm287.7 102.7h-290l42.4 82.9L256.3 480l144.9-283.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "skull": { + "aliases": { + "unicodes": { + "composite": [ + "1f480" + ], + "secondary": [ + "10f54c" + ] + } + }, + "changes": [ + "5.0.13", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bones", + "death", + "face", + "fairy tale", + "monster", + "skeleton", + "skull", + "x-ray", + "yorick" + ] + }, + "unicode": "f54c", + "label": "Skull", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 398.9c58.5-41.1 96-104.1 96-174.9C512 100.3 397.4 0 256 0S0 100.3 0 224c0 70.7 37.5 133.8 96 174.9c0 .4 0 .7 0 1.1v64c0 26.5 21.5 48 48 48h48V464c0-8.8 7.2-16 16-16s16 7.2 16 16v48h64V464c0-8.8 7.2-16 16-16s16 7.2 16 16v48h48c26.5 0 48-21.5 48-48V400c0-.4 0-.7 0-1.1zM96 256a64 64 0 1 1 128 0A64 64 0 1 1 96 256zm256-64a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "skull-crossbones": { + "aliases": { + "unicodes": { + "composite": [ + "1f571", + "2620" + ], + "secondary": [ + "10f714" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Skull and Crossbones", + "Dungeons & Dragons", + "alert", + "bones", + "crossbones", + "d&d", + "danger", + "dangerous area", + "dead", + "deadly", + "death", + "dnd", + "face", + "fantasy", + "halloween", + "holiday", + "jolly-roger", + "monster", + "pirate", + "poison", + "skeleton", + "skull", + "skull and crossbones", + "warning" + ] + }, + "unicode": "f714", + "label": "Skull Crossbones", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M368 128c0 44.4-25.4 83.5-64 106.4V256c0 17.7-14.3 32-32 32H176c-17.7 0-32-14.3-32-32V234.4c-38.6-23-64-62.1-64-106.4C80 57.3 144.5 0 224 0s144 57.3 144 128zM168 176a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm144-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM3.4 273.7c7.9-15.8 27.1-22.2 42.9-14.3L224 348.2l177.7-88.8c15.8-7.9 35-1.5 42.9 14.3s1.5 35-14.3 42.9L295.6 384l134.8 67.4c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3L224 419.8 46.3 508.6c-15.8 7.9-35 1.5-42.9-14.3s-1.5-35 14.3-42.9L152.4 384 17.7 316.6C1.9 308.7-4.5 289.5 3.4 273.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "skyatlas": { + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f216", + "label": "skyatlas", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "skype": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f17e", + "label": "Skype", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "slack": { + "aliases": { + "names": [ + "slack-hash" + ], + "unicodes": { + "composite": [ + "f3ef" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchor", + "hash", + "hashtag" + ] + }, + "unicode": "f198", + "label": "Slack Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1c0-25.9 21.16-47.06 47.06-47.06h47.06v47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V315.1zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06H164.9zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06H164.9zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06h-47.06V196.9zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06V196.9zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06v-47.06h47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06 0-25.9 21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06H283.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f715" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "close", + "mute", + "off", + "stop", + "x" + ] + }, + "unicode": "f715", + "label": "Slash", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321865, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M5.1 9.2C13.3-1.2 28.4-3.1 38.8 5.1l592 464c10.4 8.2 12.3 23.3 4.1 33.7s-23.3 12.3-33.7 4.1L9.2 42.9C-1.2 34.7-3.1 19.6 5.1 9.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sleigh": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7cc" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "christmas", + "claus", + "fly", + "holiday", + "santa", + "sled", + "snow", + "xmas" + ] + }, + "unicode": "f7cc", + "label": "Sleigh", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96V256c0 53 43 96 96 96v32h64V352H384v32h64V352c53 0 96-43 96-96V160c17.7 0 32-14.3 32-32s-14.3-32-32-32H512 480c-17.7 0-32 14.3-32 32v41.3c0 30.2-24.5 54.7-54.7 54.7c-75.5 0-145.6-38.9-185.6-102.9l-4.3-6.9C174.2 67.6 125 37.6 70.7 32.7c-2.2-.5-4.4-.7-6.7-.7H55 32zM640 384c0-17.7-14.3-32-32-32s-32 14.3-32 32v8c0 13.3-10.7 24-24 24H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H552c48.6 0 88-39.4 88-88v-8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sliders": { + "aliases": { + "names": [ + "sliders-h" + ], + "unicodes": { + "secondary": [ + "10f1de" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.0.11", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "adjust", + "settings", + "sliders", + "toggle" + ] + }, + "unicode": "f1de", + "label": "Sliders", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 416c0-17.7 14.3-32 32-32l54.7 0c12.3-28.3 40.5-48 73.3-48s61 19.7 73.3 48L480 384c17.7 0 32 14.3 32 32s-14.3 32-32 32l-246.7 0c-12.3 28.3-40.5 48-73.3 48s-61-19.7-73.3-48L32 448c-17.7 0-32-14.3-32-32zm192 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM384 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm-32-80c32.8 0 61 19.7 73.3 48l54.7 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-54.7 0c-12.3 28.3-40.5 48-73.3 48s-61-19.7-73.3-48L32 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l246.7 0c12.3-28.3 40.5-48 73.3-48zM192 64a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm73.3 0L480 64c17.7 0 32 14.3 32 32s-14.3 32-32 32l-214.7 0c-12.3 28.3-40.5 48-73.3 48s-61-19.7-73.3-48L32 128C14.3 128 0 113.7 0 96S14.3 64 32 64l86.7 0C131 35.7 159.2 16 192 16s61 19.7 73.3 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "slideshare": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1e7", + "label": "Slideshare", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M187.7 153.7c-34 0-61.7 25.7-61.7 57.7 0 31.7 27.7 57.7 61.7 57.7s61.7-26 61.7-57.7c0-32-27.7-57.7-61.7-57.7zm143.4 0c-34 0-61.7 25.7-61.7 57.7 0 31.7 27.7 57.7 61.7 57.7 34.3 0 61.7-26 61.7-57.7.1-32-27.4-57.7-61.7-57.7zm156.6 90l-6 4.3V49.7c0-27.4-20.6-49.7-46-49.7H76.6c-25.4 0-46 22.3-46 49.7V248c-2-1.4-4.3-2.9-6.3-4.3-15.1-10.6-25.1 4-16 17.7 18.3 22.6 53.1 50.3 106.3 72C58.3 525.1 252 555.7 248.9 457.5c0-.7.3-56.6.3-96.6 5.1 1.1 9.4 2.3 13.7 3.1 0 39.7.3 92.8.3 93.5-3.1 98.3 190.6 67.7 134.3-124 53.1-21.7 88-49.4 106.3-72 9.1-13.8-.9-28.3-16.1-17.8zm-30.5 19.2c-68.9 37.4-128.3 31.1-160.6 29.7-23.7-.9-32.6 9.1-33.7 24.9-10.3-7.7-18.6-15.5-20.3-17.1-5.1-5.4-13.7-8-27.1-7.7-31.7 1.1-89.7 7.4-157.4-28V72.3c0-34.9 8.9-45.7 40.6-45.7h317.7c30.3 0 40.9 12.9 40.9 45.7v190.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "smog": { + "aliases": { + "unicodes": { + "secondary": [ + "10f75f" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dragon", + "fog", + "haze", + "pollution", + "smoke", + "weather" + ] + }, + "unicode": "f75f", + "label": "Smog", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 144c0 79.5 64.5 144 144 144H299.3c22.6 19.9 52.2 32 84.7 32s62.1-12.1 84.7-32H496c61.9 0 112-50.1 112-112s-50.1-112-112-112c-10.7 0-21 1.5-30.8 4.3C443.8 27.7 401.1 0 352 0c-32.6 0-62.4 12.2-85.1 32.3C242.1 12.1 210.5 0 176 0C96.5 0 32 64.5 32 144zM616 368H280c-13.3 0-24 10.7-24 24s10.7 24 24 24H616c13.3 0 24-10.7 24-24s-10.7-24-24-24zm-64 96H440c-13.3 0-24 10.7-24 24s10.7 24 24 24H552c13.3 0 24-10.7 24-24s-10.7-24-24-24zm-192 0H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H360c13.3 0 24-10.7 24-24s-10.7-24-24-24zM224 392c0-13.3-10.7-24-24-24H96c-13.3 0-24 10.7-24 24s10.7 24 24 24H200c13.3 0 24-10.7 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "smoking": { + "aliases": { + "unicodes": { + "composite": [ + "1f6ac" + ], + "secondary": [ + "10f48d" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancer", + "cigarette", + "nicotine", + "smoking", + "smoking status", + "tobacco" + ] + }, + "unicode": "f48d", + "label": "Smoking", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M448 32V43c0 38.2 15.2 74.8 42.2 101.8l21 21c21 21 32.8 49.5 32.8 79.2v11c0 17.7-14.3 32-32 32s-32-14.3-32-32V245c0-12.7-5.1-24.9-14.1-33.9l-21-21C405.9 151.1 384 98.1 384 43V32c0-17.7 14.3-32 32-32s32 14.3 32 32zM576 256V245c0-38.2-15.2-74.8-42.2-101.8l-21-21c-21-21-32.8-49.5-32.8-79.2V32c0-17.7 14.3-32 32-32s32 14.3 32 32V43c0 12.7 5.1 24.9 14.1 33.9l21 21c39 39 60.9 91.9 60.9 147.1v11c0 17.7-14.3 32-32 32s-32-14.3-32-32zM0 416c0-35.3 28.7-64 64-64H416c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H64c-35.3 0-64-28.7-64-64V416zm224 0v32H384V416H224zm288-64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "snapchat": { + "aliases": { + "names": [ + "snapchat-ghost" + ], + "unicodes": { + "composite": [ + "f2ac" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2ab", + "label": "Snapchat", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M496.926,366.6c-3.373-9.176-9.8-14.086-17.112-18.153-1.376-.806-2.641-1.451-3.72-1.947-2.182-1.128-4.414-2.22-6.634-3.373-22.8-12.09-40.609-27.341-52.959-45.42a102.889,102.889,0,0,1-9.089-16.12c-1.054-3.013-1-4.724-.248-6.287a10.221,10.221,0,0,1,2.914-3.038c3.918-2.591,7.96-5.22,10.7-6.993,4.885-3.162,8.754-5.667,11.246-7.44,9.362-6.547,15.909-13.5,20-21.278a42.371,42.371,0,0,0,2.1-35.191c-6.2-16.318-21.613-26.449-40.287-26.449a55.543,55.543,0,0,0-11.718,1.24c-1.029.224-2.059.459-3.063.72.174-11.16-.074-22.94-1.066-34.534-3.522-40.758-17.794-62.123-32.674-79.16A130.167,130.167,0,0,0,332.1,36.443C309.515,23.547,283.91,17,256,17S202.6,23.547,180,36.443a129.735,129.735,0,0,0-33.281,26.783c-14.88,17.038-29.152,38.44-32.673,79.161-.992,11.594-1.24,23.435-1.079,34.533-1-.26-2.021-.5-3.051-.719a55.461,55.461,0,0,0-11.717-1.24c-18.687,0-34.125,10.131-40.3,26.449a42.423,42.423,0,0,0,2.046,35.228c4.105,7.774,10.652,14.731,20.014,21.278,2.48,1.736,6.361,4.24,11.246,7.44,2.641,1.711,6.5,4.216,10.28,6.72a11.054,11.054,0,0,1,3.3,3.311c.794,1.624.818,3.373-.36,6.6a102.02,102.02,0,0,1-8.94,15.785c-12.077,17.669-29.363,32.648-51.434,44.639C32.355,348.608,20.2,352.75,15.069,366.7c-3.868,10.528-1.339,22.506,8.494,32.6a49.137,49.137,0,0,0,12.4,9.387,134.337,134.337,0,0,0,30.342,12.139,20.024,20.024,0,0,1,6.126,2.741c3.583,3.137,3.075,7.861,7.849,14.78a34.468,34.468,0,0,0,8.977,9.127c10.019,6.919,21.278,7.353,33.207,7.811,10.776.41,22.989.881,36.939,5.481,5.778,1.91,11.78,5.605,18.736,9.92C194.842,480.951,217.707,495,255.973,495s61.292-14.123,78.118-24.428c6.907-4.24,12.872-7.9,18.489-9.758,13.949-4.613,26.163-5.072,36.939-5.481,11.928-.459,23.187-.893,33.206-7.812a34.584,34.584,0,0,0,10.218-11.16c3.434-5.84,3.348-9.919,6.572-12.771a18.971,18.971,0,0,1,5.753-2.629A134.893,134.893,0,0,0,476.02,408.71a48.344,48.344,0,0,0,13.019-10.193l.124-.149C498.389,388.5,500.708,376.867,496.926,366.6Zm-34.013,18.277c-20.745,11.458-34.533,10.23-45.259,17.137-9.114,5.865-3.72,18.513-10.342,23.076-8.134,5.617-32.177-.4-63.239,9.858-25.618,8.469-41.961,32.822-88.038,32.822s-62.036-24.3-88.076-32.884c-31-10.255-55.092-4.241-63.239-9.858-6.609-4.563-1.24-17.211-10.341-23.076-10.739-6.907-24.527-5.679-45.26-17.075-13.206-7.291-5.716-11.8-1.314-13.937,75.143-36.381,87.133-92.552,87.666-96.719.645-5.046,1.364-9.014-4.191-14.148-5.369-4.96-29.189-19.7-35.8-24.316-10.937-7.638-15.748-15.264-12.2-24.638,2.48-6.485,8.531-8.928,14.879-8.928a27.643,27.643,0,0,1,5.965.67c12,2.6,23.659,8.617,30.392,10.242a10.749,10.749,0,0,0,2.48.335c3.6,0,4.86-1.811,4.612-5.927-.768-13.132-2.628-38.725-.558-62.644,2.84-32.909,13.442-49.215,26.04-63.636,6.051-6.932,34.484-36.976,88.857-36.976s82.88,29.92,88.931,36.827c12.611,14.421,23.225,30.727,26.04,63.636,2.071,23.919.285,49.525-.558,62.644-.285,4.327,1.017,5.927,4.613,5.927a10.648,10.648,0,0,0,2.48-.335c6.745-1.624,18.4-7.638,30.4-10.242a27.641,27.641,0,0,1,5.964-.67c6.386,0,12.4,2.48,14.88,8.928,3.546,9.374-1.24,17-12.189,24.639-6.609,4.612-30.429,19.343-35.8,24.315-5.568,5.134-4.836,9.1-4.191,14.149.533,4.228,12.511,60.4,87.666,96.718C468.629,373.011,476.119,377.524,462.913,384.877Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "snowflake": { + "aliases": { + "unicodes": { + "composite": [ + "2744", + "2746" + ], + "secondary": [ + "10f2dc" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Heavy Chevron Snowflake", + "cold", + "precipitation", + "rain", + "snow", + "snowfall", + "snowflake", + "winter" + ] + }, + "unicode": "f2dc", + "label": "Snowflake", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0c17.7 0 32 14.3 32 32V62.1l15-15c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-49 49v70.3l61.4-35.8 17.7-66.1c3.4-12.8 16.6-20.4 29.4-17s20.4 16.6 17 29.4l-5.2 19.3 23.6-13.8c15.3-8.9 34.9-3.7 43.8 11.5s3.8 34.9-11.5 43.8l-25.3 14.8 21.7 5.8c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17l-67.7-18.1L287.5 256l60.9 35.5 67.7-18.1c12.8-3.4 26 4.2 29.4 17s-4.2 26-17 29.4l-21.7 5.8 25.3 14.8c15.3 8.9 20.4 28.5 11.5 43.8s-28.5 20.4-43.8 11.5l-23.6-13.8 5.2 19.3c3.4 12.8-4.2 26-17 29.4s-26-4.2-29.4-17l-17.7-66.1L256 311.7v70.3l49 49c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-15-15V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V449.9l-15 15c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l49-49V311.7l-61.4 35.8-17.7 66.1c-3.4 12.8-16.6 20.4-29.4 17s-20.4-16.6-17-29.4l5.2-19.3L48.1 395.6c-15.3 8.9-34.9 3.7-43.8-11.5s-3.7-34.9 11.5-43.8l25.3-14.8-21.7-5.8c-12.8-3.4-20.4-16.6-17-29.4s16.6-20.4 29.4-17l67.7 18.1L160.5 256 99.6 220.5 31.9 238.6c-12.8 3.4-26-4.2-29.4-17s4.2-26 17-29.4l21.7-5.8L15.9 171.6C.6 162.7-4.5 143.1 4.4 127.9s28.5-20.4 43.8-11.5l23.6 13.8-5.2-19.3c-3.4-12.8 4.2-26 17-29.4s26 4.2 29.4 17l17.7 66.1L192 200.3V129.9L143 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l15 15V32c0-17.7 14.3-32 32-32z" + }, + "regular": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M223 0c13.3 0 24 10.7 24 24V70.1l23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-57 57v76.5l66.2-38.2 20.9-77.8c3.4-12.8 16.6-20.4 29.4-17s20.4 16.6 17 29.4L372 142.2l37.1-21.4c11.5-6.6 26.2-2.7 32.8 8.8s2.7 26.2-8.8 32.8L396 183.8l31.5 8.4c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17l-77.8-20.9L271 256l66.2 38.2 77.8-20.9c12.8-3.4 26 4.2 29.4 17s-4.2 26-17 29.4L396 328.2l37.1 21.4c11.5 6.6 15.4 21.3 8.8 32.8s-21.3 15.4-32.8 8.8L372 369.8l8.4 31.5c3.4 12.8-4.2 26-17 29.4s-26-4.2-29.4-17l-20.9-77.8L247 297.6v76.5l57 57c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-23-23V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V441.9l-23 23c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l57-57V297.6l-66.2 38.2-20.9 77.8c-3.4 12.8-16.6 20.4-29.4 17s-20.4-16.6-17-29.4L74 369.8 36.9 391.2c-11.5 6.6-26.2 2.7-32.8-8.8s-2.7-26.2 8.8-32.8L50 328.2l-31.5-8.4c-12.8-3.4-20.4-16.6-17-29.4s16.6-20.4 29.4-17l77.8 20.9L175 256l-66.2-38.2L30.9 238.6c-12.8 3.4-26-4.2-29.4-17s4.2-26 17-29.4L50 183.8 12.9 162.4c-11.5-6.6-15.4-21.3-8.8-32.8s21.3-15.4 32.8-8.8L74 142.2l-8.4-31.5c-3.4-12.8 4.2-26 17-29.4s26 4.2 29.4 17l20.9 77.8L199 214.4V137.9L142 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l23 23V24c0-13.3 10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "snowman": { + "aliases": { + "unicodes": { + "composite": [ + "2603", + "26c4" + ], + "secondary": [ + "10f7d0" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "decoration", + "frost", + "frosty", + "holiday", + "snow", + "snowman", + "snowman without snow" + ] + }, + "unicode": "f7d0", + "label": "Snowman", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M341.1 140.6c-2 3.9-1.6 8.6 1.2 12c7 8.5 12.9 18.1 17.2 28.4L408 160.2V120c0-13.3 10.7-24 24-24s24 10.7 24 24v19.6l22.5-9.7c12.2-5.2 26.3 .4 31.5 12.6s-.4 26.3-12.6 31.5l-56 24-73.6 31.5c-.5 9.5-2.1 18.6-4.8 27.3c-1.2 3.8-.1 8 2.8 10.8C396.7 296.9 416 338.2 416 384c0 44.7-18.3 85-47.8 114.1c-9.9 9.7-23.7 13.9-37.5 13.9H181.3c-13.9 0-27.7-4.2-37.5-13.9C114.3 469 96 428.7 96 384c0-45.8 19.3-87.1 50.1-116.3c2.9-2.8 4-6.9 2.8-10.8c-2.7-8.7-4.3-17.9-4.8-27.3L70.5 198.1l-56-24C2.4 168.8-3.3 154.7 1.9 142.5s19.3-17.8 31.5-12.6L56 139.6V120c0-13.3 10.7-24 24-24s24 10.7 24 24v40.2L152.6 181c4.3-10.3 10.1-19.9 17.2-28.4c2.8-3.4 3.3-8.1 1.2-12C164 127.2 160 112.1 160 96c0-53 43-96 96-96s96 43 96 96c0 16.1-4 31.2-10.9 44.6zM224 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm48 128a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm-16 80a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm16 48a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zM288 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm-48 24v3.2c0 3.2 .8 6.3 2.3 9l9 16.9c.9 1.7 2.7 2.8 4.7 2.8s3.8-1.1 4.7-2.8l9-16.9c1.5-2.8 2.3-5.9 2.3-9V120c0-8.8-7.2-16-16-16s-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "snowplow": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7d2" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clean up", + "cold", + "road", + "storm", + "winter" + ] + }, + "unicode": "f7d2", + "label": "Snowplow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M298.9 64l68.6 160H256l-64-64V64H298.9zM445.1 242.7l-87.4-204C347.6 15.3 324.5 0 298.9 0H176c-26.5 0-48 21.5-48 48V160H96c-17.7 0-32 14.3-32 32V298.8C26.2 316.8 0 355.3 0 400c0 61.9 50.1 112 112 112H368c61.9 0 112-50.1 112-112c0-17.2-3.9-33.5-10.8-48H512v50.7c0 17 6.7 33.3 18.7 45.3l54.6 54.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L576 402.7V320 235.2L633 164c11-13.8 8.8-33.9-5-45s-33.9-8.8-45 5l-57 71.2c-9.1 11.3-14 25.4-14 40V288H448V256.7c.1-2.4-.2-4.8-.6-7.1s-1.2-4.7-2.2-6.8zM368 352c26.5 0 48 21.5 48 48s-21.5 48-48 48H112c-26.5 0-48-21.5-48-48s21.5-48 48-48H368zM144 400a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm216 24a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm-56-24a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM200 424a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "soap": { + "aliases": { + "unicodes": { + "composite": [ + "1f9fc" + ], + "secondary": [ + "10e06e" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bar", + "bathing", + "bubbles", + "clean", + "cleaning", + "covid-19", + "hygiene", + "lather", + "soap", + "soapdish", + "wash" + ] + }, + "unicode": "e06e", + "label": "Soap", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM320 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM416 32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0 160c0 27.6-11.7 52.5-30.4 70.1C422.1 275.7 448 310.8 448 352c0 53-43 96-96 96H160c-53 0-96-43-96-96s43-96 96-96h88.4c-15.2-17-24.4-39.4-24.4-64H96c-53 0-96 43-96 96V416c0 53 43 96 96 96H416c53 0 96-43 96-96V288c0-53-43-96-96-96zM160 288c-35.3 0-64 28.7-64 64s28.7 64 64 64H352c35.3 0 64-28.7 64-64s-28.7-64-64-64H320 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "socks": { + "aliases": { + "unicodes": { + "composite": [ + "1f9e6" + ], + "secondary": [ + "10f696" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "business socks", + "business time", + "clothing", + "feet", + "flight of the conchords", + "socks", + "stocking", + "wednesday" + ] + }, + "unicode": "f696", + "label": "Socks", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M175.2 476.6c-9.7-18-15.2-38.7-15.2-60.6c0-40.3 19-78.2 51.2-102.4l64-48c8.1-6 12.8-15.5 12.8-25.6V96H128V240c0 20.1-9.5 39.1-25.6 51.2l-64 48C14.2 357.3 0 385.8 0 416c0 53 43 96 96 96c20.8 0 41-6.7 57.6-19.2l21.6-16.2zM128 64H288V48c0-14.5 3.9-28.2 10.7-39.9C291 3 281.9 0 272 0H176c-26.5 0-48 21.5-48 48V64zM320 96V240c0 20.1-9.5 39.1-25.6 51.2l-64 48C206.2 357.3 192 385.8 192 416c0 53 43 96 96 96c20.8 0 41-6.7 57.6-19.2l115.2-86.4C493 382.2 512 344.3 512 304V96H320zM512 64V48c0-26.5-21.5-48-48-48H368c-26.5 0-48 21.5-48 48V64H512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "solar-panel": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5ba" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clean", + "eco-friendly", + "energy", + "green", + "sun" + ] + }, + "unicode": "f5ba", + "label": "Solar Panel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M115.2 0C84.7 0 58.5 21.5 52.5 51.4L1.3 307.4C-6.6 347 23.6 384 64 384H281v64H217c-17.7 0-32 14.3-32 32s14.3 32 32 32H409c17.7 0 32-14.3 32-32s-14.3-32-32-32H345V384H562c40.4 0 70.7-36.9 62.8-76.6l-51.2-256C567.5 21.5 541.3 0 510.8 0H115.2zM253.9 64H372.1l10.4 104h-139L253.9 64zM195.3 168H94.4L115.2 64h90.4L195.3 168zM84.8 216H190.5L180.1 320H64L84.8 216zm153.9 0H387.3l10.4 104-169.4 0 10.4-104zm196.8 0H541.2L562 320h-116L435.5 216zm96-48H430.7L420.3 64h90.4l31.4-6.3L510.8 64l20.8 104z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sort": { + "aliases": { + "names": [ + "unsorted" + ], + "unicodes": { + "secondary": [ + "10f0dc" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "filter", + "order" + ] + }, + "unicode": "f0dc", + "label": "Sort", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M137.4 41.4c12.5-12.5 32.8-12.5 45.3 0l128 128c9.2 9.2 11.9 22.9 6.9 34.9s-16.6 19.8-29.6 19.8H32c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9l128-128zm0 429.3l-128-128c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8H288c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-128 128c-12.5 12.5-32.8 12.5-45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sort-down": { + "aliases": { + "names": [ + "sort-desc" + ], + "unicodes": { + "secondary": [ + "10f0dd" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "descending", + "filter", + "order", + "sort-desc" + ] + }, + "unicode": "f0dd", + "label": "Sort Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M182.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8H288c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-128 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sort-up": { + "aliases": { + "names": [ + "sort-asc" + ], + "unicodes": { + "secondary": [ + "10f0de" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "ascending", + "filter", + "order", + "sort-asc" + ] + }, + "unicode": "f0de", + "label": "Sort Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M182.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H288c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "soundcloud": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1be", + "label": "SoundCloud", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sourcetree": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f7d3", + "label": "Sourcetree", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M427.2 203c0-112.1-90.9-203-203-203C112.1-.2 21.2 90.6 21 202.6A202.86 202.86 0 0 0 161.5 396v101.7a14.3 14.3 0 0 0 14.3 14.3h96.4a14.3 14.3 0 0 0 14.3-14.3V396.1A203.18 203.18 0 0 0 427.2 203zm-271.6 0c0-90.8 137.3-90.8 137.3 0-.1 89.9-137.3 91-137.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "spa": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5bb" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flora", + "massage", + "mindfulness", + "plant", + "wellness" + ] + }, + "unicode": "f5bb", + "label": "Spa", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M183.1 235.3c33.7 20.7 62.9 48.1 85.8 80.5c7 9.9 13.4 20.3 19.1 31c5.7-10.8 12.1-21.1 19.1-31c22.9-32.4 52.1-59.8 85.8-80.5C437.6 207.8 490.1 192 546 192h9.9c11.1 0 20.1 9 20.1 20.1C576 360.1 456.1 480 308.1 480H288 267.9C119.9 480 0 360.1 0 212.1C0 201 9 192 20.1 192H30c55.9 0 108.4 15.8 153.1 43.3zM301.5 37.6c15.7 16.9 61.1 71.8 84.4 164.6c-38 21.6-71.4 50.8-97.9 85.6c-26.5-34.8-59.9-63.9-97.9-85.6c23.2-92.8 68.6-147.7 84.4-164.6C278 33.9 282.9 32 288 32s10 1.9 13.5 5.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "space-awesome": { + "changes": [ + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "adventure", + "rocket", + "ship", + "shuttle" + ] + }, + "unicode": "e5ac", + "label": "Space Awesome", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 256H128V512H0V352H32V320H64V288H96V256zM512 352V512H384V256H416V288H448V320H480V352H512zM320 64H352V448H320V416H192V448H160V64H192V32H224V0H288V32H320V64zM288 128H224V192H288V128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "spaghetti-monster-flying": { + "aliases": { + "names": [ + "pastafarianism" + ], + "unicodes": { + "secondary": [ + "10f67b" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agnosticism", + "atheism", + "flying spaghetti monster", + "fsm" + ] + }, + "unicode": "f67b", + "label": "Spaghetti Monster Flying", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 64a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm48 0c0 16.2-6 31.1-16 42.3l15.6 31.2c18.7-6 39.9-9.5 64.4-9.5s45.8 3.5 64.4 9.5L400 106.3C390 95.1 384 80.2 384 64c0-35.3 28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64c-1.7 0-3.4-.1-5.1-.2L427.8 158c21.1 13.6 37.7 30.2 51.4 46.4c7.1 8.3 13.5 16.6 19.3 24l1.4 1.8c6.3 8.1 11.6 14.8 16.7 20.4C527.3 262.3 532.7 264 536 264c2.5 0 4.3-.6 7.1-3.3c3.7-3.5 7.1-8.8 12.5-17.4l.6-.9c4.6-7.4 11-17.6 19.4-25.7c9.7-9.3 22.9-16.7 40.4-16.7c13.3 0 24 10.7 24 24s-10.7 24-24 24c-2.5 0-4.3 .6-7.1 3.3c-3.7 3.5-7.1 8.8-12.5 17.4l-.6 .9c-4.6 7.4-11 17.6-19.4 25.7c-9.7 9.3-22.9 16.7-40.4 16.7c-18.5 0-32.9-8.5-44.3-18.6c-3.1 4-6.6 8.3-10.5 12.7c1.4 4.3 2.8 8.5 4 12.5c.9 3 1.8 5.8 2.6 8.6c3 9.8 5.5 18.2 8.6 25.9c3.9 9.8 7.4 15.4 10.8 18.5c2.6 2.4 5.9 4.3 12.8 4.3c8.7 0 16.9-4.2 33.7-13.2c15-8 35.7-18.8 62.3-18.8c13.3 0 24 10.7 24 24s-10.7 24-24 24c-13.4 0-24.7 5.2-39.7 13.2c-1 .6-2.1 1.1-3.2 1.7C559.9 414 541.4 424 520 424c-18.4 0-33.6-6.1-45.5-17.2c-11.1-10.3-17.9-23.7-22.7-36c-3.6-9-6.7-19.1-9.5-28.5c-16.4 12.3-36.1 23.6-58.9 31.3c3.6 10.8 8.4 23.5 14.4 36.2c7.5 15.9 16.2 30.4 25.8 40.5C433 460.5 441.2 464 448 464c13.3 0 24 10.7 24 24s-10.7 24-24 24c-25.2 0-45-13.5-59.5-28.8c-14.5-15.4-25.7-34.9-34.2-53c-8-17-14.1-33.8-18.3-46.9c-5.2 .4-10.6 .6-16 .6s-10.8-.2-16-.6c-4.2 13-10.3 29.9-18.3 46.9c-8.5 18.1-19.8 37.6-34.2 53C237 498.5 217.2 512 192 512c-13.3 0-24-10.7-24-24s10.7-24 24-24c6.8 0 15-3.5 24.5-13.7c9.5-10.1 18.3-24.6 25.8-40.5c5.9-12.6 10.7-25.4 14.4-36.2c-22.8-7.7-42.5-19-58.9-31.3c-2.9 9.4-6 19.5-9.5 28.5c-4.8 12.2-11.6 25.6-22.7 36C153.6 417.9 138.4 424 120 424c-21.4 0-39.9-10-53.1-17.1l0 0c-1.1-.6-2.2-1.2-3.2-1.7c-15-8-26.3-13.2-39.7-13.2c-13.3 0-24-10.7-24-24s10.7-24 24-24c26.6 0 47.3 10.8 62.3 18.8c16.8 9 25 13.2 33.7 13.2c6.8 0 10.2-1.9 12.8-4.3c3.4-3.2 7-8.8 10.8-18.5c3-7.7 5.6-16.1 8.6-25.9c.8-2.7 1.7-5.6 2.6-8.6c1.2-4 2.6-8.2 4-12.5c-3.9-4.5-7.4-8.8-10.5-12.7C136.9 303.5 122.5 312 104 312c-17.5 0-30.7-7.4-40.4-16.7c-8.4-8.1-14.8-18.3-19.4-25.7l-.6-.9c-5.4-8.6-8.8-13.9-12.5-17.4c-2.8-2.7-4.6-3.3-7.1-3.3c-13.3 0-24-10.7-24-24s10.7-24 24-24c17.5 0 30.7 7.4 40.4 16.7c8.4 8.1 14.8 18.3 19.4 25.7l.6 .9c5.4 8.6 8.8 13.9 12.5 17.4c2.8 2.7 4.6 3.3 7.1 3.3c3.3 0 8.7-1.7 19.4-13.4c5.1-5.6 10.4-12.3 16.7-20.4l1.4-1.8c5.8-7.4 12.2-15.7 19.3-24c13.8-16.2 30.3-32.8 51.4-46.4l-15.1-30.2c-1.7 .1-3.4 .2-5.1 .2c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zm208 0a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "speakap": { + "changes": [ + "5.0.0", + "5.4.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f3", + "label": "Speakap", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 391.78C-15.41 303.59-8 167.42 80.64 87.64s224.8-73 304.21 15.24 72 224.36-16.64 304.14c-18.74 16.87 64 43.09 42 52.26-82.06 34.21-253.91 35-346.23-67.5zm213.31-211.6l38.5-40.86c-9.61-8.89-32-26.83-76.17-27.6-52.33-.91-95.86 28.3-96.77 80-.2 11.33.29 36.72 29.42 54.83 34.46 21.42 86.52 21.51 86 52.26-.37 21.28-26.42 25.81-38.59 25.6-3-.05-30.23-.46-47.61-24.62l-40 42.61c28.16 27 59 32.62 83.49 33.05 10.23.18 96.42.33 97.84-81 .28-15.81-2.07-39.72-28.86-56.59-34.36-21.64-85-19.45-84.43-49.75.41-23.25 31-25.37 37.53-25.26.43 0 26.62.26 39.62 17.37z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "speaker-deck": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f83c", + "label": "Speaker Deck", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M213.86 296H100a100 100 0 0 1 0-200h132.84a40 40 0 0 1 0 80H98c-26.47 0-26.45 40 0 40h113.82a100 100 0 0 1 0 200H40a40 40 0 0 1 0-80h173.86c26.48 0 26.46-40 0-40zM298 416a120.21 120.21 0 0 0 51.11-80h64.55a19.83 19.83 0 0 0 19.66-20V196a19.83 19.83 0 0 0-19.66-20H296.42a60.77 60.77 0 0 0 0-80h136.93c43.44 0 78.65 35.82 78.65 80v160c0 44.18-35.21 80-78.65 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "spell-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f891" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dictionary", + "edit", + "editor", + "grammar", + "text" + ] + }, + "unicode": "f891", + "label": "Spell Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 0C99.1 0 87.4 7.8 82.5 19.7l-66.7 160-13.3 32c-6.8 16.3 .9 35 17.2 41.8s35-.9 41.8-17.2L66.7 224h90.7l5.1 12.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8l-13.3-32-66.7-160C136.6 7.8 124.9 0 112 0zm18.7 160H93.3L112 115.2 130.7 160zM256 32v96 96c0 17.7 14.3 32 32 32h80c44.2 0 80-35.8 80-80c0-23.1-9.8-43.8-25.4-58.4c6-11.2 9.4-24 9.4-37.6c0-44.2-35.8-80-80-80H288c-17.7 0-32 14.3-32 32zm96 64H320V64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-32 64h32 16c8.8 0 16 7.2 16 16s-7.2 16-16 16H320V160zM566.6 310.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L352 434.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l192-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "spider": { + "aliases": { + "unicodes": { + "composite": [ + "1f577" + ], + "secondary": [ + "10f717" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arachnid", + "bug", + "charlotte", + "crawl", + "eight", + "halloween", + "insect", + "spider" + ] + }, + "unicode": "f717", + "label": "Spider", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M158.4 32.6c4.8-12.4-1.4-26.3-13.8-31s-26.3 1.4-31 13.8L81.1 100c-7.9 20.7-3 44.1 12.7 59.7l57.4 57.4L70.8 190.3c-2.4-.8-4.3-2.7-5.1-5.1L46.8 128.4C42.6 115.8 29 109 16.4 113.2S-3 131 1.2 143.6l18.9 56.8c5.6 16.7 18.7 29.8 35.4 35.4L116.1 256 55.6 276.2c-16.7 5.6-29.8 18.7-35.4 35.4L1.2 368.4C-3 381 3.8 394.6 16.4 398.8s26.2-2.6 30.4-15.2l18.9-56.8c.8-2.4 2.7-4.3 5.1-5.1l80.4-26.8L93.7 352.3C78.1 368 73.1 391.4 81.1 412l32.5 84.6c4.8 12.4 18.6 18.5 31 13.8s18.5-18.6 13.8-31l-32.5-84.6c-1.1-3-.4-6.3 1.8-8.5L160 353.9c1 52.1 43.6 94.1 96 94.1s95-41.9 96-94.1l32.3 32.3c2.2 2.2 2.9 5.6 1.8 8.5l-32.5 84.6c-4.8 12.4 1.4 26.3 13.8 31s26.3-1.4 31-13.8L430.9 412c7.9-20.7 3-44.1-12.7-59.7l-57.4-57.4 80.4 26.8c2.4 .8 4.3 2.7 5.1 5.1l18.9 56.8c4.2 12.6 17.8 19.4 30.4 15.2s19.4-17.8 15.2-30.4l-18.9-56.8c-5.6-16.7-18.7-29.8-35.4-35.4L395.9 256l60.5-20.2c16.7-5.6 29.8-18.7 35.4-35.4l18.9-56.8c4.2-12.6-2.6-26.2-15.2-30.4s-26.2 2.6-30.4 15.2l-18.9 56.8c-.8 2.4-2.7 4.3-5.1 5.1l-80.4 26.8 57.4-57.4c15.6-15.6 20.6-39 12.7-59.7L398.4 15.4C393.6 3 379.8-3.2 367.4 1.6s-18.5 18.6-13.8 31l32.5 84.6c1.1 3 .4 6.3-1.8 8.5L336 174.1V160c0-31.8-18.6-59.3-45.5-72.2c-9.1-4.4-18.5 3.3-18.5 13.4V112c0 8.8-7.2 16-16 16s-16-7.2-16-16V101.2c0-10.1-9.4-17.7-18.5-13.4C194.6 100.7 176 128.2 176 160v14.1l-48.3-48.3c-2.2-2.2-2.9-5.6-1.8-8.5l32.5-84.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "spinner": { + "aliases": { + "unicodes": { + "secondary": [ + "10f110" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "circle", + "loading", + "progress" + ] + }, + "unicode": "f110", + "label": "Spinner", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321866, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M304 48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zm0 416c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM48 304c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm464-48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM142.9 437c18.7-18.7 18.7-49.1 0-67.9s-49.1-18.7-67.9 0s-18.7 49.1 0 67.9s49.1 18.7 67.9 0zm0-294.2c18.7-18.7 18.7-49.1 0-67.9S93.7 56.2 75 75s-18.7 49.1 0 67.9s49.1 18.7 67.9 0zM369.1 437c18.7 18.7 49.1 18.7 67.9 0s18.7-49.1 0-67.9s-49.1-18.7-67.9 0s-18.7 49.1 0 67.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "splotch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5bc" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Ink", + "blob", + "blotch", + "glob", + "stain" + ] + }, + "unicode": "f5bc", + "label": "Splotch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208.5 62.3l28.1-36.9C248.8 9.4 267.8 0 288 0c28.5 0 53.6 18.7 61.8 46l17.8 59.4c10.3 34.4 36.1 62 69.8 74.6l39.8 14.9c20.9 7.9 34.8 27.9 34.8 50.2c0 16.9-7.9 32.8-21.5 42.9l-67.3 50.5c-24.3 18.2-37.2 47.9-33.8 78.1l2.5 22.7c4.3 38.7-26 72.6-65 72.6c-14.8 0-29.3-5.1-40.9-14.3l-55.3-44.3c-4.5-3.6-9.3-6.7-14.5-9.2c-15.8-7.9-33.7-10.4-51-7.3L82.4 451.9C47.8 458.2 16 431.6 16 396.5c0-13.2 4.7-26 13.1-36.2l11.2-13.4c14.6-17.4 22.6-39.4 22.6-62.1c0-18.8-5.5-37.2-15.8-53L8.8 173.5C3.1 164.7 0 154.4 0 143.9c0-33.4 30.1-58.8 63-53.2l51.3 8.7c35.9 6.1 72.2-8.2 94.2-37.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "spoon": { + "aliases": { + "names": [ + "utensil-spoon" + ], + "unicodes": { + "composite": [ + "1f944", + "f1b1" + ], + "secondary": [ + "10f2e5" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cutlery", + "dining", + "scoop", + "silverware", + "spoon", + "tableware" + ] + }, + "unicode": "f2e5", + "label": "Spoon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M245.8 220.9c-14.5-17.6-21.8-39.2-21.8-60.8C224 80 320 0 416 0c53 0 96 43 96 96c0 96-80 192-160.2 192c-21.6 0-43.2-7.3-60.8-21.8L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L245.8 220.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "spotify": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1bc", + "label": "Spotify", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "spray-can": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5bd" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Paint", + "aerosol", + "design", + "graffiti", + "tag" + ] + }, + "unicode": "f5bd", + "label": "Spray Can", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 0h64c17.7 0 32 14.3 32 32v96H96V32c0-17.7 14.3-32 32-32zM0 256c0-53 43-96 96-96H224c53 0 96 43 96 96V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V256zm240 80A80 80 0 1 0 80 336a80 80 0 1 0 160 0zM256 64a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM384 32a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm64 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm32 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM448 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM384 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "spray-can-sparkles": { + "aliases": { + "names": [ + "air-freshener" + ], + "unicodes": { + "secondary": [ + "10f5d0" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "car", + "clean", + "deodorize", + "fresh", + "pine", + "scent" + ] + }, + "unicode": "f5d0", + "label": "Spray Can Sparkles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 32v96H224V32c0-17.7-14.3-32-32-32H128C110.3 0 96 14.3 96 32zm0 128c-53 0-96 43-96 96V464c0 26.5 21.5 48 48 48H272c26.5 0 48-21.5 48-48V256c0-53-43-96-96-96H96zm64 96a80 80 0 1 1 0 160 80 80 0 1 1 0-160zM384 48c0-1.4-1-3-2.2-3.6L352 32 339.6 2.2C339 1 337.4 0 336 0s-3 1-3.6 2.2L320 32 290.2 44.4C289 45 288 46.6 288 48c0 1.4 1 3 2.2 3.6L320 64l12.4 29.8C333 95 334.6 96 336 96s3-1 3.6-2.2L352 64l29.8-12.4C383 51 384 49.4 384 48zm76.4 45.8C461 95 462.6 96 464 96s3-1 3.6-2.2L480 64l29.8-12.4C511 51 512 49.4 512 48c0-1.4-1-3-2.2-3.6L480 32 467.6 2.2C467 1 465.4 0 464 0s-3 1-3.6 2.2L448 32 418.2 44.4C417 45 416 46.6 416 48c0 1.4 1 3 2.2 3.6L448 64l12.4 29.8zm7.2 100.4c-.6-1.2-2.2-2.2-3.6-2.2s-3 1-3.6 2.2L448 224l-29.8 12.4c-1.2 .6-2.2 2.2-2.2 3.6c0 1.4 1 3 2.2 3.6L448 256l12.4 29.8c.6 1.2 2.2 2.2 3.6 2.2s3-1 3.6-2.2L480 256l29.8-12.4c1.2-.6 2.2-2.2 2.2-3.6c0-1.4-1-3-2.2-3.6L480 224l-12.4-29.8zM448 144c0-1.4-1-3-2.2-3.6L416 128 403.6 98.2C403 97 401.4 96 400 96s-3 1-3.6 2.2L384 128l-29.8 12.4c-1.2 .6-2.2 2.2-2.2 3.6c0 1.4 1 3 2.2 3.6L384 160l12.4 29.8c.6 1.2 2.2 2.2 3.6 2.2s3-1 3.6-2.2L416 160l29.8-12.4c1.2-.6 2.2-2.2 2.2-3.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square": { + "aliases": { + "unicodes": { + "composite": [ + "25a0", + "25fb", + "25fc", + "f096" + ], + "secondary": [ + "10f0c8" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Square", + "black medium square", + "block", + "box", + "geometric", + "shape", + "square", + "white medium square" + ] + }, + "unicode": "f0c8", + "label": "Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321871, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96z" + }, + "regular": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 32C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H384zM384 80H64C55.16 80 48 87.16 48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-arrow-up-right": { + "aliases": { + "names": [ + "external-link-square" + ], + "unicodes": { + "secondary": [ + "10f14c" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "diagonal", + "new", + "open", + "send", + "share" + ] + }, + "unicode": "f14c", + "label": "Square Arrow Up Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384zM160 144c-13.3 0-24 10.7-24 24s10.7 24 24 24h94.1L119 327c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l135-135V328c0 13.3 10.7 24 24 24s24-10.7 24-24V168c0-13.3-10.7-24-24-24H160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-behance": { + "aliases": { + "names": [ + "behance-square" + ] + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.0.3", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1b5", + "label": "Behance Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-caret-down": { + "aliases": { + "names": [ + "caret-square-down" + ], + "unicodes": { + "secondary": [ + "10f150" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "caret-square-o-down", + "dropdown", + "expand", + "menu", + "more", + "triangle" + ] + }, + "unicode": "f150", + "label": "Square Caret Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 480c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0zM224 352c-6.7 0-13-2.8-17.6-7.7l-104-112c-6.5-7-8.2-17.2-4.4-25.9s12.5-14.4 22-14.4l208 0c9.5 0 18.2 5.7 22 14.4s2.1 18.9-4.4 25.9l-104 112c-4.5 4.9-10.9 7.7-17.6 7.7z" + }, + "regular": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 432c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0zm64-16c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320zM224 352c-6.7 0-13-2.8-17.6-7.7l-104-112c-6.5-7-8.2-17.2-4.4-25.9s12.5-14.4 22-14.4l208 0c9.5 0 18.2 5.7 22 14.4s2.1 18.9-4.4 25.9l-104 112c-4.5 4.9-10.9 7.7-17.6 7.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-caret-left": { + "aliases": { + "names": [ + "caret-square-left" + ], + "unicodes": { + "secondary": [ + "10f191" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "caret-square-o-left", + "previous", + "triangle" + ] + }, + "unicode": "f191", + "label": "Square Caret Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416zM128 256c0-6.7 2.8-13 7.7-17.6l112-104c7-6.5 17.2-8.2 25.9-4.4s14.4 12.5 14.4 22l0 208c0 9.5-5.7 18.2-14.4 22s-18.9 2.1-25.9-4.4l-112-104c-4.9-4.5-7.7-10.9-7.7-17.6z" + }, + "regular": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 416c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80c-8.8 0-16 7.2-16 16l0 320zm16 64c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480zm64-224c0-6.7 2.8-13 7.7-17.6l112-104c7-6.5 17.2-8.2 25.9-4.4s14.4 12.5 14.4 22l0 208c0 9.5-5.7 18.2-14.4 22s-18.9 2.1-25.9-4.4l-112-104c-4.9-4.5-7.7-10.9-7.7-17.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-caret-right": { + "aliases": { + "names": [ + "caret-square-right" + ], + "unicodes": { + "secondary": [ + "10f152" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "caret-square-o-right", + "forward", + "next", + "triangle" + ] + }, + "unicode": "f152", + "label": "Square Caret Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 96c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320zM320 256c0 6.7-2.8 13-7.7 17.6l-112 104c-7 6.5-17.2 8.2-25.9 4.4s-14.4-12.5-14.4-22l0-208c0-9.5 5.7-18.2 14.4-22s18.9-2.1 25.9 4.4l112 104c4.9 4.5 7.7 10.9 7.7 17.6z" + }, + "regular": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 96c0-8.8-7.2-16-16-16L64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320zM384 32c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l320 0zM320 256c0 6.7-2.8 13-7.7 17.6l-112 104c-7 6.5-17.2 8.2-25.9 4.4s-14.4-12.5-14.4-22l0-208c0-9.5 5.7-18.2 14.4-22s18.9-2.1 25.9 4.4l112 104c4.9 4.5 7.7 10.9 7.7 17.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-caret-up": { + "aliases": { + "names": [ + "caret-square-up" + ], + "unicodes": { + "secondary": [ + "10f151" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "caret-square-o-up", + "collapse", + "triangle", + "upload" + ] + }, + "unicode": "f151", + "label": "Square Caret Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM224 160c6.7 0 13 2.8 17.6 7.7l104 112c6.5 7 8.2 17.2 4.4 25.9s-12.5 14.4-22 14.4H120c-9.5 0-18.2-5.7-22-14.4s-2.1-18.9 4.4-25.9l104-112c4.5-4.9 10.9-7.7 17.6-7.7z" + }, + "regular": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80zM0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zm224 64c6.7 0 13 2.8 17.6 7.7l104 112c6.5 7 8.2 17.2 4.4 25.9s-12.5 14.4-22 14.4l-208 0c-9.5 0-18.2-5.7-22-14.4s-2.1-18.9 4.4-25.9l104-112c4.5-4.9 10.9-7.7 17.6-7.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-check": { + "aliases": { + "names": [ + "check-square" + ], + "unicodes": { + "composite": [ + "2611", + "2705", + "f046" + ], + "secondary": [ + "10f14a" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "box", + "button", + "check", + "check box with check", + "check mark button", + "checkmark", + "confirm", + "correct", + "done", + "mark", + "ok", + "select", + "success", + "tick", + "todo", + "yes", + "✓" + ] + }, + "unicode": "f14a", + "label": "Square Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321868, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + }, + "regular": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M211.8 339.8C200.9 350.7 183.1 350.7 172.2 339.8L108.2 275.8C97.27 264.9 97.27 247.1 108.2 236.2C119.1 225.3 136.9 225.3 147.8 236.2L192 280.4L300.2 172.2C311.1 161.3 328.9 161.3 339.8 172.2C350.7 183.1 350.7 200.9 339.8 211.8L211.8 339.8zM0 96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80H64C55.16 80 48 87.16 48 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-dribbble": { + "aliases": { + "names": [ + "dribbble-square" + ] + }, + "changes": [ + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f397", + "label": "Dribbble Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-envelope": { + "aliases": { + "names": [ + "envelope-square" + ], + "unicodes": { + "secondary": [ + "10f199" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "unicode": "f199", + "label": "Square Envelope", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM218 271.7L64.2 172.4C66 156.4 79.5 144 96 144H352c16.5 0 30 12.4 31.8 28.4L230 271.7c-1.8 1.2-3.9 1.8-6 1.8s-4.2-.6-6-1.8zm29.4 26.9L384 210.4V336c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V210.4l136.6 88.2c7 4.5 15.1 6.9 23.4 6.9s16.4-2.4 23.4-6.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-facebook": { + "aliases": { + "names": [ + "facebook-square" + ] + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.8.2", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "social network" + ] + }, + "unicode": "f082", + "label": "Facebook Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-font-awesome": { + "changes": [ + "5.0.0", + "5.0.1", + "6.0.0-beta1", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e5ad", + "label": "Font Awesome in Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384.5,32.5h-320c-35.3,0-64,28.7-64,64v320c0,35.3,28.7,64,64,64h320c35.3,0,64-28.7,64-64v-320 C448.5,61.2,419.8,32.5,384.5,32.5z M336.5,312.5c-31.6,11.2-41.2,16-59.8,16c-31.4,0-43.2-16-74.6-16c-10.2,0-18.2,1.6-25.6,4v-32 c7.4-2.2,15.4-4,25.6-4c31.2,0,43.2,16,74.6,16c10.2,0,17.8-1.4,27.8-4.6v-96c-10,3.2-17.6,4.6-27.8,4.6c-31.4,0-43.2-16-74.6-16 c-25.4,0-37.4,10.4-57.6,14.4v153.6c0,8.8-7.2,16-16,16c-8.8,0-16-7.2-16-16v-192c0-8.8,7.2-16,16-16c8.8,0,16,7.2,16,16v6.4 c20.2-4,32.2-14.4,57.6-14.4c31.2,0,43.2,16,74.6,16c18.6,0,28.2-4.8,59.8-16V312.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-font-awesome-stroke": { + "aliases": { + "names": [ + "font-awesome-alt" + ] + }, + "changes": [ + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f35c", + "label": "Font Awesome in Square with Stroke Outline", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M201.6,152c-25.4,0-37.4,10.4-57.6,14.4V160c0-8.8-7.2-16-16-16s-16,7.2-16,16v192c0,0.8,0.1,1.6,0.2,2.4 c0.1,0.4,0.1,0.8,0.2,1.2c1.6,7.1,8,12.4,15.6,12.4s14-5.3,15.6-12.4c0.1-0.4,0.2-0.8,0.2-1.2c0.1-0.8,0.2-1.6,0.2-2.4V198.4 c4-0.8,7.7-1.8,11.2-3c14.3-4.7,26-11.4,46.4-11.4c31.4,0,43.2,16,74.6,16c8.9,0,15.9-1.1,24.2-3.5c1.2-0.3,2.4-0.7,3.6-1.1v96 c-10,3.2-17.6,4.6-27.8,4.6c-31.4,0-43.4-16-74.6-16c-10.2,0-18.2,1.8-25.6,4v32c7.4-2.4,15.4-4,25.6-4c31.4,0,43.2,16,74.6,16 c18.6,0,28.2-4.8,59.8-16V152c-31.6,11.2-41.2,16-59.8,16C244.8,168,232.8,152,201.6,152z M384,32H64C28.7,32,0,60.7,0,96v320 c0,35.3,28.7,64,64,64h320c35.3,0,64-28.7,64-64V96C448,60.7,419.3,32,384,32z M416,416c0,17.6-14.4,32-32,32H64 c-17.6,0-32-14.4-32-32V96c0-17.6,14.4-32,32-32h320c17.6,0,32,14.4,32,32V416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-full": { + "aliases": { + "unicodes": { + "composite": [ + "1f7e5", + "1f7e6", + "1f7e7", + "1f7e8", + "1f7e9", + "1f7ea", + "1f7eb", + "2b1b", + "2b1c" + ], + "secondary": [ + "10f45c" + ] + } + }, + "changes": [ + "5.0.5", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "black large square", + "block", + "blue", + "blue square", + "box", + "brown", + "brown square", + "geometric", + "green", + "green square", + "orange", + "orange square", + "purple", + "purple square", + "red", + "red square", + "shape", + "square", + "white large square", + "yellow", + "yellow square" + ] + }, + "unicode": "f45c", + "label": "Square Full", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660014061, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 0H512V512H0V0z" + }, + "regular": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 0V512H0V0H512zM464 48H48V464H464V48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-git": { + "aliases": { + "names": [ + "git-square" + ] + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.8.2", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d2", + "label": "Git Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M100.59 334.24c48.57 3.31 58.95 2.11 58.95 11.94 0 20-65.55 20.06-65.55 1.52.01-5.09 3.29-9.4 6.6-13.46zm27.95-116.64c-32.29 0-33.75 44.47-.75 44.47 32.51 0 31.71-44.47.75-44.47zM448 80v352a48 48 0 0 1-48 48H48a48 48 0 0 1-48-48V80a48 48 0 0 1 48-48h352a48 48 0 0 1 48 48zm-227 69.31c0 14.49 8.38 22.88 22.86 22.88 14.74 0 23.13-8.39 23.13-22.88S258.62 127 243.88 127c-14.48 0-22.88 7.84-22.88 22.31zM199.18 195h-49.55c-25-6.55-81.56-4.85-81.56 46.75 0 18.8 9.4 32 21.85 38.11C74.23 294.23 66.8 301 66.8 310.6c0 6.87 2.79 13.22 11.18 16.76-8.9 8.4-14 14.48-14 25.92C64 373.35 81.53 385 127.52 385c44.22 0 69.87-16.51 69.87-45.73 0-36.67-28.23-35.32-94.77-39.38l8.38-13.43c17 4.74 74.19 6.23 74.19-42.43 0-11.69-4.83-19.82-9.4-25.67l23.38-1.78zm84.34 109.84l-13-1.78c-3.82-.51-4.07-1-4.07-5.09V192.52h-52.6l-2.79 20.57c15.75 5.55 17 4.86 17 10.17V298c0 5.62-.31 4.58-17 6.87v20.06h72.42zM384 315l-6.87-22.37c-40.93 15.37-37.85-12.41-37.85-16.73v-60.72h37.85v-25.41h-35.82c-2.87 0-2 2.52-2-38.63h-24.18c-2.79 27.7-11.68 38.88-34 41.42v22.62c20.47 0 19.82-.85 19.82 2.54v66.57c0 28.72 11.43 40.91 41.67 40.91 14.45 0 30.45-4.83 41.38-10.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-github": { + "aliases": { + "names": [ + "github-square" + ] + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "unicode": "f092", + "label": "GitHub Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-gitlab": { + "aliases": { + "names": [ + "gitlab-square" + ] + }, + "changes": [ + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e5ae", + "label": "Square Gitlab", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 32H400C426.5 32 448 53.5 448 80V432C448 458.5 426.5 480 400 480H48C21.5 480 0 458.5 0 432V80C0 53.5 21.5 32 48 32zM382.1 224.9L337.5 108.5C336.6 106.2 334.9 104.2 332.9 102.9C331.3 101.9 329.5 101.3 327.7 101.1C325.9 100.9 324 101.2 322.3 101.8C320.6 102.5 319 103.5 317.8 104.9C316.6 106.3 315.7 107.9 315.2 109.7L285 201.9H162.1L132.9 109.7C132.4 107.9 131.4 106.3 130.2 104.9C128.1 103.6 127.4 102.5 125.7 101.9C123.1 101.2 122.1 100.1 120.3 101.1C118.5 101.3 116.7 101.9 115.1 102.9C113.1 104.2 111.5 106.2 110.6 108.5L65.94 224.9L65.47 226.1C59.05 242.9 58.26 261.3 63.22 278.6C68.18 295.9 78.62 311.1 92.97 321.9L93.14 322L93.52 322.3L161.4 373.2L215.6 414.1C217.1 415.1 220.9 416.9 223.9 416.9C226.9 416.9 229.9 415.1 232.3 414.1L286.4 373.2L354.8 322L355 321.9C369.4 311 379.8 295.8 384.8 278.6C389.7 261.3 388.1 242.9 382.5 226.1L382.1 224.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-google-plus": { + "aliases": { + "names": [ + "google-plus-square" + ] + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "social network" + ] + }, + "unicode": "f0d4", + "label": "Google Plus Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-h": { + "aliases": { + "names": [ + "h-square" + ], + "unicodes": { + "secondary": [ + "10f0fd" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "emergency", + "hospital", + "hotel", + "letter", + "map" + ] + }, + "unicode": "f0fd", + "label": "Square H", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM336 152V256 360c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H160l0 80c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-208c0-13.3 10.7-24 24-24s24 10.7 24 24v80H288V152c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-hacker-news": { + "aliases": { + "names": [ + "hacker-news-square" + ] + }, + "changes": [ + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3af", + "label": "Hacker News Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-instagram": { + "aliases": { + "names": [ + "instagram-square" + ] + }, + "changes": [ + "5.12.1", + "5.14.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e055", + "label": "Instagram Square", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224,202.66A53.34,53.34,0,1,0,277.36,256,53.38,53.38,0,0,0,224,202.66Zm124.71-41a54,54,0,0,0-30.41-30.41c-21-8.29-71-6.43-94.3-6.43s-73.25-1.93-94.31,6.43a54,54,0,0,0-30.41,30.41c-8.28,21-6.43,71.05-6.43,94.33S91,329.26,99.32,350.33a54,54,0,0,0,30.41,30.41c21,8.29,71,6.43,94.31,6.43s73.24,1.93,94.3-6.43a54,54,0,0,0,30.41-30.41c8.35-21,6.43-71.05,6.43-94.33S357.1,182.74,348.75,161.67ZM224,338a82,82,0,1,1,82-82A81.9,81.9,0,0,1,224,338Zm85.38-148.3a19.14,19.14,0,1,1,19.13-19.14A19.1,19.1,0,0,1,309.42,189.74ZM400,32H48A48,48,0,0,0,0,80V432a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V80A48,48,0,0,0,400,32ZM382.88,322c-1.29,25.63-7.14,48.34-25.85,67s-41.4,24.63-67,25.85c-26.41,1.49-105.59,1.49-132,0-25.63-1.29-48.26-7.15-67-25.85s-24.63-41.42-25.85-67c-1.49-26.42-1.49-105.61,0-132,1.29-25.63,7.07-48.34,25.85-67s41.47-24.56,67-25.78c26.41-1.49,105.59-1.49,132,0,25.63,1.29,48.33,7.15,67,25.85s24.63,41.42,25.85,67.05C384.37,216.44,384.37,295.56,382.88,322Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-js": { + "aliases": { + "names": [ + "js-square" + ] + }, + "changes": [ + "5.0.0", + "5.0.3", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b9", + "label": "JavaScript (JS) Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-lastfm": { + "aliases": { + "names": [ + "lastfm-square" + ] + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.0.11", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f203", + "label": "last.fm Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-minus": { + "aliases": { + "names": [ + "minus-square" + ], + "unicodes": { + "composite": [ + "f147" + ], + "secondary": [ + "10f146" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "delete", + "hide", + "minify", + "negative", + "remove", + "shape", + "trash" + ] + }, + "unicode": "f146", + "label": "Square Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321869, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm88 200H296c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + }, + "regular": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M312 232C325.3 232 336 242.7 336 256C336 269.3 325.3 280 312 280H136C122.7 280 112 269.3 112 256C112 242.7 122.7 232 136 232H312zM0 96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80H64C55.16 80 48 87.16 48 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-nfi": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "non-food item", + "supplies" + ] + }, + "unicode": "e576", + "label": "Square Nfi", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm75.7 64.6C68.8 162.5 64 168.8 64 176V336c0 8.8 7.2 16 16 16s16-7.2 16-16V233.8l66.3 110.5c3.7 6.2 11.1 9.1 18 7.2s11.7-8.2 11.7-15.4V176c0-8.8-7.2-16-16-16s-16 7.2-16 16V278.2L93.7 167.8c-3.7-6.2-11.1-9.1-18-7.2zM224 176v64 96c0 8.8 7.2 16 16 16s16-7.2 16-16V256h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H256V192h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H240c-8.8 0-16 7.2-16 16zm160 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V336c0 8.8 7.2 16 16 16s16-7.2 16-16V176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-odnoklassniki": { + "aliases": { + "names": [ + "odnoklassniki-square" + ] + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f264", + "label": "Odnoklassniki Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-parking": { + "aliases": { + "names": [ + "parking" + ], + "unicodes": { + "composite": [ + "1f17f" + ], + "secondary": [ + "10f540" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "car", + "garage", + "meter", + "parking" + ] + }, + "unicode": "f540", + "label": "Square Parking", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM192 256h48c17.7 0 32-14.3 32-32s-14.3-32-32-32H192v64zm48 64H192v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 168c0-22.1 17.9-40 40-40h72c53 0 96 43 96 96s-43 96-96 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-pen": { + "aliases": { + "names": [ + "pen-square", + "pencil-square" + ], + "unicodes": { + "secondary": [ + "10f14b" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "pencil-square", + "update", + "write" + ] + }, + "unicode": "f14b", + "label": "Square Pen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM325.8 139.7l14.4 14.4c15.6 15.6 15.6 40.9 0 56.6l-21.4 21.4-71-71 21.4-21.4c15.6-15.6 40.9-15.6 56.6 0zM119.9 289L225.1 183.8l71 71L190.9 359.9c-4.1 4.1-9.2 7-14.9 8.4l-60.1 15c-5.5 1.4-11.2-.2-15.2-4.2s-5.6-9.7-4.2-15.2l15-60.1c1.4-5.6 4.3-10.8 8.4-14.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-person-confined": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "captivity", + "confined" + ] + }, + "unicode": "e577", + "label": "Square Person Confined", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm96 112a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm80 104c0-30.9 25.1-56 56-56s56 25.1 56 56V350.1c0 36.4-29.5 65.9-65.9 65.9c-17.5 0-34.3-6.9-46.6-19.3L184.8 342l-28.1 56.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l48-96c4.6-9.2 13.3-15.6 23.5-17.3s20.5 1.7 27.8 9L240 306.7V248z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-phone": { + "aliases": { + "names": [ + "phone-square" + ], + "unicodes": { + "secondary": [ + "10f098" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "support", + "telephone", + "voice" + ] + }, + "unicode": "f098", + "label": "Square Phone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm90.7 96.7c9.7-2.6 19.9 2.3 23.7 11.6l20 48c3.4 8.2 1 17.6-5.8 23.2L168 231.7c16.6 35.2 45.1 63.7 80.3 80.3l20.2-24.7c5.6-6.8 15-9.2 23.2-5.8l48 20c9.3 3.9 14.2 14 11.6 23.7l-12 44C336.9 378 329 384 320 384C196.3 384 96 283.7 96 160c0-9 6-16.9 14.7-19.3l44-12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-phone-flip": { + "aliases": { + "names": [ + "phone-square-alt" + ], + "unicodes": { + "secondary": [ + "10f87b" + ] + } + }, + "changes": [ + "5.9.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "support", + "telephone", + "voice" + ] + }, + "unicode": "f87b", + "label": "Square Phone Flip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384zm-90.7 96.7c-9.7-2.6-19.9 2.3-23.7 11.6l-20 48c-3.4 8.2-1 17.6 5.8 23.2L280 231.7c-16.6 35.2-45.1 63.7-80.3 80.3l-20.2-24.7c-5.6-6.8-15-9.2-23.2-5.8l-48 20c-9.3 3.9-14.2 14-11.6 23.7l12 44C111.1 378 119 384 128 384c123.7 0 224-100.3 224-224c0-9-6-16.9-14.7-19.3l-44-12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-pied-piper": { + "aliases": { + "names": [ + "pied-piper-square" + ] + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e01e", + "label": "Pied Piper Square Logo (Old)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-pinterest": { + "aliases": { + "names": [ + "pinterest-square" + ] + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f0d3", + "label": "Pinterest Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-plus": { + "aliases": { + "names": [ + "plus-square" + ], + "unicodes": { + "composite": [ + "f196" + ], + "secondary": [ + "10f0fe" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "expand", + "new", + "positive", + "shape" + ] + }, + "unicode": "f0fe", + "label": "Square Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321869, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM200 344V280H136c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V168c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H248v64c0 13.3-10.7 24-24 24s-24-10.7-24-24z" + }, + "regular": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M200 344V280H136C122.7 280 112 269.3 112 256C112 242.7 122.7 232 136 232H200V168C200 154.7 210.7 144 224 144C237.3 144 248 154.7 248 168V232H312C325.3 232 336 242.7 336 256C336 269.3 325.3 280 312 280H248V344C248 357.3 237.3 368 224 368C210.7 368 200 357.3 200 344zM0 96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80H64C55.16 80 48 87.16 48 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-poll-horizontal": { + "aliases": { + "names": [ + "poll-h" + ], + "unicodes": { + "secondary": [ + "10f682" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "graph", + "results", + "survey", + "trend", + "vote", + "voting" + ] + }, + "unicode": "f682", + "label": "Square Poll Horizontal", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 96c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320zM256 160c0 17.7-14.3 32-32 32l-96 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l96 0c17.7 0 32 14.3 32 32zm64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l192 0zM192 352c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l32 0c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-poll-vertical": { + "aliases": { + "names": [ + "poll" + ], + "unicodes": { + "secondary": [ + "10f681" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "graph", + "results", + "survey", + "trend", + "vote", + "voting" + ] + }, + "unicode": "f681", + "label": "Square Poll Vertical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 192c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V256c0-17.7 14.3-32 32-32zm64-64c0-17.7 14.3-32 32-32s32 14.3 32 32V352c0 17.7-14.3 32-32 32s-32-14.3-32-32V160zM320 288c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V320c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-reddit": { + "aliases": { + "names": [ + "reddit-square" + ] + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a2", + "label": "reddit Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-root-variable": { + "aliases": { + "names": [ + "square-root-alt" + ], + "unicodes": { + "secondary": [ + "10f698" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "calculus", + "division", + "math" + ] + }, + "unicode": "f698", + "label": "Square Root Variable", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M282.6 78.1c8-27.3 33-46.1 61.4-46.1H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H344L238.7 457c-3.6 12.3-14.1 21.2-26.8 22.8s-25.1-4.6-31.5-15.6L77.6 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H77.6c22.8 0 43.8 12.1 55.3 31.8l65.2 111.8L282.6 78.1zM393.4 233.4c12.5-12.5 32.8-12.5 45.3 0L480 274.7l41.4-41.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L525.3 320l41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L480 365.3l-41.4 41.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L434.7 320l-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-rss": { + "aliases": { + "names": [ + "rss-square" + ], + "unicodes": { + "secondary": [ + "10f143" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blog", + "feed", + "journal", + "news", + "writing" + ] + }, + "unicode": "f143", + "label": "Square Rss", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM96 136c0-13.3 10.7-24 24-24c137 0 248 111 248 248c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-110.5-89.5-200-200-200c-13.3 0-24-10.7-24-24zm0 96c0-13.3 10.7-24 24-24c83.9 0 152 68.1 152 152c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-57.4-46.6-104-104-104c-13.3 0-24-10.7-24-24zm0 120a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-share-nodes": { + "aliases": { + "names": [ + "share-alt-square" + ], + "unicodes": { + "secondary": [ + "10f1e1" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "unicode": "f1e1", + "label": "Square Share Nodes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321870, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM384 160c0 35.3-28.7 64-64 64c-15.4 0-29.5-5.4-40.6-14.5L194.1 256l85.3 46.5c11-9.1 25.2-14.5 40.6-14.5c35.3 0 64 28.7 64 64s-28.7 64-64 64s-64-28.7-64-64c0-2.5 .1-4.9 .4-7.3L174.5 300c-11.7 12.3-28.2 20-46.5 20c-35.3 0-64-28.7-64-64s28.7-64 64-64c18.3 0 34.8 7.7 46.5 20l81.9-44.7c-.3-2.4-.4-4.9-.4-7.3c0-35.3 28.7-64 64-64s64 28.7 64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-snapchat": { + "aliases": { + "names": [ + "snapchat-square" + ] + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2ad", + "label": "Snapchat Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384,32H64A64,64,0,0,0,0,96V416a64,64,0,0,0,64,64H384a64,64,0,0,0,64-64V96A64,64,0,0,0,384,32Zm-3.907,319.309-.083.1a32.364,32.364,0,0,1-8.717,6.823,90.26,90.26,0,0,1-20.586,8.2,12.694,12.694,0,0,0-3.852,1.76c-2.158,1.909-2.1,4.64-4.4,8.55a23.137,23.137,0,0,1-6.84,7.471c-6.707,4.632-14.244,4.923-22.23,5.23-7.214.274-15.39.581-24.729,3.669-3.761,1.245-7.753,3.694-12.377,6.533-11.265,6.9-26.68,16.353-52.3,16.353s-40.925-9.4-52.106-16.279c-4.657-2.888-8.675-5.362-12.543-6.64-9.339-3.08-17.516-3.4-24.729-3.67-7.986-.307-15.523-.6-22.231-5.229a23.085,23.085,0,0,1-6.01-6.11c-3.2-4.632-2.855-7.8-5.254-9.895a13.428,13.428,0,0,0-4.1-1.834,89.986,89.986,0,0,1-20.313-8.127,32.905,32.905,0,0,1-8.3-6.284c-6.583-6.757-8.276-14.776-5.686-21.824,3.436-9.338,11.571-12.111,19.4-16.262,14.776-8.027,26.348-18.055,34.433-29.884a68.236,68.236,0,0,0,5.985-10.567c.789-2.158.772-3.329.241-4.416a7.386,7.386,0,0,0-2.208-2.217c-2.532-1.676-5.113-3.353-6.882-4.5-3.27-2.141-5.868-3.818-7.529-4.98-6.267-4.383-10.65-9.04-13.4-14.245a28.4,28.4,0,0,1-1.369-23.584c4.134-10.924,14.469-17.706,26.978-17.706a37.141,37.141,0,0,1,7.845.83c.689.15,1.37.307,2.042.482-.108-7.43.058-15.357.722-23.119,2.358-27.261,11.912-41.589,21.874-52.994a86.836,86.836,0,0,1,22.28-17.931C188.254,100.383,205.312,96,224,96s35.828,4.383,50.944,13.016a87.169,87.169,0,0,1,22.239,17.9c9.961,11.406,19.516,25.709,21.874,52.995a231.194,231.194,0,0,1,.713,23.118c.673-.174,1.362-.332,2.051-.481a37.131,37.131,0,0,1,7.844-.83c12.5,0,22.82,6.782,26.971,17.706a28.37,28.37,0,0,1-1.4,23.559c-2.74,5.2-7.123,9.861-13.39,14.244-1.668,1.187-4.258,2.864-7.529,4.981-1.835,1.187-4.541,2.947-7.164,4.682a6.856,6.856,0,0,0-1.951,2.034c-.506,1.046-.539,2.191.166,4.208a69.015,69.015,0,0,0,6.085,10.792c8.268,12.1,20.188,22.313,35.454,30.407,1.486.772,2.98,1.5,4.441,2.258.722.332,1.569.763,2.491,1.3,4.9,2.723,9.2,6.01,11.455,12.153C387.821,336.915,386.269,344.7,380.093,351.309Zm-16.719-18.461c-50.313-24.314-58.332-61.918-58.689-64.749-.431-3.379-.921-6.035,2.806-9.472,3.594-3.328,19.541-13.19,23.965-16.278,7.33-5.114,10.534-10.219,8.16-16.495-1.66-4.316-5.686-5.976-9.961-5.976a18.5,18.5,0,0,0-3.993.448c-8.035,1.743-15.838,5.769-20.354,6.857a7.1,7.1,0,0,1-1.66.224c-2.408,0-3.279-1.071-3.088-3.968.564-8.783,1.759-25.925.373-41.937-1.884-22.032-8.99-32.948-17.432-42.6-4.051-4.624-23.135-24.654-59.536-24.654S168.53,134.359,164.479,139c-8.434,9.654-15.531,20.57-17.432,42.6-1.386,16.013-.141,33.147.373,41.937.166,2.756-.68,3.968-3.088,3.968a7.1,7.1,0,0,1-1.66-.224c-4.507-1.087-12.31-5.113-20.346-6.856a18.494,18.494,0,0,0-3.993-.449c-4.25,0-8.3,1.636-9.961,5.977-2.374,6.276.847,11.381,8.168,16.494,4.425,3.088,20.371,12.958,23.966,16.279,3.719,3.437,3.237,6.093,2.805,9.471-.356,2.79-8.384,40.394-58.689,64.749-2.946,1.428-7.96,4.45.88,9.331,13.88,7.628,23.111,6.807,30.3,11.43,6.093,3.927,2.5,12.394,6.923,15.449,5.454,3.76,21.583-.266,42.335,6.6,17.433,5.744,28.116,22.015,58.963,22.015s41.788-16.3,58.938-21.973c20.795-6.865,36.89-2.839,42.336-6.6,4.433-3.055.822-11.522,6.923-15.448,7.181-4.624,16.411-3.8,30.3-11.472C371.36,337.355,366.346,334.333,363.374,332.848Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-steam": { + "aliases": { + "names": [ + "steam-square" + ] + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1b7", + "label": "Steam Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-tumblr": { + "aliases": { + "names": [ + "tumblr-square" + ] + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f174", + "label": "Tumblr Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-twitter": { + "aliases": { + "names": [ + "twitter-square" + ] + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "social network", + "tweet" + ] + }, + "unicode": "f081", + "label": "Twitter Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-up-right": { + "aliases": { + "names": [ + "external-link-square-alt" + ], + "unicodes": { + "composite": [ + "2197" + ], + "secondary": [ + "10f360" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "diagonal", + "direction", + "external-link-square", + "intercardinal", + "new", + "northeast", + "open", + "share", + "up-right arrow" + ] + }, + "unicode": "f360", + "label": "Square Up Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384zM320 313.4V176c0-8.8-7.2-16-16-16H166.6c-12.5 0-22.6 10.1-22.6 22.6c0 6 2.4 11.8 6.6 16L184 232l-66.3 66.3C114 302 112 306.9 112 312s2 10 5.7 13.7l36.7 36.7c3.6 3.6 8.5 5.7 13.7 5.7s10-2 13.7-5.7L248 296l33.4 33.4c4.2 4.2 10 6.6 16 6.6c12.5 0 22.6-10.1 22.6-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-viadeo": { + "aliases": { + "names": [ + "viadeo-square" + ] + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.7.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2aa", + "label": "Viadeo Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-vimeo": { + "aliases": { + "names": [ + "vimeo-square" + ] + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f194", + "label": "Vimeo Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-virus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "coronavirus", + "covid-19", + "disease", + "flu", + "infection", + "pandemic" + ] + }, + "unicode": "e578", + "label": "Square Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM223.8 93.7c13.3 0 24 10.7 24 24c0 29.3 35.4 43.9 56.1 23.2c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9c-20.7 20.7-6 56.1 23.2 56.1c13.3 0 24 10.7 24 24s-10.7 24-24 24c-29.3 0-43.9 35.4-23.2 56.1c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0c-20.7-20.7-56.1-6-56.1 23.2c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-29.3-35.4-43.9-56.1-23.2c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9c20.7-20.7 6-56.1-23.2-56.1c-13.3 0-24-10.7-24-24s10.7-24 24-24c29.3 0 43.9-35.4 23.2-56.1c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0c20.7 20.7 56.1 6 56.1-23.2c0-13.3 10.7-24 24-24zM192 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm88 32a24 24 0 1 0 -48 0 24 24 0 1 0 48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-whatsapp": { + "aliases": { + "names": [ + "whatsapp-square" + ] + }, + "changes": [ + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f40c", + "label": "What's App Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-xing": { + "aliases": { + "names": [ + "xing-square" + ] + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f169", + "label": "Xing Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-xmark": { + "aliases": { + "names": [ + "times-square", + "xmark-square" + ], + "unicodes": { + "composite": [ + "274e" + ], + "secondary": [ + "10f2d3" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "close", + "cross", + "cross mark button", + "incorrect", + "mark", + "notice", + "notification", + "notify", + "problem", + "square", + "window", + "wrong", + "x", + "×" + ] + }, + "unicode": "f2d3", + "label": "Square Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321870, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm79 143c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-youtube": { + "aliases": { + "names": [ + "youtube-square" + ], + "unicodes": { + "composite": [ + "f166" + ] + } + }, + "changes": [ + "5.0.3", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f431", + "label": "YouTube Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "squarespace": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5be", + "label": "Squarespace", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M186.12 343.34c-9.65 9.65-9.65 25.29 0 34.94 9.65 9.65 25.29 9.65 34.94 0L378.24 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.95 445.1c19.27 19.29 50.53 19.31 69.82.04l.04-.04 119.25-119.24c38.59-38.59 38.59-101.14 0-139.72-38.59-38.59-101.15-38.59-139.72 0l-157.22 157.2zm244.53-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.18c-19.27 19.29-50.53 19.31-69.82.05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01.01c-9.65 9.64-9.66 25.28-.02 34.93l.02.02c38.58 38.57 101.14 38.57 139.72 0l157.2-157.2c9.65-9.65 9.65-25.29.01-34.93zm-261.99 87.33l157.18-157.18c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.72 290.93c-19.28 19.29-50.56 19.3-69.85.01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218.03 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02.02L28.93 186.14c-38.58 38.59-38.58 101.14 0 139.72 38.6 38.59 101.13 38.59 139.73.01zm-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.21-157.19c19.28-19.29 50.55-19.3 69.84-.02l.02.02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.13-38.59-139.72 0L81.33 238.54c-9.65 9.64-9.65 25.28-.01 34.93h.01z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stack-exchange": { + "changes": [ + "4.0.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f18d", + "label": "Stack Exchange", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stack-overflow": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f16c", + "label": "Stack Overflow", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M290.7 311L95 269.7 86.8 309l195.7 41zm51-87L188.2 95.7l-25.5 30.8 153.5 128.3zm-31.2 39.7L129.2 179l-16.7 36.5L293.7 300zM262 32l-32 24 119.3 160.3 32-24zm20.5 328h-200v39.7h200zm39.7 80H42.7V320h-40v160h359.5V320h-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stackpath": { + "changes": [ + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f842", + "label": "Stackpath", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M244.6 232.4c0 8.5-4.26 20.49-21.34 20.49h-19.61v-41.47h19.61c17.13 0 21.34 12.36 21.34 20.98zM448 32v448H0V32zM151.3 287.84c0-21.24-12.12-34.54-46.72-44.85-20.57-7.41-26-10.91-26-18.63s7-14.61 20.41-14.61c14.09 0 20.79 8.45 20.79 18.35h30.7l.19-.57c.5-19.57-15.06-41.65-51.12-41.65-23.37 0-52.55 10.75-52.55 38.29 0 19.4 9.25 31.29 50.74 44.37 17.26 6.15 21.91 10.4 21.91 19.48 0 15.2-19.13 14.23-19.47 14.23-20.4 0-25.65-9.1-25.65-21.9h-30.8l-.18.56c-.68 31.32 28.38 45.22 56.63 45.22 29.98 0 51.12-13.55 51.12-38.29zm125.38-55.63c0-25.3-18.43-45.46-53.42-45.46h-51.78v138.18h32.17v-47.36h19.61c30.25 0 53.42-15.95 53.42-45.36zM297.94 325L347 186.78h-31.09L268 325zm106.52-138.22h-31.09L325.46 325h29.94z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "staff-snake": { + "aliases": { + "names": [ + "rod-asclepius", + "rod-snake", + "staff-aesculapius" + ] + }, + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "asclepius", + "asklepian", + "health", + "serpent", + "wellness" + ] + }, + "unicode": "e579", + "label": "Staff Snake", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M222.6 43.2l-.2 4.8H288c53 0 96 43 96 96s-43 96-96 96H248V160h40c8.8 0 16-7.2 16-16s-7.2-16-16-16H248 220l-4.5 144H256c53 0 96 43 96 96s-43 96-96 96H240V384h16c8.8 0 16-7.2 16-16s-7.2-16-16-16H213l-3.1 99.5L208.5 495l0 1c-.3 8.9-7.6 16-16.5 16s-16.2-7.1-16.5-16l0-1-1-31H136c-22.1 0-40-17.9-40-40s17.9-40 40-40h36l-1-32H152c-53 0-96-43-96-96c0-47.6 34.6-87.1 80-94.7V256c0 8.8 7.2 16 16 16h16.5L164 128H136 122.6c-9 18.9-28.3 32-50.6 32H56c-30.9 0-56-25.1-56-56S25.1 48 56 48h8 8 89.5l-.1-4.8L161 32c0-.7 0-1.3 0-1.9c.5-16.6 14.1-30 31-30s30.5 13.4 31 30c0 .6 0 1.3 0 1.9l-.4 11.2zM64 112a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stairs": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exit", + "steps", + "up" + ] + }, + "unicode": "e289", + "label": "Stairs", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 64c0-17.7 14.3-32 32-32H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H448v96c0 17.7-14.3 32-32 32H320v96c0 17.7-14.3 32-32 32H192v96c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h96V320c0-17.7 14.3-32 32-32h96V192c0-17.7 14.3-32 32-32h96V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stamp": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5bf" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "certificate", + "imprint", + "rubber", + "seal" + ] + }, + "unicode": "f5bf", + "label": "Stamp", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M312 201.8c0-17.4 9.2-33.2 19.9-47C344.5 138.5 352 118.1 352 96c0-53-43-96-96-96s-96 43-96 96c0 22.1 7.5 42.5 20.1 58.8c10.7 13.8 19.9 29.6 19.9 47c0 29.9-24.3 54.2-54.2 54.2H112C50.1 256 0 306.1 0 368c0 20.9 13.4 38.7 32 45.3V464c0 26.5 21.5 48 48 48H432c26.5 0 48-21.5 48-48V413.3c18.6-6.6 32-24.4 32-45.3c0-61.9-50.1-112-112-112H366.2c-29.9 0-54.2-24.3-54.2-54.2zM416 416v32H96V416H416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stapler": { + "changes": [ + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "desktop", + "milton", + "office", + "paperclip", + "staple" + ] + }, + "unicode": "e5af", + "label": "Stapler", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 299.3V304 432c0 26.5-21.5 48-48 48H512 448 64c-17.7 0-32-14.3-32-32s14.3-32 32-32H448V368H96c-17.7 0-32-14.3-32-32V219.4L33.8 214C14.2 210.5 0 193.5 0 173.7c0-8.9 2.9-17.5 8.2-24.6l35.6-47.5C76.7 57.8 128.2 32 182.9 32c27 0 53.6 6.3 77.8 18.4L586.9 213.5C619.5 229.7 640 263 640 299.3zM448 304V288L128 230.9V304H448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "star": { + "aliases": { + "unicodes": { + "composite": [ + "2b50", + "f006" + ], + "secondary": [ + "10f005" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "favorite", + "important", + "night", + "rating", + "score", + "star" + ] + }, + "unicode": "f005", + "label": "Star", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321871, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z" + }, + "regular": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M287.9 0C297.1 0 305.5 5.25 309.5 13.52L378.1 154.8L531.4 177.5C540.4 178.8 547.8 185.1 550.7 193.7C553.5 202.4 551.2 211.9 544.8 218.2L433.6 328.4L459.9 483.9C461.4 492.9 457.7 502.1 450.2 507.4C442.8 512.7 432.1 513.4 424.9 509.1L287.9 435.9L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.9 115.1 483.9L142.2 328.4L31.11 218.2C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C270.4 5.249 278.7 0 287.9 0L287.9 0zM287.9 78.95L235.4 187.2C231.9 194.3 225.1 199.3 217.3 200.5L98.98 217.9L184.9 303C190.4 308.5 192.9 316.4 191.6 324.1L171.4 443.7L276.6 387.5C283.7 383.7 292.2 383.7 299.2 387.5L404.4 443.7L384.2 324.1C382.9 316.4 385.5 308.5 391 303L476.9 217.9L358.6 200.5C350.7 199.3 343.9 194.3 340.5 187.2L287.9 78.95z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "star-and-crescent": { + "aliases": { + "unicodes": { + "composite": [ + "262a" + ], + "secondary": [ + "10f699" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Muslim", + "islam", + "muslim", + "religion", + "star and crescent" + ] + }, + "unicode": "f699", + "label": "Star And Crescent", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256C0 114.6 114.6 0 256 0c33 0 64.6 6.3 93.6 17.7c7.4 2.9 11.5 10.7 9.8 18.4s-8.8 13-16.7 12.4c-4.8-.3-9.7-.5-14.6-.5c-114.9 0-208 93.1-208 208s93.1 208 208 208c4.9 0 9.8-.2 14.6-.5c7.9-.5 15 4.7 16.7 12.4s-2.4 15.5-9.8 18.4C320.6 505.7 289 512 256 512C114.6 512 0 397.4 0 256zM375.4 137.4c3.5-7.1 13.7-7.1 17.2 0l31.5 63.8c1.4 2.8 4.1 4.8 7.2 5.3l70.4 10.2c7.9 1.1 11 10.8 5.3 16.4l-50.9 49.6c-2.3 2.2-3.3 5.4-2.8 8.5l12 70.1c1.3 7.8-6.9 13.8-13.9 10.1l-63-33.1c-2.8-1.5-6.1-1.5-8.9 0l-63 33.1c-7 3.7-15.3-2.3-13.9-10.1l12-70.1c.5-3.1-.5-6.3-2.8-8.5L261 233.1c-5.7-5.6-2.6-15.2 5.3-16.4l70.4-10.2c3.1-.5 5.8-2.4 7.2-5.3l31.5-63.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "star-half": { + "aliases": { + "unicodes": { + "composite": [ + "f123" + ], + "secondary": [ + "10f089" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "rating", + "score", + "star-half-empty", + "star-half-full" + ] + }, + "unicode": "f089", + "label": "Star Half", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321871, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 0c-12.2 .1-23.3 7-28.6 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3L288 439.8V0zM429.9 512c1.1 .1 2.1 .1 3.2 0h-3.2z" + }, + "regular": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M293.3 .6123C304.2 3.118 311.9 12.82 311.9 24V408.7C311.9 417.5 307.1 425.7 299.2 429.8L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.1 115.1 483.9L142.2 328.4L31.11 218.3C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C271.2 3.46 282.4-1.893 293.3 .6127L293.3 .6123zM263.9 128.4L235.4 187.2C231.9 194.3 225.1 199.3 217.3 200.5L98.98 217.9L184.9 303C190.4 308.5 192.9 316.4 191.6 324.1L171.4 443.7L263.9 394.3L263.9 128.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "star-half-stroke": { + "aliases": { + "names": [ + "star-half-alt" + ], + "unicodes": { + "secondary": [ + "10f5c0" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "rating", + "score", + "star-half-empty", + "star-half-full" + ] + }, + "unicode": "f5c0", + "label": "Star Half Stroke", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321871, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 376.4l.1-.1 26.4 14.1 85.2 45.5-16.5-97.6-4.8-28.7 20.7-20.5 70.1-69.3-96.1-14.2-29.3-4.3-12.9-26.6L288.1 86.9l-.1 .3V376.4zm175.1 98.3c2 12-3 24.2-12.9 31.3s-23 8-33.8 2.3L288.1 439.8 159.8 508.3C149 514 135.9 513.1 126 506s-14.9-19.3-12.9-31.3L137.8 329 33.6 225.9c-8.6-8.5-11.7-21.2-7.9-32.7s13.7-19.9 25.7-21.7L195 150.3 259.4 18c5.4-11 16.5-18 28.8-18s23.4 7 28.8 18l64.3 132.3 143.6 21.2c12 1.8 22 10.2 25.7 21.7s.7 24.2-7.9 32.7L438.5 329l24.6 145.7z" + }, + "regular": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M378.1 154.8L531.4 177.5C540.4 178.8 547.8 185.1 550.7 193.7C553.5 202.4 551.2 211.9 544.8 218.2L433.6 328.4L459.9 483.9C461.4 492.9 457.7 502.1 450.2 507.4C442.8 512.7 432.1 513.4 424.9 509.1L287.9 435.9L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.9 115.1 483.9L142.2 328.4L31.11 218.2C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C270.4 5.249 278.7 0 287.9 0C297.1 0 305.5 5.25 309.5 13.52L378.1 154.8zM287.1 384.7C291.9 384.7 295.7 385.6 299.2 387.5L404.4 443.7L384.2 324.1C382.9 316.4 385.5 308.5 391 303L476.9 217.9L358.6 200.5C350.7 199.3 343.9 194.3 340.5 187.2L287.1 79.09L287.1 384.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "star-of-david": { + "aliases": { + "unicodes": { + "composite": [ + "2721" + ], + "secondary": [ + "10f69a" + ] + } + }, + "changes": [ + "5.3.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "David", + "Jew", + "Jewish", + "jewish", + "judaism", + "religion", + "star", + "star of David" + ] + }, + "unicode": "f69a", + "label": "Star Of David", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M388.2 309.5L367.1 344h42.3l-21.1-34.5zM355.4 256l-54-88H178.6l-54 88 54 88H301.4l54-88zm65.7 0l53.4 87c3.6 5.9 5.5 12.7 5.5 19.6c0 20.7-16.8 37.4-37.4 37.4H332.7l-56.2 91.5C268.8 504.3 254.9 512 240 512s-28.8-7.7-36.6-20.5L147.3 400H37.4C16.8 400 0 383.2 0 362.6c0-6.9 1.9-13.7 5.5-19.6l53.4-87L5.5 169C1.9 163.1 0 156.3 0 149.4C0 128.8 16.8 112 37.4 112H147.3l56.2-91.5C211.2 7.7 225.1 0 240 0s28.8 7.7 36.6 20.5L332.7 112H442.6c20.7 0 37.4 16.8 37.4 37.4c0 6.9-1.9 13.7-5.5 19.6l-53.4 87zm-54-88l21.1 34.5L409.4 168H367.1zM267 112L240 68l-27 44h54zM112.9 168H70.6l21.1 34.5L112.9 168zM91.8 309.5L70.6 344h42.3L91.8 309.5zM213 400l27 44 27-44H213z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "star-of-life": { + "aliases": { + "unicodes": { + "secondary": [ + "10f621" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "doctor", + "emt", + "first aid", + "health", + "medical" + ] + }, + "unicode": "f621", + "label": "Star Of Life", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M186 32c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V172.9l122-70.4c15.3-8.8 34.9-3.6 43.7 11.7l16 27.7c8.8 15.3 3.6 34.9-11.7 43.7L330 256l122 70.4c15.3 8.8 20.5 28.4 11.7 43.7l-16 27.7c-8.8 15.3-28.4 20.6-43.7 11.7L282 339.1V480c0 17.7-14.3 32-32 32H218c-17.7 0-32-14.3-32-32V339.1L64 409.6c-15.3 8.8-34.9 3.6-43.7-11.7l-16-27.7C-4.5 354.8 .7 335.3 16 326.4L138 256 16 185.6C.7 176.7-4.5 157.2 4.3 141.9l16-27.7C29.1 98.8 48.7 93.6 64 102.4l122 70.4V32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "staylinked": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f5", + "label": "StayLinked", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 440, + 512 + ], + "width": 440, + "height": 512, + "path": "M382.7 292.5l2.7 2.7-170-167.3c-3.5-3.5-9.7-3.7-13.8-.5L144.3 171c-4.2 3.2-4.6 8.7-1.1 12.2l68.1 64.3c3.6 3.5 9.9 3.7 14 .5l.1-.1c4.1-3.2 10.4-3 14 .5l84 81.3c3.6 3.5 3.2 9-.9 12.2l-93.2 74c-4.2 3.3-10.5 3.1-14.2-.4L63.2 268c-3.5-3.5-9.7-3.7-13.9-.5L3.5 302.4c-4.2 3.2-4.7 8.7-1.2 12.2L211 510.7s7.4 6.8 17.3-.8l198-163.9c4-3.2 4.4-8.7.7-12.2zm54.5-83.4L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7 171.7 165.1c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "steam": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1b6", + "label": "Steam", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "steam-symbol": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f6", + "label": "Steam Symbol", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sterling-sign": { + "aliases": { + "names": [ + "gbp", + "pound-sign" + ], + "unicodes": { + "composite": [ + "a3" + ], + "secondary": [ + "10f154" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pound Sign", + "currency" + ] + }, + "unicode": "f154", + "label": "Sterling Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M112 160.4c0-35.5 28.8-64.4 64.4-64.4c6.9 0 13.8 1.1 20.4 3.3l81.2 27.1c16.8 5.6 34.9-3.5 40.5-20.2s-3.5-34.9-20.2-40.5L217 38.6c-13.1-4.4-26.8-6.6-40.6-6.6C105.5 32 48 89.5 48 160.4V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v44.5c0 17.4-4.7 34.5-13.7 49.4L4.6 431.5c-5.9 9.9-6.1 22.2-.4 32.2S20.5 480 32 480H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H88.5l.7-1.1C104.1 390 112 361.5 112 332.5V288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V160.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stethoscope": { + "aliases": { + "unicodes": { + "composite": [ + "1fa7a" + ], + "secondary": [ + "10f0f1" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "diagnosis", + "doctor", + "general practitioner", + "heart", + "hospital", + "infirmary", + "medicine", + "office", + "outpatient", + "stethoscope" + ] + }, + "unicode": "f0f1", + "label": "Stethoscope", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M126.4 21.9c5.6 16.8-3.5 34.9-20.2 40.5L80 71.1V192c0 53 43 96 96 96s96-43 96-96V71.1l-26.1-8.7c-16.8-5.6-25.8-23.7-20.2-40.5s23.7-25.8 40.5-20.2l26.1 8.7C318.4 19.1 336 43.5 336 71.1V192c0 77.2-54.6 141.6-127.3 156.7C215 404.6 262.4 448 320 448c61.9 0 112-50.1 112-112V265.3c-28.3-12.3-48-40.5-48-73.3c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V336c0 97.2-78.8 176-176 176c-92.9 0-168.9-71.9-175.5-163.1C71.2 334.2 16 269.6 16 192V71.1c0-27.5 17.6-52 43.8-60.7L85.9 1.6c16.8-5.6 34.9 3.5 40.5 20.2zM464 224a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sticker-mule": { + "changes": [ + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f7", + "label": "Sticker Mule", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M561.7 199.6c-1.3.3.3 0 0 0zm-6.2-77.4c-7.7-22.3-5.1-7.2-13.4-36.9-1.6-6.5-3.6-14.5-6.2-20-4.4-8.7-4.6-7.5-4.6-9.5 0-5.3 30.7-45.3 19-46.9-5.7-.6-12.2 11.6-20.6 17-8.6 4.2-8 5-10.3 5-2.6 0-5.7-3-6.2-5-2-5.7 1.9-25.9-3.6-25.9-3.6 0-12.3 24.8-17 25.8-5.2 1.3-27.9-11.4-75.1 18-25.3 13.2-86.9 65.2-87 65.3-6.7 4.7-20 4.7-35.5 16-44.4 30.1-109.6 9.4-110.7 9-110.6-26.8-128-15.2-159 11.5-20.8 17.9-23.7 36.5-24.2 38.9-4.2 20.4 5.2 48.3 6.7 64.3 1.8 19.3-2.7 17.7 7.7 98.3.5 1 4.1 0 5.1 1.5 0 8.4-3.8 12.1-4.1 13-1.5 4.5-1.5 10.5 0 16 2.3 8.2 8.2 37.2 8.2 46.9 0 41.8.4 44 2.6 49.4 3.9 10 12.5 9.1 17 12 3.1 3.5-.5 8.5 1 12.5.5 2 3.6 4 6.2 5 9.2 3.6 27 .3 29.9-2.5 1.6-1.5.5-4.5 3.1-5 5.1 0 10.8-.5 14.4-2.5 5.1-2.5 4.1-6 1.5-10.5-.4-.8-7-13.3-9.8-16-2.1-2-5.1-3-7.2-4.5-5.8-4.9-10.3-19.4-10.3-19.5-4.6-19.4-10.3-46.3-4.1-66.8 4.6-17.2 39.5-87.7 39.6-87.8 4.1-6.5 17-11.5 27.3-7 6 1.9 19.3 22 65.4 30.9 47.9 8.7 97.4-2 112.2-2 2.8 2-1.9 13-.5 38.9 0 26.4-.4 13.7-4.1 29.9-2.2 9.7 3.4 23.2-1.5 46.9-1.4 9.8-9.9 32.7-8.2 43.4.5 1 1 2 1.5 3.5.5 4.5 1.5 8.5 4.6 10 7.3 3.6 12-3.5 9.8 11.5-.7 3.1-2.6 12 1.5 15 4.4 3.7 30.6 3.4 36.5.5 2.6-1.5 1.6-4.5 6.4-7.4 1.9-.9 11.3-.4 11.3-6.5.3-1.8-9.2-19.9-9.3-20-2.6-3.5-9.2-4.5-11.3-8-6.9-10.1-1.7-52.6.5-59.4 3-11 5.6-22.4 8.7-32.4 11-42.5 10.3-50.6 16.5-68.3.8-1.8 6.4-23.1 10.3-29.9 9.3-17 21.7-32.4 33.5-47.4 18-22.9 34-46.9 52-69.8 6.1-7 8.2-13.7 18-8 10.8 5.7 21.6 7 31.9 17 14.6 12.8 10.2 18.2 11.8 22.9 1.5 5 7.7 10.5 14.9 9.5 10.4-2 13-2.5 13.4-2.5 2.6-.5 5.7-5 7.2-8 3.1-5.5 7.2-9 7.2-16.5 0-7.7-.4-2.8-20.6-52.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stop": { + "aliases": { + "unicodes": { + "composite": [ + "23f9" + ], + "secondary": [ + "10f04d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "box", + "square", + "stop", + "stop button" + ] + }, + "unicode": "f04d", + "label": "Stop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H320c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stopwatch": { + "aliases": { + "unicodes": { + "composite": [ + "23f1" + ], + "secondary": [ + "10f2f2" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clock", + "reminder", + "stopwatch", + "time" + ] + }, + "unicode": "f2f2", + "label": "Stopwatch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h16V98.4C76.3 113.8 0 200 0 304C0 418.9 93.1 512 208 512s208-93.1 208-208c0-41.8-12.3-80.7-33.5-113.2l24.1-24.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L339.7 143c-28.1-23-62.2-38.8-99.7-44.6V64h16c17.7 0 32-14.3 32-32s-14.3-32-32-32H208 160zm72 192V320c0 13.3-10.7 24-24 24s-24-10.7-24-24V192c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stopwatch-20": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06f" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ABCs", + "countdown", + "covid-19", + "happy birthday", + "i will survive", + "reminder", + "seconds", + "time", + "timer" + ] + }, + "unicode": "e06f", + "label": "Stopwatch 20", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h16V98.4C76.3 113.8 0 200 0 304C0 418.9 93.1 512 208 512s208-93.1 208-208c0-41.8-12.3-80.7-33.5-113.2l24.1-24.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L339.7 143c-28.1-23-62.2-38.8-99.7-44.6V64h16c17.7 0 32-14.3 32-32s-14.3-32-32-32H160zM272 204c28.7 0 52 23.3 52 52v96c0 28.7-23.3 52-52 52s-52-23.3-52-52V256c0-28.7 23.3-52 52-52zm-12 52v96c0 6.6 5.4 12 12 12s12-5.4 12-12V256c0-6.6-5.4-12-12-12s-12 5.4-12 12zM143.5 244c-5.4 0-10.2 3.5-11.9 8.6l-.6 1.7c-3.5 10.5-14.8 16.1-25.3 12.6s-16.1-14.8-12.6-25.3l.6-1.7c7.2-21.5 27.2-35.9 49.8-35.9c29 0 52.5 23.5 52.5 52.5v2.2c0 13.4-4.9 26.4-13.8 36.4l-39 43.9c-6.2 7-10 15.7-10.9 24.9H176c11 0 20 9 20 20s-9 20-20 20H112c-11 0-20-9-20-20V368.3c0-20.6 7.5-40.4 21.2-55.8l39-43.9c2.4-2.7 3.7-6.2 3.7-9.8v-2.2c0-6.9-5.6-12.5-12.5-12.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "store": { + "aliases": { + "unicodes": { + "secondary": [ + "10f54e" + ] + } + }, + "changes": [ + "5.0.13", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bodega", + "building", + "buy", + "market", + "purchase", + "shopping", + "store" + ] + }, + "unicode": "f54e", + "label": "Store", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M531.6 103.8L474.3 13.1C469.2 5 460.1 0 450.4 0H93.6C83.9 0 74.8 5 69.7 13.1L12.3 103.8c-29.6 46.8-3.4 111.9 51.9 119.4c4 .5 8.1 .8 12.1 .8c26.1 0 49.3-11.4 65.2-29c15.9 17.6 39.1 29 65.2 29c26.1 0 49.3-11.4 65.2-29c15.9 17.6 39.1 29 65.2 29c26.2 0 49.3-11.4 65.2-29c16 17.6 39.1 29 65.2 29c4.1 0 8.1-.3 12.1-.8c55.5-7.4 81.8-72.5 52.1-119.4zM483.7 254.9l-.1 0c-5.3 .7-10.7 1.1-16.2 1.1c-12.4 0-24.3-1.9-35.4-5.3V384H112V250.6c-11.2 3.5-23.2 5.4-35.6 5.4c-5.5 0-11-.4-16.3-1.1l-.1 0c-4.1-.6-8.1-1.3-12-2.3V384v64c0 35.3 28.7 64 64 64H432c35.3 0 64-28.7 64-64V384 252.6c-4 1-8 1.8-12.3 2.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "store-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e071" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "buy", + "closed", + "covid-19", + "purchase", + "shopping" + ] + }, + "unicode": "e071", + "label": "Store Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-86.8-68V384 252.6c-4 1-8 1.8-12.3 2.3l-.1 0c-5.3 .7-10.7 1.1-16.2 1.1c-12.4 0-24.3-1.9-35.4-5.3V350.9L301.2 210.7c7-4.4 13.3-9.7 18.8-15.7c15.9 17.6 39.1 29 65.2 29c26.2 0 49.3-11.4 65.2-29c16 17.6 39.1 29 65.2 29c4.1 0 8.1-.3 12.1-.8c55.5-7.4 81.8-72.5 52.1-119.4L522.3 13.1C517.2 5 508.1 0 498.4 0H141.6c-9.7 0-18.8 5-23.9 13.1l-22.7 36L38.8 5.1zm73.4 218.1c4 .5 8.1 .8 12.1 .8c11 0 21.4-2 31-5.6L48.9 134.5c-6.1 40.6 19.5 82.8 63.3 88.7zM160 384V250.6c-11.2 3.5-23.2 5.4-35.6 5.4c-5.5 0-11-.4-16.3-1.1l-.1 0c-4.1-.6-8.1-1.3-12-2.3V384v64c0 35.3 28.7 64 64 64H480c12.9 0 24.8-3.8 34.9-10.3L365.5 384H160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "strava": { + "changes": [ + "5.0.0", + "5.0.1", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f428", + "label": "Strava", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M158.4 0L7 292h89.2l62.2-116.1L220.1 292h88.5zm150.2 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "street-view": { + "aliases": { + "unicodes": { + "secondary": [ + "10f21d" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "location", + "map", + "navigation" + ] + }, + "unicode": "f21d", + "label": "Street View", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M320 64A64 64 0 1 0 192 64a64 64 0 1 0 128 0zm-96 96c-35.3 0-64 28.7-64 64v48c0 17.7 14.3 32 32 32h1.8l11.1 99.5c1.8 16.2 15.5 28.5 31.8 28.5h38.7c16.3 0 30-12.3 31.8-28.5L318.2 304H320c17.7 0 32-14.3 32-32V224c0-35.3-28.7-64-64-64H224zM132.3 394.2c13-2.4 21.7-14.9 19.3-27.9s-14.9-21.7-27.9-19.3c-32.4 5.9-60.9 14.2-82 24.8c-10.5 5.3-20.3 11.7-27.8 19.6C6.4 399.5 0 410.5 0 424c0 21.4 15.5 36.1 29.1 45c14.7 9.6 34.3 17.3 56.4 23.4C130.2 504.7 190.4 512 256 512s125.8-7.3 170.4-19.6c22.1-6.1 41.8-13.8 56.4-23.4c13.7-8.9 29.1-23.6 29.1-45c0-13.5-6.4-24.5-14-32.6c-7.5-7.9-17.3-14.3-27.8-19.6c-21-10.6-49.5-18.9-82-24.8c-13-2.4-25.5 6.3-27.9 19.3s6.3 25.5 19.3 27.9c30.2 5.5 53.7 12.8 69 20.5c3.2 1.6 5.8 3.1 7.9 4.5c3.6 2.4 3.6 7.2 0 9.6c-8.8 5.7-23.1 11.8-43 17.3C374.3 457 318.5 464 256 464s-118.3-7-157.7-17.9c-19.9-5.5-34.2-11.6-43-17.3c-3.6-2.4-3.6-7.2 0-9.6c2.1-1.4 4.8-2.9 7.9-4.5c15.3-7.7 38.8-14.9 69-20.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "strikethrough": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0cc" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "edit", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f0cc", + "label": "Strikethrough", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M161.3 144c3.2-17.2 14-30.1 33.7-38.6c21.1-9 51.8-12.3 88.6-6.5c11.9 1.9 48.8 9.1 60.1 12c17.1 4.5 34.6-5.6 39.2-22.7s-5.6-34.6-22.7-39.2c-14.3-3.8-53.6-11.4-66.6-13.4c-44.7-7-88.3-4.2-123.7 10.9c-36.5 15.6-64.4 44.8-71.8 87.3c-.1 .6-.2 1.1-.2 1.7c-2.8 23.9 .5 45.6 10.1 64.6c4.5 9 10.2 16.9 16.7 23.9H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H270.1c-.1 0-.3-.1-.4-.1l-1.1-.3c-36-10.8-65.2-19.6-85.2-33.1c-9.3-6.3-15-12.6-18.2-19.1c-3.1-6.1-5.2-14.6-3.8-27.4zM348.9 337.2c2.7 6.5 4.4 15.8 1.9 30.1c-3 17.6-13.8 30.8-33.9 39.4c-21.1 9-51.7 12.3-88.5 6.5c-18-2.9-49.1-13.5-74.4-22.1c-5.6-1.9-11-3.7-15.9-5.4c-16.8-5.6-34.9 3.5-40.5 20.3s3.5 34.9 20.3 40.5c3.6 1.2 7.9 2.7 12.7 4.3l0 0 0 0c24.9 8.5 63.6 21.7 87.6 25.6l0 0 .2 0c44.7 7 88.3 4.2 123.7-10.9c36.5-15.6 64.4-44.8 71.8-87.3c3.6-21 2.7-40.4-3.1-58.1H335.1c7 5.6 11.4 11.2 13.9 17.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stripe": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f429", + "label": "Stripe", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M165 144.7l-43.3 9.2-.2 142.4c0 26.3 19.8 43.3 46.1 43.3 14.6 0 25.3-2.7 31.2-5.9v-33.8c-5.7 2.3-33.7 10.5-33.7-15.7V221h33.7v-37.8h-33.7zm89.1 51.6l-2.7-13.1H213v153.2h44.3V233.3c10.5-13.8 28.2-11.1 33.9-9.3v-40.8c-6-2.1-26.7-6-37.1 13.1zm92.3-72.3l-44.6 9.5v36.2l44.6-9.5zM44.9 228.3c0-6.9 5.8-9.6 15.1-9.7 13.5 0 30.7 4.1 44.2 11.4v-41.8c-14.7-5.8-29.4-8.1-44.1-8.1-36 0-60 18.8-60 50.2 0 49.2 67.5 41.2 67.5 62.4 0 8.2-7.1 10.9-17 10.9-14.7 0-33.7-6.1-48.6-14.2v40c16.5 7.1 33.2 10.1 48.5 10.1 36.9 0 62.3-15.8 62.3-47.8 0-52.9-67.9-43.4-67.9-63.4zM640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9zm-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7zm-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8zm-126.7 33.7h44.6V183.2h-44.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stripe-s": { + "changes": [ + "5.0.1", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42a", + "label": "Stripe S", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M155.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C298.3 7.2 251.1 0 203.8 0 88.1 0 11 60.4 11 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5a396.09 396.09 0 0 0 156 32.4c118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stroopwafel": { + "aliases": { + "unicodes": { + "secondary": [ + "10f551" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caramel", + "cookie", + "dessert", + "sweets", + "waffle" + ] + }, + "unicode": "f551", + "label": "Stroopwafel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM312.6 63.7c-6.2-6.2-16.4-6.2-22.6 0L256 97.6 222.1 63.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l33.9 33.9-45.3 45.3-56.6-56.6c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l56.6 56.6-45.3 45.3L86.3 199.4c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L97.6 256 63.7 289.9c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l33.9-33.9 45.3 45.3-56.6 56.6c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l56.6-56.6 45.3 45.3-33.9 33.9c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L256 414.4l33.9 33.9c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-33.9-33.9 45.3-45.3 56.6 56.6c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-56.6-56.6 45.3-45.3 33.9 33.9c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L414.4 256l33.9-33.9c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0l-33.9 33.9-45.3-45.3 56.6-56.6c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0l-56.6 56.6-45.3-45.3 33.9-33.9c6.2-6.2 6.2-16.4 0-22.6zM142.9 256l45.3-45.3L233.4 256l-45.3 45.3L142.9 256zm67.9 67.9L256 278.6l45.3 45.3L256 369.1l-45.3-45.3zM278.6 256l45.3-45.3L369.1 256l-45.3 45.3L278.6 256zm22.6-67.9L256 233.4l-45.3-45.3L256 142.9l45.3 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stubber": { + "changes": [ + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e5c7", + "label": "Stubber", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1667828915, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M136.5 294.2l58.8 22.9c9.1-36.8 25.4-61.1 55-61.1c49.4 0 71.4 63.6 142.4 63.6c15.6 0 35.9-2.8 55.3-13.3V368c0 61.8-50.4 112-112.3 112H0l41.8-56L0 368l41.7-56L0 256.1l41.8-56L0 144.1 41.8 88 0 32H335.7C397.6 32 448 82.3 448 144.1v51.3c-9.2 36.3-25.9 60.6-55 60.6c-49.6 0-71.6-63.5-142.4-63.5c-35.9 0-95.2 14.6-114.1 101.6h0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "studiovinari": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f8", + "label": "Studio Vinari", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stumbleupon": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a4", + "label": "StumbleUpon Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stumbleupon-circle": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a3", + "label": "StumbleUpon Circle", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "subscript": { + "aliases": { + "unicodes": { + "secondary": [ + "10f12c" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f12c", + "label": "Subscript", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 64C14.3 64 0 78.3 0 96s14.3 32 32 32H47.3l89.6 128L47.3 384H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64c10.4 0 20.2-5.1 26.2-13.6L176 311.8l85.8 122.6c6 8.6 15.8 13.6 26.2 13.6h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H304.7L215.1 256l89.6-128H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H288c-10.4 0-20.2 5.1-26.2 13.6L176 200.2 90.2 77.6C84.2 69.1 74.4 64 64 64H32zM480 320c0-11.1-5.7-21.4-15.2-27.2s-21.2-6.4-31.1-1.4l-32 16c-15.8 7.9-22.2 27.1-14.3 42.9C393 361.5 404.3 368 416 368v80c-17.7 0-32 14.3-32 32s14.3 32 32 32h32 32c17.7 0 32-14.3 32-32s-14.3-32-32-32V320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "suitcase": { + "aliases": { + "unicodes": { + "composite": [ + "1f9f3" + ], + "secondary": [ + "10f0f2" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baggage", + "luggage", + "move", + "packing", + "suitcase", + "travel", + "trip" + ] + }, + "unicode": "f0f2", + "label": "Suitcase", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 56V96H336V56c0-4.4-3.6-8-8-8H184c-4.4 0-8 3.6-8 8zM128 96V56c0-30.9 25.1-56 56-56H328c30.9 0 56 25.1 56 56V96v32V480H128V128 96zM64 96H96V480H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64zM448 480H416V96h32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "suitcase-medical": { + "aliases": { + "names": [ + "medkit" + ], + "unicodes": { + "secondary": [ + "10f0fa" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "first aid", + "firstaid", + "health", + "help", + "medical", + "supply", + "support" + ] + }, + "unicode": "f0fa", + "label": "Suitcase Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96v32V480H384V128 96 56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zM96 96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H96V96zM416 480h32c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H416V480zM224 208c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H288v48c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V320H176c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h48V208z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "suitcase-rolling": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5c1" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baggage", + "luggage", + "move", + "suitcase", + "travel", + "trip" + ] + }, + "unicode": "f5c1", + "label": "Suitcase Rolling", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M144 56c0-4.4 3.6-8 8-8h80c4.4 0 8 3.6 8 8v72H144V56zm176 72H288V56c0-30.9-25.1-56-56-56H152C121.1 0 96 25.1 96 56v72H64c-35.3 0-64 28.7-64 64V416c0 35.3 28.7 64 64 64c0 17.7 14.3 32 32 32s32-14.3 32-32H256c0 17.7 14.3 32 32 32s32-14.3 32-32c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64zM112 224H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 128H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sun": { + "aliases": { + "unicodes": { + "composite": [ + "2600" + ], + "secondary": [ + "10f185" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bright", + "brighten", + "contrast", + "day", + "lighter", + "rays", + "sol", + "solar", + "star", + "sun", + "sunny", + "weather" + ] + }, + "unicode": "f185", + "label": "Sun", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M361.5 1.2c5 2.1 8.6 6.6 9.6 11.9L391 121l107.9 19.8c5.3 1 9.8 4.6 11.9 9.6s1.5 10.7-1.6 15.2L446.9 256l62.3 90.3c3.1 4.5 3.7 10.2 1.6 15.2s-6.6 8.6-11.9 9.6L391 391 371.1 498.9c-1 5.3-4.6 9.8-9.6 11.9s-10.7 1.5-15.2-1.6L256 446.9l-90.3 62.3c-4.5 3.1-10.2 3.7-15.2 1.6s-8.6-6.6-9.6-11.9L121 391 13.1 371.1c-5.3-1-9.8-4.6-11.9-9.6s-1.5-10.7 1.6-15.2L65.1 256 2.8 165.7c-3.1-4.5-3.7-10.2-1.6-15.2s6.6-8.6 11.9-9.6L121 121 140.9 13.1c1-5.3 4.6-9.8 9.6-11.9s10.7-1.5 15.2 1.6L256 65.1 346.3 2.8c4.5-3.1 10.2-3.7 15.2-1.6zM160 256a96 96 0 1 1 192 0 96 96 0 1 1 -192 0zm224 0a128 128 0 1 0 -256 0 128 128 0 1 0 256 0z" + }, + "regular": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M375.7 19.7c-1.5-8-6.9-14.7-14.4-17.8s-16.1-2.2-22.8 2.4L256 61.1 173.5 4.2c-6.7-4.6-15.3-5.5-22.8-2.4s-12.9 9.8-14.4 17.8l-18.1 98.5L19.7 136.3c-8 1.5-14.7 6.9-17.8 14.4s-2.2 16.1 2.4 22.8L61.1 256 4.2 338.5c-4.6 6.7-5.5 15.3-2.4 22.8s9.8 13 17.8 14.4l98.5 18.1 18.1 98.5c1.5 8 6.9 14.7 14.4 17.8s16.1 2.2 22.8-2.4L256 450.9l82.5 56.9c6.7 4.6 15.3 5.5 22.8 2.4s12.9-9.8 14.4-17.8l18.1-98.5 98.5-18.1c8-1.5 14.7-6.9 17.8-14.4s2.2-16.1-2.4-22.8L450.9 256l56.9-82.5c4.6-6.7 5.5-15.3 2.4-22.8s-9.8-12.9-17.8-14.4l-98.5-18.1L375.7 19.7zM269.6 110l65.6-45.2 14.4 78.3c1.8 9.8 9.5 17.5 19.3 19.3l78.3 14.4L402 242.4c-5.7 8.2-5.7 19 0 27.2l45.2 65.6-78.3 14.4c-9.8 1.8-17.5 9.5-19.3 19.3l-14.4 78.3L269.6 402c-8.2-5.7-19-5.7-27.2 0l-65.6 45.2-14.4-78.3c-1.8-9.8-9.5-17.5-19.3-19.3L64.8 335.2 110 269.6c5.7-8.2 5.7-19 0-27.2L64.8 176.8l78.3-14.4c9.8-1.8 17.5-9.5 19.3-19.3l14.4-78.3L242.4 110c8.2 5.7 19 5.7 27.2 0zM256 368a112 112 0 1 0 0-224 112 112 0 1 0 0 224zM192 256a64 64 0 1 1 128 0 64 64 0 1 1 -128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "sun-plant-wilt": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arid", + "droop", + "drought" + ] + }, + "unicode": "e57a", + "label": "Sun Plant Wilt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M160 0c-6.3 0-12 3.7-14.6 9.5L120.6 64.9 63.9 43.2c-5.9-2.3-12.6-.8-17 3.6s-5.9 11.1-3.6 17l21.7 56.7L9.5 145.4C3.7 148 0 153.7 0 160s3.7 12 9.5 14.6l55.4 24.8L43.2 256.1c-2.3 5.9-.8 12.6 3.6 17s11.1 5.9 17 3.6l56.7-21.7 24.8 55.4c2.6 5.8 8.3 9.5 14.6 9.5s12-3.7 14.6-9.5l24.8-55.4 56.7 21.7c5.9 2.3 12.6 .8 17-3.6s5.9-11.1 3.6-17l-21.7-56.7 55.4-24.8c5.8-2.6 9.5-8.3 9.5-14.6s-3.7-12-9.5-14.6l-55.4-24.8 21.7-56.7c2.3-5.9 .8-12.6-3.6-17s-11.1-5.9-17-3.6L199.4 64.9 174.6 9.5C172 3.7 166.3 0 160 0zm0 96a64 64 0 1 1 0 128 64 64 0 1 1 0-128zm32 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm312 16c0-17.7 14.3-32 32-32s32 14.3 32 32v53.4c-14.8 7.7-24 23.1-24 44.6c0 16.8 16 44 37.4 67.2c5.8 6.2 15.5 6.2 21.2 0C624 318 640 290.7 640 274c0-21.5-9.2-37-24-44.6V176c0-44.2-35.8-80-80-80s-80 35.8-80 80v22.7c-9.8-4.3-20.6-6.7-32-6.7c-44.2 0-80 35.8-80 80v21.4c-14.8 7.7-24 23.1-24 44.6c0 16.8 16 44 37.4 67.2c5.8 6.2 15.5 6.2 21.2 0C400 382 416 354.7 416 338c0-21.5-9.2-37-24-44.6V272c0-17.7 14.3-32 32-32s32 14.3 32 32v8V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H504V280v-8V176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "superpowers": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2dd", + "label": "Superpowers", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "superscript": { + "aliases": { + "unicodes": { + "secondary": [ + "10f12b" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "exponential", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f12b", + "label": "Superscript", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480 32c0-11.1-5.7-21.4-15.2-27.2s-21.2-6.4-31.1-1.4l-32 16c-15.8 7.9-22.2 27.1-14.3 42.9C393 73.5 404.3 80 416 80v80c-17.7 0-32 14.3-32 32s14.3 32 32 32h32 32c17.7 0 32-14.3 32-32s-14.3-32-32-32V32zM32 64C14.3 64 0 78.3 0 96s14.3 32 32 32H47.3l89.6 128L47.3 384H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64c10.4 0 20.2-5.1 26.2-13.6L176 311.8l85.8 122.6c6 8.6 15.8 13.6 26.2 13.6h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H304.7L215.1 256l89.6-128H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H288c-10.4 0-20.2 5.1-26.2 13.6L176 200.2 90.2 77.6C84.2 69.1 74.4 64 64 64H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "supple": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f9", + "label": "Supple", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "suse": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "unicode": "f7d6", + "label": "Suse", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M471.08 102.66s-.3 18.3-.3 20.3c-9.1-3-74.4-24.1-135.7-26.3-51.9-1.8-122.8-4.3-223 57.3-19.4 12.4-73.9 46.1-99.6 109.7C7 277-.12 307 7 335.06a111 111 0 0 0 16.5 35.7c17.4 25 46.6 41.6 78.1 44.4 44.4 3.9 78.1-16 90-53.3 8.2-25.8 0-63.6-31.5-82.9-25.6-15.7-53.3-12.1-69.2-1.6-13.9 9.2-21.8 23.5-21.6 39.2.3 27.8 24.3 42.6 41.5 42.6a49 49 0 0 0 15.8-2.7c6.5-1.8 13.3-6.5 13.3-14.9 0-12.1-11.6-14.8-16.8-13.9-2.9.5-4.5 2-11.8 2.4-2-.2-12-3.1-12-14V316c.2-12.3 13.2-18 25.5-16.9 32.3 2.8 47.7 40.7 28.5 65.7-18.3 23.7-76.6 23.2-99.7-20.4-26-49.2 12.7-111.2 87-98.4 33.2 5.7 83.6 35.5 102.4 104.3h45.9c-5.7-17.6-8.9-68.3 42.7-68.3 56.7 0 63.9 39.9 79.8 68.3H460c-12.8-18.3-21.7-38.7-18.9-55.8 5.6-33.8 39.7-18.4 82.4-17.4 66.5.4 102.1-27 103.1-28 3.7-3.1 6.5-15.8 7-17.7 1.3-5.1-3.2-2.4-3.2-2.4-8.7 5.2-30.5 15.2-50.9 15.6-25.3.5-76.2-25.4-81.6-28.2-.3-.4.1 1.2-11-25.5 88.4 58.3 118.3 40.5 145.2 21.7.8-.6 4.3-2.9 3.6-5.7-13.8-48.1-22.4-62.7-34.5-69.6-37-21.6-125-34.7-129.2-35.3.1-.1-.9-.3-.9.7zm60.4 72.8a37.54 37.54 0 0 1 38.9-36.3c33.4 1.2 48.8 42.3 24.4 65.2-24.2 22.7-64.4 4.6-63.3-28.9zm38.6-25.3a26.27 26.27 0 1 0 25.4 27.2 26.19 26.19 0 0 0-25.4-27.2zm4.3 28.8c-15.4 0-15.4-15.6 0-15.6s15.4 15.64 0 15.64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "swatchbook": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5c3" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pantone", + "color", + "design", + "hue", + "palette" + ] + }, + "unicode": "f5c3", + "label": "Swatchbook", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H160c17.7 0 32 14.3 32 32V416c0 53-43 96-96 96s-96-43-96-96V32zM223.6 425.9c.3-3.3 .4-6.6 .4-9.9V154l75.4-75.4c12.5-12.5 32.8-12.5 45.3 0l90.5 90.5c12.5 12.5 12.5 32.8 0 45.3L223.6 425.9zM182.8 512l192-192H480c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H182.8zM128 64H64v64h64V64zM64 192v64h64V192H64zM96 440a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "swift": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f8e1", + "label": "Swift", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 156.09c0-4.51-.08-9-.2-13.52a196.31 196.31 0 0 0-2.58-29.42 99.62 99.62 0 0 0-9.22-28A94.08 94.08 0 0 0 394.84 44a99.17 99.17 0 0 0-28-9.22 195 195 0 0 0-29.43-2.59c-4.51-.12-9-.17-13.52-.2H124.14c-4.51 0-9 .08-13.52.2-2.45.07-4.91.15-7.37.27a171.68 171.68 0 0 0-22.06 2.32 103.06 103.06 0 0 0-21.21 6.1q-3.46 1.45-6.81 3.12a94.66 94.66 0 0 0-18.39 12.32c-1.88 1.61-3.69 3.28-5.43 5A93.86 93.86 0 0 0 12 85.17a99.45 99.45 0 0 0-9.22 28 196.31 196.31 0 0 0-2.54 29.4c-.13 4.51-.18 9-.21 13.52v199.83c0 4.51.08 9 .21 13.51a196.08 196.08 0 0 0 2.58 29.42 99.3 99.3 0 0 0 9.22 28A94.31 94.31 0 0 0 53.17 468a99.47 99.47 0 0 0 28 9.21 195 195 0 0 0 29.43 2.59c4.5.12 9 .17 13.52.2H323.91c4.51 0 9-.08 13.52-.2a196.59 196.59 0 0 0 29.44-2.59 99.57 99.57 0 0 0 28-9.21A94.22 94.22 0 0 0 436 426.84a99.3 99.3 0 0 0 9.22-28 194.79 194.79 0 0 0 2.59-29.42c.12-4.5.17-9 .2-13.51V172.14c-.01-5.35-.01-10.7-.01-16.05zm-69.88 241c-20-38.93-57.23-29.27-76.31-19.47-1.72 1-3.48 2-5.25 3l-.42.25c-39.5 21-92.53 22.54-145.85-.38A234.64 234.64 0 0 1 45 290.12a230.63 230.63 0 0 0 39.17 23.37c56.36 26.4 113 24.49 153 0-57-43.85-104.6-101-141.09-147.22a197.09 197.09 0 0 1-18.78-25.9c43.7 40 112.7 90.22 137.48 104.12-52.57-55.49-98.89-123.94-96.72-121.74 82.79 83.42 159.18 130.59 159.18 130.59 2.88 1.58 5 2.85 6.73 4a127.44 127.44 0 0 0 4.16-12.47c13.22-48.33-1.66-103.58-35.31-149.2C329.61 141.75 375 229.34 356.4 303.42c-.44 1.73-.95 3.4-1.44 5.09 38.52 47.4 28.04 98.17 23.13 88.59z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "symfony": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f83d", + "label": "Symfony", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm133.74 143.54c-11.47.41-19.4-6.45-19.77-16.87-.27-9.18 6.68-13.44 6.53-18.85-.23-6.55-10.16-6.82-12.87-6.67-39.78 1.29-48.59 57-58.89 113.85 21.43 3.15 36.65-.72 45.14-6.22 12-7.75-3.34-15.72-1.42-24.56 4-18.16 32.55-19 32 5.3-.36 17.86-25.92 41.81-77.6 35.7-10.76 59.52-18.35 115-58.2 161.72-29 34.46-58.4 39.82-71.58 40.26-24.65.85-41-12.31-41.58-29.84-.56-17 14.45-26.26 24.31-26.59 21.89-.75 30.12 25.67 14.88 34-12.09 9.71.11 12.61 2.05 12.55 10.42-.36 17.34-5.51 22.18-9 24-20 33.24-54.86 45.35-118.35 8.19-49.66 17-78 18.23-82-16.93-12.75-27.08-28.55-49.85-34.72-15.61-4.23-25.12-.63-31.81 7.83-7.92 10-5.29 23 2.37 30.7l12.63 14c15.51 17.93 24 31.87 20.8 50.62-5.06 29.93-40.72 52.9-82.88 39.94-36-11.11-42.7-36.56-38.38-50.62 7.51-24.15 42.36-11.72 34.62 13.6-2.79 8.6-4.92 8.68-6.28 13.07-4.56 14.77 41.85 28.4 51-1.39 4.47-14.52-5.3-21.71-22.25-39.85-28.47-31.75-16-65.49 2.95-79.67C204.23 140.13 251.94 197 262 205.29c37.17-109 100.53-105.46 102.43-105.53 25.16-.81 44.19 10.59 44.83 28.65.25 7.69-4.17 22.59-19.52 23.13z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "synagogue": { + "aliases": { + "unicodes": { + "composite": [ + "1f54d" + ], + "secondary": [ + "10f69b" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Jew", + "Jewish", + "building", + "jewish", + "judaism", + "religion", + "star of david", + "synagogue", + "temple" + ] + }, + "unicode": "f69b", + "label": "Synagogue", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M309.8 3.7c5.9-4.9 14.6-4.9 20.5 0l121 100.8C469.5 119.7 480 142.2 480 166V280.1 512H464 352V416c0-17.7-14.3-32-32-32s-32 14.3-32 32v96H176 160V280.1 166c0-23.7 10.5-46.3 28.8-61.5L309.8 3.7zM512 512V244.5l28.1-31.2c3-3.4 7.4-5.3 11.9-5.3s8.9 1.9 11.9 5.3l63.8 70.9c7.9 8.8 12.3 20.3 12.3 32.1V448c0 35.3-28.7 64-64 64H512zM128 244.5V512H64c-35.3 0-64-28.7-64-64V316.3c0-11.9 4.4-23.3 12.3-32.1l63.8-70.9c3-3.4 7.4-5.3 11.9-5.3s8.9 1.9 11.9 5.3L128 244.5zM327 124.3c-3.1-5.4-10.9-5.4-13.9 0l-15.9 28.1-32.3-.3c-6.2-.1-10.1 6.7-7 12.1L274.3 192l-16.4 27.8c-3.2 5.4 .7 12.1 7 12.1l32.3-.3L313 259.7c3.1 5.4 10.9 5.4 13.9 0l15.9-28.1 32.3 .3c6.2 .1 10.1-6.7 7-12.1L365.7 192l16.4-27.8c3.2-5.4-.7-12.1-7-12.1l-32.3 .3L327 124.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "syringe": { + "aliases": { + "unicodes": { + "composite": [ + "1f489" + ], + "secondary": [ + "10f48e" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "immunizations", + "medical", + "medicine", + "needle", + "shot", + "sick", + "syringe", + "vaccinate", + "vaccine" + ] + }, + "unicode": "f48e", + "label": "Syringe", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M441 7l32 32 32 32c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-15-15L417.9 128l55 55c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-72-72L295 73c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l55 55L422.1 56 407 41c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0zM210.3 155.7l61.1-61.1c.3 .3 .6 .7 1 1l16 16 56 56 56 56 16 16c.3 .3 .6 .6 1 1l-191 191c-10.5 10.5-24.7 16.4-39.6 16.4H97.9L41 505c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l57-57V325.3c0-14.9 5.9-29.1 16.4-39.6l43.3-43.3 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "t": { + "aliases": { + "unicodes": { + "composite": [ + "74" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter T", + "Latin Small Letter T", + "letter" + ] + }, + "unicode": "54", + "label": "T", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H160V448c0 17.7 14.3 32 32 32s32-14.3 32-32V96H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H192 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0ce" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "data", + "excel", + "spreadsheet" + ] + }, + "unicode": "f0ce", + "label": "Table", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 256V160H224v96H64zm0 64H224v96H64V320zm224 96V320H448v96H288zM448 256H288V160H448v96zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table-cells": { + "aliases": { + "names": [ + "th" + ], + "unicodes": { + "secondary": [ + "10f00a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "boxes", + "grid", + "squares" + ] + }, + "unicode": "f00a", + "label": "Table Cells", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm88 64v64H64V96h88zm56 0h88v64H208V96zm240 0v64H360V96h88zM64 224h88v64H64V224zm232 0v64H208V224h88zm64 0h88v64H360V224zM152 352v64H64V352h88zm56 0h88v64H208V352zm240 0v64H360V352h88z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table-cells-large": { + "aliases": { + "names": [ + "th-large" + ], + "unicodes": { + "secondary": [ + "10f009" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "boxes", + "grid", + "squares" + ] + }, + "unicode": "f009", + "label": "Table Cells Large", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 96V224H288V96H448zm0 192V416H288V288H448zM224 224H64V96H224V224zM64 288H224V416H64V288zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table-columns": { + "aliases": { + "names": [ + "columns" + ], + "unicodes": { + "secondary": [ + "10f0db" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "dashboard", + "organize", + "panes", + "split" + ] + }, + "unicode": "f0db", + "label": "Table Columns", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm64 64V416H224V160H64zm384 0H288V416H448V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table-list": { + "aliases": { + "names": [ + "th-list" + ], + "unicodes": { + "secondary": [ + "10f00b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "unicode": "f00b", + "label": "Table List", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm64 0v64h64V96H64zm384 0H192v64H448V96zM64 224v64h64V224H64zm384 0H192v64H448V224zM64 352v64h64V352H64zm384 0H192v64H448V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table-tennis-paddle-ball": { + "aliases": { + "names": [ + "ping-pong-paddle-ball", + "table-tennis" + ], + "unicodes": { + "composite": [ + "1f3d3" + ], + "secondary": [ + "10f45d" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "bat", + "game", + "paddle", + "ping pong", + "table tennis" + ] + }, + "unicode": "f45d", + "label": "Table Tennis Paddle Ball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 288c-50.1 0-93.6 28.8-114.6 70.8L68.9 126.3l.6-.6 60.1-60.1c87.5-87.5 229.3-87.5 316.8 0c67.1 67.1 82.7 166.3 46.8 248.3C471.8 297.6 445 288 416 288zM49.3 151.9L290.1 392.7c-1.4 7.5-2.1 15.3-2.1 23.3c0 23.2 6.2 44.9 16.9 63.7c-3 .2-6.1 .3-9.2 .3H293c-33.9 0-66.5-13.5-90.5-37.5l-9.8-9.8c-13.1-13.1-34.6-12.4-46.8 1.7L88.2 501c-5.8 6.7-14.2 10.7-23 11s-17.5-3.1-23.8-9.4l-32-32C3.1 464.3-.3 455.7 0 446.9s4.3-17.2 11-23l66.6-57.7c14-12.2 14.8-33.7 1.7-46.8l-9.8-9.8C45.5 285.5 32 252.9 32 219v-2.7c0-22.8 6.1-44.9 17.3-64.3zM416 320a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tablet": { + "aliases": { + "names": [ + "tablet-android" + ], + "unicodes": { + "secondary": [ + "10f3fb" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "device", + "kindle", + "screen" + ] + }, + "unicode": "f3fb", + "label": "Tablet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM176 432h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tablet-button": { + "aliases": { + "unicodes": { + "secondary": [ + "10f10a" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "device", + "ipad", + "kindle", + "screen" + ] + }, + "unicode": "f10a", + "label": "Tablet Button", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM224 400a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tablet-screen-button": { + "aliases": { + "names": [ + "tablet-alt" + ], + "unicodes": { + "secondary": [ + "10f3fa" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "device", + "ipad", + "kindle", + "screen" + ] + }, + "unicode": "f3fa", + "label": "Tablet Screen Button", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM256 448a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM384 64H64V384H384V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tablets": { + "aliases": { + "unicodes": { + "secondary": [ + "10f490" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine", + "pills", + "prescription" + ] + }, + "unicode": "f490", + "label": "Tablets", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M614.3 247c16.3-25 25.7-54.9 25.7-87C640 71.6 568.4 0 480 0c-32.1 0-61.9 9.4-87 25.7c-7.9 5.2-8.5 16.2-1.8 22.9L591.4 248.8c6.7 6.7 17.8 6.2 22.9-1.8zM567 294.3c7.9-5.2 8.5-16.2 1.8-22.9L368.6 71.2c-6.7-6.7-17.8-6.2-22.9 1.8c-16.3 25-25.7 54.9-25.7 87c0 88.4 71.6 160 160 160c32.1 0 61.9-9.4 87-25.7zM301.5 368H18.5c-9.5 0-16.9 8.2-15 17.5C18.9 457.8 83.1 512 160 512s141.1-54.2 156.5-126.5c2-9.3-5.5-17.5-15-17.5zm0-32c9.5 0 16.9-8.2 15-17.5C301.1 246.2 236.9 192 160 192S18.9 246.2 3.5 318.5c-2 9.3 5.5 17.5 15 17.5H301.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tachograph-digital": { + "aliases": { + "names": [ + "digital-tachograph" + ], + "unicodes": { + "secondary": [ + "10f566" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "data", + "distance", + "speed", + "tachometer" + ] + }, + "unicode": "f566", + "label": "Tachograph Digital", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H576c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm32 64H320c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32zM64 368c0-8.8 7.2-16 16-16H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm320 0c0-8.8 7.2-16 16-16H560c8.8 0 16 7.2 16 16s-7.2 16-16 16H400c-8.8 0-16-7.2-16-16zM80 288a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm48 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm80-16a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm48 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm80-16a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tag": { + "aliases": { + "unicodes": { + "composite": [ + "1f3f7" + ], + "secondary": [ + "10f02b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "discount", + "labe", + "label", + "price", + "shopping" + ] + }, + "unicode": "f02b", + "label": "Tag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 80V229.5c0 17 6.7 33.3 18.7 45.3l176 176c25 25 65.5 25 90.5 0L418.7 317.3c25-25 25-65.5 0-90.5l-176-176c-12-12-28.3-18.7-45.3-18.7H48C21.5 32 0 53.5 0 80zm112 32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tags": { + "aliases": { + "unicodes": { + "secondary": [ + "10f02c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "discount", + "label", + "price", + "shopping" + ] + }, + "unicode": "f02c", + "label": "Tags", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M345 39.1L472.8 168.4c52.4 53 52.4 138.2 0 191.2L360.8 472.9c-9.3 9.4-24.5 9.5-33.9 .2s-9.5-24.5-.2-33.9L438.6 325.9c33.9-34.3 33.9-89.4 0-123.7L310.9 72.9c-9.3-9.4-9.2-24.6 .2-33.9s24.6-9.2 33.9 .2zM0 229.5V80C0 53.5 21.5 32 48 32H197.5c17 0 33.3 6.7 45.3 18.7l168 168c25 25 25 65.5 0 90.5L277.3 442.7c-25 25-65.5 25-90.5 0l-168-168C6.7 262.7 0 246.5 0 229.5zM144 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tape": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4db" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "package", + "sticky" + ] + }, + "unicode": "f4db", + "label": "Tape", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M380.8 416c41.5-40.7 67.2-97.3 67.2-160C448 132.3 347.7 32 224 32S0 132.3 0 256S100.3 480 224 480H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H380.8zM224 160a96 96 0 1 1 0 192 96 96 0 1 1 0-192zm64 96a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tarp": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protection", + "tarp", + "tent", + "waterproof" + ] + }, + "unicode": "e57b", + "label": "Tarp", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M576 128c0-35.3-28.7-64-64-64H64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64l352 0 0-128c0-17.7 14.3-32 32-32H576V128zM448 448L576 320H448l0 128zM96 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tarp-droplet": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protection", + "tarp", + "tent", + "waterproof" + ] + }, + "unicode": "e57c", + "label": "Tarp Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 160c-35.3 0-64-26.9-64-60c0-24 33.7-70.1 52.2-93.5c6.1-7.7 17.5-7.7 23.6 0C318.3 29.9 352 76 352 100c0 33.1-28.7 60-64 60zM64 128H197.5c13.2 37.3 48.7 64 90.5 64s77.4-26.7 90.5-64H512c35.3 0 64 28.7 64 64V352H448c-17.7 0-32 14.3-32 32l0 128L64 512c-35.3 0-64-28.7-64-64V192c0-35.3 28.7-64 64-64zM448 512l0-128H576L448 512zM96 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "taxi": { + "aliases": { + "names": [ + "cab" + ], + "unicodes": { + "composite": [ + "1f696" + ], + "secondary": [ + "10f1ba" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cab", + "cabbie", + "car", + "car service", + "lyft", + "machine", + "oncoming", + "oncoming taxi", + "taxi", + "transportation", + "travel", + "uber", + "vehicle" + ] + }, + "unicode": "f1ba", + "label": "Taxi", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 0c-17.7 0-32 14.3-32 32V64c0 .1 0 .1 0 .2c-38.6 2.2-72.3 27.3-85.2 64.1L39.6 228.8C16.4 238.4 0 261.3 0 288V432v48c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V432H416v48c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V432 288c0-26.7-16.4-49.6-39.6-59.2L437.2 128.3c-12.9-36.8-46.6-62-85.2-64.1c0-.1 0-.1 0-.2V32c0-17.7-14.3-32-32-32H192zM165.4 128H346.6c13.6 0 25.7 8.6 30.2 21.4L402.9 224H109.1l26.1-74.6c4.5-12.8 16.6-21.4 30.2-21.4zM96 288a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm288 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "teamspeak": { + "changes": [ + "5.0.11", + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f9", + "label": "TeamSpeak", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M244.2 346.79c2.4-12.3-12-30-32.4-48.7-20.9-19.2-48.2-39.1-63.4-46.6-21.7-12-41.7-1.8-46.3 22.7-5 26.2 0 51.4 14.5 73.9 10.2 15.5 25.4 22.7 43.4 24 11.6.6 52.5 2.2 61.7-1 11.9-4.3 20.1-11.8 22.5-24.3zm205 20.8a5.22 5.22 0 0 0-8.3 2.4c-8 25.4-44.7 112.5-172.1 121.5-149.7 10.5 80.3 43.6 145.4-6.4 22.7-17.4 47.6-35 46.6-85.4-.4-10.1-4.9-26.69-11.6-32.1zm62-122.4c-.3-18.9-8.6-33.4-26-42.2-2.9-1.3-5-2.7-5.9-6.4A222.64 222.64 0 0 0 438.9 103c-1.1-1.5-3.5-3.2-2.2-5 8.5-11.5-.3-18-7-24.4Q321.4-31.11 177.4 13.09c-40.1 12.3-73.9 35.6-102 67.4-4 4.3-6.7 9.1-3 14.5 3 4 1.3 6.2-1 9.3C51.6 132 38.2 162.59 32.1 196c-.7 4.3-2.9 6-6.4 7.8-14.2 7-22.5 18.5-24.9 34L0 264.29v20.9c0 30.8 21 50.4 51.8 49 7.7-.3 11.7-4.3 12-11.5 2-77.5-2.4-95.4 3.7-125.8C92.1 72.39 234.3 5 345.3 65.39 411.4 102 445.7 159 447.6 234.79c.8 28.2 0 56.5 0 84.6 0 7 2.2 12.5 9.4 14.2 24.1 5 49.2-12 53.2-36.7 2.9-17.1 1-34.5 1-51.7zm-159.6 131.5c36.5 2.8 59.3-28.5 58.4-60.5-2.1-45.2-66.2-16.5-87.8-8-73.2 28.1-45 54.9-22.2 60.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "teeth": { + "aliases": { + "unicodes": { + "secondary": [ + "10f62e" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bite", + "dental", + "dentist", + "gums", + "mouth", + "smile", + "tooth" + ] + }, + "unicode": "f62e", + "label": "Teeth", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 128C0 75 43 32 96 32H480c53 0 96 43 96 96V384c0 53-43 96-96 96H96c-53 0-96-43-96-96V128zm176 48v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V176c0-26.5-21.5-48-48-48s-48 21.5-48 48zm176-48c-26.5 0-48 21.5-48 48v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V176c0-26.5-21.5-48-48-48zM48 208v24c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V208c0-26.5-21.5-48-48-48s-48 21.5-48 48zM96 384c26.5 0 48-21.5 48-48V312c0-13.3-10.7-24-24-24H72c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48zm80-48c0 26.5 21.5 48 48 48s48-21.5 48-48V312c0-13.3-10.7-24-24-24H200c-13.3 0-24 10.7-24 24v24zm176 48c26.5 0 48-21.5 48-48V312c0-13.3-10.7-24-24-24H328c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48zm80-176v24c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V208c0-26.5-21.5-48-48-48s-48 21.5-48 48zm48 176c26.5 0 48-21.5 48-48V312c0-13.3-10.7-24-24-24H456c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "teeth-open": { + "aliases": { + "unicodes": { + "secondary": [ + "10f62f" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dental", + "dentist", + "gums bite", + "mouth", + "smile", + "tooth" + ] + }, + "unicode": "f62f", + "label": "Teeth Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 32C43 32 0 75 0 128v64c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-53-43-96-96-96H96zM224 96c26.5 0 48 21.5 48 48v56c0 13.3-10.7 24-24 24H200c-13.3 0-24-10.7-24-24V144c0-26.5 21.5-48 48-48zm80 48c0-26.5 21.5-48 48-48s48 21.5 48 48v56c0 13.3-10.7 24-24 24H328c-13.3 0-24-10.7-24-24V144zM96 128c26.5 0 48 21.5 48 48v24c0 13.3-10.7 24-24 24H72c-13.3 0-24-10.7-24-24V176c0-26.5 21.5-48 48-48zm336 48c0-26.5 21.5-48 48-48s48 21.5 48 48v24c0 13.3-10.7 24-24 24H456c-13.3 0-24-10.7-24-24V176zM96 480H480c53 0 96-43 96-96V352c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v32c0 53 43 96 96 96zm0-64c-26.5 0-48-21.5-48-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48zm80-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48s-48-21.5-48-48zm176 48c-26.5 0-48-21.5-48-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48zm80-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48s-48-21.5-48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "telegram": { + "aliases": { + "names": [ + "telegram-plane" + ], + "unicodes": { + "composite": [ + "f3fe" + ], + "secondary": [ + "10f3fe" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2c6", + "label": "Telegram", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248,8C111.033,8,0,119.033,0,256S111.033,504,248,504,496,392.967,496,256,384.967,8,248,8ZM362.952,176.66c-3.732,39.215-19.881,134.378-28.1,178.3-3.476,18.584-10.322,24.816-16.948,25.425-14.4,1.326-25.338-9.517-39.287-18.661-21.827-14.308-34.158-23.215-55.346-37.177-24.485-16.135-8.612-25,5.342-39.5,3.652-3.793,67.107-61.51,68.335-66.746.153-.655.3-3.1-1.154-4.384s-3.59-.849-5.135-.5q-3.283.746-104.608,69.142-14.845,10.194-26.894,9.934c-8.855-.191-25.888-5.006-38.551-9.123-15.531-5.048-27.875-7.717-26.8-16.291q.84-6.7,18.45-13.7,108.446-47.248,144.628-62.3c68.872-28.647,83.183-33.623,92.511-33.789,2.052-.034,6.639.474,9.61,2.885a10.452,10.452,0,0,1,3.53,6.716A43.765,43.765,0,0,1,362.952,176.66Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "temperature-arrow-down": { + "aliases": { + "names": [ + "temperature-down" + ], + "unicodes": { + "secondary": [ + "10e03f" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air conditioner", + "cold", + "heater", + "mercury", + "thermometer", + "winter" + ] + }, + "unicode": "e03f", + "label": "Temperature Arrow Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C217.8 332.6 224 349.5 224 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9C88.9 308.4 96 293.8 96 276.5V112zM144 0C82.1 0 32 50.1 32 112V276.4c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C11.2 304.2 0 334.8 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.3-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256 50.1 205.9 0 144 0zm0 416c26.5 0 48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V272c0-8.8-7.2-16-16-16s-16 7.2-16 16v50.7c-18.6 6.6-32 24.4-32 45.3c0 26.5 21.5 48 48 48zm336-64H448V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V352H352c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c6 6 14.1 9.4 22.6 9.4s16.6-3.4 22.6-9.4l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-arrow-up": { + "aliases": { + "names": [ + "temperature-up" + ], + "unicodes": { + "secondary": [ + "10e040" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air conditioner", + "cold", + "heater", + "mercury", + "thermometer", + "winter" + ] + }, + "unicode": "e040", + "label": "Temperature Arrow Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C217.8 332.6 224 349.5 224 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9C88.9 308.4 96 293.8 96 276.5V112zM144 0C82.1 0 32 50.1 32 112V276.4c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C11.2 304.2 0 334.8 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.3-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256 50.1 205.9 0 144 0zm0 416c26.5 0 48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V112c0-8.8-7.2-16-16-16s-16 7.2-16 16V322.7c-18.6 6.6-32 24.4-32 45.3c0 26.5 21.5 48 48 48zM448 160h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32V448c0 17.7 14.3 32 32 32s32-14.3 32-32V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-empty": { + "aliases": { + "names": [ + "temperature-0", + "thermometer-0", + "thermometer-empty" + ], + "unicodes": { + "secondary": [ + "10f2cb" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "mercury", + "status", + "temperature" + ] + }, + "unicode": "f2cb", + "label": "Temperature Empty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M96 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C217.8 332.6 224 349.5 224 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9C88.9 308.4 96 293.8 96 276.5V112zM144 0C82.1 0 32 50.2 32 112V276.5c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C11.2 304.2 0 334.8 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.3-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256 50.2 205.9 0 144 0zm0 416a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-full": { + "aliases": { + "names": [ + "temperature-4", + "thermometer-4", + "thermometer-full" + ], + "unicodes": { + "secondary": [ + "10f2c7" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fever", + "hot", + "mercury", + "status", + "temperature" + ] + }, + "unicode": "f2c7", + "label": "Temperature Full", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M144 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM32 112C32 50.2 82.1 0 144 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM192 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V112c0-8.8 7.2-16 16-16s16 7.2 16 16V322.7c18.6 6.6 32 24.4 32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-half": { + "aliases": { + "names": [ + "temperature-2", + "thermometer-2", + "thermometer-half" + ], + "unicodes": { + "composite": [ + "1f321" + ], + "secondary": [ + "10f2c9" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mercury", + "status", + "temperature", + "thermometer", + "weather" + ] + }, + "unicode": "f2c9", + "label": "Temperature Half", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M144 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM32 112C32 50.2 82.1 0 144 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM192 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V208c0-8.8 7.2-16 16-16s16 7.2 16 16V322.7c18.6 6.6 32 24.4 32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-high": { + "aliases": { + "unicodes": { + "secondary": [ + "10f769" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cook", + "covid-19", + "mercury", + "summer", + "thermometer", + "warm" + ] + }, + "unicode": "f769", + "label": "Temperature High", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm0 128A96 96 0 1 0 416 0a96 96 0 1 0 0 192zM96 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C217.8 332.6 224 349.5 224 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9C88.9 308.4 96 293.8 96 276.5V112zM144 0C82.1 0 32 50.2 32 112V276.5c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C11.2 304.2 0 334.8 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.3-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256 50.2 205.9 0 144 0zm0 416c26.5 0 48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V112c0-8.8-7.2-16-16-16s-16 7.2-16 16V322.7c-18.6 6.6-32 24.4-32 45.3c0 26.5 21.5 48 48 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-low": { + "aliases": { + "unicodes": { + "secondary": [ + "10f76b" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "cool", + "covid-19", + "mercury", + "thermometer", + "winter" + ] + }, + "unicode": "f76b", + "label": "Temperature Low", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM320 96a96 96 0 1 1 192 0A96 96 0 1 1 320 96zM144 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM32 112C32 50.2 82.1 0 144 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM192 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V272c0-8.8 7.2-16 16-16s16 7.2 16 16v50.7c18.6 6.6 32 24.4 32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-quarter": { + "aliases": { + "names": [ + "temperature-1", + "thermometer-1", + "thermometer-quarter" + ], + "unicodes": { + "secondary": [ + "10f2ca" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mercury", + "status", + "temperature" + ] + }, + "unicode": "f2ca", + "label": "Temperature Quarter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M144 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM32 112C32 50.2 82.1 0 144 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM192 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V272c0-8.8 7.2-16 16-16s16 7.2 16 16v50.7c18.6 6.6 32 24.4 32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-three-quarters": { + "aliases": { + "names": [ + "temperature-3", + "thermometer-3", + "thermometer-three-quarters" + ], + "unicodes": { + "secondary": [ + "10f2c8" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mercury", + "status", + "temperature" + ] + }, + "unicode": "f2c8", + "label": "Temperature Three Quarters", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M144 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM32 112C32 50.2 82.1 0 144 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM192 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V144c0-8.8 7.2-16 16-16s16 7.2 16 16V322.7c18.6 6.6 32 24.4 32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tencent-weibo": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d5", + "label": "Tencent Weibo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "tenge-sign": { + "aliases": { + "names": [ + "tenge" + ], + "unicodes": { + "composite": [ + "20b8" + ], + "secondary": [ + "10f7d7" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Tenge Sign", + "currency" + ] + }, + "unicode": "f7d7", + "label": "Tenge Sign", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64zM0 192c0-17.7 14.3-32 32-32H192 352c17.7 0 32 14.3 32 32s-14.3 32-32 32H224V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V224H32c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tent": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bivouac", + "campground", + "refugee", + "shelter", + "tent" + ] + }, + "unicode": "e57d", + "label": "Tent", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M269.4 6C280.5-2 295.5-2 306.6 6l224 160c7.4 5.3 12.2 13.5 13.2 22.5l32 288c1 9-1.9 18.1-8 24.9s-14.7 10.7-23.8 10.7H416L288 288V512H32c-9.1 0-17.8-3.9-23.8-10.7s-9-15.8-8-24.9l32-288c1-9 5.8-17.2 13.2-22.5L269.4 6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tent-arrow-down-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "permanent", + "refugee", + "shelter" + ] + }, + "unicode": "e57e", + "label": "Tent Arrow Down To Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M241.8 111.9c8.9 9.9 8.1 25-1.8 33.9l-80 72c-9.1 8.2-23 8.2-32.1 0l-80-72c-9.9-8.9-10.7-24-1.8-33.9s24-10.7 33.9-1.8l39.9 36L120 24c0-13.3 10.7-24 24-24s24 10.7 24 24l0 122.1 39.9-36c9.9-8.9 25-8.1 33.9 1.8zm122.8 22.6c11.5-8.7 27.3-8.7 38.8 0l168 128c6.6 5 11 12.5 12.3 20.7l24 160 .7 4.7c17.5 .2 31.6 14.4 31.6 32c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H159.6l.7-4.7 24-160c1.2-8.2 5.6-15.7 12.3-20.7l168-128zM384 448h76.8L384 320V448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tent-arrow-left-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refugee", + "shelter", + "transition" + ] + }, + "unicode": "e57f", + "label": "Tent Arrow Left Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M488.1 6.2c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9L489.5 72 86.5 72l33.5-30.2c9.9-8.9 10.7-24 1.8-33.9S97.8-2.7 87.9 6.2l-80 72C2.9 82.7 0 89.2 0 96s2.9 13.3 7.9 17.8l80 72c9.9 8.9 25 8.1 33.9-1.8s8.1-25-1.8-33.9L86.5 120l402.9 0-33.5 30.2c-9.9 8.9-10.7 24-1.8 33.9s24 10.7 33.9 1.8l80-72c5.1-4.6 7.9-11 7.9-17.8s-2.9-13.3-7.9-17.8l-80-72zM307.4 166.5c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S86.7 512 96 512H288V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tent-arrow-turn-left": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refugee", + "shelter", + "temporary" + ] + }, + "unicode": "e580", + "label": "Tent Arrow Turn Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M120.1 41.8c9.9-8.9 10.7-24 1.8-33.9S97.8-2.7 87.9 6.2l-80 72C2.9 82.7 0 89.2 0 96s2.9 13.3 7.9 17.8l80 72c9.9 8.9 25 8.1 33.9-1.8s8.1-25-1.8-33.9L86.5 120 456 120c39.8 0 72 32.2 72 72v40c0 13.3 10.7 24 24 24s24-10.7 24-24V192c0-66.3-53.7-120-120-120L86.5 72l33.5-30.2zM307.4 166.5c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S86.7 512 96 512H288V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tent-arrows-down": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refugee", + "shelter", + "spontaneous" + ] + }, + "unicode": "e581", + "label": "Tent Arrows Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M201.8 111.9c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36L128 24c0-13.3-10.7-24-24-24S80 10.7 80 24l0 122.1-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zm352 0c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V146.1l-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zM299.4 166.5c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S78.7 512 88 512H280V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tents": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bivouac", + "campground", + "refugee", + "shelter", + "tent" + ] + }, + "unicode": "e582", + "label": "Tents", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M396.6 6.5L235.8 129.1c9.6 1.8 18.9 5.8 27 12l168 128c13.2 10.1 22 24.9 24.5 41.4l6.2 41.5H608c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128c-11.5-8.7-27.3-8.7-38.8 0zm-153.2 160c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S22.7 512 32 512H224V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "terminal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f120" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "code", + "coding", + "command", + "console", + "development", + "prompt", + "terminal" + ] + }, + "unicode": "f120", + "label": "Terminal", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321875, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M41.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 41.4 86.6zM288 416H576c17.7 0 32 14.3 32 32s-14.3 32-32 32H288c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "text-height": { + "aliases": { + "unicodes": { + "secondary": [ + "10f034" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f034", + "label": "Text Height", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 128V96h64l0 320H96c-17.7 0-32 14.3-32 32s14.3 32 32 32H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H192l0-320h64v32c0 17.7 14.3 32 32 32s32-14.3 32-32V80c0-26.5-21.5-48-48-48H160 48C21.5 32 0 53.5 0 80v48c0 17.7 14.3 32 32 32s32-14.3 32-32zM502.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32V352H416c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H512V160h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "text-slash": { + "aliases": { + "names": [ + "remove-format" + ], + "unicodes": { + "secondary": [ + "10f87d" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "font", + "format", + "remove", + "style", + "text" + ] + }, + "unicode": "f87d", + "label": "Text Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L355.7 253.5 400.2 96H503L497 120.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l11-44.1C577.6 61.3 554.7 32 523.5 32H376.1h-.3H204.5c-22 0-41.2 15-46.6 36.4l-6.3 25.2L38.8 5.1zm168 131.7c.1-.3 .2-.7 .3-1L217 96H333.7L301.3 210.8l-94.5-74.1zM243.3 416H192c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H309.8l17.6-62.1L272.9 311 243.3 416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "text-width": { + "aliases": { + "unicodes": { + "secondary": [ + "10f035" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f035", + "label": "Text Width", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 128V96H192l0 128H176c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H256l0-128H384v32c0 17.7 14.3 32 32 32s32-14.3 32-32V80c0-26.5-21.5-48-48-48H224 48C21.5 32 0 53.5 0 80v48c0 17.7 14.3 32 32 32s32-14.3 32-32zM9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V416H320v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6v32H128V320c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "the-red-yeti": { + "changes": [ + "5.3.0", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f69d", + "label": "The Red Yeti", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M488.23 241.7l20.7 7.1c-9.6-23.9-23.9-37-31.7-44.8l7.1-18.2c.2 0 12.3-27.8-2.5-30.7-.6-11.3-6.6-27-18.4-27-7.6-10.6-17.7-12.3-30.7-5.9a122.2 122.2 0 0 0-25.3 16.5c-5.3-6.4-3 .4-3-29.8-37.1-24.3-45.4-11.7-74.8 3l.5.5a239.36 239.36 0 0 0-68.4-13.3c-5.5-8.7-18.6-19.1-25.1-25.1l24.8 7.1c-5.5-5.5-26.8-12.9-34.2-15.2 18.2-4.1 29.8-20.8 42.5-33-34.9-10.1-67.9-5.9-97.9 11.8l12-44.2L182 0c-31.6 24.2-33 41.9-33.7 45.5-.9-2.4-6.3-19.6-15.2-27a35.12 35.12 0 0 0-.5 25.3c3 8.4 5.9 14.8 8.4 18.9-16-3.3-28.3-4.9-49.2 0h-3.7l33 14.3a194.26 194.26 0 0 0-46.7 67.4l-1.7 8.4 1.7 1.7 7.6-4.7c-3.3 11.6-5.3 19.4-6.6 25.8a200.18 200.18 0 0 0-27.8 40.3c-15 1-31.8 10.8-40.3 14.3l3 3.4 28.8 1c-.5 1-.7 2.2-1.2 3.2-7.3 6.4-39.8 37.7-33 80.7l20.2-22.4c.5 1.7.7 3.4 1.2 5.2 0 25.5.4 89.6 64.9 150.5 43.6 40 96 60.2 157.5 60.2 121.7 0 223-87.3 223-211.5 6.8-9.7-1.2 3 16.7-25.1l13 14.3 2.5-.5A181.84 181.84 0 0 0 495 255a44.74 44.74 0 0 0-6.8-13.3zM398 111.2l-.5 21.9c5.5 18.1 16.9 17.2 22.4 17.2l-3.4-4.7 22.4-5.4a242.44 242.44 0 0 1-27 0c12.8-2.1 33.3-29 43-11.3 3.4 7.6 6.4 17.2 9.3 27.8l1.7-5.9a56.38 56.38 0 0 1-1.7-15.2c5.4.5 8.8 3.4 9.3 10.1.5 6.4 1.7 14.8 3.4 25.3l4.7-11.3c4.6 0 4.5-3.6-2.5 20.7-20.9-8.7-35.1-8.4-46.5-8.4l18.2-16c-25.3 8.2-33 10.8-54.8 20.9-1.1-5.4-5-13.5-16-19.9-3.2 3.8-2.8.9-.7 14.8h-2.5a62.32 62.32 0 0 0-8.4-23.1l4.2-3.4c8.4-7.1 11.8-14.3 10.6-21.9-.5-6.4-5.4-13.5-13.5-20.7 5.6-3.4 15.2-.4 28.3 8.5zm-39.6-10.1c2.7 1.9 11.4 5.4 18.9 17.2 4.2 8.4 4 9.8 3.4 11.1-.5 2.4-.5 4.3-3 7.1-1.7 2.5-5.4 4.7-11.8 7.6-7.6-13-16.5-23.6-27.8-31.2zM91 143.1l1.2-1.7c1.2-2.9 4.2-7.6 9.3-15.2l2.5-3.4-13 12.3 5.4-4.7-10.1 9.3-4.2 1.2c12.3-24.1 23.1-41.3 32.5-50.2 9.3-9.3 16-16 20.2-19.4l-6.4 1.2c-11.3-4.2-19.4-7.1-24.8-8.4 2.5-.5 3.7-.5 3.2-.5 10.3 0 17.5.5 20.9 1.2a52.35 52.35 0 0 0 16 2.5l.5-1.7-8.4-35.8 13.5 29a42.89 42.89 0 0 0 5.9-14.3c1.7-6.4 5.4-13 10.1-19.4s7.6-10.6 9.3-11.3a234.68 234.68 0 0 0-6.4 25.3l-1.7 7.1-.5 4.7 2.5 2.5C190.4 39.9 214 34 239.8 34.5l21.1.5c-11.8 13.5-27.8 21.9-48.5 24.8a201.26 201.26 0 0 1-23.4 2.9l-.2-.5-2.5-1.2a20.75 20.75 0 0 0-14 2c-2.5-.2-4.9-.5-7.1-.7l-2.5 1.7.5 1.2c2 .2 3.9.5 6.2.7l-2 3.4 3.4-.5-10.6 11.3c-4.2 3-5.4 6.4-4.2 9.3l5.4-3.4h1.2a39.4 39.4 0 0 1 25.3-15.2v-3c6.4.5 13 1 19.4 1.2 6.4 0 8.4.5 5.4 1.2a189.6 189.6 0 0 1 20.7 13.5c13.5 10.1 23.6 21.9 30 35.4 8.8 18.2 13.5 37.1 13.5 56.6a141.13 141.13 0 0 1-3 28.3 209.91 209.91 0 0 1-16 46l2.5.5c18.2-19.7 41.9-16 49.2-16l-6.4 5.9 22.4 17.7-1.7 30.7c-5.4-12.3-16.5-21.1-33-27.8 16.5 14.8 23.6 21.1 21.9 20.2-4.8-2.8-3.5-1.9-10.8-3.7 4.1 4.1 17.5 18.8 18.2 20.7l.2.2-.2.2c0 1.8 1.6-1.2-14 22.9-75.2-15.3-106.27-42.7-141.2-63.2l11.8 1.2c-11.8-18.5-15.6-17.7-38.4-26.1L149 225c-8.8-3-18.2-3-28.3.5l7.6-10.6-1.2-1.7c-14.9 4.3-19.8 9.2-22.6 11.3-1.1-5.5-2.8-12.4-12.3-28.8l-1.2 27-13.2-5c1.5-25.2 5.4-50.5 13.2-74.6zm276.5 330c-49.9 25-56.1 22.4-59 23.9-29.8-11.8-50.9-31.7-63.5-58.8l30 16.5c-9.8-9.3-18.3-16.5-38.4-44.3l11.8 23.1-17.7-7.6c14.2 21.1 23.5 51.7 66.6 73.5-120.8 24.2-199-72.1-200.9-74.3a262.57 262.57 0 0 0 35.4 24.8c3.4 1.7 7.1 2.5 10.1 1.2l-16-20.7c9.2 4.2 9.5 4.5 69.1 29-42.5-20.7-73.8-40.8-93.2-60.2-.5 6.4-1.2 10.1-1.2 10.1a80.25 80.25 0 0 1 20.7 26.6c-39-18.9-57.6-47.6-71.3-82.6 49.9 55.1 118.9 37.5 120.5 37.1 34.8 16.4 69.9 23.6 113.9 10.6 3.3 0 20.3 17 25.3 39.1l4.2-3-2.5-23.6c9 9 24.9 22.6 34.4 13-15.6-5.3-23.5-9.5-29.5-31.7 4.6 4.2 7.6 9 27.8 15l1.2-1.2-10.5-14.2c11.7-4.8-3.5 1 32-10.8 4.3 34.3 9 49.2.7 89.5zm115.3-214.4l-2.5.5 3 9.3c-3.5 5.9-23.7 44.3-71.6 79.7-39.5 29.8-76.6 39.1-80.9 40.3l-7.6-7.1-1.2 3 14.3 16-7.1-4.7 3.4 4.2h-1.2l-21.9-13.5 9.3 26.6-19-27.9-1.2 2.5 7.6 29c-6.1-8.2-21-32.6-56.8-39.6l32.5 21.2a214.82 214.82 0 0 1-93.2-6.4c-4.2-1.2-8.9-2.5-13.5-4.2l1.2-3-44.8-22.4 26.1 22.4c-57.7 9.1-113-25.4-126.4-83.4l-2.5-16.4-22.27 22.3c19.5-57.5 25.6-57.9 51.4-70.1-9.1-5.3-1.6-3.3-38.4-9.3 15.8-5.8 33-15.4 73 5.2a18.5 18.5 0 0 1 3.7-1.7c.6-3.2.4-.8 1-11.8 3.9 10 3.6 8.7 3 9.3l1.7.5c12.7-6.5 8.9-4.5 17-8.9l-5.4 13.5 22.3-5.8-8.4 8.4 2.5 2.5c4.5-1.8 30.3 3.4 40.8 16l-23.6-2.5c39.4 23 51.5 54 55.8 69.6l1.7-1.2c-2.8-22.3-12.4-33.9-16-40.1 4.2 5 39.2 34.6 110.4 46-11.3-.5-23.1 5.4-34.9 18.9l46.7-20.2-9.3 21.9c7.6-10.1 14.8-23.6 21.2-39.6v-.5l1.2-3-1.2 16c13.5-41.8 25.3-78.5 35.4-109.7l13.5-27.8v-2l-5.4-4.2h10.1l5.9 4.2 2.5-1.2-3.4-16 12.3 18.9 41.8-20.2-14.8 13 .5 2.9 17.7-.5a184 184 0 0 1 33 4.2l-23.6 2.5-1.2 3 26.6 23.1a254.21 254.21 0 0 1 27 32c-11.2-3.3-10.3-3.4-21.2-3.4l12.3 32.5zm-6.1-71.3l-3.9 13-14.3-11.8zm-254.8 7.1c1.7 10.6 4.7 17.7 8.8 21.9-9.3 6.6-27.5 13.9-46.5 16l.5 1.2a50.22 50.22 0 0 0 24.8-2.5l-7.1 13c4.2-1.7 10.1-7.1 17.7-14.8 11.9-5.5 12.7-5.1 20.2-16-12.7-6.4-15.7-13.7-18.4-18.8zm3.7-102.3c-6.4-3.4-10.6 3-12.3 18.9s2.5 29.5 11.8 39.6 18.2 10.6 26.1 3 3.4-23.6-11.3-47.7a39.57 39.57 0 0 0-14.27-13.8zm-4.7 46.3c5.4 2.2 10.5 1.9 12.3-10.6v-4.7l-1.2.5c-4.3-3.1-2.5-4.5-1.7-6.2l.5-.5c-.9-1.2-5-8.1-12.5 4.7-.5-13.5.5-21.9 3-24.8 1.2-2.5 4.7-1.2 11.3 4.2 6.4 5.4 11.3 16 15.2 32.5 6.5 28-19.8 26.2-26.9 4.9zm-45-5.5c1.6.3 9.3-1.1 9.3-14.8h-.5c-5.4-1.1-2.2-5.5-.7-5.9-1.7-3-3.4-4.2-5.4-4.7-8.1 0-11.6 12.7-8.1 21.2a7.51 7.51 0 0 0 5.43 4.2zM216 82.9l-2.5.5.5 3a48.94 48.94 0 0 1 26.1 5.9c-2.5-5.5-10-14.3-28.3-14.3l.5 2.5zm-71.8 49.4c21.7 16.8 16.5 21.4 46.5 23.6l-2.9-4.7a42.67 42.67 0 0 0 14.8-28.3c1.7-16-1.2-29.5-8.8-41.3l13-7.6a2.26 2.26 0 0 0-.5-1.7 14.21 14.21 0 0 0-13.5 1.7c-12.7 6.7-28 20.9-29 22.4-1.7 1.7-3.4 5.9-5.4 13.5a99.61 99.61 0 0 0-2.9 23.6c-4.7-8-10.5-6.4-19.9-5.9l7.1 7.6c-16.5 0-23.3 15.4-23.6 16 6.8 0 4.6-7.6 30-12.3-4.3-6.3-3.3-5-4.9-6.6zm18.7-18.7c1.2-7.6 3.4-13 6.4-17.2 5.4-6.4 10.6-10.1 16-11.8 4.2-1.7 7.1 1.2 10.1 9.3a72.14 72.14 0 0 1 3 25.3c-.5 9.3-3.4 17.2-8.4 23.1-2.9 3.4-5.4 5.9-6.4 7.6a39.21 39.21 0 0 1-11.3-.5l-7.1-3.4-5.4-6.4c.8-10 1.3-18.8 3.1-26zm42 56.1c-34.8 14.4-34.7 14-36.1 14.3-20.8 4.7-19-24.4-18.9-24.8l5.9-1.2-.5-2.5c-20.2-2.6-31 4.2-32.5 4.9.5.5 3 3.4 5.9 9.3 4.2-6.4 8.8-10.1 15.2-10.6a83.47 83.47 0 0 0 1.7 33.7c.1.5 2.6 17.4 27.5 24.1 11.3 3 27 1.2 48.9-5.4l-9.2.5c-4.2-14.8-6.4-24.8-5.9-29.5 11.3-8.8 21.9-11.3 30.7-7.6h2.5l-11.8-7.6-7.1.5c-5.9 1.2-12.3 4.2-19.4 8.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "themeco": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5c6", + "label": "Themeco", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M202.9 8.43c9.9-5.73 26-5.82 35.95-.21L430 115.85c10 5.6 18 19.44 18 30.86V364c0 11.44-8.06 25.29-18 31L238.81 503.74c-9.93 5.66-26 5.57-35.85-.21L17.86 395.12C8 389.34 0 375.38 0 364V146.71c0-11.44 8-25.36 17.91-31.08zm-77.4 199.83c-15.94 0-31.89.14-47.83.14v101.45H96.8V280h28.7c49.71 0 49.56-71.74 0-71.74zm140.14 100.29l-30.73-34.64c37-7.51 34.8-65.23-10.87-65.51-16.09 0-32.17-.14-48.26-.14v101.59h19.13v-33.91h18.41l29.56 33.91h22.76zm-41.59-82.32c23.34 0 23.26 32.46 0 32.46h-29.13v-32.46zm-95.56-1.6c21.18 0 21.11 38.85 0 38.85H96.18v-38.84zm192.65-18.25c-68.46 0-71 105.8 0 105.8 69.48-.01 69.41-105.8 0-105.8zm0 17.39c44.12 0 44.8 70.86 0 70.86s-44.43-70.86 0-70.86z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "themeisle": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2b2", + "label": "ThemeIsle", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "thermometer": { + "aliases": { + "unicodes": { + "secondary": [ + "10f491" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "mercury", + "status", + "temperature" + ] + }, + "unicode": "f491", + "label": "Thermometer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 382.1V293.3c0-14.9 5.9-29.1 16.4-39.6l27.3-27.3 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 45.5-45.5C355.2 10.9 381.4 0 408.8 0C465.8 0 512 46.2 512 103.2c0 27.4-10.9 53.6-30.2 73L258.3 399.6c-10.5 10.5-24.7 16.4-39.6 16.4H129.9L41 505c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l89-89z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "think-peaks": { + "changes": [ + "5.4.2", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f731", + "label": "Think Peaks", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M465.4 409.4l87.1-150.2-32-.3-55.1 95L259.2 0 23 407.4l32 .3L259.2 55.6zm-355.3-44.1h32.1l117.4-202.5L463 511.9l32.5.1-235.8-404.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "thumbs-down": { + "aliases": { + "unicodes": { + "composite": [ + "1f44e", + "f088" + ], + "secondary": [ + "10f165" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "-1", + "disagree", + "disapprove", + "dislike", + "down", + "hand", + "social", + "thumb", + "thumbs down", + "thumbs-o-down" + ] + }, + "unicode": "f165", + "label": "Thumbs Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M313.4 479.1c26-5.2 42.9-30.5 37.7-56.5l-2.3-11.4c-5.3-26.7-15.1-52.1-28.8-75.2H464c26.5 0 48-21.5 48-48c0-18.5-10.5-34.6-25.9-42.6C497 236.6 504 223.1 504 208c0-23.4-16.8-42.9-38.9-47.1c4.4-7.3 6.9-15.8 6.9-24.9c0-21.3-13.9-39.4-33.1-45.6c.7-3.3 1.1-6.8 1.1-10.4c0-26.5-21.5-48-48-48H294.5c-19 0-37.5 5.6-53.3 16.1L202.7 73.8C176 91.6 160 121.6 160 153.7V192v48 24.9c0 29.2 13.3 56.7 36 75l7.4 5.9c26.5 21.2 44.6 51 51.2 84.2l2.3 11.4c5.2 26 30.5 42.9 56.5 37.7zM32 384H96c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H32C14.3 96 0 110.3 0 128V352c0 17.7 14.3 32 32 32z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M323.8 477.2c-38.2 10.9-78.1-11.2-89-49.4l-5.7-20c-3.7-13-10.4-25-19.5-35l-51.3-56.4c-8.9-9.8-8.2-25 1.6-33.9s25-8.2 33.9 1.6l51.3 56.4c14.1 15.5 24.4 34 30.1 54.1l5.7 20c3.6 12.7 16.9 20.1 29.7 16.5s20.1-16.9 16.5-29.7l-5.7-20c-5.7-19.9-14.7-38.7-26.6-55.5c-5.2-7.3-5.8-16.9-1.7-24.9s12.3-13 21.3-13L448 288c8.8 0 16-7.2 16-16c0-6.8-4.3-12.7-10.4-15c-7.4-2.8-13-9-14.9-16.7s.1-15.8 5.3-21.7c2.5-2.8 4-6.5 4-10.6c0-7.8-5.6-14.3-13-15.7c-8.2-1.6-15.1-7.3-18-15.2s-1.6-16.7 3.6-23.3c2.1-2.7 3.4-6.1 3.4-9.9c0-6.7-4.2-12.6-10.2-14.9c-11.5-4.5-17.7-16.9-14.4-28.8c.4-1.3 .6-2.8 .6-4.3c0-8.8-7.2-16-16-16H286.5c-12.6 0-25 3.7-35.5 10.7l-61.7 41.1c-11 7.4-25.9 4.4-33.3-6.7s-4.4-25.9 6.7-33.3l61.7-41.1c18.4-12.3 40-18.8 62.1-18.8H384c34.7 0 62.9 27.6 64 62c14.6 11.7 24 29.7 24 50c0 4.5-.5 8.8-1.3 13c15.4 11.7 25.3 30.2 25.3 51c0 6.5-1 12.8-2.8 18.7C504.8 238.3 512 254.3 512 272c0 35.3-28.6 64-64 64l-92.3 0c4.7 10.4 8.7 21.2 11.8 32.2l5.7 20c10.9 38.2-11.2 78.1-49.4 89zM32 384c-17.7 0-32-14.3-32-32V128c0-17.7 14.3-32 32-32H96c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "thumbs-up": { + "aliases": { + "unicodes": { + "composite": [ + "1f44d", + "f087" + ], + "secondary": [ + "10f164" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "+1", + "agree", + "approve", + "favorite", + "hand", + "like", + "ok", + "okay", + "social", + "success", + "thumb", + "thumbs up", + "thumbs-o-up", + "up", + "yes", + "you got it dude" + ] + }, + "unicode": "f164", + "label": "Thumbs Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M313.4 32.9c26 5.2 42.9 30.5 37.7 56.5l-2.3 11.4c-5.3 26.7-15.1 52.1-28.8 75.2H464c26.5 0 48 21.5 48 48c0 18.5-10.5 34.6-25.9 42.6C497 275.4 504 288.9 504 304c0 23.4-16.8 42.9-38.9 47.1c4.4 7.3 6.9 15.8 6.9 24.9c0 21.3-13.9 39.4-33.1 45.6c.7 3.3 1.1 6.8 1.1 10.4c0 26.5-21.5 48-48 48H294.5c-19 0-37.5-5.6-53.3-16.1l-38.5-25.7C176 420.4 160 390.4 160 358.3V320 272 247.1c0-29.2 13.3-56.7 36-75l7.4-5.9c26.5-21.2 44.6-51 51.2-84.2l2.3-11.4c5.2-26 30.5-42.9 56.5-37.7zM32 192H96c17.7 0 32 14.3 32 32V448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M323.8 34.8c-38.2-10.9-78.1 11.2-89 49.4l-5.7 20c-3.7 13-10.4 25-19.5 35l-51.3 56.4c-8.9 9.8-8.2 25 1.6 33.9s25 8.2 33.9-1.6l51.3-56.4c14.1-15.5 24.4-34 30.1-54.1l5.7-20c3.6-12.7 16.9-20.1 29.7-16.5s20.1 16.9 16.5 29.7l-5.7 20c-5.7 19.9-14.7 38.7-26.6 55.5c-5.2 7.3-5.8 16.9-1.7 24.9s12.3 13 21.3 13L448 224c8.8 0 16 7.2 16 16c0 6.8-4.3 12.7-10.4 15c-7.4 2.8-13 9-14.9 16.7s.1 15.8 5.3 21.7c2.5 2.8 4 6.5 4 10.6c0 7.8-5.6 14.3-13 15.7c-8.2 1.6-15.1 7.3-18 15.2s-1.6 16.7 3.6 23.3c2.1 2.7 3.4 6.1 3.4 9.9c0 6.7-4.2 12.6-10.2 14.9c-11.5 4.5-17.7 16.9-14.4 28.8c.4 1.3 .6 2.8 .6 4.3c0 8.8-7.2 16-16 16H286.5c-12.6 0-25-3.7-35.5-10.7l-61.7-41.1c-11-7.4-25.9-4.4-33.3 6.7s-4.4 25.9 6.7 33.3l61.7 41.1c18.4 12.3 40 18.8 62.1 18.8H384c34.7 0 62.9-27.6 64-62c14.6-11.7 24-29.7 24-50c0-4.5-.5-8.8-1.3-13c15.4-11.7 25.3-30.2 25.3-51c0-6.5-1-12.8-2.8-18.7C504.8 273.7 512 257.7 512 240c0-35.3-28.6-64-64-64l-92.3 0c4.7-10.4 8.7-21.2 11.8-32.2l5.7-20c10.9-38.2-11.2-78.1-49.4-89zM32 192c-17.7 0-32 14.3-32 32V448c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "thumbtack": { + "aliases": { + "names": [ + "thumb-tack" + ], + "unicodes": { + "composite": [ + "1f4cc", + "1f588" + ], + "secondary": [ + "10f08d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Pushpin", + "coordinates", + "location", + "marker", + "pin", + "pushpin", + "thumb-tack" + ] + }, + "unicode": "f08d", + "label": "Thumbtack", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 32C32 14.3 46.3 0 64 0H320c17.7 0 32 14.3 32 32s-14.3 32-32 32H290.5l11.4 148.2c36.7 19.9 65.7 53.2 79.5 94.7l1 3c3.3 9.8 1.6 20.5-4.4 28.8s-15.7 13.3-26 13.3H32c-10.3 0-19.9-4.9-26-13.3s-7.7-19.1-4.4-28.8l1-3c13.8-41.5 42.8-74.8 79.5-94.7L93.5 64H64C46.3 64 32 49.7 32 32zM160 384h64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ticket": { + "aliases": { + "unicodes": { + "composite": [ + "1f39f" + ], + "secondary": [ + "10f145" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admission", + "admission tickets", + "movie", + "pass", + "support", + "ticket" + ] + }, + "unicode": "f145", + "label": "Ticket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128v64c0 8.8 7.4 15.7 15.7 18.6C34.5 217.1 48 235 48 256s-13.5 38.9-32.3 45.4C7.4 304.3 0 311.2 0 320v64c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V320c0-8.8-7.4-15.7-15.7-18.6C541.5 294.9 528 277 528 256s13.5-38.9 32.3-45.4c8.3-2.9 15.7-9.8 15.7-18.6V128c0-35.3-28.7-64-64-64H64zm64 112l0 160c0 8.8 7.2 16 16 16H432c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H144c-8.8 0-16 7.2-16 16zM96 160c0-17.7 14.3-32 32-32H448c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ticket-simple": { + "aliases": { + "names": [ + "ticket-alt" + ], + "unicodes": { + "secondary": [ + "10f3ff" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "movie", + "pass", + "support", + "ticket" + ] + }, + "unicode": "f3ff", + "label": "Ticket Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H512c35.3 0 64 28.7 64 64v64c0 8.8-7.4 15.7-15.7 18.6C541.5 217.1 528 235 528 256s13.5 38.9 32.3 45.4c8.3 2.9 15.7 9.8 15.7 18.6v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320c0-8.8 7.4-15.7 15.7-18.6C34.5 294.9 48 277 48 256s-13.5-38.9-32.3-45.4C7.4 207.7 0 200.8 0 192V128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tiktok": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07b", + "label": "TikTok", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "timeline": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chronological", + "deadline", + "history", + "linear" + ] + }, + "unicode": "e29c", + "label": "Timeline", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm32 97.3c28.3-12.3 48-40.5 48-73.3c0-44.2-35.8-80-80-80S48 51.8 48 96c0 32.8 19.7 61 48 73.3V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H288v54.7c-28.3 12.3-48 40.5-48 73.3c0 44.2 35.8 80 80 80s80-35.8 80-80c0-32.8-19.7-61-48-73.3V288H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H544V169.3c28.3-12.3 48-40.5 48-73.3c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 32.8 19.7 61 48 73.3V224H160V169.3zM488 96a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM320 392a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toggle-off": { + "aliases": { + "unicodes": { + "secondary": [ + "10f204" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "button", + "off", + "on", + "switch" + ] + }, + "unicode": "f204", + "label": "Toggle Off", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 128c70.7 0 128 57.3 128 128s-57.3 128-128 128H192c-70.7 0-128-57.3-128-128s57.3-128 128-128H384zM576 256c0-106-86-192-192-192H192C86 64 0 150 0 256S86 448 192 448H384c106 0 192-86 192-192zM192 352a96 96 0 1 0 0-192 96 96 0 1 0 0 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toggle-on": { + "aliases": { + "unicodes": { + "secondary": [ + "10f205" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "button", + "off", + "on", + "switch" + ] + }, + "unicode": "f205", + "label": "Toggle On", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M192 64C86 64 0 150 0 256S86 448 192 448H384c106 0 192-86 192-192s-86-192-192-192H192zm192 96a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toilet": { + "aliases": { + "unicodes": { + "composite": [ + "1f6bd" + ], + "secondary": [ + "10f7d8" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "flush", + "john", + "loo", + "pee", + "plumbing", + "poop", + "porcelain", + "potty", + "restroom", + "throne", + "toile", + "toilet", + "washroom", + "waste", + "wc" + ] + }, + "unicode": "f7d8", + "label": "Toilet", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M24 0C10.7 0 0 10.7 0 24S10.7 48 24 48h8V196.9c-1.9 1.4-3.8 2.9-5.6 4.4C10.9 214.5 0 232.9 0 256c0 46.9 14.3 84.1 37 112.5c14.2 17.7 31.1 31.3 48.5 41.8L65.6 469.9c-3.3 9.8-1.6 20.5 4.4 28.8s15.7 13.3 26 13.3H352c10.3 0 19.9-4.9 26-13.3s7.7-19.1 4.4-28.8l-19.8-59.5c17.4-10.5 34.3-24.1 48.5-41.8c22.7-28.4 37-65.5 37-112.5c0-23.1-10.9-41.5-26.4-54.6c-1.8-1.5-3.7-3-5.6-4.4V48h8c13.3 0 24-10.7 24-24s-10.7-24-24-24H24zM384 256.3c0 1-.3 2.6-3.8 5.6c-4.8 4.1-14 9-29.3 13.4C320.5 284 276.1 288 224 288s-96.5-4-126.9-12.8c-15.3-4.4-24.5-9.3-29.3-13.4c-3.5-3-3.8-4.6-3.8-5.6l0-.3 0-.1c0-1 0-2.5 3.8-5.8c4.8-4.1 14-9 29.3-13.4C127.5 228 171.9 224 224 224s96.5 4 126.9 12.8c15.3 4.4 24.5 9.3 29.3 13.4c3.8 3.2 3.8 4.8 3.8 5.8l0 .1 0 .3zM328.2 384l-.2 .5 0-.5h.2zM112 64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toilet-paper": { + "aliases": { + "unicodes": { + "composite": [ + "1f9fb" + ], + "secondary": [ + "10f71e" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "covid-19", + "halloween", + "holiday", + "lavatory", + "paper towels", + "prank", + "privy", + "restroom", + "roll", + "roll of paper", + "toilet", + "toilet paper", + "wipe" + ] + }, + "unicode": "f71e", + "label": "Toilet Paper", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M428.2 0C381.2 49.6 368 126.5 368 192c0 158.8-27.3 247-42.7 283.9c-10 24-33.2 36.1-55.4 36.1H32c-11.5 0-22.2-6.2-27.8-16.2s-5.6-22.3 .4-32.2c9.8-17.7 15.4-38.2 20.5-57.7C36.3 362.8 48 293.5 48 192C48 86 91 0 144 0H428.2zM496 384c-53 0-96-86-96-192S443 0 496 0s96 86 96 192s-43 192-96 192zm0-128c17.7 0 32-28.7 32-64s-14.3-64-32-64s-32 28.7-32 64s14.3 64 32 64zM128 208a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm64 0a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm48 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm80-16a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toilet-paper-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e072" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "covid-19", + "halloween", + "holiday", + "lavatory", + "leaves", + "prank", + "privy", + "restroom", + "roll", + "toilet", + "trouble", + "ut oh", + "wipe" + ] + }, + "unicode": "e072", + "label": "Toilet Paper Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-109.7-86C569.9 374 608 291.9 608 192C608 86 565 0 512 0s-96 86-96 192c0 49.1 9.2 93.9 24.4 127.9l-59-46.2c1.6-24.8 2.6-52 2.6-81.6c0-65.5 13.2-142.4 60.2-192H160c-24.8 0-47.4 18.8-64.4 49.6L38.8 5.1zM66.5 148.4C64.9 162.4 64 177 64 192c0 101.5-11.7 170.8-23 213.9c-5.1 19.4-10.7 39.9-20.5 57.7c-5.9 9.9-6.1 22.1-.4 32.2S36.5 512 48 512H285.9c22.3 0 45.4-12.1 55.4-36.1c7.4-17.7 17.5-47.2 26-90.6L66.5 148.4zM544 192c0 35.3-14.3 64-32 64s-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toilet-portable": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "outhouse", + "toilet" + ] + }, + "unicode": "e583", + "label": "Toilet Portable", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 32V64H320V32c0-17.7-14.3-32-32-32H32C14.3 0 0 14.3 0 32zM24 96H0v24V488c0 13.3 10.7 24 24 24s24-10.7 24-24v-8H272v8c0 13.3 10.7 24 24 24s24-10.7 24-24V120 96H296 24zM256 240v64c0 8.8-7.2 16-16 16s-16-7.2-16-16V240c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toilets-portable": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "outhouse", + "toilet" + ] + }, + "unicode": "e584", + "label": "Toilets Portable", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M32 0H224c17.7 0 32 14.3 32 32V64H0V32C0 14.3 14.3 0 32 0zM0 96H24 232h24v24V488c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H48v8c0 13.3-10.7 24-24 24s-24-10.7-24-24V120 96zM192 224c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V240c0-8.8-7.2-16-16-16zM352 0H544c17.7 0 32 14.3 32 32V64H320V32c0-17.7 14.3-32 32-32zM320 96h24H552h24v24V488c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H368v8c0 13.3-10.7 24-24 24s-24-10.7-24-24V120 96zM512 224c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V240c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toolbox": { + "aliases": { + "unicodes": { + "composite": [ + "1f9f0" + ], + "secondary": [ + "10f552" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "chest", + "container", + "fix", + "mechanic", + "repair", + "settings", + "tool", + "toolbox", + "tools" + ] + }, + "unicode": "f552", + "label": "Toolbox", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 88v40H336V88c0-4.4-3.6-8-8-8H184c-4.4 0-8 3.6-8 8zm-48 40V88c0-30.9 25.1-56 56-56H328c30.9 0 56 25.1 56 56v40h28.1c12.7 0 24.9 5.1 33.9 14.1l51.9 51.9c9 9 14.1 21.2 14.1 33.9V304H384V288c0-17.7-14.3-32-32-32s-32 14.3-32 32v16H192V288c0-17.7-14.3-32-32-32s-32 14.3-32 32v16H0V227.9c0-12.7 5.1-24.9 14.1-33.9l51.9-51.9c9-9 21.2-14.1 33.9-14.1H128zM0 416V336H128v16c0 17.7 14.3 32 32 32s32-14.3 32-32V336H320v16c0 17.7 14.3 32 32 32s32-14.3 32-32V336H512v80c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tooth": { + "aliases": { + "unicodes": { + "composite": [ + "1f9b7" + ], + "secondary": [ + "10f5c9" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bicuspid", + "dental", + "dentist", + "molar", + "mouth", + "teeth", + "tooth" + ] + }, + "unicode": "f5c9", + "label": "Tooth", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M154.1 52.1C137.3 39.1 116.7 32 95.5 32C42.7 32 0 74.7 0 127.5v6.2c0 15.8 3.7 31.3 10.7 45.5l23.5 47.1c4.5 8.9 7.6 18.4 9.4 28.2L80.4 460.2c2 11.2 11.6 19.4 22.9 19.8s21.4-7.4 24-18.4l28.9-121.3C160.2 323.7 175 312 192 312s31.8 11.7 35.8 28.3l28.9 121.3c2.6 11.1 12.7 18.8 24 18.4s20.9-8.6 22.9-19.8l36.7-205.8c1.8-9.8 4.9-19.3 9.4-28.2l23.5-47.1c7.1-14.1 10.7-29.7 10.7-45.5v-2.1c0-55-44.6-99.6-99.6-99.6c-24.1 0-47.4 8.8-65.6 24.6l-3.2 2.8 19.5 15.2c7 5.4 8.2 15.5 2.8 22.5s-15.5 8.2-22.5 2.8l-24.4-19-37-28.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "torii-gate": { + "aliases": { + "unicodes": { + "composite": [ + "26e9" + ], + "secondary": [ + "10f6a1" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "religion", + "shinto", + "shinto shrine", + "shintoism", + "shrine" + ] + }, + "unicode": "f6a1", + "label": "Torii Gate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 80c0 26.5 21.5 48 48 48H64v64h64V128h96v64h64V128h96v64h64V128h16c26.5 0 48-21.5 48-48V13.4C512 6 506 0 498.6 0c-1.7 0-3.4 .3-5 1l-49 19.6C425.7 28.1 405.5 32 385.2 32H126.8c-20.4 0-40.5-3.9-59.4-11.4L18.4 1c-1.6-.6-3.3-1-5-1C6 0 0 6 0 13.4V80zM64 288V480c0 17.7 14.3 32 32 32s32-14.3 32-32V288H384V480c0 17.7 14.3 32 32 32s32-14.3 32-32V288h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tornado": { + "aliases": { + "unicodes": { + "composite": [ + "1f32a" + ], + "secondary": [ + "10f76f" + ] + } + }, + "changes": [ + "5.5.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cloud", + "cyclone", + "dorothy", + "landspout", + "tornado", + "toto", + "twister", + "vortext", + "waterspout", + "weather", + "whirlwind" + ] + }, + "unicode": "f76f", + "label": "Tornado", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32V45.6C0 62.7 1.7 79.6 5 96H357.8c3.2-6.9 7.5-13.3 13-18.8l38.6-38.6c4.2-4.2 6.6-10 6.6-16C416 10.1 405.9 0 393.4 0H32C14.3 0 0 14.3 0 32zm352.2 96H13.6c12.2 35.9 32.3 68.7 58.8 96H412l-47.2-62.9c-7.3-9.7-11.6-21.2-12.6-33.1zm-226 138.2l116.4 68.5c8.2 4.8 15.8 10.7 22.5 17.3H445c2-9.8 3-19.9 3-30.1c0-23-5.3-45.5-15.3-65.9H110.2c5.2 3.6 10.5 7 16 10.2zM288 384c10.3 21.4 13.8 45.5 9.9 69l-5.9 35.7c-2 12.2 7.4 23.4 19.8 23.4c5.3 0 10.4-2.1 14.2-5.9l78.2-78.2c12.8-12.8 23.1-27.7 30.4-43.9H288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tower-broadcast": { + "aliases": { + "names": [ + "broadcast-tower" + ], + "unicodes": { + "secondary": [ + "10f519" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airwaves", + "antenna", + "communication", + "emergency", + "radio", + "reception", + "waves" + ] + }, + "unicode": "f519", + "label": "Tower Broadcast", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M80.3 44C69.8 69.9 64 98.2 64 128s5.8 58.1 16.3 84c6.6 16.4-1.3 35-17.7 41.7s-35-1.3-41.7-17.7C7.4 202.6 0 166.1 0 128S7.4 53.4 20.9 20C27.6 3.6 46.2-4.3 62.6 2.3S86.9 27.6 80.3 44zM555.1 20C568.6 53.4 576 89.9 576 128s-7.4 74.6-20.9 108c-6.6 16.4-25.3 24.3-41.7 17.7S489.1 228.4 495.7 212c10.5-25.9 16.3-54.2 16.3-84s-5.8-58.1-16.3-84C489.1 27.6 497 9 513.4 2.3s35 1.3 41.7 17.7zM352 128c0 23.7-12.9 44.4-32 55.4V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V183.4c-19.1-11.1-32-31.7-32-55.4c0-35.3 28.7-64 64-64s64 28.7 64 64zM170.6 76.8C163.8 92.4 160 109.7 160 128s3.8 35.6 10.6 51.2c7.1 16.2-.3 35.1-16.5 42.1s-35.1-.3-42.1-16.5c-10.3-23.6-16-49.6-16-76.8s5.7-53.2 16-76.8c7.1-16.2 25.9-23.6 42.1-16.5s23.6 25.9 16.5 42.1zM464 51.2c10.3 23.6 16 49.6 16 76.8s-5.7 53.2-16 76.8c-7.1 16.2-25.9 23.6-42.1 16.5s-23.6-25.9-16.5-42.1c6.8-15.6 10.6-32.9 10.6-51.2s-3.8-35.6-10.6-51.2c-7.1-16.2 .3-35.1 16.5-42.1s35.1 .3 42.1 16.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tower-cell": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airwaves", + "antenna", + "communication", + "radio", + "reception", + "waves" + ] + }, + "unicode": "e585", + "label": "Tower Cell", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M62.6 2.3C46.2-4.3 27.6 3.6 20.9 20C7.4 53.4 0 89.9 0 128s7.4 74.6 20.9 108c6.6 16.4 25.3 24.3 41.7 17.7S86.9 228.4 80.3 212C69.8 186.1 64 157.8 64 128s5.8-58.1 16.3-84C86.9 27.6 79 9 62.6 2.3zm450.8 0C497 9 489.1 27.6 495.7 44C506.2 69.9 512 98.2 512 128s-5.8 58.1-16.3 84c-6.6 16.4 1.3 35 17.7 41.7s35-1.3 41.7-17.7c13.5-33.4 20.9-69.9 20.9-108s-7.4-74.6-20.9-108C548.4 3.6 529.8-4.3 513.4 2.3zM340.1 165.2c7.5-10.5 11.9-23.3 11.9-37.2c0-35.3-28.7-64-64-64s-64 28.7-64 64c0 13.9 4.4 26.7 11.9 37.2L98.9 466.8c-7.3 16.1-.2 35.1 15.9 42.4s35.1 .2 42.4-15.9L177.7 448H398.3l20.6 45.2c7.3 16.1 26.3 23.2 42.4 15.9s23.2-26.3 15.9-42.4L340.1 165.2zM369.2 384H206.8l14.5-32H354.7l14.5 32zM288 205.3L325.6 288H250.4L288 205.3zM163.3 73.6c5.3-12.1-.2-26.3-12.4-31.6s-26.3 .2-31.6 12.4C109.5 77 104 101.9 104 128s5.5 51 15.3 73.6c5.3 12.1 19.5 17.7 31.6 12.4s17.7-19.5 12.4-31.6C156 165.8 152 147.4 152 128s4-37.8 11.3-54.4zM456.7 54.4c-5.3-12.1-19.5-17.7-31.6-12.4s-17.7 19.5-12.4 31.6C420 90.2 424 108.6 424 128s-4 37.8-11.3 54.4c-5.3 12.1 .2 26.3 12.4 31.6s26.3-.2 31.6-12.4C466.5 179 472 154.1 472 128s-5.5-51-15.3-73.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tower-observation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fire tower", + "view" + ] + }, + "unicode": "e586", + "label": "Tower Observation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M241.7 3.4c9-4.5 19.6-4.5 28.6 0l160 80c15.8 7.9 22.2 27.1 14.3 42.9C439 137.5 427.7 144 416 144v80c0 17.7-14.3 32-32 32h-4.9l32 192H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H384.5c-.4 0-.8 0-1.1 0H128.6c-.4 0-.8 0-1.1 0H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l32-192H128c-17.7 0-32-14.3-32-32V144c-11.7 0-23-6.5-28.6-17.7c-7.9-15.8-1.5-35 14.3-42.9l160-80zM314.5 448L256 399.2 197.5 448h117zM197.8 256l-4.7 28.3L256 336.8l62.9-52.5L314.2 256H197.8zm-13.9 83.2l-11.2 67L218.5 368l-34.6-28.8zM293.5 368l45.8 38.1-11.2-67L293.5 368zM176 128c-8.8 0-16 7.2-16 16s7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tractor": { + "aliases": { + "unicodes": { + "composite": [ + "1f69c" + ], + "secondary": [ + "10f722" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agriculture", + "farm", + "tractor", + "vehicle" + ] + }, + "unicode": "f722", + "label": "Tractor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 64c0-35.3 28.7-64 64-64H266.3c26.2 0 49.7 15.9 59.4 40.2L373.7 160H480V126.2c0-24.8 5.8-49.3 16.9-71.6l2.5-5c7.9-15.8 27.1-22.2 42.9-14.3s22.2 27.1 14.3 42.9l-2.5 5c-6.7 13.3-10.1 28-10.1 42.9V160h56c22.1 0 40 17.9 40 40v45.4c0 16.5-8.5 31.9-22.6 40.7l-43.3 27.1c-14.2-5.9-29.8-9.2-46.1-9.2c-39.3 0-74.1 18.9-96 48H352c0 17.7-14.3 32-32 32h-8.2c-1.7 4.8-3.7 9.5-5.8 14.1l5.8 5.8c12.5 12.5 12.5 32.8 0 45.3l-22.6 22.6c-12.5 12.5-32.8 12.5-45.3 0l-5.8-5.8c-4.6 2.2-9.3 4.1-14.1 5.8V480c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32v-8.2c-4.8-1.7-9.5-3.7-14.1-5.8l-5.8 5.8c-12.5 12.5-32.8 12.5-45.3 0L40.2 449.1c-12.5-12.5-12.5-32.8 0-45.3l5.8-5.8c-2.2-4.6-4.1-9.3-5.8-14.1H32c-17.7 0-32-14.3-32-32V320c0-17.7 14.3-32 32-32h8.2c1.7-4.8 3.7-9.5 5.8-14.1l-5.8-5.8c-12.5-12.5-12.5-32.8 0-45.3l22.6-22.6c9-9 21.9-11.5 33.1-7.6V192 160 64zm170.3 0H160v96h32H304.7L266.3 64zM176 256a80 80 0 1 0 0 160 80 80 0 1 0 0-160zM528 448a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0 64c-48.6 0-88-39.4-88-88c0-29.8 14.8-56.1 37.4-72c14.3-10.1 31.8-16 50.6-16c2.7 0 5.3 .1 7.9 .3c44.9 4 80.1 41.7 80.1 87.7c0 48.6-39.4 88-88 88z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trade-federation": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f513", + "label": "Trade Federation", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8.8c-137 0-248 111-248 248s111 248 248 248 248-111 248-248-111-248-248-248zm0 482.8c-129.7 0-234.8-105.1-234.8-234.8S118.3 22 248 22s234.8 105.1 234.8 234.8S377.7 491.6 248 491.6zm155.1-328.5v-46.8H209.3V198H54.2l36.7 46h117.7v196.8h48.8V245h83.3v-47h-83.3v-34.8h145.7zm-73.3 45.1v23.9h-82.9v197.4h-26.8V232.1H96.3l-20.1-23.9h143.9v-80.6h171.8V152h-145v56.2zm-161.3-69l-12.4-20.7 2.1 23.8-23.5 5.4 23.3 5.4-2.1 24 12.3-20.5 22.2 9.5-15.7-18.1 15.8-18.1zm-29.6-19.7l9.3-11.5-12.7 5.9-8-12.4 1.7 13.9-14.3 3.8 13.7 2.7-.8 14.7 6.8-12.2 13.8 5.3zm165.4 145.2l-13.1 5.6-7.3-12.2 1.3 14.2-13.9 3.2 13.9 3.2-1.2 14.2 7.3-12.2 13.1 5.5-9.4-10.7zm106.9-77.2l-20.9 9.1-12-19.6 2.2 22.7-22.3 5.4 22.2 4.9-1.8 22.9 11.5-19.6 21.2 8.8-15.1-17zM248 29.9c-125.3 0-226.9 101.6-226.9 226.9S122.7 483.7 248 483.7s226.9-101.6 226.9-226.9S373.3 29.9 248 29.9zM342.6 196v51h-83.3v195.7h-52.7V245.9H89.9l-40-49.9h157.4v-81.6h197.8v50.7H259.4V196zM248 43.2c60.3 0 114.8 25 153.6 65.2H202.5V190H45.1C73.1 104.8 153.4 43.2 248 43.2zm0 427.1c-117.9 0-213.6-95.6-213.6-213.5 0-21.2 3.1-41.8 8.9-61.1L87.1 252h114.7v196.8h64.6V253h83.3v-62.7h-83.2v-19.2h145.6v-50.8c30.8 37 49.3 84.6 49.3 136.5.1 117.9-95.5 213.5-213.4 213.5zM178.8 275l-11-21.4 1.7 24.5-23.7 3.9 23.8 5.9-3.7 23.8 13-20.9 21.5 10.8-15.8-18.8 16.9-17.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "trademark": { + "aliases": { + "unicodes": { + "composite": [ + "2122" + ], + "secondary": [ + "10f25c" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copyright", + "mark", + "register", + "symbol", + "tm", + "trade mark", + "trademark" + ] + }, + "unicode": "f25c", + "label": "Trademark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M345.6 108.8c-8.3-11-22.7-15.5-35.7-11.2S288 114.2 288 128V384c0 17.7 14.3 32 32 32s32-14.3 32-32V224l86.4 115.2c6 8.1 15.5 12.8 25.6 12.8s19.6-4.7 25.6-12.8L576 224V384c0 17.7 14.3 32 32 32s32-14.3 32-32V128c0-13.8-8.8-26-21.9-30.4s-27.5 .1-35.7 11.2L464 266.7 345.6 108.8zM0 128c0 17.7 14.3 32 32 32H96V384c0 17.7 14.3 32 32 32s32-14.3 32-32V160h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32C14.3 96 0 110.3 0 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "traffic-light": { + "aliases": { + "unicodes": { + "composite": [ + "1f6a6" + ], + "secondary": [ + "10f637" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "direction", + "light", + "road", + "signal", + "traffic", + "travel", + "vertical traffic light" + ] + }, + "unicode": "f637", + "label": "Traffic Light", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V352c0 88.4 71.6 160 160 160s160-71.6 160-160V64c0-35.3-28.7-64-64-64H64zm96 416a48 48 0 1 1 0-96 48 48 0 1 1 0 96zm48-176a48 48 0 1 1 -96 0 48 48 0 1 1 96 0zm-48-80a48 48 0 1 1 0-96 48 48 0 1 1 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trailer": { + "aliases": { + "unicodes": { + "secondary": [ + "10e041" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "haul", + "moving", + "travel" + ] + }, + "unicode": "e041", + "label": "Trailer", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 32C21.5 32 0 53.5 0 80V336c0 26.5 21.5 48 48 48H65.1c7.8-54.3 54.4-96 110.9-96s103.1 41.7 110.9 96H488h8H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H544V80c0-26.5-21.5-48-48-48H48zM80 96c8.8 0 16 7.2 16 16l0 131.2c-11.4 5.9-22.2 12.9-32 21V112c0-8.8 7.2-16 16-16zm96 128c-5.4 0-10.7 .2-16 .7L160 112c0-8.8 7.2-16 16-16s16 7.2 16 16l0 112.7c-5.3-.5-10.6-.7-16-.7zm80 19.2L256 112c0-8.8 7.2-16 16-16s16 7.2 16 16l0 152.2c-9.8-8.1-20.6-15.2-32-21zM368 96c8.8 0 16 7.2 16 16l0 192c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-192c0-8.8 7.2-16 16-16zm112 16l0 192c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-192c0-8.8 7.2-16 16-16s16 7.2 16 16zM176 480a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm0-112a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "train": { + "aliases": { + "unicodes": { + "composite": [ + "1f686" + ], + "secondary": [ + "10f238" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bullet", + "commute", + "locomotive", + "railway", + "subway", + "train" + ] + }, + "unicode": "f238", + "label": "Train", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V352c0 48 35.2 87.7 81.1 94.9l-46 46C28.1 499.9 33.1 512 43 512H82.7c8.5 0 16.6-3.4 22.6-9.4L160 448H288l54.6 54.6c6 6 14.1 9.4 22.6 9.4H405c10 0 15-12.1 7.9-19.1l-46-46c46-7.1 81.1-46.9 81.1-94.9V96c0-53-43-96-96-96H96zM64 96c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96zM224 288a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "train-subway": { + "aliases": { + "names": [ + "subway" + ], + "unicodes": { + "secondary": [ + "10f239" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "machine", + "railway", + "train", + "transportation", + "vehicle" + ] + }, + "unicode": "f239", + "label": "Train Subway", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V352c0 48 35.2 87.7 81.1 94.9l-46 46C28.1 499.9 33.1 512 43 512H82.7c8.5 0 16.6-3.4 22.6-9.4L160 448H288l54.6 54.6c6 6 14.1 9.4 22.6 9.4H405c10 0 15-12.1 7.9-19.1l-46-46c46-7.1 81.1-46.9 81.1-94.9V96c0-53-43-96-96-96H96zM64 128c0-17.7 14.3-32 32-32h80c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V128zM272 96h80c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H272c-17.7 0-32-14.3-32-32V128c0-17.7 14.3-32 32-32zM64 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm288-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "train-tram": { + "aliases": { + "unicodes": { + "composite": [ + "1f68a" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crossing", + "machine", + "mountains", + "seasonal", + "tram", + "transportation", + "trolleybus" + ] + }, + "unicode": "e5b4", + "label": "Train Tram", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M86.8 48c-12.2 0-23.6 5.5-31.2 15L42.7 79C34.5 89.3 19.4 91 9 82.7S-3 59.4 5.3 49L18 33C34.7 12.2 60 0 86.8 0H361.2c26.7 0 52 12.2 68.7 33l12.8 16c8.3 10.4 6.6 25.5-3.7 33.7s-25.5 6.6-33.7-3.7L392.5 63c-7.6-9.5-19.1-15-31.2-15H248V96h40c53 0 96 43 96 96V352c0 30.6-14.3 57.8-36.6 75.4l65.5 65.5c7.1 7.1 2.1 19.1-7.9 19.1H365.3c-8.5 0-16.6-3.4-22.6-9.4L288 448H160l-54.6 54.6c-6 6-14.1 9.4-22.6 9.4H43c-10 0-15-12.1-7.9-19.1l65.5-65.5C78.3 409.8 64 382.6 64 352V192c0-53 43-96 96-96h40V48H86.8zM160 160c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32H160zm32 192a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm96 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "transgender": { + "aliases": { + "names": [ + "transgender-alt" + ], + "unicodes": { + "composite": [ + "26a7" + ], + "secondary": [ + "10f225" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "female", + "gender", + "intersex", + "male", + "transgender", + "transgender symbol" + ] + }, + "unicode": "f225", + "label": "Transgender", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M112 0c6.5 0 12.3 3.9 14.8 9.9s1.1 12.9-3.5 17.4l-31 31L112 78.1l7-7c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-7 7 15.2 15.2C187.7 107.6 220.5 96 256 96s68.3 11.6 94.9 31.2l68.8-68.8-31-31c-4.6-4.6-5.9-11.5-3.5-17.4s8.3-9.9 14.8-9.9h96c8.8 0 16 7.2 16 16v96c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5l-31-31-68.8 68.8C404.4 187.7 416 220.5 416 256c0 80.2-59 146.6-136 158.2V432h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H280v8c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h16V414.2C155 402.6 96 336.2 96 256c0-35.5 11.6-68.3 31.2-94.9L112 145.9l-7 7c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l7-7L58.3 92.3l-31 31c-4.6 4.6-11.5 5.9-17.4 3.5S0 118.5 0 112V16C0 7.2 7.2 0 16 0h96zM352 256a96 96 0 1 0 -192 0 96 96 0 1 0 192 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1f8" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "garbage", + "hide", + "remove" + ] + }, + "unicode": "f1f8", + "label": "Trash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M135.2 17.7L128 32H32C14.3 32 0 46.3 0 64S14.3 96 32 96H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H320l-7.2-14.3C307.4 6.8 296.3 0 284.2 0H163.8c-12.1 0-23.2 6.8-28.6 17.7zM416 128H32L53.2 467c1.6 25.3 22.6 45 47.9 45H346.9c25.3 0 46.3-19.7 47.9-45L416 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trash-arrow-up": { + "aliases": { + "names": [ + "trash-restore" + ], + "unicodes": { + "secondary": [ + "10f829" + ] + } + }, + "changes": [ + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "delete", + "garbage", + "hide", + "oops", + "remove", + "undo" + ] + }, + "unicode": "f829", + "label": "Trash Arrow Up", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M163.8 0H284.2c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32h96l7.2-14.3C140.6 6.8 151.7 0 163.8 0zM32 128H416L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32 128zm192 64c-6.4 0-12.5 2.5-17 7l-80 80c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39V408c0 13.3 10.7 24 24 24s24-10.7 24-24V273.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-4.5-4.5-10.6-7-17-7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trash-can": { + "aliases": { + "names": [ + "trash-alt" + ], + "unicodes": { + "composite": [ + "f014" + ], + "secondary": [ + "10f2ed" + ] + } + }, + "changes": [ + "5.0.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "garbage", + "hide", + "remove", + "trash-o" + ] + }, + "unicode": "f2ed", + "label": "Trash Can", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M135.2 17.7C140.6 6.8 151.7 0 163.8 0H284.2c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32h96l7.2-14.3zM32 128H416V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V128zm96 64c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16z" + }, + "regular": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M170.5 51.6L151.5 80h145l-19-28.4c-1.5-2.2-4-3.6-6.7-3.6H177.1c-2.7 0-5.2 1.3-6.7 3.6zm147-26.6L354.2 80H368h48 8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8V432c0 44.2-35.8 80-80 80H112c-44.2 0-80-35.8-80-80V128H24c-13.3 0-24-10.7-24-24S10.7 80 24 80h8H80 93.8l36.7-55.1C140.9 9.4 158.4 0 177.1 0h93.7c18.7 0 36.2 9.4 46.6 24.9zM80 128V432c0 17.7 14.3 32 32 32H336c17.7 0 32-14.3 32-32V128H80zm80 64V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "trash-can-arrow-up": { + "aliases": { + "names": [ + "trash-restore-alt" + ], + "unicodes": { + "secondary": [ + "10f82a" + ] + } + }, + "changes": [ + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "delete", + "garbage", + "hide", + "oops", + "remove", + "undo" + ] + }, + "unicode": "f82a", + "label": "Trash Can Arrow Up", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M163.8 0H284.2c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32h96l7.2-14.3C140.6 6.8 151.7 0 163.8 0zM32 128H416V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V128zm192 64c-6.4 0-12.5 2.5-17 7l-80 80c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39V408c0 13.3 10.7 24 24 24s24-10.7 24-24V273.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-4.5-4.5-10.6-7-17-7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tree": { + "aliases": { + "unicodes": { + "composite": [ + "1f332" + ], + "secondary": [ + "10f1bb" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bark", + "evergreen tree", + "fall", + "flora", + "forest", + "nature", + "plant", + "seasonal", + "tree" + ] + }, + "unicode": "f1bb", + "label": "Tree", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M210.6 5.9L62 169.4c-3.9 4.2-6 9.8-6 15.5C56 197.7 66.3 208 79.1 208H104L30.6 281.4c-4.2 4.2-6.6 10-6.6 16C24 309.9 34.1 320 46.6 320H80L5.4 409.5C1.9 413.7 0 419 0 424.5c0 13 10.5 23.5 23.5 23.5H192v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448H424.5c13 0 23.5-10.5 23.5-23.5c0-5.5-1.9-10.8-5.4-15L368 320h33.4c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16L344 208h24.9c12.7 0 23.1-10.3 23.1-23.1c0-5.7-2.1-11.3-6-15.5L237.4 5.9C234 2.1 229.1 0 224 0s-10 2.1-13.4 5.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tree-city": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "urban" + ] + }, + "unicode": "e587", + "label": "Tree City", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 48c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48V192h40V120c0-13.3 10.7-24 24-24s24 10.7 24 24v72h24c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H432 336c-26.5 0-48-21.5-48-48V48zm64 32v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm16 80c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H368zM352 272v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm176-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H528zM512 368v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H528c-8.8 0-16 7.2-16 16zM224 160c0 6-1 11-2 16c20 14 34 38 34 64c0 45-36 80-80 80H160V480c0 18-15 32-32 32c-18 0-32-14-32-32V320H80c-45 0-80-35-80-80c0-26 13-50 33-64c-1-5-1-10-1-16c0-53 42-96 96-96c53 0 96 43 96 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trello": { + "changes": [ + "3.2.0", + "5.0.0", + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian" + ] + }, + "unicode": "f181", + "label": "Trello", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M392.3 32H56.1C25.1 32 0 57.1 0 88c-.1 0 0-4 0 336 0 30.9 25.1 56 56 56h336.2c30.8-.2 55.7-25.2 55.7-56V88c.1-30.8-24.8-55.8-55.6-56zM197 371.3c-.2 14.7-12.1 26.6-26.9 26.6H87.4c-14.8.1-26.9-11.8-27-26.6V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v254.2zm193.1-112c0 14.8-12 26.9-26.9 26.9h-81c-14.8 0-26.9-12-26.9-26.9V117.2c0-14.8 12-26.9 26.8-26.9h81.1c14.8 0 26.9 12 26.9 26.9v142.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "triangle-exclamation": { + "aliases": { + "names": [ + "exclamation-triangle", + "warning" + ], + "unicodes": { + "composite": [ + "26a0" + ], + "secondary": [ + "10f071" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.6.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alert", + "danger", + "error", + "important", + "notice", + "notification", + "notify", + "problem", + "warnin", + "warning" + ] + }, + "unicode": "f071", + "label": "Triangle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trophy": { + "aliases": { + "unicodes": { + "composite": [ + "1f3c6" + ], + "secondary": [ + "10f091" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "cup", + "game", + "prize", + "trophy", + "winner" + ] + }, + "unicode": "f091", + "label": "Trophy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M400 0H176c-26.5 0-48.1 21.8-47.1 48.2c.2 5.3 .4 10.6 .7 15.8H24C10.7 64 0 74.7 0 88c0 92.6 33.5 157 78.5 200.7c44.3 43.1 98.3 64.8 138.1 75.8c23.4 6.5 39.4 26 39.4 45.6c0 20.9-17 37.9-37.9 37.9H192c-17.7 0-32 14.3-32 32s14.3 32 32 32H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H357.9C337 448 320 431 320 410.1c0-19.6 15.9-39.2 39.4-45.6c39.9-11 93.9-32.7 138.2-75.8C542.5 245 576 180.6 576 88c0-13.3-10.7-24-24-24H446.4c.3-5.2 .5-10.4 .7-15.8C448.1 21.8 426.5 0 400 0zM48.9 112h84.4c9.1 90.1 29.2 150.3 51.9 190.6c-24.9-11-50.8-26.5-73.2-48.3c-32-31.1-58-76-63-142.3zM464.1 254.3c-22.4 21.8-48.3 37.3-73.2 48.3c22.7-40.3 42.8-100.5 51.9-190.6h84.4c-5.1 66.3-31.1 111.2-63 142.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trowel": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "build", + "construction", + "tool" + ] + }, + "unicode": "e589", + "label": "Trowel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M343.9 213.4L245.3 312l65.4 65.4c7.9 7.9 11.1 19.4 8.4 30.3s-10.8 19.6-21.5 22.9l-256 80c-11.4 3.5-23.8 .5-32.2-7.9S-2.1 481.8 1.5 470.5l80-256c3.3-10.7 12-18.9 22.9-21.5s22.4 .5 30.3 8.4L200 266.7l98.6-98.6c-14.3-14.6-14.2-38 .3-52.5l95.4-95.4c26.9-26.9 70.5-26.9 97.5 0s26.9 70.5 0 97.5l-95.4 95.4c-14.5 14.5-37.9 14.6-52.5 .3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trowel-bricks": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "build", + "construction", + "reconstruction", + "tool" + ] + }, + "unicode": "e58a", + "label": "Trowel Bricks", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M240.8 4.8C250.3 10.6 256 20.9 256 32v72h89c3.6-13.8 16.1-24 31-24h88c26.5 0 48 21.5 48 48s-21.5 48-48 48H376c-14.9 0-27.4-10.2-31-24H256v72c0 11.1-5.7 21.4-15.2 27.2s-21.2 6.4-31.1 1.4l-192-96C6.8 151.2 0 140.1 0 128s6.8-23.2 17.7-28.6l192-96c9.9-5 21.7-4.4 31.1 1.4zM288 256c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H320c-17.7 0-32-14.3-32-32V256zM32 384h96c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32zm192 0H480c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck": { + "aliases": { + "unicodes": { + "composite": [ + "1f69a", + "26df" + ], + "secondary": [ + "10f0d1" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Truck", + "cargo", + "delivery", + "delivery truck", + "shipping", + "truck", + "vehicle" + ] + }, + "unicode": "f0d1", + "label": "Truck", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V368c0 26.5 21.5 48 48 48H64c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V288 256 237.3c0-17-6.7-33.3-18.7-45.3L512 114.7c-12-12-28.3-18.7-45.3-18.7H416V48c0-26.5-21.5-48-48-48H48zM416 160h50.7L544 237.3V256H416V160zM112 416a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm368-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "access", + "fast", + "shipping", + "transport" + ] + }, + "unicode": "e58b", + "label": "Truck Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H368c26.5 0 48 21.5 48 48V96h50.7c17 0 33.3 6.7 45.3 18.7L589.3 192c12 12 18.7 28.3 18.7 45.3V256v32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V48zM416 256H544V237.3L466.7 160H416v96zM160 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm368-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM257 95c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l39 39H96c-13.3 0-24 10.7-24 24s10.7 24 24 24H262.1l-39 39c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9L257 95z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-droplet": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "thirst", + "truck", + "water", + "water supply" + ] + }, + "unicode": "e58c", + "label": "Truck Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H368c26.5 0 48 21.5 48 48V96h50.7c17 0 33.3 6.7 45.3 18.7L589.3 192c12 12 18.7 28.3 18.7 45.3V256v32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V48zM416 256H544V237.3L466.7 160H416v96zM160 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm368-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM208 272c39.8 0 72-29.6 72-66c0-27-39.4-82.9-59.9-110.3c-6.1-8.2-18.1-8.2-24.2 0C175.4 123 136 179 136 206c0 36.5 32.2 66 72 66z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-fast": { + "aliases": { + "names": [ + "shipping-fast" + ], + "unicodes": { + "secondary": [ + "10f48b" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "express", + "fedex", + "mail", + "overnight", + "package", + "ups" + ] + }, + "unicode": "f48b", + "label": "Truck Fast", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M112 0C85.5 0 64 21.5 64 48V96H16c-8.8 0-16 7.2-16 16s7.2 16 16 16H64 272c8.8 0 16 7.2 16 16s-7.2 16-16 16H64 48c-8.8 0-16 7.2-16 16s7.2 16 16 16H64 240c8.8 0 16 7.2 16 16s-7.2 16-16 16H64 16c-8.8 0-16 7.2-16 16s7.2 16 16 16H64 208c8.8 0 16 7.2 16 16s-7.2 16-16 16H64V416c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V288 256 237.3c0-17-6.7-33.3-18.7-45.3L512 114.7c-12-12-28.3-18.7-45.3-18.7H416V48c0-26.5-21.5-48-48-48H112zM544 237.3V256H416V160h50.7L544 237.3zM160 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm272 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-field": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "supplies", + "truck" + ] + }, + "unicode": "e58d", + "label": "Truck Field", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 96c0-35.3 28.7-64 64-64H320c23.7 0 44.4 12.9 55.4 32h51.8c25.3 0 48.2 14.9 58.5 38l52.8 118.8c.5 1.1 .9 2.1 1.3 3.2H544c35.3 0 64 28.7 64 64v32c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V288c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32V96zM384 224h85.9l-42.7-96H384v96zM160 432a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm368-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-field-un": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "supplies", + "truck", + "united nations" + ] + }, + "unicode": "e58e", + "label": "Truck Field Un", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 32C60.7 32 32 60.7 32 96v32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32v32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V288c0-35.3-28.7-64-64-64h-4.2c-.4-1.1-.9-2.1-1.3-3.2L485.7 102c-10.3-23.1-33.2-38-58.5-38H375.4C364.4 44.9 343.7 32 320 32H96zm288 96h43.2l42.7 96H384V128zM112 384a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm368-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM253.3 135.1l34.7 52V144c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V144c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4zM128 144v64c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48V144c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-front": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "shuttle", + "truck", + "van" + ] + }, + "unicode": "e2b7", + "label": "Truck Front", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 80C0 35.8 35.8 0 80 0H432c44.2 0 80 35.8 80 80V368c0 26.2-12.6 49.4-32 64v48c0 17.7-14.3 32-32 32H416c-17.7 0-32-14.3-32-32V448H128v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V432C12.6 417.4 0 394.2 0 368V80zm129.9 72.2L112 224H400l-17.9-71.8C378.5 138 365.7 128 351 128H161c-14.7 0-27.5 10-31 24.2zM128 320a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-medical": { + "aliases": { + "names": [ + "ambulance" + ], + "unicodes": { + "composite": [ + "1f691" + ], + "secondary": [ + "10f0f9" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ambulance", + "clinic", + "covid-19", + "emergency", + "emt", + "er", + "help", + "hospital", + "mobile", + "support", + "vehicle" + ] + }, + "unicode": "f0f9", + "label": "Truck Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H368c26.5 0 48 21.5 48 48V96h50.7c17 0 33.3 6.7 45.3 18.7L589.3 192c12 12 18.7 28.3 18.7 45.3V256v32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V48zM416 256H544V237.3L466.7 160H416v96zM160 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm368-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM176 80v48l-48 0c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V192h48c8.8 0 16-7.2 16-16V144c0-8.8-7.2-16-16-16H240V80c0-8.8-7.2-16-16-16H192c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-monster": { + "aliases": { + "unicodes": { + "secondary": [ + "10f63b" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "offroad", + "vehicle", + "wheel" + ] + }, + "unicode": "f63b", + "label": "Truck Monster", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 64v64H416L368 64H288zM419.2 25.6L496 128h80c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32c-29.2-38.9-75.7-64-128-64s-98.8 25.1-128 64H288c-29.2-38.9-75.7-64-128-64s-98.8 25.1-128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32H224V48c0-26.5 21.5-48 48-48h96c20.1 0 39.1 9.5 51.2 25.6zM152 256h16c12.1 0 22.1 8.9 23.8 20.6c7.6 2.2 14.9 5.3 21.7 9c9.4-7 22.8-6.3 31.3 2.3l11.3 11.3c8.6 8.6 9.3 21.9 2.3 31.3c3.7 6.8 6.8 14.1 9 21.7c11.6 1.7 20.6 11.7 20.6 23.8v16c0 12.1-8.9 22.1-20.6 23.8c-2.2 7.6-5.3 14.9-9 21.7c7 9.4 6.3 22.8-2.3 31.3l-11.3 11.3c-8.6 8.6-21.9 9.3-31.3 2.2c-6.8 3.7-14.1 6.8-21.7 9C190.1 503.1 180.1 512 168 512H152c-12.1 0-22.1-8.9-23.8-20.6c-7.6-2.2-14.9-5.3-21.7-9c-9.4 7.1-22.8 6.3-31.3-2.2L63.8 468.9c-8.6-8.6-9.3-21.9-2.3-31.3c-3.7-6.9-6.8-14.1-9-21.8C40.9 414.1 32 404.1 32 392V376c0-12.1 8.9-22.1 20.6-23.8c2.2-7.6 5.3-14.9 9-21.8c-7-9.4-6.3-22.8 2.3-31.3l11.3-11.3c8.6-8.6 21.9-9.3 31.3-2.3c6.8-3.7 14.1-6.8 21.7-9c1.7-11.6 11.7-20.6 23.8-20.6zm8 176a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM448.2 276.6c1.7-11.6 11.7-20.6 23.8-20.6h16c12.1 0 22.1 8.9 23.8 20.6c7.6 2.2 14.9 5.3 21.8 9c9.4-7 22.8-6.3 31.3 2.3l11.3 11.3c8.6 8.6 9.3 21.9 2.2 31.3c3.7 6.8 6.8 14.1 9 21.7c11.6 1.7 20.6 11.7 20.6 23.8v16c0 12.1-8.9 22.1-20.6 23.8c-2.2 7.6-5.3 14.9-9 21.7c7 9.4 6.3 22.8-2.2 31.3l-11.3 11.3c-8.6 8.6-21.9 9.3-31.3 2.2c-6.9 3.7-14.1 6.8-21.8 9C510.1 503.1 500.1 512 488 512H472c-12.1 0-22.1-8.9-23.8-20.6c-7.6-2.2-14.9-5.3-21.7-9c-9.4 7.1-22.8 6.3-31.3-2.2l-11.3-11.3c-8.6-8.6-9.3-21.9-2.2-31.3c-3.7-6.9-6.8-14.1-9-21.8C360.9 414.1 352 404.1 352 392V376c0-12.1 8.9-22.1 20.6-23.8c2.2-7.6 5.3-14.9 9-21.8c-7-9.4-6.3-22.8 2.2-31.3l11.3-11.3c8.6-8.6 21.9-9.3 31.3-2.3c6.8-3.7 14.1-6.8 21.7-9zM528 384a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-moving": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4df" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cargo", + "inventory", + "rental", + "vehicle" + ] + }, + "unicode": "f4df", + "label": "Truck Moving", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V304v80 16c0 44.2 35.8 80 80 80c26.2 0 49.4-12.6 64-32c14.6 19.4 37.8 32 64 32c44.2 0 80-35.8 80-80c0-5.5-.6-10.8-1.6-16H416h33.6c-1 5.2-1.6 10.5-1.6 16c0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H608c17.7 0 32-14.3 32-32V288 272 261.7c0-9.2-3.2-18.2-9-25.3l-58.8-71.8c-10.6-13-26.5-20.5-43.3-20.5H480V96c0-35.3-28.7-64-64-64H64zM585 256H480V192h48.8c2.4 0 4.7 1.1 6.2 2.9L585 256zM528 368a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM176 400a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM80 368a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-pickup": { + "aliases": { + "unicodes": { + "composite": [ + "1f6fb" + ], + "secondary": [ + "10f63c" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cargo", + "pick-up", + "pickup", + "pickup truck", + "truck", + "vehicle" + ] + }, + "unicode": "f63c", + "label": "Truck Pickup", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M368.6 96l76.8 96H288V96h80.6zM224 80V192H64c-17.7 0-32 14.3-32 32v64c-17.7 0-32 14.3-32 32s14.3 32 32 32H65.1c-.7 5.2-1.1 10.6-1.1 16c0 61.9 50.1 112 112 112s112-50.1 112-112c0-5.4-.4-10.8-1.1-16h66.3c-.7 5.2-1.1 10.6-1.1 16c0 61.9 50.1 112 112 112s112-50.1 112-112c0-5.4-.4-10.8-1.1-16H608c17.7 0 32-14.3 32-32s-14.3-32-32-32V224c0-17.7-14.3-32-32-32H527.4L418.6 56c-12.1-15.2-30.5-24-50-24H272c-26.5 0-48 21.5-48 48zm0 288a48 48 0 1 1 -96 0 48 48 0 1 1 96 0zm288 0a48 48 0 1 1 -96 0 48 48 0 1 1 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-plane": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "plane", + "transportation", + "truck", + "vehicle" + ] + }, + "unicode": "e58f", + "label": "Truck Plane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M200 0c-30.6 0-56 54.7-56 86.1V192.5L7.8 274.3C2.9 277.2 0 282.4 0 288v64c0 5.1 2.4 9.8 6.4 12.8s9.3 3.9 14.1 2.5l123.4-37v81.2l-50 40c-3.8 3-6 7.6-6 12.5v32c0 5.1 2.5 10 6.6 13s9.5 3.8 14.4 2.2L200 480.9 290.4 511c-1.6-4.7-2.4-9.8-2.4-15V463.4c-18.2-10.5-30.7-29.7-31.9-51.8l-.1-.1V408 325.5 184l0-1.1 0 0V86.1C256 54.7 231.5 0 200 0zm88 176V400c0 20.9 13.4 38.7 32 45.3V488c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V448H544v40c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V445.3c18.6-6.6 32-24.4 32-45.3V176c0-26.5-21.5-48-48-48H336c-26.5 0-48 21.5-48 48zm79.8 78.7c3.3-8.7 11.2-14.7 20.5-14.7H539.7c9.2 0 17.2 6 20.5 14.7L576 304H352l15.8-49.3zM568 352a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM336 376a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-ramp-box": { + "aliases": { + "names": [ + "truck-loading" + ], + "unicodes": { + "secondary": [ + "10f4de" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "box", + "cargo", + "delivery", + "inventory", + "moving", + "rental", + "vehicle" + ] + }, + "unicode": "f4de", + "label": "Truck Ramp Box", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 0V400c0 61.9-50.1 112-112 112c-61 0-110.5-48.7-112-109.3L48.4 502.9c-17.1 4.6-34.6-5.4-39.3-22.5s5.4-34.6 22.5-39.3L352 353.8V64c0-35.3 28.7-64 64-64H640zM576 400a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM23.1 207.7c-4.6-17.1 5.6-34.6 22.6-39.2l46.4-12.4 20.7 77.3c2.3 8.5 11.1 13.6 19.6 11.3l30.9-8.3c8.5-2.3 13.6-11.1 11.3-19.6l-20.7-77.3 46.4-12.4c17.1-4.6 34.6 5.6 39.2 22.6l41.4 154.5c4.6 17.1-5.6 34.6-22.6 39.2L103.7 384.9c-17.1 4.6-34.6-5.6-39.2-22.6L23.1 207.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tty": { + "aliases": { + "names": [ + "teletype" + ], + "unicodes": { + "secondary": [ + "10f1e4" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "communication", + "deaf", + "telephone", + "teletypewriter", + "text" + ] + }, + "unicode": "f1e4", + "label": "Tty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M29.3 241.3L6.1 200.6c-9.2-16.2-8.4-36.5 4.5-50C52.4 106.8 135.7 48 247 48s194.6 58.8 236.4 102.6c12.9 13.5 13.7 33.8 4.5 50l-23.1 40.7c-7.5 13.2-23.3 19.3-37.8 14.6l-81.1-26.6c-13.1-4.3-22-16.6-22-30.4V144c-49.6-18.1-104-18.1-153.6 0v54.8c0 13.8-8.9 26.1-22 30.4L67.1 255.8c-14.5 4.7-30.3-1.4-37.8-14.6zM23 336c0-8.8 7.2-16 16-16H71c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H39c-8.8 0-16-7.2-16-16V336zm0 96c0-8.8 7.2-16 16-16H71c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H39c-8.8 0-16-7.2-16-16V432zM135 320h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H135c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H231c-8.8 0-16-7.2-16-16V336zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H327c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H423c-8.8 0-16-7.2-16-16V336zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H423c-8.8 0-16-7.2-16-16V432c0-8.8 7.2-16 16-16zM119 432c0-8.8 7.2-16 16-16H359c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H135c-8.8 0-16-7.2-16-16V432z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tumblr": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f173", + "label": "Tumblr", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "turkish-lira-sign": { + "aliases": { + "names": [ + "try", + "turkish-lira" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Turkish Lira Sign", + "currency" + ] + }, + "unicode": "e2bb", + "label": "Turkish Lira Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 32c17.7 0 32 14.3 32 32V99.3L247.2 65.2c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 165.9v29.4l119.2-34.1c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 261.9V416h63.8c68.2 0 124.4-53.5 127.8-121.6l.4-8c.9-17.7 15.9-31.2 33.6-30.4s31.2 15.9 30.4 33.6l-.4 8C378.5 399.8 294.1 480 191.8 480H96c-17.7 0-32-14.3-32-32V280.1l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 213.6V184.1l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 117.6V64c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "turn-down": { + "aliases": { + "names": [ + "level-down-alt" + ], + "unicodes": { + "composite": [ + "2935" + ], + "secondary": [ + "10f3be" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "down", + "level-down", + "right arrow curving down" + ] + }, + "unicode": "f3be", + "label": "Turn Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M350 334.5c3.8 8.8 2 19-4.6 26l-136 144c-4.5 4.8-10.8 7.5-17.4 7.5s-12.9-2.7-17.4-7.5l-136-144c-6.6-7-8.4-17.2-4.6-26s12.5-14.5 22-14.5h88l0-192c0-17.7-14.3-32-32-32H32C14.3 96 0 81.7 0 64V32C0 14.3 14.3 0 32 0l80 0c70.7 0 128 57.3 128 128l0 192h88c9.6 0 18.2 5.7 22 14.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "turn-up": { + "aliases": { + "names": [ + "level-up-alt" + ], + "unicodes": { + "composite": [ + "2934" + ], + "secondary": [ + "10f3bf" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "level-up", + "right arrow curving up" + ] + }, + "unicode": "f3bf", + "label": "Turn Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M350 177.5c3.8-8.8 2-19-4.6-26l-136-144C204.9 2.7 198.6 0 192 0s-12.9 2.7-17.4 7.5l-136 144c-6.6 7-8.4 17.2-4.6 26s12.5 14.5 22 14.5h88l0 192c0 17.7-14.3 32-32 32H32c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32l80 0c70.7 0 128-57.3 128-128l0-192h88c9.6 0 18.2-5.7 22-14.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tv": { + "aliases": { + "names": [ + "television", + "tv-alt" + ], + "unicodes": { + "composite": [ + "f8e5" + ], + "primary": [ + "f8e5" + ], + "secondary": [ + "10f26c", + "10f8e5" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "display", + "monitor", + "television" + ] + }, + "unicode": "f26c", + "label": "Tv", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 64V352H576V64H64zM0 64C0 28.7 28.7 0 64 0H576c35.3 0 64 28.7 64 64V352c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM128 448H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "twitch": { + "changes": [ + "4.2.0", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1e8", + "label": "Twitch", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M391.17,103.47H352.54v109.7h38.63ZM285,103H246.37V212.75H285ZM120.83,0,24.31,91.42V420.58H140.14V512l96.53-91.42h77.25L487.69,256V0ZM449.07,237.75l-77.22,73.12H294.61l-67.6,64v-64H140.14V36.58H449.07Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "twitter": { + "changes": [ + "2.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "social network", + "tweet" + ] + }, + "unicode": "f099", + "label": "Twitter", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "typo3": { + "changes": [ + "5.0.1", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42b", + "label": "Typo3", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M178.7 78.4c0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C7 246 113.8 480 191.1 480c36.3 0 97.3-59.5 146.7-139-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9zM301.5 32c-30.1 0-41.7 5.4-41.7 36.3 0 66.4 53.8 198.5 101.7 198.5 26.3 0 78.8-99.7 78.8-182.3 0-40.9-67-52.5-138.8-52.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "u": { + "aliases": { + "unicodes": { + "composite": [ + "75" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter U", + "Latin Small Letter U", + "letter" + ] + }, + "unicode": "55", + "label": "U", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V288c0 70.7 57.3 128 128 128s128-57.3 128-128V64c0-17.7 14.3-32 32-32s32 14.3 32 32V288c0 106-86 192-192 192S0 394 0 288V64C0 46.3 14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "uber": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f402", + "label": "Uber", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ubuntu": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "unicode": "f7df", + "label": "Ubuntu", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm52.7 93c8.8-15.2 28.3-20.5 43.5-11.7 15.3 8.8 20.5 28.3 11.7 43.6-8.8 15.2-28.3 20.5-43.5 11.7-15.3-8.9-20.5-28.4-11.7-43.6zM87.4 287.9c-17.6 0-31.9-14.3-31.9-31.9 0-17.6 14.3-31.9 31.9-31.9 17.6 0 31.9 14.3 31.9 31.9 0 17.6-14.3 31.9-31.9 31.9zm28.1 3.1c22.3-17.9 22.4-51.9 0-69.9 8.6-32.8 29.1-60.7 56.5-79.1l23.7 39.6c-51.5 36.3-51.5 112.5 0 148.8L172 370c-27.4-18.3-47.8-46.3-56.5-79zm228.7 131.7c-15.3 8.8-34.7 3.6-43.5-11.7-8.8-15.3-3.6-34.8 11.7-43.6 15.2-8.8 34.7-3.6 43.5 11.7 8.8 15.3 3.6 34.8-11.7 43.6zm.3-69.5c-26.7-10.3-56.1 6.6-60.5 35-5.2 1.4-48.9 14.3-96.7-9.4l22.5-40.3c57 26.5 123.4-11.7 128.9-74.4l46.1.7c-2.3 34.5-17.3 65.5-40.3 88.4zm-5.9-105.3c-5.4-62-71.3-101.2-128.9-74.4l-22.5-40.3c47.9-23.7 91.5-10.8 96.7-9.4 4.4 28.3 33.8 45.3 60.5 35 23.1 22.9 38 53.9 40.2 88.5l-46 .6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "uikit": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f403", + "label": "UIkit", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "umbraco": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f8e8", + "label": "Umbraco", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 510, + 512 + ], + "width": 510, + "height": 512, + "path": "M255.35 8C118.36 7.83 7.14 118.72 7 255.68c-.07 137 111 248.2 248 248.27 136.85 0 247.82-110.7 248-247.67S392.34 8.17 255.35 8zm145 266q-1.14 40.68-14 65t-43.51 35q-30.61 10.7-85.45 10.47h-4.6q-54.78.22-85.44-10.47t-43.52-35q-12.85-24.36-14-65a224.81 224.81 0 0 1 0-30.71 418.37 418.37 0 0 1 3.6-43.88c1.88-13.39 3.57-22.58 5.4-32 1-4.88 1.28-6.42 1.82-8.45a5.09 5.09 0 0 1 4.9-3.89h.69l32 5a5.07 5.07 0 0 1 4.16 5 5 5 0 0 1 0 .77l-1.7 8.78q-2.41 13.25-4.84 33.68a380.62 380.62 0 0 0-2.64 42.15q-.28 40.43 8.13 59.83a43.87 43.87 0 0 0 31.31 25.18A243 243 0 0 0 250 340.6h10.25a242.64 242.64 0 0 0 57.27-5.16 43.86 43.86 0 0 0 31.15-25.23q8.53-19.42 8.13-59.78a388 388 0 0 0-2.6-42.15q-2.48-20.38-4.89-33.68l-1.69-8.78a5 5 0 0 1 0-.77 5 5 0 0 1 4.2-5l32-5h.82a5 5 0 0 1 4.9 3.89c.55 2.05.81 3.57 1.83 8.45 1.82 9.62 3.52 18.78 5.39 32a415.71 415.71 0 0 1 3.61 43.88 228.06 228.06 0 0 1-.04 30.73z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "umbrella": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0e9" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protection", + "rain", + "storm", + "wet" + ] + }, + "unicode": "f0e9", + "label": "Umbrella", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M286 0c17.7 0 32 14.3 32 32V49.7C449.8 63.4 555.7 161 571.9 285.9c2 15.6-17.3 24.4-27.8 12.7C530.1 283 502.8 272 478 272c-38.7 0-71 27.5-78.4 64.1c-1.7 8.7-8.7 15.9-17.6 15.9s-15.8-7.2-17.6-15.9C357 299.5 324.7 272 286 272s-71 27.5-78.4 64.1c-1.7 8.7-8.7 15.9-17.6 15.9s-15.8-7.2-17.6-15.9C165 299.5 132.7 272 94 272c-24.8 0-52.1 11-66.1 26.7C17.4 310.4-1.9 301.5 .1 285.9C16.3 161 122.2 63.4 254 49.7V32c0-17.7 14.3-32 32-32zm0 304c12.3 0 23.5 4.6 32 12.2V430.6c0 45-36.5 81.4-81.4 81.4c-30.8 0-59-17.4-72.8-45l-2.3-4.7c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l2.3 4.7c3 5.9 9 9.6 15.6 9.6c9.6 0 17.4-7.8 17.4-17.4V316.2c8.5-7.6 19.7-12.2 32-12.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "umbrella-beach": { + "aliases": { + "unicodes": { + "composite": [ + "1f3d6" + ], + "secondary": [ + "10f5ca" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beach", + "beach with umbrella", + "protection", + "recreation", + "sand", + "shade", + "summer", + "sun", + "umbrella" + ] + }, + "unicode": "f5ca", + "label": "Umbrella Beach", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M346.3 271.8l-60.1-21.9L214 448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H282.1l64.1-176.2zm121.1-.2l-3.3 9.1 67.7 24.6c18.1 6.6 38-4.2 39.6-23.4c6.5-78.5-23.9-155.5-80.8-208.5c2 8 3.2 16.3 3.4 24.8l.2 6c1.8 57-7.3 113.8-26.8 167.4zM462 99.1c-1.1-34.4-22.5-64.8-54.4-77.4c-.9-.4-1.9-.7-2.8-1.1c-33-11.7-69.8-2.4-93.1 23.8l-4 4.5C272.4 88.3 245 134.2 226.8 184l-3.3 9.1L434 269.7l3.3-9.1c18.1-49.8 26.6-102.5 24.9-155.5l-.2-6zM107.2 112.9c-11.1 15.7-2.8 36.8 15.3 43.4l71 25.8 3.3-9.1c19.5-53.6 49.1-103 87.1-145.5l4-4.5c6.2-6.9 13.1-13 20.5-18.2c-79.6 2.5-154.7 42.2-201.2 108z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "uncharted": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e084", + "label": "Uncharted Software", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M171.73,232.813A5.381,5.381,0,0,0,176.7,229.5,48.081,48.081,0,0,1,191.6,204.244c1.243-.828,1.657-2.484,1.657-4.141a4.22,4.22,0,0,0-2.071-3.312L74.429,128.473,148.958,85a9.941,9.941,0,0,0,4.968-8.281,9.108,9.108,0,0,0-4.968-8.281L126.6,55.6a9.748,9.748,0,0,0-9.523,0l-100.2,57.966a9.943,9.943,0,0,0-4.969,8.281V236.954a9.109,9.109,0,0,0,4.969,8.281L39.235,258.07a8.829,8.829,0,0,0,4.968,1.242,9.4,9.4,0,0,0,6.625-2.484,10.8,10.8,0,0,0,2.9-7.039V164.5L169.66,232.4A4.5,4.5,0,0,0,171.73,232.813ZM323.272,377.73a12.478,12.478,0,0,0-4.969,1.242l-74.528,43.062V287.882c0-2.9-2.9-5.8-6.211-4.555a53.036,53.036,0,0,1-28.984.414,4.86,4.86,0,0,0-6.21,4.555V421.619l-74.529-43.061a8.83,8.83,0,0,0-4.969-1.242,9.631,9.631,0,0,0-9.523,9.523v26.085a9.107,9.107,0,0,0,4.969,8.281l100.2,57.553A8.829,8.829,0,0,0,223.486,480a11.027,11.027,0,0,0,4.969-1.242l100.2-57.553a9.941,9.941,0,0,0,4.968-8.281V386.839C332.8,382.285,328.24,377.73,323.272,377.73ZM286.007,78a23,23,0,1,0-23-23A23,23,0,0,0,286.007,78Zm63.627-10.086a23,23,0,1,0,23,23A23,23,0,0,0,349.634,67.914ZM412.816,151.6a23,23,0,1,0-23-23A23,23,0,0,0,412.816,151.6Zm-63.182-9.2a23,23,0,1,0,23,23A23,23,0,0,0,349.634,142.4Zm-63.627,83.244a23,23,0,1,0-23-23A23,23,0,0,0,286.007,225.648Zm-62.074,36.358a23,23,0,1,0-23-23A23,23,0,0,0,223.933,262.006Zm188.883-82.358a23,23,0,1,0,23,23A23,23,0,0,0,412.816,179.648Zm0,72.272a23,23,0,1,0,23,23A23,23,0,0,0,412.816,251.92Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "underline": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0cd" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "emphasis", + "format", + "text", + "writing" + ] + }, + "unicode": "f0cd", + "label": "Underline", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M16 64c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H128V224c0 53 43 96 96 96s96-43 96-96V96H304c-17.7 0-32-14.3-32-32s14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H384V224c0 88.4-71.6 160-160 160s-160-71.6-160-160V96H48C30.3 96 16 81.7 16 64zM0 448c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "uniregistry": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f404", + "label": "Uniregistry", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480zm-89.1-193.1v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4zm20.5 57H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8zm-17.7-34.7H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3zm-2.8-69.3H0v17.3h102.9zm0-173.2H0v4.9h102.9zm0-34.7H0v2.5h102.9zm0 69.3H0v7.4h102.9zm0 104H0v14.8h102.9zm0-69.3H0v9.9h102.9zm0 34.6H0V183h102.9zm166.2 160.9h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3zm12-185.7H384V136H281.1zm0 37.2H384v-12.4H281.1zm0-74.3H384v-7.4H281.1zm0-76.7v2.5H384V32zm-203 410.9h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7zm203-371.3H384v-4.9H281.1zm0 148.5H384v-14.8H281.1zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2zm188.8-37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8zm53.5-81.7c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1zm0-29.7H384v-17.3H281.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "unity": { + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e049", + "label": "Unity 3D", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M243.583 91.6027L323.695 138.384C326.575 140.026 326.68 144.583 323.695 146.225L228.503 201.854C225.623 203.55 222.22 203.444 219.549 201.854L124.357 146.225C121.425 144.636 121.373 139.973 124.357 138.384L204.417 91.6027V0L0 119.417V358.252L78.3843 312.477V218.914C78.3319 215.576 82.2066 213.192 85.0865 214.993L180.279 270.622C183.159 272.318 184.782 275.338 184.782 278.464V389.669C184.834 393.007 180.959 395.391 178.079 393.589L97.9673 346.808L19.583 392.583L224 512L428.417 392.583L350.033 346.808L269.921 393.589C267.093 395.338 263.114 393.06 263.218 389.669V278.464C263.218 275.126 265.051 272.159 267.721 270.622L362.914 214.993C365.741 213.245 369.72 215.47 369.616 218.914V312.477L448 358.252V119.417L243.583 0V91.6027Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "universal-access": { + "aliases": { + "unicodes": { + "secondary": [ + "10f29a" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f29a", + "label": "Universal Access", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm161.5-86.1c-12.2-5.2-26.3 .4-31.5 12.6s.4 26.3 12.6 31.5l11.9 5.1c17.3 7.4 35.2 12.9 53.6 16.3v50.1c0 4.3-.7 8.6-2.1 12.6l-28.7 86.1c-4.2 12.6 2.6 26.2 15.2 30.4s26.2-2.6 30.4-15.2l24.4-73.2c1.3-3.8 4.8-6.4 8.8-6.4s7.6 2.6 8.8 6.4l24.4 73.2c4.2 12.6 17.8 19.4 30.4 15.2s19.4-17.8 15.2-30.4l-28.7-86.1c-1.4-4.1-2.1-8.3-2.1-12.6V235.5c18.4-3.5 36.3-8.9 53.6-16.3l11.9-5.1c12.2-5.2 17.8-19.3 12.6-31.5s-19.3-17.8-31.5-12.6L338.7 175c-26.1 11.2-54.2 17-82.7 17s-56.5-5.8-82.7-17l-11.9-5.1zM256 160a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "unlock": { + "aliases": { + "unicodes": { + "composite": [ + "1f513" + ], + "secondary": [ + "10f09c" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "open", + "password", + "private", + "protect", + "unlock", + "unlocked" + ] + }, + "unicode": "f09c", + "label": "Unlock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M144 144c0-44.2 35.8-80 80-80c31.9 0 59.4 18.6 72.3 45.7c7.6 16 26.7 22.8 42.6 15.2s22.8-26.7 15.2-42.6C331 33.7 281.5 0 224 0C144.5 0 80 64.5 80 144v48H64c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V256c0-35.3-28.7-64-64-64H144V144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "unlock-keyhole": { + "aliases": { + "names": [ + "unlock-alt" + ], + "unicodes": { + "secondary": [ + "10f13e" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "password", + "private", + "protect" + ] + }, + "unicode": "f13e", + "label": "Unlock Keyhole", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 64c-44.2 0-80 35.8-80 80v48H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80V144C80 64.5 144.5 0 224 0c57.5 0 107 33.7 130.1 82.3c7.6 16 .8 35.1-15.2 42.6s-35.1 .8-42.6-15.2C283.4 82.6 255.9 64 224 64zm32 320c17.7 0 32-14.3 32-32s-14.3-32-32-32H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "unsplash": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07c", + "label": "Unsplash", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448,230.17V480H0V230.17H141.13V355.09H306.87V230.17ZM306.87,32H141.13V156.91H306.87Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "untappd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f405", + "label": "Untappd", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "up-down": { + "aliases": { + "names": [ + "arrows-alt-v" + ], + "unicodes": { + "composite": [ + "2195", + "2b0d" + ], + "secondary": [ + "10f338" + ] + } + }, + "changes": [ + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Up Down Black Arrow", + "arrow", + "arrows-v", + "expand", + "portrait", + "resize", + "tall", + "up-down arrow", + "vertical" + ] + }, + "unicode": "f338", + "label": "Up Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M145.6 7.7C141 2.8 134.7 0 128 0s-13 2.8-17.6 7.7l-104 112c-6.5 7-8.2 17.2-4.4 25.9S14.5 160 24 160H80V352H24c-9.5 0-18.2 5.7-22 14.4s-2.1 18.9 4.4 25.9l104 112c4.5 4.9 10.9 7.7 17.6 7.7s13-2.8 17.6-7.7l104-112c6.5-7 8.2-17.2 4.4-25.9s-12.5-14.4-22-14.4H176V160h56c9.5 0 18.2-5.7 22-14.4s2.1-18.9-4.4-25.9l-104-112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "up-down-left-right": { + "aliases": { + "names": [ + "arrows-alt" + ], + "unicodes": { + "secondary": [ + "10f0b2" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "bigger", + "enlarge", + "expand", + "fullscreen", + "move", + "position", + "reorder", + "resize" + ] + }, + "unicode": "f0b2", + "label": "Up Down Left Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M278.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32v96H128V192c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V288h96v96H192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H288V288h96v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6v32H288V128h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "up-long": { + "aliases": { + "names": [ + "long-arrow-alt-up" + ], + "unicodes": { + "secondary": [ + "10f30c" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "long-arrow-up", + "upload" + ] + }, + "unicode": "f30c", + "label": "Up Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M318 177.5c3.8-8.8 2-19-4.6-26l-136-144C172.9 2.7 166.6 0 160 0s-12.9 2.7-17.4 7.5l-136 144c-6.6 7-8.4 17.2-4.6 26S14.4 192 24 192H96l0 288c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32l0-288h72c9.6 0 18.2-5.7 22-14.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "up-right-and-down-left-from-center": { + "aliases": { + "names": [ + "expand-alt" + ], + "unicodes": { + "secondary": [ + "10f424" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "bigger", + "enlarge", + "fullscreen", + "resize" + ] + }, + "unicode": "f424", + "label": "Up Right And Down Left From Center", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M344 0H488c13.3 0 24 10.7 24 24V168c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39-87 87c-9.4 9.4-24.6 9.4-33.9 0l-32-32c-9.4-9.4-9.4-24.6 0-33.9l87-87L327 41c-6.9-6.9-8.9-17.2-5.2-26.2S334.3 0 344 0zM168 512H24c-13.3 0-24-10.7-24-24V344c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l39 39 87-87c9.4-9.4 24.6-9.4 33.9 0l32 32c9.4 9.4 9.4 24.6 0 33.9l-87 87 39 39c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "up-right-from-square": { + "aliases": { + "names": [ + "external-link-alt" + ], + "unicodes": { + "secondary": [ + "10f35d" + ] + } + }, + "changes": [ + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "external-link", + "new", + "open", + "share" + ] + }, + "unicode": "f35d", + "label": "Up Right From Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9L370.7 96 201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 141.3l41.4 41.4c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V32c0-17.7-14.3-32-32-32H352zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "upload": { + "aliases": { + "unicodes": { + "secondary": [ + "10f093" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hard drive", + "import", + "publish" + ] + }, + "unicode": "f093", + "label": "Upload", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 109.3V352c0 17.7-14.3 32-32 32s-32-14.3-32-32V109.3l-73.4 73.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l128-128c12.5-12.5 32.8-12.5 45.3 0l128 128c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L288 109.3zM64 352H192c0 35.3 28.7 64 64 64s64-28.7 64-64H448c35.3 0 64 28.7 64 64v32c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V416c0-35.3 28.7-64 64-64zM432 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ups": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "United Parcel Service", + "package", + "shipping" + ] + }, + "unicode": "f7e0", + "label": "UPS", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M103.2 303c-5.2 3.6-32.6 13.1-32.6-19V180H37.9v102.6c0 74.9 80.2 51.1 97.9 39V180h-32.6zM4 74.82v220.9c0 103.7 74.9 135.2 187.7 184.1 112.4-48.9 187.7-80.2 187.7-184.1V74.82c-116.3-61.6-281.8-49.6-375.4 0zm358.1 220.9c0 86.6-53.2 113.6-170.4 165.3-117.5-51.8-170.5-78.7-170.5-165.3v-126.4c102.3-93.8 231.6-100 340.9-89.8zm-209.6-107.4v212.8h32.7v-68.7c24.4 7.3 71.7-2.6 71.7-78.5 0-97.4-80.7-80.92-104.4-65.6zm32.7 117.3v-100.3c8.4-4.2 38.4-12.7 38.4 49.3 0 67.9-36.4 51.8-38.4 51zm79.1-86.4c.1 47.3 51.6 42.5 52.2 70.4.6 23.5-30.4 23-50.8 4.9v30.1c36.2 21.5 81.9 8.1 83.2-33.5 1.7-51.5-54.1-46.6-53.4-73.2.6-20.3 30.6-20.5 48.5-2.2v-28.4c-28.5-22-79.9-9.2-79.7 31.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "usb": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f287", + "label": "USB", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "user": { + "aliases": { + "unicodes": { + "composite": [ + "1f464", + "f2c0" + ], + "secondary": [ + "10f007" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "adult", + "bust", + "bust in silhouette", + "gender-neutral", + "person", + "profile", + "silhouette", + "unspecified gender", + "users-people" + ] + }, + "unicode": "f007", + "label": "User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3z" + }, + "regular": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M304 128a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM49.3 464H398.7c-8.9-63.3-63.3-112-129-112H178.3c-65.7 0-120.1 48.7-129 112zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "user-astronaut": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4fb" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "avatar", + "clothing", + "cosmonaut", + "nasa", + "space", + "suit" + ] + }, + "unicode": "f4fb", + "label": "User Astronaut", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M370.7 96.1C346.1 39.5 289.7 0 224 0S101.9 39.5 77.3 96.1C60.9 97.5 48 111.2 48 128v64c0 16.8 12.9 30.5 29.3 31.9C101.9 280.5 158.3 320 224 320s122.1-39.5 146.7-96.1c16.4-1.4 29.3-15.1 29.3-31.9V128c0-16.8-12.9-30.5-29.3-31.9zM336 144v16c0 53-43 96-96 96H208c-53 0-96-43-96-96V144c0-26.5 21.5-48 48-48H288c26.5 0 48 21.5 48 48zM189.3 162.7l-6-21.2c-.9-3.3-3.9-5.5-7.3-5.5s-6.4 2.2-7.3 5.5l-6 21.2-21.2 6c-3.3 .9-5.5 3.9-5.5 7.3s2.2 6.4 5.5 7.3l21.2 6 6 21.2c.9 3.3 3.9 5.5 7.3 5.5s6.4-2.2 7.3-5.5l6-21.2 21.2-6c3.3-.9 5.5-3.9 5.5-7.3s-2.2-6.4-5.5-7.3l-21.2-6zM112.7 316.5C46.7 342.6 0 407 0 482.3C0 498.7 13.3 512 29.7 512H128V448c0-17.7 14.3-32 32-32H288c17.7 0 32 14.3 32 32v64l98.3 0c16.4 0 29.7-13.3 29.7-29.7c0-75.3-46.7-139.7-112.7-165.8C303.9 338.8 265.5 352 224 352s-79.9-13.2-111.3-35.5zM176 448c-8.8 0-16 7.2-16 16v48h32V464c0-8.8-7.2-16-16-16zm96 32a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4fc" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4fc", + "label": "User Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM625 177L497 305c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L591 143c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-clock": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4fd" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4fd", + "label": "User Clock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304h91.4c20.6 0 40.4 3.5 58.8 9.9C323 331 320 349.1 320 368c0 59.5 29.5 112.1 74.8 144H29.7C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM352 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-80c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H512V304c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-doctor": { + "aliases": { + "names": [ + "user-md" + ], + "unicodes": { + "secondary": [ + "10f0f0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.3", + "5.0.7", + "5.0.11", + "6.0.0-beta1", + "6.0.0-beta2", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "health", + "job", + "medical", + "nurse", + "occupation", + "physician", + "profile", + "surgeon", + "worker" + ] + }, + "unicode": "f0f0", + "label": "User Doctor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-96 55.2C54 332.9 0 401.3 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7c0-81-54-149.4-128-171.1V362c27.6 7.1 48 32.2 48 62v40c0 8.8-7.2 16-16 16H336c-8.8 0-16-7.2-16-16s7.2-16 16-16V424c0-17.7-14.3-32-32-32s-32 14.3-32 32v24c8.8 0 16 7.2 16 16s-7.2 16-16 16H256c-8.8 0-16-7.2-16-16V424c0-29.8 20.4-54.9 48-62V304.9c-6-.6-12.1-.9-18.3-.9H178.3c-6.2 0-12.3 .3-18.3 .9v65.4c23.1 6.9 40 28.3 40 53.7c0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.4 16.9-46.8 40-53.7V311.2zM144 448a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-gear": { + "aliases": { + "names": [ + "user-cog" + ], + "unicodes": { + "secondary": [ + "10f4fe" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4fe", + "label": "User Gear", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304h91.4c11.8 0 23.4 1.2 34.5 3.3c-2.1 18.5 7.4 35.6 21.8 44.8c-16.6 10.6-26.7 31.6-20 53.3c4 12.9 9.4 25.5 16.4 37.6s15.2 23.1 24.4 33c15.7 16.9 39.6 18.4 57.2 8.7v.9c0 9.2 2.7 18.5 7.9 26.3H29.7C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM436 218.2c0-7 4.5-13.3 11.3-14.8c10.5-2.4 21.5-3.7 32.7-3.7s22.2 1.3 32.7 3.7c6.8 1.5 11.3 7.8 11.3 14.8v30.6c7.9 3.4 15.4 7.7 22.3 12.8l24.9-14.3c6.1-3.5 13.7-2.7 18.5 2.4c7.6 8.1 14.3 17.2 20.1 27.2s10.3 20.4 13.5 31c2.1 6.7-1.1 13.7-7.2 17.2l-25 14.4c.4 4 .7 8.1 .7 12.3s-.2 8.2-.7 12.3l25 14.4c6.1 3.5 9.2 10.5 7.2 17.2c-3.3 10.6-7.8 21-13.5 31s-12.5 19.1-20.1 27.2c-4.8 5.1-12.5 5.9-18.5 2.4l-24.9-14.3c-6.9 5.1-14.3 9.4-22.3 12.8l0 30.6c0 7-4.5 13.3-11.3 14.8c-10.5 2.4-21.5 3.7-32.7 3.7s-22.2-1.3-32.7-3.7c-6.8-1.5-11.3-7.8-11.3-14.8V454.8c-8-3.4-15.6-7.7-22.5-12.9l-24.7 14.3c-6.1 3.5-13.7 2.7-18.5-2.4c-7.6-8.1-14.3-17.2-20.1-27.2s-10.3-20.4-13.5-31c-2.1-6.7 1.1-13.7 7.2-17.2l24.8-14.3c-.4-4.1-.7-8.2-.7-12.4s.2-8.3 .7-12.4L343.8 325c-6.1-3.5-9.2-10.5-7.2-17.2c3.3-10.6 7.7-21 13.5-31s12.5-19.1 20.1-27.2c4.8-5.1 12.4-5.9 18.5-2.4l24.8 14.3c6.9-5.1 14.5-9.4 22.5-12.9V218.2zm92.1 133.5a48.1 48.1 0 1 0 -96.1 0 48.1 48.1 0 1 0 96.1 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-graduate": { + "aliases": { + "unicodes": { + "secondary": [ + "10f501" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f501", + "label": "User Graduate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M219.3 .5c3.1-.6 6.3-.6 9.4 0l200 40C439.9 42.7 448 52.6 448 64s-8.1 21.3-19.3 23.5L352 102.9V160c0 70.7-57.3 128-128 128s-128-57.3-128-128V102.9L48 93.3v65.1l15.7 78.4c.9 4.7-.3 9.6-3.3 13.3s-7.6 5.9-12.4 5.9H16c-4.8 0-9.3-2.1-12.4-5.9s-4.3-8.6-3.3-13.3L16 158.4V86.6C6.5 83.3 0 74.3 0 64C0 52.6 8.1 42.7 19.3 40.5l200-40zM111.9 327.7c10.5-3.4 21.8 .4 29.4 8.5l71 75.5c6.3 6.7 17 6.7 23.3 0l71-75.5c7.6-8.1 18.9-11.9 29.4-8.5C401 348.6 448 409.4 448 481.3c0 17-13.8 30.7-30.7 30.7H30.7C13.8 512 0 498.2 0 481.3c0-71.9 47-132.7 111.9-153.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-group": { + "aliases": { + "names": [ + "user-friends" + ], + "unicodes": { + "composite": [ + "1f465" + ], + "secondary": [ + "10f500" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bust", + "busts in silhouette", + "silhouette", + "users-people" + ] + }, + "unicode": "f500", + "label": "User Group", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM609.3 512H471.4c5.4-9.4 8.6-20.3 8.6-32v-8c0-60.7-27.1-115.2-69.8-151.8c2.4-.1 4.7-.2 7.1-.2h61.4C567.8 320 640 392.2 640 481.3c0 17-13.8 30.7-30.7 30.7zM432 256c-31 0-59-12.6-79.3-32.9C372.4 196.5 384 163.6 384 128c0-26.8-6.6-52.1-18.3-74.3C384.3 40.1 407.2 32 432 32c61.9 0 112 50.1 112 112s-50.1 112-112 112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-injured": { + "aliases": { + "unicodes": { + "secondary": [ + "10f728" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f728", + "label": "User Injured", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M240 80H342.7c-7.9-19.5-20.4-36.5-36.2-49.9L240 80zm37.7-68.2C261.3 4.2 243.2 0 224 0c-53.7 0-99.7 33.1-118.7 80h81.4l91-68.2zM224 256c70.7 0 128-57.3 128-128c0-5.4-.3-10.8-1-16H97c-.7 5.2-1 10.6-1 16c0 70.7 57.3 128 128 128zM124 312.4c-9.7 3.1-19.1 7-28 11.7V512H243.7L181.5 408.2 124 312.4zm33-7.2L204.3 384H272c44.2 0 80 35.8 80 80c0 18-6 34.6-16 48h82.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3c-7.2 0-14.3 .4-21.3 1.3zM0 482.3C0 498.7 13.3 512 29.7 512H64V345.4C24.9 378.1 0 427.3 0 482.3zM320 464c0-26.5-21.5-48-48-48H223.5l57.1 95.2C303 507.2 320 487.6 320 464z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-large": { + "aliases": { + "names": [ + "user-alt" + ], + "unicodes": { + "secondary": [ + "10f406" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f406", + "label": "User Large", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 288A144 144 0 1 0 256 0a144 144 0 1 0 0 288zm-94.7 32C72.2 320 0 392.2 0 481.3c0 17 13.8 30.7 30.7 30.7H481.3c17 0 30.7-13.8 30.7-30.7C512 392.2 439.8 320 350.7 320H161.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-large-slash": { + "aliases": { + "names": [ + "user-alt-slash" + ], + "unicodes": { + "secondary": [ + "10f4fa" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4fa", + "label": "User Large Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L381.9 274c48.5-23.2 82.1-72.7 82.1-130C464 64.5 399.5 0 320 0C250.4 0 192.4 49.3 178.9 114.9L38.8 5.1zM284.3 320h-59C136.2 320 64 392.2 64 481.3c0 17 13.8 30.7 30.7 30.7H528L284.3 320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-lock": { + "aliases": { + "unicodes": { + "secondary": [ + "10f502" + ] + } + }, + "changes": [ + "5.0.11", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f502", + "label": "User Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H392.6c-5.4-9.4-8.6-20.3-8.6-32V352c0-2.1 .1-4.2 .3-6.3c-31-26-71-41.7-114.6-41.7H178.3zM528 240c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-minus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f503" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "negative", + "remove" + ] + }, + "unicode": "f503", + "label": "User Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM472 200H616c13.3 0 24 10.7 24 24s-10.7 24-24 24H472c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-ninja": { + "aliases": { + "unicodes": { + "composite": [ + "1f977" + ], + "secondary": [ + "10f504" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "assassin", + "avatar", + "dangerous", + "deadly", + "fighter", + "hidden", + "ninja", + "sneaky", + "stealth" + ] + }, + "unicode": "f504", + "label": "User Ninja", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 256c-57.2 0-105.6-37.5-122-89.3c-1.1 1.3-2.2 2.6-3.5 3.8c-15.8 15.8-38.8 20.7-53.6 22.1c-8.1 .8-14.6-5.7-13.8-13.8c1.4-14.7 6.3-37.8 22.1-53.6c5.8-5.8 12.6-10.1 19.6-13.4c-7-3.2-13.8-7.6-19.6-13.4C37.4 82.7 32.6 59.7 31.1 44.9c-.8-8.1 5.7-14.6 13.8-13.8c14.7 1.4 37.8 6.3 53.6 22.1c4.8 4.8 8.7 10.4 11.7 16.1C131.4 28.2 174.4 0 224 0c70.7 0 128 57.3 128 128s-57.3 128-128 128zM0 482.3C0 399.5 56.4 330 132.8 309.9c6-1.6 12.2 .9 15.9 5.8l62.5 83.3c6.4 8.5 19.2 8.5 25.6 0l62.5-83.3c3.7-4.9 9.9-7.4 15.9-5.8C391.6 330 448 399.5 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM160 96c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-nurse": { + "aliases": { + "unicodes": { + "secondary": [ + "10f82f" + ] + } + }, + "changes": [ + "5.7.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "health", + "md", + "medical", + "midwife", + "physician", + "practitioner", + "surgeon", + "worker" + ] + }, + "unicode": "f82f", + "label": "User Nurse", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 128V70.2c0-13.3 8.3-25.3 20.8-30l96-36c7.2-2.7 15.2-2.7 22.5 0l96 36c12.5 4.7 20.8 16.6 20.8 30V128h-.3c.2 2.6 .3 5.3 .3 8v40c0 70.7-57.3 128-128 128s-128-57.3-128-128V136c0-2.7 .1-5.4 .3-8H96zm48 48c0 44.2 35.8 80 80 80s80-35.8 80-80V160H144v16zM111.9 327.7c10.5-3.4 21.8 .4 29.4 8.5l71 75.5c6.3 6.7 17 6.7 23.3 0l71-75.5c7.6-8.1 18.9-11.9 29.4-8.5C401 348.6 448 409.4 448 481.3c0 17-13.8 30.7-30.7 30.7H30.7C13.8 512 0 498.2 0 481.3c0-71.9 47-132.7 111.9-153.6zM208 48V64H192c-4.4 0-8 3.6-8 8V88c0 4.4 3.6 8 8 8h16v16c0 4.4 3.6 8 8 8h16c4.4 0 8-3.6 8-8V96h16c4.4 0 8-3.6 8-8V72c0-4.4-3.6-8-8-8H240V48c0-4.4-3.6-8-8-8H216c-4.4 0-8 3.6-8 8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-pen": { + "aliases": { + "names": [ + "user-edit" + ], + "unicodes": { + "secondary": [ + "10f4ff" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4ff", + "label": "User Pen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H322.8c-3.1-8.8-3.7-18.4-1.4-27.8l15-60.1c2.8-11.3 8.6-21.5 16.8-29.7l40.3-40.3c-32.1-31-75.7-50.1-123.9-50.1H178.3zm435.5-68.3c-15.6-15.6-40.9-15.6-56.6 0l-29.4 29.4 71 71 29.4-29.4c15.6-15.6 15.6-40.9 0-56.6l-14.4-14.4zM375.9 417c-4.1 4.1-7 9.2-8.4 14.9l-15 60.1c-1.4 5.5 .2 11.2 4.2 15.2s9.7 5.6 15.2 4.2l60.1-15c5.6-1.4 10.8-4.3 14.9-8.4L576.1 358.7l-71-71L375.9 417z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-plus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f234" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "avatar", + "positive", + "sign up", + "signup", + "team" + ] + }, + "unicode": "f234", + "label": "User Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM504 312V248H440c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V136c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H552v64c0 13.3-10.7 24-24 24s-24-10.7-24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-secret": { + "aliases": { + "unicodes": { + "composite": [ + "1f575" + ], + "secondary": [ + "10f21b" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "detective", + "sleuth", + "spy", + "users-people" + ] + }, + "unicode": "f21b", + "label": "User Secret", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 16c-6.7 0-10.8-2.8-15.5-6.1C201.9 5.4 194 0 176 0c-30.5 0-52 43.7-66 89.4C62.7 98.1 32 112.2 32 128c0 14.3 25 27.1 64.6 35.9c-.4 4-.6 8-.6 12.1c0 17 3.3 33.2 9.3 48H45.4C38 224 32 230 32 237.4c0 1.7 .3 3.4 1 5l38.8 96.9C28.2 371.8 0 423.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7c0-58.5-28.2-110.4-71.7-143L415 242.4c.6-1.6 1-3.3 1-5c0-7.4-6-13.4-13.4-13.4H342.7c6-14.8 9.3-31 9.3-48c0-4.1-.2-8.1-.6-12.1C391 155.1 416 142.3 416 128c0-15.8-30.7-29.9-78-38.6C324 43.7 302.5 0 272 0c-18 0-25.9 5.4-32.5 9.9c-4.7 3.3-8.8 6.1-15.5 6.1zm56 208H267.6c-16.5 0-31.1-10.6-36.3-26.2c-2.3-7-12.2-7-14.5 0c-5.2 15.6-19.9 26.2-36.3 26.2H168c-22.1 0-40-17.9-40-40V169.6c28.2 4.1 61 6.4 96 6.4s67.8-2.3 96-6.4V184c0 22.1-17.9 40-40 40zm-88 96l16 32L176 480 128 288l64 32zm128-32L272 480 240 352l16-32 64-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-shield": { + "aliases": { + "unicodes": { + "secondary": [ + "10f505" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protect", + "safety" + ] + }, + "unicode": "f505", + "label": "User Shield", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c1.8 0 3.5-.2 5.3-.5c-76.3-55.1-99.8-141-103.1-200.2c-16.1-4.8-33.1-7.3-50.7-7.3H178.3zm308.8-78.3l-120 48C358 277.4 352 286.2 352 296c0 63.3 25.9 168.8 134.8 214.2c5.9 2.5 12.6 2.5 18.5 0C614.1 464.8 640 359.3 640 296c0-9.8-6-18.6-15.1-22.3l-120-48c-5.7-2.3-12.1-2.3-17.8 0zM591.4 312c-3.9 50.7-27.2 116.7-95.4 149.7V273.8L591.4 312z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f506" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ban", + "delete", + "remove" + ] + }, + "unicode": "f506", + "label": "User Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L353.3 251.6C407.9 237 448 187.2 448 128C448 57.3 390.7 0 320 0C250.2 0 193.5 55.8 192 125.2L38.8 5.1zM264.3 304.3C170.5 309.4 96 387.2 96 482.3c0 16.4 13.3 29.7 29.7 29.7H514.3c3.9 0 7.6-.7 11-2.1l-261-205.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-tag": { + "aliases": { + "unicodes": { + "secondary": [ + "10f507" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f507", + "label": "User Tag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c10 0 18.8-4.9 24.2-12.5l-99.2-99.2c-14.9-14.9-23.3-35.1-23.3-56.1v-33c-15.9-4.7-32.8-7.2-50.3-7.2H178.3zM384 224c-17.7 0-32 14.3-32 32v82.7c0 17 6.7 33.3 18.7 45.3L478.1 491.3c18.7 18.7 49.1 18.7 67.9 0l73.4-73.4c18.7-18.7 18.7-49.1 0-67.9L512 242.7c-12-12-28.3-18.7-45.3-18.7H384zm24 80a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-tie": { + "aliases": { + "unicodes": { + "secondary": [ + "10f508" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "avatar", + "business", + "clothing", + "formal", + "professional", + "suit" + ] + }, + "unicode": "f508", + "label": "User Tie", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 256A128 128 0 1 1 224 0a128 128 0 1 1 0 256zM209.1 359.2l-18.6-31c-6.4-10.7 1.3-24.2 13.7-24.2H224h19.7c12.4 0 20.1 13.6 13.7 24.2l-18.6 31 33.4 123.9 36-146.9c2-8.1 9.8-13.4 17.9-11.3c70.1 17.6 121.9 81 121.9 156.4c0 17-13.8 30.7-30.7 30.7H285.5c-2.1 0-4-.4-5.8-1.1l.3 1.1H168l.3-1.1c-1.8 .7-3.8 1.1-5.8 1.1H30.7C13.8 512 0 498.2 0 481.3c0-75.5 51.9-138.9 121.9-156.4c8.1-2 15.9 3.3 17.9 11.3l36 146.9 33.4-123.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-xmark": { + "aliases": { + "names": [ + "user-times" + ], + "unicodes": { + "secondary": [ + "10f235" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "delete", + "remove", + "x" + ] + }, + "unicode": "f235", + "label": "User Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM471 143c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0c0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f0c0", + "label": "Users", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 0a80 80 0 1 1 0 160A80 80 0 1 1 144 0zM512 0a80 80 0 1 1 0 160A80 80 0 1 1 512 0zM0 298.7C0 239.8 47.8 192 106.7 192h42.7c15.9 0 31 3.5 44.6 9.7c-1.3 7.2-1.9 14.7-1.9 22.3c0 38.2 16.8 72.5 43.3 96c-.2 0-.4 0-.7 0H21.3C9.6 320 0 310.4 0 298.7zM405.3 320c-.2 0-.4 0-.7 0c26.6-23.5 43.3-57.8 43.3-96c0-7.6-.7-15-1.9-22.3c13.6-6.3 28.7-9.7 44.6-9.7h42.7C592.2 192 640 239.8 640 298.7c0 11.8-9.6 21.3-21.3 21.3H405.3zM224 224a96 96 0 1 1 192 0 96 96 0 1 1 -192 0zM128 485.3C128 411.7 187.7 352 261.3 352H378.7C452.3 352 512 411.7 512 485.3c0 14.7-11.9 26.7-26.7 26.7H154.7c-14.7 0-26.7-11.9-26.7-26.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-between-lines": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covered", + "group", + "people" + ] + }, + "unicode": "e591", + "label": "Users Between Lines", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 24C0 10.7 10.7 0 24 0H616c13.3 0 24 10.7 24 24s-10.7 24-24 24H24C10.7 48 0 37.3 0 24zM0 488c0-13.3 10.7-24 24-24H616c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24zM83.2 160a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM32 320c0-35.3 28.7-64 64-64h96c12.2 0 23.7 3.4 33.4 9.4c-37.2 15.1-65.6 47.2-75.8 86.6H64c-17.7 0-32-14.3-32-32zm461.6 32c-10.3-40.1-39.6-72.6-77.7-87.4c9.4-5.5 20.4-8.6 32.1-8.6h96c35.3 0 64 28.7 64 64c0 17.7-14.3 32-32 32H493.6zM391.2 290.4c32.1 7.4 58.1 30.9 68.9 61.6c3.5 10 5.5 20.8 5.5 32c0 17.7-14.3 32-32 32h-224c-17.7 0-32-14.3-32-32c0-11.2 1.9-22 5.5-32c10.5-29.7 35.3-52.8 66.1-60.9c7.8-2.1 16-3.1 24.5-3.1h96c7.4 0 14.7 .8 21.6 2.4zm44-130.4a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM321.6 96a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-gear": { + "aliases": { + "names": [ + "users-cog" + ], + "unicodes": { + "secondary": [ + "10f509" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f509", + "label": "Users Gear", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 160A80 80 0 1 0 144 0a80 80 0 1 0 0 160zm368 0A80 80 0 1 0 512 0a80 80 0 1 0 0 160zM0 298.7C0 310.4 9.6 320 21.3 320H234.7c.2 0 .4 0 .7 0c-26.6-23.5-43.3-57.8-43.3-96c0-7.6 .7-15 1.9-22.3c-13.6-6.3-28.7-9.7-44.6-9.7H106.7C47.8 192 0 239.8 0 298.7zM320 320c24 0 45.9-8.8 62.7-23.3c2.5-3.7 5.2-7.3 8-10.7c2.7-3.3 5.7-6.1 9-8.3C410 262.3 416 243.9 416 224c0-53-43-96-96-96s-96 43-96 96s43 96 96 96zm65.4 60.2c-10.3-5.9-18.1-16.2-20.8-28.2H261.3C187.7 352 128 411.7 128 485.3c0 14.7 11.9 26.7 26.7 26.7H455.2c-2.1-5.2-3.2-10.9-3.2-16.4v-3c-1.3-.7-2.7-1.5-4-2.3l-2.6 1.5c-16.8 9.7-40.5 8-54.7-9.7c-4.5-5.6-8.6-11.5-12.4-17.6l-.1-.2-.1-.2-2.4-4.1-.1-.2-.1-.2c-3.4-6.2-6.4-12.6-9-19.3c-8.2-21.2 2.2-42.6 19-52.3l2.7-1.5c0-.8 0-1.5 0-2.3s0-1.5 0-2.3l-2.7-1.5zM533.3 192H490.7c-15.9 0-31 3.5-44.6 9.7c1.3 7.2 1.9 14.7 1.9 22.3c0 17.4-3.5 33.9-9.7 49c2.5 .9 4.9 2 7.1 3.3l2.6 1.5c1.3-.8 2.6-1.6 4-2.3v-3c0-19.4 13.3-39.1 35.8-42.6c7.9-1.2 16-1.9 24.2-1.9s16.3 .6 24.2 1.9c22.5 3.5 35.8 23.2 35.8 42.6v3c1.3 .7 2.7 1.5 4 2.3l2.6-1.5c16.8-9.7 40.5-8 54.7 9.7c2.3 2.8 4.5 5.8 6.6 8.7c-2.1-57.1-49-102.7-106.6-102.7zm91.3 163.9c6.3-3.6 9.5-11.1 6.8-18c-2.1-5.5-4.6-10.8-7.4-15.9l-2.3-4c-3.1-5.1-6.5-9.9-10.2-14.5c-4.6-5.7-12.7-6.7-19-3L574.4 311c-8.9-7.6-19.1-13.6-30.4-17.6v-21c0-7.3-4.9-13.8-12.1-14.9c-6.5-1-13.1-1.5-19.9-1.5s-13.4 .5-19.9 1.5c-7.2 1.1-12.1 7.6-12.1 14.9v21c-11.2 4-21.5 10-30.4 17.6l-18.2-10.5c-6.3-3.6-14.4-2.6-19 3c-3.7 4.6-7.1 9.5-10.2 14.6l-2.3 3.9c-2.8 5.1-5.3 10.4-7.4 15.9c-2.6 6.8 .5 14.3 6.8 17.9l18.2 10.5c-1 5.7-1.6 11.6-1.6 17.6s.6 11.9 1.6 17.5l-18.2 10.5c-6.3 3.6-9.5 11.1-6.8 17.9c2.1 5.5 4.6 10.7 7.4 15.8l2.4 4.1c3 5.1 6.4 9.9 10.1 14.5c4.6 5.7 12.7 6.7 19 3L449.6 457c8.9 7.6 19.2 13.6 30.4 17.6v21c0 7.3 4.9 13.8 12.1 14.9c6.5 1 13.1 1.5 19.9 1.5s13.4-.5 19.9-1.5c7.2-1.1 12.1-7.6 12.1-14.9v-21c11.2-4 21.5-10 30.4-17.6l18.2 10.5c6.3 3.6 14.4 2.6 19-3c3.7-4.6 7.1-9.4 10.1-14.5l2.4-4.2c2.8-5.1 5.3-10.3 7.4-15.8c2.6-6.8-.5-14.3-6.8-17.9l-18.2-10.5c1-5.7 1.6-11.6 1.6-17.5s-.6-11.9-1.6-17.6l18.2-10.5zM472 384a40 40 0 1 1 80 0 40 40 0 1 1 -80 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "group", + "need", + "people" + ] + }, + "unicode": "e592", + "label": "Users Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M211.2 96a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zM32 256c0 17.7 14.3 32 32 32h85.6c10.1-39.4 38.6-71.5 75.8-86.6c-9.7-6-21.2-9.4-33.4-9.4H96c-35.3 0-64 28.7-64 64zm461.6 32H576c17.7 0 32-14.3 32-32c0-35.3-28.7-64-64-64H448c-11.7 0-22.7 3.1-32.1 8.6c38.1 14.8 67.4 47.3 77.7 87.4zM391.2 226.4c-6.9-1.6-14.2-2.4-21.6-2.4h-96c-8.5 0-16.7 1.1-24.5 3.1c-30.8 8.1-55.6 31.1-66.1 60.9c-3.5 10-5.5 20.8-5.5 32c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32c0-11.2-1.9-22-5.5-32c-10.8-30.7-36.8-54.2-68.9-61.6zM563.2 96a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zM321.6 192a80 80 0 1 0 0-160 80 80 0 1 0 0 160zM32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-rays": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "focused", + "group", + "people" + ] + }, + "unicode": "e593", + "label": "Users Rays", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M41 7C31.6-2.3 16.4-2.3 7 7S-2.3 31.6 7 41l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L41 7zM599 7L527 79c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0zM7 505c9.4 9.4 24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L7 471c-9.4 9.4-9.4 24.6 0 33.9zm592 0c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-72-72c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l72 72zM320 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM212.1 336c-2.7 7.5-4.1 15.6-4.1 24c0 13.3 10.7 24 24 24H408c13.3 0 24-10.7 24-24c0-8.4-1.4-16.5-4.1-24c-.5-1.4-1-2.7-1.6-4c-9.4-22.3-29.8-38.9-54.3-43c-3.9-.7-7.9-1-12-1H280c-4.1 0-8.1 .3-12 1c-.8 .1-1.7 .3-2.5 .5c-24.9 5.1-45.1 23-53.4 46.5zM175.8 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-26.5 32C119.9 256 96 279.9 96 309.3c0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6c-7.5-4.1-16.2-6.4-25.3-6.4H149.3zm368 80c14.7 0 26.7-11.9 26.7-26.7c0-29.5-23.9-53.3-53.3-53.3H421.3c-9.2 0-17.8 2.3-25.3 6.4c32.4 11.9 57.2 39.5 65.2 73.6h56.1zM464 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-rectangle": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "focus", + "group", + "people", + "reached" + ] + }, + "unicode": "e594", + "label": "Users Rectangle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H544c53 0 96-43 96-96V96c0-53-43-96-96-96H96zM64 96c0-17.7 14.3-32 32-32H544c17.7 0 32 14.3 32 32V416c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96zm159.8 80a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM96 309.3c0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6c-7.5-4.1-16.2-6.4-25.3-6.4H149.3C119.9 256 96 279.9 96 309.3zM461.2 336h56.1c14.7 0 26.7-11.9 26.7-26.7c0-29.5-23.9-53.3-53.3-53.3H421.3c-9.2 0-17.8 2.3-25.3 6.4c32.4 11.9 57.2 39.5 65.2 73.6zM372 289c-3.9-.7-7.9-1-12-1H280c-4.1 0-8.1 .3-12 1c-26 4.4-47.3 22.7-55.9 47c-2.7 7.5-4.1 15.6-4.1 24c0 13.3 10.7 24 24 24H408c13.3 0 24-10.7 24-24c0-8.4-1.4-16.5-4.1-24c-8.6-24.3-29.9-42.6-55.9-47zM512 176a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM320 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e073" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "e073", + "label": "Users Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L440.6 320H618.7c11.8 0 21.3-9.6 21.3-21.3C640 239.8 592.2 192 533.3 192H490.7c-15.9 0-31 3.5-44.6 9.7c1.3 7.2 1.9 14.7 1.9 22.3c0 30.2-10.5 58-28 79.9l-25.2-19.7C408.1 267.7 416 246.8 416 224c0-53-43-96-96-96c-31.1 0-58.7 14.8-76.3 37.7l-40.6-31.8c13-14.2 20.9-33.1 20.9-53.9c0-44.2-35.8-80-80-80C116.3 0 91.9 14.1 77.5 35.5L38.8 5.1zM106.7 192C47.8 192 0 239.8 0 298.7C0 310.4 9.6 320 21.3 320H234.7c.2 0 .4 0 .7 0c-20.6-18.2-35.2-42.8-40.8-70.8L121.8 192H106.7zM261.3 352C187.7 352 128 411.7 128 485.3c0 14.7 11.9 26.7 26.7 26.7H485.3c10.5 0 19.5-6 23.9-14.8L324.9 352H261.3zM512 160A80 80 0 1 0 512 0a80 80 0 1 0 0 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-viewfinder": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "focus", + "group", + "people", + "targeted" + ] + }, + "unicode": "e595", + "label": "Users Viewfinder", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 48h88c13.3 0 24-10.7 24-24s-10.7-24-24-24H32C14.3 0 0 14.3 0 32V136c0 13.3 10.7 24 24 24s24-10.7 24-24V48zM175.8 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-26.5 32C119.9 256 96 279.9 96 309.3c0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6c-7.5-4.1-16.2-6.4-25.3-6.4H149.3zm368 80c14.7 0 26.7-11.9 26.7-26.7c0-29.5-23.9-53.3-53.3-53.3H421.3c-9.2 0-17.8 2.3-25.3 6.4c32.4 11.9 57.2 39.5 65.2 73.6h56.1zm-89.4 0c-8.6-24.3-29.9-42.6-55.9-47c-3.9-.7-7.9-1-12-1H280c-4.1 0-8.1 .3-12 1c-26 4.4-47.3 22.7-55.9 47c-2.7 7.5-4.1 15.6-4.1 24c0 13.3 10.7 24 24 24H408c13.3 0 24-10.7 24-24c0-8.4-1.4-16.5-4.1-24zM464 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-80-32a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zM504 48h88v88c0 13.3 10.7 24 24 24s24-10.7 24-24V32c0-17.7-14.3-32-32-32H504c-13.3 0-24 10.7-24 24s10.7 24 24 24zM48 464V376c0-13.3-10.7-24-24-24s-24 10.7-24 24V480c0 17.7 14.3 32 32 32H136c13.3 0 24-10.7 24-24s-10.7-24-24-24H48zm456 0c-13.3 0-24 10.7-24 24s10.7 24 24 24H608c17.7 0 32-14.3 32-32V376c0-13.3-10.7-24-24-24s-24 10.7-24 24v88H504z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "usps": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "package", + "shipping", + "usa" + ] + }, + "unicode": "f7e1", + "label": "United States Postal Service", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M460.3 241.7c25.8-41.3 15.2-48.8-11.7-48.8h-27c-.1 0-1.5-1.4-10.9 8-11.2 5.6-37.9 6.3-37.9 8.7 0 4.5 70.3-3.1 88.1 0 9.5 1.5-1.5 20.4-4.4 32-.5 4.5 2.4 2.3 3.8.1zm-112.1 22.6c64-21.3 97.3-23.9 102-26.2 4.4-2.9-4.4-6.6-26.2-5.8-51.7 2.2-137.6 37.1-172.6 53.9l-30.7-93.3h196.6c-2.7-28.2-152.9-22.6-337.9-22.6L27 415.8c196.4-97.3 258.9-130.3 321.2-151.5zM94.7 96c253.3 53.7 330 65.7 332.1 85.2 36.4 0 45.9 0 52.4 6.6 21.1 19.7-14.6 67.7-14.6 67.7-4.4 2.9-406.4 160.2-406.4 160.2h423.1L549 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ussunnah": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f407", + "label": "us-Sunnah Foundation", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "utensils": { + "aliases": { + "names": [ + "cutlery" + ], + "unicodes": { + "composite": [ + "1f374", + "f0f5" + ], + "secondary": [ + "10f2e7" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cooking", + "cutlery", + "dining", + "dinner", + "eat", + "food", + "fork", + "fork and knife", + "knife", + "restaurant" + ] + }, + "unicode": "f2e7", + "label": "Utensils", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M416 0C400 0 288 32 288 176V288c0 35.3 28.7 64 64 64h32V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352 240 32c0-17.7-14.3-32-32-32zM64 16C64 7.8 57.9 1 49.7 .1S34.2 4.6 32.4 12.5L2.1 148.8C.7 155.1 0 161.5 0 167.9c0 45.9 35.1 83.6 80 87.7V480c0 17.7 14.3 32 32 32s32-14.3 32-32V255.6c44.9-4.1 80-41.8 80-87.7c0-6.4-.7-12.8-2.1-19.1L191.6 12.5c-1.8-8-9.3-13.3-17.4-12.4S160 7.8 160 16V150.2c0 5.4-4.4 9.8-9.8 9.8c-5.1 0-9.3-3.9-9.8-9L127.9 14.6C127.2 6.3 120.3 0 112 0s-15.2 6.3-15.9 14.6L83.7 151c-.5 5.1-4.7 9-9.8 9c-5.4 0-9.8-4.4-9.8-9.8V16zm48.3 152l-.3 0-.3 0 .3-.7 .3 .7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "v": { + "aliases": { + "unicodes": { + "composite": [ + "76" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter V", + "Latin Small Letter V", + "letter" + ] + }, + "unicode": "56", + "label": "V", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M19.7 34.5c16.3-6.8 35 .9 41.8 17.2L192 364.8 322.5 51.7c6.8-16.3 25.5-24 41.8-17.2s24 25.5 17.2 41.8l-160 384c-5 11.9-16.6 19.7-29.5 19.7s-24.6-7.8-29.5-19.7L2.5 76.3c-6.8-16.3 .9-35 17.2-41.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vaadin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f408", + "label": "Vaadin", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "van-shuttle": { + "aliases": { + "names": [ + "shuttle-van" + ], + "unicodes": { + "composite": [ + "1f690" + ], + "secondary": [ + "10f5b6" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airport", + "bus", + "machine", + "minibus", + "public-transportation", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f5b6", + "label": "Van Shuttle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 104v88h96V96H72c-4.4 0-8 3.6-8 8zm482 88L465.1 96H384v96H546zm-226 0V96H224v96h96zM592 384H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V104C0 64.2 32.2 32 72 32H192 352 465.1c18.9 0 36.8 8.3 49 22.8L625 186.5c9.7 11.5 15 26.1 15 41.2V336c0 26.5-21.5 48-48 48zm-64 0a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM160 432a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vault": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "important", + "lock", + "money", + "safe" + ] + }, + "unicode": "e2c5", + "label": "Vault", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V416c0 35.3 28.7 64 64 64H80l16 32h64l16-32H400l16 32h64l16-32h16c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM224 320a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm0-240a160 160 0 1 1 0 320 160 160 0 1 1 0-320zM480 221.3V336c0 8.8-7.2 16-16 16s-16-7.2-16-16V221.3c-18.6-6.6-32-24.4-32-45.3c0-26.5 21.5-48 48-48s48 21.5 48 48c0 20.9-13.4 38.7-32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vector-square": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5cb" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchors", + "lines", + "object", + "render", + "shape" + ] + }, + "unicode": "f5cb", + "label": "Vector Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M368 80h32v32H368V80zM352 32c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v64c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32V160c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H352zM96 160c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32V160zM48 400H80v32H48V400zm320 32V400h32v32H368zM48 112V80H80v32H48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "venus": { + "aliases": { + "unicodes": { + "composite": [ + "2640" + ], + "secondary": [ + "10f221" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "female", + "female sign", + "gender", + "woman" + ] + }, + "unicode": "f221", + "label": "Venus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 176a112 112 0 1 1 224 0A112 112 0 1 1 64 176zM208 349.1c81.9-15 144-86.8 144-173.1C352 78.8 273.2 0 176 0S0 78.8 0 176c0 86.3 62.1 158.1 144 173.1V384H112c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H208V349.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "venus-double": { + "aliases": { + "unicodes": { + "composite": [ + "26a2" + ], + "secondary": [ + "10f226" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Doubled Female Sign", + "female", + "gender", + "lesbian" + ] + }, + "unicode": "f226", + "label": "Venus Double", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M176 288a112 112 0 1 0 0-224 112 112 0 1 0 0 224zM352 176c0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H208v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H112c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V349.1C62.1 334.1 0 262.3 0 176C0 78.8 78.8 0 176 0s176 78.8 176 176zM328 318c14.6-15.6 26.8-33.4 36-53c18.8 14.4 42.4 23 68 23c61.9 0 112-50.1 112-112s-50.1-112-112-112c-25.6 0-49.1 8.6-68 23c-9.3-19.5-21.5-37.4-36-53C357.1 12.6 393.1 0 432 0c97.2 0 176 78.8 176 176c0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H464v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H368c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V349.1c-26.6-4.9-51.1-15.7-72-31.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "venus-mars": { + "aliases": { + "unicodes": { + "composite": [ + "26a4" + ], + "secondary": [ + "10f228" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Interlocked Female and Male Sign", + "female", + "gender", + "heterosexual", + "male" + ] + }, + "unicode": "f228", + "label": "Venus Mars", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M176 288a112 112 0 1 0 0-224 112 112 0 1 0 0 224zM352 176c0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H208v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H112c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V349.1C62.1 334.1 0 262.3 0 176C0 78.8 78.8 0 176 0s176 78.8 176 176zM271.9 360.6c19.3-10.1 36.9-23.1 52.1-38.4c20 18.5 46.7 29.8 76.1 29.8c61.9 0 112-50.1 112-112s-50.1-112-112-112c-7.2 0-14.3 .7-21.1 2c-4.9-21.5-13-41.7-24-60.2C369.3 66 384.4 64 400 64c37 0 71.4 11.4 99.8 31l20.6-20.6L487 41c-6.9-6.9-8.9-17.2-5.2-26.2S494.3 0 504 0H616c13.3 0 24 10.7 24 24V136c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-33.4-33.4L545 140.2c19.5 28.4 31 62.7 31 99.8c0 97.2-78.8 176-176 176c-50.5 0-96-21.3-128.1-55.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vest": { + "aliases": { + "unicodes": { + "secondary": [ + "10e085" + ] + } + }, + "changes": [ + "5.15.0", + "5.15.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "biker", + "fashion", + "style" + ] + }, + "unicode": "e085", + "label": "Vest", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M207.1 237.4L151.2 69.7C168.6 79.7 192.6 88 224 88s55.4-8.3 72.8-18.3L226.5 280.6c-1.6 4.9-2.5 10-2.5 15.2V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V270.5c0-9.5-2.8-18.7-8.1-26.6l-47.9-71.8c-5.3-7.9-8.1-17.1-8.1-26.6V128 54.3 48c0-26.5-21.5-48-48-48h-4.5c-.2 0-.4 0-.6 0c-.4 0-.8 0-1.2 0C311 0 295.7 9.7 285.7 18.8C276.4 27.2 257.2 40 224 40s-52.4-12.8-61.7-21.2C152.3 9.7 137 0 118.3 0c-.4 0-.8 0-1.2 0c-.2 0-.4 0-.6 0H112C85.5 0 64 21.5 64 48v6.3V128v17.5c0 9.5-2.8 18.7-8.1 26.6L8.1 243.9C2.8 251.8 0 261.1 0 270.5V464c0 26.5 21.5 48 48 48H176c9.9 0 19-3 26.7-8.1C195.9 492.2 192 478.5 192 464V295.8c0-8.6 1.4-17.1 4.1-25.3l11-33.1zM347.3 356.7l48 48c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-48-48c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0zm-294.6 48l48-48c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6l-48 48c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vest-patches": { + "aliases": { + "unicodes": { + "secondary": [ + "10e086" + ] + } + }, + "changes": [ + "5.15.0", + "5.15.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "biker", + "fashion", + "style" + ] + }, + "unicode": "e086", + "label": "Vest Patches", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M151.2 69.7l55.9 167.7-11 33.1c-2.7 8.2-4.1 16.7-4.1 25.3V464c0 14.5 3.9 28.2 10.7 39.9C195 509 185.9 512 176 512H48c-26.5 0-48-21.5-48-48V270.5c0-9.5 2.8-18.7 8.1-26.6l47.9-71.8c5.3-7.9 8.1-17.1 8.1-26.6V128 54.3 48C64 21.5 85.5 0 112 0h4.5c.2 0 .4 0 .6 0c.4 0 .8 0 1.2 0c18.8 0 34.1 9.7 44.1 18.8C171.6 27.2 190.8 40 224 40s52.4-12.8 61.7-21.2C295.7 9.7 311 0 329.7 0c.4 0 .8 0 1.2 0c.2 0 .4 0 .6 0H336c26.5 0 48 21.5 48 48v6.3V128v17.5c0 9.5 2.8 18.7 8.1 26.6l47.9 71.8c5.3 7.9 8.1 17.1 8.1 26.6V464c0 26.5-21.5 48-48 48H272c-26.5 0-48-21.5-48-48V295.8c0-5.2 .8-10.3 2.5-15.2L296.8 69.7C279.4 79.7 255.4 88 224 88s-55.4-8.3-72.8-18.3zM96 456a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM63.5 255.5c-4.7 4.7-4.7 12.3 0 17L79 288 63.5 303.5c-4.7 4.7-4.7 12.3 0 17s12.3 4.7 17 0L96 305l15.5 15.5c4.7 4.7 12.3 4.7 17 0s4.7-12.3 0-17L113 288l15.5-15.5c4.7-4.7 4.7-12.3 0-17s-12.3-4.7-17 0L96 271 80.5 255.5c-4.7-4.7-12.3-4.7-17 0zM304 280v8 32c0 8.8 7.2 16 16 16h32 8c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8v-8c0-13.3-10.7-24-24-24s-24 10.7-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "viacoin": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f237", + "label": "Viacoin", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "viadeo": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2a9", + "label": "Viadeo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "vial": { + "aliases": { + "unicodes": { + "composite": [ + "1f9ea" + ], + "secondary": [ + "10f492" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "chemist", + "chemistry", + "experiment", + "lab", + "sample", + "science", + "test", + "test tube" + ] + }, + "unicode": "f492", + "label": "Vial", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M342.6 9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l9.4 9.4L28.1 342.6C10.1 360.6 0 385 0 410.5V416c0 53 43 96 96 96h5.5c25.5 0 49.9-10.1 67.9-28.1L448 205.3l9.4 9.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-32-32-96-96-32-32zM205.3 256L352 109.3 402.7 160l-96 96H205.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vial-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "chemist", + "chemistry", + "not affected", + "ok", + "okay", + "success", + "test tube", + "tube", + "vaccine" + ] + }, + "unicode": "e596", + "label": "Vial Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H96h64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32V266.8c-20.2 28.6-32 63.5-32 101.2c0 25.2 5.3 49.1 14.8 70.8C189.5 463.7 160.6 480 128 480c-53 0-96-43-96-96V96C14.3 96 0 81.7 0 64zM96 96v96h64V96H96zM224 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L352 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vial-virus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "coronavirus", + "covid-19", + "flue", + "infection", + "lab", + "laboratory", + "pandemic", + "test", + "test tube", + "vaccine" + ] + }, + "unicode": "e597", + "label": "Vial Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96V384c0 53 43 96 96 96c28.6 0 54.2-12.5 71.8-32.3c.1-14.2 5.6-28.3 16.4-39.1c.2-.2 .1-.6-.2-.6c-30.9 0-56-25.1-56-56s25.1-56 56-56c.3 0 .4-.4 .2-.6c-21.9-21.9-21.9-57.3 0-79.2c2.4-2.4 5-4.6 7.8-6.5V96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160 96 32zM96 192V96h64v96H96zM216 376c28.8 0 43.2 34.8 22.9 55.2c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0c20.4-20.4 55.2-5.9 55.2 22.9c0 13.3 10.7 24 24 24s24-10.7 24-24c0-28.8 34.8-43.2 55.2-22.9c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9C444.8 410.8 459.2 376 488 376c13.3 0 24-10.7 24-24s-10.7-24-24-24c-28.8 0-43.2-34.8-22.9-55.2c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0C410.8 259.2 376 244.8 376 216c0-13.3-10.7-24-24-24s-24 10.7-24 24c0 28.8-34.8 43.2-55.2 22.9c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9c20.4 20.4 5.9 55.2-22.9 55.2c-13.3 0-24 10.7-24 24s10.7 24 24 24zm104-88a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm40 96a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vials": { + "aliases": { + "unicodes": { + "secondary": [ + "10f493" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "experiment", + "lab", + "sample", + "science", + "test", + "test tube" + ] + }, + "unicode": "f493", + "label": "Vials", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H88h48 56c17.7 0 32 14.3 32 32s-14.3 32-32 32V400c0 44.2-35.8 80-80 80s-80-35.8-80-80V96C14.3 96 0 81.7 0 64zM136 96H88V256h48V96zM288 64c0-17.7 14.3-32 32-32h56 48 56c17.7 0 32 14.3 32 32s-14.3 32-32 32V400c0 44.2-35.8 80-80 80s-80-35.8-80-80V96c-17.7 0-32-14.3-32-32zM424 96H376V256h48V96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "viber": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f409", + "label": "Viber", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "video": { + "aliases": { + "names": [ + "video-camera" + ], + "unicodes": { + "secondary": [ + "10f03d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camera", + "film", + "movie", + "record", + "video-camera" + ] + }, + "unicode": "f03d", + "label": "Video", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H320c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM559.1 99.8c10.4 5.6 16.9 16.4 16.9 28.2V384c0 11.8-6.5 22.6-16.9 28.2s-23 5-32.9-1.6l-96-64L416 337.1V320 192 174.9l14.2-9.5 96-64c9.8-6.5 22.4-7.2 32.9-1.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "video-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4e2" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "film", + "new", + "positive", + "record", + "video" + ] + }, + "unicode": "f4e2", + "label": "Video Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-86.4-67.7 13.8 9.2c9.8 6.5 22.4 7.2 32.9 1.6s16.9-16.4 16.9-28.2V128c0-11.8-6.5-22.6-16.9-28.2s-23-5-32.9 1.6l-96 64L448 174.9V192 320v5.8l-32-25.1V128c0-35.3-28.7-64-64-64H113.9L38.8 5.1zM32 128V384c0 35.3 28.7 64 64 64H352c23.4 0 43.9-12.6 55-31.3L32.3 121.5c-.2 2.1-.3 4.3-.3 6.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vihara": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6a7" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buddhism", + "buddhist", + "building", + "monastery" + ] + }, + "unicode": "f6a7", + "label": "Vihara", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M281 22L305.8 4.7c1.3-.9 2.7-1.8 4.1-2.4C313.1 .7 316.6 0 320 0s6.9 .7 10.1 2.2c1.4 .7 2.8 1.5 4.1 2.4L359 22C393 45.8 430.8 63.5 470.8 74.4l23 6.3c1.8 .5 3.6 1.1 5.2 2c3.2 1.7 5.9 4 8.1 6.8c3.8 4.9 5.6 11.3 4.7 17.8c-.4 2.8-1.2 5.4-2.5 7.8c-1.7 3.2-4 5.9-6.8 8.1c-4.3 3.2-9.6 5.1-15.1 4.9H480v56.1l6.4 5.1 5.2 4.1c21.1 16.7 45 29.6 70.5 38.1l28.9 9.6c1.6 .5 3.2 1.2 4.6 2c3.1 1.7 5.8 4.1 7.8 6.9s3.5 6.1 4.1 9.6c.5 2.7 .6 5.5 .1 8.3s-1.4 5.4-2.7 7.8c-1.7 3.1-4.1 5.8-6.9 7.8s-6.1 3.5-9.6 4.1c-1.6 .3-3.3 .4-5 .4H544v65.9c20.5 22.8 47.4 39.2 77.4 46.7C632 403 640 412.6 640 424c0 13.3-10.7 24-24 24H576v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H352v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H128v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H24c-13.3 0-24-10.7-24-24c0-11.4 8-21 18.6-23.4c30-7.6 56.9-23.9 77.4-46.7V288H56.6c-1.7 0-3.4-.1-5-.4c-3.5-.7-6.8-2.1-9.6-4.1s-5.2-4.7-7-7.8c-1.3-2.4-2.3-5-2.7-7.8s-.4-5.6 .1-8.3c.7-3.5 2.1-6.8 4.1-9.6s4.7-5.2 7.8-6.9c1.4-.8 3-1.5 4.6-2l28.9-9.6c25.5-8.5 49.4-21.4 70.5-38.1l5.2-4.1 6.4-5.1V176 128h-7.5c-5.5 .1-10.8-1.7-15.1-4.9c-2.8-2.1-5.1-4.8-6.8-8.1c-1.2-2.4-2.1-5-2.5-7.8c-.9-6.5 .9-12.8 4.7-17.8c2.1-2.8 4.8-5.1 8.1-6.8c1.6-.8 3.4-1.5 5.2-2l23-6.3C209.2 63.5 247 45.8 281 22zM416 128H320 224v64h72 48 72V128zM160 288v64H296h24 24H480V288H344 320h0H296 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vimeo": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f40a", + "label": "Vimeo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "vimeo-v": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "vimeo" + ] + }, + "unicode": "f27d", + "label": "Vimeo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "vine": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1ca", + "label": "Vine", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "virus": { + "aliases": { + "unicodes": { + "secondary": [ + "10e074" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "coronavirus", + "covid-19", + "flu", + "health", + "infection", + "pandemic", + "sick", + "vaccine", + "viral" + ] + }, + "unicode": "e074", + "label": "Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43.5c0 49.9-60.3 74.9-95.6 39.6L120.2 75C107.7 62.5 87.5 62.5 75 75s-12.5 32.8 0 45.3l8.2 8.2C118.4 163.7 93.4 224 43.5 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H43.5c49.9 0 74.9 60.3 39.6 95.6L75 391.8c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l8.2-8.2c35.3-35.3 95.6-10.3 95.6 39.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V468.5c0-49.9 60.3-74.9 95.6-39.6l8.2 8.2c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-8.2-8.2c-35.3-35.3-10.3-95.6 39.6-95.6H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H468.5c-49.9 0-74.9-60.3-39.6-95.6l8.2-8.2c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-8.2 8.2C348.3 118.4 288 93.4 288 43.5V32zM176 224a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm128 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "virus-covid": { + "changes": [ + "6.0.0", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "covid-19", + "flu", + "health", + "infection", + "pandemic", + "vaccine", + "viral", + "virus" + ] + }, + "unicode": "e4a8", + "label": "Virus Covid", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 24c0-13.3 10.7-24 24-24h80c13.3 0 24 10.7 24 24s-10.7 24-24 24H280V81.6c30.7 4.2 58.8 16.3 82.3 34.1L386.1 92 374.8 80.6c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l56.6 56.6c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L420 125.9l-23.8 23.8c17.9 23.5 29.9 51.7 34.1 82.3H464V216c0-13.3 10.7-24 24-24s24 10.7 24 24v80c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H430.4c-4.2 30.7-16.3 58.8-34.1 82.3L420 386.1l11.3-11.3c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-56.6 56.6c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L386.1 420l-23.8-23.8c-23.5 17.9-51.7 29.9-82.3 34.1V464h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h16V430.4c-30.7-4.2-58.8-16.3-82.3-34.1L125.9 420l11.3 11.3c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L46.7 408.7c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L92 386.1l23.8-23.8C97.9 338.8 85.8 310.7 81.6 280H48v16c0 13.3-10.7 24-24 24s-24-10.7-24-24V216c0-13.3 10.7-24 24-24s24 10.7 24 24v16H81.6c4.2-30.7 16.3-58.8 34.1-82.3L92 125.9 80.6 137.2c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l56.6-56.6c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L125.9 92l23.8 23.8c23.5-17.9 51.7-29.9 82.3-34.1V48H216c-13.3 0-24-10.7-24-24zm48 200a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm64 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "virus-covid-slash": { + "changes": [ + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "covid-19", + "flu", + "health", + "infection", + "pandemic", + "vaccine", + "viral", + "virus" + ] + }, + "unicode": "e4a9", + "label": "Virus Covid Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c11.4-19.5 19.1-41.4 22.3-64.7H528v16c0 13.3 10.7 24 24 24s24-10.7 24-24V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v16H494.4c-4.2-30.7-16.3-58.8-34.1-82.3L484 125.9l11.3 11.3c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L472.7 46.7c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L450.1 92l-23.8 23.8C402.8 97.9 374.7 85.8 344 81.6V48h16c13.3 0 24-10.7 24-24s-10.7-24-24-24H280c-13.3 0-24 10.7-24 24s10.7 24 24 24h16V81.6c-30.7 4.2-58.8 16.3-82.3 34.1L189.9 92l11.3-11.3c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L134.1 79.8 38.8 5.1zM149.2 213.5c-1.5 6-2.7 12.2-3.5 18.5H112V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v80c0 13.3 10.7 24 24 24s24-10.7 24-24V280h33.6c4.2 30.7 16.3 58.8 34.1 82.3L156 386.1l-11.3-11.3c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l56.6 56.6c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L189.9 420l23.8-23.8c23.5 17.9 51.7 29.9 82.3 34.1V464H280c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V430.4c20.4-2.8 39.7-9.1 57.3-18.2L149.2 213.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "virus-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e075" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "coronavirus", + "covid-19", + "cure", + "eliminate", + "flu", + "health", + "infection", + "pandemic", + "sick", + "vaccine", + "viral" + ] + }, + "unicode": "e075", + "label": "Virus Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-154.3-121c-2-30.1 20.8-60.1 56-60.1H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H532.5c-49.9 0-74.9-60.3-39.6-95.6l8.2-8.2c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-8.2 8.2C412.3 118.4 352 93.4 352 43.5V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43.5c0 49.9-60.3 74.9-95.6 39.6L184.2 75c-12.5-12.5-32.8-12.5-45.3 0c-1.6 1.6-3.1 3.4-4.3 5.3L38.8 5.1zm225.8 177c6.9-3.9 14.9-6.1 23.4-6.1c26.5 0 48 21.5 48 48c0 4.4-.6 8.7-1.7 12.7l-69.7-54.6zM107.5 224H96c-17.7 0-32 14.3-32 32s14.3 32 32 32h11.5c49.9 0 74.9 60.3 39.6 95.6l-8.2 8.2c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l8.2-8.2c35.3-35.3 95.6-10.3 95.6 39.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V468.5c0-31.2 23.6-52.7 50-55.7L144.7 210c-9.5 8.5-22.2 14-37.2 14z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "viruses": { + "aliases": { + "unicodes": { + "secondary": [ + "10e076" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bugs", + "coronavirus", + "covid-19", + "flu", + "health", + "infection", + "multiply", + "pandemic", + "sick", + "spread", + "vaccine", + "viral" + ] + }, + "unicode": "e076", + "label": "Viruses", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 0c13.3 0 24 10.7 24 24V37.5c0 35.6 43.1 53.5 68.3 28.3l9.5-9.5c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-9.5 9.5C293 124.9 310.9 168 346.5 168H360c13.3 0 24 10.7 24 24s-10.7 24-24 24H346.5c-35.6 0-53.5 43.1-28.3 68.3l9.5 9.5c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-9.5-9.5C259.1 293 216 310.9 216 346.5V360c0 13.3-10.7 24-24 24s-24-10.7-24-24V346.5c0-35.6-43.1-53.5-68.3-28.3l-9.5 9.5c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l9.5-9.5C91 259.1 73.1 216 37.5 216H24c-13.3 0-24-10.7-24-24s10.7-24 24-24H37.5c35.6 0 53.5-43.1 28.3-68.3l-9.5-9.5c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l9.5 9.5C124.9 91 168 73.1 168 37.5V24c0-13.3 10.7-24 24-24zm48 224a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm-48-64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm320 80c0 33 39.9 49.5 63.2 26.2c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C574.5 312.1 591 352 624 352c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0C551.9 446.5 512 463 512 496c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C417.5 423.9 401 384 368 384c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C440.1 289.5 480 273 480 240c0-8.8 7.2-16 16-16s16 7.2 16 16zm0 112a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vk": { + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f189", + "label": "VK", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M31.4907 63.4907C0 94.9813 0 145.671 0 247.04V264.96C0 366.329 0 417.019 31.4907 448.509C62.9813 480 113.671 480 215.04 480H232.96C334.329 480 385.019 480 416.509 448.509C448 417.019 448 366.329 448 264.96V247.04C448 145.671 448 94.9813 416.509 63.4907C385.019 32 334.329 32 232.96 32H215.04C113.671 32 62.9813 32 31.4907 63.4907ZM75.6 168.267H126.747C128.427 253.76 166.133 289.973 196 297.44V168.267H244.16V242C273.653 238.827 304.64 205.227 315.093 168.267H363.253C359.313 187.435 351.46 205.583 340.186 221.579C328.913 237.574 314.461 251.071 297.733 261.227C316.41 270.499 332.907 283.63 346.132 299.751C359.357 315.873 369.01 334.618 374.453 354.747H321.44C316.555 337.262 306.614 321.61 292.865 309.754C279.117 297.899 262.173 290.368 244.16 288.107V354.747H238.373C136.267 354.747 78.0267 284.747 75.6 168.267Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "vnv": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f40b", + "label": "VNV", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "voicemail": { + "aliases": { + "unicodes": { + "secondary": [ + "10f897" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "answer", + "inbox", + "message", + "phone" + ] + }, + "unicode": "f897", + "label": "Voicemail", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 320a80 80 0 1 1 0-160 80 80 0 1 1 0 160zm119.8 0c15.3-22.9 24.2-50.4 24.2-80c0-79.5-64.5-144-144-144S0 160.5 0 240s64.5 144 144 144H496c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144c0 29.6 8.9 57.1 24.2 80H263.8zM496 160a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volcano": { + "aliases": { + "unicodes": { + "composite": [ + "1f30b" + ], + "secondary": [ + "10f770" + ] + } + }, + "changes": [ + "5.5.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caldera", + "eruption", + "lava", + "magma", + "mountain", + "smoke", + "volcano" + ] + }, + "unicode": "f770", + "label": "Volcano", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 144c-35.3 0-64-28.7-64-64s28.7-64 64-64c15.7 0 30 5.6 41.2 15C212.4 12.4 232.7 0 256 0s43.6 12.4 54.8 31C322 21.6 336.3 16 352 16c35.3 0 64 28.7 64 64s-28.7 64-64 64c-14.7 0-28.3-5-39.1-13.3l-32 48C275.3 187 266 192 256 192s-19.3-5-24.9-13.3l-32-48C188.3 139 174.7 144 160 144zM144 352l48.4-24.2c10.2-5.1 21.6-7.8 33-7.8c19.6 0 38.4 7.8 52.2 21.6l32.5 32.5c6.3 6.3 14.9 9.9 23.8 9.9c11.3 0 21.8-5.6 28-15l9.7-14.6-59-66.3c-9.1-10.2-22.2-16.1-35.9-16.1H235.1c-13.7 0-26.8 5.9-35.9 16.1l-59.9 67.4L144 352zm19.4-95.8c18.2-20.5 44.3-32.2 71.8-32.2h41.8c27.4 0 53.5 11.7 71.8 32.2l150.2 169c8.5 9.5 13.2 21.9 13.2 34.7c0 28.8-23.4 52.2-52.2 52.2H52.2C23.4 512 0 488.6 0 459.8c0-12.8 4.7-25.1 13.2-34.7l150.2-169z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volleyball": { + "aliases": { + "names": [ + "volleyball-ball" + ], + "unicodes": { + "composite": [ + "1f3d0" + ], + "secondary": [ + "10f45f" + ] + } + }, + "changes": [ + "5.0.5", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "beach", + "game", + "olympics", + "sport", + "volleyball" + ] + }, + "unicode": "f45f", + "label": "Volleyball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321886, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M511.8 267.4c-26.1 8.7-53.4 13.8-81 15.1c9.2-105.3-31.5-204.2-103.2-272.4C434.1 41.1 512 139.5 512 256c0 3.8-.1 7.6-.2 11.4zm-3.9 34.7c-5.8 32-17.6 62-34.2 88.7c-97.5 48.5-217.7 42.6-311.9-24.5c23.7-36.2 55.4-67.7 94.5-91.8c79.9 43.2 170.1 50.8 251.6 27.6zm-236-55.5c-2.5-90.9-41.1-172.7-101.9-231.7C196.8 5.2 225.8 0 256 0c2.7 0 5.3 0 7.9 .1c90.8 60.2 145.7 167.2 134.7 282.3c-43.1-2.4-86.4-14.1-126.8-35.9zM138 28.8c20.6 18.3 38.7 39.4 53.7 62.6C95.9 136.1 30.6 220.8 7.3 316.9C2.5 297.4 0 277 0 256C0 157.2 56 71.5 138 28.8zm69.6 90.5c19.5 38.6 31 81.9 32.3 127.7C162.5 294.6 110.9 368.9 90.2 451C66 430.4 45.6 405.4 30.4 377.2c6.7-108.7 71.9-209.9 177.1-257.9zM256 512c-50.7 0-98-14.7-137.8-40.2c5.6-27 14.8-53.1 27.4-77.7C232.2 454.6 338.1 468.8 433 441c-46 44-108.3 71-177 71z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volume-high": { + "aliases": { + "names": [ + "volume-up" + ], + "unicodes": { + "composite": [ + "1f50a" + ], + "secondary": [ + "10f028" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "higher", + "loud", + "louder", + "music", + "sound", + "speaker", + "speaker high volume" + ] + }, + "unicode": "f028", + "label": "Volume High", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M533.6 32.5C598.5 85.3 640 165.8 640 256s-41.5 170.8-106.4 223.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C557.5 398.2 592 331.2 592 256s-34.5-142.2-88.7-186.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zM473.1 107c43.2 35.2 70.9 88.9 70.9 149s-27.7 113.8-70.9 149c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C475.3 341.3 496 301.1 496 256s-20.7-85.3-53.2-111.8c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zm-60.5 74.5C434.1 199.1 448 225.9 448 256s-13.9 56.9-35.4 74.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C393.1 284.4 400 271 400 256s-6.9-28.4-17.7-37.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zM301.1 34.8C312.6 40 320 51.4 320 64V448c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volume-low": { + "aliases": { + "names": [ + "volume-down" + ], + "unicodes": { + "composite": [ + "1f508" + ], + "secondary": [ + "10f027" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "lower", + "music", + "quieter", + "soft", + "sound", + "speaker", + "speaker low volume" + ] + }, + "unicode": "f027", + "label": "Volume Low", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M301.1 34.8C312.6 40 320 51.4 320 64V448c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3zM412.6 181.5C434.1 199.1 448 225.9 448 256s-13.9 56.9-35.4 74.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C393.1 284.4 400 271 400 256s-6.9-28.4-17.7-37.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volume-off": { + "aliases": { + "unicodes": { + "secondary": [ + "10f026" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "ban", + "music", + "mute", + "quiet", + "silent", + "sound" + ] + }, + "unicode": "f026", + "label": "Volume Off", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M320 64c0-12.6-7.4-24-18.9-29.2s-25-3.1-34.4 5.3L131.8 160H64c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64h67.8L266.7 471.9c9.4 8.4 22.9 10.4 34.4 5.3S320 460.6 320 448V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volume-xmark": { + "aliases": { + "names": [ + "volume-mute", + "volume-times" + ], + "unicodes": { + "secondary": [ + "10f6a9" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "music", + "quiet", + "sound", + "speaker" + ] + }, + "unicode": "f6a9", + "label": "Volume Xmark", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M301.1 34.8C312.6 40 320 51.4 320 64V448c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3zM425 167l55 55 55-55c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-55 55 55 55c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-55-55-55 55c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l55-55-55-55c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vr-cardboard": { + "aliases": { + "unicodes": { + "secondary": [ + "10f729" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "3d", + "augment", + "google", + "reality", + "virtual" + ] + }, + "unicode": "f729", + "label": "Vr Cardboard", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M576 64H64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H184.4c24.2 0 46.4-13.7 57.2-35.4l32-64c8.8-17.5 26.7-28.6 46.3-28.6s37.5 11.1 46.3 28.6l32 64c10.8 21.7 33 35.4 57.2 35.4H576c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zM96 240a64 64 0 1 1 128 0A64 64 0 1 1 96 240zm384-64a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vuejs": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41f", + "label": "Vue.js", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "w": { + "aliases": { + "unicodes": { + "composite": [ + "77" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter W", + "Latin Small Letter W", + "letter" + ] + }, + "unicode": "57", + "label": "W", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M20.8 34c16.5-6.2 35 2.2 41.2 18.7l110.2 294L257.3 55c4-13.7 16.5-23 30.7-23s26.7 9.4 30.7 23l85.1 291.7L514 52.8c6.2-16.5 24.6-24.9 41.2-18.7s24.9 24.7 18.7 41.2l-144 384c-4.8 12.9-17.4 21.3-31.2 20.7s-25.7-9.8-29.5-23L288 178.3 206.7 457c-3.9 13.2-15.8 22.5-29.5 23s-26.3-7.8-31.2-20.7L2 75.2C-4.2 58.7 4.2 40.2 20.8 34z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "walkie-talkie": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8ef" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "communication", + "copy", + "intercom", + "over", + "portable", + "radio", + "two way radio" + ] + }, + "unicode": "f8ef", + "label": "Walkie Talkie", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M112 24c0-13.3-10.7-24-24-24S64 10.7 64 24V96H48C21.5 96 0 117.5 0 144V300.1c0 12.7 5.1 24.9 14.1 33.9l3.9 3.9c9 9 14.1 21.2 14.1 33.9V464c0 26.5 21.5 48 48 48H304c26.5 0 48-21.5 48-48V371.9c0-12.7 5.1-24.9 14.1-33.9l3.9-3.9c9-9 14.1-21.2 14.1-33.9V144c0-26.5-21.5-48-48-48H320c0-17.7-14.3-32-32-32s-32 14.3-32 32H224c0-17.7-14.3-32-32-32s-32 14.3-32 32H112V24zm0 136H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wallet": { + "aliases": { + "unicodes": { + "secondary": [ + "10f555" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "billfold", + "cash", + "currency", + "money" + ] + }, + "unicode": "f555", + "label": "Wallet", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H80c-8.8 0-16-7.2-16-16s7.2-16 16-16H448c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM416 272a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wand-magic": { + "aliases": { + "names": [ + "magic" + ], + "unicodes": { + "secondary": [ + "10f0d0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "autocomplete", + "automatic", + "mage", + "magic", + "spell", + "wand", + "witch", + "wizard" + ] + }, + "unicode": "f0d0", + "label": "Wand Magic", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M14.1 463.3c-18.7-18.7-18.7-49.1 0-67.9L395.4 14.1c18.7-18.7 49.1-18.7 67.9 0l34.6 34.6c18.7 18.7 18.7 49.1 0 67.9L116.5 497.9c-18.7 18.7-49.1 18.7-67.9 0L14.1 463.3zM347.6 187.6l105-105L429.4 59.3l-105 105 23.3 23.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wand-magic-sparkles": { + "aliases": { + "names": [ + "magic-wand-sparkles" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "magic", + "magic wand", + "trick", + "witch", + "wizard" + ] + }, + "unicode": "e2ca", + "label": "Wand Magic Sparkles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M234.7 42.7L197 56.8c-3 1.1-5 4-5 7.2s2 6.1 5 7.2l37.7 14.1L248.8 123c1.1 3 4 5 7.2 5s6.1-2 7.2-5l14.1-37.7L315 71.2c3-1.1 5-4 5-7.2s-2-6.1-5-7.2L277.3 42.7 263.2 5c-1.1-3-4-5-7.2-5s-6.1 2-7.2 5L234.7 42.7zM46.1 395.4c-18.7 18.7-18.7 49.1 0 67.9l34.6 34.6c18.7 18.7 49.1 18.7 67.9 0L529.9 116.5c18.7-18.7 18.7-49.1 0-67.9L495.3 14.1c-18.7-18.7-49.1-18.7-67.9 0L46.1 395.4zM484.6 82.6l-105 105-23.3-23.3 105-105 23.3 23.3zM7.5 117.2C3 118.9 0 123.2 0 128s3 9.1 7.5 10.8L64 160l21.2 56.5c1.7 4.5 6 7.5 10.8 7.5s9.1-3 10.8-7.5L128 160l56.5-21.2c4.5-1.7 7.5-6 7.5-10.8s-3-9.1-7.5-10.8L128 96 106.8 39.5C105.1 35 100.8 32 96 32s-9.1 3-10.8 7.5L64 96 7.5 117.2zm352 256c-4.5 1.7-7.5 6-7.5 10.8s3 9.1 7.5 10.8L416 416l21.2 56.5c1.7 4.5 6 7.5 10.8 7.5s9.1-3 10.8-7.5L480 416l56.5-21.2c4.5-1.7 7.5-6 7.5-10.8s-3-9.1-7.5-10.8L480 352l-21.2-56.5c-1.7-4.5-6-7.5-10.8-7.5s-9.1 3-10.8 7.5L416 352l-56.5 21.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wand-sparkles": { + "aliases": { + "unicodes": { + "secondary": [ + "10f72b" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "autocomplete", + "automatic", + "fantasy", + "halloween", + "holiday", + "magic", + "weapon", + "witch", + "wizard" + ] + }, + "unicode": "f72b", + "label": "Wand Sparkles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 6.1c9.5-8.5 24-8.1 33 .9l8 8c9 9 9.4 23.5 .9 33l-85.8 95.9c-2.6 2.9-4.1 6.7-4.1 10.7V176c0 8.8-7.2 16-16 16H384.2c-4.6 0-8.9 1.9-11.9 5.3L100.7 500.9C94.3 508 85.3 512 75.8 512c-8.8 0-17.3-3.5-23.5-9.8L9.7 459.7C3.5 453.4 0 445 0 436.2c0-9.5 4-18.5 11.1-24.8l111.6-99.8c3.4-3 5.3-7.4 5.3-11.9V272c0-8.8 7.2-16 16-16h34.6c3.9 0 7.7-1.5 10.7-4.1L464 6.1zM432 288c3.6 0 6.7 2.4 7.7 5.8l14.8 51.7 51.7 14.8c3.4 1 5.8 4.1 5.8 7.7s-2.4 6.7-5.8 7.7l-51.7 14.8-14.8 51.7c-1 3.4-4.1 5.8-7.7 5.8s-6.7-2.4-7.7-5.8l-14.8-51.7-51.7-14.8c-3.4-1-5.8-4.1-5.8-7.7s2.4-6.7 5.8-7.7l51.7-14.8 14.8-51.7c1-3.4 4.1-5.8 7.7-5.8zM87.7 69.8l14.8 51.7 51.7 14.8c3.4 1 5.8 4.1 5.8 7.7s-2.4 6.7-5.8 7.7l-51.7 14.8L87.7 218.2c-1 3.4-4.1 5.8-7.7 5.8s-6.7-2.4-7.7-5.8L57.5 166.5 5.8 151.7c-3.4-1-5.8-4.1-5.8-7.7s2.4-6.7 5.8-7.7l51.7-14.8L72.3 69.8c1-3.4 4.1-5.8 7.7-5.8s6.7 2.4 7.7 5.8zM208 0c3.7 0 6.9 2.5 7.8 6.1l6.8 27.3 27.3 6.8c3.6 .9 6.1 4.1 6.1 7.8s-2.5 6.9-6.1 7.8l-27.3 6.8-6.8 27.3c-.9 3.6-4.1 6.1-7.8 6.1s-6.9-2.5-7.8-6.1l-6.8-27.3-27.3-6.8c-3.6-.9-6.1-4.1-6.1-7.8s2.5-6.9 6.1-7.8l27.3-6.8 6.8-27.3c.9-3.6 4.1-6.1 7.8-6.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "warehouse": { + "aliases": { + "unicodes": { + "secondary": [ + "10f494" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "capacity", + "garage", + "inventory", + "storage" + ] + }, + "unicode": "f494", + "label": "Warehouse", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 488V171.3c0-26.2 15.9-49.7 40.2-59.4L308.1 4.8c7.6-3.1 16.1-3.1 23.8 0L599.8 111.9c24.3 9.7 40.2 33.3 40.2 59.4V488c0 13.3-10.7 24-24 24H568c-13.3 0-24-10.7-24-24V224c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32V488c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24zm488 24l-336 0c-13.3 0-24-10.7-24-24V432H512l0 56c0 13.3-10.7 24-24 24zM128 400V336H512v64H128zm0-96V224H512l0 80H128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "watchman-monitoring": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e087", + "label": "Watchman Monitoring", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256,16C123.452,16,16,123.452,16,256S123.452,496,256,496,496,388.548,496,256,388.548,16,256,16ZM121.69,429.122C70.056,388.972,36.741,326.322,36.741,256a218.519,218.519,0,0,1,9.587-64.122l102.9-17.895-.121,10.967-13.943,2.013s-.144,12.5-.144,19.549a12.778,12.778,0,0,0,4.887,10.349l9.468,7.4Zm105.692-283.27,8.48-7.618s6.934-5.38-.143-9.344c-7.188-4.024-39.53-34.5-39.53-34.5-5.348-5.477-8.257-7.347-15.46,0,0,0-32.342,30.474-39.529,34.5-7.078,3.964-.144,9.344-.144,9.344l8.481,7.618-.048,4.369L75.982,131.045c39.644-56.938,105.532-94.3,180.018-94.3A218.754,218.754,0,0,1,420.934,111.77l-193.512,37.7Zm34.063,329.269-33.9-250.857,9.467-7.4a12.778,12.778,0,0,0,4.888-10.349c0-7.044-.144-19.549-.144-19.549l-13.943-2.013-.116-10.474,241.711,31.391A218.872,218.872,0,0,1,475.259,256C475.259,375.074,379.831,472.212,261.445,475.121Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "water": { + "aliases": { + "unicodes": { + "secondary": [ + "10f773" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "lake", + "liquid", + "ocean", + "sea", + "swim", + "wet" + ] + }, + "unicode": "f773", + "label": "Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M269.5 69.9c11.1-7.9 25.9-7.9 37 0C329 85.4 356.5 96 384 96c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 149.7 417 160 384 160c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4C42.8 92.6 61 83.5 75.3 71.6c11.1-9.5 27.3-10.1 39.2-1.7l0 0C136.7 85.2 165.1 96 192 96c27.5 0 55-10.6 77.5-26.1zm37 288C329 373.4 356.5 384 384 384c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 437.7 417 448 384 448c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 373.2 165.1 384 192 384c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0zm0-144C329 229.4 356.5 240 384 240c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 293.7 417 304 384 304c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.5 27.3-10.1 39.2-1.7l0 0C136.7 229.2 165.1 240 192 240c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "water-ladder": { + "aliases": { + "names": [ + "ladder-water", + "swimming-pool" + ], + "unicodes": { + "secondary": [ + "10f5c5" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ladder", + "recreation", + "swim", + "water" + ] + }, + "unicode": "f5c5", + "label": "Water Ladder", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321887, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M128 127.7C128 74.9 170.9 32 223.7 32c48.3 0 89 36 95 83.9l1 8.2c2.2 17.5-10.2 33.5-27.8 35.7s-33.5-10.2-35.7-27.8l-1-8.2c-2-15.9-15.5-27.8-31.5-27.8c-17.5 0-31.7 14.2-31.7 31.7V224H384V127.7C384 74.9 426.9 32 479.7 32c48.3 0 89 36 95 83.9l1 8.2c2.2 17.5-10.2 33.5-27.8 35.7s-33.5-10.2-35.7-27.8l-1-8.2c-2-15.9-15.5-27.8-31.5-27.8c-17.5 0-31.7 14.2-31.7 31.7V361c-1.6 1-3.3 2-4.8 3.1c-18 12.4-40.1 20.3-59.2 20.3h0V288H192v96.5c-19 0-41.2-7.9-59.1-20.3c-1.6-1.1-3.2-2.2-4.9-3.1V127.7zM306.5 389.9C329 405.4 356.5 416 384 416c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 469.7 417 480 384 480c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 405.2 165.1 416 192 416c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wave-square": { + "aliases": { + "unicodes": { + "secondary": [ + "10f83e" + ] + } + }, + "changes": [ + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "frequency", + "pulse", + "signal" + ] + }, + "unicode": "f83e", + "label": "Wave Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 64c0-17.7 14.3-32 32-32H320c17.7 0 32 14.3 32 32V416h96V256c0-17.7 14.3-32 32-32H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H512V448c0 17.7-14.3 32-32 32H320c-17.7 0-32-14.3-32-32V96H192V256c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h96V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "waze": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f83f", + "label": "Waze", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.17 201.67C516.69 287.53 471.23 369.59 389 409.8c13 34.1-12.4 70.2-48.32 70.2a51.68 51.68 0 0 1-51.57-49c-6.44.19-64.2 0-76.33-.64A51.69 51.69 0 0 1 159 479.92c-33.86-1.36-57.95-34.84-47-67.92-37.21-13.11-72.54-34.87-99.62-70.8-13-17.28-.48-41.8 20.84-41.8 46.31 0 32.22-54.17 43.15-110.26C94.8 95.2 193.12 32 288.09 32c102.48 0 197.15 70.67 214.08 169.67zM373.51 388.28c42-19.18 81.33-56.71 96.29-102.14 40.48-123.09-64.15-228-181.71-228-83.45 0-170.32 55.42-186.07 136-9.53 48.91 5 131.35-68.75 131.35C58.21 358.6 91.6 378.11 127 389.54c24.66-21.8 63.87-15.47 79.83 14.34 14.22 1 79.19 1.18 87.9.82a51.69 51.69 0 0 1 78.78-16.42zM205.12 187.13c0-34.74 50.84-34.75 50.84 0s-50.84 34.74-50.84 0zm116.57 0c0-34.74 50.86-34.75 50.86 0s-50.86 34.75-50.86 0zm-122.61 70.69c-3.44-16.94 22.18-22.18 25.62-5.21l.06.28c4.14 21.42 29.85 44 64.12 43.07 35.68-.94 59.25-22.21 64.11-42.77 4.46-16.05 28.6-10.36 25.47 6-5.23 22.18-31.21 62-91.46 62.9-42.55 0-80.88-27.84-87.9-64.25z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "weebly": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5cc", + "label": "Weebly", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M425.09 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143.03c0 28.96 4.18 33.27 77.17 233.48 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.65 77.5-205.58 77.5-227.2.63-48.32-36.01-83.47-86.92-83.47zm26.34 114.81l-65.57 176.44c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.42h-.95L216.08 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.55c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.82h.95l44.66-136.79c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.79h.95l44.03-139.82c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "weibo": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f18a", + "label": "Weibo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "weight-hanging": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5cd" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anvil", + "heavy", + "measurement" + ] + }, + "unicode": "f5cd", + "label": "Weight Hanging", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 96a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm122.5 32c3.5-10 5.5-20.8 5.5-32c0-53-43-96-96-96s-96 43-96 96c0 11.2 1.9 22 5.5 32H120c-22 0-41.2 15-46.6 36.4l-72 288c-3.6 14.3-.4 29.5 8.7 41.2S33.2 512 48 512H464c14.8 0 28.7-6.8 37.8-18.5s12.3-26.8 8.7-41.2l-72-288C433.2 143 414 128 392 128H346.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "weight-scale": { + "aliases": { + "names": [ + "weight" + ], + "unicodes": { + "secondary": [ + "10f496" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "health", + "measurement", + "scale", + "weight" + ] + }, + "unicode": "f496", + "label": "Weight Scale", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 176a128 128 0 1 1 256 0 128 128 0 1 1 -256 0zM391.8 64C359.5 24.9 310.7 0 256 0S152.5 24.9 120.2 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H391.8zM296 224c0-10.6-4.1-20.2-10.9-27.4l33.6-78.3c3.5-8.1-.3-17.5-8.4-21s-17.5 .3-21 8.4L255.7 184c-22 .1-39.7 18-39.7 40c0 22.1 17.9 40 40 40s40-17.9 40-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "weixin": { + "changes": [ + "4.1.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d7", + "label": "Weixin (WeChat)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "whatsapp": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f232", + "label": "What's App", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wheat-awn": { + "aliases": { + "names": [ + "wheat-alt" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agriculture", + "autumn", + "fall", + "farming", + "grain" + ] + }, + "unicode": "e2cd", + "label": "Wheat Awn", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M505 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L383 95c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l88-88zM305.5 27.3c-6.2-6.2-16.4-6.2-22.6 0L271.5 38.6c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8l-11.3-11.3c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8L101.8 231c-6.2-6.2-16.4-6.2-22.6 0L67.9 242.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4L9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l68.9-68.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0L486.5 231c6.2-6.2 6.2-16.4 0-22.6L475.2 197c-5.2-5.2-10.6-9.8-16.4-13.9L505 137c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-59.4 59.4c-20.6-4.4-42-3.7-62.3 2.1c6.1-21.3 6.6-43.8 1.4-65.3L409 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L329.1 52.9c-3.7-5-7.8-9.8-12.4-14.3L305.5 27.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wheat-awn-circle-exclamation": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "famine", + "food", + "gluten", + "hunger", + "starve", + "straw" + ] + }, + "unicode": "e598", + "label": "Wheat Awn Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M505 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L383 95c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l88-88zM305.5 27.3c-6.2-6.2-16.4-6.2-22.6 0L271.5 38.6c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8l-11.3-11.3c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8L101.8 231c-6.2-6.2-16.4-6.2-22.6 0L67.9 242.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4L9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l68.9-68.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c22.5 22.5 53.3 31.5 82.4 27c0-1 0-2.1 0-3.1c0-33.1 9.1-64.1 25-90.6c-15.5-8.7-32.5-13.8-49.8-15.5l31.9-31.9 12.2 12.2c6 6 12.6 11.1 19.7 15.2c27.5-34 67.3-57.5 112.6-63.8c-4.1-3.8-8.4-7.3-12.9-10.5L505 137c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-59.4 59.4c-20.6-4.4-42-3.7-62.3 2.1c6.1-21.3 6.6-43.8 1.4-65.3L409 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L329.1 52.9c-3.7-5-7.8-9.8-12.4-14.3L305.5 27.3zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wheelchair": { + "aliases": { + "unicodes": { + "secondary": [ + "10f193" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f193", + "label": "Wheelchair", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM120.5 247.2c12.4-4.7 18.7-18.5 14-30.9s-18.5-18.7-30.9-14C43.1 225.1 0 283.5 0 352c0 88.4 71.6 160 160 160c61.2 0 114.3-34.3 141.2-84.7c6.2-11.7 1.8-26.2-9.9-32.5s-26.2-1.8-32.5 9.9C240 440 202.8 464 160 464C98.1 464 48 413.9 48 352c0-47.9 30.1-88.8 72.5-104.8zM259.8 176l-1.9-9.7c-4.5-22.3-24-38.3-46.8-38.3c-30.1 0-52.7 27.5-46.8 57l23.1 115.5c6 29.9 32.2 51.4 62.8 51.4h5.1c.4 0 .8 0 1.3 0h94.1c6.7 0 12.6 4.1 15 10.4L402 459.2c6 16.1 23.8 24.6 40.1 19.1l48-16c16.8-5.6 25.8-23.7 20.2-40.5s-23.7-25.8-40.5-20.2l-18.7 6.2-25.5-68c-11.7-31.2-41.6-51.9-74.9-51.9H282.2l-9.6-48H336c17.7 0 32-14.3 32-32s-14.3-32-32-32H259.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wheelchair-move": { + "aliases": { + "names": [ + "wheelchair-alt" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "access", + "handicap", + "impairment", + "physical", + "wheelchair symbol" + ] + }, + "unicode": "e2ce", + "label": "Wheelchair Move", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M320 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM204.5 121.3c-5.4-2.5-11.7-1.9-16.4 1.7l-40.9 30.7c-14.1 10.6-34.2 7.7-44.8-6.4s-7.7-34.2 6.4-44.8l40.9-30.7c23.7-17.8 55.3-21 82.1-8.4l90.4 42.5c29.1 13.7 36.8 51.6 15.2 75.5L299.1 224h97.4c30.3 0 53 27.7 47.1 57.4L415.4 422.3c-3.5 17.3-20.3 28.6-37.7 25.1s-28.6-20.3-25.1-37.7L377 288H306.7c8.6 19.6 13.3 41.2 13.3 64c0 88.4-71.6 160-160 160S0 440.4 0 352s71.6-160 160-160c11.1 0 22 1.1 32.4 3.3l54.2-54.2-42.1-19.8zM160 448a96 96 0 1 0 0-192 96 96 0 1 0 0 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "whiskey-glass": { + "aliases": { + "names": [ + "glass-whiskey" + ], + "unicodes": { + "composite": [ + "1f943" + ], + "secondary": [ + "10f7a0" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "bourbon", + "drink", + "glass", + "liquor", + "neat", + "rye", + "scotch", + "shot", + "tumbler", + "tumbler glass", + "whisky" + ] + }, + "unicode": "f7a0", + "label": "Whiskey Glass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32c-9.3 0-18.1 4-24.2 11.1S-1 59.4 .3 68.6l50 342.9c5.7 39.3 39.4 68.5 79.2 68.5h253c39.7 0 73.4-29.1 79.2-68.5l50-342.9c1.3-9.2-1.4-18.5-7.5-25.5S489.3 32 480 32H32zM87.7 224L69 96H443L424.3 224H87.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "whmcs": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f40d", + "label": "WHMCS", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wifi": { + "aliases": { + "names": [ + "wifi-3", + "wifi-strong" + ], + "unicodes": { + "secondary": [ + "10f1eb" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.3.0", + "5.10.1", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connection", + "hotspot", + "internet", + "network", + "wireless" + ] + }, + "unicode": "f1eb", + "label": "Wifi", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M54.2 202.9C123.2 136.7 216.8 96 320 96s196.8 40.7 265.8 106.9c12.8 12.2 33 11.8 45.2-.9s11.8-33-.9-45.2C549.7 79.5 440.4 32 320 32S90.3 79.5 9.8 156.7C-2.9 169-3.3 189.2 8.9 202s32.5 13.2 45.2 .9zM320 256c56.8 0 108.6 21.1 148.2 56c13.3 11.7 33.5 10.4 45.2-2.8s10.4-33.5-2.8-45.2C459.8 219.2 393 192 320 192s-139.8 27.2-190.5 72c-13.3 11.7-14.5 31.9-2.8 45.2s31.9 14.5 45.2 2.8c39.5-34.9 91.3-56 148.2-56zm64 160a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wikipedia-w": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f266", + "label": "Wikipedia W", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wind": { + "aliases": { + "unicodes": { + "secondary": [ + "10f72e" + ] + } + }, + "changes": [ + "5.4.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air", + "blow", + "breeze", + "fall", + "seasonal", + "weather" + ] + }, + "unicode": "f72e", + "label": "Wind", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0 17.7 14.3 32 32 32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c53 0 96-43 96-96s-43-96-96-96H320c-17.7 0-32 14.3-32 32zm64 352c0 17.7 14.3 32 32 32h32c53 0 96-43 96-96s-43-96-96-96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H384c-17.7 0-32 14.3-32 32zM128 512h32c53 0 96-43 96-96s-43-96-96-96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H160c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32 14.3-32 32s14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "window-maximize": { + "aliases": { + "unicodes": { + "composite": [ + "1f5d6" + ], + "secondary": [ + "10f2d0" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Maximize", + "browser", + "computer", + "development", + "expand" + ] + }, + "unicode": "f2d0", + "label": "Window Maximize", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM96 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + }, + "regular": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M.3 89.5C.1 91.6 0 93.8 0 96V224 416c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64V224 96c0-35.3-28.7-64-64-64H64c-2.2 0-4.4 .1-6.5 .3c-9.2 .9-17.8 3.8-25.5 8.2C21.8 46.5 13.4 55.1 7.7 65.5c-3.9 7.3-6.5 15.4-7.4 24zM48 224H464l0 192c0 8.8-7.2 16-16 16L64 432c-8.8 0-16-7.2-16-16l0-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "window-minimize": { + "aliases": { + "unicodes": { + "composite": [ + "1f5d5" + ], + "secondary": [ + "10f2d1" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Minimize", + "browser", + "collapse", + "computer", + "development" + ] + }, + "unicode": "f2d1", + "label": "Window Minimize", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + }, + "regular": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M24 432c-13.3 0-24 10.7-24 24s10.7 24 24 24H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "window-restore": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2d2" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "computer", + "development" + ] + }, + "unicode": "f2d2", + "label": "Window Restore", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M432 64H208c-8.8 0-16 7.2-16 16V96H128V80c0-44.2 35.8-80 80-80H432c44.2 0 80 35.8 80 80V304c0 44.2-35.8 80-80 80H416V320h16c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM0 192c0-35.3 28.7-64 64-64H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192zm64 32c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H96c-17.7 0-32 14.3-32 32z" + }, + "regular": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M432 48H208c-17.7 0-32 14.3-32 32V96H128V80c0-44.2 35.8-80 80-80H432c44.2 0 80 35.8 80 80V304c0 44.2-35.8 80-80 80H416V336h16c17.7 0 32-14.3 32-32V80c0-17.7-14.3-32-32-32zM48 448c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16V256H48V448zM64 128H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192c0-35.3 28.7-64 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "windows": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "microsoft", + "operating system", + "os" + ] + }, + "unicode": "f17a", + "label": "Windows", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wine-bottle": { + "aliases": { + "unicodes": { + "secondary": [ + "10f72f" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "beverage", + "cabernet", + "drink", + "glass", + "grapes", + "merlot", + "sauvignon" + ] + }, + "unicode": "f72f", + "label": "Wine Bottle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M393.4 9.4c12.5-12.5 32.8-12.5 45.3 0l64 64c12.5 12.5 12.5 32.8 0 45.3c-11.8 11.8-30.7 12.5-43.2 1.9l-9.5 9.5-48.8 48.8c-9.2 9.2-11.5 22.9-8.6 35.6c9.4 40.9-1.9 85.6-33.8 117.5L197.3 493.3c-25 25-65.5 25-90.5 0l-88-88c-25-25-25-65.5 0-90.5L180.2 153.3c31.9-31.9 76.6-43.1 117.5-33.8c12.6 2.9 26.4 .5 35.5-8.6l48.8-48.8 9.5-9.5c-10.6-12.6-10-31.4 1.9-43.2zM99.3 347.3l65.4 65.4c6.2 6.2 16.4 6.2 22.6 0l97.4-97.4c6.2-6.2 6.2-16.4 0-22.6l-65.4-65.4c-6.2-6.2-16.4-6.2-22.6 0L99.3 324.7c-6.2 6.2-6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wine-glass": { + "aliases": { + "unicodes": { + "composite": [ + "1f377" + ], + "secondary": [ + "10f4e3" + ] + } + }, + "changes": [ + "5.0.9", + "5.1.0", + "5.10.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "cabernet", + "drink", + "glass", + "grapes", + "merlot", + "sauvignon", + "wine", + "wine glass" + ] + }, + "unicode": "f4e3", + "label": "Wine Glass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M47 0C30.4 0 16.5 12.8 15.1 29.3L1.1 197.8c-6 72 42.5 135.2 109.9 150.6V448H63c-17.7 0-32 14.3-32 32s14.3 32 32 32h80 80c17.7 0 32-14.3 32-32s-14.3-32-32-32H175V348.4c67.4-15.4 115.9-78.6 109.9-150.6l-14-168.4C269.5 12.8 255.6 0 239 0H47zM71.1 128l5.3-64H209.6l5.3 64H71.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wine-glass-empty": { + "aliases": { + "names": [ + "wine-glass-alt" + ], + "unicodes": { + "secondary": [ + "10f5ce" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "beverage", + "cabernet", + "drink", + "grapes", + "merlot", + "sauvignon" + ] + }, + "unicode": "f5ce", + "label": "Wine Glass Empty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M47 0C30.4 0 16.5 12.8 15.1 29.3L1.1 197.8c-6 72 42.5 135.2 109.9 150.6V448H63c-17.7 0-32 14.3-32 32s14.3 32 32 32h80 80c17.7 0 32-14.3 32-32s-14.3-32-32-32H175V348.4c67.4-15.4 115.9-78.6 109.9-150.6l-14-168.4C269.5 12.8 255.6 0 239 0H47zM64.9 203.1L76.4 64H209.6l11.6 139.1C225 248.8 188.9 288 143 288s-82-39.2-78.1-84.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wirsindhandwerk": { + "aliases": { + "names": [ + "wsh" + ] + }, + "changes": [ + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e2d0", + "label": "wirsindhandwerk", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M50.77161,479.81213h83.36071V367.84741l-83.36071,47.009Zm329.04675,0h82.35022V414.85645l-82.35022-47.009Zm.00568-448V251.568L256.1759,179.1861,134.50378,251.568V31.81213H50.77161V392.60565L256.1759,270.31909,462.16858,392.60565V31.81213Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wix": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5cf", + "label": "Wix", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M393.38 131.69c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63zm-115.8 35.54l-34.24 132.66-28.48-108.57c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.89 55.28 167.23C49.73 140.51 23.86 128.96 0 131.96l65.57 247.93s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.41 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.93c-24.42-3.07-49.82 8.93-55.3 35.27zm115.78 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.07s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.41l-.02.01v-8.98zm163.44 84.08L640 132.78s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47.73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.74-82.97 123.36s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21L556.8 256.52z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wizards-of-the-coast": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "game", + "gaming", + "tabletop" + ] + }, + "unicode": "f730", + "label": "Wizards of the Coast", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M219.19 345.69c-1.9 1.38-11.07 8.44-.26 23.57 4.64 6.42 14.11 12.79 21.73 6.55 6.5-4.88 7.35-12.92.26-23.04-5.47-7.76-14.28-12.88-21.73-7.08zm336.75 75.94c-.34 1.7-.55 1.67.79 0 2.09-4.19 4.19-10.21 4.98-19.9 3.14-38.49-40.33-71.49-101.34-78.03-54.73-6.02-124.38 9.17-188.8 60.49l-.26 1.57c2.62 4.98 4.98 10.74 3.4 21.21l.79.26c63.89-58.4 131.19-77.25 184.35-73.85 58.4 3.67 100.03 34.04 100.03 68.08-.01 9.96-2.63 15.72-3.94 20.17zM392.28 240.42c.79 7.07 4.19 10.21 9.17 10.47 5.5.26 9.43-2.62 10.47-6.55.79-3.4 2.09-29.85 2.09-29.85s-11.26 6.55-14.93 10.47c-3.66 3.68-7.33 8.39-6.8 15.46zm-50.02-151.1C137.75 89.32 13.1 226.8.79 241.2c-1.05.52-1.31.79.79 1.31 60.49 16.5 155.81 81.18 196.13 202.16l1.05.26c55.25-69.92 140.88-128.05 236.99-128.05 80.92 0 130.15 42.16 130.15 80.39 0 18.33-6.55 33.52-22.26 46.35 0 .96-.2.79.79.79 14.66-10.74 27.5-28.8 27.5-48.18 0-22.78-12.05-38.23-12.05-38.23 7.07 7.07 10.74 16.24 10.74 16.24 5.76-40.85 26.97-62.32 26.97-62.32-2.36-9.69-6.81-17.81-6.81-17.81 7.59 8.12 14.4 27.5 14.4 41.37 0 10.47-3.4 22.78-12.57 31.95l.26.52c8.12-4.98 16.5-16.76 16.5-37.97 0-15.71-4.71-25.92-4.71-25.92 5.76-5.24 11.26-9.17 15.97-11.78.79 3.4 2.09 9.69 2.36 14.93 0 1.05.79 1.83 1.05 0 .79-5.76-.26-16.24-.26-16.5 6.02-3.14 9.69-4.45 9.69-4.45C617.74 176 489.43 89.32 342.26 89.32zm-99.24 289.62c-11.06 8.99-24.2 4.08-30.64-4.19-7.45-9.58-6.76-24.09 4.19-32.47 14.85-11.35 27.08-.49 31.16 5.5.28.39 12.13 16.57-4.71 31.16zm2.09-136.43l9.43-17.81 11.78 70.96-12.57 6.02-24.62-28.8 14.14-26.71 3.67 4.45-1.83-8.11zm18.59 117.58l-.26-.26c2.05-4.1-2.5-6.61-17.54-31.69-1.31-2.36-3.14-2.88-4.45-2.62l-.26-.52c7.86-5.76 15.45-10.21 25.4-15.71l.52.26c1.31 1.83 2.09 2.88 3.4 4.71l-.26.52c-1.05-.26-2.36-.79-5.24.26-2.09.79-7.86 3.67-12.31 7.59v1.31c1.57 2.36 3.93 6.55 5.76 9.69h.26c10.05-6.28 7.56-4.55 11.52-7.86h.26c.52 1.83.52 1.83 1.83 5.5l-.26.26c-3.06.61-4.65.34-11.52 5.5v.26c9.46 17.02 11.01 16.75 12.57 15.97l.26.26c-2.34 1.59-6.27 4.21-9.68 6.57zm55.26-32.47c-3.14 1.57-6.02 2.88-9.95 4.98l-.26-.26c1.29-2.59 1.16-2.71-11.78-32.47l-.26-.26c-.15 0-8.9 3.65-9.95 7.33h-.52l-1.05-5.76.26-.52c7.29-4.56 25.53-11.64 27.76-12.57l.52.26 3.14 4.98-.26.52c-3.53-1.76-7.35.76-12.31 2.62v.26c12.31 32.01 12.67 30.64 14.66 30.64v.25zm44.77-16.5c-4.19 1.05-5.24 1.31-9.69 2.88l-.26-.26.52-4.45c-1.05-3.4-3.14-11.52-3.67-13.62l-.26-.26c-3.4.79-8.9 2.62-12.83 3.93l-.26.26c.79 2.62 3.14 9.95 4.19 13.88.79 2.36 1.83 2.88 2.88 3.14v.52c-3.67 1.05-7.07 2.62-10.21 3.93l-.26-.26c1.05-1.31 1.05-2.88.26-4.98-1.05-3.14-8.12-23.83-9.17-27.23-.52-1.83-1.57-3.14-2.62-3.14v-.52c3.14-1.05 6.02-2.09 10.74-3.4l.26.26-.26 4.71c1.31 3.93 2.36 7.59 3.14 9.69h.26c3.93-1.31 9.43-2.88 12.83-3.93l.26-.26-2.62-9.43c-.52-1.83-1.05-3.4-2.62-3.93v-.26c4.45-1.05 7.33-1.83 10.74-2.36l.26.26c-1.05 1.31-1.05 2.88-.52 4.45 1.57 6.28 4.71 20.43 6.28 26.45.54 2.62 1.85 3.41 2.63 3.93zm32.21-6.81l-.26.26c-4.71.52-14.14 2.36-22.52 4.19l-.26-.26.79-4.19c-1.57-7.86-3.4-18.59-4.98-26.19-.26-1.83-.79-2.88-2.62-3.67l.79-.52c9.17-1.57 20.16-2.36 24.88-2.62l.26.26c.52 2.36.79 3.14 1.57 5.5l-.26.26c-1.14-1.14-3.34-3.2-16.24-.79l-.26.26c.26 1.57 1.05 6.55 1.57 9.95l.26.26c9.52-1.68 4.76-.06 10.74-2.36h.26c0 1.57-.26 1.83-.26 5.24h-.26c-4.81-1.03-2.15-.9-10.21 0l-.26.26c.26 2.09 1.57 9.43 2.09 12.57l.26.26c1.15.38 14.21-.65 16.24-4.71h.26c-.53 2.38-1.05 4.21-1.58 6.04zm10.74-44.51c-4.45 2.36-8.12 2.88-11 2.88-.25.02-11.41 1.09-17.54-9.95-6.74-10.79-.98-25.2 5.5-31.69 8.8-8.12 23.35-10.1 28.54-17.02 8.03-10.33-13.04-22.31-29.59-5.76l-2.62-2.88 5.24-16.24c25.59-1.57 45.2-3.04 50.02 16.24.79 3.14 0 9.43-.26 12.05 0 2.62-1.83 18.85-2.09 23.04-.52 4.19-.79 18.33-.79 20.69.26 2.36.52 4.19 1.57 5.5 1.57 1.83 5.76 1.83 5.76 1.83l-.79 4.71c-11.82-1.07-10.28-.59-20.43-1.05-3.22-5.15-2.23-3.28-4.19-7.86 0 .01-4.19 3.94-7.33 5.51zm37.18 21.21c-6.35-10.58-19.82-7.16-21.73 5.5-2.63 17.08 14.3 19.79 20.69 10.21l.26.26c-.52 1.83-1.83 6.02-1.83 6.28l-.52.52c-10.3 6.87-28.5-2.5-25.66-18.59 1.94-10.87 14.44-18.93 28.8-9.95l.26.52c0 1.06-.27 3.41-.27 5.25zm5.77-87.73v-6.55c.69 0 19.65 3.28 27.76 7.33l-1.57 17.54s10.21-9.43 15.45-10.74c5.24-1.57 14.93 7.33 14.93 7.33l-11.26 11.26c-12.07-6.35-19.59-.08-20.69.79-5.29 38.72-8.6 42.17 4.45 46.09l-.52 4.71c-17.55-4.29-18.53-4.5-36.92-7.33l.79-4.71c7.25 0 7.48-5.32 7.59-6.81 0 0 4.98-53.16 4.98-55.25-.02-2.87-4.99-3.66-4.99-3.66zm10.99 114.44c-8.12-2.09-14.14-11-10.74-20.69 3.14-9.43 12.31-12.31 18.85-10.21 9.17 2.62 12.83 11.78 10.74 19.38-2.61 8.9-9.42 13.87-18.85 11.52zm42.16 9.69c-2.36-.52-7.07-2.36-8.64-2.88v-.26l1.57-1.83c.59-8.24.59-7.27.26-7.59-4.82-1.81-6.66-2.36-7.07-2.36-1.31 1.83-2.88 4.45-3.67 5.5l-.79 3.4v.26c-1.31-.26-3.93-1.31-6.02-1.57v-.26l2.62-1.83c3.4-4.71 9.95-14.14 13.88-20.16v-2.09l.52-.26c2.09.79 5.5 2.09 7.59 2.88.48.48.18-1.87-1.05 25.14-.24 1.81.02 2.6.8 3.91zm-4.71-89.82c11.25-18.27 30.76-16.19 34.04-3.4L539.7 198c2.34-6.25-2.82-9.9-4.45-11.26l1.83-3.67c12.22 10.37 16.38 13.97 22.52 20.43-25.91 73.07-30.76 80.81-24.62 84.32l-1.83 4.45c-6.37-3.35-8.9-4.42-17.81-8.64l2.09-6.81c-.26-.26-3.93 3.93-9.69 3.67-19.06-1.3-22.89-31.75-9.67-52.9zm29.33 79.34c0-5.71-6.34-7.89-7.86-5.24-1.31 2.09 1.05 4.98 2.88 8.38 1.57 2.62 2.62 6.28 1.05 9.43-2.64 6.34-12.4 5.31-15.45-.79 0-.7-.27.09 1.83-4.71l.79-.26c-.57 5.66 6.06 9.61 8.38 4.98 1.05-2.09-.52-5.5-2.09-8.38-1.57-2.62-3.67-6.28-1.83-9.69 2.72-5.06 11.25-4.47 14.66 2.36v.52l-2.36 3.4zm21.21 13.36c-1.96-3.27-.91-2.14-4.45-4.71h-.26c-2.36 4.19-5.76 10.47-8.64 16.24-1.31 2.36-1.05 3.4-.79 3.93l-.26.26-5.76-4.45.26-.26 2.09-1.31c3.14-5.76 6.55-12.05 9.17-17.02v-.26c-2.64-1.98-1.22-1.51-6.02-1.83v-.26l3.14-3.4h.26c3.67 2.36 9.95 6.81 12.31 8.9l.26.26-1.31 3.91zm27.23-44.26l-2.88-2.88c.79-2.36 1.83-4.98 2.09-7.59.75-9.74-11.52-11.84-11.52-4.98 0 4.98 7.86 19.38 7.86 27.76 0 10.21-5.76 15.71-13.88 16.5-8.38.79-20.16-10.47-20.16-10.47l4.98-14.4 2.88 2.09c-2.97 17.8 17.68 20.37 13.35 5.24-1.06-4.02-18.75-34.2 2.09-38.23 13.62-2.36 23.04 16.5 23.04 16.5l-7.85 10.46zm35.62-10.21c-11-30.38-60.49-127.53-191.95-129.62-53.42-1.05-94.27 15.45-132.76 37.97l85.63-9.17-91.39 20.69 25.14 19.64-3.93-16.5c7.5-1.71 39.15-8.45 66.77-8.9l-22.26 80.39c13.61-.7 18.97-8.98 19.64-22.78l4.98-1.05.26 26.71c-22.46 3.21-37.3 6.69-49.49 9.95l13.09-43.21-61.54-36.66 2.36 8.12 10.21 4.98c6.28 18.59 19.38 56.56 20.43 58.66 1.95 4.28 3.16 5.78 12.05 4.45l1.05 4.98c-16.08 4.86-23.66 7.61-39.02 14.4l-2.36-4.71c4.4-2.94 8.73-3.94 5.5-12.83-23.7-62.5-21.48-58.14-22.78-59.44l2.36-4.45 33.52 67.3c-3.84-11.87 1.68 1.69-32.99-78.82l-41.9 88.51 4.71-13.88-35.88-42.16 27.76 93.48-11.78 8.38C95 228.58 101.05 231.87 93.23 231.52c-5.5-.26-13.62 5.5-13.62 5.5L74.63 231c30.56-23.53 31.62-24.33 58.4-42.68l4.19 7.07s-5.76 4.19-7.86 7.07c-5.9 9.28 1.67 13.28 61.8 75.68l-18.85-58.92 39.8-10.21 25.66 30.64 4.45-12.31-4.98-24.62 13.09-3.4.52 3.14 3.67-10.47-94.27 29.33 11.26-4.98-13.62-42.42 17.28-9.17 30.11 36.14 28.54-13.09c-1.41-7.47-2.47-14.5-4.71-19.64l17.28 13.88 4.71-2.09-59.18-42.68 23.08 11.5c18.98-6.07 25.23-7.47 32.21-9.69l2.62 11c-12.55 12.55 1.43 16.82 6.55 19.38l-13.62-61.01 12.05 28.28c4.19-1.31 7.33-2.09 7.33-2.09l2.62 8.64s-3.14 1.05-6.28 2.09l8.9 20.95 33.78-65.73-20.69 61.01c42.42-24.09 81.44-36.66 131.98-35.88 67.04 1.05 167.33 40.85 199.8 139.83.78 2.1-.01 2.63-.79.27zM203.48 152.43s1.83-.52 4.19-1.31l9.43 7.59c-.4 0-3.44-.25-11.26 2.36l-2.36-8.64zm143.76 38.5c-1.57-.6-26.46-4.81-33.26 20.69l21.73 17.02 11.53-37.71zM318.43 67.07c-58.4 0-106.05 12.05-114.96 14.4v.79c8.38 2.09 14.4 4.19 21.21 11.78l1.57.26c6.55-1.83 48.97-13.88 110.24-13.88 180.16 0 301.67 116.79 301.67 223.37v9.95c0 1.31.79 2.62 1.05.52.52-2.09.79-8.64.79-19.64.26-83.79-96.63-227.55-321.57-227.55zm211.06 169.68c1.31-5.76 0-12.31-7.33-13.09-9.62-1.13-16.14 23.79-17.02 33.52-.79 5.5-1.31 14.93 6.02 14.93 4.68-.01 9.72-.91 18.33-35.36zm-61.53 42.95c-2.62-.79-9.43-.79-12.57 10.47-1.83 6.81.52 13.35 6.02 14.66 3.67 1.05 8.9.52 11.78-10.74 2.62-9.94-1.83-13.61-5.23-14.39zM491 300.65c1.83.52 3.14 1.05 5.76 1.83 0-1.83.52-8.38.79-12.05-1.05 1.31-5.5 8.12-6.55 9.95v.27z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wodu": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e088", + "label": "Wodu", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M178.414 339.706H141.1L112.166 223.475h-.478L83.228 339.706H45.2L0 168.946H37.548L64.574 285.177h.478L94.707 168.946h35.157l29.178 117.667h.479L187.5 168.946h36.831zM271.4 212.713c38.984 0 64.1 25.828 64.1 65.291 0 39.222-25.111 65.05-64.1 65.05-38.743 0-63.855-25.828-63.855-65.05C207.547 238.541 232.659 212.713 271.4 212.713zm0 104.753c23.2 0 30.133-19.852 30.133-39.462 0-19.852-6.934-39.7-30.133-39.7-27.7 0-29.894 19.85-29.894 39.7C241.508 297.614 248.443 317.466 271.4 317.466zM435.084 323.922h-.478c-7.893 13.392-21.765 19.132-37.548 19.132-37.31 0-55.485-32.045-55.485-66.246 0-33.243 18.415-64.095 54.767-64.095 14.589 0 28.938 6.218 36.831 18.416h.24V168.946h33.96v170.76H435.084zM405.428 238.3c-22.24 0-29.894 19.134-29.894 39.463 0 19.371 8.848 39.7 29.894 39.7 22.482 0 29.178-19.613 29.178-39.94C434.606 257.436 427.432 238.3 405.428 238.3zM592.96 339.706H560.673V322.487h-.718c-8.609 13.87-23.436 20.567-37.786 20.567-36.113 0-45.2-20.328-45.2-50.941V216.061h33.959V285.9c0 20.329 5.979 30.372 21.765 30.372 18.415 0 26.306-10.283 26.306-35.393V216.061H592.96zM602.453 302.876H640v36.83H602.453z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wolf-pack-battalion": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f514", + "label": "Wolf Pack Battalion", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M267.73 471.53l10.56 15.84 5.28-12.32 5.28 7V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05C421 189 447 196.21 456.43 239.73l-30.35 8.36c11.15 23 17 46.76 13.2 72.14L412 313.18l-6.16 33.43-18.47-7-8.8 33.39-19.35-7 26.39 21.11 8.8-28.15L419 364.2l7-35.63 26.39 14.52c.25-20 7-58.06-8.8-84.45l26.39 5.28c4-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 2-19.87 17.45-42.62 43.11-49.7-44 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.39 22.87-89.65 65.1-93.2 147.79l-58 38.71-3.52 93.25L369.78 220l7 7-17.59 3.52-44 38.71-15.84-5.28-28.1 49.25-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-44-38.71-17.58-3.51 7-7 107.33 59.82-3.52-93.25-58.06-38.71C185 65.1 135.77 22.87 95.3 0c-17.54 61.12-4.4 118.76 0 130.2 15-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9-31.65 1.72-61.15 33.44-61.59 58.51l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7 35.63 24.63-5.28 8.8 28.15L153.35 366 134 373l-8.8-33.43-18.47 7-6.16-33.43-27.27 7c-3.82-25.38 2-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.83l5.28-7 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95L331.06 366c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.22-.27 13.84-3.51 22.84zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7 8.24-7.94 15.55-16.32 22.87-24.68zm24.63 5.28c0-13.43-2.05-24.21-5.28-33.43a235 235 0 0 1-18.47 27.27zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-12 6.65-28.14 7-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 44-14.08-10.61-18.96-27.2-25.53-45.76-28.16zM165.68 376.52L181.52 366c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7-8.24-7.93-15.55-16.31-22.87-24.67zm-24.64 5.28c0-13.43 2-24.21 5.28-33.43a235 235 0 0 0 18.47 27.27zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 37-10.56-5-12-6.65-28.14-7-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-44-14.08 10.63-18.95 27.23-25.52 45.76-28.15z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "won-sign": { + "aliases": { + "names": [ + "krw", + "won" + ], + "unicodes": { + "composite": [ + "20a9" + ], + "secondary": [ + "10f159" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Won Sign", + "currency" + ] + }, + "unicode": "f159", + "label": "Won Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M62.4 53.9C56.8 37.1 38.6 28.1 21.9 33.6S-3.9 57.4 1.6 74.1L51.6 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H72.9l56.7 170.1c4.5 13.5 17.4 22.4 31.6 21.9s26.4-10.4 29.8-24.2L233 288h46L321 455.8c3.4 13.8 15.6 23.7 29.8 24.2s27.1-8.4 31.6-21.9L439.1 288H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H460.4l50-149.9c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2L392.9 224H329L287 56.2C283.5 42 270.7 32 256 32s-27.5 10-31 24.2L183 224h-64L62.4 53.9zm78 234.1H167l-11.4 45.6L140.4 288zM249 224l7-28.1 7 28.1H249zm96 64h26.6l-15.2 45.6L345 288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wordpress": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f19a", + "label": "WordPress Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wordpress-simple": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f411", + "label": "Wordpress Simple", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "worm": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dirt", + "garden", + "worm", + "wriggle" + ] + }, + "unicode": "e599", + "label": "Worm", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 96c0-53 43-96 96-96h38.4C407.9 0 448 40.1 448 89.6V176v16V376c0 75.1-60.9 136-136 136s-136-60.9-136-136V296c0-22.1-17.9-40-40-40s-40 17.9-40 40V464c0 26.5-21.5 48-48 48s-48-21.5-48-48V296c0-75.1 60.9-136 136-136s136 60.9 136 136v80c0 22.1 17.9 40 40 40s40-17.9 40-40V192H320c-53 0-96-43-96-96zm144-8a24 24 0 1 0 -48 0 24 24 0 1 0 48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wpbeginner": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f297", + "label": "WPBeginner", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wpexplorer": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2de", + "label": "WPExplorer", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wpforms": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f298", + "label": "WPForms", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wpressr": { + "aliases": { + "names": [ + "rendact" + ] + }, + "changes": [ + "5.4.2" + ], + "ligatures": [], + "search": { + "terms": [ + "rendact" + ] + }, + "unicode": "f3e4", + "label": "wpressr", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm171.33 158.6c-15.18 34.51-30.37 69.02-45.63 103.5-2.44 5.51-6.89 8.24-12.97 8.24-23.02-.01-46.03.06-69.05-.05-5.12-.03-8.25 1.89-10.34 6.72-10.19 23.56-20.63 47-30.95 70.5-1.54 3.51-4.06 5.29-7.92 5.29-45.94-.01-91.87-.02-137.81 0-3.13 0-5.63-1.15-7.72-3.45-11.21-12.33-22.46-24.63-33.68-36.94-2.69-2.95-2.79-6.18-1.21-9.73 8.66-19.54 17.27-39.1 25.89-58.66 12.93-29.35 25.89-58.69 38.75-88.08 1.7-3.88 4.28-5.68 8.54-5.65 14.24.1 28.48.02 42.72.05 6.24.01 9.2 4.84 6.66 10.59-13.6 30.77-27.17 61.55-40.74 92.33-5.72 12.99-11.42 25.99-17.09 39-3.91 8.95 7.08 11.97 10.95 5.6.23-.37-1.42 4.18 30.01-67.69 1.36-3.1 3.41-4.4 6.77-4.39 15.21.08 30.43.02 45.64.04 5.56.01 7.91 3.64 5.66 8.75-8.33 18.96-16.71 37.9-24.98 56.89-4.98 11.43 8.08 12.49 11.28 5.33.04-.08 27.89-63.33 32.19-73.16 2.02-4.61 5.44-6.51 10.35-6.5 26.43.05 52.86 0 79.29.05 12.44.02 13.93-13.65 3.9-13.64-25.26.03-50.52.02-75.78.02-6.27 0-7.84-2.47-5.27-8.27 5.78-13.06 11.59-26.11 17.3-39.21 1.73-3.96 4.52-5.79 8.84-5.78 23.09.06 25.98.02 130.78.03 6.08-.01 8.03 2.79 5.62 8.27z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wrench": { + "aliases": { + "unicodes": { + "composite": [ + "1f527" + ], + "secondary": [ + "10f0ad" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "construction", + "fix", + "mechanic", + "plumbing", + "settings", + "spanner", + "tool", + "update", + "wrench" + ] + }, + "unicode": "f0ad", + "label": "Wrench", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 320c88.4 0 160-71.6 160-160c0-15.3-2.2-30.1-6.2-44.2c-3.1-10.8-16.4-13.2-24.3-5.3l-76.8 76.8c-3 3-7.1 4.7-11.3 4.7H336c-8.8 0-16-7.2-16-16V118.6c0-4.2 1.7-8.3 4.7-11.3l76.8-76.8c7.9-7.9 5.4-21.2-5.3-24.3C382.1 2.2 367.3 0 352 0C263.6 0 192 71.6 192 160c0 19.1 3.4 37.5 9.5 54.5L19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L297.5 310.5c17 6.2 35.4 9.5 54.5 9.5zM80 408a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "x": { + "aliases": { + "unicodes": { + "composite": [ + "78" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter X", + "Latin Small Letter X", + "letter" + ] + }, + "unicode": "58", + "label": "X", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M376.6 84.5c11.3-13.6 9.5-33.8-4.1-45.1s-33.8-9.5-45.1 4.1L192 206 56.6 43.5C45.3 29.9 25.1 28.1 11.5 39.4S-3.9 70.9 7.4 84.5L150.3 256 7.4 427.5c-11.3 13.6-9.5 33.8 4.1 45.1s33.8 9.5 45.1-4.1L192 306 327.4 468.5c11.3 13.6 31.5 15.4 45.1 4.1s15.4-31.5 4.1-45.1L233.7 256 376.6 84.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "x-ray": { + "aliases": { + "unicodes": { + "secondary": [ + "10f497" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "health", + "medical", + "radiological images", + "radiology", + "skeleton" + ] + }, + "unicode": "f497", + "label": "X Ray", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32V416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V96C14.3 96 0 81.7 0 64zM256 96c-8.8 0-16 7.2-16 16v32H160c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v48H128c-8.8 0-16 7.2-16 16s7.2 16 16 16H240v70.6L189.1 307c-5.2-2-10.6-3-16.2-3h-2.1c-23.6 0-42.8 19.2-42.8 42.8c0 9.6 3.2 18.9 9.1 26.4l18.2 23.2c9.7 12.4 24.6 19.6 40.3 19.6H316.4c15.7 0 30.6-7.2 40.3-19.6l18.2-23.2c5.9-7.5 9.1-16.8 9.1-26.4c0-23.6-19.2-42.8-42.8-42.8H339c-5.5 0-11 1-16.2 3L272 326.6V256H384c8.8 0 16-7.2 16-16s-7.2-16-16-16H272V176h80c8.8 0 16-7.2 16-16s-7.2-16-16-16H272V112c0-8.8-7.2-16-16-16zM208 352a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm80 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "xbox": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f412", + "label": "Xbox", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "xing": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f168", + "label": "Xing", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "xmark": { + "aliases": { + "names": [ + "close", + "multiply", + "remove", + "times" + ], + "unicodes": { + "composite": [ + "1f5d9", + "2715", + "2716", + "274c", + "d7" + ], + "secondary": [ + "10f00d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.13", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Cancellation X", + "Multiplication Sign", + "Multiplication X", + "cancel", + "close", + "cross", + "cross mark", + "error", + "exit", + "incorrect", + "mark", + "multiplication", + "multiply", + "notice", + "notification", + "notify", + "problem", + "sign", + "wrong", + "x", + "×" + ] + }, + "unicode": "f00d", + "label": "Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M310.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 210.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L114.7 256 9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 301.3 265.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L205.3 256 310.6 150.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "xmarks-lines": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barricade", + "barrier", + "fence", + "poison", + "roadblock" + ] + }, + "unicode": "e59a", + "label": "Xmarks Lines", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zm0 384c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM7 167c-9.4 9.4-9.4 24.6 0 33.9l55 55L7 311c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55L41 167c-9.4-9.4-24.6-9.4-33.9 0zM265 167c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l55 55-55 55c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55-55-55zM455 167c-9.4 9.4-9.4 24.6 0 33.9l55 55-55 55c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55-55-55c-9.4-9.4-24.6-9.4-33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "y": { + "aliases": { + "unicodes": { + "composite": [ + "79" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter Y", + "Latin Small Letter Y", + "letter", + "yay", + "yes" + ] + }, + "unicode": "59", + "label": "Y", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M58 45.4C47.8 31 27.8 27.7 13.4 38S-4.3 68.2 6 82.6L160 298.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V298.3L378 82.6c10.3-14.4 6.9-34.4-7.4-44.6S336.2 31 326 45.4L192 232.9 58 45.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "y-combinator": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f23b", + "label": "Y Combinator", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yahoo": { + "changes": [ + "4.1.0", + "5.0.0", + "5.0.3", + "5.13.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f19e", + "label": "Yahoo Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M223.69,141.06,167,284.23,111,141.06H14.93L120.76,390.19,82.19,480h94.17L317.27,141.06Zm105.4,135.79a58.22,58.22,0,1,0,58.22,58.22A58.22,58.22,0,0,0,329.09,276.85ZM394.65,32l-93,223.47H406.44L499.07,32Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yammer": { + "changes": [ + "5.8.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f840", + "label": "Yammer", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M500.676,159.486a12.779,12.779,0,0,0-6.4-8.282,13.954,13.954,0,0,0-10.078-1.125L457.8,156.7l-.043-.2-22.3,5.785-1.243.333-.608-2.17A369.037,369.037,0,0,0,347.538,4.289a14.1,14.1,0,0,0-19.784-.463l-102.9,102.747H24.947A24.9,24.9,0,0,0,0,131.417V380.38a24.963,24.963,0,0,0,24.918,24.9H224.986L328.072,508a13.667,13.667,0,0,0,19.327,0c.126-.126.249-.255.37-.385a368.025,368.025,0,0,0,69.577-107.374,403.45,403.45,0,0,0,17.3-50.8v-.028l20.406,5.336.029-.073L483.345,362a20.253,20.253,0,0,0,2.619.5,13.359,13.359,0,0,0,4.139-.072,13.5,13.5,0,0,0,10.515-9.924,415.855,415.855,0,0,0,.058-193.013ZM337.125,24.65l.013.014h-.013Zm-110.2,165.161L174.311,281.1a11.338,11.338,0,0,0-1.489,5.655v46.189a22.04,22.04,0,0,1-22.041,22h-3.4A22.068,22.068,0,0,1,125.3,332.962V287.294a11.532,11.532,0,0,0-1.388-5.51l-51.6-92.2a21.988,21.988,0,0,1,19.264-32.726h3.268a22.059,22.059,0,0,1,19.611,11.916l36.357,70.281,37.515-70.512a22.066,22.066,0,0,1,38.556-.695,21.7,21.7,0,0,1,0,21.967ZM337.145,24.673a348.147,348.147,0,0,1,75.8,141.335l.564,1.952-114.134,29.6V131.417a25.006,25.006,0,0,0-24.947-24.9H255.067Zm60.5,367.305v-.043l-.014.014a347.19,347.19,0,0,1-60.177,95.227l-82.2-81.893h19.177a24.978,24.978,0,0,0,24.947-24.9v-66.2l114.6,29.862A385.191,385.191,0,0,1,397.648,391.978Zm84-52.45.015.014-50.618-13.131L299.379,292.1V219.572l119.746-30.99,4.468-1.157,39.54-10.253,18.511-4.816A393,393,0,0,1,481.644,339.528Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yandex": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f413", + "label": "Yandex", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yandex-international": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f414", + "label": "Yandex International", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yarn": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f7e3", + "label": "Yarn", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M393.9 345.2c-39 9.3-48.4 32.1-104 47.4 0 0-2.7 4-10.4 5.8-13.4 3.3-63.9 6-68.5 6.1-12.4.1-19.9-3.2-22-8.2-6.4-15.3 9.2-22 9.2-22-8.1-5-9-9.9-9.8-8.1-2.4 5.8-3.6 20.1-10.1 26.5-8.8 8.9-25.5 5.9-35.3.8-10.8-5.7.8-19.2.8-19.2s-5.8 3.4-10.5-3.6c-6-9.3-17.1-37.3 11.5-62-1.3-10.1-4.6-53.7 40.6-85.6 0 0-20.6-22.8-12.9-43.3 5-13.4 7-13.3 8.6-13.9 5.7-2.2 11.3-4.6 15.4-9.1 20.6-22.2 46.8-18 46.8-18s12.4-37.8 23.9-30.4c3.5 2.3 16.3 30.6 16.3 30.6s13.6-7.9 15.1-5c8.2 16 9.2 46.5 5.6 65.1-6.1 30.6-21.4 47.1-27.6 57.5-1.4 2.4 16.5 10 27.8 41.3 10.4 28.6 1.1 52.7 2.8 55.3.8 1.4 13.7.8 36.4-13.2 12.8-7.9 28.1-16.9 45.4-17 16.7-.5 17.6 19.2 4.9 22.2zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-79.3 75.2c-1.7-13.6-13.2-23-28-22.8-22 .3-40.5 11.7-52.8 19.2-4.8 3-8.9 5.2-12.4 6.8 3.1-44.5-22.5-73.1-28.7-79.4 7.8-11.3 18.4-27.8 23.4-53.2 4.3-21.7 3-55.5-6.9-74.5-1.6-3.1-7.4-11.2-21-7.4-9.7-20-13-22.1-15.6-23.8-1.1-.7-23.6-16.4-41.4 28-12.2.9-31.3 5.3-47.5 22.8-2 2.2-5.9 3.8-10.1 5.4h.1c-8.4 3-12.3 9.9-16.9 22.3-6.5 17.4.2 34.6 6.8 45.7-17.8 15.9-37 39.8-35.7 82.5-34 36-11.8 73-5.6 79.6-1.6 11.1 3.7 19.4 12 23.8 12.6 6.7 30.3 9.6 43.9 2.8 4.9 5.2 13.8 10.1 30 10.1 6.8 0 58-2.9 72.6-6.5 6.8-1.6 11.5-4.5 14.6-7.1 9.8-3.1 36.8-12.3 62.2-28.7 18-11.7 24.2-14.2 37.6-17.4 12.9-3.2 21-15.1 19.4-28.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yelp": { + "changes": [ + "4.2.0", + "5.0.0", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1e9", + "label": "Yelp", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M42.9 240.32l99.62 48.61c19.2 9.4 16.2 37.51-4.5 42.71L30.5 358.45a22.79 22.79 0 0 1-28.21-19.6 197.16 197.16 0 0 1 9-85.32 22.8 22.8 0 0 1 31.61-13.21zm44 239.25a199.45 199.45 0 0 0 79.42 32.11A22.78 22.78 0 0 0 192.94 490l3.9-110.82c.7-21.3-25.5-31.91-39.81-16.1l-74.21 82.4a22.82 22.82 0 0 0 4.09 34.09zm145.34-109.92l58.81 94a22.93 22.93 0 0 0 34 5.5 198.36 198.36 0 0 0 52.71-67.61A23 23 0 0 0 364.17 370l-105.42-34.26c-20.31-6.5-37.81 15.8-26.51 33.91zm148.33-132.23a197.44 197.44 0 0 0-50.41-69.31 22.85 22.85 0 0 0-34 4.4l-62 91.92c-11.9 17.7 4.7 40.61 25.2 34.71L366 268.63a23 23 0 0 0 14.61-31.21zM62.11 30.18a22.86 22.86 0 0 0-9.9 32l104.12 180.44c11.7 20.2 42.61 11.9 42.61-11.4V22.88a22.67 22.67 0 0 0-24.5-22.8 320.37 320.37 0 0 0-112.33 30.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yen-sign": { + "aliases": { + "names": [ + "cny", + "jpy", + "rmb", + "yen" + ], + "unicodes": { + "composite": [ + "a5" + ], + "secondary": [ + "10f157" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Yen Sign", + "currency" + ] + }, + "unicode": "f157", + "label": "Yen Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M58.6 46.2C48.8 31.5 29 27.6 14.2 37.4S-4.4 67 5.4 81.7L100.2 224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v32H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v64c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H192V288h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H219.8L314.6 81.7c9.8-14.7 5.8-34.6-8.9-44.4s-34.6-5.8-44.4 8.9L160 198.3 58.6 46.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "yin-yang": { + "aliases": { + "unicodes": { + "composite": [ + "262f" + ], + "secondary": [ + "10f6ad" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "daoism", + "opposites", + "religion", + "tao", + "taoism", + "taoist", + "yang", + "yin", + "yin yang" + ] + }, + "unicode": "f6ad", + "label": "Yin Yang", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 64c53 0 96 43 96 96s-43 96-96 96s-96 43-96 96s43 96 96 96C150 448 64 362 64 256S150 64 256 64zm0 448A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm32-352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "yoast": { + "changes": [ + "4.6.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2b1", + "label": "Yoast", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "youtube": { + "aliases": { + "unicodes": { + "composite": [ + "f16a" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "film", + "video", + "youtube-play", + "youtube-square" + ] + }, + "unicode": "f167", + "label": "YouTube", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "z": { + "aliases": { + "unicodes": { + "composite": [ + "7a" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter Z", + "Latin Small Letter Z", + "letter" + ] + }, + "unicode": "5a", + "label": "Z", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H352c12.4 0 23.7 7.2 29 18.4s3.6 24.5-4.4 34.1L100.3 416H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-12.4 0-23.7-7.2-29-18.4s-3.6-24.5 4.4-34.1L283.7 96H32C14.3 96 0 81.7 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "zhihu": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f63f", + "label": "Zhihu", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M170.54 148.13v217.54l23.43.01 7.71 26.37 42.01-26.37h49.53V148.13H170.54zm97.75 193.93h-27.94l-27.9 17.51-5.08-17.47-11.9-.04V171.75h72.82v170.31zm-118.46-94.39H97.5c1.74-27.1 2.2-51.59 2.2-73.46h51.16s1.97-22.56-8.58-22.31h-88.5c3.49-13.12 7.87-26.66 13.12-40.67 0 0-24.07 0-32.27 21.57-3.39 8.9-13.21 43.14-30.7 78.12 5.89-.64 25.37-1.18 36.84-22.21 2.11-5.89 2.51-6.66 5.14-14.53h28.87c0 10.5-1.2 66.88-1.68 73.44H20.83c-11.74 0-15.56 23.62-15.56 23.62h65.58C66.45 321.1 42.83 363.12 0 396.34c20.49 5.85 40.91-.93 51-9.9 0 0 22.98-20.9 35.59-69.25l53.96 64.94s7.91-26.89-1.24-39.99c-7.58-8.92-28.06-33.06-36.79-41.81L87.9 311.95c4.36-13.98 6.99-27.55 7.87-40.67h61.65s-.09-23.62-7.59-23.62v.01zm412.02-1.6c20.83-25.64 44.98-58.57 44.98-58.57s-18.65-14.8-27.38-4.06c-6 8.15-36.83 48.2-36.83 48.2l19.23 14.43zm-150.09-59.09c-9.01-8.25-25.91 2.13-25.91 2.13s39.52 55.04 41.12 57.45l19.46-13.73s-25.67-37.61-34.66-45.86h-.01zM640 258.35c-19.78 0-130.91.93-131.06.93v-101c4.81 0 12.42-.4 22.85-1.2 40.88-2.41 70.13-4 87.77-4.81 0 0 12.22-27.19-.59-33.44-3.07-1.18-23.17 4.58-23.17 4.58s-165.22 16.49-232.36 18.05c1.6 8.82 7.62 17.08 15.78 19.55 13.31 3.48 22.69 1.7 49.15.89 24.83-1.6 43.68-2.43 56.51-2.43v99.81H351.41s2.82 22.31 25.51 22.85h107.94v70.92c0 13.97-11.19 21.99-24.48 21.12-14.08.11-26.08-1.15-41.69-1.81 1.99 3.97 6.33 14.39 19.31 21.84 9.88 4.81 16.17 6.57 26.02 6.57 29.56 0 45.67-17.28 44.89-45.31v-73.32h122.36c9.68 0 8.7-23.78 8.7-23.78l.03-.01z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + } +} \ No newline at end of file diff --git a/vendor/fortawesome/font-awesome/js-packages/@fortawesome/fontawesome-free/package.json b/vendor/fortawesome/font-awesome/js-packages/@fortawesome/fontawesome-free/package.json new file mode 100644 index 00000000..bfef51dc --- /dev/null +++ b/vendor/fortawesome/font-awesome/js-packages/@fortawesome/fontawesome-free/package.json @@ -0,0 +1,32 @@ +{ + "description": "The iconic font, CSS, and SVG framework", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "svg", + "bootstrap" + ], + "homepage": "https://fontawesome.com", + "bugs": { + "url": "https://github.com/FortAwesome/Font-Awesome/issues" + }, + "author": "The Font Awesome Team (https://github.com/orgs/FortAwesome/people)", + "repository": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome" + }, + "engines": { + "node": ">=6" + }, + "dependencies": {}, + "version": "6.3.0", + "name": "@fortawesome/fontawesome-free", + "main": "js/fontawesome.js", + "style": "css/fontawesome.css", + "license": "(CC-BY-4.0 AND OFL-1.1 AND MIT)", + "scripts": { + "postinstall": "node attribution.js" + } +} \ No newline at end of file diff --git a/vendor/fortawesome/font-awesome/js-packages/@fortawesome/fontawesome-svg-core/package.json b/vendor/fortawesome/font-awesome/js-packages/@fortawesome/fontawesome-svg-core/package.json new file mode 100644 index 00000000..f302453f --- /dev/null +++ b/vendor/fortawesome/font-awesome/js-packages/@fortawesome/fontawesome-svg-core/package.json @@ -0,0 +1,73 @@ +{ + "description": "The iconic font, CSS, and SVG framework", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "svg", + "bootstrap" + ], + "homepage": "https://fontawesome.com", + "bugs": { + "url": "https://github.com/FortAwesome/Font-Awesome/issues" + }, + "author": "The Font Awesome Team (https://github.com/orgs/FortAwesome/people)", + "repository": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome" + }, + "engines": { + "node": ">=6" + }, + "dependencies": { + "@fortawesome/fontawesome-common-types": "6.3.0" + }, + "version": "6.3.0", + "name": "@fortawesome/fontawesome-svg-core", + "main": "index.js", + "module": "index.mjs", + "jsnext:main": "index.mjs", + "style": "styles.css", + "license": "MIT", + "types": "./index.d.ts", + "exports": { + ".": { + "module": "./index.mjs", + "import": "./index.mjs", + "require": "./index.js", + "style": "./styles.css", + "default": "./index.js" + }, + "./index": { + "module": "./index.mjs", + "import": "./index.mjs", + "require": "./index.js", + "default": "./index.js" + }, + "./index.js": { + "module": "./index.mjs", + "import": "./index.mjs", + "require": "./index.js", + "default": "./index.js" + }, + "./plugins": { + "module": "./plugins.mjs", + "import": "./plugins.mjs", + "default": "./plugins.mjs" + }, + "./import.macro": "./import.macro.js", + "./import.macro.js": "./import.macro.js", + "./styles": "./styles.css", + "./styles.css": "./styles.css", + "./package.json": "./package.json" + }, + "sideEffects": [ + "./index.js", + "./index.mjs", + "./styles.css" + ], + "scripts": { + "postinstall": "node attribution.js" + } +} \ No newline at end of file diff --git a/vendor/fortawesome/font-awesome/js-packages/@fortawesome/free-brands-svg-icons/package.json b/vendor/fortawesome/font-awesome/js-packages/@fortawesome/free-brands-svg-icons/package.json new file mode 100644 index 00000000..028252c6 --- /dev/null +++ b/vendor/fortawesome/font-awesome/js-packages/@fortawesome/free-brands-svg-icons/package.json @@ -0,0 +1,56 @@ +{ + "description": "The iconic font, CSS, and SVG framework", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "svg", + "bootstrap" + ], + "homepage": "https://fontawesome.com", + "bugs": { + "url": "https://github.com/FortAwesome/Font-Awesome/issues" + }, + "author": "The Font Awesome Team (https://github.com/orgs/FortAwesome/people)", + "repository": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome" + }, + "engines": { + "node": ">=6" + }, + "dependencies": { + "@fortawesome/fontawesome-common-types": "6.3.0" + }, + "version": "6.3.0", + "name": "@fortawesome/free-brands-svg-icons", + "main": "index.js", + "module": "index.mjs", + "jsnext:main": "index.mjs", + "license": "(CC-BY-4.0 AND MIT)", + "types": "./index.d.ts", + "sideEffects": false, + "exports": { + ".": { + "import": "./index.mjs", + "require": "./index.js", + "default": "./index.js" + }, + "./index": { + "import": "./index.mjs", + "require": "./index.js", + "default": "./index.js" + }, + "./index.js": { + "import": "./index.mjs", + "require": "./index.js", + "default": "./index.js" + }, + "./package.json": "./package.json", + "./*": "./*.js" + }, + "scripts": { + "postinstall": "node attribution.js" + } +} \ No newline at end of file diff --git a/vendor/fortawesome/font-awesome/js-packages/@fortawesome/free-regular-svg-icons/package.json b/vendor/fortawesome/font-awesome/js-packages/@fortawesome/free-regular-svg-icons/package.json new file mode 100644 index 00000000..6d9a67fb --- /dev/null +++ b/vendor/fortawesome/font-awesome/js-packages/@fortawesome/free-regular-svg-icons/package.json @@ -0,0 +1,56 @@ +{ + "description": "The iconic font, CSS, and SVG framework", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "svg", + "bootstrap" + ], + "homepage": "https://fontawesome.com", + "bugs": { + "url": "https://github.com/FortAwesome/Font-Awesome/issues" + }, + "author": "The Font Awesome Team (https://github.com/orgs/FortAwesome/people)", + "repository": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome" + }, + "engines": { + "node": ">=6" + }, + "dependencies": { + "@fortawesome/fontawesome-common-types": "6.3.0" + }, + "version": "6.3.0", + "name": "@fortawesome/free-regular-svg-icons", + "main": "index.js", + "module": "index.mjs", + "jsnext:main": "index.mjs", + "license": "(CC-BY-4.0 AND MIT)", + "types": "./index.d.ts", + "sideEffects": false, + "exports": { + ".": { + "import": "./index.mjs", + "require": "./index.js", + "default": "./index.js" + }, + "./index": { + "import": "./index.mjs", + "require": "./index.js", + "default": "./index.js" + }, + "./index.js": { + "import": "./index.mjs", + "require": "./index.js", + "default": "./index.js" + }, + "./package.json": "./package.json", + "./*": "./*.js" + }, + "scripts": { + "postinstall": "node attribution.js" + } +} \ No newline at end of file diff --git a/vendor/fortawesome/font-awesome/js-packages/@fortawesome/free-solid-svg-icons/package.json b/vendor/fortawesome/font-awesome/js-packages/@fortawesome/free-solid-svg-icons/package.json new file mode 100644 index 00000000..e77309ce --- /dev/null +++ b/vendor/fortawesome/font-awesome/js-packages/@fortawesome/free-solid-svg-icons/package.json @@ -0,0 +1,56 @@ +{ + "description": "The iconic font, CSS, and SVG framework", + "keywords": [ + "font", + "awesome", + "fontawesome", + "icon", + "svg", + "bootstrap" + ], + "homepage": "https://fontawesome.com", + "bugs": { + "url": "https://github.com/FortAwesome/Font-Awesome/issues" + }, + "author": "The Font Awesome Team (https://github.com/orgs/FortAwesome/people)", + "repository": { + "type": "git", + "url": "https://github.com/FortAwesome/Font-Awesome" + }, + "engines": { + "node": ">=6" + }, + "dependencies": { + "@fortawesome/fontawesome-common-types": "6.3.0" + }, + "version": "6.3.0", + "name": "@fortawesome/free-solid-svg-icons", + "main": "index.js", + "module": "index.mjs", + "jsnext:main": "index.mjs", + "license": "(CC-BY-4.0 AND MIT)", + "types": "./index.d.ts", + "sideEffects": false, + "exports": { + ".": { + "import": "./index.mjs", + "require": "./index.js", + "default": "./index.js" + }, + "./index": { + "import": "./index.mjs", + "require": "./index.js", + "default": "./index.js" + }, + "./index.js": { + "import": "./index.mjs", + "require": "./index.js", + "default": "./index.js" + }, + "./package.json": "./package.json", + "./*": "./*.js" + }, + "scripts": { + "postinstall": "node attribution.js" + } +} \ No newline at end of file diff --git a/vendor/fortawesome/font-awesome/metadata/icon-families.json b/vendor/fortawesome/font-awesome/metadata/icon-families.json new file mode 100644 index 00000000..875e8225 --- /dev/null +++ b/vendor/fortawesome/font-awesome/metadata/icon-families.json @@ -0,0 +1,110086 @@ +{ + "0": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Zero", + "nada", + "none", + "zero", + "zilch" + ] + }, + "unicode": "30", + "label": "0", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 192C0 103.6 71.6 32 160 32s160 71.6 160 160V320c0 88.4-71.6 160-160 160S0 408.4 0 320V192zM160 96c-53 0-96 43-96 96V320c0 53 43 96 96 96s96-43 96-96V192c0-53-43-96-96-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "1": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit One", + "one" + ] + }, + "unicode": "31", + "label": "1", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M160 64c0-11.8-6.5-22.6-16.9-28.2s-23-5-32.9 1.6l-96 64C-.5 111.2-4.4 131 5.4 145.8s29.7 18.7 44.4 8.9L96 123.8V416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96 96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "2": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Two", + "two" + ] + }, + "unicode": "32", + "label": "2", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M142.9 96c-21.5 0-42.2 8.5-57.4 23.8L54.6 150.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L40.2 74.5C67.5 47.3 104.4 32 142.9 32C223 32 288 97 288 177.1c0 38.5-15.3 75.4-42.5 102.6L109.3 416H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9L200.2 234.5c15.2-15.2 23.8-35.9 23.8-57.4c0-44.8-36.3-81.1-81.1-81.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "3": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Three", + "three" + ] + }, + "unicode": "33", + "label": "3", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H272c13.2 0 25 8.1 29.8 20.4s1.5 26.3-8.2 35.2L162.3 208H184c75.1 0 136 60.9 136 136s-60.9 136-136 136H105.4C63 480 24.2 456 5.3 418.1l-1.9-3.8c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l1.9 3.8c8.1 16.3 24.8 26.5 42.9 26.5H184c39.8 0 72-32.2 72-72s-32.2-72-72-72H80c-13.2 0-25-8.1-29.8-20.4s-1.5-26.3 8.2-35.2L189.7 96H32C14.3 96 0 81.7 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "4": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Four", + "four" + ] + }, + "unicode": "34", + "label": "4", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M189 77.6c7.5-16 .7-35.1-15.3-42.6s-35.1-.7-42.6 15.3L3 322.4c-4.7 9.9-3.9 21.5 1.9 30.8S21 368 32 368H256v80c0 17.7 14.3 32 32 32s32-14.3 32-32V368h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H320V160c0-17.7-14.3-32-32-32s-32 14.3-32 32V304H82.4L189 77.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "5": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Five", + "five" + ] + }, + "unicode": "35", + "label": "5", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32.5 58.3C35.3 43.1 48.5 32 64 32H256c17.7 0 32 14.3 32 32s-14.3 32-32 32H90.7L70.3 208H184c75.1 0 136 60.9 136 136s-60.9 136-136 136H100.5c-39.4 0-75.4-22.3-93-57.5l-4.1-8.2c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l4.1 8.2c6.8 13.6 20.6 22.1 35.8 22.1H184c39.8 0 72-32.2 72-72s-32.2-72-72-72H32c-9.5 0-18.5-4.2-24.6-11.5s-8.6-16.9-6.9-26.2l32-176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "6": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Six", + "six" + ] + }, + "unicode": "36", + "label": "6", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M232.4 84.7c11.4-13.5 9.7-33.7-3.8-45.1s-33.7-9.7-45.1 3.8L38.6 214.7C14.7 242.9 1.1 278.4 .1 315.2c0 1.4-.1 2.9-.1 4.3c0 .2 0 .3 0 .5c0 88.4 71.6 160 160 160s160-71.6 160-160c0-85.5-67.1-155.4-151.5-159.8l63.9-75.6zM256 320A96 96 0 1 1 64 320a96 96 0 1 1 192 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "7": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Seven", + "seven" + ] + }, + "unicode": "37", + "label": "7", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H288c11.5 0 22 6.1 27.7 16.1s5.7 22.2-.1 32.1l-224 384c-8.9 15.3-28.5 20.4-43.8 11.5s-20.4-28.5-11.5-43.8L232.3 96H32C14.3 96 0 81.7 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "8": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Eight", + "eight" + ] + }, + "unicode": "38", + "label": "8", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M304 160c0-70.7-57.3-128-128-128H144C73.3 32 16 89.3 16 160c0 34.6 13.7 66 36 89C20.5 272.3 0 309.8 0 352c0 70.7 57.3 128 128 128h64c70.7 0 128-57.3 128-128c0-42.2-20.5-79.7-52-103c22.3-23 36-54.4 36-89zM176.1 288H192c35.3 0 64 28.7 64 64s-28.7 64-64 64H128c-35.3 0-64-28.7-64-64s28.7-64 64-64h15.9c0 0 .1 0 .1 0h32c0 0 .1 0 .1 0zm0-64c0 0 0 0 0 0H144c0 0 0 0 0 0c-35.3 0-64-28.7-64-64c0-35.3 28.7-64 64-64h32c35.3 0 64 28.7 64 64c0 35.3-28.6 64-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "9": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Nine", + "nine" + ] + }, + "unicode": "39", + "label": "9", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 192a96 96 0 1 0 192 0A96 96 0 1 0 64 192zm87.5 159.8C67.1 347.4 0 277.5 0 192C0 103.6 71.6 32 160 32s160 71.6 160 160c0 2.6-.1 5.3-.2 7.9c-1.7 35.7-15.2 70-38.4 97.4l-145 171.4c-11.4 13.5-31.6 15.2-45.1 3.8s-15.2-31.6-3.8-45.1l63.9-75.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "42-group": { + "aliases": { + "names": [ + "innosoft" + ] + }, + "changes": [ + "5.15.0", + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e080", + "label": "42.group", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96V416C341.011 416 361.818 411.861 381.23 403.821C400.641 395.78 418.28 383.995 433.138 369.138C447.995 354.28 459.78 336.641 467.821 317.23C475.861 297.818 480 277.011 480 256C480 234.989 475.861 214.182 467.821 194.771C459.78 175.359 447.995 157.72 433.138 142.863C418.28 128.005 400.641 116.22 381.23 108.179C361.818 100.139 341.011 96 320 96ZM0 256L160.002 416L320.003 256L160.002 96L0 256ZM480 256C480 277.011 484.138 297.818 492.179 317.23C500.219 336.643 512.005 354.28 526.862 369.138C541.72 383.995 559.357 395.781 578.77 403.821C598.182 411.862 618.989 416 640 416V96C597.565 96 556.869 112.858 526.862 142.863C496.857 172.869 480 213.565 480 256Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "500px": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f26e", + "label": "500px", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "a": { + "aliases": { + "unicodes": { + "composite": [ + "61" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter A", + "Latin Small Letter A", + "letter" + ] + }, + "unicode": "41", + "label": "A", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M221.5 51.7C216.6 39.8 204.9 32 192 32s-24.6 7.8-29.5 19.7l-120 288-40 96c-6.8 16.3 .9 35 17.2 41.8s35-.9 41.8-17.2L93.3 384H290.7l31.8 76.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8l-40-96-120-288zM264 320H120l72-172.8L264 320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "accessible-icon": { + "aliases": { + "unicodes": { + "composite": [ + "f29b" + ] + } + }, + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accessibility", + "handicap", + "person", + "wheelchair", + "wheelchair-alt" + ] + }, + "unicode": "f368", + "label": "Accessible Icon", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "accusoft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f369", + "label": "Accusoft", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M322.1 252v-1l-51.2-65.8s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3zm160.1 120.1c13.3 16.1 20.7 13.3 30.8 9.3 3.2-1.2 115.4-47.6 117.8-48.9 8-4.3-1.7-16.7-7.2-23.4-2.1-2.5-205.1-245.6-207.2-248.3-9.7-12.2-14.3-12.9-38.4-12.8-10.2 0-106.8.5-116.5.6-19.2.1-32.9-.3-19.2 16.9C250 75 476.5 365.2 482.2 372.1zm152.7 1.6c-2.3-.3-24.6-4.7-38-7.2 0 0-115 50.4-117.5 51.6-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "address-book": { + "aliases": { + "names": [ + "contact-book" + ], + "unicodes": { + "composite": [ + "f2ba" + ], + "secondary": [ + "10f2b9" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contact", + "directory", + "index", + "little black book", + "rolodex" + ] + }, + "unicode": "f2b9", + "label": "Address Book", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 0C60.7 0 32 28.7 32 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H96zM208 288h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H144c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-32-96a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM512 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V80zM496 192c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm16 144c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V336z" + }, + "regular": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M384 48c8.8 0 16 7.2 16 16V448c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H384zM96 0C60.7 0 32 28.7 32 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H96zM240 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zm-32 32c-44.2 0-80 35.8-80 80c0 8.8 7.2 16 16 16H336c8.8 0 16-7.2 16-16c0-44.2-35.8-80-80-80H208zM512 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V80zM496 192c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm16 144c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V336z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "address-card": { + "aliases": { + "names": [ + "contact-card", + "vcard" + ], + "unicodes": { + "composite": [ + "f2bc" + ], + "secondary": [ + "10f2bb" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "about", + "contact", + "id", + "identification", + "postcard", + "profile", + "registration" + ] + }, + "unicode": "f2bb", + "label": "Address Card", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm80 256h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-32-96a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zm256-32H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M512 80c8.8 0 16 7.2 16 16V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16H512zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM208 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zm-32 32c-44.2 0-80 35.8-80 80c0 8.8 7.2 16 16 16H304c8.8 0 16-7.2 16-16c0-44.2-35.8-80-80-80H176zM376 144c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H376zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H376z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "adn": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f170", + "label": "App.net", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "adversal": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36a", + "label": "Adversal", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "affiliatetheme": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36b", + "label": "affiliatetheme", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "airbnb": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f834", + "label": "Airbnb", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 373.12c-25.24-31.67-40.08-59.43-45-83.18-22.55-88 112.61-88 90.06 0-5.45 24.25-20.29 52-45 83.18zm138.15 73.23c-42.06 18.31-83.67-10.88-119.3-50.47 103.9-130.07 46.11-200-18.85-200-54.92 0-85.16 46.51-73.28 100.5 6.93 29.19 25.23 62.39 54.43 99.5-32.53 36.05-60.55 52.69-85.15 54.92-50 7.43-89.11-41.06-71.3-91.09 15.1-39.16 111.72-231.18 115.87-241.56 15.75-30.07 25.56-57.4 59.38-57.4 32.34 0 43.4 25.94 60.37 59.87 36 70.62 89.35 177.48 114.84 239.09 13.17 33.07-1.37 71.29-37.01 86.64zm47-136.12C280.27 35.93 273.13 32 224 32c-45.52 0-64.87 31.67-84.66 72.79C33.18 317.1 22.89 347.19 22 349.81-3.22 419.14 48.74 480 111.63 480c21.71 0 60.61-6.06 112.37-62.4 58.68 63.78 101.26 62.4 112.37 62.4 62.89.05 114.85-60.86 89.61-130.19.02-3.89-16.82-38.9-16.82-39.58z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "algolia": { + "changes": [ + "5.0.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36c", + "label": "Algolia", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1675090779, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0C116.1 0 2 112.7 0 252.1C-2 393.6 112.9 510.8 254.5 511.6c43.7 .3 85.9-10.4 123.3-30.7c3.6-2 4.2-7 1.1-9.7l-24-21.2c-4.9-4.3-11.8-5.5-17.8-3c-26.1 11.1-54.5 16.8-83.7 16.4C139 461.9 46.5 366.8 48.3 252.4C50.1 139.5 142.6 48.2 256 48.2H463.7V417.2L345.9 312.5c-3.8-3.4-9.7-2.7-12.7 1.3c-18.9 25-49.7 40.6-83.9 38.2c-47.5-3.3-85.9-41.5-89.5-88.9c-4.2-56.6 40.6-103.9 96.3-103.9c50.4 0 91.9 38.8 96.2 88c.4 4.4 2.4 8.5 5.7 11.4l30.7 27.2c3.5 3.1 9 1.2 9.9-3.4c2.2-11.8 3-24.2 2.1-36.8c-4.9-72-63.3-130-135.4-134.4c-82.7-5.1-151.8 59.5-154 140.6c-2.1 78.9 62.6 147 141.6 148.7c33 .7 63.6-9.6 88.3-27.6L495 509.4c6.6 5.8 17 1.2 17-7.7V9.7c0-5.4-4.4-9.7-9.7-9.7H256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "align-center": { + "aliases": { + "unicodes": { + "secondary": [ + "10f037" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "middle", + "paragraph", + "text" + ] + }, + "unicode": "f037", + "label": "Align Center", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 64c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32s14.3 32 32 32H320c17.7 0 32-14.3 32-32zm96 128c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32zM0 448c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32zM352 320c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32s14.3 32 32 32H320c17.7 0 32-14.3 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "align-justify": { + "aliases": { + "unicodes": { + "secondary": [ + "10f039" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "paragraph", + "text" + ] + }, + "unicode": "f039", + "label": "Align Justify", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64S14.3 96 32 96H416c17.7 0 32-14.3 32-32zm0 256c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32zM0 192c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32zM448 448c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "align-left": { + "aliases": { + "unicodes": { + "secondary": [ + "10f036" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "paragraph", + "text" + ] + }, + "unicode": "f036", + "label": "Align Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M288 64c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32H256c17.7 0 32 14.3 32 32zm0 256c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H256c17.7 0 32 14.3 32 32zM0 192c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "align-right": { + "aliases": { + "unicodes": { + "secondary": [ + "10f038" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "paragraph", + "text" + ] + }, + "unicode": "f038", + "label": "Align Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 64c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32zm0 256c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32zM0 192c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "alipay": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f642", + "label": "Alipay", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M377.74 32H70.26C31.41 32 0 63.41 0 102.26v307.48C0 448.59 31.41 480 70.26 480h307.48c38.52 0 69.76-31.08 70.26-69.6-45.96-25.62-110.59-60.34-171.6-88.44-32.07 43.97-84.14 81-148.62 81-70.59 0-93.73-45.3-97.04-76.37-3.97-39.01 14.88-81.5 99.52-81.5 35.38 0 79.35 10.25 127.13 24.96 16.53-30.09 26.45-60.34 26.45-60.34h-178.2v-16.7h92.08v-31.24H88.28v-19.01h109.44V92.34h50.92v50.42h109.44v19.01H248.63v31.24h88.77s-15.21 46.62-38.35 90.92c48.93 16.7 100.01 36.04 148.62 52.74V102.26C447.83 63.57 416.43 32 377.74 32zM47.28 322.95c.99 20.17 10.25 53.73 69.93 53.73 52.07 0 92.58-39.68 117.87-72.9-44.63-18.68-84.48-31.41-109.44-31.41-67.45 0-79.35 33.06-78.36 50.58z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "amazon": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f270", + "label": "Amazon", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "amazon-pay": { + "changes": [ + "5.0.2", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42c", + "label": "Amazon Pay", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M14 325.3c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7a595.88 595.88 0 0 0 127.4 46.3 616.61 616.61 0 0 0 63.2 11.8 603.33 603.33 0 0 0 95 5.2c17.4-.4 34.8-1.8 52.1-3.8a603.66 603.66 0 0 0 163.3-42.8c2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9a70 70 0 0 1-9.6 7.4c-30.7 21.1-64.2 36.4-99.6 47.9a473.31 473.31 0 0 1-75.1 17.6 431 431 0 0 1-53.2 4.8 21.3 21.3 0 0 0-2.5.3H308a21.3 21.3 0 0 0-2.5-.3c-3.6-.2-7.2-.3-10.7-.4a426.3 426.3 0 0 1-50.4-5.3A448.4 448.4 0 0 1 164 420a443.33 443.33 0 0 1-145.6-87c-1.8-1.6-3-3.8-4.4-5.7zM172 65.1l-4.3.6a80.92 80.92 0 0 0-38 15.1c-2.4 1.7-4.6 3.5-7.1 5.4a4.29 4.29 0 0 1-.4-1.4c-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6h-11.5c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3v-72.4c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zM124.6 107a3.48 3.48 0 0 1 1.7-3.3c13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9a3.57 3.57 0 0 1-1.7-3.3c.1-14.1 0-28.1 0-42.2s.1-28 0-42.1zm205.7-41.9c-1 .1-2 .3-2.9.4a148 148 0 0 0-28.9 4.1c-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9a7.84 7.84 0 0 1-.2 1.4c-.5-.1-.9 0-1.3-.1a180.56 180.56 0 0 0-32-4.9c-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4a7.36 7.36 0 0 1 1.6-1.1c.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0a4.84 4.84 0 0 0 4.8-4.7 26.2 26.2 0 0 0 .1-2.8v-106a80 80 0 0 0-.9-12.9c-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7a3.33 3.33 0 0 1-1.5 3c-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8a20.08 20.08 0 0 1-12.4-13.3 32.9 32.9 0 0 1-.1-19.4c2.5-8.3 8.4-13 16.4-15.6a61.33 61.33 0 0 1 24.8-2.2c8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3s-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3a88.42 88.42 0 0 0-21-3.9 147.32 147.32 0 0 0-39.2 1.9c-14.3 2.7-27.9 7.3-40 15.6a13.75 13.75 0 0 0-3.7 3.5 5.11 5.11 0 0 0-.5 4c.4 1.5 2.1 1.9 3.6 1.8a16.2 16.2 0 0 0 2.2-.1c7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9a71.64 71.64 0 0 1 14.4 2.7c5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1a17.6 17.6 0 0 0-1 3c-.5 2.9 1.2 4.8 4.1 4.1a10.56 10.56 0 0 0 4.8-2.5 145.91 145.91 0 0 0 12.7-13.4c12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM493.1 199q-19.35-53.55-38.7-107.2c-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5a43.1 43.1 0 0 0 1.9 6.1q29.4 72.75 59.1 145.5c1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3a42.13 42.13 0 0 1-15.4 1.1c-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8q-.15 5 0 9.9c.1 5.5 2 8 7.4 8.9a108.18 108.18 0 0 0 16.9 2c17.1.4 30.7-6.5 39.5-21.4a131.63 131.63 0 0 0 9.2-18.4q35.55-89.7 70.6-179.6a26.62 26.62 0 0 0 1.6-5.5c.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0a7.54 7.54 0 0 0-7.7 5.2c-.5 1.4-1.1 2.7-1.6 4.1l-34.8 100c-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "amilia": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36d", + "label": "Amilia", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm50.2 348c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7 0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "anchor": { + "aliases": { + "unicodes": { + "composite": [ + "2693" + ], + "secondary": [ + "10f13d" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchor", + "berth", + "boat", + "dock", + "embed", + "link", + "maritime", + "moor", + "port", + "secure", + "ship", + "tool" + ] + }, + "unicode": "f13d", + "label": "Anchor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c88.4 0 160-71.6 160-160v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-56-56c-9.4-9.4-24.6-9.4-33.9 0l-56 56c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 53-43 96-96 96H320V240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "anchor-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "marina", + "not affected", + "ok", + "okay", + "port" + ] + }, + "unicode": "e4aa", + "label": "Anchor Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8.2 0 16.3-.6 24.2-1.8c-22.2-16.2-40.4-37.5-53-62.2H320V368 240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "anchor-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "marina", + "port" + ] + }, + "unicode": "e4ab", + "label": "Anchor Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8.2 0 16.3-.6 24.2-1.8c-22.2-16.2-40.4-37.5-53-62.2H320V368 240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "anchor-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destroy", + "marina", + "port" + ] + }, + "unicode": "e4ac", + "label": "Anchor Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8.2 0 16.3-.6 24.2-1.8c-22.2-16.2-40.4-37.5-53-62.2H320V368 240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "anchor-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "lockdown", + "marina", + "port", + "quarantine" + ] + }, + "unicode": "e4ad", + "label": "Anchor Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8 0 15.9-.6 23.6-1.7c-4.8-9-7.6-19.3-7.6-30.3V446.7c-5.2 .9-10.5 1.3-16 1.3H320V240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM528 240c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "android": { + "changes": [ + "3.2.0", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "robot" + ] + }, + "unicode": "f17b", + "label": "Android", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M420.55,301.93a24,24,0,1,1,24-24,24,24,0,0,1-24,24m-265.1,0a24,24,0,1,1,24-24,24,24,0,0,1-24,24m273.7-144.48,47.94-83a10,10,0,1,0-17.27-10h0l-48.54,84.07a301.25,301.25,0,0,0-246.56,0L116.18,64.45a10,10,0,1,0-17.27,10h0l47.94,83C64.53,202.22,8.24,285.55,0,384H576c-8.24-98.45-64.54-181.78-146.85-226.55" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "angellist": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f209", + "label": "AngelList", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "angle-down": { + "aliases": { + "unicodes": { + "composite": [ + "2304" + ], + "secondary": [ + "10f107" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Down Arrowhead", + "arrow", + "caret", + "download", + "expand" + ] + }, + "unicode": "f107", + "label": "Angle Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M169.4 342.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 274.7 54.6 137.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angle-left": { + "aliases": { + "unicodes": { + "composite": [ + "2039" + ], + "secondary": [ + "10f104" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Single Left-Pointing Angle Quotation Mark", + "arrow", + "back", + "caret", + "less", + "previous" + ] + }, + "unicode": "f104", + "label": "Angle Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angle-right": { + "aliases": { + "unicodes": { + "composite": [ + "203a" + ], + "secondary": [ + "10f105" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Single Right-Pointing Angle Quotation Mark", + "arrow", + "care", + "forward", + "more", + "next" + ] + }, + "unicode": "f105", + "label": "Angle Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M246.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L178.7 256 41.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angle-up": { + "aliases": { + "unicodes": { + "composite": [ + "2303" + ], + "secondary": [ + "10f106" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Up Arrowhead", + "arrow", + "caret", + "collapse", + "upload" + ] + }, + "unicode": "f106", + "label": "Angle Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M169.4 137.4c12.5-12.5 32.8-12.5 45.3 0l160 160c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L192 205.3 54.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angles-down": { + "aliases": { + "names": [ + "angle-double-down" + ], + "unicodes": { + "secondary": [ + "10f103" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "caret", + "download", + "expand" + ] + }, + "unicode": "f103", + "label": "Angles Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M214.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 402.7 329.4 265.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-160 160zm160-352l-160 160c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 210.7 329.4 73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angles-left": { + "aliases": { + "names": [ + "angle-double-left" + ], + "unicodes": { + "composite": [ + "ab" + ], + "secondary": [ + "10f100" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Left-Pointing Double Angle Quotation Mark", + "arrows", + "back", + "caret", + "laquo", + "previous", + "quote" + ] + }, + "unicode": "f100", + "label": "Angles Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160zm352-160l-160 160c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L269.3 256 406.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angles-right": { + "aliases": { + "names": [ + "angle-double-right" + ], + "unicodes": { + "composite": [ + "bb" + ], + "secondary": [ + "10f101" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right-Pointing Double Angle Quotation Mark", + "arrows", + "caret", + "forward", + "more", + "next", + "quote", + "raquo" + ] + }, + "unicode": "f101", + "label": "Angles Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L370.7 256 233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L178.7 256 41.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angles-up": { + "aliases": { + "names": [ + "angle-double-up" + ], + "unicodes": { + "secondary": [ + "10f102" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "caret", + "collapse", + "upload" + ] + }, + "unicode": "f102", + "label": "Angles Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M214.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 109.3 329.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160zm160 352l-160-160c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 329.4 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "angrycreative": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36e", + "label": "Angry Creative", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "angular": { + "changes": [ + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f420", + "label": "Angular", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M185.7 268.1h76.2l-38.1-91.6-38.1 91.6zM223.8 32L16 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7zM354 373.8h-48.6l-26.2-65.4H168.6l-26.2 65.4H93.7L223.8 81.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ankh": { + "aliases": { + "unicodes": { + "composite": [ + "2625" + ], + "secondary": [ + "10f644" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Ankh", + "amulet", + "copper", + "coptic christianity", + "copts", + "crux ansata", + "egypt", + "venus" + ] + }, + "unicode": "f644", + "label": "Ankh", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M96 128c0-35.3 28.7-64 64-64s64 28.7 64 64c0 41.6-20.7 76.6-46.6 104.1c-5.9 6.2-11.8 11.8-17.4 16.7c-5.6-4.9-11.5-10.5-17.4-16.7C116.7 204.6 96 169.6 96 128zM160 0C89.3 0 32 57.3 32 128c0 52.4 21.5 95.5 46.8 128H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96V480c0 17.7 14.3 32 32 32s32-14.3 32-32V320h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H241.2c25.4-32.5 46.8-75.6 46.8-128C288 57.3 230.7 0 160 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "app-store": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f36f", + "label": "App Store", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "app-store-ios": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f370", + "label": "iOS App Store", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "apper": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f371", + "label": "Apper Systems AB", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "apple": { + "changes": [ + "3.2.0", + "5.0.0", + "5.0.7", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fruit", + "ios", + "mac", + "operating system", + "os", + "osx" + ] + }, + "unicode": "f179", + "label": "Apple", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "apple-pay": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f415", + "label": "Apple Pay", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "apple-whole": { + "aliases": { + "names": [ + "apple-alt" + ], + "unicodes": { + "composite": [ + "1f34e", + "1f34f" + ], + "secondary": [ + "10f5d1" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "fall", + "fruit", + "fuji", + "green", + "green apple", + "macintosh", + "orchard", + "red", + "red apple", + "seasonal", + "vegan" + ] + }, + "unicode": "f5d1", + "label": "Apple Whole", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 112c-8.8 0-16-7.2-16-16V80c0-44.2 35.8-80 80-80h16c8.8 0 16 7.2 16 16V32c0 44.2-35.8 80-80 80H224zM0 288c0-76.3 35.7-160 112-160c27.3 0 59.7 10.3 82.7 19.3c18.8 7.3 39.9 7.3 58.7 0c22.9-8.9 55.4-19.3 82.7-19.3c76.3 0 112 83.7 112 160c0 128-80 224-160 224c-16.5 0-38.1-6.6-51.5-11.3c-8.1-2.8-16.9-2.8-25 0c-13.4 4.7-35 11.3-51.5 11.3C80 512 0 416 0 288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "archway": { + "aliases": { + "unicodes": { + "secondary": [ + "10f557" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arc", + "monument", + "road", + "street", + "tunnel" + ] + }, + "unicode": "f557", + "label": "Archway", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zm0 384c-17.7 0-32 14.3-32 32s14.3 32 32 32H96h64V352c0-53 43-96 96-96s96 43 96 96V480h64 64c17.7 0 32-14.3 32-32s-14.3-32-32-32V128H32V416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down": { + "aliases": { + "unicodes": { + "composite": [ + "2193" + ], + "secondary": [ + "10f063" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Downwards Arrow", + "download" + ] + }, + "unicode": "f063", + "label": "Arrow Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M169.4 470.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 370.8 224 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 306.7L54.6 265.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-1-9": { + "aliases": { + "names": [ + "sort-numeric-asc", + "sort-numeric-down" + ], + "unicodes": { + "secondary": [ + "10f162" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-asc" + ] + }, + "unicode": "f162", + "label": "Arrow Down 1 9", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M410.7 38c-8.3-6-19.1-7.7-28.8-4.4l-48 16c-16.8 5.6-25.8 23.7-20.2 40.5s23.7 25.8 40.5 20.2l5.9-2V160H344c-17.7 0-32 14.3-32 32s14.3 32 32 32h48 48c17.7 0 32-14.3 32-32s-14.3-32-32-32H424V64c0-10.3-4.9-19.9-13.3-26zM120 480c9 0 17.5-3.8 23.6-10.4l88-96c11.9-13 11.1-33.3-2-45.2s-33.3-11.1-45.2 2L152 365.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V365.7L55.6 330.4c-11.9-13-32.2-13.9-45.2-2s-13.9 32.2-2 45.2l88 96C102.5 476.2 111 480 120 480zM378.3 307a32 32 0 1 1 27.4 57.9A32 32 0 1 1 378.3 307zM365.1 419.8l-6.8 9.2c-10.5 14.2-7.5 34.2 6.7 44.8s34.2 7.5 44.8-6.7l48.8-65.8c14-18.9 21.5-41.7 21.5-65.2c0-48.6-39.4-88-88-88s-88 39.4-88 88c0 39.2 25.6 72.4 61.1 83.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-9-1": { + "aliases": { + "names": [ + "sort-numeric-desc", + "sort-numeric-down-alt" + ], + "unicodes": { + "secondary": [ + "10f886" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-asc" + ] + }, + "unicode": "f886", + "label": "Arrow Down 9 1", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M120 480c9 0 17.5-3.8 23.6-10.4l88-96c11.9-13 11.1-33.3-2-45.2s-33.3-11.1-45.2 2L152 365.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V365.7L55.6 330.4c-11.9-13-32.2-13.9-45.2-2s-13.9 32.2-2 45.2l88 96C102.5 476.2 111 480 120 480zM410.7 294c-8.3-6-19.1-7.7-28.8-4.4l-48 16c-16.8 5.6-25.8 23.7-20.2 40.5s23.7 25.8 40.5 20.2l5.9-2V416H344c-17.7 0-32 14.3-32 32s14.3 32 32 32h48 48c17.7 0 32-14.3 32-32s-14.3-32-32-32H424V320c0-10.3-4.9-19.9-13.3-26zM378.3 91a32 32 0 1 1 27.4 57.9A32 32 0 1 1 378.3 91zM365.1 203.8l-6.8 9.2c-10.5 14.2-7.5 34.2 6.7 44.8s34.2 7.5 44.8-6.7l48.8-65.8c14-18.9 21.5-41.7 21.5-65.2c0-48.6-39.4-88-88-88s-88 39.4-88 88c0 39.2 25.6 72.4 61.1 83.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-a-z": { + "aliases": { + "names": [ + "sort-alpha-asc", + "sort-alpha-down" + ], + "unicodes": { + "secondary": [ + "10f15d" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-asc" + ] + }, + "unicode": "f15d", + "label": "Arrow Down A Z", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M143.6 469.6C137.5 476.2 129 480 120 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L88 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM280 320c0-17.7 14.3-32 32-32H440c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9L389.3 416H440c17.7 0 32 14.3 32 32s-14.3 32-32 32H312c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9L362.7 352H312c-17.7 0-32-14.3-32-32zM376 32c12.1 0 23.2 6.8 28.6 17.7l64 128 16 32c7.9 15.8 1.5 35-14.3 42.9s-35 1.5-42.9-14.3L420.2 224H331.8l-7.2 14.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l16-32 64-128C352.8 38.8 363.9 32 376 32zM355.8 176h40.4L376 135.6 355.8 176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-long": { + "aliases": { + "names": [ + "long-arrow-down" + ], + "unicodes": { + "secondary": [ + "10f175" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "long-arrow-down" + ] + }, + "unicode": "f175", + "label": "Arrow Down Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M137.4 502.6c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 402.7 192 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 370.7L54.6 329.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-short-wide": { + "aliases": { + "names": [ + "sort-amount-desc", + "sort-amount-down-alt" + ], + "unicodes": { + "secondary": [ + "10f884" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "order", + "sort-amount-asc" + ] + }, + "unicode": "f884", + "label": "Arrow Down Short Wide", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M151.6 469.6C145.5 476.2 137 480 128 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L96 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 128h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 128H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 128H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-up-across-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "border", + "crossing", + "transfer" + ] + }, + "unicode": "e4af", + "label": "Arrow Down Up Across Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M137.4 502.6c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 402.7V288H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H448V109.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L384 109.3V224H192 128 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96V402.7L86.6 361.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96zM128 192h64V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V192zM448 320H384V448c0 17.7 14.3 32 32 32s32-14.3 32-32V320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-up-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "border", + "closed", + "crossing", + "lockdown", + "quarantine", + "transfer" + ] + }, + "unicode": "e4b0", + "label": "Arrow Down Up Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M150.6 502.6l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 402.7V288H416V272c0-17.2 3.9-33.5 10.8-48H352V109.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-6-6-14.1-9.4-22.6-9.4s-16.6 3.4-22.6 9.4l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L288 109.3V224l-128 0H96l-64 0c-17.7 0-32 14.3-32 32s14.3 32 32 32H96V402.7L54.6 361.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0zM160 192V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V192h64zM288 320V448c0 17.7 14.3 32 32 32s32-14.3 32-32V320H288zm240-80c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-wide-short": { + "aliases": { + "names": [ + "sort-amount-asc", + "sort-amount-down" + ], + "unicodes": { + "secondary": [ + "10f160" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "number", + "order", + "sort-amount-asc" + ] + }, + "unicode": "f160", + "label": "Arrow Down Wide Short", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M151.6 469.6C145.5 476.2 137 480 128 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L96 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 480c-17.7 0-32-14.3-32-32s14.3-32 32-32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-down-z-a": { + "aliases": { + "names": [ + "sort-alpha-desc", + "sort-alpha-down-alt" + ], + "unicodes": { + "secondary": [ + "10f881" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-asc" + ] + }, + "unicode": "f881", + "label": "Arrow Down Z A", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M143.6 469.6C137.5 476.2 129 480 120 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L88 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM280 64c0-17.7 14.3-32 32-32H440c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9L389.3 160H440c17.7 0 32 14.3 32 32s-14.3 32-32 32H312c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9L362.7 96H312c-17.7 0-32-14.3-32-32zm96 192c12.1 0 23.2 6.8 28.6 17.7l64 128 16 32c7.9 15.8 1.5 35-14.3 42.9s-35 1.5-42.9-14.3L420.2 448H331.8l-7.2 14.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l16-32 64-128c5.4-10.8 16.5-17.7 28.6-17.7zM355.8 400h40.4L376 359.6 355.8 400z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-left": { + "aliases": { + "unicodes": { + "composite": [ + "2190" + ], + "secondary": [ + "10f060" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Leftwards Arrow", + "back", + "previous" + ] + }, + "unicode": "f060", + "label": "Arrow Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288 416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0L214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-left-long": { + "aliases": { + "names": [ + "long-arrow-left" + ], + "unicodes": { + "secondary": [ + "10f177" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "long-arrow-left", + "previous" + ] + }, + "unicode": "f177", + "label": "Arrow Left Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 288 480 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-370.7 0 73.4-73.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-128 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-pointer": { + "aliases": { + "names": [ + "mouse-pointer" + ], + "unicodes": { + "secondary": [ + "10f245" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "cursor", + "select" + ] + }, + "unicode": "f245", + "label": "Arrow Pointer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 55.2V426c0 12.2 9.9 22 22 22c6.3 0 12.4-2.7 16.6-7.5L121.2 346l58.1 116.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9L179.8 320H297.9c12.2 0 22.1-9.9 22.1-22.1c0-6.3-2.7-12.3-7.4-16.5L38.6 37.9C34.3 34.1 28.9 32 23.2 32C10.4 32 0 42.4 0 55.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right": { + "aliases": { + "unicodes": { + "composite": [ + "2192" + ], + "secondary": [ + "10f061" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rightwards Arrow", + "forward", + "next" + ] + }, + "unicode": "f061", + "label": "Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right-arrow-left": { + "aliases": { + "names": [ + "exchange" + ], + "unicodes": { + "composite": [ + "21c4" + ], + "secondary": [ + "10f0ec" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rightwards Arrow Over Leftwards Arrow", + "arrow", + "arrows", + "reciprocate", + "return", + "swap", + "transfer" + ] + }, + "unicode": "f0ec", + "label": "Arrow Right Arrow Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M438.6 150.6c12.5-12.5 12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.7 96 32 96C14.3 96 0 110.3 0 128s14.3 32 32 32l306.7 0-41.4 41.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l96-96zm-333.3 352c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 416 416 416c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0 41.4-41.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3l96 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right-from-bracket": { + "aliases": { + "names": [ + "sign-out" + ], + "unicodes": { + "secondary": [ + "10f08b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "exit", + "leave", + "log out", + "logout" + ] + }, + "unicode": "f08b", + "label": "Arrow Right From Bracket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224 192 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l210.7 0-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128zM160 96c17.7 0 32-14.3 32-32s-14.3-32-32-32L96 32C43 32 0 75 0 128L0 384c0 53 43 96 96 96l64 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-64 0c-17.7 0-32-14.3-32-32l0-256c0-17.7 14.3-32 32-32l64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right-long": { + "aliases": { + "names": [ + "long-arrow-right" + ], + "unicodes": { + "secondary": [ + "10f178" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "long-arrow-right", + "next" + ] + }, + "unicode": "f178", + "label": "Arrow Right Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l370.7 0-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right-to-bracket": { + "aliases": { + "names": [ + "sign-in" + ], + "unicodes": { + "secondary": [ + "10f090" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "enter", + "join", + "log in", + "login", + "sign in", + "sign up", + "sign-in", + "signin", + "signup" + ] + }, + "unicode": "f090", + "label": "Arrow Right To Bracket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 96l64 0c17.7 0 32 14.3 32 32l0 256c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l64 0c53 0 96-43 96-96l0-256c0-53-43-96-96-96l-64 0c-17.7 0-32 14.3-32 32s14.3 32 32 32zm-9.4 182.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L242.7 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l210.7 0-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-right-to-city": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "exodus", + "rural", + "urban" + ] + }, + "unicode": "e4b3", + "label": "Arrow Right To City", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 48c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48V192h40V120c0-13.3 10.7-24 24-24s24 10.7 24 24v72h24c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H432 336c-26.5 0-48-21.5-48-48V48zm64 32v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm16 80c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H368zM352 272v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm176-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H528zM512 368v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H528c-8.8 0-16 7.2-16 16zM166.6 153.4l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L146.7 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H146.7l-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-rotate-left": { + "aliases": { + "names": [ + "arrow-left-rotate", + "arrow-rotate-back", + "arrow-rotate-backward", + "undo" + ], + "unicodes": { + "composite": [ + "21ba" + ], + "secondary": [ + "10f0e2" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Anticlockwise Open Circle Arrow", + "back", + "control z", + "exchange", + "oops", + "return", + "rotate", + "swap" + ] + }, + "unicode": "f0e2", + "label": "Arrow Rotate Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M109.7 160H160c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V64C0 46.3 14.3 32 32 32s32 14.3 32 32v51.2L81.6 97.6c87.5-87.5 229.3-87.5 316.8 0s87.5 229.3 0 316.8s-229.3 87.5-316.8 0c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0c62.5 62.5 163.8 62.5 226.3 0s62.5-163.8 0-226.3s-163.8-62.5-226.3 0L109.7 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-rotate-right": { + "aliases": { + "names": [ + "arrow-right-rotate", + "arrow-rotate-forward", + "redo" + ], + "unicodes": { + "composite": [ + "21bb" + ], + "secondary": [ + "10f01e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Clockwise Open Circle Arrow", + "forward", + "refresh", + "reload", + "repeat" + ] + }, + "unicode": "f01e", + "label": "Arrow Rotate Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M370.3 160H320c-17.7 0-32 14.3-32 32s14.3 32 32 32H448c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v51.2L398.4 97.6c-87.5-87.5-229.3-87.5-316.8 0s-87.5 229.3 0 316.8s229.3 87.5 316.8 0c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3s163.8-62.5 226.3 0L370.3 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-trend-down": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "line", + "stocks", + "trend" + ] + }, + "unicode": "e097", + "label": "Arrow Trend Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 352c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v82.7L342.6 137.4c-12.5-12.5-32.8-12.5-45.3 0L192 242.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0L320 205.3 466.7 352H384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-trend-up": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "line", + "stocks", + "trend" + ] + }, + "unicode": "e098", + "label": "Arrow Trend Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 160c-17.7 0-32-14.3-32-32s14.3-32 32-32H544c17.7 0 32 14.3 32 32V288c0 17.7-14.3 32-32 32s-32-14.3-32-32V205.3L342.6 374.6c-12.5 12.5-32.8 12.5-45.3 0L192 269.3 54.6 406.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l160-160c12.5-12.5 32.8-12.5 45.3 0L320 306.7 466.7 160H384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-turn-down": { + "aliases": { + "names": [ + "level-down" + ], + "unicodes": { + "secondary": [ + "10f149" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow" + ] + }, + "unicode": "f149", + "label": "Arrow Turn Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 64C14.3 64 0 49.7 0 32S14.3 0 32 0l96 0c53 0 96 43 96 96l0 306.7 73.4-73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-128 128c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 402.7 160 96c0-17.7-14.3-32-32-32L32 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-turn-up": { + "aliases": { + "names": [ + "level-up" + ], + "unicodes": { + "secondary": [ + "10f148" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow" + ] + }, + "unicode": "f148", + "label": "Arrow Turn Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 448c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0c53 0 96-43 96-96l0-306.7 73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 109.3 160 416c0 17.7-14.3 32-32 32l-96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up": { + "aliases": { + "unicodes": { + "composite": [ + "2191" + ], + "secondary": [ + "10f062" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Upwards Arrow", + "forward", + "upload" + ] + }, + "unicode": "f062", + "label": "Arrow Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M214.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 141.2V448c0 17.7 14.3 32 32 32s32-14.3 32-32V141.2L329.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-1-9": { + "aliases": { + "names": [ + "sort-numeric-up" + ], + "unicodes": { + "secondary": [ + "10f163" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-desc" + ] + }, + "unicode": "f163", + "label": "Arrow Up 1 9", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M410.7 38c8.3 6 13.3 15.7 13.3 26v96h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H392 344c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V108.4l-5.9 2c-16.8 5.6-34.9-3.5-40.5-20.2s3.5-34.9 20.2-40.5l48-16c9.8-3.3 20.5-1.6 28.8 4.4zM120 32c9 0 17.5 3.8 23.6 10.4l88 96c11.9 13 11.1 33.3-2 45.2s-33.3 11.1-45.2-2L152 146.3V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V146.3L55.6 181.6c-11.9 13-32.2 13.9-45.2 2s-13.9-32.2-2-45.2l88-96C102.5 35.8 111 32 120 32zM405.7 364.9A32 32 0 1 0 378.3 307a32 32 0 1 0 27.4 57.9zm-40.7 54.9C329.6 408.4 304 375.2 304 336c0-48.6 39.4-88 88-88s88 39.4 88 88c0 23.5-7.5 46.3-21.5 65.2L409.7 467c-10.5 14.2-30.6 17.2-44.8 6.7s-17.2-30.6-6.7-44.8l6.8-9.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-9-1": { + "aliases": { + "names": [ + "sort-numeric-up-alt" + ], + "unicodes": { + "secondary": [ + "10f887" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-desc" + ] + }, + "unicode": "f887", + "label": "Arrow Up 9 1", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M120 32c9 0 17.5 3.8 23.6 10.4l88 96c11.9 13 11.1 33.3-2 45.2s-33.3 11.1-45.2-2L152 146.3V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V146.3L55.6 181.6c-11.9 13-32.2 13.9-45.2 2s-13.9-32.2-2-45.2l88-96C102.5 35.8 111 32 120 32zM410.7 294c8.3 6 13.3 15.7 13.3 26v96h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H392 344c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V364.4l-5.9 2c-16.8 5.6-34.9-3.5-40.5-20.2s3.5-34.9 20.2-40.5l48-16c9.8-3.3 20.5-1.6 28.8 4.4zm-5-145.1A32 32 0 1 0 378.3 91a32 32 0 1 0 27.4 57.9zm-40.7 54.9C329.6 192.4 304 159.2 304 120c0-48.6 39.4-88 88-88s88 39.4 88 88c0 23.5-7.5 46.3-21.5 65.2L409.7 251c-10.5 14.2-30.6 17.2-44.8 6.7s-17.2-30.6-6.7-44.8l6.8-9.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-a-z": { + "aliases": { + "names": [ + "sort-alpha-up" + ], + "unicodes": { + "secondary": [ + "10f15e" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-desc" + ] + }, + "unicode": "f15e", + "label": "Arrow Up A Z", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M143.6 42.4C137.5 35.8 129 32 120 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L88 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM280 320c0 17.7 14.3 32 32 32h50.7l-73.4 73.4c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H440c17.7 0 32-14.3 32-32s-14.3-32-32-32H389.3l73.4-73.4c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H312c-17.7 0-32 14.3-32 32zM376 32c-12.1 0-23.2 6.8-28.6 17.7l-64 128-16 32c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l7.2-14.3h88.4l7.2 14.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9l-16-32-64-128C399.2 38.8 388.1 32 376 32zM355.8 176L376 135.6 396.2 176H355.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-from-bracket": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "share", + "transfer", + "upload" + ] + }, + "unicode": "e09a", + "label": "Arrow Up From Bracket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M246.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 109.3V320c0 17.7 14.3 32 32 32s32-14.3 32-32V109.3l73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128zM64 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 53 43 96 96 96H352c53 0 96-43 96-96V352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-from-ground-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "groundwater", + "spring", + "water supply", + "water table" + ] + }, + "unicode": "e4b5", + "label": "Arrow Up From Ground Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 352c17.7 0 32-14.3 32-32V109.3l25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L256 109.3V320c0 17.7 14.3 32 32 32zm-18.5 69.9C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0zM192 192H48c-26.5 0-48 21.5-48 48V425c5.3-3.1 11.2-5.4 17.5-6.9c13.1-3.1 26.7-9.8 37.3-18.6c22.2-18.7 54.3-20.1 78.1-3.4c18 12.4 40.1 20.3 59.1 20.3V192zm384 48c0-26.5-21.5-48-48-48H384V416.5h0c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.3 78.1 3.4c10.6 8.8 24.2 15.6 37.3 18.6c6.3 1.5 12.1 3.8 17.5 6.9V240z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-from-water-pump": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flood", + "groundwater", + "pump", + "submersible", + "sump pump" + ] + }, + "unicode": "e4b6", + "label": "Arrow Up From Water Pump", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 0C85.5 0 64 21.5 64 48V256H48c-26.5 0-48 21.5-48 48v96c0 8 2 15.6 5.4 22.2c3.8-1.7 7.8-3.1 12-4.1c13.1-3.1 26.7-9.8 37.3-18.6c22.2-18.7 54.3-20.1 78.1-3.4c18 12.4 40.1 20.3 59.2 20.3c21.1 0 42-8.5 59.2-20.3c22.1-15.5 51.6-15.5 73.7 0c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.3 78.1 3.4c10.6 8.8 24.2 15.6 37.3 18.6c4.2 1 8.2 2.4 12 4.1C574 415.6 576 408 576 400V304c0-26.5-21.5-48-48-48H480l0-146.7 25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 109.3 416 256H288V48c0-26.5-21.5-48-48-48H112zM306.5 421.9c-11.1-7.9-25.9-7.9-37 0C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448c-27.5 0-55-10.6-77.5-26.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-long": { + "aliases": { + "names": [ + "long-arrow-up" + ], + "unicodes": { + "secondary": [ + "10f176" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "long-arrow-up", + "upload" + ] + }, + "unicode": "f176", + "label": "Arrow Up Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M182.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L128 109.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V109.3l73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-right-dots": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "growth", + "increase", + "population" + ] + }, + "unicode": "e4b7", + "label": "Arrow Up Right Dots", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h50.7L9.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L256 109.3V160c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H160zM576 80a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM448 208a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM400 384a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm48 80a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm128 0a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM272 384a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm48 80a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM144 512a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM576 336a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm-48-80a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-right-from-square": { + "aliases": { + "names": [ + "external-link" + ], + "unicodes": { + "secondary": [ + "10f08e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "new", + "open", + "send", + "share" + ] + }, + "unicode": "f08e", + "label": "Arrow Up Right From Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h82.7L201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3V192c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H320zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-short-wide": { + "aliases": { + "names": [ + "sort-amount-up-alt" + ], + "unicodes": { + "secondary": [ + "10f885" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "order", + "sort-amount-desc" + ] + }, + "unicode": "f885", + "label": "Arrow Up Short Wide", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M151.6 42.4C145.5 35.8 137 32 128 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L96 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H320zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H320zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H320zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-wide-short": { + "aliases": { + "names": [ + "sort-amount-up" + ], + "unicodes": { + "secondary": [ + "10f161" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "order", + "sort-amount-desc" + ] + }, + "unicode": "f161", + "label": "Arrow Up Wide Short", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M151.6 42.4C145.5 35.8 137 32 128 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L96 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 480h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32zm0-128h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32zm0-128H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32zm0-128H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrow-up-z-a": { + "aliases": { + "names": [ + "sort-alpha-up-alt" + ], + "unicodes": { + "secondary": [ + "10f882" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-desc" + ] + }, + "unicode": "f882", + "label": "Arrow Up Z A", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M143.6 42.4C137.5 35.8 129 32 120 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L88 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM280 64c0 17.7 14.3 32 32 32h50.7l-73.4 73.4c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H440c17.7 0 32-14.3 32-32s-14.3-32-32-32H389.3l73.4-73.4c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H312c-17.7 0-32 14.3-32 32zm96 192c-12.1 0-23.2 6.8-28.6 17.7l-64 128-16 32c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l7.2-14.3h88.4l7.2 14.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9l-16-32-64-128C399.2 262.8 388.1 256 376 256zM355.8 400L376 359.6 396.2 400H355.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-down-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "scale down", + "sink" + ] + }, + "unicode": "e4b8", + "label": "Arrows Down To Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M544 416L32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32l512 0c17.7 0 32-14.3 32-32s-14.3-32-32-32zm22.6-137.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L480 274.7 480 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 210.7-41.4-41.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96zm-320-45.3c-12.5-12.5-32.8-12.5-45.3 0L160 274.7 160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 210.7L54.6 233.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-down-to-people": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "focus", + "targeted" + ] + }, + "unicode": "e4b9", + "label": "Arrows Down To People", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 0c-13.3 0-24 10.7-24 24V142.1L81 119c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0l64-64c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-23 23V24c0-13.3-10.7-24-24-24zM344 200a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zM168 296a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zm312 40a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM184 441.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-36.3-67.5c1.7-1.7 3.2-3.6 4.3-5.8L248 345.5V400c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V345.5l26.9 49.9c1.2 2.2 2.6 4.1 4.3 5.8l-36.3 67.5c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L424 441.5V480c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V441.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3H470.2c-16.3 0-31.9 4.5-45.4 12.6l-33.6-62.3c-15.3-28.5-45.1-46.3-77.5-46.3H294.2c-32.4 0-62.1 17.8-77.5 46.3l-33.6 62.3c-13.5-8.1-29.1-12.6-45.4-12.6H118.2c-32.4 0-62.1 17.8-77.5 46.3L2.9 468.6c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L72 441.5V480c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V441.5zM399 153l64 64c9.4 9.4 24.6 9.4 33.9 0l64-64c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-23 23V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V142.1l-23-23c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-left-right": { + "aliases": { + "names": [ + "arrows-h" + ], + "unicodes": { + "secondary": [ + "10f07e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "expand", + "horizontal", + "landscape", + "resize", + "wide" + ] + }, + "unicode": "f07e", + "label": "Arrows Left Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M406.6 374.6l96-96c12.5-12.5 12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224l-293.5 0 41.4-41.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 288l293.5 0-41.4 41.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-left-right-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analysis", + "expand", + "gap" + ] + }, + "unicode": "e4ba", + "label": "Arrows Left Right To Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 64c17.7 0 32 14.3 32 32l0 320c0 17.7-14.3 32-32 32s-32-14.3-32-32V96C0 78.3 14.3 64 32 64zm214.6 73.4c12.5 12.5 12.5 32.8 0 45.3L205.3 224l229.5 0-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L434.7 288l-229.5 0 41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-96-96c-12.5-12.5-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0zM640 96V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V96c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-rotate": { + "aliases": { + "names": [ + "refresh", + "sync" + ], + "unicodes": { + "composite": [ + "1f5d8" + ], + "secondary": [ + "10f021" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Clockwise Right and Left Semicircle Arrows", + "exchange", + "refresh", + "reload", + "rotate", + "swap" + ] + }, + "unicode": "f021", + "label": "Arrows Rotate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M89.1 202.6c7.7-21.8 20.2-42.3 37.8-59.8c62.5-62.5 163.8-62.5 226.3 0L370.3 160H320c-17.7 0-32 14.3-32 32s14.3 32 32 32H447.5c0 0 0 0 0 0h.4c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v51.2L398.4 97.6c-87.5-87.5-229.3-87.5-316.8 0C57.2 122 39.6 150.7 28.8 181.4c-5.9 16.7 2.9 34.9 19.5 40.8s34.9-2.9 40.8-19.5zM23 289.3c-5 1.5-9.8 4.2-13.7 8.2c-4 4-6.7 8.8-8.1 14c-.3 1.2-.6 2.5-.8 3.8c-.3 1.7-.4 3.4-.4 5.1V448c0 17.7 14.3 32 32 32s32-14.3 32-32V396.9l17.6 17.5 0 0c87.5 87.4 229.3 87.4 316.7 0c24.4-24.4 42.1-53.1 52.9-83.7c5.9-16.7-2.9-34.9-19.5-40.8s-34.9 2.9-40.8 19.5c-7.7 21.8-20.2 42.3-37.8 59.8c-62.5 62.5-163.8 62.5-226.3 0l-.1-.1L109.6 352H160c17.7 0 32-14.3 32-32s-14.3-32-32-32H32.4c-1.6 0-3.2 .1-4.8 .3s-3.1 .5-4.6 1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-spin": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cycle", + "rotate", + "spin", + "whirl" + ] + }, + "unicode": "e4bb", + "label": "Arrows Spin", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 96c38.4 0 73.7 13.5 101.3 36.1l-32.6 32.6c-4.6 4.6-5.9 11.5-3.5 17.4s8.3 9.9 14.8 9.9H416c8.8 0 16-7.2 16-16V64c0-6.5-3.9-12.3-9.9-14.8s-12.9-1.1-17.4 3.5l-34 34C331.4 52.6 280.1 32 224 32c-10.9 0-21.5 .8-32 2.3V99.2c10.3-2.1 21-3.2 32-3.2zM100.1 154.7l32.6 32.6c4.6 4.6 11.5 5.9 17.4 3.5s9.9-8.3 9.9-14.8V64c0-8.8-7.2-16-16-16H32c-6.5 0-12.3 3.9-14.8 9.9s-1.1 12.9 3.5 17.4l34 34C20.6 148.6 0 199.9 0 256c0 10.9 .8 21.5 2.3 32H67.2c-2.1-10.3-3.2-21-3.2-32c0-38.4 13.5-73.7 36.1-101.3zM445.7 224H380.8c2.1 10.3 3.2 21 3.2 32c0 38.4-13.5 73.7-36.1 101.3l-32.6-32.6c-4.6-4.6-11.5-5.9-17.4-3.5s-9.9 8.3-9.9 14.8V448c0 8.8 7.2 16 16 16H416c6.5 0 12.3-3.9 14.8-9.9s1.1-12.9-3.5-17.4l-34-34C427.4 363.4 448 312.1 448 256c0-10.9-.8-21.5-2.3-32zM224 416c-38.4 0-73.7-13.5-101.3-36.1l32.6-32.6c4.6-4.6 5.9-11.5 3.5-17.4s-8.3-9.9-14.8-9.9H32c-8.8 0-16 7.2-16 16l0 112c0 6.5 3.9 12.3 9.9 14.8s12.9 1.1 17.4-3.5l34-34C116.6 459.4 167.9 480 224 480c10.9 0 21.5-.8 32-2.3V412.8c-10.3 2.1-21 3.2-32 3.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-split-up-and-left": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agile", + "split" + ] + }, + "unicode": "e4bc", + "label": "Arrows Split Up And Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M246.6 150.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L352 109.3V384c0 35.3 28.7 64 64 64h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H416c-70.7 0-128-57.3-128-128c0-35.3-28.7-64-64-64H109.3l41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-96-96c-12.5-12.5-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L109.3 256H224c23.3 0 45.2 6.2 64 17.1V109.3l-41.4 41.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-to-circle": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "center", + "concentrate", + "coordinate", + "coordination", + "focal point", + "focus" + ] + }, + "unicode": "e4bd", + "label": "Arrows To Circle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M9.4 9.4C21.9-3.1 42.1-3.1 54.6 9.4L160 114.7V96c0-17.7 14.3-32 32-32s32 14.3 32 32v96c0 4.3-.9 8.5-2.4 12.2c-1.6 3.7-3.8 7.3-6.9 10.3l-.1 .1c-3.1 3-6.6 5.3-10.3 6.9c-3.8 1.6-7.9 2.4-12.2 2.4H96c-17.7 0-32-14.3-32-32s14.3-32 32-32h18.7L9.4 54.6C-3.1 42.1-3.1 21.9 9.4 9.4zM256 256a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM114.7 352H96c-17.7 0-32-14.3-32-32s14.3-32 32-32h96 0l.1 0c8.8 0 16.7 3.6 22.5 9.3l.1 .1c3 3.1 5.3 6.6 6.9 10.3c1.6 3.8 2.4 7.9 2.4 12.2v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V397.3L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L114.7 352zM416 96c0-17.7 14.3-32 32-32s32 14.3 32 32v18.7L585.4 9.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L525.3 160H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H448c-8.8 0-16.8-3.6-22.6-9.3l-.1-.1c-3-3.1-5.3-6.6-6.9-10.3s-2.4-7.8-2.4-12.2l0-.1v0V96zM525.3 352L630.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L480 397.3V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V320v0c0 0 0-.1 0-.1c0-4.3 .9-8.4 2.4-12.2c1.6-3.8 3.9-7.3 6.9-10.4c5.8-5.8 13.7-9.3 22.5-9.4c0 0 .1 0 .1 0h0 96c17.7 0 32 14.3 32 32s-14.3 32-32 32H525.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-to-dot": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "assembly point", + "center", + "condense", + "focus", + "minimize" + ] + }, + "unicode": "e4be", + "label": "Arrows To Dot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c17.7 0 32 14.3 32 32V64h32c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-64 64c-12.5 12.5-32.8 12.5-45.3 0l-64-64c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8h32V32c0-17.7 14.3-32 32-32zM169.4 393.4l64-64c12.5-12.5 32.8-12.5 45.3 0l64 64c9.2 9.2 11.9 22.9 6.9 34.9s-16.6 19.8-29.6 19.8H288v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H192c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9zM32 224H64V192c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l64 64c12.5 12.5 12.5 32.8 0 45.3l-64 64c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm297.4 54.6c-12.5-12.5-12.5-32.8 0-45.3l64-64c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6v32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H448v32c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-64-64zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-to-eye": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "center", + "coordinated assessment", + "focus" + ] + }, + "unicode": "e4bf", + "label": "Arrows To Eye", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M7 15C16.4 5.7 31.6 5.7 41 15l63 63V40c0-13.3 10.7-24 24-24s24 10.7 24 24v96c0 13.3-10.7 24-24 24H32c-13.3 0-24-10.7-24-24s10.7-24 24-24H70.1L7 49C-2.3 39.6-2.3 24.4 7 15zM125.5 243.9C150.6 193.6 214.7 112 312 112s161.4 81.6 186.5 131.9c3.8 7.6 3.8 16.5 0 24.2C473.4 318.4 409.3 400 312 400s-161.4-81.6-186.5-131.9c-3.8-7.6-3.8-16.5 0-24.2zM312 320a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM583 15c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-63 63H592c13.3 0 24 10.7 24 24s-10.7 24-24 24H496c-13.3 0-24-10.7-24-24V40c0-13.3 10.7-24 24-24s24 10.7 24 24V78.1l63-63zM7 497c-9.4-9.4-9.4-24.6 0-33.9l63-63H32c-13.3 0-24-10.7-24-24s10.7-24 24-24h96c13.3 0 24 10.7 24 24v96c0 13.3-10.7 24-24 24s-24-10.7-24-24V433.9L41 497c-9.4 9.4-24.6 9.4-33.9 0zm576 0l-63-63V472c0 13.3-10.7 24-24 24s-24-10.7-24-24V376c0-13.3 10.7-24 24-24h96c13.3 0 24 10.7 24 24s-10.7 24-24 24H553.9l63 63c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-turn-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows" + ] + }, + "unicode": "e4c0", + "label": "Arrows Turn Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M297.4 9.4c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L338.7 160H128c-35.3 0-64 28.7-64 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V224C0 153.3 57.3 96 128 96H338.7L297.4 54.6c-12.5-12.5-12.5-32.8 0-45.3zm-96 256c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 416H96c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96H242.7l-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-turn-to-dots": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destination", + "nexus" + ] + }, + "unicode": "e4c1", + "label": "Arrows Turn To Dots", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M249.4 25.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L269.3 96 416 96c53 0 96 43 96 96v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7-14.3-32-32-32l-146.7 0 25.4 25.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-80-80c-12.5-12.5-12.5-32.8 0-45.3l80-80zm13.3 256l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 416 96 416c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96l146.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0zM384 384a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM64 192A64 64 0 1 1 64 64a64 64 0 1 1 0 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-up-down": { + "aliases": { + "names": [ + "arrows-v" + ], + "unicodes": { + "secondary": [ + "10f07d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "expand", + "portrait", + "resize", + "tall", + "vertical" + ] + }, + "unicode": "f07d", + "label": "Arrows Up Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M150.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L96 109.3V402.7L54.6 361.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 402.7V109.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-up-down-left-right": { + "aliases": { + "names": [ + "arrows" + ], + "unicodes": { + "secondary": [ + "10f047" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "bigger", + "enlarge", + "expand", + "fullscreen", + "move", + "position", + "reorder", + "resize" + ] + }, + "unicode": "f047", + "label": "Arrows Up Down Left Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M278.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l9.4-9.4V224H109.3l9.4-9.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-9.4-9.4H224V402.7l-9.4-9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-9.4 9.4V288H402.7l-9.4 9.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l9.4 9.4H288V109.3l9.4 9.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "arrows-up-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "rise", + "scale up" + ] + }, + "unicode": "e4c2", + "label": "Arrows Up To Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M32 96l512 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 32C14.3 32 0 46.3 0 64S14.3 96 32 96zM9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L96 237.3 96 448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-210.7 41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0l-96 96zm320 45.3c12.5 12.5 32.8 12.5 45.3 0L416 237.3 416 448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-210.7 41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "artstation": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f77a", + "label": "Artstation", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M2 377.4l43 74.3A51.35 51.35 0 0 0 90.9 480h285.4l-59.2-102.6zM501.8 350L335.6 59.3A51.38 51.38 0 0 0 290.2 32h-88.4l257.3 447.6 40.7-70.5c1.9-3.2 21-29.7 2-59.1zM275 304.5l-115.5-200L44 304.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "asterisk": { + "aliases": { + "unicodes": { + "composite": [ + "2731", + "f069" + ], + "primary": [ + "f069" + ], + "secondary": [ + "102a", + "10f069" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Asterisk", + "Heavy Asterisk", + "annotation", + "details", + "reference", + "star" + ] + }, + "unicode": "2a", + "label": "Asterisk", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 32c17.7 0 32 14.3 32 32V199.5l111.5-66.9c15.2-9.1 34.8-4.2 43.9 11s4.2 34.8-11 43.9L254.2 256l114.3 68.6c15.2 9.1 20.1 28.7 11 43.9s-28.7 20.1-43.9 11L224 312.5V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V312.5L48.5 379.4c-15.2 9.1-34.8 4.2-43.9-11s-4.2-34.8 11-43.9L129.8 256 15.5 187.4c-15.2-9.1-20.1-28.7-11-43.9s28.7-20.1 43.9-11L160 199.5V64c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "asymmetrik": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f372", + "label": "Asymmetrik, Ltd.", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "at": { + "aliases": { + "unicodes": { + "composite": [ + "f1fa" + ], + "primary": [ + "f1fa" + ], + "secondary": [ + "10f1fa" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Commercial At", + "address", + "author", + "e-mail", + "email", + "fluctuate", + "handle" + ] + }, + "unicode": "40", + "label": "At", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 64C150 64 64 150 64 256s86 192 192 192c17.7 0 32 14.3 32 32s-14.3 32-32 32C114.6 512 0 397.4 0 256S114.6 0 256 0S512 114.6 512 256v32c0 53-43 96-96 96c-29.3 0-55.6-13.2-73.2-33.9C320 371.1 289.5 384 256 384c-70.7 0-128-57.3-128-128s57.3-128 128-128c27.9 0 53.7 8.9 74.7 24.1c5.7-5 13.1-8.1 21.3-8.1c17.7 0 32 14.3 32 32v80 32c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-106-86-192-192-192zm64 192a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "atlassian": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f77b", + "label": "Atlassian", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M152.2 236.4c-7.7-8.2-19.7-7.7-24.8 2.8L1.6 490.2c-5 10 2.4 21.7 13.4 21.7h175c5.8.1 11-3.2 13.4-8.4 37.9-77.8 15.1-196.3-51.2-267.1zM244.4 8.1c-122.3 193.4-8.5 348.6 65 495.5 2.5 5.1 7.7 8.4 13.4 8.4H497c11.2 0 18.4-11.8 13.4-21.7 0 0-234.5-470.6-240.4-482.3-5.3-10.6-18.8-10.8-25.6.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "atom": { + "aliases": { + "unicodes": { + "composite": [ + "269b" + ], + "secondary": [ + "10f5d2" + ] + } + }, + "changes": [ + "5.2.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atheism", + "atheist", + "atom", + "atom symbol", + "chemistry", + "electron", + "ion", + "isotope", + "neutron", + "nuclear", + "proton", + "science" + ] + }, + "unicode": "f5d2", + "label": "Atom", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 398.8c-11.8 5.1-23.4 9.7-34.9 13.5c16.7 33.8 31 35.7 34.9 35.7s18.1-1.9 34.9-35.7c-11.4-3.9-23.1-8.4-34.9-13.5zM414 256c33 45.2 44.3 90.9 23.6 128c-20.2 36.3-62.5 49.3-115.2 43.2c-22 52.1-55.7 84.8-98.4 84.8s-76.4-32.7-98.4-84.8c-52.7 6.1-95-6.8-115.2-43.2C-10.3 346.9 1 301.2 34 256C1 210.8-10.3 165.1 10.4 128C30.6 91.7 72.9 78.7 125.6 84.8C147.6 32.7 181.2 0 224 0s76.4 32.7 98.4 84.8c52.7-6.1 95 6.8 115.2 43.2c20.7 37.1 9.4 82.8-23.6 128zm-65.8 67.4c-1.7 14.2-3.9 28-6.7 41.2c31.8 1.4 38.6-8.7 40.2-11.7c2.3-4.2 7-17.9-11.9-48.1c-6.8 6.3-14 12.5-21.6 18.6zm-6.7-175.9c2.8 13.1 5 26.9 6.7 41.2c7.6 6.1 14.8 12.3 21.6 18.6c18.9-30.2 14.2-44 11.9-48.1c-1.6-2.9-8.4-13-40.2-11.7zM258.9 99.7C242.1 65.9 227.9 64 224 64s-18.1 1.9-34.9 35.7c11.4 3.9 23.1 8.4 34.9 13.5c11.8-5.1 23.4-9.7 34.9-13.5zm-159 88.9c1.7-14.3 3.9-28 6.7-41.2c-31.8-1.4-38.6 8.7-40.2 11.7c-2.3 4.2-7 17.9 11.9 48.1c6.8-6.3 14-12.5 21.6-18.6zM78.2 304.8C59.4 335 64 348.7 66.3 352.9c1.6 2.9 8.4 13 40.2 11.7c-2.8-13.1-5-26.9-6.7-41.2c-7.6-6.1-14.8-12.3-21.6-18.6zM304 256a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zm-80-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "audible": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f373", + "label": "Audible", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "audio-description": { + "aliases": { + "unicodes": { + "secondary": [ + "10f29e" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "narration", + "video", + "visual" + ] + }, + "unicode": "f29e", + "label": "Audio Description", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM213.5 173.3l72 144c5.9 11.9 1.1 26.3-10.7 32.2s-26.3 1.1-32.2-10.7l-9.4-18.9H150.9l-9.4 18.9c-5.9 11.9-20.3 16.7-32.2 10.7s-16.7-20.3-10.7-32.2l72-144c4.1-8.1 12.4-13.3 21.5-13.3s17.4 5.1 21.5 13.3zm-.4 106.6L192 237.7l-21.1 42.2h42.2zM304 184c0-13.3 10.7-24 24-24h56c53 0 96 43 96 96s-43 96-96 96H328c-13.3 0-24-10.7-24-24V184zm48 24v96h32c26.5 0 48-21.5 48-48s-21.5-48-48-48H352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "austral-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Austral Sign", + "currency" + ] + }, + "unicode": "e0a9", + "label": "Austral Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M253.5 51.7C248.6 39.8 236.9 32 224 32s-24.6 7.8-29.5 19.7L122.7 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H96L82.7 320H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H56L34.5 435.7c-6.8 16.3 .9 35 17.2 41.8s35-.9 41.8-17.2L125.3 384H322.7l31.8 76.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8L392 384h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H365.3L352 288h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H325.3L253.5 51.7zM256 224H192l32-76.8L256 224zm-90.7 64H282.7L296 320H152l13.3-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "autoprefixer": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41c", + "label": "Autoprefixer", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "avianex": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f374", + "label": "avianex", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "aviato": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f421", + "label": "Aviato", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "award": { + "aliases": { + "unicodes": { + "secondary": [ + "10f559" + ] + } + }, + "changes": [ + "5.1.0", + "5.2.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "honor", + "praise", + "prize", + "recognition", + "ribbon", + "trophy" + ] + }, + "unicode": "f559", + "label": "Award", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M173.8 5.5c11-7.3 25.4-7.3 36.4 0L228 17.2c6 3.9 13 5.8 20.1 5.4l21.3-1.3c13.2-.8 25.6 6.4 31.5 18.2l9.6 19.1c3.2 6.4 8.4 11.5 14.7 14.7L344.5 83c11.8 5.9 19 18.3 18.2 31.5l-1.3 21.3c-.4 7.1 1.5 14.2 5.4 20.1l11.8 17.8c7.3 11 7.3 25.4 0 36.4L366.8 228c-3.9 6-5.8 13-5.4 20.1l1.3 21.3c.8 13.2-6.4 25.6-18.2 31.5l-19.1 9.6c-6.4 3.2-11.5 8.4-14.7 14.7L301 344.5c-5.9 11.8-18.3 19-31.5 18.2l-21.3-1.3c-7.1-.4-14.2 1.5-20.1 5.4l-17.8 11.8c-11 7.3-25.4 7.3-36.4 0L156 366.8c-6-3.9-13-5.8-20.1-5.4l-21.3 1.3c-13.2 .8-25.6-6.4-31.5-18.2l-9.6-19.1c-3.2-6.4-8.4-11.5-14.7-14.7L39.5 301c-11.8-5.9-19-18.3-18.2-31.5l1.3-21.3c.4-7.1-1.5-14.2-5.4-20.1L5.5 210.2c-7.3-11-7.3-25.4 0-36.4L17.2 156c3.9-6 5.8-13 5.4-20.1l-1.3-21.3c-.8-13.2 6.4-25.6 18.2-31.5l19.1-9.6C65 70.2 70.2 65 73.4 58.6L83 39.5c5.9-11.8 18.3-19 31.5-18.2l21.3 1.3c7.1 .4 14.2-1.5 20.1-5.4L173.8 5.5zM272 192a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM1.3 441.8L44.4 339.3c.2 .1 .3 .2 .4 .4l9.6 19.1c11.7 23.2 36 37.3 62 35.8l21.3-1.3c.2 0 .5 0 .7 .2l17.8 11.8c5.1 3.3 10.5 5.9 16.1 7.7l-37.6 89.3c-2.3 5.5-7.4 9.2-13.3 9.7s-11.6-2.2-14.8-7.2L74.4 455.5l-56.1 8.3c-5.7 .8-11.4-1.5-15-6s-4.3-10.7-2.1-16zm248 60.4L211.7 413c5.6-1.8 11-4.3 16.1-7.7l17.8-11.8c.2-.1 .4-.2 .7-.2l21.3 1.3c26 1.5 50.3-12.6 62-35.8l9.6-19.1c.1-.2 .2-.3 .4-.4l43.2 102.5c2.2 5.3 1.4 11.4-2.1 16s-9.3 6.9-15 6l-56.1-8.3-32.2 49.2c-3.2 5-8.9 7.7-14.8 7.2s-11-4.3-13.3-9.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "aws": { + "changes": [ + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f375", + "label": "Amazon Web Services (AWS)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "b": { + "aliases": { + "unicodes": { + "composite": [ + "62" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter B", + "Latin Small Letter B", + "letter" + ] + }, + "unicode": "42", + "label": "B", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V256 416c0 35.3 28.7 64 64 64H192c70.7 0 128-57.3 128-128c0-46.5-24.8-87.3-62-109.7c18.7-22.3 30-51 30-82.3c0-70.7-57.3-128-128-128H64zm96 192H64V96h96c35.3 0 64 28.7 64 64s-28.7 64-64 64zM64 288h96 32c35.3 0 64 28.7 64 64s-28.7 64-64 64H64V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "baby": { + "aliases": { + "unicodes": { + "secondary": [ + "10f77c" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f77c", + "label": "Baby", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M120 88a72 72 0 1 1 144 0A72 72 0 1 1 120 88zM7.7 144.5c13-17.9 38-21.8 55.9-8.8L99.8 162c26.8 19.5 59.1 30 92.2 30s65.4-10.5 92.2-30l36.2-26.4c17.9-13 42.9-9 55.9 8.8s9 42.9-8.8 55.9l-36.2 26.4c-13.6 9.9-28.1 18.2-43.3 25V288H96V251.7c-15.2-6.7-29.7-15.1-43.3-25L16.5 200.3c-17.9-13-21.8-38-8.8-55.9zM97.5 329.3l60.6 53-26 37.2 24.3 24.3c15.6 15.6 15.6 40.9 0 56.6s-40.9 15.6-56.6 0l-48-48C38 438.6 36.1 417 47.2 401.1l50.2-71.8zm128.5 53l60.6-53 50.2 71.8c11.1 15.9 9.2 37.5-4.5 51.2l-48 48c-15.6 15.6-40.9 15.6-56.6 0s-15.6-40.9 0-56.6L252 419.4l-26-37.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "baby-carriage": { + "aliases": { + "names": [ + "carriage-baby" + ], + "unicodes": { + "secondary": [ + "10f77d" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buggy", + "carrier", + "infant", + "push", + "stroller", + "transportation", + "walk", + "wheels" + ] + }, + "unicode": "f77d", + "label": "Baby Carriage", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 192H.1C2.7 117.9 41.3 52.9 99 14.1c13.3-8.9 30.8-4.3 39.9 8.8L256 192zm128-32c0-35.3 28.7-64 64-64h32c17.7 0 32 14.3 32 32s-14.3 32-32 32l-32 0v64c0 25.2-5.8 50.2-17 73.5s-27.8 44.5-48.6 62.3s-45.5 32-72.7 41.6S253.4 416 224 416s-58.5-5-85.7-14.6s-51.9-23.8-72.7-41.6s-37.3-39-48.6-62.3S0 249.2 0 224l224 0 160 0V160zM80 416a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm240 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "backward": { + "aliases": { + "unicodes": { + "composite": [ + "23ea" + ], + "secondary": [ + "10f04a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "double", + "fast reverse button", + "previous", + "rewind" + ] + }, + "unicode": "f04a", + "label": "Backward", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M459.5 440.6c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4L288 214.3V256v41.7L459.5 440.6zM256 352V256 128 96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4l-192 160C4.2 237.5 0 246.5 0 256s4.2 18.5 11.5 24.6l192 160c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "backward-fast": { + "aliases": { + "names": [ + "fast-backward" + ], + "unicodes": { + "composite": [ + "23ee" + ], + "secondary": [ + "10f049" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "beginning", + "first", + "last track button", + "previous", + "previous scene", + "previous track", + "rewind", + "start", + "triangle" + ] + }, + "unicode": "f049", + "label": "Backward Fast", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M493.6 445c-11.2 5.3-24.5 3.6-34.1-4.4L288 297.7V416c0 12.4-7.2 23.7-18.4 29s-24.5 3.6-34.1-4.4L64 297.7V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V96C0 78.3 14.3 64 32 64s32 14.3 32 32V214.3L235.5 71.4c9.5-7.9 22.8-9.7 34.1-4.4S288 83.6 288 96V214.3L459.5 71.4c9.5-7.9 22.8-9.7 34.1-4.4S512 83.6 512 96V416c0 12.4-7.2 23.7-18.4 29z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "backward-step": { + "aliases": { + "names": [ + "step-backward" + ], + "unicodes": { + "secondary": [ + "10f048" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beginning", + "first", + "previous", + "rewind", + "start" + ] + }, + "unicode": "f048", + "label": "Backward Step", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M267.5 440.6c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4l-192 160L64 241V96c0-17.7-14.3-32-32-32S0 78.3 0 96V416c0 17.7 14.3 32 32 32s32-14.3 32-32V271l11.5 9.6 192 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bacon": { + "aliases": { + "unicodes": { + "composite": [ + "1f953" + ], + "secondary": [ + "10f7e5" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bacon", + "blt", + "breakfast", + "food", + "ham", + "lard", + "meat", + "pancetta", + "pork", + "rasher" + ] + }, + "unicode": "f7e5", + "label": "Bacon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M439.2 1.2c11.2-3.2 23.2-.1 31.4 8.1L518 56.7l-26.5 7.9c-58 16.6-98.1 39.6-129.6 67.4c-31.2 27.5-53.2 59.1-75.1 90.9l-2.3 3.3C241.6 288.7 195 356.6 72.8 417.7L37.9 435.2 9.4 406.6c-7.3-7.3-10.6-17.6-9-27.8s8.1-18.9 17.3-23.5C136.1 296.2 180.9 231 223.3 169.3l2.3-3.4c21.8-31.8 44.9-64.9 77.7-93.9c33.4-29.5 75.8-53.6 135.9-70.8zM61.8 459l25.4-12.7c129.5-64.7 179.9-138.1 223.8-202l2.2-3.3c22.1-32.1 42.1-60.5 69.9-85.1c27.5-24.3 63.4-45.2 117.3-60.6l0 0 .2-.1 43.1-12.9 23 23c8 8 11.2 19.7 8.3 30.7s-11.3 19.6-22.2 22.7c-51.9 14.8-85.6 34.7-111.1 57.2c-26.1 23-45.1 49.9-67.3 82.1l-2.2 3.2C327.8 365.9 275.5 442 142.3 508.6c-12.3 6.2-27.2 3.7-36.9-6L61.8 459z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bacteria": { + "aliases": { + "unicodes": { + "secondary": [ + "10e059" + ] + } + }, + "changes": [ + "5.13.0", + "5.13.1", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antibiotic", + "antibody", + "covid-19", + "health", + "organism", + "sick" + ] + }, + "unicode": "e059", + "label": "Bacteria", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M304.9 .7c-9.6-2.7-19.5 2.8-22.3 12.4l-3.1 11c-7.4-.3-14.9 .4-22.4 2.1c-9 2.1-17.8 4.4-26.2 7l-4.4-10.3c-3.9-9.1-14.5-13.4-23.6-9.5s-13.4 14.5-9.5 23.6l3.6 8.5c-16.5 7.1-31.5 15.1-45.2 23.9L147 62c-5.5-8.3-16.7-10.5-25-5s-10.5 16.7-5 25l5.8 8.7c-13.5 11.2-25.3 23.1-35.5 35.3l-10.1-8.1c-7.8-6.2-19.1-5-25.3 2.8s-5 19.1 2.8 25.3L66 155c-1.6 2.4-3.1 4.8-4.5 7.3c-7.1 11.8-12.8 23.2-17.4 34l-7.4-3c-9.2-3.7-19.7 .8-23.4 10s.8 19.7 10 23.4l8.7 3.5c-.2 .8-.4 1.6-.7 2.3c-2.6 9.4-4.2 17.4-5.3 23.5c-.5 3.1-.9 5.7-1.2 7.7c-.1 1-.2 2-.3 2.7l-.1 1.1 0 .5 0 .2 0 .1c0 0 0 .1 29.4 2.8l0 0-29.4-2.7c-.3 3.8-.4 7.5-.3 11.2l-11 3.1C3.5 285.4-2 295.4 .7 304.9s12.7 15.1 22.3 12.4l10.3-2.9c8 15.5 20.7 28.3 36.4 36.4L66.7 361c-2.7 9.6 2.8 19.5 12.4 22.3s19.5-2.8 22.3-12.4l3.1-11c17.8 .8 34.7-4.1 48.8-13.2l8 8c7 7 18.4 7 25.5 0s7-18.4 0-25.5l-8-8c6.8-10.6 11.3-22.9 12.7-36.2l.1-.6c.2-1.3 .7-3.8 1.7-7.4l.2-.6 9.4 4c9.1 3.9 19.7-.3 23.6-9.5s-.3-19.7-9.5-23.6l-8.5-3.6c7.5-11.1 18.7-23.7 36.5-34.5l1.6 5.6c2.7 9.6 12.7 15.1 22.3 12.4s15.1-12.7 12.4-22.3l-3-10.6c5.2-1.7 10.7-3.2 16.6-4.6c9.7-2.2 18.5-6 26.4-11.1l8 8c7 7 18.4 7 25.5 0s7-18.4 0-25.5l-8-8c9.1-14.3 14-31.2 13.2-48.8l11-3.1c9.6-2.7 15.1-12.7 12.4-22.3S370.6 64 361 66.7l-10.3 2.9c-8.1-15.9-21-28.5-36.4-36.4l2.9-10.3c2.7-9.6-2.8-19.5-12.4-22.3zM106.2 275.8l-37.1-3.4 0 0 37.1 3.4zM128 192a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm64-48a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM322.7 489c-2.7 9.6 2.8 19.5 12.4 22.3s19.5-2.8 22.2-12.4l3.1-11c7.4 .3 14.9-.4 22.4-2.1c9-2.1 17.8-4.4 26.2-7l4.4 10.3c3.9 9.1 14.5 13.4 23.6 9.5s13.4-14.5 9.5-23.6l-3.6-8.5c16.5-7.1 31.5-15.1 45.2-23.9L493 450c5.5 8.3 16.7 10.5 25 5s10.5-16.7 5-25l-5.8-8.7c13.5-11.2 25.3-23.1 35.5-35.3l10.1 8.1c7.8 6.2 19.1 5 25.3-2.8s5-19.1-2.8-25.3L574 357c1.6-2.4 3.1-4.8 4.5-7.3c7.1-11.8 12.8-23.2 17.4-34l7.4 3c9.2 3.7 19.7-.8 23.4-10s-.8-19.7-10-23.4l-8.7-3.5c.2-.8 .4-1.6 .7-2.3c2.6-9.4 4.2-17.4 5.3-23.5c.5-3.1 .9-5.7 1.2-7.7c.1-1 .2-2 .3-2.7l.1-1.1 0-.5 0-.2 0-.1c0 0 0-.1-29.4-2.8l0 0 29.4 2.7c.3-3.8 .4-7.5 .3-11.2l11-3.1c9.6-2.7 15.1-12.7 12.4-22.3s-12.7-15.1-22.3-12.4l-10.3 2.9c-8-15.5-20.7-28.3-36.4-36.4l2.9-10.3c2.7-9.6-2.8-19.5-12.4-22.3s-19.5 2.8-22.2 12.4l-3.1 11c-17.8-.8-34.7 4.1-48.8 13.2l-8-8c-7-7-18.4-7-25.5 0s-7 18.4 0 25.5l8 8c-6.8 10.6-11.3 22.9-12.7 36.2l-.1 .6c-.2 1.3-.7 3.8-1.7 7.4l-.2 .6-9.4-4c-9.1-3.9-19.7 .3-23.6 9.5s.3 19.7 9.5 23.6l8.5 3.6c-7.5 11.1-18.7 23.7-36.5 34.5l-1.6-5.6c-2.7-9.6-12.7-15.1-22.3-12.4s-15.1 12.7-12.4 22.3l3 10.6c-5.2 1.7-10.7 3.2-16.6 4.6c-9.7 2.2-18.5 6-26.4 11.1l-8-8c-7-7-18.4-7-25.5 0s-7 18.4 0 25.5l8 8c-9.1 14.2-14 31.2-13.2 48.8l-11 3.1c-9.6 2.7-15.1 12.7-12.4 22.2s12.7 15.1 22.3 12.4l10.3-2.9c8.1 15.9 21 28.5 36.4 36.4l-3 10.3zM570.9 239.5l0 0-37.1-3.4 37.1 3.4zM448 384a32 32 0 1 1 -64 0 32 32 0 1 1 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bacterium": { + "aliases": { + "unicodes": { + "secondary": [ + "10e05a" + ] + } + }, + "changes": [ + "5.13.0", + "5.13.1", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antibiotic", + "antibody", + "covid-19", + "health", + "organism", + "sick" + ] + }, + "unicode": "e05a", + "label": "Bacterium", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M423.1 30.6c3.6-12.7-3.7-26-16.5-29.7s-26 3.7-29.7 16.5l-4.2 14.7c-9.8-.4-19.9 .5-29.9 2.8c-12.1 2.8-23.7 5.9-34.9 9.4l-5.9-13.7c-5.2-12.2-19.3-17.8-31.5-12.6s-17.8 19.3-12.6 31.5l4.9 11.3c-22 9.4-42 20.1-60.2 31.8L196 82.7c-7.4-11-22.3-14-33.3-6.7s-14 22.3-6.7 33.3l7.8 11.6c-18 15-33.7 30.8-47.3 47.1L103 157.3c-10.4-8.3-25.5-6.6-33.7 3.7s-6.6 25.5 3.7 33.7l15 12c-2.1 3.2-4.1 6.5-6 9.7c-9.4 15.7-17 31-23.2 45.3l-9.9-3.9c-12.3-4.9-26.3 1.1-31.2 13.4s1.1 26.3 13.4 31.2l11.6 4.6c-.3 1.1-.6 2.1-.9 3.1c-3.5 12.5-5.7 23.2-7.1 31.3c-.7 4.1-1.2 7.5-1.6 10.3c-.2 1.4-.3 2.6-.4 3.6l-.1 1.4-.1 .6 0 .3 0 .1c0 0 0 .1 39.2 3.7l0 0-39.2-3.6c-.5 5-.6 10-.4 14.9l-14.7 4.2C4.7 380.6-2.7 393.8 .9 406.6s16.9 20.1 29.7 16.5l13.8-3.9c10.6 20.7 27.6 37.8 48.5 48.5l-3.9 13.7c-3.6 12.7 3.7 26 16.5 29.7s26-3.7 29.7-16.5l4.2-14.7c23.8 1 46.3-5.5 65.1-17.6L215 473c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-10.6-10.6c9.1-14.1 15.1-30.5 17-48.3l.1-.8c.3-1.7 1-5.1 2.3-9.8l.2-.8 12.6 5.4c12.2 5.2 26.3-.4 31.5-12.6s-.4-26.3-12.6-31.5l-11.3-4.8c9.9-14.9 24.9-31.6 48.6-46l2.1 7.5c3.6 12.7 16.9 20.1 29.7 16.5s20.1-16.9 16.5-29.7L371 259.2c6.9-2.2 14.3-4.3 22.2-6.1c12.9-3 24.7-8 35.2-14.8L439 249c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-10.6-10.6c12.2-19 18.6-41.6 17.6-65.1l14.7-4.2c12.7-3.6 20.1-16.9 16.5-29.7s-16.9-20.1-29.7-16.5l-13.7 3.9c-10.8-21.2-28-38-48.5-48.5l3.9-13.8zM92.1 363.3l0 0L144 368l-51.9-4.7zM112 320a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM240 184a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bag-shopping": { + "aliases": { + "names": [ + "shopping-bag" + ], + "unicodes": { + "secondary": [ + "10f290" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "checkout", + "grocery", + "payment", + "purchase" + ] + }, + "unicode": "f290", + "label": "Bag Shopping", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 112c0-35.3 28.7-64 64-64s64 28.7 64 64v48H160V112zm-48 48H48c-26.5 0-48 21.5-48 48V416c0 53 43 96 96 96H352c53 0 96-43 96-96V208c0-26.5-21.5-48-48-48H336V112C336 50.1 285.9 0 224 0S112 50.1 112 112v48zm24 48a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm152 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bahai": { + "aliases": { + "names": [ + "haykal" + ], + "unicodes": { + "secondary": [ + "10f666" + ] + } + }, + "changes": [ + "5.3.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bahai", + "bahá'í", + "star" + ] + }, + "unicode": "f666", + "label": "Bahai", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M245.2 0c13.6 0 25.6 9.2 29.1 22.4l22.5 84.4 71.5-50.2c11.2-7.8 26.2-7.2 36.7 1.6s13.7 23.5 7.9 35.8l-37 79.1 87 7.5c13.6 1.2 24.7 11.3 27.1 24.8s-4.6 26.8-17 32.5l-79.2 36.8 61.8 61.7c9.7 9.6 11.6 24.6 4.8 36.4s-20.7 17.6-33.9 14L342.1 364l7.7 87c1.2 13.6-6.9 26.3-19.7 31s-27.2 .1-35-11.1l-50-71.6-50 71.6c-7.8 11.2-22.2 15.7-35 11.1s-20.9-17.4-19.7-31l7.7-87L63.9 386.7c-13.2 3.5-27.1-2.2-33.9-14s-4.8-26.7 4.8-36.4l61.8-61.7L17.4 237.9c-12.4-5.8-19.3-19.1-17-32.5s13.5-23.6 27.1-24.8l87-7.5L77.5 94C71.8 81.6 75 66.9 85.5 58.1s25.5-9.4 36.7-1.6l71.5 50.2 22.5-84.4C219.6 9.2 231.5 0 245.2 0zm0 147l-4.5 16.9c-2.5 9.5-9.6 17.2-18.8 20.5s-19.6 2-27.6-3.7l-14.3-10 7.4 15.8c4.2 8.9 3.7 19.3-1.2 27.8s-13.7 14.1-23.5 14.9l-17.4 1.5 15.9 7.4c8.9 4.1 15.3 12.4 17 22.1s-1.4 19.6-8.4 26.6l-12.4 12.4 16.9-4.5c9.5-2.6 19.7-.3 27.2 6s11.5 15.9 10.6 25.7l-1.5 17.4 10-14.3c5.6-8.1 14.9-12.9 24.7-12.9s19.1 4.8 24.7 12.9l10 14.3-1.5-17.4c-.9-9.8 3.1-19.4 10.6-25.7s17.7-8.6 27.2-6l16.9 4.5-12.4-12.4c-7-6.9-10.1-16.9-8.4-26.6s8-17.9 17-22.1l15.9-7.4-17.4-1.5c-9.8-.8-18.6-6.4-23.5-14.9s-5.4-18.9-1.2-27.8l7.4-15.8-14.3 10c-8.1 5.7-18.4 7-27.6 3.7s-16.3-11-18.8-20.5L245.2 147z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "baht-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency" + ] + }, + "unicode": "e0ac", + "label": "Baht Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M144 0c-17.7 0-32 14.3-32 32V64H37.6C16.8 64 0 80.8 0 101.6V224v41.7V288 406.3c0 23 18.7 41.7 41.7 41.7H112v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c61.9 0 112-50.1 112-112c0-40.1-21.1-75.3-52.7-95.1C280.3 222.6 288 200.2 288 176c0-61.9-50.1-112-112-112V32c0-17.7-14.3-32-32-32zM112 128v96H64V128h48zm64 96V128c26.5 0 48 21.5 48 48s-21.5 48-48 48zm-64 64v96H64V288h48zm64 96V288h32c26.5 0 48 21.5 48 48s-21.5 48-48 48H176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ban": { + "aliases": { + "names": [ + "cancel" + ], + "unicodes": { + "composite": [ + "1f6ab" + ], + "secondary": [ + "10f05e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abort", + "ban", + "block", + "cancel", + "delete", + "entry", + "forbidden", + "hide", + "no", + "not", + "prohibit", + "prohibited", + "remove", + "stop", + "trash" + ] + }, + "unicode": "f05e", + "label": "Ban", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M367.2 412.5L99.5 144.8C77.1 176.1 64 214.5 64 256c0 106 86 192 192 192c41.5 0 79.9-13.1 111.2-35.5zm45.3-45.3C434.9 335.9 448 297.5 448 256c0-106-86-192-192-192c-41.5 0-79.9 13.1-111.2 35.5L412.5 367.2zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ban-smoking": { + "aliases": { + "names": [ + "smoking-ban" + ], + "unicodes": { + "composite": [ + "1f6ad" + ], + "secondary": [ + "10f54d" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ban", + "cancel", + "forbidden", + "no", + "no smoking", + "non-smoking", + "not", + "prohibited", + "smoking" + ] + }, + "unicode": "f54d", + "label": "Ban Smoking", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M99.5 144.8L178.7 224l96 96 92.5 92.5C335.9 434.9 297.5 448 256 448C150 448 64 362 64 256c0-41.5 13.1-79.9 35.5-111.2zM333.3 288l-32-32H384v32H333.3zm32 32H400c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H269.3L144.8 99.5C176.1 77.1 214.5 64 256 64c106 0 192 86 192 192c0 41.5-13.1 79.9-35.5 111.2L365.3 320zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM272 96c-8.8 0-16 7.2-16 16c0 26.5 21.5 48 48 48h32c8.8 0 16 7.2 16 16s7.2 16 16 16s16-7.2 16-16c0-26.5-21.5-48-48-48H304c-8.8 0-16-7.2-16-16s-7.2-16-16-16zM229.5 320l-96-96H112c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16H229.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bandage": { + "aliases": { + "names": [ + "band-aid" + ], + "unicodes": { + "composite": [ + "1fa79" + ], + "secondary": [ + "10f462" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "adhesive bandage", + "bandage", + "boo boo", + "first aid", + "ouch" + ] + }, + "unicode": "f462", + "label": "Bandage", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 416h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H480V416zM448 96H192V416H448V96zM64 96C28.7 96 0 124.7 0 160V352c0 35.3 28.7 64 64 64h96V96H64zM248 208a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm120-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM248 304a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm120-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bandcamp": { + "changes": [ + "4.7.0", + "5.0.0", + "5.13.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2d5", + "label": "Bandcamp", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8Zm48.2,326.1h-181L207.9,178h181Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bangladeshi-taka-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bdt", + "currency", + "tk" + ] + }, + "unicode": "e2e6", + "label": "Bangladeshi Taka Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M36 32.2C18.4 30.1 2.4 42.5 .2 60S10.5 93.6 28 95.8l7.9 1c16 2 28 15.6 28 31.8V160H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64V384c0 53 43 96 96 96h32c106 0 192-86 192-192V256c0-53-43-96-96-96H272c-17.7 0-32 14.3-32 32s14.3 32 32 32h16c17.7 0 32 14.3 32 32v32c0 70.7-57.3 128-128 128H160c-17.7 0-32-14.3-32-32V224h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V128.5c0-48.4-36.1-89.3-84.1-95.3l-7.9-1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "barcode": { + "aliases": { + "unicodes": { + "secondary": [ + "10f02a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "info", + "laser", + "price", + "scan", + "upc" + ] + }, + "unicode": "f02a", + "label": "Barcode", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M24 32C10.7 32 0 42.7 0 56V456c0 13.3 10.7 24 24 24H40c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H24zm88 0c-8.8 0-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V48c0-8.8-7.2-16-16-16zm72 0c-13.3 0-24 10.7-24 24V456c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H184zm96 0c-13.3 0-24 10.7-24 24V456c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H280zM448 56V456c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H472c-13.3 0-24 10.7-24 24zm-64-8V464c0 8.8 7.2 16 16 16s16-7.2 16-16V48c0-8.8-7.2-16-16-16s-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bars": { + "aliases": { + "names": [ + "navicon" + ], + "unicodes": { + "secondary": [ + "10f0c9" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "drag", + "hamburger", + "list", + "menu", + "nav", + "navigation", + "ol", + "reorder", + "settings", + "todo", + "ul" + ] + }, + "unicode": "f0c9", + "label": "Bars", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bars-progress": { + "aliases": { + "names": [ + "tasks-alt" + ], + "unicodes": { + "secondary": [ + "10f828" + ] + } + }, + "changes": [ + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "downloading", + "downloads", + "loading", + "poll", + "progress", + "project management", + "settings", + "to do" + ] + }, + "unicode": "f828", + "label": "Bars Progress", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 160H320V128H448v32zM48 64C21.5 64 0 85.5 0 112v64c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H48zM448 352v32H192V352H448zM48 288c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V336c0-26.5-21.5-48-48-48H48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bars-staggered": { + "aliases": { + "names": [ + "reorder", + "stream" + ], + "unicodes": { + "secondary": [ + "10f550" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flow", + "list", + "timeline" + ] + }, + "unicode": "f550", + "label": "Bars Staggered", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM64 256c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "baseball": { + "aliases": { + "names": [ + "baseball-ball" + ], + "unicodes": { + "composite": [ + "1f94e", + "26be" + ], + "secondary": [ + "10f433" + ] + } + }, + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "baseball", + "foul", + "glove", + "hardball", + "league", + "leather", + "mlb", + "softball", + "sport", + "underarm" + ] + }, + "unicode": "f433", + "label": "Baseball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321784, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M62.7 223.4c-4.8 .4-9.7 .6-14.7 .6c-15.6 0-30.8-2-45.2-5.9C19.2 107.1 107.1 19.2 218.1 2.8C222 17.2 224 32.4 224 48c0 4.9-.2 9.8-.6 14.7c-.7 8.8 5.8 16.5 14.6 17.3s16.5-5.8 17.3-14.6c.5-5.7 .7-11.5 .7-17.3c0-16.5-1.9-32.6-5.6-47.9c1.8 0 3.7-.1 5.6-.1C397.4 0 512 114.6 512 256c0 1.9 0 3.7-.1 5.6c-15.4-3.6-31.4-5.6-47.9-5.6c-5.8 0-11.6 .2-17.3 .7c-8.8 .7-15.4 8.5-14.6 17.3s8.5 15.4 17.3 14.6c4.8-.4 9.7-.6 14.7-.6c15.6 0 30.8 2 45.2 5.9C492.8 404.9 404.9 492.8 293.9 509.2C290 494.8 288 479.6 288 464c0-4.9 .2-9.8 .6-14.7c.7-8.8-5.8-16.5-14.6-17.3s-16.5 5.8-17.3 14.6c-.5 5.7-.7 11.5-.7 17.3c0 16.5 1.9 32.6 5.6 47.9c-1.8 0-3.7 .1-5.6 .1C114.6 512 0 397.4 0 256c0-1.9 0-3.7 .1-5.6C15.4 254.1 31.5 256 48 256c5.8 0 11.6-.2 17.3-.7c8.8-.7 15.4-8.5 14.6-17.3s-8.5-15.4-17.3-14.6zM121.3 208c-8 3.7-11.6 13.2-7.9 21.2s13.2 11.6 21.2 7.9c45.2-20.8 81.7-57.2 102.5-102.5c3.7-8 .2-17.5-7.9-21.2s-17.5-.2-21.2 7.9c-17.6 38.3-48.5 69.2-86.7 86.7zm277.2 74.7c-3.7-8-13.2-11.6-21.2-7.9c-45.2 20.8-81.7 57.2-102.5 102.5c-3.7 8-.2 17.5 7.9 21.2s17.5 .2 21.2-7.9c17.6-38.3 48.5-69.2 86.7-86.7c8-3.7 11.6-13.2 7.9-21.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "baseball-bat-ball": { + "aliases": { + "unicodes": { + "secondary": [ + "10f432" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bat", + "league", + "mlb", + "slugger", + "softball", + "sport" + ] + }, + "unicode": "f432", + "label": "Baseball Bat Ball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M424 0c-12.4 0-24.2 4.9-33 13.7L233.5 171.2c-10.5 10.5-19.8 22.1-27.7 34.6L132.7 321.6c-7.3 11.5-15.8 22.2-25.5 31.9L69.9 390.7l51.3 51.3 37.3-37.3c9.6-9.6 20.3-18.2 31.9-25.5l115.8-73.1c12.5-7.9 24.1-17.2 34.6-27.7L498.3 121c8.7-8.7 13.7-20.6 13.7-33s-4.9-24.2-13.7-33L457 13.7C448.2 4.9 436.4 0 424 0zm88 432a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM15 399c-9.4 9.4-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L49 399c-9.4-9.4-24.6-9.4-33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "basket-shopping": { + "aliases": { + "names": [ + "shopping-basket" + ], + "unicodes": { + "secondary": [ + "10f291" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "checkout", + "grocery", + "payment", + "purchase" + ] + }, + "unicode": "f291", + "label": "Basket Shopping", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M253.3 35.1c6.1-11.8 1.5-26.3-10.2-32.4s-26.3-1.5-32.4 10.2L117.6 192H32c-17.7 0-32 14.3-32 32s14.3 32 32 32L83.9 463.5C91 492 116.6 512 146 512H430c29.4 0 55-20 62.1-48.5L544 256c17.7 0 32-14.3 32-32s-14.3-32-32-32H458.4L365.3 12.9C359.2 1.2 344.7-3.4 332.9 2.7s-16.3 20.6-10.2 32.4L404.3 192H171.7L253.3 35.1zM192 304v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V304c0-8.8 7.2-16 16-16s16 7.2 16 16zm96-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V304c0-8.8 7.2-16 16-16zm128 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V304c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "basketball": { + "aliases": { + "names": [ + "basketball-ball" + ], + "unicodes": { + "composite": [ + "1f3c0" + ], + "secondary": [ + "10f434" + ] + } + }, + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "basketball", + "dribble", + "dunk", + "hoop", + "nba" + ] + }, + "unicode": "f434", + "label": "Basketball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321784, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M86.6 64C119 35.5 158.6 15 202.3 5.6C206 19.1 208 33.3 208 48c0 38.4-13.5 73.7-36.1 101.3L86.6 64zM64 86.6l85.2 85.2C121.7 194.5 86.4 208 48 208c-14.7 0-28.9-2-42.4-5.7C15 158.6 35.5 119 64 86.6zM256 0c64.9 0 124.2 24.2 169.4 64L256 233.4 194.6 172C222.9 138.5 240 95.3 240 48c0-16.2-2-32-5.8-47.1C241.4 .3 248.7 0 256 0zM48 240c47.3 0 90.5-17.1 124-45.4L233.4 256 64 425.4C24.2 380.2 0 320.9 0 256c0-7.3 .3-14.6 .9-21.8C16 238 31.8 240 48 240zm463.1 37.8C496 274 480.2 272 464 272c-47.3 0-90.5 17.1-124 45.4L278.6 256 448 86.6c39.8 45.1 64 104.4 64 169.4c0 7.3-.3 14.6-.9 21.8zm-4.7 31.9C497 353.4 476.5 393 448 425.4l-85.2-85.2C390.3 317.5 425.6 304 464 304c14.7 0 28.9 2 42.4 5.7zM340.1 362.7L425.4 448C393 476.5 353.4 497 309.7 506.4C306 492.9 304 478.7 304 464c0-38.4 13.5-73.7 36.1-101.3zM317.4 340C289.1 373.5 272 416.7 272 464c0 16.2 2 32 5.8 47.1c-7.2 .6-14.5 .9-21.8 .9c-64.9 0-124.2-24.2-169.4-64L256 278.6 317.4 340z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bath": { + "aliases": { + "names": [ + "bathtub" + ], + "unicodes": { + "composite": [ + "1f6c1" + ], + "secondary": [ + "10f2cd" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bath", + "bathtub", + "clean", + "shower", + "tub", + "wash" + ] + }, + "unicode": "f2cd", + "label": "Bath", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 77.3c0-7.3 5.9-13.3 13.3-13.3c3.5 0 6.9 1.4 9.4 3.9l14.9 14.9C130 91.8 128 101.7 128 112c0 19.9 7.2 38 19.2 52c-5.3 9.2-4 21.1 3.8 29c9.4 9.4 24.6 9.4 33.9 0L289 89c9.4-9.4 9.4-24.6 0-33.9c-7.8-7.9-19.8-9.1-29-3.8C246 39.2 227.9 32 208 32c-10.3 0-20.2 2-29.2 5.5L163.9 22.6C149.4 8.1 129.7 0 109.3 0C66.6 0 32 34.6 32 77.3V256c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H96V77.3zM32 352v16c0 28.4 12.4 54 32 71.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V464H384v16c0 17.7 14.3 32 32 32s32-14.3 32-32V439.6c19.6-17.6 32-43.1 32-71.6V352H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battery-empty": { + "aliases": { + "names": [ + "battery-0" + ], + "unicodes": { + "secondary": [ + "10f244" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "dead", + "power", + "status" + ] + }, + "unicode": "f244", + "label": "Battery Empty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M80 160c-8.8 0-16 7.2-16 16V336c0 8.8 7.2 16 16 16H464c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H80zM0 176c0-44.2 35.8-80 80-80H464c44.2 0 80 35.8 80 80v16c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32v16c0 44.2-35.8 80-80 80H80c-44.2 0-80-35.8-80-80V176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battery-full": { + "aliases": { + "names": [ + "battery", + "battery-5" + ], + "unicodes": { + "composite": [ + "1f50b" + ], + "secondary": [ + "10f240" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "batter", + "battery", + "charge", + "power", + "status" + ] + }, + "unicode": "f240", + "label": "Battery Full", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M464 160c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16H464zM80 96C35.8 96 0 131.8 0 176V336c0 44.2 35.8 80 80 80H464c44.2 0 80-35.8 80-80V320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32V176c0-44.2-35.8-80-80-80H80zm368 96H96V320H448V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battery-half": { + "aliases": { + "names": [ + "battery-3" + ], + "unicodes": { + "secondary": [ + "10f242" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "power", + "status" + ] + }, + "unicode": "f242", + "label": "Battery Half", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M464 160c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16H464zM80 96C35.8 96 0 131.8 0 176V336c0 44.2 35.8 80 80 80H464c44.2 0 80-35.8 80-80V320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32V176c0-44.2-35.8-80-80-80H80zm208 96H96V320H288V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battery-quarter": { + "aliases": { + "names": [ + "battery-2" + ], + "unicodes": { + "secondary": [ + "10f243" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "low", + "power", + "status" + ] + }, + "unicode": "f243", + "label": "Battery Quarter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M464 160c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16H464zM80 96C35.8 96 0 131.8 0 176V336c0 44.2 35.8 80 80 80H464c44.2 0 80-35.8 80-80V320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32V176c0-44.2-35.8-80-80-80H80zm112 96H96V320h96V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battery-three-quarters": { + "aliases": { + "names": [ + "battery-4" + ], + "unicodes": { + "secondary": [ + "10f241" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "power", + "status" + ] + }, + "unicode": "f241", + "label": "Battery Three Quarters", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M464 160c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16H464zM80 96C35.8 96 0 131.8 0 176V336c0 44.2 35.8 80 80 80H464c44.2 0 80-35.8 80-80V320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32V176c0-44.2-35.8-80-80-80H80zm272 96H96V320H352V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "battle-net": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f835", + "label": "Battle.net", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448.61 225.62c26.87.18 35.57-7.43 38.92-12.37 12.47-16.32-7.06-47.6-52.85-71.33 17.76-33.58 30.11-63.68 36.34-85.3 3.38-11.83 1.09-19 .45-20.25-1.72 10.52-15.85 48.46-48.2 100.05-25-11.22-56.52-20.1-93.77-23.8-8.94-16.94-34.88-63.86-60.48-88.93C252.18 7.14 238.7 1.07 228.18.22h-.05c-13.83-1.55-22.67 5.85-27.4 11-17.2 18.53-24.33 48.87-25 84.07-7.24-12.35-17.17-24.63-28.5-25.93h-.18c-20.66-3.48-38.39 29.22-36 81.29-38.36 1.38-71 5.75-93 11.23-9.9 2.45-16.22 7.27-17.76 9.72 1-.38 22.4-9.22 111.56-9.22 5.22 53 29.75 101.82 26 93.19-9.73 15.4-38.24 62.36-47.31 97.7-5.87 22.88-4.37 37.61.15 47.14 5.57 12.75 16.41 16.72 23.2 18.26 25 5.71 55.38-3.63 86.7-21.14-7.53 12.84-13.9 28.51-9.06 39.34 7.31 19.65 44.49 18.66 88.44-9.45 20.18 32.18 40.07 57.94 55.7 74.12a39.79 39.79 0 0 0 8.75 7.09c5.14 3.21 8.58 3.37 8.58 3.37-8.24-6.75-34-38-62.54-91.78 22.22-16 45.65-38.87 67.47-69.27 122.82 4.6 143.29-24.76 148-31.64 14.67-19.88 3.43-57.44-57.32-93.69zm-77.85 106.22c23.81-37.71 30.34-67.77 29.45-92.33 27.86 17.57 47.18 37.58 49.06 58.83 1.14 12.93-8.1 29.12-78.51 33.5zM216.9 387.69c9.76-6.23 19.53-13.12 29.2-20.49 6.68 13.33 13.6 26.1 20.6 38.19-40.6 21.86-68.84 12.76-49.8-17.7zm215-171.35c-10.29-5.34-21.16-10.34-32.38-15.05a722.459 722.459 0 0 0 22.74-36.9c39.06 24.1 45.9 53.18 9.64 51.95zM279.18 398c-5.51-11.35-11-23.5-16.5-36.44 43.25 1.27 62.42-18.73 63.28-20.41 0 .07-25 15.64-62.53 12.25a718.78 718.78 0 0 0 85.06-84q13.06-15.31 24.93-31.11c-.36-.29-1.54-3-16.51-12-51.7 60.27-102.34 98-132.75 115.92-20.59-11.18-40.84-31.78-55.71-61.49-20-39.92-30-82.39-31.57-116.07 12.3.91 25.27 2.17 38.85 3.88-22.29 36.8-14.39 63-13.47 64.23 0-.07-.95-29.17 20.14-59.57a695.23 695.23 0 0 0 44.67 152.84c.93-.38 1.84.88 18.67-8.25-26.33-74.47-33.76-138.17-34-173.43 20-12.42 48.18-19.8 81.63-17.81 44.57 2.67 86.36 15.25 116.32 30.71q-10.69 15.66-23.33 32.47C365.63 152 339.1 145.84 337.5 146c.11 0 25.9 14.07 41.52 47.22a717.63 717.63 0 0 0-115.34-31.71 646.608 646.608 0 0 0-39.39-6.05c-.07.45-1.81 1.85-2.16 20.33C300 190.28 358.78 215.68 389.36 233c.74 23.55-6.95 51.61-25.41 79.57-24.6 37.31-56.39 67.23-84.77 85.43zm27.4-287c-44.56-1.66-73.58 7.43-94.69 20.67 2-52.3 21.31-76.38 38.21-75.28C267 52.15 305 108.55 306.58 111zm-130.65 3.1c.48 12.11 1.59 24.62 3.21 37.28-14.55-.85-28.74-1.25-42.4-1.26-.08 3.24-.12-51 24.67-49.59h.09c5.76 1.09 10.63 6.88 14.43 13.57zm-28.06 162c20.76 39.7 43.3 60.57 65.25 72.31-46.79 24.76-77.53 20-84.92 4.51-.2-.21-11.13-15.3 19.67-76.81zm210.06 74.8" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bed": { + "aliases": { + "unicodes": { + "composite": [ + "1f6cc" + ], + "secondary": [ + "10f236" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hospital", + "hotel", + "lodging", + "mattress", + "patient", + "person in bed", + "rest", + "sleep", + "travel" + ] + }, + "unicode": "f236", + "label": "Bed", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V320H288V160c0-17.7 14.3-32 32-32H544c53 0 96 43 96 96V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V416H352 320 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 46.3 14.3 32 32 32zm144 96a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bed-pulse": { + "aliases": { + "names": [ + "procedures" + ], + "unicodes": { + "secondary": [ + "10f487" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "EKG", + "bed", + "electrocardiogram", + "health", + "hospital", + "life", + "patient", + "vital" + ] + }, + "unicode": "f487", + "label": "Bed Pulse", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M483.2 9.6L524 64h92c13.3 0 24 10.7 24 24s-10.7 24-24 24H512c-7.6 0-14.7-3.6-19.2-9.6L468.7 70.3l-47 99.9c-3.7 7.8-11.3 13.1-19.9 13.7s-16.9-3.4-21.7-10.6L339.2 112H216c-13.3 0-24-10.7-24-24s10.7-24 24-24H352c8 0 15.5 4 20 10.7l24.4 36.6 45.9-97.5C445.9 6.2 453.2 1 461.6 .1s16.6 2.7 21.6 9.5zM320 160h12.7l20.7 31.1c11.2 16.8 30.6 26.3 50.7 24.8s37.9-13.7 46.5-32L461.9 160H544c53 0 96 43 96 96V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H352 320 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V96C0 78.3 14.3 64 32 64s32 14.3 32 32V352H288V192c0-17.7 14.3-32 32-32zm-144 0a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "beer-mug-empty": { + "aliases": { + "names": [ + "beer" + ], + "unicodes": { + "secondary": [ + "10f0fc" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "ale", + "bar", + "beverage", + "brew", + "brewery", + "drink", + "foam", + "lager", + "liquor", + "mug", + "stein" + ] + }, + "unicode": "f0fc", + "label": "Beer Mug Empty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 64c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32V96h51.2c42.4 0 76.8 34.4 76.8 76.8V274.9c0 30.4-17.9 57.9-45.6 70.2L384 381.7V416c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V64zM384 311.6l56.4-25.1c4.6-2.1 7.6-6.6 7.6-11.7V172.8c0-7.1-5.7-12.8-12.8-12.8H384V311.6zM160 144c0-8.8-7.2-16-16-16s-16 7.2-16 16V368c0 8.8 7.2 16 16 16s16-7.2 16-16V144zm64 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V368c0 8.8 7.2 16 16 16s16-7.2 16-16V144zm64 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V368c0 8.8 7.2 16 16 16s16-7.2 16-16V144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "behance": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1b4", + "label": "Behance", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bell": { + "aliases": { + "unicodes": { + "composite": [ + "1f514", + "f0a2" + ], + "secondary": [ + "10f0f3" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.2.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alarm", + "alert", + "bel", + "bell", + "chime", + "notification", + "reminder" + ] + }, + "unicode": "f0f3", + "label": "Bell", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0c-17.7 0-32 14.3-32 32V51.2C119 66 64 130.6 64 208v18.8c0 47-17.3 92.4-48.5 127.6l-7.4 8.3c-8.4 9.4-10.4 22.9-5.3 34.4S19.4 416 32 416H416c12.6 0 24-7.4 29.2-18.9s3.1-25-5.3-34.4l-7.4-8.3C401.3 319.2 384 273.9 384 226.8V208c0-77.4-55-142-128-156.8V32c0-17.7-14.3-32-32-32zm45.3 493.3c12-12 18.7-28.3 18.7-45.3H224 160c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0c-17.7 0-32 14.3-32 32V49.9C119.5 61.4 64 124.2 64 200v33.4c0 45.4-15.5 89.5-43.8 124.9L5.3 377c-5.8 7.2-6.9 17.1-2.9 25.4S14.8 416 24 416H424c9.2 0 17.6-5.3 21.6-13.6s2.9-18.2-2.9-25.4l-14.9-18.6C399.5 322.9 384 278.8 384 233.4V200c0-75.8-55.5-138.6-128-150.1V32c0-17.7-14.3-32-32-32zm0 96h8c57.4 0 104 46.6 104 104v33.4c0 47.9 13.9 94.6 39.7 134.6H72.3C98.1 328 112 281.3 112 233.4V200c0-57.4 46.6-104 104-104h8zm64 352H224 160c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "bell-concierge": { + "aliases": { + "names": [ + "concierge-bell" + ], + "unicodes": { + "composite": [ + "1f6ce" + ], + "secondary": [ + "10f562" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attention", + "bell", + "bellhop", + "bellhop bell", + "hotel", + "receptionist", + "service", + "support" + ] + }, + "unicode": "f562", + "label": "Bell Concierge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M216 64c-13.3 0-24 10.7-24 24s10.7 24 24 24h16v33.3C119.6 157.2 32 252.4 32 368H480c0-115.6-87.6-210.8-200-222.7V112h16c13.3 0 24-10.7 24-24s-10.7-24-24-24H256 216zM24 400c-13.3 0-24 10.7-24 24s10.7 24 24 24H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bell-slash": { + "aliases": { + "unicodes": { + "composite": [ + "1f515", + "f1f7" + ], + "secondary": [ + "10f1f6" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alert", + "bell", + "bell with slash", + "cancel", + "disabled", + "forbidden", + "mute", + "notification", + "off", + "quiet", + "reminder", + "silent" + ] + }, + "unicode": "f1f6", + "label": "Bell Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-87.5-68.6c.5-1.7 .7-3.5 .7-5.4c0-27.6-11-54.1-30.5-73.7L512 320c-20.5-20.5-32-48.3-32-77.3V208c0-77.4-55-142-128-156.8V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V51.2c-42.6 8.6-79 34.2-102 69.3L38.8 5.1zM160 242.7c0 29-11.5 56.8-32 77.3l-1.5 1.5C107 341 96 367.5 96 395.2c0 11.5 9.3 20.8 20.8 20.8H406.2L160 222.1v20.7zM384 448H320 256c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L542.6 400c2.7-7.8 1.3-16.5-3.9-23l-14.9-18.6C495.5 322.9 480 278.8 480 233.4V200c0-75.8-55.5-138.6-128-150.1V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V49.9c-43.9 7-81.5 32.7-104.4 68.7L38.8 5.1zM221.7 148.4C239.6 117.1 273.3 96 312 96h8 8c57.4 0 104 46.6 104 104v33.4c0 32.7 6.4 64.8 18.7 94.5L221.7 148.4zm-61.7 85c0 45.4-15.5 89.5-43.8 124.9L101.3 377c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6H406.2l-60.9-48H168.3c21.2-32.8 34.4-70.3 38.4-109.1L160 222.1v11.4zM384 448H320 256c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "bezier-curve": { + "aliases": { + "unicodes": { + "secondary": [ + "10f55b" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "curves", + "illustrator", + "lines", + "path", + "vector" + ] + }, + "unicode": "f55b", + "label": "Bezier Curve", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M296 136V88h48v48H296zM288 32c-26.5 0-48 21.5-48 48v4H121.6C111.2 62.7 89.3 48 64 48C28.7 48 0 76.7 0 112s28.7 64 64 64c25.3 0 47.2-14.7 57.6-36h66.9c-58.9 39.6-98.9 105-104 180H80c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48h-3.3c5.9-67 48.5-123.4 107.5-149.1c8.6 12.7 23.2 21.1 39.8 21.1h64c16.6 0 31.1-8.4 39.8-21.1c59 25.7 101.6 82.1 107.5 149.1H496c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48h-4.5c-5-75-45.1-140.4-104-180h66.9c10.4 21.3 32.3 36 57.6 36c35.3 0 64-28.7 64-64s-28.7-64-64-64c-25.3 0-47.2 14.7-57.6 36H400V80c0-26.5-21.5-48-48-48H288zM88 376h48v48H88V376zm416 48V376h48v48H504z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bicycle": { + "aliases": { + "unicodes": { + "composite": [ + "1f6b2" + ], + "secondary": [ + "10f206" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bicycle", + "bike", + "gears", + "pedal", + "transportation", + "vehicle" + ] + }, + "unicode": "f206", + "label": "Bicycle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M312 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h25.7l34.6 64H222.9l-27.4-38C191 99.7 183.7 96 176 96H120c-13.3 0-24 10.7-24 24s10.7 24 24 24h43.7l22.1 30.7-26.6 53.1c-10-2.5-20.5-3.8-31.2-3.8C57.3 224 0 281.3 0 352s57.3 128 128 128c65.3 0 119.1-48.9 127-112h49c8.5 0 16.3-4.5 20.7-11.8l84.8-143.5 21.7 40.1C402.4 276.3 384 312 384 352c0 70.7 57.3 128 128 128s128-57.3 128-128s-57.3-128-128-128c-13.5 0-26.5 2.1-38.7 6L375.4 48.8C369.8 38.4 359 32 347.2 32H312zM458.6 303.7l32.3 59.7c6.3 11.7 20.9 16 32.5 9.7s16-20.9 9.7-32.5l-32.3-59.7c3.6-.6 7.4-.9 11.2-.9c39.8 0 72 32.2 72 72s-32.2 72-72 72s-72-32.2-72-72c0-18.6 7-35.5 18.6-48.3zM133.2 368h65c-7.3 32.1-36 56-70.2 56c-39.8 0-72-32.2-72-72s32.2-72 72-72c1.7 0 3.4 .1 5.1 .2l-24.2 48.5c-9 18.1 4.1 39.4 24.3 39.4zm33.7-48l50.7-101.3 72.9 101.2-.1 .1H166.8zm90.6-128H365.9L317 274.8 257.4 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bilibili": { + "changes": [ + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e3d9", + "label": "Bilibili", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M488.6 104.1C505.3 122.2 513 143.8 511.9 169.8V372.2C511.5 398.6 502.7 420.3 485.4 437.3C468.2 454.3 446.3 463.2 419.9 464H92.02C65.57 463.2 43.81 454.2 26.74 436.8C9.682 419.4 .7667 396.5 0 368.2V169.8C.7667 143.8 9.682 122.2 26.74 104.1C43.81 87.75 65.57 78.77 92.02 78H121.4L96.05 52.19C90.3 46.46 87.42 39.19 87.42 30.4C87.42 21.6 90.3 14.34 96.05 8.603C101.8 2.868 109.1 0 117.9 0C126.7 0 134 2.868 139.8 8.603L213.1 78H301.1L375.6 8.603C381.7 2.868 389.2 0 398 0C406.8 0 414.1 2.868 419.9 8.603C425.6 14.34 428.5 21.6 428.5 30.4C428.5 39.19 425.6 46.46 419.9 52.19L394.6 78L423.9 78C450.3 78.77 471.9 87.75 488.6 104.1H488.6zM449.8 173.8C449.4 164.2 446.1 156.4 439.1 150.3C433.9 144.2 425.1 140.9 416.4 140.5H96.05C86.46 140.9 78.6 144.2 72.47 150.3C66.33 156.4 63.07 164.2 62.69 173.8V368.2C62.69 377.4 65.95 385.2 72.47 391.7C78.99 398.2 86.85 401.5 96.05 401.5H416.4C425.6 401.5 433.4 398.2 439.7 391.7C446 385.2 449.4 377.4 449.8 368.2L449.8 173.8zM185.5 216.5C191.8 222.8 195.2 230.6 195.6 239.7V273C195.2 282.2 191.9 289.9 185.8 296.2C179.6 302.5 171.8 305.7 162.2 305.7C152.6 305.7 144.7 302.5 138.6 296.2C132.5 289.9 129.2 282.2 128.8 273V239.7C129.2 230.6 132.6 222.8 138.9 216.5C145.2 210.2 152.1 206.9 162.2 206.5C171.4 206.9 179.2 210.2 185.5 216.5H185.5zM377 216.5C383.3 222.8 386.7 230.6 387.1 239.7V273C386.7 282.2 383.4 289.9 377.3 296.2C371.2 302.5 363.3 305.7 353.7 305.7C344.1 305.7 336.3 302.5 330.1 296.2C323.1 289.9 320.7 282.2 320.4 273V239.7C320.7 230.6 324.1 222.8 330.4 216.5C336.7 210.2 344.5 206.9 353.7 206.5C362.9 206.9 370.7 210.2 377 216.5H377z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bimobject": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f378", + "label": "BIMobject", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "binoculars": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1e5" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "glasses", + "magnify", + "scenic", + "spyglass", + "view" + ] + }, + "unicode": "f1e5", + "label": "Binoculars", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 32h32c17.7 0 32 14.3 32 32V96H96V64c0-17.7 14.3-32 32-32zm64 96V448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V388.9c0-34.6 9.4-68.6 27.2-98.3C40.9 267.8 49.7 242.4 53 216L60.5 156c2-16 15.6-28 31.8-28H192zm227.8 0c16.1 0 29.8 12 31.8 28L459 216c3.3 26.4 12.1 51.8 25.8 74.6c17.8 29.7 27.2 63.7 27.2 98.3V448c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V128h99.8zM320 64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V96H320V64zm-32 64V288H224V128h64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "biohazard": { + "aliases": { + "unicodes": { + "composite": [ + "2623" + ], + "secondary": [ + "10f780" + ] + } + }, + "changes": [ + "5.6.0", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "biohazard", + "covid-19", + "danger", + "dangerous", + "epidemic", + "hazmat", + "medical", + "pandemic", + "radioactive", + "sign", + "toxic", + "waste", + "zombie" + ] + }, + "unicode": "f780", + "label": "Biohazard", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M163.2 0c-1.7 0-3.3 .7-4.5 1.9c-28.2 28.6-45.6 67.8-45.6 111.1c0 24.6 5.6 47.9 15.7 68.7c-20.7 2.2-41.2 8.5-60.4 19.3C35.8 219.1 12.7 247 .5 278.6c-.6 1.6-.4 3.4 .4 4.9c2.1 3.5 7 4 10 1.3C60.6 239.3 148.8 230.6 193 305s-7.6 144.1-73 163c-4 1.1-5.9 5.6-3.9 9c.9 1.5 2.4 2.6 4.2 2.8c34.3 5.6 70.8 .1 103.3-18.1c19.2-10.8 35.2-24.9 47.6-41.3c12.4 16.3 28.3 30.5 47.6 41.3c32.5 18.2 69 23.7 103.3 18.1c1.8-.3 3.3-1.3 4.2-2.8c2.1-3.5 .1-7.9-3.9-9c-65.4-19-117.3-88.7-73-163s132.5-65.6 182.1-20.2c3 2.7 7.9 2.2 10-1.3c.9-1.5 1.1-3.3 .4-4.9c-12.2-31.6-35.3-59.5-67.8-77.7c-19.2-10.7-39.7-17.1-60.4-19.3c10-20.8 15.7-44.1 15.7-68.7c0-43.3-17.4-82.5-45.6-111.1C382.5 .7 380.9 0 379.2 0c-4.7 0-7.9 4.9-6.3 9.4c24.1 66.4-9.9 156.3-101.8 156.3s-125.8-89.9-101.8-156.3C171 4.9 167.9 0 163.2 0zM226 256a45.2 45.2 0 1 1 90.4 0A45.2 45.2 0 1 1 226 256zM171.1 393c5.9-11.1 9.2-23.7 8.1-37.5c-18.3-17-32-39-38.8-63.8c-11.8-7.6-24.7-11.1-37.7-11.7c-8.4-.4-17.1 .5-25.5 2.6c7.3 53.7 36.4 100.5 78.1 131.2c6.4-6.3 11.8-13.3 15.8-20.8zM271.2 60.2c-27.1 0-53 5.5-76.4 15.5c1.9 7.8 4.7 15.3 8.5 22.1c6.4 11.6 15.7 21.7 28.3 28.5c12.6-3.8 25.9-5.9 39.7-5.9s27.1 2.1 39.7 5.9c12.6-6.8 21.9-16.9 28.3-28.5c3.8-6.8 6.6-14.3 8.5-22.1c-23.5-10-49.3-15.5-76.4-15.5zM401.9 291.7c-6.8 24.8-20.4 46.8-38.8 63.8c-1.2 13.8 2.1 26.4 8.1 37.5c4 7.5 9.4 14.5 15.8 20.8c41.7-30.7 70.8-77.4 78.1-131.2c-8.5-2-17.1-2.9-25.5-2.6c-13 .6-25.9 4.1-37.7 11.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bitbucket": { + "aliases": { + "unicodes": { + "composite": [ + "f172" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian", + "bitbucket-square", + "git" + ] + }, + "unicode": "f171", + "label": "Bitbucket", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M22.2 32A16 16 0 0 0 6 47.8a26.35 26.35 0 0 0 .2 2.8l67.9 412.1a21.77 21.77 0 0 0 21.3 18.2h325.7a16 16 0 0 0 16-13.4L505 50.7a16 16 0 0 0-13.2-18.3 24.58 24.58 0 0 0-2.8-.2L22.2 32zm285.9 297.8h-104l-28.1-147h157.3l-25.2 147z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bitcoin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f379", + "label": "Bitcoin", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bitcoin-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Bitcoin Sign", + "currency" + ] + }, + "unicode": "e0b4", + "label": "Bitcoin Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M48 32C48 14.3 62.3 0 80 0s32 14.3 32 32V64h32V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64c0 1.5-.1 3.1-.3 4.5C254.1 82.2 288 125.1 288 176c0 24.2-7.7 46.6-20.7 64.9c31.7 19.8 52.7 55 52.7 95.1c0 61.9-50.1 112-112 112v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H112v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H41.7C18.7 448 0 429.3 0 406.3V288 265.7 224 101.6C0 80.8 16.8 64 37.6 64H48V32zM64 224H176c26.5 0 48-21.5 48-48s-21.5-48-48-48H64v96zm112 64H64v96H208c26.5 0 48-21.5 48-48s-21.5-48-48-48H176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bity": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f37a", + "label": "Bity", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "black-tie": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f27e", + "label": "Font Awesome Black Tie", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "blackberry": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f37b", + "label": "BlackBerry", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "blender": { + "aliases": { + "unicodes": { + "secondary": [ + "10f517" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cocktail", + "milkshake", + "mixer", + "puree", + "smoothie" + ] + }, + "unicode": "f517", + "label": "Blender", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0h64 32H470.1c21.1 0 36.4 20.1 30.9 40.4L494.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H485.8l-17.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H459.6l-17.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16h97.5L416 352H160l-8.7-96H64c-35.3 0-64-28.7-64-64V64zM145.5 192L133.8 64H64V192h81.5zM144 384H432c26.5 0 48 21.5 48 48v32c0 26.5-21.5 48-48 48H144c-26.5 0-48-21.5-48-48V432c0-26.5 21.5-48 48-48zm144 96a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "blender-phone": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6b6" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "appliance", + "cocktail", + "fantasy", + "milkshake", + "mixer", + "puree", + "silly", + "smoothie" + ] + }, + "unicode": "f6b6", + "label": "Blender Phone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M224 352L196.8 52.3C194.2 24.2 216.3 0 244.6 0H534.1c21.1 0 36.4 20.1 30.9 40.4L558.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16H549.8l-17.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16H523.6l-17.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16h97.5L480 352H224zm-16 32H496c26.5 0 48 21.5 48 48v32c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48V432c0-26.5 21.5-48 48-48zm144 96a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM147.5 30.7c10.8 6.7 15.3 21 10.6 33.4l-22 57.8c-4.2 10.9-14.5 17.6-25.3 16.4l-33.3-3.6c-13.6 42.2-13.6 88.4 0 130.7l33.3-3.6c10.9-1.2 21.2 5.5 25.3 16.4l22 57.8c4.7 12.4 .2 26.7-10.6 33.4l-44 27.2c-9.7 6-21.9 4.2-29.8-4.3C-24.6 286-24.6 114 73.7 7.8C81.6-.7 93.8-2.5 103.5 3.5l44 27.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "blog": { + "aliases": { + "unicodes": { + "secondary": [ + "10f781" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "journal", + "log", + "online", + "personal", + "post", + "web 2.0", + "wordpress", + "writing" + ] + }, + "unicode": "f781", + "label": "Blog", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 32c0 17.7 14.3 32 32 32c123.7 0 224 100.3 224 224c0 17.7 14.3 32 32 32s32-14.3 32-32C512 128.9 383.1 0 224 0c-17.7 0-32 14.3-32 32zm0 96c0 17.7 14.3 32 32 32c70.7 0 128 57.3 128 128c0 17.7 14.3 32 32 32s32-14.3 32-32c0-106-86-192-192-192c-17.7 0-32 14.3-32 32zM96 144c0-26.5-21.5-48-48-48S0 117.5 0 144V368c0 79.5 64.5 144 144 144s144-64.5 144-144s-64.5-144-144-144H128v96h16c26.5 0 48 21.5 48 48s-21.5 48-48 48s-48-21.5-48-48V144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "blogger": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f37c", + "label": "Blogger", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "blogger-b": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f37d", + "label": "Blogger B", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bluetooth": { + "aliases": { + "unicodes": { + "secondary": [ + "10f293" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "signal" + ] + }, + "unicode": "f293", + "label": "Bluetooth", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bluetooth-b": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f294", + "label": "Bluetooth", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bold": { + "aliases": { + "unicodes": { + "secondary": [ + "10f032" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emphasis", + "format", + "text" + ] + }, + "unicode": "f032", + "label": "Bold", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H80 96 224c70.7 0 128 57.3 128 128c0 31.3-11.3 60.1-30 82.3c37.1 22.4 62 63.1 62 109.7c0 70.7-57.3 128-128 128H96 80 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48V256 96H32C14.3 96 0 81.7 0 64zM224 224c35.3 0 64-28.7 64-64s-28.7-64-64-64H112V224H224zM112 288V416H256c35.3 0 64-28.7 64-64s-28.7-64-64-64H224 112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bolt": { + "aliases": { + "names": [ + "zap" + ], + "unicodes": { + "composite": [ + "26a1" + ], + "secondary": [ + "10f0e7" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.5.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "danger", + "electric", + "electricity", + "flash", + "high voltage", + "lightning", + "voltage", + "weather", + "zap" + ] + }, + "unicode": "f0e7", + "label": "Bolt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M317.4 44.6c5.9-13.7 1.5-29.7-10.6-38.5s-28.6-8-39.9 1.8l-256 224C.9 240.7-2.6 254.8 2 267.3S18.7 288 32 288H143.5L66.6 467.4c-5.9 13.7-1.5 29.7 10.6 38.5s28.6 8 39.9-1.8l256-224c10-8.8 13.6-22.9 8.9-35.3s-16.6-20.7-30-20.7H240.5L317.4 44.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bolt-lightning": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electricity", + "flash", + "lightning", + "weather", + "zap" + ] + }, + "unicode": "e0b7", + "label": "Bolt Lightning", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 256L28.5 28c2-16 15.6-28 31.8-28H228.9c15 0 27.1 12.1 27.1 27.1c0 3.2-.6 6.5-1.7 9.5L208 160H347.3c20.2 0 36.7 16.4 36.7 36.7c0 7.4-2.2 14.6-6.4 20.7l-192.2 281c-5.9 8.6-15.6 13.7-25.9 13.7h-2.9c-15.7 0-28.5-12.8-28.5-28.5c0-2.3 .3-4.6 .9-6.9L176 288H32c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bomb": { + "aliases": { + "unicodes": { + "composite": [ + "1f4a3" + ], + "secondary": [ + "10f1e2" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bomb", + "comic", + "error", + "explode", + "fuse", + "grenade", + "warning" + ] + }, + "unicode": "f1e2", + "label": "Bomb", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M459.1 52.4L442.6 6.5C440.7 2.6 436.5 0 432.1 0s-8.5 2.6-10.4 6.5L405.2 52.4l-46 16.8c-4.3 1.6-7.3 5.9-7.2 10.4c0 4.5 3 8.7 7.2 10.2l45.7 16.8 16.8 45.8c1.5 4.4 5.8 7.5 10.4 7.5s8.9-3.1 10.4-7.5l16.5-45.8 45.7-16.8c4.2-1.5 7.2-5.7 7.2-10.2c0-4.6-3-8.9-7.2-10.4L459.1 52.4zm-132.4 53c-12.5-12.5-32.8-12.5-45.3 0l-2.9 2.9C256.5 100.3 232.7 96 208 96C93.1 96 0 189.1 0 304S93.1 512 208 512s208-93.1 208-208c0-24.7-4.3-48.5-12.2-70.5l2.9-2.9c12.5-12.5 12.5-32.8 0-45.3l-80-80zM200 192c-57.4 0-104 46.6-104 104v8c0 8.8-7.2 16-16 16s-16-7.2-16-16v-8c0-75.1 60.9-136 136-136h8c8.8 0 16 7.2 16 16s-7.2 16-16 16h-8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bone": { + "aliases": { + "unicodes": { + "composite": [ + "1f9b4" + ], + "secondary": [ + "10f5d7" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bone", + "calcium", + "dog", + "skeletal", + "skeleton", + "tibia" + ] + }, + "unicode": "f5d7", + "label": "Bone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M153.7 144.8c6.9 16.3 20.6 31.2 38.3 31.2H384c17.7 0 31.4-14.9 38.3-31.2C434.4 116.1 462.9 96 496 96c44.2 0 80 35.8 80 80c0 30.4-17 56.9-42 70.4c-3.6 1.9-6 5.5-6 9.6s2.4 7.7 6 9.6c25 13.5 42 40 42 70.4c0 44.2-35.8 80-80 80c-33.1 0-61.6-20.1-73.7-48.8C415.4 350.9 401.7 336 384 336H192c-17.7 0-31.4 14.9-38.3 31.2C141.6 395.9 113.1 416 80 416c-44.2 0-80-35.8-80-80c0-30.4 17-56.9 42-70.4c3.6-1.9 6-5.5 6-9.6s-2.4-7.7-6-9.6C17 232.9 0 206.4 0 176c0-44.2 35.8-80 80-80c33.1 0 61.6 20.1 73.7 48.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bong": { + "aliases": { + "unicodes": { + "secondary": [ + "10f55c" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aparatus", + "cannabis", + "marijuana", + "pipe", + "smoke", + "smoking" + ] + }, + "unicode": "f55c", + "label": "Bong", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 208.5c0 29.1-15.6 53.9-37.2 67.8c-17.2 11.1-31.5 26.1-41.7 43.7H302.9c-10.2-17.6-24.5-32.6-41.7-43.7c-21.6-13.9-37.2-38.7-37.2-67.8V64H160V208.5zM288 64V208.5c0 5.7 3.1 10.9 7.9 14c11.2 7.2 21.5 15.5 30.9 24.8L366.1 208l-7-7c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l24 24 24 24c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-7-7-43.3 43.3C374 314.1 384 347.9 384 384c0 39.4-11.9 76.1-32.2 106.5c-9.6 14.4-26.5 21.5-43.8 21.5H76.1c-17.3 0-34.2-7.1-43.8-21.5C11.9 460.1 0 423.4 0 384c0-67.8 35.1-127.3 88.1-161.5c4.8-3.1 7.9-8.3 7.9-14V64C78.3 64 64 49.7 64 32S78.3 0 96 0h16H272h16c17.7 0 32 14.3 32 32s-14.3 32-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book": { + "aliases": { + "unicodes": { + "composite": [ + "1f4d4" + ], + "secondary": [ + "10f02d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "cover", + "decorated", + "diary", + "documentation", + "journal", + "library", + "notebook", + "notebook with decorative cover", + "read", + "research" + ] + }, + "unicode": "f02d", + "label": "Book", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H384 96zm0 384H352v64H96c-17.7 0-32-14.3-32-32s14.3-32 32-32zm32-240c0-8.8 7.2-16 16-16H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16zm16 48H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-atlas": { + "aliases": { + "names": [ + "atlas" + ], + "unicodes": { + "secondary": [ + "10f558" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "directions", + "geography", + "globe", + "library", + "map", + "research", + "travel", + "wayfinding" + ] + }, + "unicode": "f558", + "label": "Book Atlas", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zM247.4 283.8c-3.7 3.7-6.2 4.2-7.4 4.2s-3.7-.5-7.4-4.2c-3.8-3.7-8-10-11.8-18.9c-6.2-14.5-10.8-34.3-12.2-56.9h63c-1.5 22.6-6 42.4-12.2 56.9c-3.8 8.9-8 15.2-11.8 18.9zm42.7-9.9c7.3-18.3 12-41.1 13.4-65.9h31.1c-4.7 27.9-21.4 51.7-44.5 65.9zm0-163.8c23.2 14.2 39.9 38 44.5 65.9H303.5c-1.4-24.7-6.1-47.5-13.4-65.9zM368 192a128 128 0 1 0 -256 0 128 128 0 1 0 256 0zM145.3 208h31.1c1.4 24.7 6.1 47.5 13.4 65.9c-23.2-14.2-39.9-38-44.5-65.9zm31.1-32H145.3c4.7-27.9 21.4-51.7 44.5-65.9c-7.3 18.3-12 41.1-13.4 65.9zm56.1-75.8c3.7-3.7 6.2-4.2 7.4-4.2s3.7 .5 7.4 4.2c3.8 3.7 8 10 11.8 18.9c6.2 14.5 10.8 34.3 12.2 56.9h-63c1.5-22.6 6-42.4 12.2-56.9c3.8-8.9 8-15.2 11.8-18.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-bible": { + "aliases": { + "names": [ + "bible" + ], + "unicodes": { + "secondary": [ + "10f647" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "catholicism", + "christianity", + "god", + "holy" + ] + }, + "unicode": "f647", + "label": "Book Bible", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H384 96zm0 384H352v64H96c-17.7 0-32-14.3-32-32s14.3-32 32-32zM208 80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272V304c0 8.8-7.2 16-16 16H224c-8.8 0-16-7.2-16-16V192H160c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h48V80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-bookmark": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "library", + "research" + ] + }, + "unicode": "e0bb", + "label": "Book Bookmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0h96V190.7c0 13.4 15.5 20.9 26 12.5L272 160l54 43.2c10.5 8.4 26 .9 26-12.5V0h32 32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-journal-whills": { + "aliases": { + "names": [ + "journal-whills" + ], + "unicodes": { + "secondary": [ + "10f66a" + ] + } + }, + "changes": [ + "5.3.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "force", + "jedi", + "sith", + "star wars", + "yoda" + ] + }, + "unicode": "f66a", + "label": "Book Journal Whills", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zm90.4-234.4l-21.2-21.2c-3 10.1-5.1 20.6-5.1 31.6c0 .2 0 .5 .1 .8s.1 .5 .1 .8L165.2 226c2.5 2.1 3.4 5.8 2.3 8.9c-1.3 3-4.1 5.1-7.5 5.1c-1.9-.1-3.8-.8-5.2-2l-23.6-20.6C142.8 267 186.9 304 240 304s97.3-37 108.9-86.6L325.3 238c-1.4 1.2-3.3 2-5.3 2c-2.2-.1-4.4-1.1-6-2.8c-1.3-1.5-1.9-3.4-2-5.2c.1-2.2 1.1-4.4 2.7-6l37.1-32.5c0-.3 0-.5 .1-.8s.1-.5 .1-.8c0-11-2.1-21.5-5.1-31.6l-21.2 21.2c-3.1 3.1-8.1 3.1-11.3 0s-3.1-8.1 0-11.2l26.4-26.5c-8.2-17-20.5-31.7-35.9-42.6c-2.7-1.9-6.2 1.4-5 4.5c8.5 22.4 3.6 48-13 65.6c-3.3 3.4-3.6 8.9-.9 12.7c9.8 14 12.7 31.9 7.5 48.5c-5.9 19.4-22 34.1-41.9 38.3l-1.4-34.3 12.6 8.6c.6 .4 1.5 .6 2.3 .6c1.5 0 2.7-.8 3.5-2s.6-2.8-.1-4L260 225.4l18-3.6c1.8-.4 3.1-2.1 3.1-4s-1.4-3.5-3.1-3.9l-18-3.7 8.5-14.3c.8-1.2 .9-2.9 .1-4.1s-2-2-3.5-2l-.1 0c-.7 .1-1.5 .3-2.1 .7l-14.1 9.6L244 87.9c-.1-2.2-1.9-3.9-4-3.9s-3.9 1.6-4 3.9l-4.6 110.8-12-8.1c-1.5-1.1-3.6-.9-5 .4s-1.6 3.4-.8 5l8.6 14.3-18 3.7c-1.8 .4-3.1 2-3.1 3.9s1.4 3.6 3.1 4l18 3.8-8.6 14.2c-.2 .6-.5 1.4-.5 2c0 1.1 .5 2.1 1.2 3c.8 .6 1.8 1 2.8 1c.7 0 1.6-.2 2.2-.6l10.4-7.1-1.4 32.8c-19.9-4.1-36-18.9-41.9-38.3c-5.1-16.6-2.2-34.4 7.6-48.5c2.7-3.9 2.3-9.3-.9-12.7c-16.6-17.5-21.6-43.1-13.1-65.5c1.2-3.1-2.3-6.4-5-4.5c-15.3 10.9-27.6 25.6-35.8 42.6l26.4 26.5c3.1 3.1 3.1 8.1 0 11.2s-8.1 3.1-11.2 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7e6" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "diary", + "documentation", + "health", + "history", + "journal", + "library", + "read", + "record", + "research" + ] + }, + "unicode": "f7e6", + "label": "Book Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zM208 112v48H160c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h48c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H272V112c0-8.8-7.2-16-16-16H224c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-open": { + "aliases": { + "unicodes": { + "composite": [ + "1f4d6", + "1f56e" + ], + "secondary": [ + "10f518" + ] + } + }, + "changes": [ + "5.0.13", + "5.1.0", + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Book", + "book", + "flyer", + "library", + "notebook", + "open", + "open book", + "pamphlet", + "reading", + "research" + ] + }, + "unicode": "f518", + "label": "Book Open", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M249.6 471.5c10.8 3.8 22.4-4.1 22.4-15.5V78.6c0-4.2-1.6-8.4-5-11C247.4 52 202.4 32 144 32C93.5 32 46.3 45.3 18.1 56.1C6.8 60.5 0 71.7 0 83.8V454.1c0 11.9 12.8 20.2 24.1 16.5C55.6 460.1 105.5 448 144 448c33.9 0 79 14 105.6 23.5zm76.8 0C353 462 398.1 448 432 448c38.5 0 88.4 12.1 119.9 22.6c11.3 3.8 24.1-4.6 24.1-16.5V83.8c0-12.1-6.8-23.3-18.1-27.6C529.7 45.3 482.5 32 432 32c-58.4 0-103.4 20-123 35.6c-3.3 2.6-5 6.8-5 11V456c0 11.4 11.7 19.3 22.4 15.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-open-reader": { + "aliases": { + "names": [ + "book-reader" + ], + "unicodes": { + "secondary": [ + "10f5da" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flyer", + "library", + "notebook", + "open book", + "pamphlet", + "reading", + "research" + ] + }, + "unicode": "f5da", + "label": "Book Open Reader", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 96a96 96 0 1 1 192 0A96 96 0 1 1 160 96zm80 152V512l-48.4-24.2c-20.9-10.4-43.5-17-66.8-19.3l-96-9.6C12.5 457.2 0 443.5 0 427V224c0-17.7 14.3-32 32-32H62.3c63.6 0 125.6 19.6 177.7 56zm32 264V248c52.1-36.4 114.1-56 177.7-56H480c17.7 0 32 14.3 32 32V427c0 16.4-12.5 30.2-28.8 31.8l-96 9.6c-23.2 2.3-45.9 8.9-66.8 19.3L272 512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-quran": { + "aliases": { + "names": [ + "quran" + ], + "unicodes": { + "secondary": [ + "10f687" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "islam", + "muslim", + "religion" + ] + }, + "unicode": "f687", + "label": "Book Quran", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 0c53 0 96 43 96 96V416c0 53-43 96-96 96H64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32V384c-17.7 0-32-14.3-32-32V32C0 14.3 14.3 0 32 0H64 352zm0 384H96v64H352c17.7 0 32-14.3 32-32s-14.3-32-32-32zM274.1 150.2l-8.9 21.4-23.1 1.9c-5.7 .5-8 7.5-3.7 11.2L256 199.8l-5.4 22.6c-1.3 5.5 4.7 9.9 9.6 6.9L280 217.2l19.8 12.1c4.9 3 10.9-1.4 9.6-6.9L304 199.8l17.6-15.1c4.3-3.7 2-10.8-3.7-11.2l-23.1-1.9-8.9-21.4c-2.2-5.3-9.6-5.3-11.8 0zM96 192c0 70.7 57.3 128 128 128c25.6 0 49.5-7.5 69.5-20.5c3.2-2.1 4.5-6.2 3.1-9.7s-5.2-5.6-9-4.8c-6.1 1.2-12.5 1.9-19 1.9c-52.4 0-94.9-42.5-94.9-94.9s42.5-94.9 94.9-94.9c6.5 0 12.8 .7 19 1.9c3.8 .8 7.5-1.3 9-4.8s.2-7.6-3.1-9.7C273.5 71.5 249.6 64 224 64C153.3 64 96 121.3 96 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-skull": { + "aliases": { + "names": [ + "book-dead" + ], + "unicodes": { + "secondary": [ + "10f6b7" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "crossbones", + "d&d", + "dark arts", + "death", + "dnd", + "documentation", + "evil", + "fantasy", + "halloween", + "holiday", + "library", + "necronomicon", + "read", + "research", + "skull", + "spell" + ] + }, + "unicode": "f6b7", + "label": "Book Skull", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zM320 112c0-35.3-35.8-64-80-64s-80 28.7-80 64c0 20.9 12.6 39.5 32 51.2V176c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V163.2c19.4-11.7 32-30.3 32-51.2zM208 96a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm48 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM134.3 209.3c-8.1-3.5-17.5 .3-21 8.4s.3 17.5 8.4 21L199.4 272l-77.7 33.3c-8.1 3.5-11.9 12.9-8.4 21s12.9 11.9 21 8.4L240 289.4l105.7 45.3c8.1 3.5 17.5-.3 21-8.4s-.3-17.5-8.4-21L280.6 272l77.7-33.3c8.1-3.5 11.9-12.9 8.4-21s-12.9-11.9-21-8.4L240 254.6 134.3 209.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "book-tanakh": { + "aliases": { + "names": [ + "tanakh" + ], + "unicodes": { + "secondary": [ + "10f827" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "jewish", + "judaism", + "religion" + ] + }, + "unicode": "f827", + "label": "Book Tanakh", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 0c53 0 96 43 96 96V416c0 53-43 96-96 96H64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32V384c-17.7 0-32-14.3-32-32V32C0 14.3 14.3 0 32 0H64 352zm0 384H96v64H352c17.7 0 32-14.3 32-32s-14.3-32-32-32zM138.7 208l13.9 24H124.9l13.9-24zm-13.9-24L97.1 232c-6.2 10.7 1.5 24 13.9 24h55.4l27.7 48c6.2 10.7 21.6 10.7 27.7 0l27.7-48H305c12.3 0 20-13.3 13.9-24l-27.7-48 27.7-48c6.2-10.7-1.5-24-13.9-24H249.6L221.9 64c-6.2-10.7-21.6-10.7-27.7 0l-27.7 48H111c-12.3 0-20 13.3-13.9 24l27.7 48zm27.7 0l27.7-48h55.4l27.7 48-27.7 48H180.3l-27.7-48zm0-48l-13.9 24-13.9-24h27.7zm41.6-24L208 88l13.9 24H194.1zm69.3 24h27.7l-13.9 24-13.9-24zm13.9 72l13.9 24H263.4l13.9-24zm-55.4 48L208 280l-13.9-24h27.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bookmark": { + "aliases": { + "unicodes": { + "composite": [ + "1f516", + "f097" + ], + "secondary": [ + "10f02e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bookmark", + "favorite", + "library", + "mark", + "marker", + "read", + "remember", + "research", + "save" + ] + }, + "unicode": "f02e", + "label": "Bookmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 48V487.7C0 501.1 10.9 512 24.3 512c5 0 9.9-1.5 14-4.4L192 400 345.7 507.6c4.1 2.9 9 4.4 14 4.4c13.4 0 24.3-10.9 24.3-24.3V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0l0 48V441.4l130.1-92.9c8.3-6 19.6-6 27.9 0L336 441.4V48H48V0H336c26.5 0 48 21.5 48 48V488c0 9-5 17.2-13 21.3s-17.6 3.4-24.9-1.8L192 397.5 37.9 507.5c-7.3 5.2-16.9 5.9-24.9 1.8S0 497 0 488V48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "bootstrap": { + "changes": [ + "5.8.0", + "5.15.4", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f836", + "label": "Bootstrap", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M333.5,201.4c0-22.1-15.6-34.3-43-34.3h-50.4v71.2h42.5C315.4,238.2,333.5,225,333.5,201.4z M517,188.6 c-9.5-30.9-10.9-68.8-9.8-98.1c1.1-30.5-22.7-58.5-54.7-58.5H123.7c-32.1,0-55.8,28.1-54.7,58.5c1,29.3-0.3,67.2-9.8,98.1 c-9.6,31-25.7,50.6-52.2,53.1v28.5c26.4,2.5,42.6,22.1,52.2,53.1c9.5,30.9,10.9,68.8,9.8,98.1c-1.1,30.5,22.7,58.5,54.7,58.5h328.7 c32.1,0,55.8-28.1,54.7-58.5c-1-29.3,0.3-67.2,9.8-98.1c9.6-31,25.7-50.6,52.1-53.1v-28.5C542.7,239.2,526.5,219.6,517,188.6z M300.2,375.1h-97.9V136.8h97.4c43.3,0,71.7,23.4,71.7,59.4c0,25.3-19.1,47.9-43.5,51.8v1.3c33.2,3.6,55.5,26.6,55.5,58.3 C383.4,349.7,352.1,375.1,300.2,375.1z M290.2,266.4h-50.1v78.4h52.3c34.2,0,52.3-13.7,52.3-39.5 C344.7,279.6,326.1,266.4,290.2,266.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "border-all": { + "aliases": { + "unicodes": { + "secondary": [ + "10f84c" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cell", + "grid", + "outline", + "stroke", + "table" + ] + }, + "unicode": "f84c", + "label": "Border All", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 96V224H256V96H384zm0 192V416H256V288H384zM192 224H64V96H192V224zM64 288H192V416H64V288zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "border-none": { + "aliases": { + "unicodes": { + "secondary": [ + "10f850" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cell", + "grid", + "outline", + "stroke", + "table" + ] + }, + "unicode": "f850", + "label": "Border None", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 416a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm96 64a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0-384a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0 128a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM320 480a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0-448a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm0 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM224 416a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm0-320a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0 128a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM416 480a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0-384a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM32 32a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM416 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM32 224a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM224 384a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm192-64a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM32 384a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM416 128a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM32 192a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm192-64a32 32 0 1 0 0 64 32 32 0 1 0 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "border-top-left": { + "aliases": { + "names": [ + "border-style" + ], + "unicodes": { + "secondary": [ + "10f853" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cell", + "outline", + "stroke", + "table" + ] + }, + "unicode": "f853", + "label": "Border Top Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-336c0-8.8 7.2-16 16-16l336 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32C35.8 32 0 67.8 0 112L0 448zm160 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm192 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm-96 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm192 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM416 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0 32a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm0-128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bore-hole": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bore", + "bury", + "drill", + "hole" + ] + }, + "unicode": "e4c3", + "label": "Bore Hole", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c-17.7 0-32 14.3-32 32V296.6c-19.1 11.1-32 31.7-32 55.4c0 35.3 28.7 64 64 64s64-28.7 64-64c0-23.7-12.9-44.4-32-55.4V32c0-17.7-14.3-32-32-32zM48 128c-26.5 0-48 21.5-48 48V464c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H384c-17.7 0-32 14.3-32 32V352c0 53-43 96-96 96s-96-43-96-96V160c0-17.7-14.3-32-32-32H48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bots": { + "changes": [ + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e340", + "label": "Bots", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M86.344,197.834a51.767,51.767,0,0,0-41.57,20.058V156.018a8.19,8.19,0,0,0-8.19-8.19H8.19A8.19,8.19,0,0,0,0,156.018V333.551a8.189,8.189,0,0,0,8.19,8.189H36.584a8.189,8.189,0,0,0,8.19-8.189v-8.088c11.628,13.373,25.874,19.769,41.573,19.769,34.6,0,61.922-26.164,61.922-73.843C148.266,225.452,121.229,197.834,86.344,197.834ZM71.516,305.691c-9.593,0-21.221-4.942-26.745-12.5V250.164c5.528-7.558,17.152-12.791,26.745-12.791,17.734,0,31.107,13.082,31.107,34.013C102.623,292.609,89.25,305.691,71.516,305.691Zm156.372-59.032a17.4,17.4,0,1,0,17.4,17.4A17.4,17.4,0,0,0,227.888,246.659ZM273.956,156.7V112.039a13.308,13.308,0,1,0-10.237,0V156.7a107.49,107.49,0,1,0,10.237,0Zm85.993,107.367c0,30.531-40.792,55.281-91.112,55.281s-91.111-24.75-91.111-55.281,40.792-55.281,91.111-55.281S359.949,233.532,359.949,264.062Zm-50.163,17.4a17.4,17.4,0,1,0-17.4-17.4h0A17.4,17.4,0,0,0,309.786,281.466ZM580.7,250.455c-14.828-2.617-22.387-3.78-22.387-9.885,0-5.523,7.268-9.884,17.735-9.884a65.56,65.56,0,0,1,34.484,10.1,8.171,8.171,0,0,0,11.288-2.468c.07-.11.138-.221.2-.333l8.611-14.886a8.2,8.2,0,0,0-2.867-11.123,99.863,99.863,0,0,0-52.014-14.138c-38.956,0-60.179,21.514-60.179,46.225,0,36.342,33.725,41.864,57.563,45.642,13.373,2.326,24.13,4.361,24.13,11.048,0,6.4-5.523,10.757-18.9,10.757-13.552,0-30.994-6.222-42.623-13.579a8.206,8.206,0,0,0-11.335,2.491c-.035.054-.069.108-.1.164l-10.2,16.891a8.222,8.222,0,0,0,2.491,11.066c15.224,10.3,37.663,16.692,59.441,16.692,40.409,0,63.957-19.769,63.957-46.515C640,260.63,604.537,254.816,580.7,250.455Zm-95.928,60.787a8.211,8.211,0,0,0-9.521-5.938,23.168,23.168,0,0,1-4.155.387c-7.849,0-12.5-6.106-12.5-14.245V240.28h20.349a8.143,8.143,0,0,0,8.141-8.143V209.466a8.143,8.143,0,0,0-8.141-8.143H458.594V171.091a8.143,8.143,0,0,0-8.143-8.143H422.257a8.143,8.143,0,0,0-8.143,8.143h0v30.232H399a8.143,8.143,0,0,0-8.143,8.143h0v22.671A8.143,8.143,0,0,0,399,240.28h15.115v63.667c0,27.037,15.408,41.282,43.9,41.282,12.183,0,21.383-2.2,27.6-5.446a8.161,8.161,0,0,0,4.145-9.278Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bottle-droplet": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "drink", + "oil", + "olive oil", + "wine" + ] + }, + "unicode": "e4c4", + "label": "Bottle Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M64 0C50.7 0 40 10.7 40 24s10.7 24 24 24c4.4 0 8 3.6 8 8v64.9c0 12.2-7.2 23.1-17.2 30.1C21.7 174.1 0 212.5 0 256V448c0 35.3 28.7 64 64 64H192c35.3 0 64-28.7 64-64V256c0-43.5-21.7-81.9-54.8-105c-10-7-17.2-17.9-17.2-30.1V56c0-4.4 3.6-8 8-8c13.3 0 24-10.7 24-24s-10.7-24-24-24l-8 0 0 0 0 0H72l0 0 0 0L64 0zm64 382c-26.5 0-48-20.1-48-45c0-16.8 22.1-48.1 36.3-66.4c6-7.8 17.5-7.8 23.5 0C153.9 288.9 176 320.2 176 337c0 24.9-21.5 45-48 45z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bottle-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "h2o", + "plastic", + "water" + ] + }, + "unicode": "e4c5", + "label": "Bottle Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M88 0h80c13.3 0 24 10.7 24 24V64H64V24C64 10.7 74.7 0 88 0zM0 151.7c0-15.6 9-29.8 23.2-36.5l24.4-11.4c11-5.1 23-7.8 35.1-7.8h90.6c12.1 0 24.1 2.7 35.1 7.8l24.4 11.4c14.2 6.6 23.2 20.8 23.2 36.5c0 14.4-7.5 27-18.9 34.1c11.5 8.8 18.9 22.6 18.9 38.2c0 16.7-8.5 31.4-21.5 40c12.9 8.6 21.5 23.3 21.5 40s-8.5 31.4-21.5 40c12.9 8.6 21.5 23.3 21.5 40s-8.5 31.4-21.5 40c12.9 8.6 21.5 23.3 21.5 40c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48c0-16.7 8.5-31.4 21.5-40C8.5 415.4 0 400.7 0 384s8.5-31.4 21.5-40C8.5 335.4 0 320.7 0 304s8.5-31.4 21.5-40C8.5 255.4 0 240.7 0 224c0-15.6 7.4-29.4 18.9-38.2C7.5 178.7 0 166.1 0 151.7zM64 240c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM80 352c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bowl-food": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "catfood", + "dogfood", + "food", + "rice" + ] + }, + "unicode": "e4c6", + "label": "Bowl Food", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 192c0-35.3 28.7-64 64-64c.5 0 1.1 0 1.6 0C73 91.5 105.3 64 144 64c15 0 29 4.1 40.9 11.2C198.2 49.6 225.1 32 256 32s57.8 17.6 71.1 43.2C339 68.1 353 64 368 64c38.7 0 71 27.5 78.4 64c.5 0 1.1 0 1.6 0c35.3 0 64 28.7 64 64c0 11.7-3.1 22.6-8.6 32H8.6C3.1 214.6 0 203.7 0 192zm0 91.4C0 268.3 12.3 256 27.4 256H484.6c15.1 0 27.4 12.3 27.4 27.4c0 70.5-44.4 130.7-106.7 154.1L403.5 452c-2 16-15.6 28-31.8 28H140.2c-16.1 0-29.8-12-31.8-28l-1.8-14.4C44.4 414.1 0 353.9 0 283.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bowl-rice": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boiled", + "cooked", + "cooked rice", + "rice", + "steamed" + ] + }, + "unicode": "e2eb", + "label": "Bowl Rice", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 56c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24zm24 48h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24s10.7-24 24-24zM56 176H72c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24s10.7-24 24-24zM0 283.4C0 268.3 12.3 256 27.4 256H484.6c15.1 0 27.4 12.3 27.4 27.4c0 70.5-44.4 130.7-106.7 154.1L403.5 452c-2 16-15.6 28-31.8 28H140.2c-16.1 0-29.8-12-31.8-28l-1.8-14.4C44.4 414.1 0 353.9 0 283.4zM224 200c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H248c-13.3 0-24-10.7-24-24zm-96 0c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24zm-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H104c-13.3 0-24-10.7-24-24s10.7-24 24-24zm216 96c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H344c-13.3 0-24-10.7-24-24zm-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H296c-13.3 0-24-10.7-24-24s10.7-24 24-24zm120 96c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H440c-13.3 0-24-10.7-24-24zm-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H392c-13.3 0-24-10.7-24-24s10.7-24 24-24zM296 32h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H296c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bowling-ball": { + "aliases": { + "unicodes": { + "secondary": [ + "10f436" + ] + } + }, + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alley", + "candlepin", + "gutter", + "lane", + "strike", + "tenpin" + ] + }, + "unicode": "f436", + "label": "Bowling Ball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321787, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM240 144c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm32 64c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm-128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "box": { + "aliases": { + "unicodes": { + "composite": [ + "1f4e6" + ], + "secondary": [ + "10f466" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "box", + "container", + "package", + "parcel", + "storage" + ] + }, + "unicode": "f466", + "label": "Box", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M50.7 58.5L0 160H208V32H93.7C75.5 32 58.9 42.3 50.7 58.5zM240 160H448L397.3 58.5C389.1 42.3 372.5 32 354.3 32H240V160zm208 32H0V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "box-archive": { + "aliases": { + "names": [ + "archive" + ], + "unicodes": { + "secondary": [ + "10f187" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "box", + "package", + "save", + "storage" + ] + }, + "unicode": "f187", + "label": "Box Archive", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32H480c17.7 0 32 14.3 32 32V96c0 17.7-14.3 32-32 32H32C14.3 128 0 113.7 0 96V64C0 46.3 14.3 32 32 32zm0 128H480V416c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V160zm128 80c0 8.8 7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "box-open": { + "aliases": { + "unicodes": { + "secondary": [ + "10f49e" + ] + } + }, + "changes": [ + "5.0.9", + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "container", + "package", + "storage", + "unpack" + ] + }, + "unicode": "f49e", + "label": "Box Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M45.9 42.1c3-6.1 9.6-9.6 16.3-8.7L307 64 551.8 33.4c6.7-.8 13.3 2.7 16.3 8.7l41.7 83.4c9 17.9-.6 39.6-19.8 45.1L426.6 217.3c-13.9 4-28.8-1.9-36.2-14.3L307 64 223.6 203c-7.4 12.4-22.3 18.3-36.2 14.3L24.1 170.6C4.8 165.1-4.7 143.4 4.2 125.5L45.9 42.1zM308.1 128l54.9 91.4c14.9 24.8 44.6 36.6 72.5 28.6L563 211.6v167c0 22-15 41.2-36.4 46.6l-204.1 51c-10.2 2.6-20.9 2.6-31 0l-204.1-51C66 419.7 51 400.5 51 378.5v-167L178.6 248c27.8 8 57.6-3.8 72.5-28.6L305.9 128h2.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "box-tissue": { + "aliases": { + "unicodes": { + "secondary": [ + "10e05b" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cough", + "covid-19", + "kleenex", + "mucus", + "nose", + "sneeze", + "snot" + ] + }, + "unicode": "e05b", + "label": "Box Tissue", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M92.5 0H208c40 0 52 24 64 48s24 48 64 48h85.2C436 96 448 108 448 122.8c0 3.4-.7 6.8-1.9 10L409.6 224 384 288H128l-16-64L64.9 35.4c-.6-2.3-.9-4.6-.9-6.9C64 12.8 76.8 0 92.5 0zM79 224l16 64H80c-8.8 0-16 7.2-16 16s7.2 16 16 16h48H384h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H418.5l25.6-64H464c26.5 0 48 21.5 48 48V384H0V272c0-26.5 21.5-48 48-48H79zM0 416H512v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "boxes-packing": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "box", + "package", + "storage", + "supplies" + ] + }, + "unicode": "e4c7", + "label": "Boxes Packing", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 48c0-26.5 21.5-48 48-48H592c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H381.3c1.8-5 2.7-10.4 2.7-16V253.3c18.6-6.6 32-24.4 32-45.3V176c0-26.5-21.5-48-48-48H256V48zM571.3 347.3c6.2-6.2 6.2-16.4 0-22.6l-64-64c-6.2-6.2-16.4-6.2-22.6 0l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L480 310.6V432c0 8.8 7.2 16 16 16s16-7.2 16-16V310.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0zM0 176c0-8.8 7.2-16 16-16H368c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H16c-8.8 0-16-7.2-16-16V176zm352 80V480c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V256H352zM144 320c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "boxes-stacked": { + "aliases": { + "names": [ + "boxes", + "boxes-alt" + ], + "unicodes": { + "composite": [ + "f4a1" + ], + "primary": [ + "f4a1" + ], + "secondary": [ + "10f468", + "10f4a1" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archives", + "inventory", + "storage", + "warehouse" + ] + }, + "unicode": "f468", + "label": "Boxes Stacked", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M248 0H208c-26.5 0-48 21.5-48 48V160c0 35.3 28.7 64 64 64H352c35.3 0 64-28.7 64-64V48c0-26.5-21.5-48-48-48H328V80c0 8.8-7.2 16-16 16H264c-8.8 0-16-7.2-16-16V0zM64 256c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H224c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64H184v80c0 8.8-7.2 16-16 16H120c-8.8 0-16-7.2-16-16V256H64zM352 512H512c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64H472v80c0 8.8-7.2 16-16 16H408c-8.8 0-16-7.2-16-16V256H352c-15 0-28.8 5.1-39.7 13.8c4.9 10.4 7.7 22 7.7 34.2V464c0 12.2-2.8 23.8-7.7 34.2C323.2 506.9 337 512 352 512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "braille": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2a1" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabet", + "blind", + "dots", + "raised", + "vision" + ] + }, + "unicode": "f2a1", + "label": "Braille", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321788, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 96c0 35.3-28.7 64-64 64S0 131.3 0 96S28.7 32 64 32s64 28.7 64 64zm96 176c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm0 48c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zM80 416c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zm112 0c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM64 320c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zM224 160c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zM480 96c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zm112 0c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM576 272c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm0 48c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zm16 96c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM416 272c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm0 48c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zm16 96c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "brain": { + "aliases": { + "unicodes": { + "composite": [ + "1f9e0" + ], + "secondary": [ + "10f5dc" + ] + } + }, + "changes": [ + "5.2.0", + "5.9.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brain", + "cerebellum", + "gray matter", + "intellect", + "intelligent", + "medulla oblongata", + "mind", + "noodle", + "wit" + ] + }, + "unicode": "f5dc", + "label": "Brain", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M184 0c30.9 0 56 25.1 56 56V456c0 30.9-25.1 56-56 56c-28.9 0-52.7-21.9-55.7-50.1c-5.2 1.4-10.7 2.1-16.3 2.1c-35.3 0-64-28.7-64-64c0-7.4 1.3-14.6 3.6-21.2C21.4 367.4 0 338.2 0 304c0-31.9 18.7-59.5 45.8-72.3C37.1 220.8 32 207 32 192c0-30.7 21.6-56.3 50.4-62.6C80.8 123.9 80 118 80 112c0-29.9 20.6-55.1 48.3-62.1C131.3 21.9 155.1 0 184 0zM328 0c28.9 0 52.6 21.9 55.7 49.9c27.8 7 48.3 32.1 48.3 62.1c0 6-.8 11.9-2.4 17.4c28.8 6.2 50.4 31.9 50.4 62.6c0 15-5.1 28.8-13.8 39.7C493.3 244.5 512 272.1 512 304c0 34.2-21.4 63.4-51.6 74.8c2.3 6.6 3.6 13.8 3.6 21.2c0 35.3-28.7 64-64 64c-5.6 0-11.1-.7-16.3-2.1c-3 28.2-26.8 50.1-55.7 50.1c-30.9 0-56-25.1-56-56V56c0-30.9 25.1-56 56-56z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "brazilian-real-sign": { + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brazilian real sign", + "currency" + ] + }, + "unicode": "e46c", + "label": "Brazilian Real Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M400 0c17.7 0 32 14.3 32 32V50.2c12.5 2.3 24.7 6.4 36.2 12.1l10.1 5.1c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-10.2-5.1c-9.9-5-20.9-7.5-32-7.5h-1.7c-29.8 0-53.9 24.1-53.9 53.9c0 22 13.4 41.8 33.9 50l52 20.8c44.7 17.9 74.1 61.2 74.1 109.4v3.4c0 51.2-33.6 94.6-80 109.2V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V460.6c-15-3.5-29.4-9.7-42.3-18.3l-23.4-15.6c-14.7-9.8-18.7-29.7-8.9-44.4s29.7-18.7 44.4-8.9L361.2 389c10.8 7.2 23.4 11 36.3 11c27.9 0 50.5-22.6 50.5-50.5v-3.4c0-22-13.4-41.8-33.9-50l-52-20.8C317.3 257.4 288 214.1 288 165.9C288 114 321.5 70 368 54.2V32c0-17.7 14.3-32 32-32zM0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bread-slice": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ec" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bake", + "bakery", + "baking", + "dough", + "flour", + "gluten", + "grain", + "sandwich", + "sourdough", + "toast", + "wheat", + "yeast" + ] + }, + "unicode": "f7ec", + "label": "Bread Slice", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 32C192 32 0 64 0 192c0 35.3 28.7 64 64 64V432c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V256c35.3 0 64-28.7 64-64C512 64 320 32 256 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "road" + ] + }, + "unicode": "e4c8", + "label": "Bridge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H72v64H0V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96s96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96V160H504V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM456 96v64H376V96h80zM328 96v64H248V96h80zM200 96v64H120V96h80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "not affected", + "ok", + "okay", + "road" + ] + }, + "unicode": "e4c9", + "label": "Bridge Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64s14.3 32 32 32h40v64H32V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96c6.3 0 12.4 .6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160H536V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM488 96v64H408V96h80zM360 96v64H280V96h80zM232 96v64H152V96h80zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "bridge", + "road" + ] + }, + "unicode": "e4ca", + "label": "Bridge Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64s14.3 32 32 32h40v64H32V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96c6.3 0 12.4 .6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160H536V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM488 96v64H408V96h80zM360 96v64H280V96h80zM232 96v64H152V96h80zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "destroy", + "road" + ] + }, + "unicode": "e4cb", + "label": "Bridge Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64s14.3 32 32 32h40v64H32V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96c6.3 0 12.4 .6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160H536V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM488 96v64H408V96h80zM360 96v64H280V96h80zM232 96v64H152V96h80zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "closed", + "lockdown", + "quarantine", + "road" + ] + }, + "unicode": "e4cc", + "label": "Bridge Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 64c0-17.7 14.3-32 32-32H576c17.7 0 32 14.3 32 32s-14.3 32-32 32H536v64h-8c-61.9 0-112 50.1-112 112v24.6c-9.9 5.8-18.2 14.1-23.8 24.1c-17.6-20-43.4-32.7-72.2-32.7c-53 0-96 43-96 96v64c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V384c0-53-43-96-96-96V160h72V96H64C46.3 96 32 81.7 32 64zM408 96v64h80V96H408zm-48 64V96H280v64h80zM152 96v64h80V96H152zM528 240c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bridge-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "road" + ] + }, + "unicode": "e4ce", + "label": "Bridge Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 96C0 78.3 14.3 64 32 64H544c17.7 0 32 14.3 32 32v35.6c0 15.7-12.7 28.4-28.4 28.4c-37.3 0-67.6 30.2-67.6 67.6V352.5c-12.9 0-25.8 3.9-36.8 11.7c-18 12.4-40.1 20.3-59.2 20.3h0l0-.5V256c0-53-43-96-96-96s-96 43-96 96V384l0 .5c-19 0-41.2-7.9-59.1-20.3c-11.1-7.8-24-11.7-36.9-11.7V227.6C96 190.2 65.8 160 28.4 160C12.7 160 0 147.3 0 131.6V96zM306.5 389.9C329 405.4 356.5 416 384 416c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 469.7 417 480 384 480c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 405.2 165.1 416 192 416c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "briefcase": { + "aliases": { + "unicodes": { + "composite": [ + "1f4bc" + ], + "secondary": [ + "10f0b1" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "briefcas", + "briefcase", + "business", + "luggage", + "office", + "work" + ] + }, + "unicode": "f0b1", + "label": "Briefcase", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96H64C28.7 96 0 124.7 0 160v96H192 320 512V160c0-35.3-28.7-64-64-64H384V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zM512 288H320v32c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32V288H0V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "briefcase-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f469" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "doctor", + "emt", + "first aid", + "health" + ] + }, + "unicode": "f469", + "label": "Briefcase Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H384V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zm96 152c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H288v48c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V320H176c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h48V208z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "broom": { + "aliases": { + "unicodes": { + "composite": [ + "1f9f9" + ], + "secondary": [ + "10f51a" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "broom", + "clean", + "cleaning", + "firebolt", + "fly", + "halloween", + "nimbus 2000", + "quidditch", + "sweep", + "sweeping", + "witch" + ] + }, + "unicode": "f51a", + "label": "Broom", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M566.6 54.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192-34.7-34.7c-4.2-4.2-10-6.6-16-6.6c-12.5 0-22.6 10.1-22.6 22.6v29.1L364.3 320h29.1c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16l-34.7-34.7 192-192zM341.1 353.4L222.6 234.9c-42.7-3.7-85.2 11.7-115.8 42.3l-8 8C76.5 307.5 64 337.7 64 369.2c0 6.8 7.1 11.2 13.2 8.2l51.1-25.5c5-2.5 9.5 4.1 5.4 7.9L7.3 473.4C2.7 477.6 0 483.6 0 489.9C0 502.1 9.9 512 22.1 512l173.3 0c38.8 0 75.9-15.4 103.4-42.8c30.6-30.6 45.9-73.1 42.3-115.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "broom-ball": { + "aliases": { + "names": [ + "quidditch", + "quidditch-broom-ball" + ], + "unicodes": { + "secondary": [ + "10f458" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "bludger", + "broom", + "golden snitch", + "harry potter", + "hogwarts", + "quaffle", + "sport", + "wizard" + ] + }, + "unicode": "f458", + "label": "Broom Ball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M566.6 9.4c12.5 12.5 12.5 32.8 0 45.3l-192 192 34.7 34.7c4.2 4.2 6.6 10 6.6 16c0 12.5-10.1 22.6-22.6 22.6H364.3L256 211.7V182.6c0-12.5 10.1-22.6 22.6-22.6c6 0 11.8 2.4 16 6.6l34.7 34.7 192-192c12.5-12.5 32.8-12.5 45.3 0zm-344 225.5L341.1 353.4c3.7 42.7-11.7 85.2-42.3 115.8C271.4 496.6 234.2 512 195.5 512L22.1 512C9.9 512 0 502.1 0 489.9c0-6.3 2.7-12.3 7.3-16.5L133.7 359.7c4.2-3.7-.4-10.4-5.4-7.9L77.2 377.4c-6.1 3-13.2-1.4-13.2-8.2c0-31.5 12.5-61.7 34.8-84l8-8c30.6-30.6 73.1-45.9 115.8-42.3zM464 352a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "brush": { + "aliases": { + "unicodes": { + "secondary": [ + "10f55d" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "bristles", + "color", + "handle", + "paint" + ] + }, + "unicode": "f55d", + "label": "Brush", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 64L160 0H128L96 64 64 0H48C21.5 0 0 21.5 0 48V256H384V48c0-26.5-21.5-48-48-48H224L192 64zM0 288v32c0 35.3 28.7 64 64 64h64v64c0 35.3 28.7 64 64 64s64-28.7 64-64V384h64c35.3 0 64-28.7 64-64V288H0zM192 432a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "btc": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f15a", + "label": "BTC", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bucket": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bucket", + "pail", + "sandcastle" + ] + }, + "unicode": "e4cf", + "label": "Bucket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321789, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 152v8H48v-8C48 68.1 116.1 0 200 0h48c83.9 0 152 68.1 152 152v8H352v-8c0-57.4-46.6-104-104-104H200C142.6 48 96 94.6 96 152zM0 224c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32h-5.1L388.5 469c-2.6 24.4-23.2 43-47.7 43H107.2c-24.6 0-45.2-18.5-47.7-43L37.1 256H32c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "buffer": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f837", + "label": "Buffer", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M427.84 380.67l-196.5 97.82a18.6 18.6 0 0 1-14.67 0L20.16 380.67c-4-2-4-5.28 0-7.29L67.22 350a18.65 18.65 0 0 1 14.69 0l134.76 67a18.51 18.51 0 0 0 14.67 0l134.76-67a18.62 18.62 0 0 1 14.68 0l47.06 23.43c4.05 1.96 4.05 5.24 0 7.24zm0-136.53l-47.06-23.43a18.62 18.62 0 0 0-14.68 0l-134.76 67.08a18.68 18.68 0 0 1-14.67 0L81.91 220.71a18.65 18.65 0 0 0-14.69 0l-47.06 23.43c-4 2-4 5.29 0 7.31l196.51 97.8a18.6 18.6 0 0 0 14.67 0l196.5-97.8c4.05-2.02 4.05-5.3 0-7.31zM20.16 130.42l196.5 90.29a20.08 20.08 0 0 0 14.67 0l196.51-90.29c4-1.86 4-4.89 0-6.74L231.33 33.4a19.88 19.88 0 0 0-14.67 0l-196.5 90.28c-4.05 1.85-4.05 4.88 0 6.74z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "bug": { + "aliases": { + "unicodes": { + "secondary": [ + "10f188" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.15.4", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beetle", + "error", + "glitch", + "insect", + "repair", + "report" + ] + }, + "unicode": "f188", + "label": "Bug", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c53 0 96 43 96 96v3.6c0 15.7-12.7 28.4-28.4 28.4H188.4c-15.7 0-28.4-12.7-28.4-28.4V96c0-53 43-96 96-96zM41.4 105.4c12.5-12.5 32.8-12.5 45.3 0l64 64c.7 .7 1.3 1.4 1.9 2.1c14.2-7.3 30.4-11.4 47.5-11.4H312c17.1 0 33.2 4.1 47.5 11.4c.6-.7 1.2-1.4 1.9-2.1l64-64c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-64 64c-.7 .7-1.4 1.3-2.1 1.9c6.2 12 10.1 25.3 11.1 39.5H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H416c0 24.6-5.5 47.8-15.4 68.6c2.2 1.3 4.2 2.9 6 4.8l64 64c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-63.1-63.1c-24.5 21.8-55.8 36.2-90.3 39.6V240c0-8.8-7.2-16-16-16s-16 7.2-16 16V479.2c-34.5-3.4-65.8-17.8-90.3-39.6L86.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l64-64c1.9-1.9 3.9-3.4 6-4.8C101.5 367.8 96 344.6 96 320H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96.3c1.1-14.1 5-27.5 11.1-39.5c-.7-.6-1.4-1.2-2.1-1.9l-64-64c-12.5-12.5-12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bug-slash": { + "changes": [ + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beetle", + "fix", + "glitch", + "insect", + "optimize", + "repair", + "report", + "warning" + ] + }, + "unicode": "e490", + "label": "Bug Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L477.4 348.9c1.7-9.4 2.6-19 2.6-28.9h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H479.7c-1.1-14.1-5-27.5-11.1-39.5c.7-.6 1.4-1.2 2.1-1.9l64-64c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-64 64c-.7 .7-1.3 1.4-1.9 2.1C409.2 164.1 393.1 160 376 160H264c-8.3 0-16.3 1-24 2.8L38.8 5.1zM320 0c-53 0-96 43-96 96v3.6c0 15.7 12.7 28.4 28.4 28.4H387.6c15.7 0 28.4-12.7 28.4-28.4V96c0-53-43-96-96-96zM160.3 256H96c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c0 24.6 5.5 47.8 15.4 68.6c-2.2 1.3-4.2 2.9-6 4.8l-64 64c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l63.1-63.1c24.5 21.8 55.8 36.2 90.3 39.6V335.5L166.7 227.3c-3.4 9-5.6 18.7-6.4 28.7zM336 479.2c36.6-3.6 69.7-19.6 94.8-43.8L336 360.7V479.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bugs": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bedbug", + "infestation", + "lice", + "plague", + "ticks" + ] + }, + "unicode": "e4d0", + "label": "Bugs", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M164.5 107.4l33.4-73.5c5.5-12.1 .1-26.3-11.9-31.8s-26.3-.1-31.8 11.9L128 71.7 101.9 14.1C96.4 2 82.1-3.3 70.1 2.1S52.7 21.9 58.1 33.9l33.4 73.5c-10.2 7.1-18.2 17-22.9 28.6h-17l-4.1-20.7c-2.6-13-15.2-21.4-28.2-18.8S-2.1 111.7 .5 124.7l8 40C10.7 175.9 20.6 184 32 184H64v23.3l-37.8 9.5c-9.5 2.4-16.6 10.2-17.9 19.9l-8 56c-1.9 13.1 7.2 25.3 20.4 27.2s25.3-7.2 27.2-20.4l5.7-40 18.4-4.6C82.7 274.6 103.8 288 128 288s45.3-13.4 56.1-33.2l18.4 4.6 5.7 40c1.9 13.1 14 22.2 27.2 20.4s22.2-14 20.4-27.2l-8-56c-1.4-9.7-8.5-17.5-17.9-19.9L192 207.3V184h32c11.4 0 21.3-8.1 23.5-19.3l8-40c2.6-13-5.8-25.6-18.8-28.2s-25.6 5.8-28.2 18.8L204.3 136h-17c-4.7-11.6-12.7-21.5-22.9-28.6zM496 286.5l65.6-47c10.8-7.7 13.3-22.7 5.6-33.5s-22.7-13.3-33.5-5.6l-51.4 36.8 6.1-62.9c1.3-13.2-8.4-24.9-21.6-26.2s-24.9 8.4-26.2 21.6L432.8 250c-12.3 1-24.2 5.6-34.1 13.3L384 254.8l6.8-20c4.2-12.6-2.5-26.2-15-30.4s-26.2 2.5-30.4 15l-13.1 38.6c-3.7 10.8 .8 22.8 10.7 28.5l27.7 16L359 322.7 321.5 312c-9.4-2.7-19.5 .6-25.5 8.3l-34.9 44.5c-8.2 10.4-6.4 25.5 4.1 33.7s25.5 6.4 33.7-4.1l25-31.8 18.2 5.2c-.5 22.6 11 44.7 32 56.8s45.9 11 65.2-.7l13.6 13.2-15.1 37.5c-4.9 12.3 1 26.3 13.3 31.2s26.3-1 31.2-13.3L503.5 440c3.6-9.1 1.4-19.4-5.6-26.2l-28-27.1 11.6-20.1 27.7 16c9.9 5.7 22.5 3.7 30-4.9L566.2 347c8.7-10 7.8-25.1-2.2-33.9s-25.1-7.8-33.9 2.2l-13.9 15.9-14.7-8.5c1.7-12.4-.2-25-5.5-36.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building": { + "aliases": { + "unicodes": { + "composite": [ + "1f3e2", + "f0f7" + ], + "secondary": [ + "10f1ad" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apartment", + "building", + "business", + "city", + "company", + "office", + "office building", + "urban", + "work" + ] + }, + "unicode": "f1ad", + "label": "Building", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16z" + }, + "regular": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 48c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16h80V400c0-26.5 21.5-48 48-48s48 21.5 48 48v64h80c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H64zM0 64C0 28.7 28.7 0 64 0H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm88 40c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16H104c-8.8 0-16-7.2-16-16V104zM232 88h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16H232c-8.8 0-16-7.2-16-16V104c0-8.8 7.2-16 16-16zM88 232c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16H104c-8.8 0-16-7.2-16-16V232zm144-16h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16H232c-8.8 0-16-7.2-16-16V232c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "building-circle-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "distribution center", + "office" + ] + }, + "unicode": "e4d1", + "label": "Building Circle Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V232.2c-39.1 32.3-64 81.1-64 135.8c0 49.5 20.4 94.2 53.3 126.2C364.5 505.1 351.1 512 336 512H240V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48V48zM80 224c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm112-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H272zM64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM176 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H176zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16zm96 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm140.7-67.3c-6.2 6.2-6.2 16.4 0 22.6L521.4 352H432c-8.8 0-16 7.2-16 16s7.2 16 16 16h89.4l-28.7 28.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l56-56c6.2-6.2 6.2-16.4 0-22.6l-56-56c-6.2-6.2-16.4-6.2-22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "not affected", + "office", + "ok", + "okay" + ] + }, + "unicode": "e4d2", + "label": "Building Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8C340.4 462.2 320 417.5 320 368c0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "building", + "city", + "office" + ] + }, + "unicode": "e4d3", + "label": "Building Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8C340.4 462.2 320 417.5 320 368c0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "destroy", + "office" + ] + }, + "unicode": "e4d4", + "label": "Building Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8C340.4 462.2 320 417.5 320 368c0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-columns": { + "aliases": { + "names": [ + "bank", + "institution", + "museum", + "university" + ], + "unicodes": { + "secondary": [ + "10f19c" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.0.3", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "building", + "college", + "education", + "institution", + "museum", + "students" + ] + }, + "unicode": "f19c", + "label": "Building Columns", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M243.4 2.6l-224 96c-14 6-21.8 21-18.7 35.8S16.8 160 32 160v8c0 13.3 10.7 24 24 24H456c13.3 0 24-10.7 24-24v-8c15.2 0 28.3-10.7 31.3-25.6s-4.8-29.9-18.7-35.8l-224-96c-8.1-3.4-17.2-3.4-25.2 0zM128 224H64V420.3c-.6 .3-1.2 .7-1.8 1.1l-48 32c-11.7 7.8-17 22.4-12.9 35.9S17.9 512 32 512H480c14.1 0 26.5-9.2 30.6-22.7s-1.1-28.1-12.9-35.9l-48-32c-.6-.4-1.2-.7-1.8-1.1V224H384V416H344V224H280V416H232V224H168V416H128V224zM256 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + " city", + "building", + "diplomat", + "embassy", + "flag", + "headquarters", + "united nations" + ] + }, + "unicode": "e4d5", + "label": "Building Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM448 0c-17.7 0-32 14.3-32 32V512h64V192H624c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H480c0-17.7-14.3-32-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "closed", + "lock", + "lockdown", + "quarantine", + "secure" + ] + }, + "unicode": "e4d6", + "label": "Building Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h88.6c-5.4-9.4-8.6-20.3-8.6-32V352c0-23.7 12.9-44.4 32-55.4V272c0-30.5 12.2-58.2 32-78.4V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM464 240c17.7 0 32 14.3 32 32v48H432V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H544c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-ngo": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + " city", + "building", + "non governmental organization", + "office" + ] + }, + "unicode": "e4d7", + "label": "Building Ngo", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM168 64h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H184v64h16V144c0-8.8 7.2-16 16-16s16 7.2 16 16v24c0 13.3-10.7 24-24 24H176c-13.3 0-24-10.7-24-24V80c0-8.8 7.2-16 16-16zM304 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16s16-7.2 16-16V112c0-8.8-7.2-16-16-16zm-48 16c0-26.5 21.5-48 48-48s48 21.5 48 48v32c0 26.5-21.5 48-48 48s-48-21.5-48-48V112zM61.3 71.1l34.7 52V80c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4L64 132.8V176c0 8.8-7.2 16-16 16s-16-7.2-16-16V80c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-shield": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "police", + "protect", + "safety" + ] + }, + "unicode": "e4d8", + "label": "Building Shield", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V207l-42.4 17H304 272c-8.8 0-16 7.2-16 16v32 24.2V304c0 .9 .1 1.7 .2 2.6c2.3 58.1 24.1 144.8 98.7 201.5c-5.8 2.5-12.2 3.9-18.9 3.9H240V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48V48zM80 224c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zM64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM176 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H176zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16zM423.1 225.7c5.7-2.3 12.1-2.3 17.8 0l120 48C570 277.4 576 286.2 576 296c0 63.3-25.9 168.8-134.8 214.2c-5.9 2.5-12.6 2.5-18.5 0C313.9 464.8 288 359.3 288 296c0-9.8 6-18.6 15.1-22.3l120-48zM527.4 312L432 273.8V461.7c68.2-33 91.5-99 95.4-149.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-un": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "office", + "united nations" + ] + }, + "unicode": "e4d9", + "label": "Building Un", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM237.3 71.1l34.7 52V80c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52V176c0 8.8-7.2 16-16 16s-16-7.2-16-16V80c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4zM112 80v64c0 8.8 7.2 16 16 16s16-7.2 16-16V80c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48V80c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-user": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apartment", + "building", + "city" + ] + }, + "unicode": "e4da", + "label": "Building User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h89.9c-6.3-10.2-9.9-22.2-9.9-35.1c0-46.9 25.8-87.8 64-109.2V271.8 48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM576 272a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM352 477.1c0 19.3 15.6 34.9 34.9 34.9H605.1c19.3 0 34.9-15.6 34.9-34.9c0-51.4-41.7-93.1-93.1-93.1H445.1c-51.4 0-93.1 41.7-93.1 93.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "building-wheat": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agriculture", + "building", + "city", + "usda" + ] + }, + "unicode": "e4db", + "label": "Building Wheat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H240V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48V48zM80 224c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm112-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H272zM64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM176 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H176zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16zm384 80v16c0 44.2-35.8 80-80 80H544V272c0-44.2 35.8-80 80-80h16zm0 128c0 44.2-35.8 80-80 80H544V384c0-44.2 35.8-80 80-80h16v16zm0 112c0 44.2-35.8 80-80 80H544V496c0-44.2 35.8-80 80-80h16v16zM512 496v16H496c-44.2 0-80-35.8-80-80V416h16c44.2 0 80 35.8 80 80zm0-96H496c-44.2 0-80-35.8-80-80V304h16c44.2 0 80 35.8 80 80v16zm0-128v16H496c-44.2 0-80-35.8-80-80V192h16c44.2 0 80 35.8 80 80zM528 32c13.3 0 24 10.7 24 24V160c0 13.3-10.7 24-24 24s-24-10.7-24-24V56c0-13.3 10.7-24 24-24zm96 64v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V96c0-13.3 10.7-24 24-24s24 10.7 24 24zM456 72c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V96c0-13.3 10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bullhorn": { + "aliases": { + "unicodes": { + "composite": [ + "1f4e2", + "1f56b" + ], + "secondary": [ + "10f0a1" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Bullhorn", + "announcement", + "broadcast", + "loud", + "louder", + "loudspeaker", + "megaphone", + "public address", + "share" + ] + }, + "unicode": "f0a1", + "label": "Bullhorn", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480 32c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9L381.7 53c-48 48-113.1 75-181 75H192 160 64c-35.3 0-64 28.7-64 64v96c0 35.3 28.7 64 64 64l0 128c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V352l8.7 0c67.9 0 133 27 181 75l43.6 43.6c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V300.4c18.6-8.8 32-32.5 32-60.4s-13.4-51.6-32-60.4V32zm-64 76.7V240 371.3C357.2 317.8 280.5 288 200.7 288H192V192h8.7c79.8 0 156.5-29.8 215.3-83.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bullseye": { + "aliases": { + "unicodes": { + "secondary": [ + "10f140" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.3.0", + "5.10.1", + "5.15.4", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archery", + "goal", + "objective", + "target" + ] + }, + "unicode": "f140", + "label": "Bullseye", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 256A192 192 0 1 0 64 256a192 192 0 1 0 384 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 80a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm0-224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zM224 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "burger": { + "aliases": { + "names": [ + "hamburger" + ], + "unicodes": { + "secondary": [ + "10f805" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bacon", + "beef", + "burger", + "burger king", + "cheeseburger", + "fast food", + "grill", + "ground beef", + "mcdonalds", + "sandwich" + ] + }, + "unicode": "f805", + "label": "Burger", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M45.1 224C29 224 16 211 16 194.9c0-1.9 .2-3.7 .6-5.6C21.9 168.3 62.8 32 240 32s218.1 136.3 223.4 157.3c.5 1.9 .6 3.7 .6 5.6c0 16.1-13 29.1-29.1 29.1H45.1zM128 128a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm240 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32zM256 96a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zM0 304c0-26.5 21.5-48 48-48H432c26.5 0 48 21.5 48 48s-21.5 48-48 48H48c-26.5 0-48-21.5-48-48zm16 96c0-8.8 7.2-16 16-16H448c8.8 0 16 7.2 16 16v16c0 35.3-28.7 64-64 64H80c-35.3 0-64-28.7-64-64V400z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "buromobelexperte": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f37f", + "label": "Büromöbel-Experte GmbH & Co. KG.", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boom", + "crash", + "explosion" + ] + }, + "unicode": "e4dc", + "label": "Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M37.6 4.2C28-2.3 15.2-1.1 7 7s-9.4 21-2.8 30.5l112 163.3L16.6 233.2C6.7 236.4 0 245.6 0 256s6.7 19.6 16.6 22.8l103.1 33.4L66.8 412.8c-4.9 9.3-3.2 20.7 4.3 28.1s18.8 9.2 28.1 4.3l100.6-52.9 33.4 103.1c3.2 9.9 12.4 16.6 22.8 16.6s19.6-6.7 22.8-16.6l33.4-103.1 100.6 52.9c9.3 4.9 20.7 3.2 28.1-4.3s9.2-18.8 4.3-28.1L392.3 312.2l103.1-33.4c9.9-3.2 16.6-12.4 16.6-22.8s-6.7-19.6-16.6-22.8L388.9 198.7l25.7-70.4c3.2-8.8 1-18.6-5.6-25.2s-16.4-8.8-25.2-5.6l-70.4 25.7L278.8 16.6C275.6 6.7 266.4 0 256 0s-19.6 6.7-22.8 16.6l-32.3 99.6L37.6 4.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bus": { + "aliases": { + "unicodes": { + "composite": [ + "1f68d" + ], + "secondary": [ + "10f207" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bus", + "oncoming", + "oncoming bus", + "public transportation", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f207", + "label": "Bus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0C390.4 0 480 35.2 480 80V96l0 32c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32l0 160c0 17.7-14.3 32-32 32v32c0 17.7-14.3 32-32 32H384c-17.7 0-32-14.3-32-32V448H160v32c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32l0-32c-17.7 0-32-14.3-32-32l0-160c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h0V96h0V80C32 35.2 121.6 0 256 0zM96 160v96c0 17.7 14.3 32 32 32H240V128H128c-17.7 0-32 14.3-32 32zM272 288H384c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H272V288zM112 400a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm288 0a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM352 80c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16s7.2 16 16 16H336c8.8 0 16-7.2 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "bus-simple": { + "aliases": { + "names": [ + "bus-alt" + ], + "unicodes": { + "secondary": [ + "10f55e" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mta", + "public transportation", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f55e", + "label": "Bus Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0C348.8 0 448 35.2 448 80V96 416c0 17.7-14.3 32-32 32v32c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V448H128v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32l0-32c-17.7 0-32-14.3-32-32V96 80C0 35.2 99.2 0 224 0zM64 128V256c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32zM80 400a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm288 0a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "business-time": { + "aliases": { + "names": [ + "briefcase-clock" + ], + "unicodes": { + "secondary": [ + "10f64a" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alarm", + "briefcase", + "business socks", + "clock", + "flight of the conchords", + "reminder", + "wednesday" + ] + }, + "unicode": "f64a", + "label": "Business Time", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96H64C28.7 96 0 124.7 0 160v96H192 352h8.2c32.3-39.1 81.1-64 135.8-64c5.4 0 10.7 .2 16 .7V160c0-35.3-28.7-64-64-64H384V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zM320 352H224c-17.7 0-32-14.3-32-32V288H0V416c0 35.3 28.7 64 64 64H360.2C335.1 449.6 320 410.5 320 368c0-5.4 .2-10.7 .7-16l-.7 0zm320 16a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zM496 288c8.8 0 16 7.2 16 16v48h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H496c-8.8 0-16-7.2-16-16V304c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "buy-n-large": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f8a6", + "label": "Buy n Large", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 32C133.27 32 7.79 132.32 7.79 256S133.27 480 288 480s280.21-100.32 280.21-224S442.73 32 288 32zm-85.39 357.19L64.1 390.55l77.25-290.74h133.44c63.15 0 84.93 28.65 78 72.84a60.24 60.24 0 0 1-1.5 6.85 77.39 77.39 0 0 0-17.21-1.93c-42.35 0-76.69 33.88-76.69 75.65 0 37.14 27.14 68 62.93 74.45-18.24 37.16-56.16 60.92-117.71 61.52zM358 207.11h32l-22.16 90.31h-35.41l-11.19-35.63-7.83 35.63h-37.83l26.63-90.31h31.34l15 36.75zm145.86 182.08H306.79L322.63 328a78.8 78.8 0 0 0 11.47.83c42.34 0 76.69-33.87 76.69-75.65 0-32.65-21-60.46-50.38-71.06l21.33-82.35h92.5l-53.05 205.36h103.87zM211.7 269.39H187l-13.8 56.47h24.7c16.14 0 32.11-3.18 37.94-26.65 5.56-22.31-7.99-29.82-24.14-29.82zM233 170h-21.34L200 217.71h21.37c18 0 35.38-14.64 39.21-30.14C265.23 168.71 251.07 170 233 170z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "buysellads": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f20d", + "label": "BuySellAds", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "c": { + "aliases": { + "unicodes": { + "composite": [ + "63" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter C", + "Latin Small Letter C", + "letter" + ] + }, + "unicode": "43", + "label": "C", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M329.1 142.9c-62.5-62.5-155.8-62.5-218.3 0s-62.5 163.8 0 226.3s155.8 62.5 218.3 0c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3c-87.5 87.5-221.3 87.5-308.8 0s-87.5-229.3 0-316.8s221.3-87.5 308.8 0c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cable-car": { + "aliases": { + "names": [ + "tram" + ], + "unicodes": { + "composite": [ + "1f6a1", + "e0cf" + ], + "secondary": [ + "10f7da" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aerial tramway", + "cable", + "gondola", + "lift", + "mountain", + "mountain cableway", + "tram", + "tramway", + "trolley" + ] + }, + "unicode": "f7da", + "label": "Cable Car", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 0a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM160 56a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM32 288c0-35.3 28.7-64 64-64H232V157.5l-203.1 42c-13 2.7-25.7-5.7-28.4-18.6s5.7-25.7 18.6-28.4l232-48 232-48c13-2.7 25.7 5.7 28.4 18.6s-5.7 25.7-18.6 28.4L280 147.5V224H416c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V288zm64 0c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H96zm112 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H224c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cake-candles": { + "aliases": { + "names": [ + "birthday-cake", + "cake" + ], + "unicodes": { + "composite": [ + "1f382" + ], + "secondary": [ + "10f1fd" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anniversary", + "bakery", + "birthday", + "birthday cake", + "cake", + "candles", + "celebration", + "dessert", + "frosting", + "holiday", + "party", + "pastry", + "sweet" + ] + }, + "unicode": "f1fd", + "label": "Cake Candles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M86.4 5.5L61.8 47.6C58 54.1 56 61.6 56 69.2V72c0 22.1 17.9 40 40 40s40-17.9 40-40V69.2c0-7.6-2-15-5.8-21.6L105.6 5.5C103.6 2.1 100 0 96 0s-7.6 2.1-9.6 5.5zm128 0L189.8 47.6c-3.8 6.5-5.8 14-5.8 21.6V72c0 22.1 17.9 40 40 40s40-17.9 40-40V69.2c0-7.6-2-15-5.8-21.6L233.6 5.5C231.6 2.1 228 0 224 0s-7.6 2.1-9.6 5.5zM317.8 47.6c-3.8 6.5-5.8 14-5.8 21.6V72c0 22.1 17.9 40 40 40s40-17.9 40-40V69.2c0-7.6-2-15-5.8-21.6L361.6 5.5C359.6 2.1 356 0 352 0s-7.6 2.1-9.6 5.5L317.8 47.6zM128 176c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c-35.3 0-64 28.7-64 64v71c8.3 5.2 18.1 9 28.8 9c13.5 0 27.2-6.1 38.4-13.4c5.4-3.5 9.9-7.1 13-9.7c1.5-1.3 2.7-2.4 3.5-3.1c.4-.4 .7-.6 .8-.8l.1-.1 0 0 0 0s0 0 0 0s0 0 0 0c3.1-3.2 7.4-4.9 11.9-4.8s8.6 2.1 11.6 5.4l0 0 0 0 .1 .1c.1 .1 .4 .4 .7 .7c.7 .7 1.7 1.7 3.1 3c2.8 2.6 6.8 6.1 11.8 9.5c10.2 7.1 23 13.1 36.3 13.1s26.1-6 36.3-13.1c5-3.5 9-6.9 11.8-9.5c1.4-1.3 2.4-2.3 3.1-3c.3-.3 .6-.6 .7-.7l.1-.1c3-3.5 7.4-5.4 12-5.4s9 2 12 5.4l.1 .1c.1 .1 .4 .4 .7 .7c.7 .7 1.7 1.7 3.1 3c2.8 2.6 6.8 6.1 11.8 9.5c10.2 7.1 23 13.1 36.3 13.1s26.1-6 36.3-13.1c5-3.5 9-6.9 11.8-9.5c1.4-1.3 2.4-2.3 3.1-3c.3-.3 .6-.6 .7-.7l.1-.1c2.9-3.4 7.1-5.3 11.6-5.4s8.7 1.6 11.9 4.8l0 0 0 0 0 0 .1 .1c.2 .2 .4 .4 .8 .8c.8 .7 1.9 1.8 3.5 3.1c3.1 2.6 7.5 6.2 13 9.7c11.2 7.3 24.9 13.4 38.4 13.4c10.7 0 20.5-3.9 28.8-9V288c0-35.3-28.7-64-64-64V176c0-17.7-14.3-32-32-32s-32 14.3-32 32v48H256V176c0-17.7-14.3-32-32-32s-32 14.3-32 32v48H128V176zM448 394.6c-8.5 3.3-18.2 5.4-28.8 5.4c-22.5 0-42.4-9.9-55.8-18.6c-4.1-2.7-7.8-5.4-10.9-7.8c-2.8 2.4-6.1 5-9.8 7.5C329.8 390 310.6 400 288 400s-41.8-10-54.6-18.9c-3.5-2.4-6.7-4.9-9.4-7.2c-2.7 2.3-5.9 4.7-9.4 7.2C201.8 390 182.6 400 160 400s-41.8-10-54.6-18.9c-3.7-2.6-7-5.2-9.8-7.5c-3.1 2.4-6.8 5.1-10.9 7.8C71.2 390.1 51.3 400 28.8 400c-10.6 0-20.3-2.2-28.8-5.4V480c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32V394.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "calculator": { + "aliases": { + "unicodes": { + "composite": [ + "1f5a9" + ], + "secondary": [ + "10f1ec" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.3.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pocket Calculator", + "abacus", + "addition", + "arithmetic", + "counting", + "math", + "multiplication", + "subtraction" + ] + }, + "unicode": "f1ec", + "label": "Calculator", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM96 64H288c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32zm32 160a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zM96 352a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM64 416c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zM192 256a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm32 64a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm64-64a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm32 64a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zM288 448a32 32 0 1 1 0-64 32 32 0 1 1 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "calendar": { + "aliases": { + "unicodes": { + "composite": [ + "1f4c5", + "1f4c6" + ], + "secondary": [ + "10f133" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calendar", + "calendar-o", + "date", + "day", + "event", + "month", + "schedule", + "tear-off calendar", + "time", + "when", + "year" + ] + }, + "unicode": "f133", + "label": "Calendar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 32V64H48C21.5 64 0 85.5 0 112v48H448V112c0-26.5-21.5-48-48-48H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V64H160V32c0-17.7-14.3-32-32-32S96 14.3 96 32zM448 192H0V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V192z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H64C28.7 64 0 92.7 0 128v16 48V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H344V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H152V24zM48 192H400V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "calendar-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f274" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "appointment", + "confirm", + "correct", + "date", + "day", + "done", + "event", + "month", + "ok", + "schedule", + "select", + "success", + "tick", + "time", + "todo", + "when", + "year" + ] + }, + "unicode": "f274", + "label": "Calendar Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zM329 305c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-95 95-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L329 305z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c13.3 0 24 10.7 24 24V64H296V24c0-13.3 10.7-24 24-24s24 10.7 24 24V64h40c35.3 0 64 28.7 64 64v16 48V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192 144 128C0 92.7 28.7 64 64 64h40V24c0-13.3 10.7-24 24-24zM400 192H48V448c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V192zM329 297L217 409c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47 95-95c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "calendar-day": { + "aliases": { + "unicodes": { + "secondary": [ + "10f783" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "date", + "day", + "detail", + "event", + "focus", + "month", + "schedule", + "single day", + "time", + "today", + "when", + "year" + ] + }, + "unicode": "f783", + "label": "Calendar Day", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm80 64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "calendar-days": { + "aliases": { + "names": [ + "calendar-alt" + ], + "unicodes": { + "secondary": [ + "10f073" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.6.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calendar", + "date", + "day", + "event", + "month", + "schedule", + "time", + "when", + "year" + ] + }, + "unicode": "f073", + "label": "Calendar Days", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm64 80v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm128 0v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H336zM64 400v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H208zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H336c-8.8 0-16 7.2-16 16z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H64C28.7 64 0 92.7 0 128v16 48V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H344V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H152V24zM48 192h80v56H48V192zm0 104h80v64H48V296zm128 0h96v64H176V296zm144 0h80v64H320V296zm80-48H320V192h80v56zm0 160v40c0 8.8-7.2 16-16 16H320V408h80zm-128 0v56H176V408h96zm-144 0v56H64c-8.8 0-16-7.2-16-16V408h80zM272 248H176V192h96v56z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "calendar-minus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f272" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calendar", + "date", + "day", + "delete", + "event", + "month", + "negative", + "remove", + "schedule", + "time", + "when", + "year" + ] + }, + "unicode": "f272", + "label": "Calendar Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zM312 376c13.3 0 24-10.7 24-24s-10.7-24-24-24H136c-13.3 0-24 10.7-24 24s10.7 24 24 24H312z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c13.3 0 24 10.7 24 24V64H296V24c0-13.3 10.7-24 24-24s24 10.7 24 24V64h40c35.3 0 64 28.7 64 64v16 48V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192 144 128C0 92.7 28.7 64 64 64h40V24c0-13.3 10.7-24 24-24zM400 192H48V448c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V192zM296 352H152c-13.3 0-24-10.7-24-24s10.7-24 24-24H296c13.3 0 24 10.7 24 24s-10.7 24-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "calendar-plus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f271" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "calendar", + "create", + "date", + "day", + "event", + "month", + "new", + "positive", + "schedule", + "time", + "when", + "year" + ] + }, + "unicode": "f271", + "label": "Calendar Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 32V64H48C21.5 64 0 85.5 0 112v48H448V112c0-26.5-21.5-48-48-48H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V64H160V32c0-17.7-14.3-32-32-32S96 14.3 96 32zM448 192H0V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V192zM224 248c13.3 0 24 10.7 24 24v56h56c13.3 0 24 10.7 24 24s-10.7 24-24 24H248v56c0 13.3-10.7 24-24 24s-24-10.7-24-24V376H144c-13.3 0-24-10.7-24-24s10.7-24 24-24h56V272c0-13.3 10.7-24 24-24z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H64C28.7 64 0 92.7 0 128v16 48V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H344V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H152V24zM48 192H400V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192zm176 40c-13.3 0-24 10.7-24 24v48H152c-13.3 0-24 10.7-24 24s10.7 24 24 24h48v48c0 13.3 10.7 24 24 24s24-10.7 24-24V352h48c13.3 0 24-10.7 24-24s-10.7-24-24-24H248V256c0-13.3-10.7-24-24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "calendar-week": { + "aliases": { + "unicodes": { + "secondary": [ + "10f784" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "date", + "day", + "detail", + "event", + "focus", + "month", + "schedule", + "single week", + "time", + "today", + "when", + "year" + ] + }, + "unicode": "f784", + "label": "Calendar Week", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm80 64c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16H368c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "calendar-xmark": { + "aliases": { + "names": [ + "calendar-times" + ], + "unicodes": { + "secondary": [ + "10f273" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "calendar", + "date", + "day", + "delete", + "event", + "month", + "remove", + "schedule", + "time", + "when", + "x", + "year" + ] + }, + "unicode": "f273", + "label": "Calendar Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zM305 305c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c13.3 0 24 10.7 24 24V64H296V24c0-13.3 10.7-24 24-24s24 10.7 24 24V64h40c35.3 0 64 28.7 64 64v16 48V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192 144 128C0 92.7 28.7 64 64 64h40V24c0-13.3 10.7-24 24-24zM400 192H48V448c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V192zm-95 89l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "camera": { + "aliases": { + "names": [ + "camera-alt" + ], + "unicodes": { + "composite": [ + "f332" + ], + "primary": [ + "f332" + ], + "secondary": [ + "10f030", + "10f332" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "image", + "lens", + "photo", + "picture", + "record", + "shutter", + "video" + ] + }, + "unicode": "f030", + "label": "Camera", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M149.1 64.8L138.7 96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H373.3L362.9 64.8C356.4 45.2 338.1 32 317.4 32H194.6c-20.7 0-39 13.2-45.5 32.8zM256 192a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "camera-retro": { + "aliases": { + "unicodes": { + "composite": [ + "1f4f7" + ], + "secondary": [ + "10f083" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camera", + "image", + "lens", + "photo", + "picture", + "record", + "shutter", + "video" + ] + }, + "unicode": "f083", + "label": "Camera Retro", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M220.6 121.2L271.1 96 448 96v96H333.2c-21.9-15.1-48.5-24-77.2-24s-55.2 8.9-77.2 24H64V128H192c9.9 0 19.7-2.3 28.6-6.8zM0 128V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H271.1c-9.9 0-19.7 2.3-28.6 6.8L192 64H160V48c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16l0 16C28.7 64 0 92.7 0 128zM168 304a88 88 0 1 1 176 0 88 88 0 1 1 -176 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "camera-rotate": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flip", + "front-facing", + "photo", + "selfie" + ] + }, + "unicode": "e0d8", + "label": "Camera Rotate", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M149.1 64.8L138.7 96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H373.3L362.9 64.8C356.4 45.2 338.1 32 317.4 32H194.6c-20.7 0-39 13.2-45.5 32.8zM384 256c0 8.8-7.2 16-16 16H291.3c-6.2 0-11.3-5.1-11.3-11.3c0-3 1.2-5.9 3.3-8L307 229c-13.6-13.4-31.9-21-51-21c-19.2 0-37.7 7.6-51.3 21.3L185 249c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l19.7-19.7C193.4 172.7 224 160 256 160c31.8 0 62.4 12.6 85 35l23.7-23.7c2.1-2.1 5-3.3 8-3.3c6.2 0 11.3 5.1 11.3 11.3V256zM128 320c0-8.8 7.2-16 16-16h76.7c6.2 0 11.3 5.1 11.3 11.3c0 3-1.2 5.9-3.3 8L205 347c13.6 13.4 31.9 21 51 21c19.2 0 37.7-7.6 51.3-21.3L327 327c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-19.7 19.7C318.6 403.3 288 416 256 416c-31.8 0-62.4-12.6-85-35l-23.7 23.7c-2.1 2.1-5 3.3-8 3.3c-6.2 0-11.3-5.1-11.3-11.3V320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "campground": { + "aliases": { + "unicodes": { + "composite": [ + "26fa" + ], + "secondary": [ + "10f6bb" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camping", + "fall", + "outdoors", + "teepee", + "tent", + "tipi" + ] + }, + "unicode": "f6bb", + "label": "Campground", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M377 52c11-13.8 8.8-33.9-5-45s-33.9-8.8-45 5L288 60.8 249 12c-11-13.8-31.2-16-45-5s-16 31.2-5 45l48 60L12.3 405.4C4.3 415.4 0 427.7 0 440.4V464c0 26.5 21.5 48 48 48H288 528c26.5 0 48-21.5 48-48V440.4c0-12.7-4.3-25.1-12.3-35L329 112l48-60zM288 448H168.5L288 291.7 407.5 448H288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "canadian-maple-leaf": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "canada", + "flag", + "flora", + "nature", + "plant" + ] + }, + "unicode": "f785", + "label": "Canadian Maple Leaf", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M383.8 351.7c2.5-2.5 105.2-92.4 105.2-92.4l-17.5-7.5c-10-4.9-7.4-11.5-5-17.4 2.4-7.6 20.1-67.3 20.1-67.3s-47.7 10-57.7 12.5c-7.5 2.4-10-2.5-12.5-7.5s-15-32.4-15-32.4-52.6 59.9-55.1 62.3c-10 7.5-20.1 0-17.6-10 0-10 27.6-129.6 27.6-129.6s-30.1 17.4-40.1 22.4c-7.5 5-12.6 5-17.6-5C293.5 72.3 255.9 0 255.9 0s-37.5 72.3-42.5 79.8c-5 10-10 10-17.6 5-10-5-40.1-22.4-40.1-22.4S183.3 182 183.3 192c2.5 10-7.5 17.5-17.6 10-2.5-2.5-55.1-62.3-55.1-62.3S98.1 167 95.6 172s-5 9.9-12.5 7.5C73 177 25.4 167 25.4 167s17.6 59.7 20.1 67.3c2.4 6 5 12.5-5 17.4L23 259.3s102.6 89.9 105.2 92.4c5.1 5 10 7.5 5.1 22.5-5.1 15-10.1 35.1-10.1 35.1s95.2-20.1 105.3-22.6c8.7-.9 18.3 2.5 18.3 12.5S241 512 241 512h30s-5.8-102.7-5.8-112.8 9.5-13.4 18.4-12.5c10 2.5 105.2 22.6 105.2 22.6s-5-20.1-10-35.1 0-17.5 5-22.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "candy-cane": { + "aliases": { + "unicodes": { + "secondary": [ + "10f786" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "candy", + "christmas", + "holiday", + "mint", + "peppermint", + "striped", + "xmas" + ] + }, + "unicode": "f786", + "label": "Candy Cane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M348.8 131.5c3.7-2.3 7.9-3.5 12.2-3.5c12.7 0 23 10.3 23 23v5.6c0 9.9-5.1 19.1-13.5 24.3L30.1 393.7C.1 412.5-9 451.9 9.7 481.9s58.2 39.1 88.2 20.4L438.4 289.5c45.8-28.6 73.6-78.8 73.6-132.8V151C512 67.6 444.4 0 361 0c-28.3 0-56 8-80.1 23L254.1 39.7c-30 18.7-39.1 58.2-20.4 88.2s58.2 39.1 88.2 20.4l26.8-16.8zM298.4 49.8c9.2-5.7 19.1-10.1 29.4-13.1L348 97.5c-5.7 1.4-11.2 3.7-16.3 6.8l-12.6 7.9L298.4 49.8zm88.5 52.7l46.2-46.2c8.5 6.5 16.1 14.1 22.6 22.6l-46.2 46.2c-5.1-9.6-13-17.5-22.6-22.6zm28.9 59.3l61.6 20.5c-2.2 10.5-5.8 20.7-10.5 30.2l-62-20.7c6.2-8.8 10.1-19.1 11-30.1zm-86.1 82.5l60.4 37.7-30.2 18.9-60.4-37.7 30.2-18.9zm-107.2 67l60.4 37.7-30.2 18.9-60.4-37.7 30.2-18.9zM119.3 375.7l60.4 37.7-30.2 18.9L89.1 394.6l30.2-18.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cannabis": { + "aliases": { + "unicodes": { + "secondary": [ + "10f55f" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bud", + "chronic", + "drugs", + "endica", + "endo", + "ganja", + "marijuana", + "mary jane", + "pot", + "reefer", + "sativa", + "spliff", + "weed", + "whacky-tabacky" + ] + }, + "unicode": "f55f", + "label": "Cannabis", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M240 0c5.3 0 10.3 2.7 13.3 7.1c15.8 23.5 36.7 63.7 49.2 109c7.2 26.4 11.8 55.2 10.4 84c11.5-8.8 23.7-16.7 35.8-23.6c41-23.3 84.4-36.9 112.2-42.5c5.2-1 10.7 .6 14.4 4.4s5.4 9.2 4.4 14.5c-5.6 27.7-19.3 70.9-42.7 111.7c-9.1 15.9-19.9 31.7-32.4 46.3c27.8 6.6 52.4 17.3 67.2 25.5c5.1 2.8 8.2 8.2 8.2 14s-3.2 11.2-8.2 14c-15.2 8.4-40.9 19.5-69.8 26.1c-20.2 4.6-42.9 7.2-65.2 4.6l8.3 33.1c1.5 6.1-.6 12.4-5.5 16.4s-11.6 4.6-17.2 1.9L264 417.2V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V417.2l-58.5 29.1c-5.6 2.8-12.3 2.1-17.2-1.9s-7-10.3-5.5-16.4l8.3-33.1c-22.2 2.6-45 0-65.2-4.6c-28.9-6.6-54.6-17.6-69.8-26.1c-5.1-2.8-8.2-8.2-8.2-14s3.2-11.2 8.2-14c14.8-8.2 39.4-18.8 67.2-25.5C62.9 296.3 52.1 280.5 43 264.6C19.6 223.8 5.9 180.6 .3 152.9c-1.1-5.2 .6-10.7 4.4-14.5s9.2-5.4 14.4-4.4c27.9 5.5 71.2 19.2 112.2 42.5c12.1 6.9 24.3 14.7 35.8 23.6c-1.4-28.7 3.1-57.6 10.4-84c12.5-45.3 33.4-85.5 49.2-109c3-4.4 8-7.1 13.3-7.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "capsules": { + "aliases": { + "unicodes": { + "secondary": [ + "10f46b" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine", + "pills", + "prescription" + ] + }, + "unicode": "f46b", + "label": "Capsules", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 144c0-26.5 21.5-48 48-48s48 21.5 48 48V256H64V144zM0 144V368c0 61.9 50.1 112 112 112s112-50.1 112-112V189.6c1.8 19.1 8.2 38 19.8 54.8L372.3 431.7c35.5 51.7 105.3 64.3 156 28.1s63-107.5 27.5-159.2L427.3 113.3C391.8 61.5 321.9 49 271.3 85.2c-28 20-44.3 50.8-47.3 83V144c0-61.9-50.1-112-112-112S0 82.1 0 144zm296.6 64.2c-16-23.3-10-55.3 11.9-71c21.2-15.1 50.5-10.3 66 12.2l67 97.6L361.6 303l-65-94.8zM491 407.7c-.8 .6-1.6 1.1-2.4 1.6l4-2.8c-.5 .4-1 .8-1.6 1.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car": { + "aliases": { + "names": [ + "automobile" + ], + "unicodes": { + "composite": [ + "1f698" + ], + "secondary": [ + "10f1b9" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "automobile", + "car", + "oncoming", + "oncoming automobile", + "sedan", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f1b9", + "label": "Car", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M135.2 117.4L109.1 192H402.9l-26.1-74.6C372.3 104.6 360.2 96 346.6 96H165.4c-13.6 0-25.7 8.6-30.2 21.4zM39.6 196.8L74.8 96.3C88.3 57.8 124.6 32 165.4 32H346.6c40.8 0 77.1 25.8 90.6 64.3l35.2 100.5c23.2 9.6 39.6 32.5 39.6 59.2V400v48c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V400H96v48c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V400 256c0-26.7 16.4-49.6 39.6-59.2zM128 288a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-battery": { + "aliases": { + "names": [ + "battery-car" + ], + "unicodes": { + "secondary": [ + "10f5df" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "electric", + "mechanic", + "power" + ] + }, + "unicode": "f5df", + "label": "Car Battery", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M80 96c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32l96 0c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32h16c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64l16 0zm304 96c0-8.8-7.2-16-16-16s-16 7.2-16 16v32H320c-8.8 0-16 7.2-16 16s7.2 16 16 16h32v32c0 8.8 7.2 16 16 16s16-7.2 16-16V256h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H384V192zM80 240c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H96c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-burst": { + "aliases": { + "names": [ + "car-crash" + ], + "unicodes": { + "secondary": [ + "10f5e1" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accident", + "auto", + "automobile", + "insurance", + "sedan", + "transportation", + "vehicle", + "wreck" + ] + }, + "unicode": "f5e1", + "label": "Car Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M172 8c-6.6 0-12.4 4-14.9 10.1l-29.4 74L51.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L6.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L86.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6l35.3-32.5 9.5-35.4 10.4-38.6c8-29.9 30.5-52.1 57.9-60.9l41-59.2c11.3-16.3 26.4-28.9 43.5-37.2c-.4-.6-.8-1.2-1.3-1.8c-4.1-5.1-10.9-7.2-17.2-5.3L216.3 92.1l-29.4-74C184.4 12 178.6 8 172 8zM363.7 161.5l135.6 36.3c6.5 1.8 11.3 7.4 11.8 14.2l4.6 56.5-201.5-54 32.2-46.6c3.8-5.6 10.8-8.1 17.3-6.4zm-69.9-30l-47.9 69.3c-21.6 3-40.3 18.6-46.3 41l-10.4 38.6-16.6 61.8-8.3 30.9c-4.6 17.1 5.6 34.6 22.6 39.2l15.5 4.1c17.1 4.6 34.6-5.6 39.2-22.6l8.3-30.9 247.3 66.3-8.3 30.9c-4.6 17.1 5.6 34.6 22.6 39.2l15.5 4.1c17.1 4.6 34.6-5.6 39.2-22.6l8.3-30.9L591 388l10.4-38.6c6-22.4-2.5-45.2-19.6-58.7l-6.8-84c-2.7-33.7-26.4-62-59-70.8L380.2 99.7c-32.7-8.8-67.3 4-86.5 31.8zm-17 131a24 24 0 1 1 -12.4 46.4 24 24 0 1 1 12.4-46.4zm217.9 83.2A24 24 0 1 1 541 358.1a24 24 0 1 1 -46.4-12.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-on": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alarm", + "car", + "carjack", + "warning" + ] + }, + "unicode": "e4dd", + "label": "Car On", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M248 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v80c0 13.3 10.7 24 24 24s24-10.7 24-24V24zM153.8 224H294.2c6.8 0 12.8 4.3 15.1 10.6L328.3 288H119.7l19.1-53.4c2.3-6.4 8.3-10.6 15.1-10.6zM78.5 213.1L50.2 292.4C30.1 300.9 16 320.8 16 344v40 64 32c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V448H352v32c0 17.7 14.3 32 32 32h16c17.7 0 32-14.3 32-32V448 384 344c0-23.2-14.1-43.1-34.2-51.6l-28.3-79.3C358.1 181.3 328 160 294.2 160H153.8c-33.8 0-64 21.3-75.3 53.1zM96 344a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm232 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM7 39C-2.3 48.4-2.3 63.6 7 73l48 48c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L41 39C31.6 29.7 16.4 29.7 7 39zm400 0L359 87c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l48-48c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-rear": { + "aliases": { + "names": [ + "car-alt" + ], + "unicodes": { + "secondary": [ + "10f5de" + ] + } + }, + "changes": [ + "5.2.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "automobile", + "sedan", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f5de", + "label": "Car Rear", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M165.4 96H346.6c13.6 0 25.7 8.6 30.2 21.4L402.9 192H109.1l26.1-74.6c4.5-12.8 16.6-21.4 30.2-21.4zm-90.6 .3L39.6 196.8C16.4 206.4 0 229.3 0 256v80c0 23.7 12.9 44.4 32 55.4V448c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32V400H384v48c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V391.4c19.1-11.1 32-31.7 32-55.4V256c0-26.7-16.4-49.6-39.6-59.2L437.2 96.3C423.7 57.8 387.4 32 346.6 32H165.4c-40.8 0-77.1 25.8-90.6 64.3zM208 272h96c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H208c-8.8 0-16-7.2-16-16V288c0-8.8 7.2-16 16-16zM48 280c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H72c-13.3 0-24-10.7-24-24zm360-24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H408c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-side": { + "aliases": { + "unicodes": { + "composite": [ + "1f697" + ], + "secondary": [ + "10f5e4" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "automobile", + "car", + "sedan", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f5e4", + "label": "Car Side", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M171.3 96H224v96H111.3l30.4-75.9C146.5 104 158.2 96 171.3 96zM272 192V96h81.2c9.7 0 18.9 4.4 25 12l67.2 84H272zm256.2 1L428.2 68c-18.2-22.8-45.8-36-75-36H171.3c-39.3 0-74.6 23.9-89.1 60.3L40.6 196.4C16.8 205.8 0 228.9 0 256V368c0 17.7 14.3 32 32 32H65.3c7.6 45.4 47.1 80 94.7 80s87.1-34.6 94.7-80H385.3c7.6 45.4 47.1 80 94.7 80s87.1-34.6 94.7-80H608c17.7 0 32-14.3 32-32V320c0-65.2-48.8-119-111.8-127zM434.7 368a48 48 0 1 1 90.5 32 48 48 0 1 1 -90.5-32zM160 336a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "car-tunnel": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "road", + "tunnel" + ] + }, + "unicode": "e4de", + "label": "Car Tunnel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0C114.6 0 0 114.6 0 256V448c0 35.3 28.7 64 64 64h64H384h64c35.3 0 64-28.7 64-64V256C512 114.6 397.4 0 256 0zM384 512c-17.7 0-32-14.3-32-32V448H160v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V376c0-20.8 11.3-38.9 28.1-48.6l21-64.7c7.5-23.1 29-38.7 53.3-38.7H313.6c24.3 0 45.8 15.6 53.3 38.7l21 64.7c16.8 9.7 28.2 27.8 28.2 48.6V480c0 17.7-14.3 32-32 32zM190.8 277.5L177 320H335l-13.8-42.5c-1.1-3.3-4.1-5.5-7.6-5.5H198.4c-3.5 0-6.5 2.2-7.6 5.5zM168 408a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm200-24a24 24 0 1 0 -48 0 24 24 0 1 0 48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "caravan": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8ff" + ] + } + }, + "changes": [ + "5.12.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camper", + "motor home", + "rv", + "trailer", + "travel" + ] + }, + "unicode": "f8ff", + "label": "Caravan", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 112C0 67.8 35.8 32 80 32H416c88.4 0 160 71.6 160 160V352h32c17.7 0 32 14.3 32 32s-14.3 32-32 32l-32 0H288c0 53-43 96-96 96s-96-43-96-96H80c-44.2 0-80-35.8-80-80V112zM320 352H448V256H416c-8.8 0-16-7.2-16-16s7.2-16 16-16h32V160c0-17.7-14.3-32-32-32H352c-17.7 0-32 14.3-32 32V352zM96 128c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H224c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H96zm96 336a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "caret-down": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0d7" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "dropdown", + "expand", + "menu", + "more", + "triangle" + ] + }, + "unicode": "f0d7", + "label": "Caret Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "caret-left": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0d9" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "previous", + "triangle" + ] + }, + "unicode": "f0d9", + "label": "Caret Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M9.4 278.6c-12.5-12.5-12.5-32.8 0-45.3l128-128c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 256c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "caret-right": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0da" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "forward", + "next", + "triangle" + ] + }, + "unicode": "f0da", + "label": "Caret Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "caret-up": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0d8" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "collapse", + "triangle" + ] + }, + "unicode": "f0d8", + "label": "Caret Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M182.6 137.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H288c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "carrot": { + "aliases": { + "unicodes": { + "composite": [ + "1f955" + ], + "secondary": [ + "10f787" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bugs bunny", + "carrot", + "food", + "orange", + "vegan", + "vegetable" + ] + }, + "unicode": "f787", + "label": "Carrot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M346.7 6C337.6 17 320 42.3 320 72c0 40 15.3 55.3 40 80s40 40 80 40c29.7 0 55-17.6 66-26.7c4-3.3 6-8.2 6-13.3s-2-10-6-13.2c-11.4-9.1-38.3-26.8-74-26.8c-32 0-40 8-40 8s8-8 8-40c0-35.7-17.7-62.6-26.8-74C370 2 365.1 0 360 0s-10 2-13.3 6zM244.6 136c-40 0-77.1 18.1-101.7 48.2l60.5 60.5c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-55.3-55.3 0 .1L2.2 477.9C-2 487-.1 497.8 7 505s17.9 9 27.1 4.8l134.7-62.4-52.1-52.1c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L199.7 433l100.2-46.4c46.4-21.5 76.2-68 76.2-119.2C376 194.8 317.2 136 244.6 136z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cart-arrow-down": { + "aliases": { + "unicodes": { + "secondary": [ + "10f218" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "save", + "shopping" + ] + }, + "unicode": "f218", + "label": "Cart Arrow Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M24 0C10.7 0 0 10.7 0 24S10.7 48 24 48H69.5c3.8 0 7.1 2.7 7.9 6.5l51.6 271c6.5 34 36.2 58.5 70.7 58.5H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H199.7c-11.5 0-21.4-8.2-23.6-19.5L170.7 288H459.2c32.6 0 61.1-21.8 69.5-53.3l41-152.3C576.6 57 557.4 32 531.1 32H360V134.1l23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-64 64c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l23 23V32H120.1C111 12.8 91.6 0 69.5 0H24zM176 512a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm336-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cart-flatbed": { + "aliases": { + "names": [ + "dolly-flatbed" + ], + "unicodes": { + "secondary": [ + "10f474" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "inventory", + "shipping", + "transport" + ] + }, + "unicode": "f474", + "label": "Cart Flatbed", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64H48c8.8 0 16 7.2 16 16V368c0 44.2 35.8 80 80 80h18.7c-1.8 5-2.7 10.4-2.7 16c0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1-11-2.7-16H450.7c-1.8 5-2.7 10.4-2.7 16c0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1-11-2.7-16H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H144c-8.8 0-16-7.2-16-16V80C128 35.8 92.2 0 48 0H32zM192 80V272c0 26.5 21.5 48 48 48H560c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H464V176c0 5.9-3.2 11.3-8.5 14.1s-11.5 2.5-16.4-.8L400 163.2l-39.1 26.1c-4.9 3.3-11.2 3.6-16.4 .8s-8.5-8.2-8.5-14.1V32H240c-26.5 0-48 21.5-48 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cart-flatbed-suitcase": { + "aliases": { + "names": [ + "luggage-cart" + ], + "unicodes": { + "secondary": [ + "10f59d" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airport", + "bag", + "baggage", + "suitcase", + "travel" + ] + }, + "unicode": "f59d", + "label": "Cart Flatbed Suitcase", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H48c44.2 0 80 35.8 80 80V368c0 8.8 7.2 16 16 16H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H541.3c1.8 5 2.7 10.4 2.7 16c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-5.6 1-11 2.7-16H253.3c1.8 5 2.7 10.4 2.7 16c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-5.6 1-11 2.7-16H144c-44.2 0-80-35.8-80-80V80c0-8.8-7.2-16-16-16H32C14.3 64 0 49.7 0 32zM432 96V56c0-4.4-3.6-8-8-8H344c-4.4 0-8 3.6-8 8V96h96zM288 96V56c0-30.9 25.1-56 56-56h80c30.9 0 56 25.1 56 56V96 320H288V96zM512 320V96h16c26.5 0 48 21.5 48 48V272c0 26.5-21.5 48-48 48H512zM240 96h16V320H240c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cart-plus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f217" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "new", + "positive", + "shopping" + ] + }, + "unicode": "f217", + "label": "Cart Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 24C0 10.7 10.7 0 24 0H69.5c22 0 41.5 12.8 50.6 32h411c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3H170.7l5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H199.7c-34.6 0-64.3-24.6-70.7-58.5L77.4 54.5c-.7-3.8-4-6.5-7.9-6.5H24C10.7 48 0 37.3 0 24zM128 464a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm336-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM252 160c0 11 9 20 20 20h44v44c0 11 9 20 20 20s20-9 20-20V180h44c11 0 20-9 20-20s-9-20-20-20H356V96c0-11-9-20-20-20s-20 9-20 20v44H272c-11 0-20 9-20 20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cart-shopping": { + "aliases": { + "names": [ + "shopping-cart" + ], + "unicodes": { + "composite": [ + "1f6d2" + ], + "secondary": [ + "10f07a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cart", + "checkout", + "grocery", + "payment", + "purchase", + "shopping", + "shopping cart", + "trolley" + ] + }, + "unicode": "f07a", + "label": "Cart Shopping", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 24C0 10.7 10.7 0 24 0H69.5c22 0 41.5 12.8 50.6 32h411c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3H170.7l5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H199.7c-34.6 0-64.3-24.6-70.7-58.5L77.4 54.5c-.7-3.8-4-6.5-7.9-6.5H24C10.7 48 0 37.3 0 24zM128 464a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm336-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cash-register": { + "aliases": { + "unicodes": { + "secondary": [ + "10f788" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cha-ching", + "change", + "checkout", + "commerce", + "leaerboard", + "machine", + "pay", + "payment", + "purchase", + "store" + ] + }, + "unicode": "f788", + "label": "Cash Register", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 0C46.3 0 32 14.3 32 32V96c0 17.7 14.3 32 32 32h80v32H87c-31.6 0-58.5 23.1-63.3 54.4L1.1 364.1C.4 368.8 0 373.6 0 378.4V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V378.4c0-4.8-.4-9.6-1.1-14.4L488.2 214.4C483.5 183.1 456.6 160 425 160H208V128h80c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H64zM96 48H256c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16s7.2-16 16-16zM64 432c0-8.8 7.2-16 16-16H432c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm48-168a24 24 0 1 1 0-48 24 24 0 1 1 0 48zm120-24a24 24 0 1 1 -48 0 24 24 0 1 1 48 0zM160 344a24 24 0 1 1 0-48 24 24 0 1 1 0 48zM328 240a24 24 0 1 1 -48 0 24 24 0 1 1 48 0zM256 344a24 24 0 1 1 0-48 24 24 0 1 1 0 48zM424 240a24 24 0 1 1 -48 0 24 24 0 1 1 48 0zM352 344a24 24 0 1 1 0-48 24 24 0 1 1 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cat": { + "aliases": { + "unicodes": { + "composite": [ + "1f408" + ], + "secondary": [ + "10f6be" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cat", + "feline", + "halloween", + "holiday", + "kitten", + "kitty", + "meow", + "pet" + ] + }, + "unicode": "f6be", + "label": "Cat", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669918857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 192h17.1c22.1 38.3 63.5 64 110.9 64c11 0 21.8-1.4 32-4v4 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V339.2L248 448h56c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-53 0-96-43-96-96V192.5c0-16.1-12-29.8-28-31.8l-7.9-1C10.5 157.6-1.9 141.6 .2 124s18.2-30 35.7-27.8l7.9 1c48 6 84.1 46.8 84.1 95.3v85.3c34.4-51.7 93.2-85.8 160-85.8zm160 26.5v0c-10 3.5-20.8 5.5-32 5.5c-28.4 0-54-12.4-71.6-32h0c-3.7-4.1-7-8.5-9.9-13.2C325.3 164 320 146.6 320 128v0V32 12 10.7C320 4.8 324.7 .1 330.6 0h.2c3.3 0 6.4 1.6 8.4 4.2l0 .1L352 21.3l27.2 36.3L384 64h64l4.8-6.4L480 21.3 492.8 4.3l0-.1c2-2.6 5.1-4.2 8.4-4.2h.2C507.3 .1 512 4.8 512 10.7V12 32v96c0 17.3-4.6 33.6-12.6 47.6c-11.3 19.8-29.6 35.2-51.4 42.9zM400 128a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm48 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cc-amazon-pay": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42d", + "label": "Amazon Pay Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-amex": { + "changes": [ + "4.2.0", + "5.0.0", + "5.7.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "amex" + ] + }, + "unicode": "f1f3", + "label": "American Express Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M48 480C21.49 480 0 458.5 0 432V80C0 53.49 21.49 32 48 32H528C554.5 32 576 53.49 576 80V82.43H500.5L483.5 130L466.6 82.43H369.4V145.6L341.3 82.43H262.7L181 267.1H246.8V430.9H450.5L482.4 395.8L514.3 430.9H576V432C576 458.5 554.5 480 528 480H48zM482.6 364L440.4 410.3H390.5L458 338.6L390.5 266.1H441.9L483.4 312.8L525.4 266.1H576L508 338.2L576 410.3H524.6L482.6 364zM576 296.9V380.2L536.7 338.3L576 296.9zM307.6 377.1H390.6V410.3H268.6V267.1H390.6V300.2H307.6V322.6H388.5V354.9H307.6V377.2V377.1zM537.3 145.7L500.4 246.3H466L429.2 146V246.3H390.5V103H451.7L483.6 192.3L515.8 103H576V246.3H537.3V145.7zM334.5 217.6H268.6L256.7 246.3H213.7L276.1 103H327.3L390.6 246.3H346.5L334.5 217.6zM301.5 138.5L282 185.4H320.9L301.5 138.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-apple-pay": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f416", + "label": "Apple Pay Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-diners-club": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f24c", + "label": "Diner's Club Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-discover": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1f2", + "label": "Discover Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M520.4 196.1c0-7.9-5.5-12.1-15.6-12.1h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-44.1 138.9c22.6 0 52.9-4.1 52.9 24.4 0 12.6-6.6 20.7-18.7 23.2l25.8 34.4h-19.6l-22.2-32.8h-2.2v32.8h-16zm-55.9.1h45.3v14H444v18.2h28.3V217H444v22.2h29.3V253H428zm-68.7 0l21.9 55.2 22.2-55.2h17.5l-35.5 84.2h-8.6l-35-84.2zm-55.9-3c24.7 0 44.6 20 44.6 44.6 0 24.7-20 44.6-44.6 44.6-24.7 0-44.6-20-44.6-44.6 0-24.7 20-44.6 44.6-44.6zm-49.3 6.1v19c-20.1-20.1-46.8-4.7-46.8 19 0 25 27.5 38.5 46.8 19.2v19c-29.7 14.3-63.3-5.7-63.3-38.2 0-31.2 33.1-53 63.3-38zm-97.2 66.3c11.4 0 22.4-15.3-3.3-24.4-15-5.5-20.2-11.4-20.2-22.7 0-23.2 30.6-31.4 49.7-14.3l-8.4 10.8c-10.4-11.6-24.9-6.2-24.9 2.5 0 4.4 2.7 6.9 12.3 10.3 18.2 6.6 23.6 12.5 23.6 25.6 0 29.5-38.8 37.4-56.6 11.3l10.3-9.9c3.7 7.1 9.9 10.8 17.5 10.8zM55.4 253H32v-82h23.4c26.1 0 44.1 17 44.1 41.1 0 18.5-13.2 40.9-44.1 40.9zm67.5 0h-16v-82h16zM544 433c0 8.2-6.8 15-15 15H128c189.6-35.6 382.7-139.2 416-160zM74.1 191.6c-5.2-4.9-11.6-6.6-21.9-6.6H48v54.2h4.2c10.3 0 17-2 21.9-6.4 5.7-5.2 8.9-12.8 8.9-20.7s-3.2-15.5-8.9-20.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-jcb": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f24b", + "label": "JCB Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-mastercard": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1f1", + "label": "MasterCard Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-paypal": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1f4", + "label": "Paypal Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-stripe": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1f5", + "label": "Stripe Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M492.4 220.8c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7zM375 223.4c-8.2 0-13.3 2.9-17 7l.2 52.8c3.5 3.7 8.5 6.7 16.8 6.7 13.1 0 21.9-14.3 21.9-33.4 0-18.6-9-33.2-21.9-33.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM122.2 281.1c0 25.6-20.3 40.1-49.9 40.3-12.2 0-25.6-2.4-38.8-8.1v-33.9c12 6.4 27.1 11.3 38.9 11.3 7.9 0 13.6-2.1 13.6-8.7 0-17-54-10.6-54-49.9 0-25.2 19.2-40.2 48-40.2 11.8 0 23.5 1.8 35.3 6.5v33.4c-10.8-5.8-24.5-9.1-35.3-9.1-7.5 0-12.1 2.2-12.1 7.7 0 16 54.3 8.4 54.3 50.7zm68.8-56.6h-27V275c0 20.9 22.5 14.4 27 12.6v28.9c-4.7 2.6-13.3 4.7-24.9 4.7-21.1 0-36.9-15.5-36.9-36.5l.2-113.9 34.7-7.4v30.8H191zm74 2.4c-4.5-1.5-18.7-3.6-27.1 7.4v84.4h-35.5V194.2h30.7l2.2 10.5c8.3-15.3 24.9-12.2 29.6-10.5h.1zm44.1 91.8h-35.7V194.2h35.7zm0-142.9l-35.7 7.6v-28.9l35.7-7.6zm74.1 145.5c-12.4 0-20-5.3-25.1-9l-.1 40.2-35.5 7.5V194.2h31.3l1.8 8.8c4.9-4.5 13.9-11.1 27.8-11.1 24.9 0 48.4 22.5 48.4 63.8 0 45.1-23.2 65.5-48.6 65.6zm160.4-51.5h-69.5c1.6 16.6 13.8 21.5 27.6 21.5 14.1 0 25.2-3 34.9-7.9V312c-9.7 5.3-22.4 9.2-39.4 9.2-34.6 0-58.8-21.7-58.8-64.5 0-36.2 20.5-64.9 54.3-64.9 33.7 0 51.3 28.7 51.3 65.1 0 3.5-.3 10.9-.4 12.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cc-visa": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1f0", + "label": "Visa Credit Card", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cedi-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Cedi Sign", + "currency" + ] + }, + "unicode": "e0df", + "label": "Cedi Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M224 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V66.7C69.2 81.9 0 160.9 0 256s69.2 174.1 160 189.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V445.3c30.9-5.2 59.2-17.7 83.2-35.8c14.1-10.6 17-30.7 6.4-44.8s-30.7-17-44.8-6.4c-13.2 9.9-28.3 17.3-44.8 21.6V132c16.4 4.2 31.6 11.6 44.8 21.6c14.1 10.6 34.2 7.8 44.8-6.4s7.8-34.2-6.4-44.8c-24-18-52.4-30.6-83.2-35.8V32zM160 132V380c-55.2-14.2-96-64.3-96-124s40.8-109.8 96-124z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cent-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Cent Sign", + "currency" + ] + }, + "unicode": "e3f5", + "label": "Cent Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M192 0c17.7 0 32 14.3 32 32V66.7c30.9 5.2 59.2 17.7 83.2 35.8c14.1 10.6 17 30.7 6.4 44.8s-30.7 17-44.8 6.4C247.4 137.5 220.9 128 192 128c-70.7 0-128 57.3-128 128s57.3 128 128 128c28.9 0 55.4-9.5 76.8-25.6c14.1-10.6 34.2-7.8 44.8 6.4s7.8 34.2-6.4 44.8c-24 18-52.4 30.6-83.2 35.8V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.3C69.2 430.1 0 351.1 0 256S69.2 81.9 160 66.7V32c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "centercode": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f380", + "label": "Centercode", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "centos": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "unicode": "f789", + "label": "Centos", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M289.6 97.5l31.6 31.7-76.3 76.5V97.5zm-162.4 31.7l76.3 76.5V97.5h-44.7zm41.5-41.6h44.7v127.9l10.8 10.8 10.8-10.8V87.6h44.7L224.2 32zm26.2 168.1l-10.8-10.8H55.5v-44.8L0 255.7l55.5 55.6v-44.8h128.6l10.8-10.8zm79.3-20.7h107.9v-44.8l-31.6-31.7zm173.3 20.7L392 200.1v44.8H264.3l-10.8 10.8 10.8 10.8H392v44.8l55.5-55.6zM65.4 176.2l32.5-31.7 90.3 90.5h15.3v-15.3l-90.3-90.5 31.6-31.7H65.4zm316.7-78.7h-78.5l31.6 31.7-90.3 90.5V235h15.3l90.3-90.5 31.6 31.7zM203.5 413.9V305.8l-76.3 76.5 31.6 31.7h44.7zM65.4 235h108.8l-76.3-76.5-32.5 31.7zm316.7 100.2l-31.6 31.7-90.3-90.5h-15.3v15.3l90.3 90.5-31.6 31.7h78.5zm0-58.8H274.2l76.3 76.5 31.6-31.7zm-60.9 105.8l-76.3-76.5v108.1h44.7zM97.9 352.9l76.3-76.5H65.4v44.8zm181.8 70.9H235V295.9l-10.8-10.8-10.8 10.8v127.9h-44.7l55.5 55.6zm-166.5-41.6l90.3-90.5v-15.3h-15.3l-90.3 90.5-32.5-31.7v78.7h79.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "certificate": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0a3" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "badge", + "star", + "verified" + ] + }, + "unicode": "f0a3", + "label": "Certificate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321795, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M211 7.3C205 1 196-1.4 187.6 .8s-14.9 8.9-17.1 17.3L154.7 80.6l-62-17.5c-8.4-2.4-17.4 0-23.5 6.1s-8.5 15.1-6.1 23.5l17.5 62L18.1 170.6c-8.4 2.1-15 8.7-17.3 17.1S1 205 7.3 211l46.2 45L7.3 301C1 307-1.4 316 .8 324.4s8.9 14.9 17.3 17.1l62.5 15.8-17.5 62c-2.4 8.4 0 17.4 6.1 23.5s15.1 8.5 23.5 6.1l62-17.5 15.8 62.5c2.1 8.4 8.7 15 17.1 17.3s17.3-.2 23.4-6.4l45-46.2 45 46.2c6.1 6.2 15 8.7 23.4 6.4s14.9-8.9 17.1-17.3l15.8-62.5 62 17.5c8.4 2.4 17.4 0 23.5-6.1s8.5-15.1 6.1-23.5l-17.5-62 62.5-15.8c8.4-2.1 15-8.7 17.3-17.1s-.2-17.3-6.4-23.4l-46.2-45 46.2-45c6.2-6.1 8.7-15 6.4-23.4s-8.9-14.9-17.3-17.1l-62.5-15.8 17.5-62c2.4-8.4 0-17.4-6.1-23.5s-15.1-8.5-23.5-6.1l-62 17.5L341.4 18.1c-2.1-8.4-8.7-15-17.1-17.3S307 1 301 7.3L256 53.5 211 7.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chair": { + "aliases": { + "unicodes": { + "composite": [ + "1fa91" + ], + "secondary": [ + "10f6c0" + ] + } + }, + "changes": [ + "5.4.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chair", + "furniture", + "seat", + "sit" + ] + }, + "unicode": "f6c0", + "label": "Chair", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M248 48V256h48V58.7c23.9 13.8 40 39.7 40 69.3V256h48V128C384 57.3 326.7 0 256 0H192C121.3 0 64 57.3 64 128V256h48V128c0-29.6 16.1-55.5 40-69.3V256h48V48h48zM48 288c-12.1 0-23.2 6.8-28.6 17.7l-16 32c-5 9.9-4.4 21.7 1.4 31.1S20.9 384 32 384l0 96c0 17.7 14.3 32 32 32s32-14.3 32-32V384H352v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384c11.1 0 21.4-5.7 27.2-15.2s6.4-21.2 1.4-31.1l-16-32C423.2 294.8 412.1 288 400 288H48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chalkboard": { + "aliases": { + "names": [ + "blackboard" + ], + "unicodes": { + "secondary": [ + "10f51b" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blackboard", + "learning", + "school", + "teaching", + "whiteboard", + "writing" + ] + }, + "unicode": "f51b", + "label": "Chalkboard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 32C60.7 32 32 60.7 32 96V384H96V96l384 0V384h64V96c0-35.3-28.7-64-64-64H96zM224 384v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H416V384c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chalkboard-user": { + "aliases": { + "names": [ + "chalkboard-teacher" + ], + "unicodes": { + "secondary": [ + "10f51c" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blackboard", + "instructor", + "learning", + "professor", + "school", + "whiteboard", + "writing" + ] + }, + "unicode": "f51c", + "label": "Chalkboard User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M160 64c0-35.3 28.7-64 64-64H576c35.3 0 64 28.7 64 64V352c0 35.3-28.7 64-64 64H336.8c-11.8-25.5-29.9-47.5-52.4-64H384V320c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v32h64V64L224 64v49.1C205.2 102.2 183.3 96 160 96V64zm0 64a96 96 0 1 1 0 192 96 96 0 1 1 0-192zM133.3 352h53.3C260.3 352 320 411.7 320 485.3c0 14.7-11.9 26.7-26.7 26.7H26.7C11.9 512 0 500.1 0 485.3C0 411.7 59.7 352 133.3 352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "champagne-glasses": { + "aliases": { + "names": [ + "glass-cheers" + ], + "unicodes": { + "composite": [ + "1f942" + ], + "secondary": [ + "10f79f" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "celebrate", + "celebration", + "champagne", + "clink", + "clinking glasses", + "drink", + "glass", + "holiday", + "new year's eve", + "party", + "toast" + ] + }, + "unicode": "f79f", + "label": "Champagne Glasses", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670852333, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M155.6 17.3C163 3 179.9-3.6 195 1.9L320 47.5l125-45.6c15.1-5.5 32 1.1 39.4 15.4l78.8 152.9c28.8 55.8 10.3 122.3-38.5 156.6L556.1 413l41-15c16.6-6 35 2.5 41 19.1s-2.5 35-19.1 41l-71.1 25.9L476.8 510c-16.6 6.1-35-2.5-41-19.1s2.5-35 19.1-41l41-15-31.3-86.2c-59.4 5.2-116.2-34-130-95.2L320 188.8l-14.6 64.7c-13.8 61.3-70.6 100.4-130 95.2l-31.3 86.2 41 15c16.6 6 25.2 24.4 19.1 41s-24.4 25.2-41 19.1L92.2 484.1 21.1 458.2c-16.6-6.1-25.2-24.4-19.1-41s24.4-25.2 41-19.1l41 15 31.3-86.2C66.5 292.5 48.1 226 76.9 170.2L155.6 17.3zm44 54.4l-27.2 52.8L261.6 157l13.1-57.9L199.6 71.7zm240.9 0L365.4 99.1 378.5 157l89.2-32.5L440.5 71.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "charging-station": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5e7" + ] + } + }, + "changes": [ + "5.2.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "ev", + "tesla", + "vehicle" + ] + }, + "unicode": "f5e7", + "label": "Charging Station", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C60.7 0 32 28.7 32 64V448c-17.7 0-32 14.3-32 32s14.3 32 32 32H320c17.7 0 32-14.3 32-32s-14.3-32-32-32V304h16c22.1 0 40 17.9 40 40v32c0 39.8 32.2 72 72 72s72-32.2 72-72V252.3c32.5-10.2 56-40.5 56-76.3V144c0-8.8-7.2-16-16-16H544V80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H480V80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H432c-8.8 0-16 7.2-16 16v32c0 35.8 23.5 66.1 56 76.3V376c0 13.3-10.7 24-24 24s-24-10.7-24-24V344c0-48.6-39.4-88-88-88H320V64c0-35.3-28.7-64-64-64H96zM216.9 82.7c6 4 8.5 11.5 6.3 18.3l-25 74.9H256c6.7 0 12.7 4.2 15 10.4s.5 13.3-4.6 17.7l-112 96c-5.5 4.7-13.4 5.1-19.3 1.1s-8.5-11.5-6.3-18.3l25-74.9H96c-6.7 0-12.7-4.2-15-10.4s-.5-13.3 4.6-17.7l112-96c5.5-4.7 13.4-5.1 19.3-1.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-area": { + "aliases": { + "names": [ + "area-chart" + ], + "unicodes": { + "secondary": [ + "10f1fe" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "area", + "chart", + "graph" + ] + }, + "unicode": "f1fe", + "label": "Chart Area", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V400c0 44.2 35.8 80 80 80H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H80c-8.8 0-16-7.2-16-16V64zm96 288H448c17.7 0 32-14.3 32-32V251.8c0-7.6-2.7-15-7.7-20.8l-65.8-76.8c-12.1-14.2-33.7-15-46.9-1.8l-21 21c-10 10-26.4 9.2-35.4-1.6l-39.2-47c-12.6-15.1-35.7-15.4-48.7-.6L135.9 215c-5.1 5.8-7.9 13.3-7.9 21.1v84c0 17.7 14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-bar": { + "aliases": { + "names": [ + "bar-chart" + ], + "unicodes": { + "secondary": [ + "10f080" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "bar", + "chart", + "graph" + ] + }, + "unicode": "f080", + "label": "Chart Bar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zm96 96c0-17.7 14.3-32 32-32l192 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32zm32 64H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + }, + "regular": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M24 32c13.3 0 24 10.7 24 24V408c0 13.3 10.7 24 24 24H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H72c-39.8 0-72-32.2-72-72V56C0 42.7 10.7 32 24 32zM128 136c0-13.3 10.7-24 24-24l208 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-208 0c-13.3 0-24-10.7-24-24zm24 72H296c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24zm0 96H424c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chart-column": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bar", + "bar chart", + "chart", + "graph", + "track", + "trend" + ] + }, + "unicode": "e0e3", + "label": "Chart Column", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zM160 224c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V256c0-17.7 14.3-32 32-32zm128-64V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32zm64 32c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32zM480 96V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V96c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-gantt": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "graph", + "track", + "trend" + ] + }, + "unicode": "e0e4", + "label": "Chart Gantt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zm96 96c0-17.7 14.3-32 32-32l96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32zm96 64H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm160 96h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-line": { + "aliases": { + "names": [ + "line-chart" + ], + "unicodes": { + "secondary": [ + "10f201" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "activity", + "analytics", + "chart", + "dashboard", + "gain", + "graph", + "increase", + "line" + ] + }, + "unicode": "f201", + "label": "Chart Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V400c0 44.2 35.8 80 80 80H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H80c-8.8 0-16-7.2-16-16V64zm406.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L320 210.7l-57.4-57.4c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L240 221.3l57.4 57.4c12.5 12.5 32.8 12.5 45.3 0l128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-pie": { + "aliases": { + "names": [ + "pie-chart" + ], + "unicodes": { + "secondary": [ + "10f200" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "chart", + "diagram", + "graph", + "pie" + ] + }, + "unicode": "f200", + "label": "Chart Pie", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M302 240V16.6c0-9 7-16.6 16-16.6C441.7 0 542 100.3 542 224c0 9-7.6 16-16.6 16H302zM30 272C30 150.7 120.1 50.3 237 34.3c9.2-1.3 17 6.1 17 15.4V288L410.5 444.5c6.7 6.7 6.2 17.7-1.5 23.1C369.8 495.6 321.8 512 270 512C137.5 512 30 404.6 30 272zm526.4 16c9.3 0 16.6 7.8 15.4 17c-7.7 55.9-34.6 105.6-73.9 142.3c-6 5.6-15.4 5.2-21.2-.7L318 288H556.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chart-simple": { + "changes": [ + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "bar", + "chart", + "column", + "graph", + "row", + "trend" + ] + }, + "unicode": "e473", + "label": "Chart Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 80c0-26.5 21.5-48 48-48h32c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48V80zM0 272c0-26.5 21.5-48 48-48H80c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V272zM368 96h32c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48H368c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "check": { + "aliases": { + "unicodes": { + "composite": [ + "2713", + "2714" + ], + "secondary": [ + "10f00c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Check Mark", + "accept", + "agree", + "check", + "check mark", + "checkmark", + "confirm", + "correct", + "done", + "mark", + "notice", + "notification", + "notify", + "ok", + "select", + "success", + "tick", + "todo", + "yes", + "✓" + ] + }, + "unicode": "f00c", + "label": "Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321796, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "check-double": { + "aliases": { + "unicodes": { + "secondary": [ + "10f560" + ] + } + }, + "changes": [ + "5.1.0", + "5.8.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "checkmark", + "confirm", + "correct", + "done", + "notice", + "notification", + "notify", + "ok", + "select", + "success", + "tick", + "todo" + ] + }, + "unicode": "f560", + "label": "Check Double", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321796, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M374.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 178.7l-57.4-57.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l80 80c12.5 12.5 32.8 12.5 45.3 0l160-160zm96 128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 402.7 86.6 297.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l256-256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "check-to-slot": { + "aliases": { + "names": [ + "vote-yea" + ], + "unicodes": { + "secondary": [ + "10f772" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "cast", + "election", + "politics", + "positive", + "voting", + "yes" + ] + }, + "unicode": "f772", + "label": "Check To Slot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 80c0-26.5 21.5-48 48-48H432c26.5 0 48 21.5 48 48V384H96V80zm313 47c-9.4-9.4-24.6-9.4-33.9 0l-111 111-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L409 161c9.4-9.4 9.4-24.6 0-33.9zM0 336c0-26.5 21.5-48 48-48H64V416H512V288h16c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V336z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cheese": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ef" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cheddar", + "curd", + "gouda", + "melt", + "parmesan", + "sandwich", + "swiss", + "wedge" + ] + }, + "unicode": "f7ef", + "label": "Cheese", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 240.2V256H0c0-20 10-38.7 26.6-49.8L274.9 40.7c8.6-5.7 18.6-8.7 28.9-8.7C418.8 32 512 125.2 512 240.2zm0 47.8V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V288H512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chess": { + "aliases": { + "unicodes": { + "secondary": [ + "10f439" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "castle", + "checkmate", + "game", + "king", + "rook", + "strategy", + "tournament" + ] + }, + "unicode": "f439", + "label": "Chess", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M144 16c0-8.8-7.2-16-16-16s-16 7.2-16 16V32H96c-8.8 0-16 7.2-16 16s7.2 16 16 16h16V96H60.2C49.1 96 40 105.1 40 116.2c0 2.5 .5 4.9 1.3 7.3L73.8 208H72c-13.3 0-24 10.7-24 24s10.7 24 24 24h4L60 384H196L180 256h4c13.3 0 24-10.7 24-24s-10.7-24-24-24h-1.8l32.5-84.5c.9-2.3 1.3-4.8 1.3-7.3c0-11.2-9.1-20.2-20.2-20.2H144V64h16c8.8 0 16-7.2 16-16s-7.2-16-16-16H144V16zM48 416L4.8 473.6C1.7 477.8 0 482.8 0 488c0 13.3 10.7 24 24 24H232c13.3 0 24-10.7 24-24c0-5.2-1.7-10.2-4.8-14.4L208 416H48zm288 0l-43.2 57.6c-3.1 4.2-4.8 9.2-4.8 14.4c0 13.3 10.7 24 24 24H488c13.3 0 24-10.7 24-24c0-5.2-1.7-10.2-4.8-14.4L464 416H336zM304 208v51.9c0 7.8 2.8 15.3 8 21.1L339.2 312 337 384H462.5l-3.3-72 28.3-30.8c5.4-5.9 8.5-13.6 8.5-21.7V208c0-8.8-7.2-16-16-16H464c-8.8 0-16 7.2-16 16v16H424V208c0-8.8-7.2-16-16-16H392c-8.8 0-16 7.2-16 16v16H352V208c0-8.8-7.2-16-16-16H320c-8.8 0-16 7.2-16 16zm80 96c0-8.8 7.2-16 16-16s16 7.2 16 16v32H384V304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chess-bishop": { + "aliases": { + "unicodes": { + "composite": [ + "265d" + ], + "secondary": [ + "10f43a" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess Bishop", + "board", + "checkmate", + "game", + "strategy" + ] + }, + "unicode": "f43a", + "label": "Chess Bishop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M128 0C110.3 0 96 14.3 96 32c0 16.1 11.9 29.4 27.4 31.7C78.4 106.8 8 190 8 288c0 47.4 30.8 72.3 56 84.7V400H256V372.7c25.2-12.5 56-37.4 56-84.7c0-37.3-10.2-72.4-25.3-104.1l-99.4 99.4c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L270.8 154.6c-23.2-38.1-51.8-69.5-74.2-90.9C212.1 61.4 224 48.1 224 32c0-17.7-14.3-32-32-32H128zM48 432L6.6 473.4c-4.2 4.2-6.6 10-6.6 16C0 501.9 10.1 512 22.6 512H297.4c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16L272 432H48z" + }, + "regular": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M104 0C90.7 0 80 10.7 80 24c0 11.2 7.6 20.6 18 23.2c-7.8 8-16.1 17-24.4 27C38.2 116.7 0 178.8 0 250.9c0 44.8 24.6 72.2 48 87.8V352H96V325c0-9-5-17.2-13-21.3c-18-9.3-35-24.7-35-52.7c0-55.5 29.8-106.8 62.4-145.9c16-19.2 32.1-34.8 44.2-45.5c1.9-1.7 3.7-3.2 5.3-4.6c1.7 1.4 3.4 3 5.3 4.6c12.1 10.7 28.2 26.3 44.2 45.5c5.3 6.3 10.5 13 15.5 20L159 191c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l57.8-57.8c12.8 25.9 21.2 54.3 21.2 83.8c0 28-17 43.4-35 52.7c-8 4.1-13 12.3-13 21.3v27h48V338.7c23.4-15.6 48-42.9 48-87.8c0-72.1-38.2-134.2-73.6-176.7c-8.3-9.9-16.6-19-24.4-27c10.3-2.7 18-12.1 18-23.2c0-13.3-10.7-24-24-24H160 104zM52.7 464l16.6-32H250.8l16.6 32H52.7zm207.9-80H59.5c-12 0-22.9 6.7-28.4 17.3L4.6 452.5c-3 5.8-4.6 12.2-4.6 18.7C0 493.8 18.2 512 40.8 512H279.2c22.5 0 40.8-18.2 40.8-40.8c0-6.5-1.6-12.9-4.6-18.7l-26.5-51.2c-5.5-10.6-16.5-17.3-28.4-17.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chess-board": { + "aliases": { + "unicodes": { + "secondary": [ + "10f43c" + ] + } + }, + "changes": [ + "5.0.5", + "5.7.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "checkmate", + "game", + "strategy" + ] + }, + "unicode": "f43c", + "label": "Chess Board", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321797, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 64v64h64V96h64v64h64V96h64v64H320v64h64v64H320v64h64v64H320V352H256v64H192V352H128v64H64V352h64V288H64V224h64V160H64V96h64zm64 128h64V160H192v64zm0 64V224H128v64h64zm64 0H192v64h64V288zm0 0h64V224H256v64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chess-king": { + "aliases": { + "unicodes": { + "composite": [ + "265a" + ], + "secondary": [ + "10f43f" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess King", + "board", + "checkmate", + "game", + "strategy" + ] + }, + "unicode": "f43f", + "label": "Chess King", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0c17.7 0 32 14.3 32 32V48h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H256v48H408c22.1 0 40 17.9 40 40c0 5.3-1 10.5-3.1 15.4L368 400H80L3.1 215.4C1 210.5 0 205.3 0 200c0-22.1 17.9-40 40-40H192V112H176c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V32c0-17.7 14.3-32 32-32zM38.6 473.4L80 432H368l41.4 41.4c4.2 4.2 6.6 10 6.6 16c0 12.5-10.1 22.6-22.6 22.6H54.6C42.1 512 32 501.9 32 489.4c0-6 2.4-11.8 6.6-16z" + }, + "regular": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M248 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V56H168c-13.3 0-24 10.7-24 24s10.7 24 24 24h32v40H59.6C26.7 144 0 170.7 0 203.6c0 8.2 1.7 16.3 4.9 23.8L59.1 352h52.3L49 208.2c-.6-1.5-1-3-1-4.6c0-6.4 5.2-11.6 11.6-11.6H224 388.4c6.4 0 11.6 5.2 11.6 11.6c0 1.6-.3 3.2-1 4.6L336.5 352h52.3l54.2-124.6c3.3-7.5 4.9-15.6 4.9-23.8c0-32.9-26.7-59.6-59.6-59.6H248V104h32c13.3 0 24-10.7 24-24s-10.7-24-24-24H248V24zM101.2 432H346.8l16.6 32H84.7l16.6-32zm283.7-30.7c-5.5-10.6-16.5-17.3-28.4-17.3H91.5c-12 0-22.9 6.7-28.4 17.3L36.6 452.5c-3 5.8-4.6 12.2-4.6 18.7C32 493.8 50.2 512 72.8 512H375.2c22.5 0 40.8-18.2 40.8-40.8c0-6.5-1.6-12.9-4.6-18.7l-26.5-51.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chess-knight": { + "aliases": { + "unicodes": { + "composite": [ + "265e" + ], + "secondary": [ + "10f441" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess Knight", + "board", + "checkmate", + "game", + "horse", + "strategy" + ] + }, + "unicode": "f441", + "label": "Chess Knight", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M80 48L66.7 61.3C54.7 73.3 48 89.5 48 106.5V238.9c0 10.7 5.3 20.7 14.2 26.6l10.6 7c14.3 9.6 32.7 10.7 48.1 3l3.2-1.6c2.6-1.3 5-2.8 7.3-4.5l49.4-37c6.6-5 15.7-5 22.3 0c10.2 7.7 9.9 23.1-.7 30.3L74.4 350C57.9 361.3 48 380 48 400H368l28.9-159c2.1-11.3 3.1-22.8 3.1-34.3V192C400 86 314 0 208 0H67.8C56.9 0 48 8.9 48 19.8c0 7.5 4.2 14.3 10.9 17.7L80 48zm24 68a20 20 0 1 1 40 0 20 20 0 1 1 -40 0zM6.6 473.4c-4.2 4.2-6.6 10-6.6 16C0 501.9 10.1 512 22.6 512H393.4c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16L368 432H48L6.6 473.4z" + }, + "regular": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M210.6 48H101.3l17.1 12.8c6 4.5 9.6 11.6 9.6 19.2s-3.6 14.7-9.6 19.2l-6.5 4.9c-10 7.5-16 19.3-16 31.9l-.3 91c0 10.2 4.9 19.9 13.2 25.8l1.9 1.3c9.9 7.1 23.3 7 33.2-.1l49.9-36.3c10.7-7.8 25.7-5.4 33.5 5.3s5.4 25.7-5.3 33.5l-49.9 36.3-53.8 39.1c-7.3 5.3-13 12.2-16.9 20.1H50.8c5.3-22.1 17.8-41.9 35.9-56.3c-1.3-.8-2.6-1.7-3.8-2.6L81 291.8c-21-15-33.4-39.2-33.3-65l.3-91c.1-19.8 6.7-38.7 18.6-53.9l-.4-.3C54.7 73 48 59.6 48 45.3C48 20.3 68.3 0 93.3 0H210.6C315.2 0 400 84.8 400 189.4c0 11.1-1 22.2-2.9 33.2L374.1 352H325.3l24.5-137.8c1.5-8.2 2.2-16.5 2.2-24.8C352 111.3 288.7 48 210.6 48zM69.2 432L52.7 464H363.3l-16.6-32H69.2zm315.7-30.7l26.5 51.2c3 5.8 4.6 12.2 4.6 18.7c0 22.5-18.2 40.8-40.8 40.8H40.8C18.2 512 0 493.8 0 471.2c0-6.5 1.6-12.9 4.6-18.7l26.5-51.2C36.5 390.7 47.5 384 59.5 384h297c12 0 22.9 6.7 28.4 17.3zM156 128a20 20 0 1 1 0 40 20 20 0 1 1 0-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chess-pawn": { + "aliases": { + "unicodes": { + "composite": [ + "265f" + ], + "secondary": [ + "10f443" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "checkmate", + "chess", + "chess pawn", + "dupe", + "expendable", + "game", + "strategy" + ] + }, + "unicode": "f443", + "label": "Chess Pawn", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M199.4 224c29.2-18.4 48.6-50.9 48.6-88c0-57.4-46.6-104-104-104S40 78.6 40 136c0 37.1 19.4 69.6 48.5 88H80c-17.7 0-32 14.3-32 32c0 16.5 12.5 30 28.5 31.8L64 400H224L211.5 287.8c16-1.8 28.5-15.3 28.5-31.8c0-17.7-14.3-32-32-32h-8.6zM6.6 473.4c-4.2 4.2-6.6 10-6.6 16C0 501.9 10.1 512 22.6 512H265.4c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16L240 432H48L6.6 473.4z" + }, + "regular": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M232 152A72 72 0 1 0 88 152a72 72 0 1 0 144 0zm24 120H243.4l10.7 80H205.7L195 272H160 125l-10.7 80H65.9l10.7-80H64c-13.3 0-24-10.7-24-24s10.7-24 24-24c-15.1-20.1-24-45-24-72C40 85.7 93.7 32 160 32s120 53.7 120 120c0 27-8.9 51.9-24 72c13.3 0 24 10.7 24 24s-10.7 24-24 24zM52.7 464H267.3l-16.6-32H69.2L52.7 464zm207.9-80c12 0 22.9 6.7 28.4 17.3l26.5 51.2c3 5.8 4.6 12.2 4.6 18.7c0 22.5-18.2 40.8-40.8 40.8H40.8C18.2 512 0 493.8 0 471.2c0-6.5 1.6-12.9 4.6-18.7l26.5-51.2C36.5 390.7 47.5 384 59.5 384h201z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chess-queen": { + "aliases": { + "unicodes": { + "composite": [ + "265b" + ], + "secondary": [ + "10f445" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess Queen", + "board", + "checkmate", + "game", + "strategy" + ] + }, + "unicode": "f445", + "label": "Chess Queen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M255 0a56 56 0 1 1 0 112A56 56 0 1 1 255 0zM133.1 143.8c3.3-13 15-23.8 30.2-23.8c12.3 0 22.6 7.2 27.7 17c12 23.2 36.2 39 64 39s52-15.8 64-39c5.1-9.8 15.4-17 27.7-17c15.3 0 27 10.8 30.2 23.8c7 27.8 32.2 48.3 62.1 48.3c10.8 0 21-2.7 29.8-7.4c8.4-4.4 18.9-4.5 27.6 .9c13 8 17.1 25 9.2 38L398.7 400H383 342.6 167.4 127 111.3L4.4 223.6c-7.9-13-3.8-30 9.2-38c8.7-5.3 19.2-5.3 27.6-.9c8.9 4.7 19 7.4 29.8 7.4c29.9 0 55.1-20.5 62.1-48.3zM255 224l0 0 0 0h0zM111 432H399l41.4 41.4c4.2 4.2 6.6 10 6.6 16c0 12.5-10.1 22.6-22.6 22.6H85.6C73.1 512 63 501.9 63 489.4c0-6 2.4-11.8 6.6-16L111 432z" + }, + "regular": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-95.2-8c-18.1 0-31.3 12.8-35.6 26.9c-8 26.2-32.4 45.2-61.2 45.2c-10 0-19.4-2.3-27.7-6.3c-7.6-3.7-16.7-3.3-24 1.2C.7 162.1-3.1 177.1 3.7 188.9L97.6 352H153l-83-144.1c40.5-2.2 75.3-25.9 93.1-59.8c22 26.8 55.4 43.9 92.8 43.9s70.8-17.1 92.8-43.9c17.8 34 52.6 57.7 93.1 59.8L359 352h55.4l93.9-163.1c6.8-11.7 3-26.7-8.6-33.8c-7.3-4.5-16.4-4.9-24-1.2c-8.4 4-17.7 6.3-27.7 6.3c-28.8 0-53.2-19-61.2-45.2C382.5 100.8 369.3 88 351.2 88c-14.5 0-26.3 8.5-32.4 19.3c-12.4 22-35.9 36.7-62.8 36.7s-50.4-14.8-62.8-36.7C187.1 96.5 175.4 88 160.8 88zM133.2 432H378.8l16.6 32H116.7l16.6-32zm283.7-30.7c-5.5-10.6-16.5-17.3-28.4-17.3h-265c-12 0-22.9 6.7-28.4 17.3L68.6 452.5c-3 5.8-4.6 12.2-4.6 18.7c0 22.5 18.2 40.8 40.8 40.8H407.2c22.5 0 40.8-18.2 40.8-40.8c0-6.5-1.6-12.9-4.6-18.7l-26.5-51.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chess-rook": { + "aliases": { + "unicodes": { + "composite": [ + "265c" + ], + "secondary": [ + "10f447" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess Rook", + "board", + "castle", + "checkmate", + "game", + "strategy" + ] + }, + "unicode": "f447", + "label": "Chess Rook", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M16 192V48c0-8.8 7.2-16 16-16H96c8.8 0 16 7.2 16 16V88c0 4.4 3.6 8 8 8h32c4.4 0 8-3.6 8-8V48c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16V88c0 4.4 3.6 8 8 8h32c4.4 0 8-3.6 8-8V48c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16V192c0 10.1-4.7 19.6-12.8 25.6L336 256l16 144H64L80 256 28.8 217.6C20.7 211.6 16 202.1 16 192zm176 96h32c8.8 0 16-7.2 16-16V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 8.8 7.2 16 16 16zM6.6 473.4L48 432H368l41.4 41.4c4.2 4.2 6.6 10 6.6 16c0 12.5-10.1 22.6-22.6 22.6H22.6C10.1 512 0 501.9 0 489.4c0-6 2.4-11.8 6.6-16z" + }, + "regular": { + "lastModified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 80V192c0 2.5 1.2 4.9 3.2 6.4l51.2 38.4c6.8 5.1 10.4 13.4 9.5 21.9L101.5 352H53.2l9.4-85L22.4 236.8C8.3 226.2 0 209.6 0 192V72C0 49.9 17.9 32 40 32H344c22.1 0 40 17.9 40 40V192c0 17.6-8.3 34.2-22.4 44.8L321.4 267l9.4 85H282.5l-10.4-93.3c-.9-8.4 2.7-16.8 9.5-21.9l51.2-38.4c2-1.5 3.2-3.9 3.2-6.4V80H272v24c0 13.3-10.7 24-24 24s-24-10.7-24-24V80H160v24c0 13.3-10.7 24-24 24s-24-10.7-24-24V80H48zm4.7 384H331.3l-16.6-32H69.2L52.7 464zm271.9-80c12 0 22.9 6.7 28.4 17.3l26.5 51.2c3 5.8 4.6 12.2 4.6 18.7c0 22.5-18.2 40.8-40.8 40.8H40.8C18.2 512 0 493.8 0 471.2c0-6.5 1.6-12.9 4.6-18.7l26.5-51.2C36.5 390.7 47.5 384 59.5 384h265zM176 288c-8.8 0-16-7.2-16-16V224c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 8.8-7.2 16-16 16H176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "chevron-down": { + "aliases": { + "unicodes": { + "secondary": [ + "10f078" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "download", + "expand" + ] + }, + "unicode": "f078", + "label": "Chevron Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M201.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 338.7 54.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chevron-left": { + "aliases": { + "unicodes": { + "composite": [ + "2329" + ], + "secondary": [ + "10f053" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Left-Pointing Angle Bracket", + "arrow", + "back", + "bracket", + "previous" + ] + }, + "unicode": "f053", + "label": "Chevron Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l192 192c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 246.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chevron-right": { + "aliases": { + "unicodes": { + "composite": [ + "232a" + ], + "secondary": [ + "10f054" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right-Pointing Angle Bracket", + "arrow", + "bracket", + "forward", + "next" + ] + }, + "unicode": "f054", + "label": "Chevron Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chevron-up": { + "aliases": { + "unicodes": { + "secondary": [ + "10f077" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "collapse", + "upload" + ] + }, + "unicode": "f077", + "label": "Chevron Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M201.4 105.4c12.5-12.5 32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L224 173.3 54.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l192-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "child": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1ae" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.1.1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boy", + "girl", + "kid", + "toddler", + "young", + "youth" + ] + }, + "unicode": "f1ae", + "label": "Child", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M96 64a64 64 0 1 1 128 0A64 64 0 1 1 96 64zm48 320v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V287.8L59.1 321c-9.4 15-29.2 19.4-44.1 10S-4.5 301.9 4.9 287l39.9-63.3C69.7 184 113.2 160 160 160s90.3 24 115.2 63.6L315.1 287c9.4 15 4.9 34.7-10 44.1s-34.7 4.9-44.1-10L240 287.8V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "child-combatant": { + "aliases": { + "names": [ + "child-rifle" + ] + }, + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "combatant" + ] + }, + "unicode": "e4e0", + "label": "Child Combatant", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M144 128A64 64 0 1 0 144 0a64 64 0 1 0 0 128zm-8 352V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V300.5L228.9 321c9.4 15 29.2 19.4 44.1 10s19.4-29.2 10-44.1l-51.7-82.1c-17.6-27.9-48.3-44.9-81.2-44.9H137.8c-33 0-63.7 16.9-81.2 44.9L4.9 287c-9.4 15-4.9 34.7 10 44.1s34.7 4.9 44.1-10L72 300.5V480c0 17.7 14.3 32 32 32s32-14.3 32-32zM416 0H400 384c-8.8 0-16 7.2-16 16s7.2 16 16 16V132.3c-9.6 5.5-16 15.9-16 27.7v32c-17.7 0-32 14.3-32 32V368c0 17.7 14.3 32 32 32h16v96c0 8.8 7.2 16 16 16h59.5c10.4 0 18-9.8 15.5-19.9L452 400h44c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H448V325.3l53.1-17.7c6.5-2.2 10.9-8.3 10.9-15.2V208c0-8.8-7.2-16-16-16H480c-8.8 0-16 7.2-16 16v56l-16 5.3V160c0-11.8-6.4-22.2-16-27.7V16c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "child-dress": { + "changes": [ + "6.1.1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boy", + "girl", + "kid", + "toddler", + "young", + "youth" + ] + }, + "unicode": "e59c", + "label": "Child Dress", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M224 64A64 64 0 1 0 96 64a64 64 0 1 0 128 0zM88 400v80c0 17.7 14.3 32 32 32s32-14.3 32-32V400h16v80c0 17.7 14.3 32 32 32s32-14.3 32-32V400h17.8c10.9 0 18.6-10.7 15.2-21.1l-31.1-93.4 28.6 37.8c10.7 14.1 30.8 16.8 44.8 6.2s16.8-30.7 6.2-44.8L254.6 207c-22.4-29.6-57.5-47-94.6-47s-72.2 17.4-94.6 47L6.5 284.7c-10.7 14.1-7.9 34.2 6.2 44.8s34.2 7.9 44.8-6.2l28.7-37.8L55 378.9C51.6 389.3 59.3 400 70.2 400H88z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "child-reaching": { + "changes": [ + "6.1.1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boy", + "girl", + "kid", + "toddler", + "young", + "youth" + ] + }, + "unicode": "e59d", + "label": "Child Reaching", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M240 64A64 64 0 1 0 112 64a64 64 0 1 0 128 0zM136.9 169.3c-23.7-8.4-44.5-24.3-58.8-45.8L58.6 94.2C48.8 79.5 29 75.6 14.2 85.4S-4.4 115 5.4 129.8L24.9 159c18.1 27.1 42.8 48.4 71.1 62.4V480c0 17.7 14.3 32 32 32s32-14.3 32-32V384h32v96c0 17.7 14.3 32 32 32s32-14.3 32-32V221.6c29.1-14.2 54.4-36.2 72.7-64.2l18.2-27.9c9.6-14.8 5.4-34.6-9.4-44.3s-34.6-5.5-44.3 9.4L275 122.4c-21.8 33.4-58.9 53.6-98.8 53.6c-12.6 0-24.9-2-36.6-5.8c-.9-.3-1.8-.7-2.7-.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "children": { + "changes": [ + "6.1.0", + "6.1.1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boy", + "child", + "girl", + "kid", + "kids", + "young", + "youth" + ] + }, + "unicode": "e4e1", + "label": "Children", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M160 0a64 64 0 1 1 0 128A64 64 0 1 1 160 0zM88 480V400H70.2c-10.9 0-18.6-10.7-15.2-21.1l31.1-93.4L57.5 323.3c-10.7 14.1-30.8 16.8-44.8 6.2s-16.8-30.7-6.2-44.8L65.4 207c22.4-29.6 57.5-47 94.6-47s72.2 17.4 94.6 47l58.9 77.7c10.7 14.1 7.9 34.2-6.2 44.8s-34.2 7.9-44.8-6.2l-28.6-37.8L265 378.9c3.5 10.4-4.3 21.1-15.2 21.1H232v80c0 17.7-14.3 32-32 32s-32-14.3-32-32V400H152v80c0 17.7-14.3 32-32 32s-32-14.3-32-32zM480 0a64 64 0 1 1 0 128A64 64 0 1 1 480 0zm-8 384v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V300.5L395.1 321c-9.4 15-29.2 19.4-44.1 10s-19.4-29.2-10-44.1l51.7-82.1c17.6-27.9 48.3-44.9 81.2-44.9h12.3c33 0 63.7 16.9 81.2 44.9L619.1 287c9.4 15 4.9 34.7-10 44.1s-34.7 4.9-44.1-10L552 300.5V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H472z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "chrome": { + "changes": [ + "4.4.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "unicode": "f268", + "label": "Chrome", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256C0 209.4 12.47 165.6 34.27 127.1L144.1 318.3C166 357.5 207.9 384 256 384C270.3 384 283.1 381.7 296.8 377.4L220.5 509.6C95.9 492.3 0 385.3 0 256zM365.1 321.6C377.4 302.4 384 279.1 384 256C384 217.8 367.2 183.5 340.7 160H493.4C505.4 189.6 512 222.1 512 256C512 397.4 397.4 511.1 256 512L365.1 321.6zM477.8 128H256C193.1 128 142.3 172.1 130.5 230.7L54.19 98.47C101 38.53 174 0 256 0C350.8 0 433.5 51.48 477.8 128V128zM168 256C168 207.4 207.4 168 256 168C304.6 168 344 207.4 344 256C344 304.6 304.6 344 256 344C207.4 344 168 304.6 168 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "chromecast": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f838", + "label": "Chromecast", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M447.8,64H64c-23.6,0-42.7,19.1-42.7,42.7v63.9H64v-63.9h383.8v298.6H298.6V448H448c23.6,0,42.7-19.1,42.7-42.7V106.7 C490.7,83.1,471.4,64,447.8,64z M21.3,383.6L21.3,383.6l0,63.9h63.9C85.2,412.2,56.6,383.6,21.3,383.6L21.3,383.6z M21.3,298.6V341 c58.9,0,106.6,48.1,106.6,107h42.7C170.7,365.6,103.7,298.7,21.3,298.6z M213.4,448h42.7c-0.5-129.5-105.3-234.3-234.8-234.6l0,42.4 C127.3,255.6,213.3,342,213.4,448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "church": { + "aliases": { + "unicodes": { + "composite": [ + "26ea" + ], + "secondary": [ + "10f51d" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Christian", + "building", + "cathedral", + "chapel", + "church", + "community", + "cross", + "religion" + ] + }, + "unicode": "f51d", + "label": "Church", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M344 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V48H264c-13.3 0-24 10.7-24 24s10.7 24 24 24h32v46.4L183.3 210c-14.5 8.7-23.3 24.3-23.3 41.2V512h96V416c0-35.3 28.7-64 64-64s64 28.7 64 64v96h96V251.2c0-16.9-8.8-32.5-23.3-41.2L344 142.4V96h32c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V24zM24.9 330.3C9.5 338.8 0 354.9 0 372.4V464c0 26.5 21.5 48 48 48h80V273.6L24.9 330.3zM592 512c26.5 0 48-21.5 48-48V372.4c0-17.5-9.5-33.6-24.9-42.1L512 273.6V512h80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle": { + "aliases": { + "unicodes": { + "composite": [ + "1f534", + "1f535", + "1f7e0", + "1f7e1", + "1f7e2", + "1f7e3", + "1f7e4", + "25cf", + "26aa", + "26ab", + "2b24", + "f10c", + "f1db" + ], + "secondary": [ + "10f111" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Circle", + "Black Large Circle", + "black circle", + "blue", + "blue circle", + "brown", + "brown circle", + "chart", + "circle", + "circle-thin", + "diameter", + "dot", + "ellipse", + "fill", + "geometric", + "green", + "green circle", + "notification", + "orange", + "orange circle", + "progress", + "purple", + "purple circle", + "red", + "red circle", + "round", + "white circle", + "yellow", + "yellow circle" + ] + }, + "unicode": "f111", + "label": "Circle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321802, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512z" + }, + "regular": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-arrow-down": { + "aliases": { + "names": [ + "arrow-circle-down" + ], + "unicodes": { + "secondary": [ + "10f0ab" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download" + ] + }, + "unicode": "f0ab", + "label": "Circle Arrow Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM127 281c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l71 71L232 136c0-13.3 10.7-24 24-24s24 10.7 24 24l0 182.1 71-71c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L273 393c-9.4 9.4-24.6 9.4-33.9 0L127 281z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-arrow-left": { + "aliases": { + "names": [ + "arrow-circle-left" + ], + "unicodes": { + "secondary": [ + "10f0a8" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "previous" + ] + }, + "unicode": "f0a8", + "label": "Circle Arrow Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM231 127c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-71 71L376 232c13.3 0 24 10.7 24 24s-10.7 24-24 24l-182.1 0 71 71c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L119 273c-9.4-9.4-9.4-24.6 0-33.9L231 127z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-arrow-right": { + "aliases": { + "names": [ + "arrow-circle-right" + ], + "unicodes": { + "secondary": [ + "10f0a9" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "next" + ] + }, + "unicode": "f0a9", + "label": "Circle Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM281 385c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l71-71L136 280c-13.3 0-24-10.7-24-24s10.7-24 24-24l182.1 0-71-71c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L393 239c9.4 9.4 9.4 24.6 0 33.9L281 385z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-arrow-up": { + "aliases": { + "names": [ + "arrow-circle-up" + ], + "unicodes": { + "secondary": [ + "10f0aa" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "upload" + ] + }, + "unicode": "f0aa", + "label": "Circle Arrow Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM385 231c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-71-71V376c0 13.3-10.7 24-24 24s-24-10.7-24-24V193.9l-71 71c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L239 119c9.4-9.4 24.6-9.4 33.9 0L385 231z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-check": { + "aliases": { + "names": [ + "check-circle" + ], + "unicodes": { + "composite": [ + "f05d" + ], + "secondary": [ + "10f058" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "affected", + "agree", + "clear", + "confirm", + "correct", + "done", + "ok", + "select", + "success", + "tick", + "todo", + "yes" + ] + }, + "unicode": "f058", + "label": "Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321799, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + }, + "regular": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M243.8 339.8C232.9 350.7 215.1 350.7 204.2 339.8L140.2 275.8C129.3 264.9 129.3 247.1 140.2 236.2C151.1 225.3 168.9 225.3 179.8 236.2L224 280.4L332.2 172.2C343.1 161.3 360.9 161.3 371.8 172.2C382.7 183.1 382.7 200.9 371.8 211.8L243.8 339.8zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-chevron-down": { + "aliases": { + "names": [ + "chevron-circle-down" + ], + "unicodes": { + "secondary": [ + "10f13a" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "download", + "dropdown", + "menu", + "more" + ] + }, + "unicode": "f13a", + "label": "Circle Chevron Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM135 241c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l87 87 87-87c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L273 345c-9.4 9.4-24.6 9.4-33.9 0L135 241z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-chevron-left": { + "aliases": { + "names": [ + "chevron-circle-left" + ], + "unicodes": { + "secondary": [ + "10f137" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "previous" + ] + }, + "unicode": "f137", + "label": "Circle Chevron Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM271 135c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-87 87 87 87c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L167 273c-9.4-9.4-9.4-24.6 0-33.9L271 135z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-chevron-right": { + "aliases": { + "names": [ + "chevron-circle-right" + ], + "unicodes": { + "secondary": [ + "10f138" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "forward", + "next" + ] + }, + "unicode": "f138", + "label": "Circle Chevron Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-chevron-up": { + "aliases": { + "names": [ + "chevron-circle-up" + ], + "unicodes": { + "secondary": [ + "10f139" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "collapse", + "upload" + ] + }, + "unicode": "f139", + "label": "Circle Chevron Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM377 271c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-87-87-87 87c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L239 167c9.4-9.4 24.6-9.4 33.9 0L377 271z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-dollar-to-slot": { + "aliases": { + "names": [ + "donate" + ], + "unicodes": { + "secondary": [ + "10f4b9" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contribute", + "generosity", + "gift", + "give" + ] + }, + "unicode": "f4b9", + "label": "Circle Dollar To Slot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M326.7 403.7c-22.1 8-45.9 12.3-70.7 12.3s-48.7-4.4-70.7-12.3c-.3-.1-.5-.2-.8-.3c-30-11-56.8-28.7-78.6-51.4C70 314.6 48 263.9 48 208C48 93.1 141.1 0 256 0S464 93.1 464 208c0 55.9-22 106.6-57.9 144c-1 1-2 2.1-3 3.1c-21.4 21.4-47.4 38.1-76.3 48.6zM256 91.9c-11.1 0-20.1 9-20.1 20.1v6c-5.6 1.2-10.9 2.9-15.9 5.1c-15 6.8-27.9 19.4-31.1 37.7c-1.8 10.2-.8 20 3.4 29c4.2 8.8 10.7 15 17.3 19.5c11.6 7.9 26.9 12.5 38.6 16l2.2 .7c13.9 4.2 23.4 7.4 29.3 11.7c2.5 1.8 3.4 3.2 3.8 4c.3 .8 .9 2.6 .2 6.7c-.6 3.5-2.5 6.4-8 8.8c-6.1 2.6-16 3.9-28.8 1.9c-6-1-16.7-4.6-26.2-7.9l0 0 0 0 0 0c-2.2-.7-4.3-1.5-6.4-2.1c-10.5-3.5-21.8 2.2-25.3 12.7s2.2 21.8 12.7 25.3c1.2 .4 2.7 .9 4.4 1.5c7.9 2.7 20.3 6.9 29.8 9.1V304c0 11.1 9 20.1 20.1 20.1s20.1-9 20.1-20.1v-5.5c5.4-1 10.5-2.5 15.4-4.6c15.7-6.7 28.4-19.7 31.6-38.7c1.8-10.4 1-20.3-3-29.4c-3.9-9-10.2-15.6-16.9-20.5c-12.2-8.8-28.3-13.7-40.4-17.4l-.8-.2c-14.2-4.3-23.8-7.3-29.9-11.4c-2.6-1.8-3.4-3-3.6-3.5c-.2-.3-.7-1.6-.1-5c.3-1.9 1.9-5.2 8.2-8.1c6.4-2.9 16.4-4.5 28.6-2.6c4.3 .7 17.9 3.3 21.7 4.3c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-4.4-1.2-14.4-3.2-21-4.4V112c0-11.1-9-20.1-20.1-20.1zM48 352H64c19.5 25.9 44 47.7 72.2 64H64v32H256 448V416H375.8c28.2-16.3 52.8-38.1 72.2-64h16c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V400c0-26.5 21.5-48 48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-dot": { + "aliases": { + "names": [ + "dot-circle" + ], + "unicodes": { + "composite": [ + "1f518" + ], + "secondary": [ + "10f192" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bullseye", + "button", + "geometric", + "notification", + "radio", + "radio button", + "target" + ] + }, + "unicode": "f192", + "label": "Circle Dot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321800, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zm0-160c-53 0-96-43-96-96s43-96 96-96s96 43 96 96s-43 96-96 96z" + }, + "regular": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 256C160 202.1 202.1 160 256 160C309 160 352 202.1 352 256C352 309 309 352 256 352C202.1 352 160 309 160 256zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-down": { + "aliases": { + "names": [ + "arrow-alt-circle-down" + ], + "unicodes": { + "composite": [ + "f01a" + ], + "secondary": [ + "10f358" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-down", + "download" + ] + }, + "unicode": "f358", + "label": "Circle Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM376.9 294.6L269.8 394.5c-3.8 3.5-8.7 5.5-13.8 5.5s-10.1-2-13.8-5.5L135.1 294.6c-4.5-4.2-7.1-10.1-7.1-16.3c0-12.3 10-22.3 22.3-22.3l57.7 0 0-96c0-17.7 14.3-32 32-32l32 0c17.7 0 32 14.3 32 32l0 96 57.7 0c12.3 0 22.3 10 22.3 22.3c0 6.2-2.6 12.1-7.1 16.3z" + }, + "regular": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 464a208 208 0 1 1 0-416 208 208 0 1 1 0 416zM256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM376.9 294.6c4.5-4.2 7.1-10.1 7.1-16.3c0-12.3-10-22.3-22.3-22.3H304V160c0-17.7-14.3-32-32-32l-32 0c-17.7 0-32 14.3-32 32v96H150.3C138 256 128 266 128 278.3c0 6.2 2.6 12.1 7.1 16.3l107.1 99.9c3.8 3.5 8.7 5.5 13.8 5.5s10.1-2 13.8-5.5l107.1-99.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-exclamation": { + "aliases": { + "names": [ + "exclamation-circle" + ], + "unicodes": { + "secondary": [ + "10f06a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affect", + "alert", + "damage", + "danger", + "error", + "important", + "notice", + "notification", + "notify", + "problem", + "warning" + ] + }, + "unicode": "f06a", + "label": "Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-h": { + "aliases": { + "names": [ + "hospital-symbol" + ], + "unicodes": { + "composite": [ + "24bd" + ], + "secondary": [ + "10f47e" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Circled Latin Capital Letter H", + "clinic", + "covid-19", + "emergency", + "letter", + "map" + ] + }, + "unicode": "f47e", + "label": "Circle H", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM368 152V256 360c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H192l0 80c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-208c0-13.3 10.7-24 24-24s24 10.7 24 24v80H320V152c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-half-stroke": { + "aliases": { + "names": [ + "adjust" + ], + "unicodes": { + "composite": [ + "25d0" + ], + "secondary": [ + "10f042" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "5.11.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Circle with Left Half Black", + "adjust", + "chart", + "contrast", + "dark", + "fill", + "light", + "pie", + "progress", + "saturation" + ] + }, + "unicode": "f042", + "label": "Circle Half Stroke", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321800, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 256c0-106-86-192-192-192V448c106 0 192-86 192-192zm64 0c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-info": { + "aliases": { + "names": [ + "info-circle" + ], + "unicodes": { + "secondary": [ + "10f05a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "details", + "help", + "information", + "more", + "support" + ] + }, + "unicode": "f05a", + "label": "Circle Info", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-left": { + "aliases": { + "names": [ + "arrow-alt-circle-left" + ], + "unicodes": { + "composite": [ + "f190" + ], + "secondary": [ + "10f359" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-left", + "back", + "previous" + ] + }, + "unicode": "f359", + "label": "Circle Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM217.4 376.9L117.5 269.8c-3.5-3.8-5.5-8.7-5.5-13.8s2-10.1 5.5-13.8l99.9-107.1c4.2-4.5 10.1-7.1 16.3-7.1c12.3 0 22.3 10 22.3 22.3l0 57.7 96 0c17.7 0 32 14.3 32 32l0 32c0 17.7-14.3 32-32 32l-96 0 0 57.7c0 12.3-10 22.3-22.3 22.3c-6.2 0-12.1-2.6-16.3-7.1z" + }, + "regular": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M48 256a208 208 0 1 1 416 0A208 208 0 1 1 48 256zm464 0A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM217.4 376.9c4.2 4.5 10.1 7.1 16.3 7.1c12.3 0 22.3-10 22.3-22.3V304h96c17.7 0 32-14.3 32-32V240c0-17.7-14.3-32-32-32H256V150.3c0-12.3-10-22.3-22.3-22.3c-6.2 0-12.1 2.6-16.3 7.1L117.5 242.2c-3.5 3.8-5.5 8.7-5.5 13.8s2 10.1 5.5 13.8l99.9 107.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-minus": { + "aliases": { + "names": [ + "minus-circle" + ], + "unicodes": { + "secondary": [ + "10f056" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "hide", + "negative", + "remove", + "shape", + "trash" + ] + }, + "unicode": "f056", + "label": "Circle Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321800, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM184 232H328c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-nodes": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cluster", + "connect", + "network" + ] + }, + "unicode": "e4e2", + "label": "Circle Nodes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-notch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1ce" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "circle-o-notch", + "diameter", + "dot", + "ellipse", + "round", + "spinner" + ] + }, + "unicode": "f1ce", + "label": "Circle Notch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321801, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M222.7 32.1c5 16.9-4.6 34.8-21.5 39.8C121.8 95.6 64 169.1 64 256c0 106 86 192 192 192s192-86 192-192c0-86.9-57.8-160.4-137.1-184.1c-16.9-5-26.6-22.9-21.5-39.8s22.9-26.6 39.8-21.5C434.9 42.1 512 140 512 256c0 141.4-114.6 256-256 256S0 397.4 0 256C0 140 77.1 42.1 182.9 10.6c16.9-5 34.8 4.6 39.8 21.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-pause": { + "aliases": { + "names": [ + "pause-circle" + ], + "unicodes": { + "composite": [ + "f28c" + ], + "secondary": [ + "10f28b" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hold", + "wait" + ] + }, + "unicode": "f28b", + "label": "Circle Pause", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM224 192V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32s32 14.3 32 32zm128 0V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32s32 14.3 32 32z" + }, + "regular": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm224-72V328c0 13.3-10.7 24-24 24s-24-10.7-24-24V184c0-13.3 10.7-24 24-24s24 10.7 24 24zm112 0V328c0 13.3-10.7 24-24 24s-24-10.7-24-24V184c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-play": { + "aliases": { + "names": [ + "play-circle" + ], + "unicodes": { + "composite": [ + "f01d" + ], + "secondary": [ + "10f144" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "music", + "playing", + "sound", + "start", + "video" + ] + }, + "unicode": "f144", + "label": "Circle Play", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM188.3 147.1c-7.6 4.2-12.3 12.3-12.3 20.9V344c0 8.7 4.7 16.7 12.3 20.9s16.8 4.1 24.3-.5l144-88c7.1-4.4 11.5-12.1 11.5-20.5s-4.4-16.1-11.5-20.5l-144-88c-7.4-4.5-16.7-4.7-24.3-.5z" + }, + "regular": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM188.3 147.1c7.6-4.2 16.8-4.1 24.3 .5l144 88c7.1 4.4 11.5 12.1 11.5 20.5s-4.4 16.1-11.5 20.5l-144 88c-7.4 4.5-16.7 4.7-24.3 .5s-12.3-12.2-12.3-20.9V168c0-8.7 4.7-16.7 12.3-20.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-plus": { + "aliases": { + "names": [ + "plus-circle" + ], + "unicodes": { + "secondary": [ + "10f055" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "expand", + "new", + "positive", + "shape" + ] + }, + "unicode": "f055", + "label": "Circle Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321801, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM232 344V280H168c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V168c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H280v64c0 13.3-10.7 24-24 24s-24-10.7-24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-question": { + "aliases": { + "names": [ + "question-circle" + ], + "unicodes": { + "composite": [ + "f29c" + ], + "secondary": [ + "10f059" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "help", + "information", + "support", + "unknown" + ] + }, + "unicode": "f059", + "label": "Circle Question", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM169.8 165.3c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V250.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H222.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + }, + "regular": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm169.8-90.7c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V250.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H222.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-radiation": { + "aliases": { + "names": [ + "radiation-alt" + ], + "unicodes": { + "composite": [ + "2622" + ], + "secondary": [ + "10f7ba" + ] + } + }, + "changes": [ + "5.6.0", + "5.8.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "danger", + "dangerous", + "deadly", + "hazard", + "nuclear", + "radioactive", + "sign", + "warning" + ] + }, + "unicode": "f7ba", + "label": "Circle Radiation", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 64a192 192 0 1 1 0 384 192 192 0 1 1 0-384zm0 448A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM200 256c0-20.7 11.3-38.8 28-48.5l-36-62.3c-8.8-15.3-28.7-20.8-42-9c-25.6 22.6-43.9 53.3-50.9 88.1C95.7 241.5 110.3 256 128 256l72 0zm28 48.5l-36 62.4c-8.8 15.3-3.6 35.2 13.1 40.8c16 5.4 33.1 8.3 50.9 8.3s34.9-2.9 50.9-8.3c16.7-5.6 21.9-25.5 13.1-40.8l-36-62.4c-8.2 4.8-17.8 7.5-28 7.5s-19.8-2.7-28-7.5zM312 256l72 0c17.7 0 32.3-14.5 28.8-31.8c-7-34.8-25.3-65.5-50.9-88.1c-13.2-11.7-33.1-6.3-42 9l-36 62.3c16.7 9.7 28 27.8 28 48.5zm-56 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "circle-right": { + "aliases": { + "names": [ + "arrow-alt-circle-right" + ], + "unicodes": { + "composite": [ + "f18e" + ], + "secondary": [ + "10f35a" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-right", + "forward", + "next" + ] + }, + "unicode": "f35a", + "label": "Circle Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM294.6 135.1l99.9 107.1c3.5 3.8 5.5 8.7 5.5 13.8s-2 10.1-5.5 13.8L294.6 376.9c-4.2 4.5-10.1 7.1-16.3 7.1C266 384 256 374 256 361.7l0-57.7-96 0c-17.7 0-32-14.3-32-32l0-32c0-17.7 14.3-32 32-32l96 0 0-57.7c0-12.3 10-22.3 22.3-22.3c6.2 0 12.1 2.6 16.3 7.1z" + }, + "regular": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM294.6 135.1c-4.2-4.5-10.1-7.1-16.3-7.1C266 128 256 138 256 150.3V208H160c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32h96v57.7c0 12.3 10 22.3 22.3 22.3c6.2 0 12.1-2.6 16.3-7.1l99.9-107.1c3.5-3.8 5.5-8.7 5.5-13.8s-2-10.1-5.5-13.8L294.6 135.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-stop": { + "aliases": { + "names": [ + "stop-circle" + ], + "unicodes": { + "composite": [ + "f28e" + ], + "secondary": [ + "10f28d" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "box", + "circle", + "square" + ] + }, + "unicode": "f28d", + "label": "Circle Stop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM192 160H320c17.7 0 32 14.3 32 32V320c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32z" + }, + "regular": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm192-96H320c17.7 0 32 14.3 32 32V320c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-up": { + "aliases": { + "names": [ + "arrow-alt-circle-up" + ], + "unicodes": { + "composite": [ + "f01b" + ], + "secondary": [ + "10f35b" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-up" + ] + }, + "unicode": "f35b", + "label": "Circle Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM135.1 217.4l107.1-99.9c3.8-3.5 8.7-5.5 13.8-5.5s10.1 2 13.8 5.5l107.1 99.9c4.5 4.2 7.1 10.1 7.1 16.3c0 12.3-10 22.3-22.3 22.3H304v96c0 17.7-14.3 32-32 32H240c-17.7 0-32-14.3-32-32V256H150.3C138 256 128 246 128 233.7c0-6.2 2.6-12.1 7.1-16.3z" + }, + "regular": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM135.1 217.4c-4.5 4.2-7.1 10.1-7.1 16.3c0 12.3 10 22.3 22.3 22.3H208v96c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V256h57.7c12.3 0 22.3-10 22.3-22.3c0-6.2-2.6-12.1-7.1-16.3L269.8 117.5c-3.8-3.5-8.7-5.5-13.8-5.5s-10.1 2-13.8 5.5L135.1 217.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-user": { + "aliases": { + "names": [ + "user-circle" + ], + "unicodes": { + "composite": [ + "f2be" + ], + "secondary": [ + "10f2bd" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "5.0.11", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f2bd", + "label": "Circle User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M399 384.2C376.9 345.8 335.4 320 288 320H224c-47.4 0-88.9 25.8-111 64.2c35.2 39.2 86.2 63.8 143 63.8s107.8-24.7 143-63.8zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 16a72 72 0 1 0 0-144 72 72 0 1 0 0 144z" + }, + "regular": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M406.5 399.6C387.4 352.9 341.5 320 288 320H224c-53.5 0-99.4 32.9-118.5 79.6C69.9 362.2 48 311.7 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208c0 55.7-21.9 106.2-57.5 143.6zm-40.1 32.7C334.4 452.4 296.6 464 256 464s-78.4-11.6-110.5-31.7c7.3-36.7 39.7-64.3 78.5-64.3h64c38.8 0 71.2 27.6 78.5 64.3zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-272a40 40 0 1 1 0-80 40 40 0 1 1 0 80zm-88-40a88 88 0 1 0 176 0 88 88 0 1 0 -176 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "circle-xmark": { + "aliases": { + "names": [ + "times-circle", + "xmark-circle" + ], + "unicodes": { + "composite": [ + "f05c" + ], + "secondary": [ + "10f057" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "close", + "cross", + "destroy", + "exit", + "incorrect", + "notice", + "notification", + "notify", + "problem", + "wrong", + "x" + ] + }, + "unicode": "f057", + "label": "Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321802, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM175 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + }, + "regular": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M175 175C184.4 165.7 199.6 165.7 208.1 175L255.1 222.1L303 175C312.4 165.7 327.6 165.7 336.1 175C346.3 184.4 346.3 199.6 336.1 208.1L289.9 255.1L336.1 303C346.3 312.4 346.3 327.6 336.1 336.1C327.6 346.3 312.4 346.3 303 336.1L255.1 289.9L208.1 336.1C199.6 346.3 184.4 346.3 175 336.1C165.7 327.6 165.7 312.4 175 303L222.1 255.1L175 208.1C165.7 199.6 165.7 184.4 175 175V175zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "city": { + "aliases": { + "unicodes": { + "composite": [ + "1f3d9" + ], + "secondary": [ + "10f64f" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buildings", + "busy", + "city", + "cityscape", + "skyscrapers", + "urban", + "windows" + ] + }, + "unicode": "f64f", + "label": "City", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 48c0-26.5-21.5-48-48-48H336c-26.5 0-48 21.5-48 48V96H224V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V96H112V24c0-13.3-10.7-24-24-24S64 10.7 64 24V96H48C21.5 96 0 117.5 0 144v96V464c0 26.5 21.5 48 48 48H304h32 96H592c26.5 0 48-21.5 48-48V240c0-26.5-21.5-48-48-48H480V48zm96 320v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16zM240 416H208c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16zM128 400c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32zM560 256c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32zM256 176v32c0 8.8-7.2 16-16 16H208c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16zM112 160c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h32zM256 304c0 8.8-7.2 16-16 16H208c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32zM112 320H80c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16zm304-48v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16zM400 64c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V80c0-8.8 7.2-16 16-16h32zm16 112v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clapperboard": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camera", + "clapper", + "clapper board", + "director", + "film", + "movie", + "record" + ] + }, + "unicode": "e131", + "label": "Clapperboard", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 32H361.9l-1 1-127 127h92.1l1-1L453.8 32.3c-1.9-.2-3.8-.3-5.8-.3zm64 128V96c0-15.1-5.3-29.1-14-40l-104 104H512zM294.1 32H201.9l-1 1L73.9 160h92.1l1-1 127-127zM64 32C28.7 32 0 60.7 0 96v64H6.1l1-1 127-127H64zM512 192H0V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clipboard": { + "aliases": { + "unicodes": { + "composite": [ + "1f4cb" + ], + "secondary": [ + "10f328" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clipboar", + "clipboard", + "copy", + "notes", + "paste", + "record" + ] + }, + "unicode": "f328", + "label": "Clipboard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M280 64h40c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128C0 92.7 28.7 64 64 64h40 9.6C121 27.5 153.3 0 192 0s71 27.5 78.4 64H280zM64 112c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16V128c0-8.8-7.2-16-16-16H304v24c0 13.3-10.7 24-24 24H192 104c-13.3 0-24-10.7-24-24V112H64zm128-8a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "clipboard-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f46c" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "confirm", + "done", + "ok", + "select", + "success", + "tick", + "todo", + "yes" + ] + }, + "unicode": "f46c", + "label": "Clipboard Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM305 273L177 401c-9.4 9.4-24.6 9.4-33.9 0L79 337c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L271 239c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clipboard-list": { + "aliases": { + "unicodes": { + "secondary": [ + "10f46d" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "intinerary", + "ol", + "schedule", + "tick", + "todo", + "ul" + ] + }, + "unicode": "f46d", + "label": "Clipboard List", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM72 272a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm104-16H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16zM72 368a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm88 0c0-8.8 7.2-16 16-16H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clipboard-question": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "assistance", + "interview", + "query", + "question" + ] + }, + "unicode": "e4e3", + "label": "Clipboard Question", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM105.8 229.3c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L216 328.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V314.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H158.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM160 416a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clipboard-user": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7f3" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attendance", + "record", + "roster", + "staff" + ] + }, + "unicode": "f7f3", + "label": "Clipboard User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM128 256a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM80 432c0-44.2 35.8-80 80-80h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clock": { + "aliases": { + "names": [ + "clock-four" + ], + "unicodes": { + "composite": [ + "1f553" + ], + "secondary": [ + "10f017" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.12.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "00", + "4", + "4:00", + "clock", + "date", + "four", + "four o’clock", + "hour", + "late", + "minute", + "o'clock", + "o’clock", + "schedule", + "ticking", + "time", + "timer", + "timestamp", + "watch" + ] + }, + "unicode": "f017", + "label": "Clock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0a256 256 0 1 1 0 512A256 256 0 1 1 256 0zM232 120V256c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2V120c0-13.3-10.7-24-24-24s-24 10.7-24 24z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM232 120V256c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2V120c0-13.3-10.7-24-24-24s-24 10.7-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "clock-rotate-left": { + "aliases": { + "names": [ + "history" + ], + "unicodes": { + "secondary": [ + "10f1da" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rewind", + "clock", + "reverse", + "time", + "time machine", + "time travel" + ] + }, + "unicode": "f1da", + "label": "Clock Rotate Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M75 75L41 41C25.9 25.9 0 36.6 0 57.9V168c0 13.3 10.7 24 24 24H134.1c21.4 0 32.1-25.9 17-41l-30.8-30.8C155 85.5 203 64 256 64c106 0 192 86 192 192s-86 192-192 192c-40.8 0-78.6-12.7-109.7-34.4c-14.5-10.1-34.4-6.6-44.6 7.9s-6.6 34.4 7.9 44.6C151.2 495 201.7 512 256 512c141.4 0 256-114.6 256-256S397.4 0 256 0C185.3 0 121.3 28.7 75 75zm181 53c-13.3 0-24 10.7-24 24V256c0 6.4 2.5 12.5 7 17l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-65-65V152c0-13.3-10.7-24-24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "clone": { + "aliases": { + "unicodes": { + "secondary": [ + "10f24d" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "copy", + "duplicate", + "paste" + ] + }, + "unicode": "f24d", + "label": "Clone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V384H224c-53 0-96-43-96-96V160H64c-35.3 0-64 28.7-64 64V448zm224-96H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H224c-35.3 0-64 28.7-64 64V288c0 35.3 28.7 64 64 64z" + }, + "regular": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 464H288c8.8 0 16-7.2 16-16V384h48v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h64v48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16zM224 304H448c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H224c-8.8 0-16 7.2-16 16V288c0 8.8 7.2 16 16 16zm-64-16V64c0-35.3 28.7-64 64-64H448c35.3 0 64 28.7 64 64V288c0 35.3-28.7 64-64 64H224c-35.3 0-64-28.7-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "closed-captioning": { + "aliases": { + "unicodes": { + "secondary": [ + "10f20a" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cc", + "deaf", + "hearing", + "subtitle", + "subtitling", + "text", + "video" + ] + }, + "unicode": "f20a", + "label": "Closed Captioning", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H512c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM200 208c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48s21.5-48 48-48zm144 48c0-26.5 21.5-48 48-48c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48z" + }, + "regular": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M512 80c8.8 0 16 7.2 16 16V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16H512zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM200 208c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48s21.5-48 48-48zm144 48c0-26.5 21.5-48 48-48c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "cloud": { + "aliases": { + "unicodes": { + "composite": [ + "2601" + ], + "secondary": [ + "10f0c2" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.11", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atmosphere", + "cloud", + "fog", + "overcast", + "save", + "upload", + "weather" + ] + }, + "unicode": "f0c2", + "label": "Cloud", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 336c0 79.5 64.5 144 144 144H512c70.7 0 128-57.3 128-128c0-61.9-44-113.6-102.4-125.4c4.1-10.7 6.4-22.4 6.4-34.6c0-53-43-96-96-96c-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32C167.6 32 96 103.6 96 192c0 2.7 .1 5.4 .2 8.1C40.2 219.8 0 273.2 0 336z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-arrow-down": { + "aliases": { + "names": [ + "cloud-download", + "cloud-download-alt" + ], + "unicodes": { + "composite": [ + "f381" + ], + "primary": [ + "f381" + ], + "secondary": [ + "10f0ed", + "10f381" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.11", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "export", + "save" + ] + }, + "unicode": "f0ed", + "label": "Cloud Arrow Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321804, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 480C64.5 480 0 415.5 0 336c0-62.8 40.2-116.2 96.2-135.9c-.1-2.7-.2-5.4-.2-8.1c0-88.4 71.6-160 160-160c59.3 0 111 32.2 138.7 80.2C409.9 102 428.3 96 448 96c53 0 96 43 96 96c0 12.2-2.3 23.8-6.4 34.6C596 238.4 640 290.1 640 352c0 70.7-57.3 128-128 128H144zm79-167l80 80c9.4 9.4 24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-39 39V184c0-13.3-10.7-24-24-24s-24 10.7-24 24V318.1l-39-39c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-arrow-up": { + "aliases": { + "names": [ + "cloud-upload", + "cloud-upload-alt" + ], + "unicodes": { + "composite": [ + "f382" + ], + "primary": [ + "f382" + ], + "secondary": [ + "10f0ee", + "10f382" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.11", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "import", + "save", + "upload" + ] + }, + "unicode": "f0ee", + "label": "Cloud Arrow Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321804, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 480C64.5 480 0 415.5 0 336c0-62.8 40.2-116.2 96.2-135.9c-.1-2.7-.2-5.4-.2-8.1c0-88.4 71.6-160 160-160c59.3 0 111 32.2 138.7 80.2C409.9 102 428.3 96 448 96c53 0 96 43 96 96c0 12.2-2.3 23.8-6.4 34.6C596 238.4 640 290.1 640 352c0 70.7-57.3 128-128 128H144zm79-217c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39V392c0 13.3 10.7 24 24 24s24-10.7 24-24V257.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-9.4-9.4-24.6-9.4-33.9 0l-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-bolt": { + "aliases": { + "names": [ + "thunderstorm" + ], + "unicodes": { + "composite": [ + "1f329" + ], + "secondary": [ + "10f76c" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bolt", + "cloud", + "cloud with lightning", + "lightning", + "precipitation", + "rain", + "storm", + "weather" + ] + }, + "unicode": "f76c", + "label": "Cloud Bolt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224c0 53 43 96 96 96h47.2L290 202.5c17.6-14.1 42.6-14 60.2 .2s22.8 38.6 12.8 58.8L333.7 320H352h64c53 0 96-43 96-96s-43-96-96-96c-.5 0-1.1 0-1.6 0c1.1-5.2 1.6-10.5 1.6-16c0-44.2-35.8-80-80-80c-24.3 0-46.1 10.9-60.8 28C256.5 24.3 219.1 0 176 0C114.1 0 64 50.1 64 112c0 7.1 .7 14.1 1.9 20.8C27.6 145.4 0 181.5 0 224zm330.1 3.6c-5.8-4.7-14.2-4.7-20.1-.1l-160 128c-5.3 4.2-7.4 11.4-5.1 17.8s8.3 10.7 15.1 10.7h70.1L177.7 488.8c-3.4 6.7-1.6 14.9 4.3 19.6s14.2 4.7 20.1 .1l160-128c5.3-4.2 7.4-11.4 5.1-17.8s-8.3-10.7-15.1-10.7H281.9l52.4-104.8c3.4-6.7 1.6-14.9-4.2-19.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-meatball": { + "aliases": { + "unicodes": { + "secondary": [ + "10f73b" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "FLDSMDFR", + "food", + "spaghetti", + "storm" + ] + }, + "unicode": "f73b", + "label": "Cloud Meatball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224c0 53 43 96 96 96h44.7c9.5-23.5 32.5-40 59.3-40c2 0 3.9 .1 5.8 .3C217.6 265.5 235.7 256 256 256s38.4 9.5 50.2 24.3c1.9-.2 3.9-.3 5.8-.3c26.9 0 49.9 16.5 59.3 40H416c53 0 96-43 96-96s-43-96-96-96c-.5 0-1.1 0-1.6 0c1.1-5.2 1.6-10.5 1.6-16c0-44.2-35.8-80-80-80c-24.3 0-46.1 10.9-60.8 28C256.5 24.3 219.1 0 176 0C114.1 0 64 50.1 64 112c0 7.1 .7 14.1 1.9 20.8C27.6 145.4 0 181.5 0 224zm288 96c0-17.7-14.3-32-32-32s-32 14.3-32 32c0 1 .1 2.1 .1 3.1c-.7-.8-1.4-1.6-2.1-2.3c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3c.7 .7 1.5 1.4 2.3 2.1c-1-.1-2.1-.1-3.1-.1c-17.7 0-32 14.3-32 32s14.3 32 32 32c1 0 2.1-.1 3.1-.1c-.8 .7-1.6 1.3-2.3 2.1c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0c.7-.7 1.4-1.5 2.1-2.3c-.1 1-.1 2.1-.1 3.1c0 17.7 14.3 32 32 32s32-14.3 32-32c0-1-.1-2.1-.1-3.1c.7 .8 1.3 1.6 2.1 2.3c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3c-.7-.7-1.5-1.4-2.3-2.1c1 .1 2.1 .1 3.1 .1c17.7 0 32-14.3 32-32s-14.3-32-32-32c-1 0-2.1 .1-3.1 .1c.8-.7 1.6-1.3 2.3-2.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-.7 .7-1.4 1.5-2.1 2.3c.1-1 .1-2.1 .1-3.1zM48 448a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm416 0a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-moon": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6c3" + ] + } + }, + "changes": [ + "5.4.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crescent", + "evening", + "lunar", + "night", + "partly cloudy", + "sky" + ] + }, + "unicode": "f6c3", + "label": "Cloud Moon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M495.8 0c5.5 0 10.9 .2 16.3 .7c7 .6 12.8 5.7 14.3 12.5s-1.6 13.9-7.7 17.3c-44.4 25.2-74.4 73-74.4 127.8c0 81 65.5 146.6 146.2 146.6c8.6 0 17-.7 25.1-2.1c6.9-1.2 13.8 2.2 17 8.5s1.9 13.8-3.1 18.7c-34.5 33.6-81.7 54.4-133.6 54.4c-9.3 0-18.4-.7-27.4-1.9c-11.2-22.6-29.8-40.9-52.6-51.7c-2.7-58.5-50.3-105.3-109.2-106.7c-1.7-10.4-2.6-21-2.6-31.8C304 86.1 389.8 0 495.8 0zM447.9 431.9c0 44.2-35.8 80-80 80H96c-53 0-96-43-96-96c0-47.6 34.6-87 80-94.6l0-1.3c0-53 43-96 96-96c34.9 0 65.4 18.6 82.2 46.4c13-9.1 28.8-14.4 45.8-14.4c44.2 0 80 35.8 80 80c0 5.9-.6 11.7-1.9 17.2c37.4 6.7 65.8 39.4 65.8 78.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-moon-rain": { + "aliases": { + "unicodes": { + "secondary": [ + "10f73c" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crescent", + "evening", + "lunar", + "night", + "partly cloudy", + "precipitation", + "rain", + "sky", + "storm" + ] + }, + "unicode": "f73c", + "label": "Cloud Moon Rain", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M453 0C392.5 0 342.2 43.8 333 101.3c33.3 16.5 56.7 50.2 58.5 89.5c21.8 10.3 39.5 27.9 50 49.6c3.8 .4 7.7 .5 11.6 .5c32.9 0 62.8-13 84.6-34c4.8-4.6 6-11.7 3-17.6s-9.5-9.2-16-8.1c-4.6 .8-9.4 1.2-14.3 1.2c-46.1 0-83.2-37-83.2-82.3c0-30.6 17-57.5 42.3-71.6c5.8-3.2 8.8-9.9 7.4-16.3S469.9 .9 463.3 .4C459.9 .1 456.4 0 453 0zM346.4 361.3c41.6 0 75.3-33.7 75.3-75.3c0-37-26.7-67.8-62-74.1c1.2-5.2 1.8-10.7 1.8-16.2c0-41.6-33.7-75.3-75.3-75.3c-16 0-30.9 5-43.1 13.5c-15.8-26.2-44.5-43.7-77.4-43.7c-49.9 0-90.3 40.4-90.3 90.3l0 1.2C32.7 189.1 .1 226.2 .1 271c0 49.9 40.4 90.3 90.3 90.3H346.4zm-265.9 34c-10.4-6.9-24.4-4.1-31.3 6.3L19.1 446.8c-6.9 10.4-4.1 24.4 6.3 31.3s24.4 4.1 31.3-6.3l30.1-45.2c6.9-10.4 4.1-24.4-6.3-31.3zm90.3 0c-10.4-6.9-24.4-4.1-31.3 6.3l-30.1 45.2c-6.9 10.4-4.1 24.4 6.3 31.3s24.4 4.1 31.3-6.3l30.1-45.2c6.9-10.4 4.1-24.4-6.3-31.3zm90.3 0c-10.4-6.9-24.4-4.1-31.3 6.3l-30.1 45.2c-6.9 10.4-4.1 24.4 6.3 31.3s24.4 4.1 31.3-6.3l30.1-45.2c6.9-10.4 4.1-24.4-6.3-31.3zm90.3 0c-10.4-6.9-24.4-4.1-31.3 6.3l-30.1 45.2c-6.9 10.4-4.1 24.4 6.3 31.3s24.4 4.1 31.3-6.3l30.1-45.2c6.9-10.4 4.1-24.4-6.3-31.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-rain": { + "aliases": { + "unicodes": { + "composite": [ + "1f327", + "26c6" + ], + "secondary": [ + "10f73d" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rain", + "cloud", + "cloud with rain", + "precipitation", + "rain", + "sky", + "storm" + ] + }, + "unicode": "f73d", + "label": "Cloud Rain", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 320c-53 0-96-43-96-96c0-42.5 27.6-78.6 65.9-91.2C64.7 126.1 64 119.1 64 112C64 50.1 114.1 0 176 0c43.1 0 80.5 24.3 99.2 60c14.7-17.1 36.5-28 60.8-28c44.2 0 80 35.8 80 80c0 5.5-.6 10.8-1.6 16c.5 0 1.1 0 1.6 0c53 0 96 43 96 96s-43 96-96 96H96zm-6.8 52c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3L89.2 372zm160 0c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3L249.2 372zm124.9 64.6L409.2 372c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-showers-heavy": { + "aliases": { + "unicodes": { + "secondary": [ + "10f740" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "precipitation", + "rain", + "sky", + "storm" + ] + }, + "unicode": "f740", + "label": "Cloud Showers Heavy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 320c-53 0-96-43-96-96c0-42.5 27.6-78.6 65.9-91.2C64.7 126.1 64 119.1 64 112C64 50.1 114.1 0 176 0c43.1 0 80.5 24.3 99.2 60c14.7-17.1 36.5-28 60.8-28c44.2 0 80 35.8 80 80c0 5.5-.6 10.8-1.6 16c.5 0 1.1 0 1.6 0c53 0 96 43 96 96s-43 96-96 96H96zM81.5 353.9c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6S-3.3 490.7 1.9 478.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6zm120 0c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6zm244.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6s17.8 19.3 12.6 31.5zM313.5 353.9c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-showers-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cloud", + "deluge", + "flood", + "rain", + "storm", + "surge" + ] + }, + "unicode": "e4e4", + "label": "Cloud Showers Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M224 0c38.6 0 71.9 22.8 87.2 55.7C325.7 41.1 345.8 32 368 32c38.7 0 71 27.5 78.4 64H448c35.3 0 64 28.7 64 64s-28.7 64-64 64H128c-35.3 0-64-28.7-64-64s28.7-64 64-64c0-53 43-96 96-96zM140.6 292.3l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2s15.1 21.6 8.2 32.9zm327.8-32.9c11.4 6.8 15 21.6 8.2 32.9l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2zM252.6 292.3l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2s15.1 21.6 8.2 32.9zm103.8-32.9c11.4 6.8 15 21.6 8.2 32.9l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2zM306.5 421.9C329 437.4 356.5 448 384 448c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 501.7 417 512 384 512c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 437.2 165.1 448 192 448c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-sun": { + "aliases": { + "unicodes": { + "composite": [ + "26c5" + ], + "secondary": [ + "10f6c4" + ] + } + }, + "changes": [ + "5.4.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clear", + "cloud", + "day", + "daytime", + "fall", + "outdoors", + "overcast", + "partly cloudy", + "sun", + "sun behind cloud" + ] + }, + "unicode": "f6c4", + "label": "Cloud Sun", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M294.2 1.2c5.1 2.1 8.7 6.7 9.6 12.1l14.1 84.7 84.7 14.1c5.4 .9 10 4.5 12.1 9.6s1.5 10.9-1.6 15.4l-38.5 55c-2.2-.1-4.4-.2-6.7-.2c-23.3 0-45.1 6.2-64 17.1l0-1.1c0-53-43-96-96-96s-96 43-96 96s43 96 96 96c8.1 0 15.9-1 23.4-2.9c-36.6 18.1-63.3 53.1-69.8 94.9l-24.4 17c-4.5 3.2-10.3 3.8-15.4 1.6s-8.7-6.7-9.6-12.1L98.1 317.9 13.4 303.8c-5.4-.9-10-4.5-12.1-9.6s-1.5-10.9 1.6-15.4L52.5 208 2.9 137.2c-3.2-4.5-3.8-10.3-1.6-15.4s6.7-8.7 12.1-9.6L98.1 98.1l14.1-84.7c.9-5.4 4.5-10 9.6-12.1s10.9-1.5 15.4 1.6L208 52.5 278.8 2.9c4.5-3.2 10.3-3.8 15.4-1.6zM144 208a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM639.9 431.9c0 44.2-35.8 80-80 80H288c-53 0-96-43-96-96c0-47.6 34.6-87 80-94.6l0-1.3c0-53 43-96 96-96c34.9 0 65.4 18.6 82.2 46.4c13-9.1 28.8-14.4 45.8-14.4c44.2 0 80 35.8 80 80c0 5.9-.6 11.7-1.9 17.2c37.4 6.7 65.8 39.4 65.8 78.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloud-sun-rain": { + "aliases": { + "unicodes": { + "composite": [ + "1f326" + ], + "secondary": [ + "10f743" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cloud", + "day", + "overcast", + "precipitation", + "rain", + "storm", + "summer", + "sun", + "sun behind rain cloud", + "sunshower" + ] + }, + "unicode": "f743", + "label": "Cloud Sun Rain", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M294.2 1.2c5.1 2.1 8.7 6.7 9.6 12.1l10.4 62.4c-23.3 10.8-42.9 28.4-56 50.3c-14.6-9-31.8-14.1-50.2-14.1c-53 0-96 43-96 96c0 35.5 19.3 66.6 48 83.2c.8 31.8 13.2 60.7 33.1 82.7l-56 39.2c-4.5 3.1-10.3 3.8-15.4 1.6s-8.7-6.7-9.6-12.1L98.1 317.9 13.4 303.8c-5.4-.9-10-4.5-12.1-9.6s-1.5-10.9 1.6-15.4L52.5 208 2.9 137.2c-3.2-4.5-3.8-10.3-1.6-15.4s6.7-8.7 12.1-9.6L98.1 98.1l14.1-84.7c.9-5.4 4.5-10 9.6-12.1s10.9-1.5 15.4 1.6L208 52.5 278.8 2.9c4.5-3.2 10.3-3.8 15.4-1.6zM208 144c13.8 0 26.7 4.4 37.1 11.9c-1.2 4.1-2.2 8.3-3 12.6c-37.9 14.6-67.2 46.6-77.8 86.4C151.8 243.1 144 226.5 144 208c0-35.3 28.7-64 64-64zm69.4 276c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7zm96 0c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7zm96 0c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7zm96 0c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7zm74.5-116.1c0 44.2-35.8 80-80 80H288c-53 0-96-43-96-96c0-47.6 34.6-87 80-94.6l0-1.3c0-53 43-96 96-96c34.9 0 65.4 18.6 82.2 46.4c13-9.1 28.8-14.4 45.8-14.4c44.2 0 80 35.8 80 80c0 5.9-.6 11.7-1.9 17.2c37.4 6.7 65.8 39.4 65.8 78.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cloudflare": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07d", + "label": "Cloudflare", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M407.906,319.913l-230.8-2.928a4.58,4.58,0,0,1-3.632-1.926,4.648,4.648,0,0,1-.494-4.147,6.143,6.143,0,0,1,5.361-4.076L411.281,303.9c27.631-1.26,57.546-23.574,68.022-50.784l13.286-34.542a7.944,7.944,0,0,0,.524-2.936,7.735,7.735,0,0,0-.164-1.631A151.91,151.91,0,0,0,201.257,198.4,68.12,68.12,0,0,0,94.2,269.59C41.924,271.106,0,313.728,0,366.12a96.054,96.054,0,0,0,1.029,13.958,4.508,4.508,0,0,0,4.445,3.871l426.1.051c.043,0,.08-.019.122-.02a5.606,5.606,0,0,0,5.271-4l3.273-11.265c3.9-13.4,2.448-25.8-4.1-34.9C430.124,325.423,420.09,320.487,407.906,319.913ZM513.856,221.1c-2.141,0-4.271.062-6.391.164a3.771,3.771,0,0,0-3.324,2.653l-9.077,31.193c-3.9,13.4-2.449,25.786,4.1,34.89,6.02,8.4,16.054,13.323,28.238,13.9l49.2,2.939a4.491,4.491,0,0,1,3.51,1.894,4.64,4.64,0,0,1,.514,4.169,6.153,6.153,0,0,1-5.351,4.075l-51.125,2.939c-27.754,1.27-57.669,23.574-68.145,50.784l-3.695,9.606a2.716,2.716,0,0,0,2.427,3.68c.046,0,.088.017.136.017h175.91a4.69,4.69,0,0,0,4.539-3.37,124.807,124.807,0,0,0,4.682-34C640,277.3,583.524,221.1,513.856,221.1Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cloudscale": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f383", + "label": "cloudscale.ch", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cloudsmith": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f384", + "label": "Cloudsmith", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 332, + 512 + ], + "width": 332, + "height": 512, + "path": "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cloudversify": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f385", + "label": "cloudversify", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 616, + 512 + ], + "width": 616, + "height": 512, + "path": "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "clover": { + "changes": [ + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "4", + "charm", + "clover", + "four", + "four leaf clover", + "four-leaf clover", + "leaf", + "leprechaun", + "luck", + "lucky" + ] + }, + "unicode": "e139", + "label": "Clover", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M173.3 32C139.4 32 112 59.4 112 93.3v4.9c0 12 3.3 23.7 9.4 34l18.8 31.3c1.1 1.8 1.2 3.1 1 4.2c-.2 1.2-.8 2.5-2 3.6s-2.4 1.8-3.6 2c-1 .2-2.4 .1-4.2-1l-31.3-18.8c-10.3-6.2-22-9.4-34-9.4H61.3C27.4 144 0 171.4 0 205.3c0 16.2 6.5 31.8 17.9 43.3l1.2 1.2c3.4 3.4 3.4 9 0 12.4l-1.2 1.2C6.5 274.9 0 290.5 0 306.7C0 340.6 27.4 368 61.3 368h4.9c12 0 23.7-3.3 34-9.4l31.3-18.8c1.8-1.1 3.1-1.2 4.2-1c1.2 .2 2.5 .8 3.6 2s1.8 2.4 2 3.6c.2 1 .1 2.4-1 4.2l-18.8 31.3c-6.2 10.3-9.4 22-9.4 34v4.9c0 33.8 27.4 61.3 61.3 61.3c16.2 0 31.8-6.5 43.3-17.9l1.2-1.2c3.4-3.4 9-3.4 12.4 0l1.2 1.2c11.5 11.5 27.1 17.9 43.3 17.9c33.8 0 61.3-27.4 61.3-61.3v-4.9c0-12-3.3-23.7-9.4-34l-18.8-31.3c-1.1-1.8-1.2-3.1-1-4.2c.2-1.2 .8-2.5 2-3.6s2.4-1.8 3.6-2c1-.2 2.4-.1 4.2 1l31.3 18.8c10.3 6.2 22 9.4 34 9.4h4.9c33.8 0 61.3-27.4 61.3-61.3c0-16.2-6.5-31.8-17.9-43.3l-1.2-1.2c-3.4-3.4-3.4-9 0-12.4l1.2-1.2c11.5-11.5 17.9-27.1 17.9-43.3c0-33.8-27.4-61.3-61.3-61.3h-4.9c-12 0-23.7 3.3-34 9.4l-31.3 18.8c-1.8 1.1-3.1 1.2-4.2 1c-1.2-.2-2.5-.8-3.6-2s-1.8-2.4-2-3.6c-.2-1-.1-2.4 1-4.2l18.8-31.3c6.2-10.3 9.4-22 9.4-34V93.3C336 59.4 308.6 32 274.7 32c-16.2 0-31.8 6.5-43.3 17.9l-1.2 1.2c-3.4 3.4-9 3.4-12.4 0l-1.2-1.2C205.1 38.5 189.5 32 173.3 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cmplid": { + "changes": [ + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e360", + "label": "Cmplid", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M226.119,388.165a3.816,3.816,0,0,0-2.294-3.5,3.946,3.946,0,0,0-1.629-.385L72.6,384.3a19.243,19.243,0,0,1-17.924-26.025L81.585,255.692a35.72,35.72,0,0,1,32.373-26H262.525a7.07,7.07,0,0,0,6.392-5.194l10.769-41.131a3.849,3.849,0,0,0-2.237-4.937,3.755,3.755,0,0,0-1.377-.261c-.063,0-.126,0-.189.005H127.38a106.8,106.8,0,0,0-96.99,77.1L3.483,358.824A57.469,57.469,0,0,0,57.314,436q1.43,0,2.86-.072H208.742a7.131,7.131,0,0,0,6.391-5.193L225.839,389.6A3.82,3.82,0,0,0,226.119,388.165ZM306.658,81.2a3.861,3.861,0,0,0,.251-1.367A3.813,3.813,0,0,0,303.079,76c-.064,0-.128,0-.192,0h-41A7.034,7.034,0,0,0,255.5,81.2l-21.347,80.915h51.131ZM180.364,368.249H231.5L263.452,245.69H212.321ZM511.853,79.723a3.809,3.809,0,0,0-3.8-3.661c-.058,0-.137,0-.23.007h-41a7.1,7.1,0,0,0-6.584,5.129L368.91,430.634a3.54,3.54,0,0,0-.262,1.335,3.873,3.873,0,0,0,3.864,3.863c.056,0,.112,0,.169,0h41a7.068,7.068,0,0,0,6.392-5.193L511.533,81.2A3.624,3.624,0,0,0,511.853,79.723ZM324.649,384.47h-41a7.2,7.2,0,0,0-6.392,5.194L266.52,430.8a3.662,3.662,0,0,0-.268,1.374A3.783,3.783,0,0,0,270.023,436c.06,0,.166,0,.3-.012h40.905a7.036,7.036,0,0,0,6.391-5.193l10.769-41.131a3.75,3.75,0,0,0-3.445-5.208c-.108,0-.217,0-.326.014Zm311.324-308.4h-41a7.066,7.066,0,0,0-6.392,5.129l-91.46,349.436a4.073,4.073,0,0,0-.229,1.347,3.872,3.872,0,0,0,3.863,3.851c.056,0,.112,0,.169,0h40.968a7.1,7.1,0,0,0,6.392-5.193L639.68,81.2a3.624,3.624,0,0,0,.32-1.475,3.841,3.841,0,0,0-3.821-3.564c-.068,0-.137,0-.206.006ZM371.562,225.236l10.8-41.1a4.369,4.369,0,0,0,.227-1.388,3.869,3.869,0,0,0-3.861-3.842c-.057,0-.113,0-.169,0h-41.1a7.292,7.292,0,0,0-6.391,5.226l-10.834,41.1a4.417,4.417,0,0,0-.26,1.493c0,.069,0,.138,0,.206a3.776,3.776,0,0,0,3.757,3.507c.076,0,.18,0,.3-.012h41.129A7.034,7.034,0,0,0,371.562,225.236Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "code": { + "aliases": { + "unicodes": { + "secondary": [ + "10f121" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brackets", + "code", + "development", + "html" + ] + }, + "unicode": "f121", + "label": "Code", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-branch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f126" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "branch", + "git", + "github", + "rebase", + "svn", + "vcs", + "version" + ] + }, + "unicode": "f126", + "label": "Code Branch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M80 104c13.3 0 24-10.7 24-24s-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24zm80-24c0 32.8-19.7 61-48 73.3v87.8c18.8-10.9 40.7-17.1 64-17.1h96c35.3 0 64-28.7 64-64v-6.7C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V160c0 70.7-57.3 128-128 128H176c-35.3 0-64 28.7-64 64v6.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V352 153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm232 0c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zM80 456c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-commit": { + "aliases": { + "unicodes": { + "secondary": [ + "10f386" + ] + } + }, + "changes": [ + "5.0.0", + "5.1.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "commit", + "git", + "github", + "hash", + "rebase", + "svn", + "vcs", + "version" + ] + }, + "unicode": "f386", + "label": "Code Commit", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 336c44.2 0 80-35.8 80-80s-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80zm156.8-48C462 361 397.4 416 320 416s-142-55-156.8-128H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H163.2C178 151 242.6 96 320 96s142 55 156.8 128H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H476.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-compare": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "compare", + "git", + "github", + "svn", + "version" + ] + }, + "unicode": "e13a", + "label": "Code Compare", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M320 488c0 9.5-5.6 18.1-14.2 21.9s-18.8 2.3-25.8-4.1l-80-72c-5.1-4.6-7.9-11-7.9-17.8s2.9-13.3 7.9-17.8l80-72c7-6.3 17.2-7.9 25.8-4.1s14.2 12.4 14.2 21.9v40h16c35.3 0 64-28.7 64-64V153.3C371.7 141 352 112.8 352 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V320c0 70.7-57.3 128-128 128H320v40zM456 80c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zM192 24c0-9.5 5.6-18.1 14.2-21.9s18.8-2.3 25.8 4.1l80 72c5.1 4.6 7.9 11 7.9 17.8s-2.9 13.3-7.9 17.8l-80 72c-7 6.3-17.2 7.9-25.8 4.1s-14.2-12.4-14.2-21.9V128H176c-35.3 0-64 28.7-64 64V358.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V192c0-70.7 57.3-128 128-128h16V24zM56 432c0 13.3 10.7 24 24 24s24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-fork": { + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fork", + "git", + "github", + "svn", + "version" + ] + }, + "unicode": "e13b", + "label": "Code Fork", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M80 104c13.3 0 24-10.7 24-24s-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24zm80-24c0 32.8-19.7 61-48 73.3V192c0 17.7 14.3 32 32 32H304c17.7 0 32-14.3 32-32V153.3C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V192c0 53-43 96-96 96H256v70.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V288H144c-53 0-96-43-96-96V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm208 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zM248 432c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-merge": { + "aliases": { + "unicodes": { + "secondary": [ + "10f387" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "git", + "github", + "merge", + "pr", + "rebase", + "svn", + "vcs", + "version" + ] + }, + "unicode": "f387", + "label": "Code Merge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M80 104c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm32.4 49.2c28-12.4 47.6-40.5 47.6-73.2c0-44.2-35.8-80-80-80S0 35.8 0 80c0 32.8 19.7 61 48 73.3V358.7C19.7 371 0 399.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-32.8-19.7-61-48-73.3V272c26.7 20.1 60 32 96 32h86.7c12.3 28.3 40.5 48 73.3 48c44.2 0 80-35.8 80-80s-35.8-80-80-80c-32.8 0-61 19.7-73.3 48H208c-49.9 0-91-38.1-95.6-86.8zM80 456c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zM392 272c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "code-pull-request": { + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "git", + "github", + "pr", + "svn", + "version" + ] + }, + "unicode": "e13c", + "label": "Code Pull Request", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M305.8 2.1C314.4 5.9 320 14.5 320 24V64h16c70.7 0 128 57.3 128 128V358.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V192c0-35.3-28.7-64-64-64H320v40c0 9.5-5.6 18.1-14.2 21.9s-18.8 2.3-25.8-4.1l-80-72c-5.1-4.6-7.9-11-7.9-17.8s2.9-13.3 7.9-17.8l80-72c7-6.3 17.2-7.9 25.8-4.1zM104 80c0-13.3-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24s24-10.7 24-24zm8 73.3V358.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80c0 32.8-19.7 61-48 73.3zM104 432c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zm328 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "codepen": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1cb", + "label": "Codepen", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "codiepie": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f284", + "label": "Codie Pie", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 472, + 512 + ], + "width": 472, + "height": 512, + "path": "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "coins": { + "aliases": { + "unicodes": { + "secondary": [ + "10f51e" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency", + "dime", + "financial", + "gold", + "money", + "penny" + ] + }, + "unicode": "f51e", + "label": "Coins", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 80c0 18-14.3 34.6-38.4 48c-29.1 16.1-72.5 27.5-122.3 30.9c-3.7-1.8-7.4-3.5-11.3-5C300.6 137.4 248.2 128 192 128c-8.3 0-16.4 .2-24.5 .6l-1.1-.6C142.3 114.6 128 98 128 80c0-44.2 86-80 192-80S512 35.8 512 80zM160.7 161.1c10.2-.7 20.7-1.1 31.3-1.1c62.2 0 117.4 12.3 152.5 31.4C369.3 204.9 384 221.7 384 240c0 4-.7 7.9-2.1 11.7c-4.6 13.2-17 25.3-35 35.5c0 0 0 0 0 0c-.1 .1-.3 .1-.4 .2l0 0 0 0c-.3 .2-.6 .3-.9 .5c-35 19.4-90.8 32-153.6 32c-59.6 0-112.9-11.3-148.2-29.1c-1.9-.9-3.7-1.9-5.5-2.9C14.3 274.6 0 258 0 240c0-34.8 53.4-64.5 128-75.4c10.5-1.5 21.4-2.7 32.7-3.5zM416 240c0-21.9-10.6-39.9-24.1-53.4c28.3-4.4 54.2-11.4 76.2-20.5c16.3-6.8 31.5-15.2 43.9-25.5V176c0 19.3-16.5 37.1-43.8 50.9c-14.6 7.4-32.4 13.7-52.4 18.5c.1-1.8 .2-3.5 .2-5.3zm-32 96c0 18-14.3 34.6-38.4 48c-1.8 1-3.6 1.9-5.5 2.9C304.9 404.7 251.6 416 192 416c-62.8 0-118.6-12.6-153.6-32C14.3 370.6 0 354 0 336V300.6c12.5 10.3 27.6 18.7 43.9 25.5C83.4 342.6 135.8 352 192 352s108.6-9.4 148.1-25.9c7.8-3.2 15.3-6.9 22.4-10.9c6.1-3.4 11.8-7.2 17.2-11.2c1.5-1.1 2.9-2.3 4.3-3.4V304v5.7V336zm32 0V304 278.1c19-4.2 36.5-9.5 52.1-16c16.3-6.8 31.5-15.2 43.9-25.5V272c0 10.5-5 21-14.9 30.9c-16.3 16.3-45 29.7-81.3 38.4c.1-1.7 .2-3.5 .2-5.3zM192 448c56.2 0 108.6-9.4 148.1-25.9c16.3-6.8 31.5-15.2 43.9-25.5V432c0 44.2-86 80-192 80S0 476.2 0 432V396.6c12.5 10.3 27.6 18.7 43.9 25.5C83.4 438.6 135.8 448 192 448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "colon-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Colon Sign", + "currency" + ] + }, + "unicode": "e140", + "label": "Colon Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M223 39.8c4.3-17.1-6.1-34.5-23.3-38.8S165.2 7.1 161 24.2L149.9 68.6C64.1 87.8 0 164.4 0 256c0 58.1 25.8 110.2 66.7 145.4L49 472.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l13-52.1c9 3.4 18.4 6.2 28 8.2L145 472.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l10.4-41.4c33.4-4.4 64.1-17.4 89.8-36.7c14.1-10.6 17-30.7 6.4-44.8s-30.7-17-44.8-6.4c-10.2 7.7-21.7 13.9-34 18.3L289 160c9.4-.3 18.5-4.7 24.6-12.8c10.6-14.1 7.8-34.2-6.4-44.8c-1.1-.8-2.2-1.6-3.3-2.4L319 39.8c4.3-17.1-6.1-34.5-23.3-38.8S261.2 7.1 257 24.2L245.1 71.5c-9.3-2.7-18.8-4.6-28.6-5.9L223 39.8zM131.2 143.3L85.3 326.8C71.9 306.5 64 282.2 64 256c0-48.7 27.2-91 67.2-112.7zm8.6 229.5l61.1-244.6c9.9 .7 19.5 2.5 28.7 5.3l-62 248.1c-9.7-1.9-19-4.8-27.8-8.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "comment": { + "aliases": { + "unicodes": { + "composite": [ + "1f5e9", + "f0e5" + ], + "secondary": [ + "10f075" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right Speech Bubble", + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "unicode": "f075", + "label": "Comment", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 240c0 114.9-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9c-11.9 8.7-31.3 20.6-54.3 30.6C73.6 471.1 44.7 480 16 480c-6.5 0-12.3-3.9-14.8-9.9c-2.5-6-1.1-12.8 3.4-17.4l0 0 0 0 0 0 0 0 .3-.3c.3-.3 .7-.7 1.3-1.4c1.1-1.2 2.8-3.1 4.9-5.7c4.1-5 9.6-12.4 15.2-21.6c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240C0 125.1 114.6 32 256 32s256 93.1 256 208z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M123.6 391.3c12.9-9.4 29.6-11.8 44.6-6.4c26.5 9.6 56.2 15.1 87.8 15.1c124.7 0 208-80.5 208-160s-83.3-160-208-160S48 160.5 48 240c0 32 12.4 62.8 35.7 89.2c8.6 9.7 12.8 22.5 11.8 35.5c-1.4 18.1-5.7 34.7-11.3 49.4c17-7.9 31.1-16.7 39.4-22.7zM21.2 431.9c1.8-2.7 3.5-5.4 5.1-8.1c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240C0 125.1 114.6 32 256 32s256 93.1 256 208s-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9c-11.9 8.7-31.3 20.6-54.3 30.6c-15.1 6.6-32.3 12.6-50.1 16.1c-.8 .2-1.6 .3-2.4 .5c-4.4 .8-8.7 1.5-13.2 1.9c-.2 0-.5 .1-.7 .1c-5.1 .5-10.2 .8-15.3 .8c-6.5 0-12.3-3.9-14.8-9.9c-2.5-6-1.1-12.8 3.4-17.4c4.1-4.2 7.8-8.7 11.3-13.5c1.7-2.3 3.3-4.6 4.8-6.9c.1-.2 .2-.3 .3-.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "comment-dollar": { + "aliases": { + "unicodes": { + "secondary": [ + "10f651" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "money", + "note", + "notification", + "pay", + "sms", + "speech", + "spend", + "texting", + "transfer" + ] + }, + "unicode": "f651", + "label": "Comment Dollar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zm20-312v13.9c7.5 1.2 14.6 2.9 21.1 4.7c10.7 2.8 17 13.8 14.2 24.5s-13.8 17-24.5 14.2c-11-2.9-21.6-5-31.2-5.2c-7.9-.1-16 1.8-21.5 5c-4.8 2.8-6.2 5.6-6.2 9.3c0 1.8 .1 3.5 5.3 6.7c6.3 3.8 15.5 6.7 28.3 10.5l.7 .2c11.2 3.4 25.6 7.7 37.1 15c12.9 8.1 24.3 21.3 24.6 41.6c.3 20.9-10.5 36.1-24.8 45c-7.2 4.5-15.2 7.3-23.2 9V344c0 11-9 20-20 20s-20-9-20-20V329.4c-10.3-2.2-20-5.5-28.2-8.4l0 0 0 0c-2.1-.7-4.1-1.4-6.1-2.1c-10.5-3.5-16.1-14.8-12.6-25.3s14.8-16.1 25.3-12.6c2.5 .8 4.9 1.7 7.2 2.4c13.6 4.6 24 8.1 35.1 8.5c8.6 .3 16.5-1.6 21.4-4.7c4.1-2.5 6-5.5 5.9-10.5c0-2.9-.8-5-5.9-8.2c-6.3-4-15.4-6.9-28-10.7l-1.7-.5c-10.9-3.3-24.6-7.4-35.6-14c-12.7-7.7-24.6-20.5-24.7-40.7c-.1-21.1 11.8-35.7 25.8-43.9c6.9-4.1 14.5-6.8 22.2-8.5V136c0-11 9-20 20-20s20 9 20 20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "comment-dots": { + "aliases": { + "names": [ + "commenting" + ], + "unicodes": { + "composite": [ + "1f4ac", + "f27b" + ], + "secondary": [ + "10f4ad" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "balloon", + "bubble", + "chat", + "comic", + "commenting", + "conversation", + "dialog", + "feedback", + "message", + "more", + "note", + "notification", + "reply", + "sms", + "speech", + "speech balloon", + "texting" + ] + }, + "unicode": "f4ad", + "label": "Comment Dots", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zM128 208a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 0a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm96 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M168.2 384.9c-15-5.4-31.7-3.1-44.6 6.4c-8.2 6-22.3 14.8-39.4 22.7c5.6-14.7 9.9-31.3 11.3-49.4c1-12.9-3.3-25.7-11.8-35.5C60.4 302.8 48 272 48 240c0-79.5 83.3-160 208-160s208 80.5 208 160s-83.3 160-208 160c-31.6 0-61.3-5.5-87.8-15.1zM26.3 423.8c-1.6 2.7-3.3 5.4-5.1 8.1l-.3 .5c-1.6 2.3-3.2 4.6-4.8 6.9c-3.5 4.7-7.3 9.3-11.3 13.5c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c5.1 0 10.2-.3 15.3-.8l.7-.1c4.4-.5 8.8-1.1 13.2-1.9c.8-.1 1.6-.3 2.4-.5c17.8-3.5 34.9-9.5 50.1-16.1c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9zM144 272a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm144-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm80 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "comment-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7f5" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "advice", + "bubble", + "chat", + "commenting", + "conversation", + "diagnose", + "feedback", + "message", + "note", + "notification", + "prescription", + "sms", + "speech", + "texting" + ] + }, + "unicode": "f7f5", + "label": "Comment Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zM224 160c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H288v48c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V272H176c-8.8 0-16-7.2-16-16V224c0-8.8 7.2-16 16-16h48V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "comment-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4b3" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "cancel", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "mute", + "note", + "notification", + "quiet", + "sms", + "speech", + "texting" + ] + }, + "unicode": "f4b3", + "label": "Comment Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L512.9 376.7C552.2 340.2 576 292.3 576 240C576 125.1 461.4 32 320 32c-67.7 0-129.3 21.4-175.1 56.3L38.8 5.1zM64 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9c37 0 72.3-6.4 104-17.9L82.9 161.3C70.7 185.6 64 212.2 64 240z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "comment-sms": { + "aliases": { + "names": [ + "sms" + ], + "unicodes": { + "secondary": [ + "10f7cd" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chat", + "conversation", + "message", + "mobile", + "notification", + "phone", + "sms", + "texting" + ] + }, + "unicode": "f7cd", + "label": "Comment Sms", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zM202.9 176.8c6.5-2.2 13.7 .1 17.9 5.6L256 229.3l35.2-46.9c4.1-5.5 11.3-7.8 17.9-5.6s10.9 8.3 10.9 15.2v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V240l-19.2 25.6c-3 4-7.8 6.4-12.8 6.4s-9.8-2.4-12.8-6.4L224 240v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-6.9 4.4-13 10.9-15.2zm173.1 38c0 .2 0 .4 0 .4c.1 .1 .6 .8 2.2 1.7c3.9 2.3 9.6 4.1 18.3 6.8l.6 .2c7.4 2.2 17.3 5.2 25.2 10.2c9.1 5.7 17.4 15.2 17.6 29.9c.2 15-7.6 26-17.8 32.3c-9.5 5.9-20.9 7.9-30.7 7.6c-12.2-.4-23.7-4.4-32.6-7.4l0 0 0 0c-1.4-.5-2.7-.9-4-1.4c-8.4-2.8-12.9-11.9-10.1-20.2s11.9-12.9 20.2-10.1c1.7 .6 3.3 1.1 4.9 1.6l0 0 0 0c9.1 3.1 15.6 5.3 22.6 5.5c5.3 .2 10-1 12.8-2.8c1.2-.8 1.8-1.5 2.1-2c.2-.4 .6-1.2 .6-2.7l0-.2c0-.7 0-1.4-2.7-3.1c-3.8-2.4-9.6-4.3-18-6.9l-1.2-.4c-7.2-2.2-16.7-5-24.3-9.6c-9-5.4-17.7-14.7-17.7-29.4c-.1-15.2 8.6-25.7 18.5-31.6c9.4-5.5 20.5-7.5 29.7-7.4c10 .2 19.7 2.3 27.9 4.4c8.5 2.3 13.6 11 11.3 19.6s-11 13.6-19.6 11.3c-7.3-1.9-14.1-3.3-20.1-3.4c-4.9-.1-9.8 1.1-12.9 2.9c-1.4 .8-2.1 1.6-2.4 2c-.2 .3-.4 .8-.4 1.9zm-272 0c0 .2 0 .4 0 .4c.1 .1 .6 .8 2.2 1.7c3.9 2.3 9.6 4.1 18.3 6.8l.6 .2c7.4 2.2 17.3 5.2 25.2 10.2c9.1 5.7 17.4 15.2 17.6 29.9c.2 15-7.6 26-17.8 32.3c-9.5 5.9-20.9 7.9-30.7 7.6c-12.3-.4-24.2-4.5-33.2-7.6l0 0 0 0c-1.3-.4-2.5-.8-3.6-1.2c-8.4-2.8-12.9-11.9-10.1-20.2s11.9-12.9 20.2-10.1c1.4 .5 2.8 .9 4.1 1.4l0 0 0 0c9.5 3.2 16.5 5.6 23.7 5.8c5.3 .2 10-1 12.8-2.8c1.2-.8 1.8-1.5 2.1-2c.2-.4 .6-1.2 .6-2.7l0-.2c0-.7 0-1.4-2.7-3.1c-3.8-2.4-9.6-4.3-18-6.9l-1.2-.4 0 0c-7.2-2.2-16.7-5-24.3-9.6C80.8 239 72.1 229.7 72 215c-.1-15.2 8.6-25.7 18.5-31.6c9.4-5.5 20.5-7.5 29.7-7.4c9.5 .1 22.2 2.1 31.1 4.4c8.5 2.3 13.6 11 11.3 19.6s-11 13.6-19.6 11.3c-6.6-1.8-16.8-3.3-23.3-3.4c-4.9-.1-9.8 1.1-12.9 2.9c-1.4 .8-2.1 1.6-2.4 2c-.2 .3-.4 .8-.4 1.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "comments": { + "aliases": { + "unicodes": { + "composite": [ + "1f5ea", + "f0e6" + ], + "secondary": [ + "10f086" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Two Speech Bubbles", + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "unicode": "f086", + "label": "Comments", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 352c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176c0 38.6 14.7 74.3 39.6 103.4c-3.5 9.4-8.7 17.7-14.2 24.7c-4.8 6.2-9.7 11-13.3 14.3c-1.8 1.6-3.3 2.9-4.3 3.7c-.5 .4-.9 .7-1.1 .8l-.2 .2 0 0 0 0C1 327.2-1.4 334.4 .8 340.9S9.1 352 16 352c21.8 0 43.8-5.6 62.1-12.5c9.2-3.5 17.8-7.4 25.3-11.4C134.1 343.3 169.8 352 208 352zM448 176c0 112.3-99.1 196.9-216.5 207C255.8 457.4 336.4 512 432 512c38.2 0 73.9-8.7 104.7-23.9c7.5 4 16 7.9 25.2 11.4c18.3 6.9 40.3 12.5 62.1 12.5c6.9 0 13.1-4.5 15.2-11.1c2.1-6.6-.2-13.8-5.8-17.9l0 0 0 0-.2-.2c-.2-.2-.6-.4-1.1-.8c-1-.8-2.5-2-4.3-3.7c-3.6-3.3-8.5-8.1-13.3-14.3c-5.5-7-10.7-15.4-14.2-24.7c24.9-29 39.6-64.7 39.6-103.4c0-92.8-84.9-168.9-192.6-175.5c.4 5.1 .6 10.3 .6 15.5z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M88.2 309.1c9.8-18.3 6.8-40.8-7.5-55.8C59.4 230.9 48 204 48 176c0-63.5 63.8-128 160-128s160 64.5 160 128s-63.8 128-160 128c-13.1 0-25.8-1.3-37.8-3.6c-10.4-2-21.2-.6-30.7 4.2c-4.1 2.1-8.3 4.1-12.6 6c-16 7.2-32.9 13.5-49.9 18c2.8-4.6 5.4-9.1 7.9-13.6c1.1-1.9 2.2-3.9 3.2-5.9zM0 176c0 41.8 17.2 80.1 45.9 110.3c-.9 1.7-1.9 3.5-2.8 5.1c-10.3 18.4-22.3 36.5-36.6 52.1c-6.6 7-8.3 17.2-4.6 25.9C5.8 378.3 14.4 384 24 384c43 0 86.5-13.3 122.7-29.7c4.8-2.2 9.6-4.5 14.2-6.8c15.1 3 30.9 4.5 47.1 4.5c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176zM432 480c16.2 0 31.9-1.6 47.1-4.5c4.6 2.3 9.4 4.6 14.2 6.8C529.5 498.7 573 512 616 512c9.6 0 18.2-5.7 22-14.5c3.8-8.8 2-19-4.6-25.9c-14.2-15.6-26.2-33.7-36.6-52.1c-.9-1.7-1.9-3.4-2.8-5.1C622.8 384.1 640 345.8 640 304c0-94.4-87.9-171.5-198.2-175.8c4.1 15.2 6.2 31.2 6.2 47.8l0 .6c87.2 6.7 144 67.5 144 127.4c0 28-11.4 54.9-32.7 77.2c-14.3 15-17.3 37.6-7.5 55.8c1.1 2 2.2 4 3.2 5.9c2.5 4.5 5.2 9 7.9 13.6c-17-4.5-33.9-10.7-49.9-18c-4.3-1.9-8.5-3.9-12.6-6c-9.5-4.8-20.3-6.2-30.7-4.2c-12.1 2.4-24.7 3.6-37.8 3.6c-61.7 0-110-26.5-136.8-62.3c-16 5.4-32.8 9.4-50 11.8C279 439.8 350 480 432 480z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "comments-dollar": { + "aliases": { + "unicodes": { + "secondary": [ + "10f653" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "money", + "note", + "notification", + "pay", + "sms", + "speech", + "spend", + "texting", + "transfer" + ] + }, + "unicode": "f653", + "label": "Comments Dollar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M416 176c0 97.2-93.1 176-208 176c-38.2 0-73.9-8.7-104.7-23.9c-7.5 4-16 7.9-25.2 11.4C59.8 346.4 37.8 352 16 352c-6.9 0-13.1-4.5-15.2-11.1s.2-13.8 5.8-17.9l0 0 0 0 .2-.2c.2-.2 .6-.4 1.1-.8c1-.8 2.5-2 4.3-3.7c3.6-3.3 8.5-8.1 13.3-14.3c5.5-7 10.7-15.4 14.2-24.7C14.7 250.3 0 214.6 0 176C0 78.8 93.1 0 208 0S416 78.8 416 176zM231.5 383C348.9 372.9 448 288.3 448 176c0-5.2-.2-10.4-.6-15.5C555.1 167.1 640 243.2 640 336c0 38.6-14.7 74.3-39.6 103.4c3.5 9.4 8.7 17.7 14.2 24.7c4.8 6.2 9.7 11 13.3 14.3c1.8 1.6 3.3 2.9 4.3 3.7c.5 .4 .9 .7 1.1 .8l.2 .2 0 0 0 0c5.6 4.1 7.9 11.3 5.8 17.9c-2.1 6.6-8.3 11.1-15.2 11.1c-21.8 0-43.8-5.6-62.1-12.5c-9.2-3.5-17.8-7.4-25.2-11.4C505.9 503.3 470.2 512 432 512c-95.6 0-176.2-54.6-200.5-129zM228 72c0-11-9-20-20-20s-20 9-20 20V86c-7.6 1.7-15.2 4.4-22.2 8.5c-13.9 8.3-25.9 22.8-25.8 43.9c.1 20.3 12 33.1 24.7 40.7c11 6.6 24.7 10.8 35.6 14l1.7 .5c12.6 3.8 21.8 6.8 28 10.7c5.1 3.2 5.8 5.4 5.9 8.2c.1 5-1.8 8-5.9 10.5c-5 3.1-12.9 5-21.4 4.7c-11.1-.4-21.5-3.9-35.1-8.5c-2.3-.8-4.7-1.6-7.2-2.4c-10.5-3.5-21.8 2.2-25.3 12.6s2.2 21.8 12.6 25.3c1.9 .6 4 1.3 6.1 2.1l0 0 0 0c8.3 2.9 17.9 6.2 28.2 8.4V280c0 11 9 20 20 20s20-9 20-20V266.2c8-1.7 16-4.5 23.2-9c14.3-8.9 25.1-24.1 24.8-45c-.3-20.3-11.7-33.4-24.6-41.6c-11.5-7.2-25.9-11.6-37.1-15l-.7-.2c-12.8-3.9-21.9-6.7-28.3-10.5c-5.2-3.1-5.3-4.9-5.3-6.7c0-3.7 1.4-6.5 6.2-9.3c5.4-3.2 13.6-5.1 21.5-5c9.6 .1 20.2 2.2 31.2 5.2c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-6.5-1.7-13.7-3.4-21.1-4.7V72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "compact-disc": { + "aliases": { + "unicodes": { + "composite": [ + "1f4bf", + "1f4c0", + "1f5b8" + ], + "secondary": [ + "10f51f" + ] + } + }, + "changes": [ + "5.0.13", + "5.10.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Optical Disc Icon", + "album", + "blu-ray", + "bluray", + "cd", + "computer", + "disc", + "disk", + "dvd", + "media", + "movie", + "music", + "optical", + "optical disk", + "record", + "video", + "vinyl" + ] + }, + "unicode": "f51f", + "label": "Compact Disc", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 32a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm-96-32a96 96 0 1 0 192 0 96 96 0 1 0 -192 0zM96 240c0-35 17.5-71.1 45.2-98.8S205 96 240 96c8.8 0 16-7.2 16-16s-7.2-16-16-16c-45.4 0-89.2 22.3-121.5 54.5S64 194.6 64 240c0 8.8 7.2 16 16 16s16-7.2 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "compass": { + "aliases": { + "unicodes": { + "composite": [ + "1f9ed" + ], + "secondary": [ + "10f14e" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.2.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "compass", + "directions", + "directory", + "location", + "magnetic", + "menu", + "navigation", + "orienteering", + "safari", + "travel" + ] + }, + "unicode": "f14e", + "label": "Compass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm50.7-186.9L162.4 380.6c-19.4 7.5-38.5-11.6-31-31l55.5-144.3c3.3-8.5 9.9-15.1 18.4-18.4l144.3-55.5c19.4-7.5 38.5 11.6 31 31L325.1 306.7c-3.2 8.5-9.9 15.1-18.4 18.4zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + }, + "regular": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm306.7 69.1L162.4 380.6c-19.4 7.5-38.5-11.6-31-31l55.5-144.3c3.3-8.5 9.9-15.1 18.4-18.4l144.3-55.5c19.4-7.5 38.5 11.6 31 31L325.1 306.7c-3.2 8.5-9.9 15.1-18.4 18.4zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "compass-drafting": { + "aliases": { + "names": [ + "drafting-compass" + ], + "unicodes": { + "secondary": [ + "10f568" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "map", + "mechanical drawing", + "plot", + "plotting" + ] + }, + "unicode": "f568", + "label": "Compass Drafting", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 96c0 14.3-3.1 27.9-8.8 40.2L396 227.4c-23.7 25.3-54.2 44.1-88.5 53.6L256 192h0 0l-68 117.5c21.5 6.8 44.3 10.5 68.1 10.5c70.7 0 133.8-32.7 174.9-84c11.1-13.8 31.2-16 45-5s16 31.2 5 45C428.1 341.8 347 384 256 384c-35.4 0-69.4-6.4-100.7-18.1L98.7 463.7C94 471.8 87 478.4 78.6 482.6L23.2 510.3c-5 2.5-10.9 2.2-15.6-.7S0 501.5 0 496V440.6c0-8.4 2.2-16.7 6.5-24.1l60-103.7C53.7 301.6 41.8 289.3 31.2 276c-11.1-13.8-8.8-33.9 5-45s33.9-8.8 45 5c5.7 7.1 11.8 13.8 18.2 20.1l69.4-119.9c-5.6-12.2-8.8-25.8-8.8-40.2c0-53 43-96 96-96s96 43 96 96zm21 297.9c32.6-12.8 62.5-30.8 88.9-52.9l43.7 75.5c4.2 7.3 6.5 15.6 6.5 24.1V496c0 5.5-2.9 10.7-7.6 13.6s-10.6 3.2-15.6 .7l-55.4-27.7c-8.4-4.2-15.4-10.8-20.1-18.9L373 393.9zM256 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "compress": { + "aliases": { + "unicodes": { + "secondary": [ + "10f066" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "fullscreen", + "minimize", + "move", + "resize", + "shrink", + "smaller" + ] + }, + "unicode": "f066", + "label": "Compress", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32V64zM32 320c-17.7 0-32 14.3-32 32s14.3 32 32 32H96v64c0 17.7 14.3 32 32 32s32-14.3 32-32V352c0-17.7-14.3-32-32-32H32zM352 64c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7 14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V64zM320 320c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "computer": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "desktop", + "display", + "monitor", + "tower" + ] + }, + "unicode": "e4e5", + "label": "Computer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M384 96V320H64L64 96H384zM64 32C28.7 32 0 60.7 0 96V320c0 35.3 28.7 64 64 64H181.3l-10.7 32H96c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H277.3l-10.7-32H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm464 0c-26.5 0-48 21.5-48 48V432c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H528zm16 64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H544c-8.8 0-16-7.2-16-16s7.2-16 16-16zm-16 80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H544c-8.8 0-16-7.2-16-16zm32 160a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "computer-mouse": { + "aliases": { + "names": [ + "mouse" + ], + "unicodes": { + "composite": [ + "1f5b1" + ], + "secondary": [ + "10f8cc" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "click", + "computer", + "computer mouse", + "cursor", + "input", + "peripheral" + ] + }, + "unicode": "f8cc", + "label": "Computer Mouse", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 192H176V0H160C71.6 0 0 71.6 0 160v32zm0 32V352c0 88.4 71.6 160 160 160h64c88.4 0 160-71.6 160-160V224H192 0zm384-32V160C384 71.6 312.4 0 224 0H208V192H384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "confluence": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian" + ] + }, + "unicode": "f78d", + "label": "Confluence", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M2.3 412.2c-4.5 7.6-2.1 17.5 5.5 22.2l105.9 65.2c7.7 4.7 17.7 2.4 22.4-5.3 0-.1.1-.2.1-.2 67.1-112.2 80.5-95.9 280.9-.7 8.1 3.9 17.8.4 21.7-7.7.1-.1.1-.3.2-.4l50.4-114.1c3.6-8.1-.1-17.6-8.1-21.3-22.2-10.4-66.2-31.2-105.9-50.3C127.5 179 44.6 345.3 2.3 412.2zm507.4-312.1c4.5-7.6 2.1-17.5-5.5-22.2L398.4 12.8c-7.5-5-17.6-3.1-22.6 4.4-.2.3-.4.6-.6 1-67.3 112.6-81.1 95.6-280.6.9-8.1-3.9-17.8-.4-21.7 7.7-.1.1-.1.3-.2.4L22.2 141.3c-3.6 8.1.1 17.6 8.1 21.3 22.2 10.4 66.3 31.2 106 50.4 248 120 330.8-45.4 373.4-112.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "connectdevelop": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f20e", + "label": "Connect Develop", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "contao": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f26d", + "label": "Contao", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cookie": { + "aliases": { + "unicodes": { + "composite": [ + "1f36a" + ], + "secondary": [ + "10f563" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baked good", + "chips", + "chocolate", + "cookie", + "dessert", + "eat", + "snack", + "sweet", + "treat" + ] + }, + "unicode": "f563", + "label": "Cookie", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M231.2 17c-22.1-3.1-44.6 .9-64.4 11.4l-74 39.5C73.1 78.4 57.2 94.9 47.4 115L10.7 190.6c-9.8 20.1-13 42.9-9.1 64.9l14.5 82.8c3.9 22.1 14.6 42.3 30.7 57.9l60.3 58.4c16.1 15.6 36.6 25.6 58.7 28.7l83 11.7c22.1 3.1 44.6-.9 64.4-11.4l74-39.5c19.7-10.5 35.6-27 45.4-47.2l36.7-75.5c9.8-20.1 13-42.9 9.1-64.9l-14.6-82.8c-3.9-22.1-14.6-42.3-30.7-57.9L372.9 57.5c-16.1-15.6-36.6-25.6-58.7-28.7L231.2 17zM192 144a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM128 336a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm224-64a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cookie-bite": { + "aliases": { + "unicodes": { + "secondary": [ + "10f564" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baked good", + "bitten", + "chips", + "chocolate", + "eat", + "snack", + "sweet", + "treat" + ] + }, + "unicode": "f564", + "label": "Cookie Bite", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M241.5 27.6c-.8-5.4-4.9-9.8-10.3-10.6c-22.1-3.1-44.6 .9-64.4 11.4l-74 39.5C73.1 78.4 57.2 94.9 47.4 115L10.7 190.6c-9.8 20.1-13 42.9-9.1 64.9l14.5 82.8c3.9 22.1 14.6 42.3 30.7 57.9l60.3 58.4c16.1 15.6 36.6 25.6 58.7 28.7l83 11.7c22.1 3.1 44.6-.9 64.4-11.4l74-39.5c19.7-10.5 35.6-27 45.4-47.2l36.7-75.5c9.8-20.1 13-42.9 9.1-64.9c-.9-5.3-5.3-9.3-10.6-10.1c-51.5-8.2-92.8-47.1-104.5-97.4c-1.8-7.6-8-13.4-15.7-14.6c-54.6-8.7-97.7-52-106.2-106.8zM192 144a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM128 336a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm224-64a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "copy": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0c5" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clone", + "duplicate", + "file", + "files-o", + "paper", + "paste" + ] + }, + "unicode": "f0c5", + "label": "Copy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 0c-35.3 0-64 28.7-64 64V288c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H224zM64 160c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V384H288v64H64V224h64V160H64z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 0c-35.3 0-64 28.7-64 64V288c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H224zM64 160c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V384H304v64c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V224c0-8.8 7.2-16 16-16h64V160H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "copyright": { + "aliases": { + "unicodes": { + "composite": [ + "a9" + ], + "secondary": [ + "10f1f9" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brand", + "c", + "copyright", + "mark", + "register", + "trademark" + ] + }, + "unicode": "f1f9", + "label": "Copyright", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM199.4 312.6c31.2 31.2 81.9 31.2 113.1 0c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9c-50 50-131 50-181 0s-50-131 0-181s131-50 181 0c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0c-31.2-31.2-81.9-31.2-113.1 0s-31.2 81.9 0 113.1z" + }, + "regular": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM199.4 312.6c-31.2-31.2-31.2-81.9 0-113.1s81.9-31.2 113.1 0c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9c-50-50-131-50-181 0s-50 131 0 181s131 50 181 0c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0c-31.2 31.2-81.9 31.2-113.1 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "cotton-bureau": { + "changes": [ + "5.10.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing", + "t-shirts", + "tshirts" + ] + }, + "unicode": "f89e", + "label": "Cotton Bureau", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M474.31 330.41c-23.66 91.85-94.23 144.59-201.9 148.35V429.6c0-48 26.41-74.39 74.39-74.39 62 0 99.2-37.2 99.2-99.21 0-61.37-36.53-98.28-97.38-99.06-33-69.32-146.5-64.65-177.24 0C110.52 157.72 74 194.63 74 256c0 62.13 37.27 99.41 99.4 99.41 48 0 74.55 26.23 74.55 74.39V479c-134.43-5-211.1-85.07-211.1-223 0-141.82 81.35-223.2 223.2-223.2 114.77 0 189.84 53.2 214.69 148.81H500C473.88 71.51 388.22 8 259.82 8 105 8 12 101.19 12 255.82 12 411.14 105.19 504.34 259.82 504c128.27 0 213.87-63.81 239.67-173.59zM357 182.33c41.37 3.45 64.2 29 64.2 73.67 0 48-26.43 74.41-74.4 74.41-28.61 0-49.33-9.59-61.59-27.33 83.06-16.55 75.59-99.67 71.79-120.75zm-81.68 97.36c-2.46-10.34-16.33-87 56.23-97 2.27 10.09 16.52 87.11-56.26 97zM260 132c28.61 0 49 9.67 61.44 27.61-28.36 5.48-49.36 20.59-61.59 43.45-12.23-22.86-33.23-38-61.6-43.45 12.41-17.69 33.27-27.35 61.57-27.35zm-71.52 50.72c73.17 10.57 58.91 86.81 56.49 97-72.41-9.84-59-86.95-56.25-97zM173.2 330.41c-48 0-74.4-26.4-74.4-74.41 0-44.36 22.86-70 64.22-73.67-6.75 37.2-1.38 106.53 71.65 120.75-12.14 17.63-32.84 27.3-61.14 27.3zm53.21 12.39A80.8 80.8 0 0 0 260 309.25c7.77 14.49 19.33 25.54 33.82 33.55a80.28 80.28 0 0 0-33.58 33.83c-8-14.5-19.07-26.23-33.56-33.83z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "couch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4b8" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chair", + "cushion", + "furniture", + "relax", + "sofa" + ] + }, + "unicode": "f4b8", + "label": "Couch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 160C64 89.3 121.3 32 192 32H448c70.7 0 128 57.3 128 128v33.6c-36.5 7.4-64 39.7-64 78.4v48H128V272c0-38.7-27.5-71-64-78.4V160zM544 272c0-20.9 13.4-38.7 32-45.3c5-1.8 10.4-2.7 16-2.7c26.5 0 48 21.5 48 48V448c0 17.7-14.3 32-32 32H576c-17.7 0-32-14.3-32-32H96c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V272c0-26.5 21.5-48 48-48c5.6 0 11 1 16 2.7c18.6 6.6 32 24.4 32 45.3v48 32h32H512h32V320 272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cow": { + "aliases": { + "unicodes": { + "composite": [ + "1f404" + ], + "secondary": [ + "10f6c8" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agriculture", + "animal", + "beef", + "bovine", + "co", + "cow", + "farm", + "fauna", + "livestock", + "mammal", + "milk", + "moo" + ] + }, + "unicode": "f6c8", + "label": "Cow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 224v32V416c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V327.8c9.9 6.6 20.6 12 32 16.1V368c0 8.8 7.2 16 16 16s16-7.2 16-16V351.1c5.3 .6 10.6 .9 16 .9s10.7-.3 16-.9V368c0 8.8 7.2 16 16 16s16-7.2 16-16V343.8c11.4-4 22.1-9.4 32-16.1V416c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V256l32 32v49.5c0 9.5 2.8 18.7 8.1 26.6L530 427c8.8 13.1 23.5 21 39.3 21c22.5 0 41.9-15.9 46.3-38l20.3-101.6c2.6-13-.3-26.5-8-37.3l-3.9-5.5V184c0-13.3-10.7-24-24-24s-24 10.7-24 24v14.4l-52.9-74.1C496 86.5 452.4 64 405.9 64H272 256 192 144C77.7 64 24 117.7 24 184v54C9.4 249.8 0 267.8 0 288v17.6c0 8 6.4 14.4 14.4 14.4C46.2 320 72 294.2 72 262.4V256 224 184c0-24.3 12.1-45.8 30.5-58.9C98.3 135.9 96 147.7 96 160v64zM560 336a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM166.6 166.6c-4.2-4.2-6.6-10-6.6-16c0-12.5 10.1-22.6 22.6-22.6H361.4c12.5 0 22.6 10.1 22.6 22.6c0 6-2.4 11.8-6.6 16l-23.4 23.4C332.2 211.8 302.7 224 272 224s-60.2-12.2-81.9-33.9l-23.4-23.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cpanel": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f388", + "label": "cPanel", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M210.3 220.2c-5.6-24.8-26.9-41.2-51-41.2h-37c-7.1 0-12.5 4.5-14.3 10.9L73.1 320l24.7-.1c6.8 0 12.3-4.5 14.2-10.7l25.8-95.7h19.8c8.4 0 16.2 5.6 18.3 14.8 2.5 10.9-5.9 22.6-18.3 22.6h-10.3c-7 0-12.5 4.6-14.3 10.8l-6.4 23.8h32c37.2 0 58.3-36.2 51.7-65.3zm-156.5 28h18.6c6.9 0 12.4-4.4 14.3-10.9l6.2-23.6h-40C30 213.7 9 227.8 1.7 254.8-7 288.6 18.5 320 52 320h12.4l7.1-26.1c1.2-4.4-2.2-8.3-6.4-8.3H53.8c-24.7 0-24.9-37.4 0-37.4zm247.5-34.8h-77.9l-3.5 13.4c-2.4 9.6 4.5 18.5 14.2 18.5h57.5c4 0 2.4 4.3 2.1 5.3l-8.6 31.8c-.4 1.4-.9 5.3-5.5 5.3h-34.9c-5.3 0-5.3-7.9 0-7.9h21.6c6.8 0 12.3-4.6 14.2-10.8l3.5-13.2h-48.4c-39.2 0-43.6 63.8-.7 63.8l57.5.2c11.2 0 20.6-7.2 23.4-17.8l14-51.8c4.8-19.2-9.7-36.8-28.5-36.8zM633.1 179h-18.9c-4.9 0-9.2 3.2-10.4 7.9L568.2 320c20.7 0 39.8-13.8 44.9-34.5l26.5-98.2c1.2-4.3-2-8.3-6.5-8.3zm-236.3 34.7v.1h-48.3l-26.2 98c-1.2 4.4 2.2 8.3 6.4 8.3h18.9c4.8 0 9.2-3 10.4-7.8l17.2-64H395c12.5 0 21.4 11.8 18.1 23.4l-10.6 40c-1.2 4.3 1.9 8.3 6.4 8.3H428c4.6 0 9.1-2.9 10.3-7.8l8.8-33.1c9-33.1-15.9-65.4-50.3-65.4zm98.3 74.6c-3.6 0-6-3.4-5.1-6.7l8-30c.9-3.9 3.7-6 7.8-6h32.9c2.6 0 4.6 2.4 3.9 5.1l-.7 2.6c-.6 2-1.9 3-3.9 3h-21.6c-7 0-12.6 4.6-14.2 10.8l-3.5 13h53.4c10.5 0 20.3-6.6 23.2-17.6l3.2-12c4.9-19.1-9.3-36.8-28.3-36.8h-47.3c-17.9 0-33.8 12-38.6 29.6l-10.8 40c-5 17.7 8.3 36.7 28.3 36.7h66.7c6.8 0 12.3-4.5 14.2-10.7l5.7-21z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons": { + "changes": [ + "4.4.0", + "5.0.0", + "5.0.11", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f25e", + "label": "Creative Commons", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-by": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4e7", + "label": "Creative Commons Attribution", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-nc": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4e8", + "label": "Creative Commons Noncommercial", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-nc-eu": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4e9", + "label": "Creative Commons Noncommercial (Euro Sign)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-nc-jp": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4ea", + "label": "Creative Commons Noncommercial (Yen Sign)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-nd": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4eb", + "label": "Creative Commons No Derivative Works", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-pd": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4ec", + "label": "Creative Commons Public Domain", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-pd-alt": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4ed", + "label": "Alternate Creative Commons Public Domain", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C104.7 8 0 123.1 0 256c0 138.5 113.6 248 247.6 248C377.5 504 496 403.1 496 256 496 118.1 389.4 8 247.6 8zm.8 450.8c-112.5 0-203.7-93-203.7-202.8 0-105.4 85.5-203.3 203.7-203.3 112.6 0 202.9 89.5 202.8 203.3 0 121.7-99.6 202.8-202.8 202.8zM316.7 186h-53.2v137.2h53.2c21.4 0 70-5.1 70-68.6 0-63.4-48.6-68.6-70-68.6zm.8 108.5h-19.9v-79.7l19.4-.1c3.8 0 35-2.1 35 39.9 0 24.6-10.5 39.9-34.5 39.9zM203.7 186h-68.2v137.3h34.6V279h27c54.1 0 57.1-37.5 57.1-46.5 0-31-16.8-46.5-50.5-46.5zm-4.9 67.3h-29.2v-41.6h28.3c30.9 0 28.8 41.6.9 41.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-remix": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4ee", + "label": "Creative Commons Remix", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-sa": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4ef", + "label": "Creative Commons Share Alike", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-sampling": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f0", + "label": "Creative Commons Sampling", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-sampling-plus": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f1", + "label": "Creative Commons Sampling +", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-share": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f2", + "label": "Creative Commons Share", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "creative-commons-zero": { + "changes": [ + "5.0.11", + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f3", + "label": "Creative Commons CC0", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm-.4 60.5c-81.9 0-102.5 77.3-102.5 142.8 0 65.5 20.6 142.8 102.5 142.8S350.5 321.5 350.5 256c0-65.5-20.6-142.8-102.5-142.8zm0 53.9c3.3 0 6.4.5 9.2 1.2 5.9 5.1 8.8 12.1 3.1 21.9l-54.5 100.2c-1.7-12.7-1.9-25.1-1.9-34.4 0-28.8 2-88.9 44.1-88.9zm40.8 46.2c2.9 15.4 3.3 31.4 3.3 42.7 0 28.9-2 88.9-44.1 88.9-13.5 0-32.6-7.7-20.1-26.4l60.9-105.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "credit-card": { + "aliases": { + "names": [ + "credit-card-alt" + ], + "unicodes": { + "composite": [ + "1f4b3", + "f283" + ], + "secondary": [ + "10f09d" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "card", + "checkout", + "credit", + "credit card", + "credit-card-alt", + "debit", + "money", + "payment", + "purchase" + ] + }, + "unicode": "f09d", + "label": "Credit Card", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96v32H576V96c0-35.3-28.7-64-64-64H64zM576 224H0V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V224zM112 352h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm112 16c0-8.8 7.2-16 16-16H368c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16z" + }, + "regular": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M512 80c8.8 0 16 7.2 16 16v32H48V96c0-8.8 7.2-16 16-16H512zm16 144V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V224H528zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm56 304c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c13.3 0 24-10.7 24-24s-10.7-24-24-24H120zm128 0c-13.3 0-24 10.7-24 24s10.7 24 24 24H360c13.3 0 24-10.7 24-24s-10.7-24-24-24H248z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "critical-role": { + "changes": [ + "5.4.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "game", + "gaming", + "tabletop" + ] + }, + "unicode": "f6c9", + "label": "Critical Role", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M225.82 0c.26.15 216.57 124.51 217.12 124.72 3 1.18 3.7 3.46 3.7 6.56q-.11 125.17 0 250.36a5.88 5.88 0 0 1-3.38 5.78c-21.37 12-207.86 118.29-218.93 124.58h-3C142 466.34 3.08 386.56 2.93 386.48a3.29 3.29 0 0 1-1.88-3.24c0-.87 0-225.94-.05-253.1a5 5 0 0 1 2.93-4.93C27.19 112.11 213.2 6 224.07 0zM215.4 20.42l-.22-.16Q118.06 75.55 21 130.87c0 .12.08.23.13.35l30.86 11.64c-7.71 6-8.32 6-10.65 5.13-.1 0-24.17-9.28-26.8-10v230.43c.88-1.41 64.07-110.91 64.13-111 1.62-2.82 3-1.92 9.12-1.52 1.4.09 1.48.22.78 1.42-41.19 71.33-36.4 63-67.48 116.94-.81 1.4-.61 1.13 1.25 1.13h186.5c1.44 0 1.69-.23 1.7-1.64v-8.88c0-1.34 2.36-.81-18.37-1-7.46-.07-14.14-3.22-21.38-12.7-7.38-9.66-14.62-19.43-21.85-29.21-2.28-3.08-3.45-2.38-16.76-2.38-1.75 0-1.78 0-1.76 1.82.29 26.21.15 25.27 1 32.66.52 4.37 2.16 4.2 9.69 4.81 3.14.26 3.88 4.08.52 4.92-1.57.39-31.6.51-33.67-.1a2.42 2.42 0 0 1 .3-4.73c3.29-.76 6.16.81 6.66-4.44 1.3-13.66 1.17-9 1.1-79.42 0-10.82-.35-12.58-5.36-13.55-1.22-.24-3.54-.16-4.69-.55-2.88-1-2-4.84 1.77-4.85 33.67 0 46.08-1.07 56.06 4.86 7.74 4.61 12 11.48 12.51 20.4.88 14.59-6.51 22.35-15 32.59a1.46 1.46 0 0 0 0 2.22c2.6 3.25 5 6.63 7.71 9.83 27.56 33.23 24.11 30.54 41.28 33.06.89.13 1-.42 1-1.15v-11c0-1 .32-1.43 1.41-1.26a72.37 72.37 0 0 0 23.58-.3c1.08-.15 1.5.2 1.48 1.33 0 .11.88 26.69.87 26.8-.05 1.52.67 1.62 1.89 1.62h186.71Q386.51 304.6 346 234.33c2.26-.66-.4 0 6.69-1.39 2-.39 2.05-.41 3.11 1.44 7.31 12.64 77.31 134 77.37 134.06V138c-1.72.5-103.3 38.72-105.76 39.68-1.08.42-1.55.2-1.91-.88-.63-1.9-1.34-3.76-2.09-5.62-.32-.79-.09-1.13.65-1.39.1 0 95.53-35.85 103-38.77-65.42-37.57-130.56-75-196-112.6l86.82 150.39-.28.33c-9.57-.9-10.46-1.6-11.8-3.94-1-1.69-73.5-127.71-82-142.16-9.1 14.67-83.56 146.21-85.37 146.32-2.93.17-5.88.08-9.25.08q43.25-74.74 86.18-149zm51.93 129.92a37.68 37.68 0 0 0 5.54-.85c1.69-.3 2.53.2 2.6 1.92 0 .11.07 19.06-.86 20.45s-1.88 1.22-2.6-.19c-5-9.69 6.22-9.66-39.12-12-.7 0-1 .23-1 .93 0 .13 3.72 122 3.73 122.11 0 .89.52 1.2 1.21 1.51a83.92 83.92 0 0 1 8.7 4.05c7.31 4.33 11.38 10.84 12.41 19.31 1.44 11.8-2.77 35.77-32.21 37.14-2.75.13-28.26 1.08-34.14-23.25-4.66-19.26 8.26-32.7 19.89-36.4a2.45 2.45 0 0 0 2-2.66c.1-5.63 3-107.1 3.71-121.35.05-1.08-.62-1.16-1.35-1.15-32.35.52-36.75-.34-40.22 8.52-2.42 6.18-4.14 1.32-3.95.23q1.59-9 3.31-18c.4-2.11 1.43-2.61 3.43-1.86 5.59 2.11 6.72 1.7 37.25 1.92 1.73 0 1.78-.08 1.82-1.85.68-27.49.58-22.59 1-29.55a2.69 2.69 0 0 0-1.63-2.8c-5.6-2.91-8.75-7.55-8.9-13.87-.35-14.81 17.72-21.67 27.38-11.51 6.84 7.19 5.8 18.91-2.45 24.15a4.35 4.35 0 0 0-2.22 4.34c0 .59-.11-4.31 1 30.05 0 .9.43 1.12 1.24 1.11.1 0 23-.09 34.47-.37zM68.27 141.7c19.84-4.51 32.68-.56 52.49 1.69 2.76.31 3.74 1.22 3.62 4-.21 5-1.16 22.33-1.24 23.15a2.65 2.65 0 0 1-1.63 2.34c-4.06 1.7-3.61-4.45-4-7.29-3.13-22.43-73.87-32.7-74.63 25.4-.31 23.92 17 53.63 54.08 50.88 27.24-2 19-20.19 24.84-20.47a2.72 2.72 0 0 1 3 3.36c-1.83 10.85-3.42 18.95-3.45 19.15-1.54 9.17-86.7 22.09-93.35-42.06-2.71-25.85 10.44-53.37 40.27-60.15zm80 87.67h-19.49a2.57 2.57 0 0 1-2.66-1.79c2.38-3.75 5.89.92 5.86-6.14-.08-25.75.21-38 .23-40.1 0-3.42-.53-4.65-3.32-4.94-7-.72-3.11-3.37-1.11-3.38 11.84-.1 22.62-.18 30.05.72 8.77 1.07 16.71 12.63 7.93 22.62-2 2.25-4 4.42-6.14 6.73.95 1.15 6.9 8.82 17.28 19.68 2.66 2.78 6.15 3.51 9.88 3.13a2.21 2.21 0 0 0 2.23-2.12c.3-3.42.26 4.73.45-40.58 0-5.65-.34-6.58-3.23-6.83-3.95-.35-4-2.26-.69-3.37l19.09-.09c.32 0 4.49.53 1 3.38 0 .05-.16 0-.24 0-3.61.26-3.94 1-4 4.62-.27 43.93.07 40.23.41 42.82.11.84.27 2.23 5.1 2.14 2.49 0 3.86 3.37 0 3.4-10.37.08-20.74 0-31.11.07-10.67 0-13.47-6.2-24.21-20.82-1.6-2.18-8.31-2.36-8.2-.37.88 16.47 0 17.78 4 17.67 4.75-.1 4.73 3.57.83 3.55zm275-10.15c-1.21 7.13.17 10.38-5.3 10.34-61.55-.42-47.82-.22-50.72-.31a18.4 18.4 0 0 1-3.63-.73c-2.53-.6 1.48-1.23-.38-5.6-1.43-3.37-2.78-6.78-4.11-10.19a1.94 1.94 0 0 0-2-1.44 138 138 0 0 0-14.58.07 2.23 2.23 0 0 0-1.62 1.06c-1.58 3.62-3.07 7.29-4.51 11-1.27 3.23 7.86 1.32 12.19 2.16 3 .57 4.53 3.72.66 3.73H322.9c-2.92 0-3.09-3.15-.74-3.21a6.3 6.3 0 0 0 5.92-3.47c1.5-3 2.8-6 4.11-9.09 18.18-42.14 17.06-40.17 18.42-41.61a1.83 1.83 0 0 1 3 0c2.93 3.34 18.4 44.71 23.62 51.92 2 2.7 5.74 2 6.36 2 3.61.13 4-1.11 4.13-4.29.09-1.87.08 1.17.07-41.24 0-4.46-2.36-3.74-5.55-4.27-.26 0-2.56-.63-.08-3.06.21-.2-.89-.24 21.7-.15 2.32 0 5.32 2.75-1.21 3.45a2.56 2.56 0 0 0-2.66 2.83c-.07 1.63-.19 38.89.29 41.21a3.06 3.06 0 0 0 3.23 2.43c13.25.43 14.92.44 16-3.41 1.67-5.78 4.13-2.52 3.73-.19zm-104.72 64.37c-4.24 0-4.42-3.39-.61-3.41 35.91-.16 28.11.38 37.19-.65 1.68-.19 2.38.24 2.25 1.89-.26 3.39-.64 6.78-1 10.16-.25 2.16-3.2 2.61-3.4-.15-.38-5.31-2.15-4.45-15.63-5.08-1.58-.07-1.64 0-1.64 1.52V304c0 1.65 0 1.6 1.62 1.47 3.12-.25 10.31.34 15.69-1.52.47-.16 3.3-1.79 3.07 1.76 0 .21-.76 10.35-1.18 11.39-.53 1.29-1.88 1.51-2.58.32-1.17-2 0-5.08-3.71-5.3-15.42-.9-12.91-2.55-12.91 6 0 12.25-.76 16.11 3.89 16.24 16.64.48 14.4 0 16.43-5.71.84-2.37 3.5-1.77 3.18.58-.44 3.21-.85 6.43-1.23 9.64 0 .36-.16 2.4-4.66 2.39-37.16-.08-34.54-.19-35.21-.31-2.72-.51-2.2-3 .22-3.45 1.1-.19 4 .54 4.16-2.56 2.44-56.22-.07-51.34-3.91-51.33zm-.41-109.52c2.46.61 3.13 1.76 2.95 4.65-.33 5.3-.34 9-.55 9.69-.66 2.23-3.15 2.12-3.34-.27-.38-4.81-3.05-7.82-7.57-9.15-26.28-7.73-32.81 15.46-27.17 30.22 5.88 15.41 22 15.92 28.86 13.78 5.92-1.85 5.88-6.5 6.91-7.58 1.23-1.3 2.25-1.84 3.12 1.1 0 .1.57 11.89-6 12.75-1.6.21-19.38 3.69-32.68-3.39-21-11.19-16.74-35.47-6.88-45.33 14-14.06 39.91-7.06 42.32-6.47zM289.8 280.14c3.28 0 3.66 3 .16 3.43-2.61.32-5-.42-5 5.46 0 2-.19 29.05.4 41.45.11 2.29 1.15 3.52 3.44 3.65 22 1.21 14.95-1.65 18.79-6.34 1.83-2.24 2.76.84 2.76 1.08.35 13.62-4 12.39-5.19 12.4l-38.16-.19c-1.93-.23-2.06-3-.42-3.38 2-.48 4.94.4 5.13-2.8 1-15.87.57-44.65.34-47.81-.27-3.77-2.8-3.27-5.68-3.71-2.47-.38-2-3.22.34-3.22 1.45-.02 17.97-.03 23.09-.02zm-31.63-57.79c.07 4.08 2.86 3.46 6 3.58 2.61.1 2.53 3.41-.07 3.43-6.48 0-13.7 0-21.61-.06-3.84 0-3.38-3.35 0-3.37 4.49 0 3.24 1.61 3.41-45.54 0-5.08-3.27-3.54-4.72-4.23-2.58-1.23-1.36-3.09.41-3.15 1.29 0 20.19-.41 21.17.21s1.87 1.65-.42 2.86c-1 .52-3.86-.28-4.15 2.47 0 .21-.82 1.63-.07 43.8zm-36.91 274.27a2.93 2.93 0 0 0 3.26 0c17-9.79 182-103.57 197.42-112.51-.14-.43 11.26-.18-181.52-.27-1.22 0-1.57.37-1.53 1.56 0 .1 1.25 44.51 1.22 50.38a28.33 28.33 0 0 1-1.36 7.71c-.55 1.83.38-.5-13.5 32.23-.73 1.72-1 2.21-2-.08-4.19-10.34-8.28-20.72-12.57-31a23.6 23.6 0 0 1-2-10.79c.16-2.46.8-16.12 1.51-48 0-1.95 0-2-2-2h-183c2.58 1.63 178.32 102.57 196 112.76zm-90.9-188.75c0 2.4.36 2.79 2.76 3 11.54 1.17 21 3.74 25.64-7.32 6-14.46 2.66-34.41-12.48-38.84-2-.59-16-2.76-15.94 1.51.05 8.04.01 11.61.02 41.65zm105.75-15.05c0 2.13 1.07 38.68 1.09 39.13.34 9.94-25.58 5.77-25.23-2.59.08-2 1.37-37.42 1.1-39.43-14.1 7.44-14.42 40.21 6.44 48.8a17.9 17.9 0 0 0 22.39-7.07c4.91-7.76 6.84-29.47-5.43-39a2.53 2.53 0 0 1-.36.12zm-12.28-198c-9.83 0-9.73 14.75-.07 14.87s10.1-14.88.07-14.91zm-80.15 103.83c0 1.8.41 2.4 2.17 2.58 13.62 1.39 12.51-11 12.16-13.36-1.69-11.22-14.38-10.2-14.35-7.81.05 4.5-.03 13.68.02 18.59zm212.32 6.4l-6.1-15.84c-2.16 5.48-4.16 10.57-6.23 15.84z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "crop": { + "aliases": { + "unicodes": { + "secondary": [ + "10f125" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "frame", + "mask", + "resize", + "shrink" + ] + }, + "unicode": "f125", + "label": "Crop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 109.3l54.6-54.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L402.7 64 160 64v64l178.7 0L128 338.7V32c0-17.7-14.3-32-32-32S64 14.3 64 32V64H32C14.3 64 0 78.3 0 96s14.3 32 32 32H64V384c0 35.3 28.7 64 64 64H352V384H173.3L384 173.3 384 480c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H448l0-274.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "crop-simple": { + "aliases": { + "names": [ + "crop-alt" + ], + "unicodes": { + "secondary": [ + "10f565" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "frame", + "mask", + "resize", + "shrink" + ] + }, + "unicode": "f565", + "label": "Crop Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 32c0-17.7-14.3-32-32-32S64 14.3 64 32V64H32C14.3 64 0 78.3 0 96s14.3 32 32 32H64V384c0 35.3 28.7 64 64 64H352V384H128V32zM384 480c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H448l0-256c0-35.3-28.7-64-64-64L160 64v64l224 0 0 352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cross": { + "aliases": { + "unicodes": { + "composite": [ + "1f547", + "271d" + ], + "secondary": [ + "10f654" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Christian", + "Heavy Latin Cross", + "catholicism", + "christianity", + "church", + "cross", + "jesus", + "latin cross", + "religion" + ] + }, + "unicode": "f654", + "label": "Cross", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M176 0c-26.5 0-48 21.5-48 48v80H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h80V464c0 26.5 21.5 48 48 48h32c26.5 0 48-21.5 48-48V256h80c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H256V48c0-26.5-21.5-48-48-48H176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "crosshairs": { + "aliases": { + "unicodes": { + "secondary": [ + "10f05b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aim", + "bullseye", + "gpd", + "picker", + "position" + ] + }, + "unicode": "f05b", + "label": "Crosshairs", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c17.7 0 32 14.3 32 32V42.4c93.7 13.9 167.7 88 181.6 181.6H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H469.6c-13.9 93.7-88 167.7-181.6 181.6V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V469.6C130.3 455.7 56.3 381.7 42.4 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H42.4C56.3 130.3 130.3 56.3 224 42.4V32c0-17.7 14.3-32 32-32zM107.4 288c12.5 58.3 58.4 104.1 116.6 116.6V384c0-17.7 14.3-32 32-32s32 14.3 32 32v20.6c58.3-12.5 104.1-58.4 116.6-116.6H384c-17.7 0-32-14.3-32-32s14.3-32 32-32h20.6C392.1 165.7 346.3 119.9 288 107.4V128c0 17.7-14.3 32-32 32s-32-14.3-32-32V107.4C165.7 119.9 119.9 165.7 107.4 224H128c17.7 0 32 14.3 32 32s-14.3 32-32 32H107.4zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "crow": { + "aliases": { + "unicodes": { + "secondary": [ + "10f520" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "bullfrog", + "fauna", + "halloween", + "holiday", + "toad" + ] + }, + "unicode": "f520", + "label": "Crow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M456 0c-48.6 0-88 39.4-88 88v29.2L12.5 390.6c-14 10.8-16.6 30.9-5.9 44.9s30.9 16.6 44.9 5.9L126.1 384H259.2l46.6 113.1c5 12.3 19.1 18.1 31.3 13.1s18.1-19.1 13.1-31.3L311.1 384H352c1.1 0 2.1 0 3.2 0l46.6 113.2c5 12.3 19.1 18.1 31.3 13.1s18.1-19.1 13.1-31.3l-42-102C484.9 354.1 544 280 544 192V128v-8l80.5-20.1c8.6-2.1 13.8-10.8 11.6-19.4C629 52 603.4 32 574 32H523.9C507.7 12.5 483.3 0 456 0zm0 64a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "crown": { + "aliases": { + "unicodes": { + "composite": [ + "1f451" + ], + "secondary": [ + "10f521" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "award", + "clothing", + "crown", + "favorite", + "king", + "queen", + "royal", + "tiara" + ] + }, + "unicode": "f521", + "label": "Crown", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M309 106c11.4-7 19-19.7 19-34c0-22.1-17.9-40-40-40s-40 17.9-40 40c0 14.4 7.6 27 19 34L209.7 220.6c-9.1 18.2-32.7 23.4-48.6 10.7L72 160c5-6.7 8-15 8-24c0-22.1-17.9-40-40-40S0 113.9 0 136s17.9 40 40 40c.2 0 .5 0 .7 0L86.4 427.4c5.5 30.4 32 52.6 63 52.6H426.6c30.9 0 57.4-22.1 63-52.6L535.3 176c.2 0 .5 0 .7 0c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40c0 9 3 17.3 8 24l-89.1 71.3c-15.9 12.7-39.5 7.5-48.6-10.7L309 106z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "crutch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7f7" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cane", + "injury", + "mobility", + "wheelchair" + ] + }, + "unicode": "f7f7", + "label": "Crutch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M297.4 9.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0zm-96 144l-34.8 34.8c-12.9 12.9-21.9 29.2-25.8 47.1L116.8 342.9c-1.3 5.9-4.3 11.4-8.6 15.7L9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l98.8-98.8c4.3-4.3 9.7-7.3 15.7-8.6l107.6-23.9c17.8-4 34.1-12.9 47.1-25.8l34.7-34.7c0 0 .1-.1 .1-.1s.1-.1 .1-.1l74.6-74.6-45.3-45.3L336 242.7 269.3 176l52.1-52.1L276.1 78.6l-74.7 74.7zM224 221.3L290.7 288l-12.2 12.2c-4.3 4.3-9.7 7.3-15.7 8.6l-76.7 17 17-76.7c1.3-5.9 4.3-11.4 8.6-15.7L224 221.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cruzeiro-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Cruzeiro Sign", + "currency" + ] + }, + "unicode": "e152", + "label": "Cruzeiro Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 256c0-88.4 71.6-160 160-160c41 0 78.3 15.4 106.7 40.7c13.2 11.8 33.4 10.7 45.2-2.5s10.7-33.4-2.5-45.2c-39.6-35.5-92-57-149.3-57C100.3 32 0 132.3 0 256S100.3 480 224 480c57.4 0 109.7-21.6 149.3-57c13.2-11.8 14.3-32 2.5-45.2s-32-14.3-45.2-2.5C302.3 400.6 265 416 224 416V320v-8.7c0-12.8 10.4-23.3 23.3-23.3c4.6 0 9.1 1.4 12.9 3.9l10.1 6.7c14.7 9.8 34.6 5.8 44.4-8.9s5.8-34.6-8.9-44.4l-10.1-6.7c-14.3-9.6-31.2-14.7-48.4-14.7c-12.4 0-24.2 2.6-34.9 7.3c-5.5-4.5-12.6-7.3-20.3-7.3c-17.7 0-32 14.3-32 32v55.3V320v82.7C103.5 378 64 321.6 64 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "css3": { + "changes": [ + "3.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "code" + ] + }, + "unicode": "f13c", + "label": "CSS 3 Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "css3-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f38b", + "label": "Alternate CSS3 Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "cube": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1b2" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "3d", + "block", + "dice", + "package", + "square", + "tesseract" + ] + }, + "unicode": "f1b2", + "label": "Cube", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M234.5 5.7c13.9-5 29.1-5 43.1 0l192 68.6C495 83.4 512 107.5 512 134.6V377.4c0 27-17 51.2-42.5 60.3l-192 68.6c-13.9 5-29.1 5-43.1 0l-192-68.6C17 428.6 0 404.5 0 377.4V134.6c0-27 17-51.2 42.5-60.3l192-68.6zM256 66L82.3 128 256 190l173.7-62L256 66zm32 368.6l160-57.1v-188L288 246.6v188z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cubes": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1b3" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "3d", + "block", + "dice", + "package", + "pyramid", + "square", + "stack", + "tesseract" + ] + }, + "unicode": "f1b3", + "label": "Cubes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M273.8 45.8l73.7 28L271.2 103 194.8 73.7l73.7-28c1.7-.7 3.6-.7 5.3 0zM128.1 87.1V192.6c-1.2 .4-2.4 .8-3.6 1.2L34.1 228.1c-20.5 7.8-34 27.4-34 49.3V389.5c0 20.9 12.4 39.8 31.5 48.3L122 477.5c13.5 5.9 28.9 5.9 42.4 0l106.8-46.9L378 477.5c13.5 5.9 28.9 5.9 42.4 0l90.4-39.7c19.1-8.4 31.5-27.3 31.5-48.3V277.4c0-21.9-13.5-41.5-34-49.3l-90.4-34.3c-1.2-.5-2.4-.9-3.6-1.2V87.1c0-21.9-13.5-41.5-34-49.3L289.9 3.5c-12-4.6-25.3-4.6-37.4 0L162.1 37.8c-20.5 7.8-34 27.4-34 49.3zM369.1 198.2l-77.5 29.4v-84l77.5-29.7v84.3zM145.8 236.1l73.7 28-76.4 29.3L66.8 264.1l73.7-28c1.7-.7 3.6-.7 5.3 0zm17.7 192.4V333.9l77.5-29.7v90.2l-77.5 34.1zm233-192.4c1.7-.7 3.6-.7 5.3 0l73.7 28-76.4 29.3-76.4-29.3 73.7-28zm96.1 160.3l-73 32.1V333.9l77.5-29.7v85.3c0 3-1.8 5.7-4.5 6.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cubes-stacked": { + "changes": [ + "6.1.0", + "6.1.1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "cubes", + "sugar" + ] + }, + "unicode": "e4e6", + "label": "Cubes Stacked", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M192 64v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H224c-17.7 0-32 14.3-32 32zM82.7 207c-15.3 8.8-20.5 28.4-11.7 43.7l32 55.4c8.8 15.3 28.4 20.5 43.7 11.7l55.4-32c15.3-8.8 20.5-28.4 11.7-43.7l-32-55.4c-8.8-15.3-28.4-20.5-43.7-11.7L82.7 207zM288 192c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32H288zm64 160c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32H352zM160 384v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32zM32 352c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "cuttlefish": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f38c", + "label": "Cuttlefish", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 440, + 512 + ], + "width": 440, + "height": 512, + "path": "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "d": { + "aliases": { + "unicodes": { + "composite": [ + "64" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter D", + "Latin Small Letter D", + "letter" + ] + }, + "unicode": "44", + "label": "D", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32h96c123.7 0 224 100.3 224 224s-100.3 224-224 224H64c-35.3 0-64-28.7-64-64V96zm160 0H64V416h96c88.4 0 160-71.6 160-160s-71.6-160-160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "d-and-d": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f38d", + "label": "Dungeons & Dragons", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "d-and-d-beyond": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "gaming", + "tabletop" + ] + }, + "unicode": "f6ca", + "label": "D&D Beyond", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M313.8 241.5c13.8 0 21-10.1 24.8-17.9-1-1.1-5-4.2-7.4-6.6-2.4 4.3-8.2 10.7-13.9 10.7-10.2 0-15.4-14.7-3.2-26.6-.5-.2-4.3-1.8-8 2.4 0-3 1-5.1 2.1-6.6-3.5 1.3-9.8 5.6-11.4 7.9.2-5.8 1.6-7.5.6-9l-.2-.2s-8.5 5.6-9.3 14.7c0 0 1.1-1.6 2.1-1.9.6-.3 1.3 0 .6 1.9-.2.6-5.8 15.7 5.1 26-.6-1.6-1.9-7.6 2.4-1.9-.3.1 5.8 7.1 15.7 7.1zm52.4-21.1c0-4-4.9-4.4-5.6-4.5 2 3.9.9 7.5.2 9 2.5-.4 5.4-1.6 5.4-4.5zm10.3 5.2c0-6.4-6.2-11.4-13.5-10.7 8 1.3 5.6 13.8-5 11.4 3.7-2.6 3.2-9.9-1.3-12.5 1.4 4.2-3 8.2-7.4 4.6-2.4-1.9-8-6.6-10.6-8.6-2.4-2.1-5.5-1-6.6-1.8-1.3-1.1-.5-3.8-2.2-5-1.6-.8-3-.3-4.8-1-1.6-.6-2.7-1.9-2.6-3.5-2.5 4.4 3.4 6.3 4.5 8.5 1 1.9-.8 4.8 4 8.5 14.8 11.6 9.1 8 10.4 18.1.6 4.3 4.2 6.7 6.4 7.4-2.1-1.9-2.9-6.4 0-9.3 0 13.9 19.2 13.3 23.1 6.4-2.4 1.1-7-.2-9-1.9 7.7 1 14.2-4.1 14.6-10.6zm-39.4-18.4c2 .8 1.6.7 6.4 4.5 10.2-24.5 21.7-15.7 22-15.5 2.2-1.9 9.8-3.8 13.8-2.7-2.4-2.7-7.5-6.2-13.3-6.2-4.7 0-7.4 2.2-8 1.3-.8-1.4 3.2-3.4 3.2-3.4-5.4.2-9.6 6.7-11.2 5.9-1.1-.5 1.4-3.7 1.4-3.7-5.1 2.9-9.3 9.1-10.2 13 4.6-5.8 13.8-9.8 19.7-9-10.5.5-19.5 9.7-23.8 15.8zm242.5 51.9c-20.7 0-40 1.3-50.3 2.1l7.4 8.2v77.2l-7.4 8.2c10.4.8 30.9 2.1 51.6 2.1 42.1 0 59.1-20.7 59.1-48.9 0-29.3-23.2-48.9-60.4-48.9zm-15.1 75.6v-53.3c30.1-3.3 46.8 3.8 46.8 26.3 0 25.6-21.4 30.2-46.8 27zM301.6 181c-1-3.4-.2-6.9 1.1-9.4 1 3 2.6 6.4 7.5 9-.5-2.4-.2-5.6.5-8-1.4-5.4 2.1-9.9 6.4-9.9 6.9 0 8.5 8.8 4.7 14.4 2.1 3.2 5.5 5.6 7.7 7.8 3.2-3.7 5.5-9.5 5.5-13.8 0-8.2-5.5-15.9-16.7-16.5-20-.9-20.2 16.6-20 18.9.5 5.2 3.4 7.8 3.3 7.5zm-.4 6c-.5 1.8-7 3.7-10.2 6.9 4.8-1 7-.2 7.8 1.8.5 1.4-.2 3.4-.5 5.6 1.6-1.8 7-5.5 11-6.2-1-.3-3.4-.8-4.3-.8 2.9-3.4 9.3-4.5 12.8-3.7-2.2-.2-6.7 1.1-8.5 2.6 1.6.3 3 .6 4.3 1.1-2.1.8-4.8 3.4-5.8 6.1 7-5 13.1 5.2 7 8.2.8.2 2.7 0 3.5-.5-.3 1.1-1.9 3-3 3.4 2.9 0 7-1.9 8.2-4.6 0 0-1.8.6-2.6-.2s.3-4.3.3-4.3c-2.3 2.9-3.4-1.3-1.3-4.2-1-.3-3.5-.6-4.6-.5 3.2-1.1 10.4-1.8 11.2-.3.6 1.1-1 3.4-1 3.4 4-.5 8.3 1.1 6.7 5.1 2.9-1.4 5.5-5.9 4.8-10.4-.3 1-1.6 2.4-2.9 2.7.2-1.4-1-2.2-1.9-2.6 1.7-9.6-14.6-14.2-14.1-23.9-1 1.3-1.8 5-.8 7.1 2.7 3.2 8.7 6.7 10.1 12.2-2.6-6.4-15.1-11.4-14.6-20.2-1.6 1.6-2.6 7.8-1.3 11 2.4 1.4 4.5 3.8 4.8 6.1-2.2-5.1-11.4-6.1-13.9-12.2-.6 2.2-.3 5 1 6.7 0 0-2.2-.8-7-.6 1.7.6 5.1 3.5 4.8 5.2zm25.9 7.4c-2.7 0-3.5-2.1-4.2-4.3 3.3 1.3 4.2 4.3 4.2 4.3zm38.9 3.7l-1-.6c-1.1-1-2.9-1.4-4.7-1.4-2.9 0-5.8 1.3-7.5 3.4-.8.8-1.4 1.8-2.1 2.6v15.7c3.5 2.6 7.1-2.9 3-7.2 1.5.3 4.6 2.7 5.1 3.2 0 0 2.6-.5 5-.5 2.1 0 3.9.3 5.6 1.1V196c-1.1.5-2.2 1-2.7 1.4zM79.9 305.9c17.2-4.6 16.2-18 16.2-19.9 0-20.6-24.1-25-37-25H3l8.3 8.6v29.5H0l11.4 14.6V346L3 354.6c61.7 0 73.8 1.5 86.4-5.9 6.7-4 9.9-9.8 9.9-17.6 0-5.1 2.6-18.8-19.4-25.2zm-41.3-27.5c20 0 29.6-.8 29.6 9.1v3c0 12.1-19 8.8-29.6 8.8zm0 59.2V315c12.2 0 32.7-2.3 32.7 8.8v4.5h.2c0 11.2-12.5 9.3-32.9 9.3zm101.2-19.3l23.1.2v-.2l14.1-21.2h-37.2v-14.9h52.4l-14.1-21v-.2l-73.5.2 7.4 8.2v77.1l-7.4 8.2h81.2l14.1-21.2-60.1.2zm214.7-60.1c-73.9 0-77.5 99.3-.3 99.3 77.9 0 74.1-99.3.3-99.3zm-.3 77.5c-37.4 0-36.9-55.3.2-55.3 36.8.1 38.8 55.3-.2 55.3zm-91.3-8.3l44.1-66.2h-41.7l6.1 7.2-20.5 37.2h-.3l-21-37.2 6.4-7.2h-44.9l44.1 65.8.2 19.4-7.7 8.2h42.6l-7.2-8.2zm-28.4-151.3c1.6 1.3 2.9 2.4 2.9 6.6v38.8c0 4.2-.8 5.3-2.7 6.4-.1.1-7.5 4.5-7.9 4.6h35.1c10 0 17.4-1.5 26-8.6-.6-5 .2-9.5.8-12 0-.2-1.8 1.4-2.7 3.5 0-5.7 1.6-15.4 9.6-20.5-.1 0-3.7-.8-9 1.1 2-3.1 10-7.9 10.4-7.9-8.2-26-38-22.9-32.2-22.9-30.9 0-32.6.3-39.9-4 .1.8.5 8.2 9.6 14.9zm21.5 5.5c4.6 0 23.1-3.3 23.1 17.3 0 20.7-18.4 17.3-23.1 17.3zm228.9 79.6l7 8.3V312h-.3c-5.4-14.4-42.3-41.5-45.2-50.9h-31.6l7.4 8.5v76.9l-7.2 8.3h39l-7.4-8.2v-47.4h.3c3.7 10.6 44.5 42.9 48.5 55.6h21.3v-85.2l7.4-8.3zm-106.7-96.1c-32.2 0-32.8.2-39.9-4 .1.7.5 8.3 9.6 14.9 3.1 2 2.9 4.3 2.9 9.5 1.8-1.1 3.8-2.2 6.1-3-1.1 1.1-2.7 2.7-3.5 4.5 1-1.1 7.5-5.1 14.6-3.5-1.6.3-4 1.1-6.1 2.9.1 0 2.1-1.1 7.5-.3v-4.3c4.7 0 23.1-3.4 23.1 17.3 0 20.5-18.5 17.3-19.7 17.3 5.7 4.4 5.8 12 2.2 16.3h.3c33.4 0 36.7-27.3 36.7-34 0-3.8-1.1-32-33.8-33.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dailymotion": { + "changes": [ + "5.12.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e052", + "label": "dailymotion", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M298.93,267a48.4,48.4,0,0,0-24.36-6.21q-19.83,0-33.44,13.27t-13.61,33.42q0,21.16,13.28,34.6t33.43,13.44q20.5,0,34.11-13.78T322,307.47A47.13,47.13,0,0,0,315.9,284,44.13,44.13,0,0,0,298.93,267ZM0,32V480H448V32ZM374.71,405.26h-53.1V381.37h-.67q-15.79,26.2-55.78,26.2-27.56,0-48.89-13.1a88.29,88.29,0,0,1-32.94-35.77q-11.6-22.68-11.59-50.89,0-27.56,11.76-50.22a89.9,89.9,0,0,1,32.93-35.78q21.18-13.09,47.72-13.1a80.87,80.87,0,0,1,29.74,5.21q13.28,5.21,25,17V153l55.79-12.09Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dashcube": { + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f210", + "label": "DashCube", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "database": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c0" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "development", + "directory", + "memory", + "storage" + ] + }, + "unicode": "f1c0", + "label": "Database", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321809, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 80v48c0 44.2-100.3 80-224 80S0 172.2 0 128V80C0 35.8 100.3 0 224 0S448 35.8 448 80zM393.2 214.7c20.8-7.4 39.9-16.9 54.8-28.6V288c0 44.2-100.3 80-224 80S0 332.2 0 288V186.1c14.9 11.8 34 21.2 54.8 28.6C99.7 230.7 159.5 240 224 240s124.3-9.3 169.2-25.3zM0 346.1c14.9 11.8 34 21.2 54.8 28.6C99.7 390.7 159.5 400 224 400s124.3-9.3 169.2-25.3c20.8-7.4 39.9-16.9 54.8-28.6V432c0 44.2-100.3 80-224 80S0 476.2 0 432V346.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "deezer": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e077", + "label": "Deezer", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M451.46,244.71H576V172H451.46Zm0-173.89v72.67H576V70.82Zm0,275.06H576V273.2H451.46ZM0,447.09H124.54V374.42H0Zm150.47,0H275V374.42H150.47Zm150.52,0H425.53V374.42H301Zm150.47,0H576V374.42H451.46ZM301,345.88H425.53V273.2H301Zm-150.52,0H275V273.2H150.47Zm0-101.17H275V172H150.47Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "delete-left": { + "aliases": { + "names": [ + "backspace" + ], + "unicodes": { + "composite": [ + "232b" + ], + "secondary": [ + "10f55a" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Erase to the Left", + "command", + "delete", + "erase", + "keyboard", + "undo" + ] + }, + "unicode": "f55a", + "label": "Delete Left", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M576 128c0-35.3-28.7-64-64-64H205.3c-17 0-33.3 6.7-45.3 18.7L9.4 233.4c-6 6-9.4 14.1-9.4 22.6s3.4 16.6 9.4 22.6L160 429.3c12 12 28.3 18.7 45.3 18.7H512c35.3 0 64-28.7 64-64V128zM271 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "delicious": { + "changes": [ + "4.1.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a5", + "label": "Delicious", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "democrat": { + "aliases": { + "unicodes": { + "secondary": [ + "10f747" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "democratic party", + "donkey", + "election", + "left", + "left-wing", + "liberal", + "politics", + "usa" + ] + }, + "unicode": "f747", + "label": "Democrat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32c0-8.9 3.8-20.9 6.2-27.3C71.2 1.8 74 0 77 0c1.9 0 3.8 .7 5.2 2.1L128 45.7 173.8 2.1C175.2 .7 177.1 0 179 0c3 0 5.8 1.8 6.8 4.7c2.4 6.5 6.2 18.4 6.2 27.3c0 26.5-21.9 42-29.5 46.6l76.2 72.6c6 5.7 13.9 8.8 22.1 8.8H480l32 0c40.3 0 78.2 19 102.4 51.2l19.2 25.6c10.6 14.1 7.7 34.2-6.4 44.8s-34.2 7.7-44.8-6.4l-19.2-25.6c-5.3-7-11.8-12.8-19.2-17V320H192l-40.4-94.3c-3.9-9.2-15.3-12.6-23.6-7l-42.1 28c-9.1 6.1-19.7 9.3-30.7 9.3h-2C23.9 256 0 232.1 0 202.7c0-12.1 4.1-23.8 11.7-33.3L87.6 74.6C78.1 67.4 64 53.2 64 32zM448 352h96v64 64c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32V416H288v64c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32V416 352h96H448zM260.9 210.9c-.9-1.8-2.8-2.9-4.8-2.9s-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9 .5 3.9 2.1 5s3.8 1.3 5.6 .4l21-10.7 21 10.7c1.8 .9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.3-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5zM368.1 208c-2 0-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9 .5 3.9 2.1 5s3.8 1.3 5.6 .4l21-10.7 21 10.7c1.8 .9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.4-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5c-.9-1.8-2.8-2.9-4.8-2.9zm116.8 2.9c-.9-1.8-2.8-2.9-4.8-2.9s-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9 .5 3.9 2.1 5s3.8 1.3 5.6 .4l21-10.7 21 10.7c1.8 .9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.4-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "deploydog": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f38e", + "label": "deploy.dog", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "deskpro": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f38f", + "label": "Deskpro", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 480, + 512 + ], + "width": 480, + "height": 512, + "path": "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "desktop": { + "aliases": { + "names": [ + "desktop-alt" + ], + "unicodes": { + "composite": [ + "1f5a5", + "f108" + ], + "primary": [ + "f108" + ], + "secondary": [ + "10f108", + "10f390" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "demo", + "desktop", + "desktop computer", + "device", + "imac", + "machine", + "monitor", + "pc", + "screen" + ] + }, + "unicode": "f390", + "label": "Desktop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V352c0 35.3 28.7 64 64 64H240l-10.7 32H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H346.7L336 416H512c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM512 64V288H64V64H512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dev": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f6cc", + "label": "DEV", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M120.12 208.29c-3.88-2.9-7.77-4.35-11.65-4.35H91.03v104.47h17.45c3.88 0 7.77-1.45 11.65-4.35 3.88-2.9 5.82-7.25 5.82-13.06v-69.65c-.01-5.8-1.96-10.16-5.83-13.06zM404.1 32H43.9C19.7 32 .06 51.59 0 75.8v360.4C.06 460.41 19.7 480 43.9 480h360.2c24.21 0 43.84-19.59 43.9-43.8V75.8c-.06-24.21-19.7-43.8-43.9-43.8zM154.2 291.19c0 18.81-11.61 47.31-48.36 47.25h-46.4V172.98h47.38c35.44 0 47.36 28.46 47.37 47.28l.01 70.93zm100.68-88.66H201.6v38.42h32.57v29.57H201.6v38.41h53.29v29.57h-62.18c-11.16.29-20.44-8.53-20.72-19.69V193.7c-.27-11.15 8.56-20.41 19.71-20.69h63.19l-.01 29.52zm103.64 115.29c-13.2 30.75-36.85 24.63-47.44 0l-38.53-144.8h32.57l29.71 113.72 29.57-113.72h32.58l-38.46 144.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "deviantart": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1bd", + "label": "deviantART", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dharmachakra": { + "aliases": { + "unicodes": { + "composite": [ + "2638" + ], + "secondary": [ + "10f655" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Buddhist", + "buddhism", + "buddhist", + "dharma", + "religion", + "wheel", + "wheel of dharma" + ] + }, + "unicode": "f655", + "label": "Dharmachakra", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M337.8 205.7l48.6-42.5c13.8 19.3 23.4 41.9 27.4 66.2l-64.4 4.3c-2.4-10.1-6.4-19.5-11.6-28zm140.1 19.5c-5.3-38.8-20.6-74.5-43.2-104.3l.8-.7C449 108.4 449.7 87.6 437 75s-33.4-12-45.2 1.5l-.7 .8c-29.8-22.6-65.5-37.9-104.3-43.2l.1-1.1c1.2-17.9-13-33-30.9-33s-32.1 15.2-30.9 33l.1 1.1c-38.8 5.3-74.5 20.6-104.3 43.2l-.7-.8C108.4 63 87.6 62.3 75 75s-12 33.4 1.5 45.2l.8 .7c-22.6 29.8-37.9 65.5-43.2 104.3l-1.1-.1c-17.9-1.2-33 13-33 30.9s15.2 32.1 33 30.9l1.1-.1c5.3 38.8 20.6 74.5 43.2 104.3l-.8 .7C63 403.6 62.3 424.4 75 437s33.4 12 45.2-1.5l.7-.8c29.8 22.6 65.5 37.9 104.3 43.2l-.1 1.1c-1.2 17.9 13 33 30.9 33s32.1-15.2 30.9-33l-.1-1.1c38.8-5.3 74.5-20.6 104.3-43.2l.7 .8c11.8 13.5 32.5 14.2 45.2 1.5s12-33.4-1.5-45.2l-.8-.7c22.6-29.8 37.9-65.5 43.2-104.3l1.1 .1c17.9 1.2 33-13 33-30.9s-15.2-32.1-33-30.9l-1.1 .1zM163.2 125.6c19.3-13.8 41.9-23.4 66.2-27.5l4.3 64.4c-10 2.4-19.5 6.4-28 11.6l-42.5-48.6zm-65 103.8c4.1-24.4 13.7-46.9 27.5-66.2l48.6 42.5c-5.3 8.5-9.2 18-11.6 28l-64.4-4.3zm27.5 119.4c-13.8-19.3-23.4-41.9-27.5-66.2l64.4-4.3c2.4 10 6.4 19.5 11.6 28l-48.6 42.5zm103.8 65c-24.4-4.1-46.9-13.7-66.2-27.4l42.5-48.6c8.5 5.3 18 9.2 28 11.6l-4.3 64.4zm119.4-27.4c-19.3 13.8-41.9 23.4-66.2 27.4l-4.3-64.4c10-2.4 19.5-6.4 28-11.6l42.5 48.6zm65-103.8c-4.1 24.4-13.7 46.9-27.4 66.2l-48.6-42.5c5.3-8.5 9.2-18 11.6-28l64.4 4.3zm-65-156.9l-42.5 48.6c-8.6-5.3-18-9.2-28-11.6l4.3-64.4c24.4 4.1 46.9 13.7 66.2 27.5zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dhl": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dalsey", + "Hillblom and Lynn", + "german", + "package", + "shipping" + ] + }, + "unicode": "f790", + "label": "DHL", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M238 301.2h58.7L319 271h-58.7L238 301.2zM0 282.9v6.4h81.8l4.7-6.4H0zM172.9 271c-8.7 0-6-3.6-4.6-5.5 2.8-3.8 7.6-10.4 10.4-14.1 2.8-3.7 2.8-5.9-2.8-5.9h-51l-41.1 55.8h100.1c33.1 0 51.5-22.5 57.2-30.3h-68.2zm317.5-6.9l39.3-53.4h-62.2l-39.3 53.4h62.2zM95.3 271H0v6.4h90.6l4.7-6.4zm111-26.6c-2.8 3.8-7.5 10.4-10.3 14.2-1.4 2-4.1 5.5 4.6 5.5h45.6s7.3-10 13.5-18.4c8.4-11.4.7-35-29.2-35H112.6l-20.4 27.8h111.4c5.6 0 5.5 2.2 2.7 5.9zM0 301.2h73.1l4.7-6.4H0v6.4zm323 0h58.7L404 271h-58.7c-.1 0-22.3 30.2-22.3 30.2zm222 .1h95v-6.4h-90.3l-4.7 6.4zm22.3-30.3l-4.7 6.4H640V271h-72.7zm-13.5 18.3H640v-6.4h-81.5l-4.7 6.4zm-164.2-78.6l-22.5 30.6h-26.2l22.5-30.6h-58.7l-39.3 53.4H409l39.3-53.4h-58.7zm33.5 60.3s-4.3 5.9-6.4 8.7c-7.4 10-.9 21.6 23.2 21.6h94.3l22.3-30.3H423.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "diagram-next": { + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cells", + "chart", + "gantt", + "row", + "subtask", + "successor", + "table" + ] + }, + "unicode": "e476", + "label": "Diagram Next", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 160c0 35.3-28.7 64-64 64H280v64h46.1c21.4 0 32.1 25.9 17 41L273 399c-9.4 9.4-24.6 9.4-33.9 0L169 329c-15.1-15.1-4.4-41 17-41H232V224H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64v64zM448 416V352H365.3l.4-.4c18.4-18.4 20.4-43.7 11-63.6l71.3 0c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64V352c0-35.3 28.7-64 64-64l71.3 0c-9.4 19.9-7.4 45.2 11 63.6l.4 .4H64v64H210.7l5.7 5.7c21.9 21.9 57.3 21.9 79.2 0l5.7-5.7H448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diagram-predecessor": { + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cells", + "chart", + "gantt", + "predecessor", + "previous", + "row", + "subtask", + "table" + ] + }, + "unicode": "e477", + "label": "Diagram Predecessor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 416l0-64L64 352l0 64 384 0zm0 64L64 480c-35.3 0-64-28.7-64-64l0-64c0-35.3 28.7-64 64-64l384 0c35.3 0 64 28.7 64 64l0 64c0 35.3-28.7 64-64 64zM288 160c0 35.3-28.7 64-64 64L64 224c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l144 0 16 0 144 0c44.2 0 80 35.8 80 80l0 16 38.1 0c21.4 0 32.1 25.9 17 41L433 239c-9.4 9.4-24.6 9.4-33.9 0L329 169c-15.1-15.1-4.4-41 17-41l38.1 0 0-16c0-8.8-7.2-16-16-16l-80 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diagram-project": { + "aliases": { + "names": [ + "project-diagram" + ], + "unicodes": { + "secondary": [ + "10f542" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "graph", + "network", + "pert" + ] + }, + "unicode": "f542", + "label": "Diagram Project", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 80C0 53.5 21.5 32 48 32h96c26.5 0 48 21.5 48 48V96H384V80c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H432c-26.5 0-48-21.5-48-48V160H192v16c0 1.7-.1 3.4-.3 5L272 288h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H272c-26.5 0-48-21.5-48-48V336c0-1.7 .1-3.4 .3-5L144 224H48c-26.5 0-48-21.5-48-48V80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diagram-successor": { + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cells", + "chart", + "gantt", + "next", + "row", + "subtask", + "successor", + "table" + ] + }, + "unicode": "e47a", + "label": "Diagram Successor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 416l0-64c0-35.3-28.7-64-64-64L64 288c-35.3 0-64 28.7-64 64l0 64c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64zM64 160l0-64 144 0 16 0 0 64L64 160zm224 0l0-64 80 0c8.8 0 16 7.2 16 16l0 16-38.1 0c-21.4 0-32.1 25.9-17 41L399 239c9.4 9.4 24.6 9.4 33.9 0L503 169c15.1-15.1 4.4-41-17-41L448 128l0-16c0-44.2-35.8-80-80-80L224 32l-16 0L64 32C28.7 32 0 60.7 0 96l0 64c0 35.3 28.7 64 64 64l160 0c35.3 0 64-28.7 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diamond": { + "aliases": { + "unicodes": { + "composite": [ + "2666" + ], + "secondary": [ + "10f219" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "card", + "cards", + "diamond suit", + "game", + "gem", + "gemstone", + "poker", + "suit" + ] + }, + "unicode": "f219", + "label": "Diamond", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M284.3 11.7c-15.6-15.6-40.9-15.6-56.6 0l-216 216c-15.6 15.6-15.6 40.9 0 56.6l216 216c15.6 15.6 40.9 15.6 56.6 0l216-216c15.6-15.6 15.6-40.9 0-56.6l-216-216z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diamond-turn-right": { + "aliases": { + "names": [ + "directions" + ], + "unicodes": { + "secondary": [ + "10f5eb" + ] + } + }, + "changes": [ + "5.2.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "map", + "navigation", + "sign", + "turn" + ] + }, + "unicode": "f5eb", + "label": "Diamond Turn Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M227.7 11.7c15.6-15.6 40.9-15.6 56.6 0l216 216c15.6 15.6 15.6 40.9 0 56.6l-216 216c-15.6 15.6-40.9 15.6-56.6 0l-216-216c-15.6-15.6-15.6-40.9 0-56.6l216-216zm87.6 137c-4.6-4.6-11.5-5.9-17.4-3.5s-9.9 8.3-9.9 14.8v56H224c-35.3 0-64 28.7-64 64v48c0 13.3 10.7 24 24 24s24-10.7 24-24V280c0-8.8 7.2-16 16-16h64v56c0 6.5 3.9 12.3 9.9 14.8s12.9 1.1 17.4-3.5l80-80c6.2-6.2 6.2-16.4 0-22.6l-80-80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "diaspora": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f791", + "label": "Diaspora", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M251.64 354.55c-1.4 0-88 119.9-88.7 119.9S76.34 414 76 413.25s86.6-125.7 86.6-127.4c0-2.2-129.6-44-137.6-47.1-1.3-.5 31.4-101.8 31.7-102.1.6-.7 144.4 47 145.5 47 .4 0 .9-.6 1-1.3.4-2 1-148.6 1.7-149.6.8-1.2 104.5-.7 105.1-.3 1.5 1 3.5 156.1 6.1 156.1 1.4 0 138.7-47 139.3-46.3.8.9 31.9 102.2 31.5 102.6-.9.9-140.2 47.1-140.6 48.8-.3 1.4 82.8 122.1 82.5 122.9s-85.5 63.5-86.3 63.5c-1-.2-89-125.5-90.9-125.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dice": { + "aliases": { + "unicodes": { + "composite": [ + "1f3b2" + ], + "secondary": [ + "10f522" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "dice", + "die", + "gambling", + "game", + "game die", + "roll" + ] + }, + "unicode": "f522", + "label": "Dice", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M252.3 11.7c-15.6-15.6-40.9-15.6-56.6 0l-184 184c-15.6 15.6-15.6 40.9 0 56.6l184 184c15.6 15.6 40.9 15.6 56.6 0l184-184c15.6-15.6 15.6-40.9 0-56.6l-184-184zM248 224c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24zM96 248c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm128 80c13.3 0 24 10.7 24 24s-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24zm128-80c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zM224 72c13.3 0 24 10.7 24 24s-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24zm96 392c0 26.5 21.5 48 48 48H592c26.5 0 48-21.5 48-48V240c0-26.5-21.5-48-48-48H472.5c13.4 26.9 8.8 60.5-13.6 82.9L320 413.8V464zm160-88c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-d20": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6cf" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "chance", + "d&d", + "dnd", + "fantasy", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f6cf", + "label": "Dice D20", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64.7 125.8l53.2 31.9c7.8 4.7 17.8 2 22.2-5.9L217.6 12.1c3-5.4-.9-12.1-7.1-12.1c-1.6 0-3.2 .5-4.6 1.4L63.9 98.8c-9.6 6.6-9.2 20.9 .8 26.9zM32 171.7V295.3c0 8 10.4 11 14.7 4.4l60-92c5-7.6 2.6-17.8-5.2-22.5L56.2 158C45.6 151.6 32 159.3 32 171.7zM326.4 12.1l77.6 139.6c4.4 7.9 14.5 10.6 22.2 5.9l53.2-31.9c10-6 10.4-20.3 .8-26.9L338.1 1.4c-1.4-.9-3-1.4-4.6-1.4c-6.2 0-10.1 6.7-7.1 12.1zM512 171.7c0-12.4-13.6-20.1-24.2-13.7l-45.3 27.2c-7.8 4.7-10.1 14.9-5.2 22.5l60 92c4.3 6.7 14.7 3.6 14.7-4.4V171.7zm-49.3 246L302.1 436.6c-8.1 .9-14.1 7.8-14.1 15.9v52.8c0 3.7 3 6.8 6.8 6.8c.8 0 1.6-.1 2.4-.4l172.7-64c6.1-2.2 10.1-8 10.1-14.5c0-9.3-8.1-16.5-17.3-15.4zM249.2 512c3.7 0 6.8-3 6.8-6.8V452.6c0-8.1-6.1-14.9-14.1-15.9l-160.6-19c-9.2-1.1-17.3 6.1-17.3 15.4c0 6.5 4 12.3 10.1 14.5l172.7 64c.8 .3 1.6 .4 2.4 .4zM57.7 382.9l170.9 20.2c7.8 .9 13.4-7.5 9.5-14.3l-85.7-150c-5.9-10.4-20.7-10.8-27.3-.8L46.2 358.2c-6.5 9.9-.3 23.3 11.5 24.7zm439.6-24.8L418.9 238.1c-6.5-10-21.4-9.6-27.3 .8L306.2 388.5c-3.9 6.8 1.6 15.2 9.5 14.3l170.1-20c11.8-1.4 18-14.7 11.5-24.6zm-216.9 11l78.4-137.2c6.1-10.7-1.6-23.9-13.9-23.9H199.1c-12.3 0-20 13.3-13.9 23.9l78.4 137.2c3.7 6.4 13 6.4 16.7 0zM190.4 176H353.6c12.2 0 19.9-13.1 14-23.8l-80-144c-2.8-5.1-8.2-8.2-14-8.2h-3.2c-5.8 0-11.2 3.2-14 8.2l-80 144c-5.9 10.7 1.8 23.8 14 23.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-d6": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6d1" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "chance", + "d&d", + "dnd", + "fantasy", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f6d1", + "label": "Dice D6", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M216.3 2c4.8-2.6 10.5-2.6 15.3 0L422.3 106c5.1 2.8 8.3 8.2 8.3 14s-3.2 11.2-8.3 14L231.7 238c-4.8 2.6-10.5 2.6-15.3 0L25.7 134c-5.1-2.8-8.3-8.2-8.3-14s3.2-11.2 8.3-14L216.3 2zM23.7 170l176 96c5.1 2.8 8.3 8.2 8.3 14V496c0 5.6-3 10.9-7.8 13.8s-10.9 3-15.8 .3L8.3 414C3.2 411.2 0 405.9 0 400V184c0-5.6 3-10.9 7.8-13.8s10.9-3 15.8-.3zm400.7 0c5-2.7 11-2.6 15.8 .3s7.8 8.1 7.8 13.8V400c0 5.9-3.2 11.2-8.3 14l-176 96c-5 2.7-11 2.6-15.8-.3s-7.8-8.1-7.8-13.8V280c0-5.9 3.2-11.2 8.3-14l176-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-five": { + "aliases": { + "unicodes": { + "composite": [ + "2684" + ], + "secondary": [ + "10f523" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-5", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f523", + "label": "Dice Five", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 160c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm32 160c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm64-64c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zM352 160c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zM320 384c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-four": { + "aliases": { + "unicodes": { + "composite": [ + "2683" + ], + "secondary": [ + "10f524" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-4", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f524", + "label": "Dice Four", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM128 384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zM352 160c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM320 384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-one": { + "aliases": { + "unicodes": { + "composite": [ + "2680" + ], + "secondary": [ + "10f525" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-1", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f525", + "label": "Dice One", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM224 288c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-six": { + "aliases": { + "unicodes": { + "composite": [ + "2685" + ], + "secondary": [ + "10f526" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-6", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f526", + "label": "Dice Six", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM128 288c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm32 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM320 192c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm32 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM320 384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-three": { + "aliases": { + "unicodes": { + "composite": [ + "2682" + ], + "secondary": [ + "10f527" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-3", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f527", + "label": "Dice Three", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 160c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm128 64c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm64 128c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dice-two": { + "aliases": { + "unicodes": { + "composite": [ + "2681" + ], + "secondary": [ + "10f528" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-2", + "chance", + "gambling", + "game", + "roll" + ] + }, + "unicode": "f528", + "label": "Dice Two", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM352 352c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM128 192c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "digg": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a6", + "label": "Digg Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "digital-ocean": { + "changes": [ + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f391", + "label": "Digital Ocean", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M87 481.8h73.7v-73.6H87zM25.4 346.6v61.6H87v-61.6zm466.2-169.7c-23-74.2-82.4-133.3-156.6-156.6C164.9-32.8 8 93.7 8 255.9h95.8c0-101.8 101-180.5 208.1-141.7 39.7 14.3 71.5 46.1 85.8 85.7 39.1 107-39.7 207.8-141.4 208v.3h-.3V504c162.6 0 288.8-156.8 235.6-327.1zm-235.3 231v-95.3h-95.6v95.6H256v-.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "discord": { + "changes": [ + "5.0.0", + "5.15.4", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f392", + "label": "Discord", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "discourse": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f393", + "label": "Discourse", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "disease": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7fa" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bacteria", + "cancer", + "coronavirus", + "covid-19", + "flu", + "illness", + "infection", + "pandemic", + "sickness", + "virus" + ] + }, + "unicode": "f7fa", + "label": "Disease", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M236.4 61.4L227 75.5c-21.3 32-59.4 48.5-97.3 42.1l-59.6-9.9C33.4 101.6 0 129.9 .1 167.1c0 15.9 6.4 31.2 17.6 42.5l29.2 29.2c11 11 17.2 25.9 17.2 41.5c0 15.8-6.4 30.9-17.7 42L33.3 335.1C22.2 345.9 16 360.7 16 376.2c0 36.8 34.1 64.2 70.1 56.2l62.3-13.8c7.7-1.7 15.7-2.6 23.6-2.6h10c27.2 0 53.7 9.3 75 26.3L287.8 467c10.5 8.4 23.6 13 37 13c32.7 0 59.3-26.5 59.3-59.3l0-25.2c0-34.9 21.4-66.2 53.9-78.8l36.9-14.3c22.4-8.7 37.2-30.3 37.2-54.3c0-28.1-20.1-52.3-47.8-57.3l-28-5.1c-36.5-6.7-65.4-34.5-73.6-70.7l-7.1-31.5C348.9 53.4 322.1 32 291.3 32c-22 0-42.6 11-54.8 29.4zM160 192a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm0 80a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "display": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Screen", + "computer", + "desktop", + "imac" + ] + }, + "unicode": "e163", + "label": "Display", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V352c0 35.3 28.7 64 64 64H240l-10.7 32H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H346.7L336 416H512c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM512 64V352H64V64H512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "divide": { + "aliases": { + "unicodes": { + "composite": [ + "2797", + "f7" + ], + "secondary": [ + "10f529" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Division Sign", + "arithmetic", + "calculus", + "divide", + "division", + "math", + "sign", + "÷" + ] + }, + "unicode": "f529", + "label": "Divide", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M256 96a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm0 320a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM384 288c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dna": { + "aliases": { + "unicodes": { + "composite": [ + "1f9ec" + ], + "secondary": [ + "10f471" + ] + } + }, + "changes": [ + "5.0.7", + "5.0.10", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "biologist", + "dna", + "double helix", + "evolution", + "gene", + "genetic", + "genetics", + "helix", + "life", + "molecule", + "protein" + ] + }, + "unicode": "f471", + "label": "Dna", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M416 0c17.7 0 32 14.3 32 32c0 59.8-30.3 107.5-69.4 146.6c-28 28-62.5 53.5-97.3 77.4l-2.5 1.7c-11.9 8.1-23.8 16.1-35.5 23.9l0 0 0 0 0 0-1.6 1c-6 4-11.9 7.9-17.8 11.9c-20.9 14-40.8 27.7-59.3 41.5H283.3c-9.8-7.4-20.1-14.7-30.7-22.1l7-4.7 3-2c15.1-10.1 30.9-20.6 46.7-31.6c25 18.1 48.9 37.3 69.4 57.7C417.7 372.5 448 420.2 448 480c0 17.7-14.3 32-32 32s-32-14.3-32-32H64c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-59.8 30.3-107.5 69.4-146.6c28-28 62.5-53.5 97.3-77.4c-34.8-23.9-69.3-49.3-97.3-77.4C30.3 139.5 0 91.8 0 32C0 14.3 14.3 0 32 0S64 14.3 64 32H384c0-17.7 14.3-32 32-32zM338.6 384H109.4c-10.1 10.6-18.6 21.3-25.5 32H364.1c-6.8-10.7-15.3-21.4-25.5-32zM109.4 128H338.6c10.1-10.7 18.6-21.3 25.5-32H83.9c6.8 10.7 15.3 21.3 25.5 32zm55.4 48c18.4 13.8 38.4 27.5 59.3 41.5c20.9-14 40.8-27.7 59.3-41.5H164.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dochub": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f394", + "label": "DocHub", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 416, + 512 + ], + "width": 416, + "height": 512, + "path": "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "docker": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f395", + "label": "Docker", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dog": { + "aliases": { + "unicodes": { + "composite": [ + "1f415" + ], + "secondary": [ + "10f6d3" + ] + } + }, + "changes": [ + "5.4.0", + "5.12.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "canine", + "dog", + "fauna", + "mammal", + "pet", + "pooch", + "puppy", + "woof" + ] + }, + "unicode": "f6d3", + "label": "Dog", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M309.6 158.5L332.7 19.8C334.6 8.4 344.5 0 356.1 0c7.5 0 14.5 3.5 19 9.5L392 32h52.1c12.7 0 24.9 5.1 33.9 14.1L496 64h56c13.3 0 24 10.7 24 24v24c0 44.2-35.8 80-80 80H464 448 426.7l-5.1 30.5-112-64zM416 256.1L416 480c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V364.8c-24 12.3-51.2 19.2-80 19.2s-56-6.9-80-19.2V480c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V249.8c-28.8-10.9-51.4-35.3-59.2-66.5L1 167.8c-4.3-17.1 6.1-34.5 23.3-38.8s34.5 6.1 38.8 23.3l3.9 15.5C70.5 182 83.3 192 98 192h30 16H303.8L416 256.1zM464 80a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dollar-sign": { + "aliases": { + "names": [ + "dollar", + "usd" + ], + "unicodes": { + "composite": [ + "1f4b2", + "f155" + ], + "primary": [ + "f155" + ], + "secondary": [ + "1024", + "10f155" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.0.9", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dollar Sign", + "currency", + "dollar", + "heavy dollar sign", + "money" + ] + }, + "unicode": "24", + "label": "Dollar Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M146 0c17.7 0 32 14.3 32 32V67.7c1.6 .2 3.1 .4 4.7 .7c.4 .1 .7 .1 1.1 .2l48 8.8c17.4 3.2 28.9 19.9 25.7 37.2s-19.9 28.9-37.2 25.7l-47.5-8.7c-31.3-4.6-58.9-1.5-78.3 6.2s-27.2 18.3-29 28.1c-2 10.7-.5 16.7 1.2 20.4c1.8 3.9 5.5 8.3 12.8 13.2c16.3 10.7 41.3 17.7 73.7 26.3l2.9 .8c28.6 7.6 63.6 16.8 89.6 33.8c14.2 9.3 27.6 21.9 35.9 39.5c8.5 17.9 10.3 37.9 6.4 59.2c-6.9 38-33.1 63.4-65.6 76.7c-13.7 5.6-28.6 9.2-44.4 11V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.1c-.4-.1-.9-.1-1.3-.2l-.2 0 0 0c-24.4-3.8-64.5-14.3-91.5-26.3C4.9 411.4-2.4 392.5 4.8 376.3s26.1-23.4 42.2-16.2c20.9 9.3 55.3 18.5 75.2 21.6c31.9 4.7 58.2 2 76-5.3c16.9-6.9 24.6-16.9 26.8-28.9c1.9-10.6 .4-16.7-1.3-20.4c-1.9-4-5.6-8.4-13-13.3c-16.4-10.7-41.5-17.7-74-26.3l-2.8-.7 0 0C105.4 279.3 70.4 270 44.4 253c-14.2-9.3-27.5-22-35.8-39.6C.3 195.4-1.4 175.4 2.5 154.1C9.7 116 38.3 91.2 70.8 78.3c13.3-5.3 27.9-8.9 43.2-11V32c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dolly": { + "aliases": { + "names": [ + "dolly-box" + ], + "unicodes": { + "secondary": [ + "10f472" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "shipping", + "transport" + ] + }, + "unicode": "f472", + "label": "Dolly", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0h72.9c27.5 0 52 17.6 60.7 43.8L257.7 320c30.1 .5 56.8 14.9 74 37l202.1-67.4c16.8-5.6 34.9 3.5 40.5 20.2s-3.5 34.9-20.2 40.5L352 417.7c-.9 52.2-43.5 94.3-96 94.3c-53 0-96-43-96-96c0-30.8 14.5-58.2 37-75.8L104.9 64H32C14.3 64 0 49.7 0 32zM244.8 134.5c-5.5-16.8 3.7-34.9 20.5-40.3L311 79.4l19.8 60.9 60.9-19.8L371.8 59.6l45.7-14.8c16.8-5.5 34.9 3.7 40.3 20.5l49.4 152.2c5.5 16.8-3.7 34.9-20.5 40.3L334.5 307.2c-16.8 5.5-34.9-3.7-40.3-20.5L244.8 134.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dong-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dong Sign", + "currency" + ] + }, + "unicode": "e169", + "label": "Dong Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M288 32c-17.7 0-32 14.3-32 32l-32 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v49.1c-18.8-10.9-40.7-17.1-64-17.1c-70.7 0-128 57.3-128 128s57.3 128 128 128c24.5 0 47.4-6.9 66.8-18.8c5 11.1 16.2 18.8 29.2 18.8c17.7 0 32-14.3 32-32V288 128c17.7 0 32-14.3 32-32s-14.3-32-32-32c0-17.7-14.3-32-32-32zM128 288a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM32 448c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "door-closed": { + "aliases": { + "unicodes": { + "composite": [ + "1f6aa" + ], + "secondary": [ + "10f52a" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "doo", + "door", + "enter", + "exit", + "locked" + ] + }, + "unicode": "f52a", + "label": "Door Closed", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 64c0-35.3 28.7-64 64-64H416c35.3 0 64 28.7 64 64V448h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H432 144 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96V64zM384 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "door-open": { + "aliases": { + "unicodes": { + "secondary": [ + "10f52b" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "enter", + "exit", + "welcome" + ] + }, + "unicode": "f52b", + "label": "Door Open", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M320 32c0-9.9-4.5-19.2-12.3-25.2S289.8-1.4 280.2 1l-179.9 45C79 51.3 64 70.5 64 92.5V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H96 288h32V480 32zM256 256c0 17.7-10.7 32-24 32s-24-14.3-24-32s10.7-32 24-32s24 14.3 24 32zm96-128h96V480c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H512V128c0-35.3-28.7-64-64-64H352v64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dove": { + "aliases": { + "unicodes": { + "composite": [ + "1f54a" + ], + "secondary": [ + "10f4ba" + ] + } + }, + "changes": [ + "5.0.9", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "dove", + "fauna", + "fly", + "flying", + "peace", + "war" + ] + }, + "unicode": "f4ba", + "label": "Dove", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160.8 96.5c14 17 31 30.9 49.5 42.2c25.9 15.8 53.7 25.9 77.7 31.6V138.8C265.8 108.5 250 71.5 248.6 28c-.4-11.3-7.5-21.5-18.4-24.4c-7.6-2-15.8-.2-21 5.8c-13.3 15.4-32.7 44.6-48.4 87.2zM320 144v30.6l0 0v1.3l0 0 0 32.1c-60.8-5.1-185-43.8-219.3-157.2C97.4 40 87.9 32 76.6 32c-7.9 0-15.3 3.9-18.8 11C46.8 65.9 32 112.1 32 176c0 116.9 80.1 180.5 118.4 202.8L11.8 416.6C6.7 418 2.6 421.8 .9 426.8s-.8 10.6 2.3 14.8C21.7 466.2 77.3 512 160 512c3.6 0 7.2-1.2 10-3.5L245.6 448H320c88.4 0 160-71.6 160-160V128l29.9-44.9c1.3-2 2.1-4.4 2.1-6.8c0-6.8-5.5-12.3-12.3-12.3H400c-44.2 0-80 35.8-80 80zm80-16a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "down-left-and-up-right-to-center": { + "aliases": { + "names": [ + "compress-alt" + ], + "unicodes": { + "secondary": [ + "10f422" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "fullscreen", + "minimize", + "move", + "resize", + "shrink", + "smaller" + ] + }, + "unicode": "f422", + "label": "Down Left And Up Right To Center", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M439 7c9.4-9.4 24.6-9.4 33.9 0l32 32c9.4 9.4 9.4 24.6 0 33.9l-87 87 39 39c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8H296c-13.3 0-24-10.7-24-24V72c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l39 39L439 7zM72 272H216c13.3 0 24 10.7 24 24V440c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39L73 505c-9.4 9.4-24.6 9.4-33.9 0L7 473c-9.4-9.4-9.4-24.6 0-33.9l87-87L55 313c-6.9-6.9-8.9-17.2-5.2-26.2s12.5-14.8 22.2-14.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "down-long": { + "aliases": { + "names": [ + "long-arrow-alt-down" + ], + "unicodes": { + "secondary": [ + "10f309" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "long-arrow-down" + ] + }, + "unicode": "f309", + "label": "Down Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M2 334.5c-3.8 8.8-2 19 4.6 26l136 144c4.5 4.8 10.8 7.5 17.4 7.5s12.9-2.7 17.4-7.5l136-144c6.6-7 8.4-17.2 4.6-26s-12.5-14.5-22-14.5l-72 0 0-288c0-17.7-14.3-32-32-32L128 0C110.3 0 96 14.3 96 32l0 288-72 0c-9.6 0-18.2 5.7-22 14.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "download": { + "aliases": { + "unicodes": { + "secondary": [ + "10f019" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "export", + "hard drive", + "save", + "transfer" + ] + }, + "unicode": "f019", + "label": "Download", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V274.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7V32zM64 352c-35.3 0-64 28.7-64 64v32c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V416c0-35.3-28.7-64-64-64H346.5l-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352H64zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "draft2digital": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f396", + "label": "Draft2digital", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 480, + 512 + ], + "width": 480, + "height": 512, + "path": "M480 398.1l-144-82.2v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480zM369.9 371l47.1 27.2-47.1 27.2zM134.2 161.4c0 12.4-10 22.4-22.4 22.4s-22.4-10-22.4-22.4 10-22.4 22.4-22.4 22.4 10.1 22.4 22.4zM82.5 380.5c25.6-27.4 97.7-104.7 150.8-169.9 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dragon": { + "aliases": { + "unicodes": { + "composite": [ + "1f409" + ], + "secondary": [ + "10f6d5" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "dragon", + "fairy tale", + "fantasy", + "fire", + "lizard", + "serpent" + ] + }, + "unicode": "f6d5", + "label": "Dragon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M352 124.5l-51.9-13c-6.5-1.6-11.3-7.1-12-13.8s2.8-13.1 8.7-16.1l40.8-20.4L294.4 28.8c-5.5-4.1-7.8-11.3-5.6-17.9S297.1 0 304 0H416h32 16c30.2 0 58.7 14.2 76.8 38.4l57.6 76.8c6.2 8.3 9.6 18.4 9.6 28.8c0 26.5-21.5 48-48 48H538.5c-17 0-33.3-6.7-45.3-18.7L480 160H448v21.5c0 24.8 12.8 47.9 33.8 61.1l106.6 66.6c32.1 20.1 51.6 55.2 51.6 93.1C640 462.9 590.9 512 530.2 512H496 432 32.3c-3.3 0-6.6-.4-9.6-1.4C13.5 507.8 6 501 2.4 492.1C1 488.7 .2 485.2 0 481.4c-.2-3.7 .3-7.3 1.3-10.7c2.8-9.2 9.6-16.7 18.6-20.4c3-1.2 6.2-2 9.5-2.2L433.3 412c8.3-.7 14.7-7.7 14.7-16.1c0-4.3-1.7-8.4-4.7-11.4l-44.4-44.4c-30-30-46.9-70.7-46.9-113.1V181.5v-57zM512 72.3c0-.1 0-.2 0-.3s0-.2 0-.3v.6zm-1.3 7.4L464.3 68.1c-.2 1.3-.3 2.6-.3 3.9c0 13.3 10.7 24 24 24c10.6 0 19.5-6.8 22.7-16.3zM130.9 116.5c16.3-14.5 40.4-16.2 58.5-4.1l130.6 87V227c0 32.8 8.4 64.8 24 93H112c-6.7 0-12.7-4.2-15-10.4s-.5-13.3 4.6-17.7L171 232.3 18.4 255.8c-7 1.1-13.9-2.6-16.9-9s-1.5-14.1 3.8-18.8L130.9 116.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "draw-polygon": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5ee" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchors", + "lines", + "object", + "render", + "shape" + ] + }, + "unicode": "f5ee", + "label": "Draw Polygon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 151.4V360.6c9.7 5.6 17.8 13.7 23.4 23.4H328.6c0-.1 .1-.2 .1-.3l-4.5-7.9-32-56 0 0c-1.4 .1-2.8 .1-4.2 .1c-35.3 0-64-28.7-64-64s28.7-64 64-64c1.4 0 2.8 0 4.2 .1l0 0 32-56 4.5-7.9-.1-.3H119.4c-5.6 9.7-13.7 17.8-23.4 23.4zM384.3 352c35.2 .2 63.7 28.7 63.7 64c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H119.4c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V151.4C12.9 140.4 0 119.7 0 96C0 60.7 28.7 32 64 32c23.7 0 44.4 12.9 55.4 32H328.6c11.1-19.1 31.7-32 55.4-32c35.3 0 64 28.7 64 64c0 35.3-28.5 63.8-63.7 64l-4.5 7.9-32 56-2.3 4c4.2 8.5 6.5 18 6.5 28.1s-2.3 19.6-6.5 28.1l2.3 4 32 56 4.5 7.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dribbble": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f17d", + "label": "Dribbble", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dropbox": { + "changes": [ + "3.2.0", + "5.0.0", + "5.0.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f16b", + "label": "Dropbox", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 528, + 512 + ], + "width": 528, + "height": 512, + "path": "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "droplet": { + "aliases": { + "names": [ + "tint" + ], + "unicodes": { + "composite": [ + "1f4a7" + ], + "secondary": [ + "10f043" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "color", + "comic", + "drop", + "droplet", + "raindrop", + "sweat", + "waterdrop" + ] + }, + "unicode": "f043", + "label": "Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 512C86 512 0 426 0 320C0 228.8 130.2 57.7 166.6 11.7C172.6 4.2 181.5 0 191.1 0h1.8c9.6 0 18.5 4.2 24.5 11.7C253.8 57.7 384 228.8 384 320c0 106-86 192-192 192zM96 336c0-8.8-7.2-16-16-16s-16 7.2-16 16c0 61.9 50.1 112 112 112c8.8 0 16-7.2 16-16s-7.2-16-16-16c-44.2 0-80-35.8-80-80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "droplet-slash": { + "aliases": { + "names": [ + "tint-slash" + ], + "unicodes": { + "secondary": [ + "10f5c7" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "color", + "drop", + "droplet", + "raindrop", + "waterdrop" + ] + }, + "unicode": "f5c7", + "label": "Droplet Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 512c53.2 0 101.4-21.6 136.1-56.6l-298.3-235C140 257.1 128 292.3 128 320c0 106 86 192 192 192zM505.2 370.7c4.4-16.1 6.8-33.1 6.8-50.7c0-91.2-130.2-262.3-166.6-308.3C339.4 4.2 330.5 0 320.9 0h-1.8c-9.6 0-18.5 4.2-24.5 11.7C277.8 33 240.7 81.3 205.8 136L38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L505.2 370.7zM224 336c0 44.2 35.8 80 80 80c8.8 0 16 7.2 16 16s-7.2 16-16 16c-61.9 0-112-50.1-112-112c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "drum": { + "aliases": { + "unicodes": { + "composite": [ + "1f941" + ], + "secondary": [ + "10f569" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drum", + "drumsticks", + "instrument", + "music", + "percussion", + "snare", + "sound" + ] + }, + "unicode": "f569", + "label": "Drum", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M501.2 76.1c11.1-7.3 14.2-22.1 6.9-33.2s-22.1-14.2-33.2-6.9L370.2 104.5C335.8 98.7 297 96 256 96C114.6 96 0 128 0 208V368c0 31.3 27.4 58.8 72 78.7V344c0-13.3 10.7-24 24-24s24 10.7 24 24V463.4c33 8.9 71.1 14.5 112 16.1V376c0-13.3 10.7-24 24-24s24 10.7 24 24V479.5c40.9-1.6 79-7.2 112-16.1V344c0-13.3 10.7-24 24-24s24 10.7 24 24V446.7c44.6-19.9 72-47.4 72-78.7V208c0-41.1-30.2-69.5-78.8-87.4l67.9-44.5zM307.4 145.6l-64.6 42.3c-11.1 7.3-14.2 22.1-6.9 33.2s22.1 14.2 33.2 6.9l111.1-72.8c14.7 3.2 27.9 7 39.4 11.5C458.4 181.8 464 197.4 464 208c0 .8-2.7 17.2-46 35.9C379.1 260.7 322 272 256 272s-123.1-11.3-162-28.1C50.7 225.2 48 208.8 48 208c0-10.6 5.6-26.2 44.4-41.3C130.6 151.9 187.8 144 256 144c18 0 35.1 .5 51.4 1.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "drum-steelpan": { + "aliases": { + "unicodes": { + "secondary": [ + "10f56a" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calypso", + "instrument", + "music", + "percussion", + "reggae", + "snare", + "sound", + "steel", + "tropical" + ] + }, + "unicode": "f56a", + "label": "Drum Steelpan", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 32c159.1 0 288 48 288 128V352c0 80-128.9 128-288 128S0 432 0 352V160C0 80 128.9 32 288 32zM528 160c0-9.9-8-29.9-55-49.8c-18.6-7.9-40.9-14.4-66-19.4l-27.8 43.6c-7.3 11.5-11.2 24.8-11.2 38.4c0 17.5 6.4 34.4 18.1 47.5l9.8 11c29.8-5.2 55.9-12.5 77.2-21.5c47.1-19.9 55-39.9 55-49.8zM349.2 237.3c-8-26.2-32.4-45.3-61.2-45.3s-53.3 19.1-61.2 45.3c19.4 1.7 39.9 2.7 61.2 2.7s41.8-.9 61.2-2.7zM169 90.8c-25.2 5-47.4 11.6-66 19.4C56 130.1 48 150.1 48 160s8 29.9 55 49.8c21.3 9 47.4 16.3 77.2 21.5l9.8-11c11.6-13.1 18.1-30 18.1-47.5c0-13.6-3.9-26.9-11.2-38.4L169 90.8zm56.3-8C224.5 87 224 91.5 224 96c0 35.3 28.7 64 64 64s64-28.7 64-64c0-4.5-.5-9-1.4-13.2C330.8 81 309.8 80 288 80s-42.8 1-62.6 2.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "drumstick-bite": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6d7" + ] + } + }, + "changes": [ + "5.4.0", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bone", + "chicken", + "leg", + "meat", + "poultry", + "turkey" + ] + }, + "unicode": "f6d7", + "label": "Drumstick Bite", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 265.2c0 8.5-3.4 16.6-9.4 22.6l-26.8 26.8c-12.3 12.3-32.5 11.4-49.4 7.2C69.8 320.6 65 320 60 320c-33.1 0-60 26.9-60 60s26.9 60 60 60c6.3 0 12 5.7 12 12c0 33.1 26.9 60 60 60s60-26.9 60-60c0-5-.6-9.8-1.8-14.5c-4.2-16.9-5.2-37.1 7.2-49.4l26.8-26.8c6-6 14.1-9.4 22.6-9.4H336c6.3 0 12.4-.3 18.5-1c11.9-1.2 16.4-15.5 10.8-26c-8.5-15.8-13.3-33.8-13.3-53c0-61.9 50.1-112 112-112c8 0 15.7 .8 23.2 2.4c11.7 2.5 24.1-5.9 22-17.6C494.5 62.5 422.5 0 336 0C238.8 0 160 78.8 160 176v89.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "drupal": { + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a9", + "label": "Drupal Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M303.973,108.136C268.2,72.459,234.187,38.35,224.047,0c-9.957,38.35-44.25,72.459-80.019,108.136C90.467,161.7,29.716,222.356,29.716,313.436c-2.337,107.3,82.752,196.18,190.053,198.517S415.948,429.2,418.285,321.9q.091-4.231,0-8.464C418.285,222.356,357.534,161.7,303.973,108.136Zm-174.326,223a130.282,130.282,0,0,0-15.211,24.153,4.978,4.978,0,0,1-3.319,2.766h-1.659c-4.333,0-9.219-8.481-9.219-8.481h0c-1.29-2.028-2.489-4.149-3.687-6.361l-.83-1.752c-11.247-25.72-1.475-62.318-1.475-62.318h0a160.585,160.585,0,0,1,23.231-49.873A290.8,290.8,0,0,1,138.5,201.613l9.219,9.219,43.512,44.434a4.979,4.979,0,0,1,0,6.638L145.78,312.33h0Zm96.612,127.311a67.2,67.2,0,0,1-49.781-111.915c14.2-16.871,31.528-33.464,50.334-55.313,22.309,23.785,36.875,40.1,51.164,57.986a28.413,28.413,0,0,1,2.95,4.425,65.905,65.905,0,0,1,11.984,37.981,66.651,66.651,0,0,1-66.466,66.836ZM352.371,351.6h0a7.743,7.743,0,0,1-6.176,5.347H344.9a11.249,11.249,0,0,1-6.269-5.07h0a348.21,348.21,0,0,0-39.456-48.952L281.387,284.49,222.3,223.185a497.888,497.888,0,0,1-35.4-36.322,12.033,12.033,0,0,0-.922-1.382,35.4,35.4,0,0,1-4.7-9.219V174.51a31.346,31.346,0,0,1,9.218-27.656c11.432-11.431,22.955-22.954,33.833-34.939,11.984,13.275,24.8,26,37.428,38.627h0a530.991,530.991,0,0,1,69.6,79.1,147.494,147.494,0,0,1,27.011,83.8A134.109,134.109,0,0,1,352.371,351.6Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "dumbbell": { + "aliases": { + "unicodes": { + "secondary": [ + "10f44b" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exercise", + "gym", + "strength", + "weight", + "weight-lifting" + ] + }, + "unicode": "f44b", + "label": "Dumbbell", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321812, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M112 96c0-17.7 14.3-32 32-32h16c17.7 0 32 14.3 32 32V224v64V416c0 17.7-14.3 32-32 32H144c-17.7 0-32-14.3-32-32V384H64c-17.7 0-32-14.3-32-32V288c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32h48V96zm416 0v32h48c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32v64c0 17.7-14.3 32-32 32H528v32c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32V288 224 96c0-17.7 14.3-32 32-32h16c17.7 0 32 14.3 32 32zM416 224v64H224V224H416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dumpster": { + "aliases": { + "unicodes": { + "secondary": [ + "10f793" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alley", + "bin", + "commercial", + "trash", + "waste" + ] + }, + "unicode": "f793", + "label": "Dumpster", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M49.7 32c-10.5 0-19.8 6.9-22.9 16.9L.9 133c-.6 2-.9 4.1-.9 6.1C0 150.7 9.3 160 20.9 160h94L140.5 32H49.7zM272 160V32H173.1L147.5 160H272zm32 0H428.5L402.9 32H304V160zm157.1 0h94c11.5 0 20.9-9.3 20.9-20.9c0-2.1-.3-4.1-.9-6.1L549.2 48.9C546.1 38.9 536.8 32 526.3 32H435.5l25.6 128zM32 192l4 32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H44L64 448c0 17.7 14.3 32 32 32s32-14.3 32-32H448c0 17.7 14.3 32 32 32s32-14.3 32-32l20-160h12c17.7 0 32-14.3 32-32s-14.3-32-32-32h-4l4-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dumpster-fire": { + "aliases": { + "unicodes": { + "secondary": [ + "10f794" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alley", + "bin", + "commercial", + "danger", + "dangerous", + "euphemism", + "flame", + "heat", + "hot", + "trash", + "waste" + ] + }, + "unicode": "f794", + "label": "Dumpster Fire", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M49.7 32c-10.5 0-19.8 6.9-22.9 16.9L.9 133c-.6 2-.9 4.1-.9 6.1C0 150.7 9.3 160 20.9 160h94L140.5 32H49.7zM272 160V32H173.1L147.5 160H272zm32 0h58c15.1-18.1 32.1-35.7 50.5-52.1c1.5-1.4 3.2-2.6 4.8-3.8L402.9 32H304V160zm209.9-23.7c17.4-15.8 43.9-16.2 61.7-1.2c-.1-.7-.3-1.4-.5-2.1L549.2 48.9C546.1 38.9 536.8 32 526.3 32H435.5l12.8 64.2c9.6 1 19 4.9 26.6 11.8c11.7 10.6 23 21.6 33.9 33.1c1.6-1.6 3.3-3.2 5-4.8zM325.2 210.7c3.8-6.2 7.9-12.5 12.3-18.7H32l4 32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H44L64 448c0 17.7 14.3 32 32 32s32-14.3 32-32H337.6c-31-34.7-49.6-80.6-49.6-129.9c0-35.2 16.3-73.6 37.2-107.4zm128.4-78.9c-2.8-2.5-6.3-3.7-9.8-3.8c-3.6 0-7.2 1.2-10 3.7c-33.2 29.7-61.4 63.4-81.4 95.8c-19.7 31.9-32.4 66.2-32.4 92.6C320 407.9 390.3 480 480 480c88.7 0 160-72 160-159.8c0-20.2-9.6-50.9-24.2-79c-14.8-28.5-35.7-58.5-60.4-81.1c-5.6-5.1-14.4-5.2-20 0c-9.6 8.8-18.6 19.6-26.5 29.5c-17.3-20.7-35.8-39.9-55.5-57.7zM530 401c-15 10-31 15-49 15c-45 0-81-29-81-78c0-24 15-45 45-82c4 5 62 79 62 79l36-42c3 4 5 8 7 12c18 33 10 75-20 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dungeon": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6d9" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "building", + "d&d", + "dnd", + "door", + "entrance", + "fantasy", + "gate" + ] + }, + "unicode": "f6d9", + "label": "Dungeon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M336.6 156.5c1.3 1.1 2.7 2.2 3.9 3.3c9.3 8.2 23 10.5 33.4 3.6l67.6-45.1c11.4-7.6 14.2-23.2 5.1-33.4C430 66.6 410.9 50.6 389.7 37.6c-11.9-7.3-26.9-1.4-32.1 11.6l-30.5 76.2c-4.5 11.1 .2 23.6 9.5 31.2zM328 36.8c5.1-12.8-1.6-27.4-15-30.5C294.7 2.2 275.6 0 256 0s-38.7 2.2-57 6.4C185.5 9.4 178.8 24 184 36.8l30.3 75.8c4.5 11.3 16.8 17.2 29 16c4.2-.4 8.4-.6 12.7-.6s8.6 .2 12.7 .6c12.1 1.2 24.4-4.7 29-16L328 36.8zM65.5 85c-9.1 10.2-6.3 25.8 5.1 33.4l67.6 45.1c10.3 6.9 24.1 4.6 33.4-3.6c1.3-1.1 2.6-2.3 4-3.3c9.3-7.5 13.9-20.1 9.5-31.2L154.4 49.2c-5.2-12.9-20.3-18.8-32.1-11.6C101.1 50.6 82 66.6 65.5 85zm314 137.1c.9 3.3 1.7 6.6 2.3 10c2.5 13 13 23.9 26.2 23.9h80c13.3 0 24.1-10.8 22.9-24c-2.5-27.2-9.3-53.2-19.7-77.3c-5.5-12.9-21.4-16.6-33.1-8.9l-68.6 45.7c-9.8 6.5-13.2 19.2-10 30.5zM53.9 145.8c-11.6-7.8-27.6-4-33.1 8.9C10.4 178.8 3.6 204.8 1.1 232c-1.2 13.2 9.6 24 22.9 24h80c13.3 0 23.8-10.8 26.2-23.9c.6-3.4 1.4-6.7 2.3-10c3.1-11.4-.2-24-10-30.5L53.9 145.8zM104 288H24c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V312c0-13.3-10.7-24-24-24zm304 0c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V312c0-13.3-10.7-24-24-24H408zM24 416c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V440c0-13.3-10.7-24-24-24H24zm384 0c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V440c0-13.3-10.7-24-24-24H408zM272 192c0-8.8-7.2-16-16-16s-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V192zm-64 32c0-8.8-7.2-16-16-16s-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V224zm128 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "dyalog": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f399", + "label": "Dyalog", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 416, + 512 + ], + "width": 416, + "height": 512, + "path": "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "e": { + "aliases": { + "unicodes": { + "composite": [ + "65" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter E", + "Latin Small Letter E", + "letter" + ] + }, + "unicode": "45", + "label": "E", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V256 416c0 35.3 28.7 64 64 64H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ear-deaf": { + "aliases": { + "names": [ + "deaf", + "deafness", + "hard-of-hearing" + ], + "unicodes": { + "secondary": [ + "10f2a4" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ear", + "hearing", + "sign language" + ] + }, + "unicode": "f2a4", + "label": "Ear Deaf", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.6 54.6l-40 40c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l40-40c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3zm-320 320l-128 128c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l128-128c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3zM240 128c-57.6 0-105.1 43.6-111.3 99.5c-1.9 17.6-17.8 30.2-35.3 28.3s-30.2-17.8-28.3-35.3C74.8 132.5 149.4 64 240 64c97.2 0 176 78.8 176 176c0 46-17.7 87.9-46.6 119.3c-12 13-17.4 24.8-17.4 34.7V400c0 61.9-50.1 112-112 112c-17.7 0-32-14.3-32-32s14.3-32 32-32c26.5 0 48-21.5 48-48v-6.1c0-32.9 17.4-59.6 34.4-78c18.4-20 29.6-46.6 29.6-75.9c0-61.9-50.1-112-112-112zm0 80c-17.7 0-32 14.3-32 32c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-44.2 35.8-80 80-80s80 35.8 80 80c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-17.7-14.3-32-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ear-listen": { + "aliases": { + "names": [ + "assistive-listening-systems" + ], + "unicodes": { + "secondary": [ + "10f2a2" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "amplify", + "audio", + "deaf", + "ear", + "headset", + "hearing", + "sound" + ] + }, + "unicode": "f2a2", + "label": "Ear Listen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M398.3 3.4c-15.8-7.9-35-1.5-42.9 14.3c-7.9 15.8-1.5 34.9 14.2 42.9l.4 .2c.4 .2 1.1 .6 2.1 1.2c2 1.2 5 3 8.7 5.6c7.5 5.2 17.6 13.2 27.7 24.2C428.5 113.4 448 146 448 192c0 17.7 14.3 32 32 32s32-14.3 32-32c0-66-28.5-113.4-56.5-143.7C441.6 33.2 427.7 22.2 417.3 15c-5.3-3.7-9.7-6.4-13-8.3c-1.6-1-3-1.7-4-2.2c-.5-.3-.9-.5-1.2-.7l-.4-.2-.2-.1-.1 0 0 0c0 0 0 0-14.3 28.6L398.3 3.4zM128.7 227.5c6.2-56 53.7-99.5 111.3-99.5c61.9 0 112 50.1 112 112c0 29.3-11.2 55.9-29.6 75.9c-17 18.4-34.4 45.1-34.4 78V400c0 26.5-21.5 48-48 48c-17.7 0-32 14.3-32 32s14.3 32 32 32c61.9 0 112-50.1 112-112v-6.1c0-9.8 5.4-21.7 17.4-34.7C398.3 327.9 416 286 416 240c0-97.2-78.8-176-176-176C149.4 64 74.8 132.5 65.1 220.5c-1.9 17.6 10.7 33.4 28.3 35.3s33.4-10.7 35.3-28.3zM32 512a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM192 352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-64-64c-12.5-12.5-32.8-12.5-45.3 0zM208 240c0-17.7 14.3-32 32-32s32 14.3 32 32c0 13.3 10.7 24 24 24s24-10.7 24-24c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 13.3 10.7 24 24 24s24-10.7 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "earlybirds": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f39a", + "label": "Earlybirds", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 480, + 512 + ], + "width": 480, + "height": 512, + "path": "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "earth-africa": { + "aliases": { + "names": [ + "globe-africa" + ], + "unicodes": { + "composite": [ + "1f30d" + ], + "secondary": [ + "10f57c" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "africa", + "all", + "country", + "earth", + "europe", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "unicode": "f57c", + "label": "Earth Africa", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M177.8 63.2l10 17.4c2.8 4.8 4.2 10.3 4.2 15.9v41.4c0 3.9 1.6 7.7 4.3 10.4c6.2 6.2 16.5 5.7 22-1.2l13.6-17c4.7-5.9 12.9-7.7 19.6-4.3l15.2 7.6c3.4 1.7 7.2 2.6 11 2.6c6.5 0 12.8-2.6 17.4-7.2l3.9-3.9c2.9-2.9 7.3-3.6 11-1.8l29.2 14.6c7.8 3.9 12.6 11.8 12.6 20.5c0 10.5-7.1 19.6-17.3 22.2l-35.4 8.8c-7.4 1.8-15.1 1.5-22.3-.9l-32-10.7c-3.3-1.1-6.7-1.7-10.2-1.7c-7 0-13.8 2.3-19.4 6.5L176 212c-10.1 7.6-16 19.4-16 32v28c0 26.5 21.5 48 48 48h32c8.8 0 16 7.2 16 16v48c0 17.7 14.3 32 32 32c10.1 0 19.6-4.7 25.6-12.8l25.6-34.1c8.3-11.1 12.8-24.6 12.8-38.4V318.6c0-3.9 2.6-7.3 6.4-8.2l5.3-1.3c11.9-3 20.3-13.7 20.3-26c0-7.1-2.8-13.9-7.8-18.9l-33.5-33.5c-3.7-3.7-3.7-9.7 0-13.4c5.7-5.7 14.1-7.7 21.8-5.1l14.1 4.7c12.3 4.1 25.7-1.5 31.5-13c3.5-7 11.2-10.8 18.9-9.2l27.4 5.5C432 112.4 351.5 48 256 48c-27.7 0-54 5.4-78.2 15.2zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "earth-americas": { + "aliases": { + "names": [ + "earth", + "earth-america", + "globe-americas" + ], + "unicodes": { + "composite": [ + "1f30e" + ], + "secondary": [ + "10f57d" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "america", + "country", + "earth", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "unicode": "f57d", + "label": "Earth Americas", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M57.7 193l9.4 16.4c8.3 14.5 21.9 25.2 38 29.8L163 255.7c17.2 4.9 29 20.6 29 38.5v39.9c0 11 6.2 21 16 25.9s16 14.9 16 25.9v39c0 15.6 14.9 26.9 29.9 22.6c16.1-4.6 28.6-17.5 32.7-33.8l2.8-11.2c4.2-16.9 15.2-31.4 30.3-40l8.1-4.6c15-8.5 24.2-24.5 24.2-41.7v-8.3c0-12.7-5.1-24.9-14.1-33.9l-3.9-3.9c-9-9-21.2-14.1-33.9-14.1H257c-11.1 0-22.1-2.9-31.8-8.4l-34.5-19.7c-4.3-2.5-7.6-6.5-9.2-11.2c-3.2-9.6 1.1-20 10.2-24.5l5.9-3c6.6-3.3 14.3-3.9 21.3-1.5l23.2 7.7c8.2 2.7 17.2-.4 21.9-7.5c4.7-7 4.2-16.3-1.2-22.8l-13.6-16.3c-10-12-9.9-29.5 .3-41.3l15.7-18.3c8.8-10.3 10.2-25 3.5-36.7l-2.4-4.2c-3.5-.2-6.9-.3-10.4-.3C163.1 48 84.4 108.9 57.7 193zM464 256c0-36.8-9.6-71.4-26.4-101.5L412 164.8c-15.7 6.3-23.8 23.8-18.5 39.8l16.9 50.7c3.5 10.4 12 18.3 22.6 20.9l29.1 7.3c1.2-9 1.8-18.2 1.8-27.5zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "earth-asia": { + "aliases": { + "names": [ + "globe-asia" + ], + "unicodes": { + "composite": [ + "1f30f" + ], + "secondary": [ + "10f57e" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "asia", + "australia", + "country", + "earth", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "unicode": "f57e", + "label": "Earth Asia", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M51.7 295.1l31.7 6.3c7.9 1.6 16-.9 21.7-6.6l15.4-15.4c11.6-11.6 31.1-8.4 38.4 6.2l9.3 18.5c4.8 9.6 14.6 15.7 25.4 15.7c15.2 0 26.1-14.6 21.7-29.2l-6-19.9c-4.6-15.4 6.9-30.9 23-30.9h2.3c13.4 0 25.9-6.7 33.3-17.8l10.7-16.1c5.6-8.5 5.3-19.6-.8-27.7l-16.1-21.5c-10.3-13.7-3.3-33.5 13.4-37.7l17-4.3c7.5-1.9 13.6-7.2 16.5-14.4l16.4-40.9C303.4 52.1 280.2 48 256 48C141.1 48 48 141.1 48 256c0 13.4 1.3 26.5 3.7 39.1zm407.7 4.6c-3-.3-6-.1-9 .8l-15.8 4.4c-6.7 1.9-13.8-.9-17.5-6.7l-2-3.1c-6-9.4-16.4-15.1-27.6-15.1s-21.6 5.7-27.6 15.1l-6.1 9.5c-1.4 2.2-3.4 4.1-5.7 5.3L312 330.1c-18.1 10.1-25.5 32.4-17 51.3l5.5 12.4c8.6 19.2 30.7 28.5 50.5 21.1l2.6-1c10-3.7 21.3-2.2 29.9 4.1l1.5 1.1c37.2-29.5 64.1-71.4 74.4-119.5zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm144.5 92.1c-2.1 8.6 3.1 17.3 11.6 19.4l32 8c8.6 2.1 17.3-3.1 19.4-11.6s-3.1-17.3-11.6-19.4l-32-8c-8.6-2.1-17.3 3.1-19.4 11.6zm92-20c-2.1 8.6 3.1 17.3 11.6 19.4s17.3-3.1 19.4-11.6l8-32c2.1-8.6-3.1-17.3-11.6-19.4s-17.3 3.1-19.4 11.6l-8 32zM343.2 113.7c-7.9-4-17.5-.7-21.5 7.2l-16 32c-4 7.9-.7 17.5 7.2 21.5s17.5 .7 21.5-7.2l16-32c4-7.9 .7-17.5-7.2-21.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "earth-europe": { + "aliases": { + "names": [ + "globe-europe" + ], + "unicodes": { + "secondary": [ + "10f7a2" + ] + } + }, + "changes": [ + "5.6.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "country", + "earth", + "europe", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "unicode": "f7a2", + "label": "Earth Europe", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M266.3 48.3L232.5 73.6c-5.4 4-8.5 10.4-8.5 17.1v9.1c0 6.8 5.5 12.3 12.3 12.3c2.4 0 4.8-.7 6.8-2.1l41.8-27.9c2-1.3 4.4-2.1 6.8-2.1h1c6.2 0 11.3 5.1 11.3 11.3c0 3-1.2 5.9-3.3 8l-19.9 19.9c-5.8 5.8-12.9 10.2-20.7 12.8l-26.5 8.8c-5.8 1.9-9.6 7.3-9.6 13.4c0 3.7-1.5 7.3-4.1 10l-17.9 17.9c-6.4 6.4-9.9 15-9.9 24v4.3c0 16.4 13.6 29.7 29.9 29.7c11 0 21.2-6.2 26.1-16l4-8.1c2.4-4.8 7.4-7.9 12.8-7.9c4.5 0 8.7 2.1 11.4 5.7l16.3 21.7c2.1 2.9 5.5 4.5 9.1 4.5c8.4 0 13.9-8.9 10.1-16.4l-1.1-2.3c-3.5-7 0-15.5 7.5-18l21.2-7.1c7.6-2.5 12.7-9.6 12.7-17.6c0-10.3 8.3-18.6 18.6-18.6H400c8.8 0 16 7.2 16 16s-7.2 16-16 16H379.3c-7.2 0-14.2 2.9-19.3 8l-4.7 4.7c-2.1 2.1-3.3 5-3.3 8c0 6.2 5.1 11.3 11.3 11.3h11.3c6 0 11.8 2.4 16 6.6l6.5 6.5c1.8 1.8 2.8 4.3 2.8 6.8s-1 5-2.8 6.8l-7.5 7.5C386 262 384 266.9 384 272s2 10 5.7 13.7L408 304c10.2 10.2 24.1 16 38.6 16H454c6.5-20.2 10-41.7 10-64c0-111.4-87.6-202.4-197.7-207.7zm172 307.9c-3.7-2.6-8.2-4.1-13-4.1c-6 0-11.8-2.4-16-6.6L396 332c-7.7-7.7-18-12-28.9-12c-9.7 0-19.2-3.5-26.6-9.8L314 287.4c-11.6-9.9-26.4-15.4-41.6-15.4H251.4c-12.6 0-25 3.7-35.5 10.7L188.5 301c-17.8 11.9-28.5 31.9-28.5 53.3v3.2c0 17 6.7 33.3 18.7 45.3l16 16c8.5 8.5 20 13.3 32 13.3H248c13.3 0 24 10.7 24 24c0 2.5 .4 5 1.1 7.3c71.3-5.8 132.5-47.6 165.2-107.2zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM187.3 100.7c-6.2-6.2-16.4-6.2-22.6 0l-32 32c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l32-32c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "earth-oceania": { + "aliases": { + "names": [ + "globe-oceania" + ] + }, + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "australia", + "country", + "earth", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "melanesia", + "micronesia", + "new zealand", + "online", + "place", + "planet", + "polynesia", + "translate", + "travel", + "world" + ] + }, + "unicode": "e47b", + "label": "Earth Oceania", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM208.6 357.3l-39-13.5c-6.5-2.2-13.6-2.3-20.1-.3l-15.3 4.9c-18.5 5.9-38.5-2.4-47.5-19.5l-3.3-6.2c-10.6-20.1-2.3-45 18.2-54.7l35.3-16.8c2.3-1.1 4.4-2.8 5.9-4.8l5.3-7c7.2-9.6 18.6-15.3 30.6-15.3s23.4 5.7 30.6 15.3l4.6 6.1c2 2.6 4.9 4.5 8.1 5.1c7.8 1.6 15.7-1.5 20.4-7.9l10.4-14.2c2-2.8 5.3-4.4 8.7-4.4c4.4 0 8.4 2.7 10 6.8l10.1 25.9c2.8 7.2 6.7 14 11.5 20.2L311 299.8c5.8 7.4 9 16.6 9 26s-3.2 18.6-9 26L299 367.2c-8.3 10.6-21 16.8-34.4 16.8c-8.4 0-16.6-2.4-23.7-7l-25.4-16.4c-2.2-1.4-4.5-2.5-6.9-3.4zm65.2-214.8L296 164.7c10.1 10.1 2.9 27.3-11.3 27.3H254.8c-5.6 0-11.1-1.2-16.2-3.4l-42.8-19c-14.3-6.3-11.9-27.3 3.4-30.3l38.5-7.7c13.1-2.6 26.7 1.5 36.1 10.9zM248 432c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H264c-8.8 0-16-7.2-16-16zM431.2 298.9l8 24c2.8 8.4-1.7 17.4-10.1 20.2s-17.4-1.7-20.2-10.1l-8-24c-2.8-8.4 1.7-17.4 10.1-20.2s17.4 1.7 20.2 10.1zm-19.9 80.4l-32 32c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l32-32c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ebay": { + "changes": [ + "5.0.11", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f4", + "label": "eBay", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M606 189.5l-54.8 109.9-54.9-109.9h-37.5l10.9 20.6c-11.5-19-35.9-26-63.3-26-31.8 0-67.9 8.7-71.5 43.1h33.7c1.4-13.8 15.7-21.8 35-21.8 26 0 41 9.6 41 33v3.4c-12.7 0-28 .1-41.7.4-42.4.9-69.6 10-76.7 34.4 1-5.2 1.5-10.6 1.5-16.2 0-52.1-39.7-76.2-75.4-76.2-21.3 0-43 5.5-58.7 24.2v-80.6h-32.1v169.5c0 10.3-.6 22.9-1.1 33.1h31.5c.7-6.3 1.1-12.9 1.1-19.5 13.6 16.6 35.4 24.9 58.7 24.9 36.9 0 64.9-21.9 73.3-54.2-.5 2.8-.7 5.8-.7 9 0 24.1 21.1 45 60.6 45 26.6 0 45.8-5.7 61.9-25.5 0 6.6.3 13.3 1.1 20.2h29.8c-.7-8.2-1-17.5-1-26.8v-65.6c0-9.3-1.7-17.2-4.8-23.8l61.5 116.1-28.5 54.1h35.9L640 189.5zM243.7 313.8c-29.6 0-50.2-21.5-50.2-53.8 0-32.4 20.6-53.8 50.2-53.8 29.8 0 50.2 21.4 50.2 53.8 0 32.3-20.4 53.8-50.2 53.8zm200.9-47.3c0 30-17.9 48.4-51.6 48.4-25.1 0-35-13.4-35-25.8 0-19.1 18.1-24.4 47.2-25.3 13.1-.5 27.6-.6 39.4-.6zm-411.9 1.6h128.8v-8.5c0-51.7-33.1-75.4-78.4-75.4-56.8 0-83 30.8-83 77.6 0 42.5 25.3 74 82.5 74 31.4 0 68-11.7 74.4-46.1h-33.1c-12 35.8-87.7 36.7-91.2-21.6zm95-21.4H33.3c6.9-56.6 92.1-54.7 94.4 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "edge": { + "changes": [ + "4.5.0", + "5.0.0", + "5.12.1", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "ie" + ] + }, + "unicode": "f282", + "label": "Edge Browser", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M120.1 37.44C161.1 12.23 207.7-.7753 255 .0016C423 .0016 512 123.8 512 219.5C511.9 252.2 499 283.4 476.1 306.7C453.2 329.9 422.1 343.2 389.4 343.7C314.2 343.7 297.9 320.6 297.9 311.7C297.9 307.9 299.1 305.5 302.7 302.3L303.7 301.1L304.1 299.5C314.6 288 320 273.3 320 257.9C320 179.2 237.8 115.2 136 115.2C98.46 114.9 61.46 124.1 28.48 142.1C55.48 84.58 111.2 44.5 119.8 38.28C120.6 37.73 120.1 37.44 120.1 37.44V37.44zM135.7 355.5C134.3 385.5 140.3 415.5 152.1 442.7C165.7 469.1 184.8 493.7 208.6 512C149.1 500.5 97.11 468.1 59.2 422.7C21.12 376.3 0 318.4 0 257.9C0 206.7 62.4 163.5 136 163.5C172.6 162.9 208.4 174.4 237.8 196.2L234.2 197.4C182.7 215 135.7 288.1 135.7 355.5V355.5zM469.8 400L469.1 400.1C457.3 418.9 443.2 435.2 426.9 449.6C396.1 477.6 358.8 495.1 318.1 499.5C299.5 499.8 281.3 496.3 264.3 488.1C238.7 477.8 217.2 458.1 202.7 435.1C188.3 411.2 181.6 383.4 183.7 355.5C183.1 335.4 189.1 315.2 198.7 297.3C212.6 330.4 236.2 358.6 266.3 378.1C296.4 397.6 331.8 407.6 367.7 406.7C398.7 407 429.8 400 457.9 386.2L459.8 385.3C463.7 383 467.5 381.4 471.4 385.3C475.9 390.2 473.2 394.5 470.2 399.3C470 399.5 469.9 399.8 469.8 400V400z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "edge-legacy": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e078", + "label": "Edge Legacy Browser", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M25.71,228.16l.35-.48c0,.16,0,.32-.07.48Zm460.58,15.51c0-44-7.76-84.46-28.81-122.4C416.5,47.88,343.91,8,258.89,8,119,7.72,40.62,113.21,26.06,227.68c42.42-61.31,117.07-121.38,220.37-125,0,0,109.67,0,99.42,105H170c6.37-37.39,18.55-59,34.34-78.93-75.05,34.9-121.85,96.1-120.75,188.32.83,71.45,50.13,144.84,120.75,172,83.35,31.84,192.77,7.2,240.13-21.33V363.31C363.6,419.8,173.6,424.23,172.21,295.74H486.29V243.67Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "egg": { + "aliases": { + "unicodes": { + "composite": [ + "1f95a" + ], + "secondary": [ + "10f7fb" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breakfast", + "chicken", + "easter", + "egg", + "food", + "shell", + "yolk" + ] + }, + "unicode": "f7fb", + "label": "Egg", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 496C86 496 0 394 0 288C0 176 64 16 192 16s192 160 192 272c0 106-86 208-192 208zM154.8 134c6.5-6 7-16.1 1-22.6s-16.1-7-22.6-1c-23.9 21.8-41.1 52.7-52.3 84.2C69.7 226.1 64 259.7 64 288c0 8.8 7.2 16 16 16s16-7.2 16-16c0-24.5 5-54.4 15.1-82.8c10.1-28.5 25-54.1 43.7-71.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "eject": { + "aliases": { + "unicodes": { + "composite": [ + "23cf" + ], + "secondary": [ + "10f052" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abort", + "cancel", + "cd", + "discharge", + "eject", + "eject button" + ] + }, + "unicode": "f052", + "label": "Eject", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 32c13.5 0 26.3 5.6 35.4 15.6l176 192c12.9 14 16.2 34.3 8.6 51.8S419 320 400 320H48c-19 0-36.3-11.2-43.9-28.7s-4.3-37.7 8.6-51.8l176-192C197.7 37.6 210.5 32 224 32zM0 432c0-26.5 21.5-48 48-48H400c26.5 0 48 21.5 48 48s-21.5 48-48 48H48c-26.5 0-48-21.5-48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "elementor": { + "changes": [ + "5.0.3", + "6.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f430", + "label": "Elementor", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M.361 256C.361 397 114 511 255 511C397 511 511 397 511 256C511 116 397 2.05 255 2.05C114 2.05 .361 116 .361 256zM192 150V363H149V150H192zM234 150H362V193H234V150zM362 235V278H234V235H362zM234 320H362V363H234V320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "elevator": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accessibility", + "elevator", + "hoist", + "lift", + "users-people" + ] + }, + "unicode": "e16d", + "label": "Elevator", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M132.7 4.7l-64 64c-4.6 4.6-5.9 11.5-3.5 17.4s8.3 9.9 14.8 9.9H208c6.5 0 12.3-3.9 14.8-9.9s1.1-12.9-3.5-17.4l-64-64c-6.2-6.2-16.4-6.2-22.6 0zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H64zm96 96a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM80 400c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v16c0 17.7-14.3 32-32 32H112c-17.7 0-32-14.3-32-32V400zm192 0c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v16c0 17.7-14.3 32-32 32H304c-17.7 0-32-14.3-32-32V400zm32-128a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM356.7 91.3c6.2 6.2 16.4 6.2 22.6 0l64-64c4.6-4.6 5.9-11.5 3.5-17.4S438.5 0 432 0H304c-6.5 0-12.3 3.9-14.8 9.9s-1.1 12.9 3.5 17.4l64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ellipsis": { + "aliases": { + "names": [ + "ellipsis-h" + ], + "unicodes": { + "secondary": [ + "10f141" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dots", + "drag", + "kebab", + "list", + "menu", + "nav", + "navigation", + "ol", + "pacman", + "reorder", + "settings", + "ul" + ] + }, + "unicode": "f141", + "label": "Ellipsis", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 256a56 56 0 1 1 112 0A56 56 0 1 1 0 256zm160 0a56 56 0 1 1 112 0 56 56 0 1 1 -112 0zm216-56a56 56 0 1 1 0 112 56 56 0 1 1 0-112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ellipsis-vertical": { + "aliases": { + "names": [ + "ellipsis-v" + ], + "unicodes": { + "secondary": [ + "10f142" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dots", + "drag", + "kebab", + "list", + "menu", + "nav", + "navigation", + "ol", + "reorder", + "settings", + "ul" + ] + }, + "unicode": "f142", + "label": "Ellipsis Vertical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 128, + 512 + ], + "width": 128, + "height": 512, + "path": "M56 472a56 56 0 1 1 0-112 56 56 0 1 1 0 112zm0-160a56 56 0 1 1 0-112 56 56 0 1 1 0 112zM0 96a56 56 0 1 1 112 0A56 56 0 1 1 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ello": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5f1", + "label": "Ello", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm143.84 285.2C375.31 358.51 315.79 404.8 248 404.8s-127.31-46.29-143.84-111.6c-1.65-7.44 2.48-15.71 9.92-17.36 7.44-1.65 15.71 2.48 17.36 9.92 14.05 52.91 62 90.11 116.56 90.11s102.51-37.2 116.56-90.11c1.65-7.44 9.92-12.4 17.36-9.92 7.44 1.65 12.4 9.92 9.92 17.36z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ember": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f423", + "label": "Ember", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1-44.2-27.6-49-24c-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-11.4-6.8-21.3-.5-27.2 5.3 13.6-17.3 46.4-64.2 36.9-105.2-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5-28.5 18.8-28.5 18.8-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7 16.4 1 36.5-47.9c11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7 30.9 5.3 30.9 5.3 15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "empire": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d1", + "label": "Galactic Empire", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "envelope": { + "aliases": { + "unicodes": { + "composite": [ + "1f582", + "2709", + "f003" + ], + "secondary": [ + "10f0e0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Back of Envelope", + "e-mail", + "email", + "envelope", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "unicode": "f0e0", + "label": "Envelope", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 112c-8.8 0-16 7.2-16 16v22.1L220.5 291.7c20.7 17 50.4 17 71.1 0L464 150.1V128c0-8.8-7.2-16-16-16H64zM48 212.2V384c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V212.2L322 328.8c-38.4 31.5-93.7 31.5-132 0L48 212.2zM0 128C0 92.7 28.7 64 64 64H448c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "envelope-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "check", + "email", + "envelope", + "mail", + "not affected", + "ok", + "okay", + "read", + "sent" + ] + }, + "unicode": "e4e8", + "label": "Envelope Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0l57.4-43c23.9-59.8 79.7-103.3 146.3-109.8l13.9-10.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176V384c0 35.3 28.7 64 64 64H360.2C335.1 417.6 320 378.5 320 336c0-5.6 .3-11.1 .8-16.6l-26.4 19.8zM640 336a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 353.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "envelope-open": { + "aliases": { + "unicodes": { + "composite": [ + "f2b7" + ], + "secondary": [ + "10f2b6" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "unicode": "f2b6", + "label": "Envelope Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 208.1L256 65.9 448 208.1v47.4L289.5 373c-9.7 7.2-21.4 11-33.5 11s-23.8-3.9-33.5-11L64 255.5V208.1zM256 0c-12.1 0-23.8 3.9-33.5 11L25.9 156.7C9.6 168.8 0 187.8 0 208.1V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V208.1c0-20.3-9.6-39.4-25.9-51.4L289.5 11C279.8 3.9 268.1 0 256 0z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M255.4 48.2c.2-.1 .4-.2 .6-.2s.4 .1 .6 .2L460.6 194c2.1 1.5 3.4 3.9 3.4 6.5v13.6L291.5 355.7c-20.7 17-50.4 17-71.1 0L48 214.1V200.5c0-2.6 1.2-5 3.4-6.5L255.4 48.2zM48 276.2L190 392.8c38.4 31.5 93.7 31.5 132 0L464 276.2V456c0 4.4-3.6 8-8 8H56c-4.4 0-8-3.6-8-8V276.2zM256 0c-10.2 0-20.2 3.2-28.5 9.1L23.5 154.9C8.7 165.4 0 182.4 0 200.5V456c0 30.9 25.1 56 56 56H456c30.9 0 56-25.1 56-56V200.5c0-18.1-8.7-35.1-23.4-45.6L284.5 9.1C276.2 3.2 266.2 0 256 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "envelope-open-text": { + "aliases": { + "unicodes": { + "secondary": [ + "10f658" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.1", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "unicode": "f658", + "label": "Envelope Open Text", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M215.4 96H144 107.8 96v8.8V144v40.4 89L.2 202.5c1.6-18.1 10.9-34.9 25.7-45.8L48 140.3V96c0-26.5 21.5-48 48-48h76.6l49.9-36.9C232.2 3.9 243.9 0 256 0s23.8 3.9 33.5 11L339.4 48H416c26.5 0 48 21.5 48 48v44.3l22.1 16.4c14.8 10.9 24.1 27.7 25.7 45.8L416 273.4v-89V144 104.8 96H404.2 368 296.6 215.4zM0 448V242.1L217.6 403.3c11.1 8.2 24.6 12.7 38.4 12.7s27.3-4.4 38.4-12.7L512 242.1V448v0c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64v0zM176 160H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "envelopes-bulk": { + "aliases": { + "names": [ + "mail-bulk" + ], + "unicodes": { + "secondary": [ + "10f674" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "envelope", + "letter", + "post office", + "postal", + "postcard", + "send", + "stamp", + "usps" + ] + }, + "unicode": "f674", + "label": "Envelopes Bulk", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32V224h96V192c0-35.3 28.7-64 64-64H448V32c0-17.7-14.3-32-32-32H96zM224 160c-17.7 0-32 14.3-32 32v32h96c35.3 0 64 28.7 64 64V416H544c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32H224zm240 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zM32 256c-17.7 0-32 14.3-32 32v13L155.1 415.9c1.4 1 3.1 1.6 4.9 1.6s3.5-.6 4.9-1.6L320 301V288c0-17.7-14.3-32-32-32H32zm288 84.8L184 441.6c-6.9 5.1-15.3 7.9-24 7.9s-17-2.8-24-7.9L0 340.8V480c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32V340.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "envira": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "leaf" + ] + }, + "unicode": "f299", + "label": "Envira Gallery", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "equals": { + "aliases": { + "unicodes": { + "composite": [ + "f52c" + ], + "primary": [ + "f52c" + ], + "secondary": [ + "103d", + "10f52c" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Equals Sign", + "arithmetic", + "even", + "match", + "math" + ] + }, + "unicode": "3d", + "label": "Equals", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 128c-17.7 0-32 14.3-32 32s14.3 32 32 32H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zm0 192c-17.7 0-32 14.3-32 32s14.3 32 32 32H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "eraser": { + "aliases": { + "unicodes": { + "secondary": [ + "10f12d" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "delete", + "remove", + "rubber" + ] + }, + "unicode": "f12d", + "label": "Eraser", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M258.7 57.4L25.4 290.7c-25 25-25 65.5 0 90.5l80 80c12 12 28.3 18.7 45.3 18.7H256h9.4H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H355.9L486.6 285.3c25-25 25-65.5 0-90.5L349.3 57.4c-25-25-65.5-25-90.5 0zM265.4 416H256l-105.4 0-80-80L195.3 211.3 332.7 348.7 265.4 416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "erlang": { + "changes": [ + "5.0.0", + "5.0.3", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f39d", + "label": "Erlang", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M87.2 53.5H0v405h100.4c-49.7-52.6-78.8-125.3-78.7-212.1-.1-76.7 24-142.7 65.5-192.9zm238.2 9.7c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2zm230.7-9.6h.3l-.1-.1zm.3 0c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ethereum": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42e", + "label": "Ethereum", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ethernet": { + "aliases": { + "unicodes": { + "secondary": [ + "10f796" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cable", + "cat 5", + "cat 6", + "connection", + "hardware", + "internet", + "network", + "wired" + ] + }, + "unicode": "f796", + "label": "Ethernet", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224V416c0 17.7 14.3 32 32 32H96V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32H448V160c0-17.7-14.3-32-32-32H384V96c0-17.7-14.3-32-32-32H160c-17.7 0-32 14.3-32 32v32H96c-17.7 0-32 14.3-32 32v32H32c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "etsy": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2d7", + "label": "Etsy", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "euro-sign": { + "aliases": { + "names": [ + "eur", + "euro" + ], + "unicodes": { + "composite": [ + "20ac" + ], + "secondary": [ + "10f153" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Euro Sign", + "currency" + ] + }, + "unicode": "f153", + "label": "Euro Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M48.1 240c-.1 2.7-.1 5.3-.1 8v16c0 2.7 0 5.3 .1 8H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H60.3C89.9 419.9 170 480 264 480h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H264c-57.9 0-108.2-32.4-133.9-80H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H112.2c-.1-2.6-.2-5.3-.2-8V248c0-2.7 .1-5.4 .2-8H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H130.1c25.7-47.6 76-80 133.9-80h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H264C170 32 89.9 92.1 60.3 176H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "evernote": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f839", + "label": "Evernote", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M120.82 132.21c1.6 22.31-17.55 21.59-21.61 21.59-68.93 0-73.64-1-83.58 3.34-.56.22-.74 0-.37-.37L123.79 46.45c.38-.37.6-.22.38.37-4.35 9.99-3.35 15.09-3.35 85.39zm79 308c-14.68-37.08 13-76.93 52.52-76.62 17.49 0 22.6 23.21 7.95 31.42-6.19 3.3-24.95 1.74-25.14 19.2-.05 17.09 19.67 25 31.2 24.89A45.64 45.64 0 0 0 312 393.45v-.08c0-11.63-7.79-47.22-47.54-55.34-7.72-1.54-65-6.35-68.35-50.52-3.74 16.93-17.4 63.49-43.11 69.09-8.74 1.94-69.68 7.64-112.92-36.77 0 0-18.57-15.23-28.23-57.95-3.38-15.75-9.28-39.7-11.14-62 0-18 11.14-30.45 25.07-32.2 81 0 90 2.32 101-7.8 9.82-9.24 7.8-15.5 7.8-102.78 1-8.3 7.79-30.81 53.41-24.14 6 .86 31.91 4.18 37.48 30.64l64.26 11.15c20.43 3.71 70.94 7 80.6 57.94 22.66 121.09 8.91 238.46 7.8 238.46C362.15 485.53 267.06 480 267.06 480c-18.95-.23-54.25-9.4-67.27-39.83zm80.94-204.84c-1 1.92-2.2 6 .85 7 14.09 4.93 39.75 6.84 45.88 5.53 3.11-.25 3.05-4.43 2.48-6.65-3.53-21.85-40.83-26.5-49.24-5.92z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "exclamation": { + "aliases": { + "unicodes": { + "composite": [ + "2755", + "2757", + "f12a" + ], + "primary": [ + "f12a" + ], + "secondary": [ + "1021", + "10f12a" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "!", + "Exclamation Mark", + "alert", + "danger", + "error", + "exclamation", + "important", + "mark", + "notice", + "notification", + "notify", + "outlined", + "problem", + "punctuation", + "red exclamation mark", + "warning", + "white exclamation mark" + ] + }, + "unicode": "21", + "label": "Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 128, + 512 + ], + "width": 128, + "height": 512, + "path": "M72 64c0-17.7-14.3-32-32-32S8 46.3 8 64V320c0 17.7 14.3 32 32 32s32-14.3 32-32V64zM40 480a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "expand": { + "aliases": { + "unicodes": { + "secondary": [ + "10f065" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "crop", + "enlarge", + "focus", + "fullscreen", + "resize", + "viewfinder" + ] + }, + "unicode": "f065", + "label": "Expand", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64v96c0 17.7 14.3 32 32 32s32-14.3 32-32V96h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM64 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7 14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V352zM320 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h64v64c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32H320zM448 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "expeditedssl": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f23e", + "label": "ExpeditedSSL", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "explosion": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blast", + "blowup", + "boom", + "crash", + "detonation", + "explosion" + ] + }, + "unicode": "e4e9", + "label": "Explosion", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M499.6 11.3c6.7-10.7 20.5-14.5 31.7-8.5s15.8 19.5 10.6 31L404.8 338.6c2.2 2.3 4.3 4.7 6.3 7.1l97.2-54.7c10.5-5.9 23.6-3.1 30.9 6.4s6.3 23-2.2 31.5l-87 87H378.5c-13.2-37.3-48.7-64-90.5-64s-77.4 26.7-90.5 64H117.8L42.3 363.7c-9.7-6.7-13.1-19.6-7.9-30.3s17.4-15.9 28.7-12.4l97.2 30.4c3-3.9 6.1-7.7 9.4-11.3L107.4 236.3c-6.1-10.1-3.9-23.1 5.1-30.7s22.2-7.5 31.1 .1L246 293.6c1.5-.4 3-.8 4.5-1.1l13.6-142.7c1.2-12.3 11.5-21.7 23.9-21.7s22.7 9.4 23.9 21.7l13.5 141.9L499.6 11.3zM64 448v0H512v0h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H64zM288 0c13.3 0 24 10.7 24 24V72c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "eye": { + "aliases": { + "unicodes": { + "composite": [ + "1f441" + ], + "secondary": [ + "10f06e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "body", + "eye", + "look", + "optic", + "see", + "seen", + "show", + "sight", + "views", + "visible" + ] + }, + "unicode": "f06e", + "label": "Eye", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64c-7.1 0-13.9-1.2-20.3-3.3c-5.5-1.8-11.9 1.6-11.7 7.4c.3 6.9 1.3 13.8 3.2 20.7c13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3z" + }, + "regular": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 80c-65.2 0-118.8 29.6-159.9 67.7C89.6 183.5 63 226 49.4 256c13.6 30 40.2 72.5 78.6 108.3C169.2 402.4 222.8 432 288 432s118.8-29.6 159.9-67.7C486.4 328.5 513 286 526.6 256c-13.6-30-40.2-72.5-78.6-108.3C406.8 109.6 353.2 80 288 80zM95.4 112.6C142.5 68.8 207.2 32 288 32s145.5 36.8 192.6 80.6c46.8 43.5 78.1 95.4 93 131.1c3.3 7.9 3.3 16.7 0 24.6c-14.9 35.7-46.2 87.7-93 131.1C433.5 443.2 368.8 480 288 480s-145.5-36.8-192.6-80.6C48.6 356 17.3 304 2.5 268.3c-3.3-7.9-3.3-16.7 0-24.6C17.3 208 48.6 156 95.4 112.6zM288 336c44.2 0 80-35.8 80-80s-35.8-80-80-80c-.7 0-1.3 0-2 0c1.3 5.1 2 10.5 2 16c0 35.3-28.7 64-64 64c-5.5 0-10.9-.7-16-2c0 .7 0 1.3 0 2c0 44.2 35.8 80 80 80zm0-208a128 128 0 1 1 0 256 128 128 0 1 1 0-256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "eye-dropper": { + "aliases": { + "names": [ + "eye-dropper-empty", + "eyedropper" + ], + "unicodes": { + "secondary": [ + "10f1fb" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beaker", + "clone", + "color", + "copy", + "eyedropper", + "pipette" + ] + }, + "unicode": "f1fb", + "label": "Eye Dropper", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M341.6 29.2L240.1 130.8l-9.4-9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-9.4-9.4L482.8 170.4c39-39 39-102.2 0-141.1s-102.2-39-141.1 0zM55.4 323.3c-15 15-23.4 35.4-23.4 56.6v42.4L5.4 462.2c-8.5 12.7-6.8 29.6 4 40.4s27.7 12.5 40.4 4L89.7 480h42.4c21.2 0 41.6-8.4 56.6-23.4L309.4 335.9l-45.3-45.3L143.4 411.3c-3 3-7.1 4.7-11.3 4.7H96V379.9c0-4.2 1.7-8.3 4.7-11.3L221.4 247.9l-45.3-45.3L55.4 323.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "eye-low-vision": { + "aliases": { + "names": [ + "low-vision" + ], + "unicodes": { + "secondary": [ + "10f2a8" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "eye", + "sight" + ] + }, + "unicode": "f2a8", + "label": "Eye Low Vision", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223 149.5c48.6-44.3 123-50.8 179.3-11.7c60.8 42.4 78.9 123.2 44.2 186.9L408 294.5c8.4-19.3 10.6-41.4 4.8-63.3c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3c0 10.2-2.4 19.8-6.6 28.3L223 149.5zm223.1 298L83.1 161.5c-11 14.4-20.5 28.7-28.4 42.2l339 265.7c18.7-5.5 36.2-13 52.6-21.8zM34.5 268.3c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c3.1 0 6.1-.1 9.2-.2L33.1 247.8c-1.8 6.8-1.3 14 1.4 20.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "eye-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f070" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "hide", + "show", + "toggle", + "unseen", + "views", + "visible", + "visiblity" + ] + }, + "unicode": "f070", + "label": "Eye Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223.1 149.5C248.6 126.2 282.7 112 320 112c79.5 0 144 64.5 144 144c0 24.9-6.3 48.3-17.4 68.7L408 294.5c8.4-19.3 10.6-41.4 4.8-63.3c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3c0 10.2-2.4 19.8-6.6 28.3l-90.3-70.8zM373 389.9c-16.4 6.5-34.3 10.1-53 10.1c-79.5 0-144-64.5-144-144c0-6.9 .5-13.6 1.4-20.2L83.1 161.5C60.3 191.2 44 220.8 34.5 243.7c-3.3 7.9-3.3 16.7 0 24.6c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c47.8 0 89.9-12.9 126.2-32.5L373 389.9z" + }, + "regular": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zm151 118.3C226 97.7 269.5 80 320 80c65.2 0 118.8 29.6 159.9 67.7C518.4 183.5 545 226 558.6 256c-12.6 28-36.6 66.8-70.9 100.9l-53.8-42.2c9.1-17.6 14.2-37.5 14.2-58.7c0-70.7-57.3-128-128-128c-32.2 0-61.7 11.9-84.2 31.5l-46.1-36.1zM394.9 284.2l-81.5-63.9c4.2-8.5 6.6-18.2 6.6-28.3c0-5.5-.7-10.9-2-16c.7 0 1.3 0 2 0c44.2 0 80 35.8 80 80c0 9.9-1.8 19.4-5.1 28.2zm9.4 130.3C378.8 425.4 350.7 432 320 432c-65.2 0-118.8-29.6-159.9-67.7C121.6 328.5 95 286 81.4 256c8.3-18.4 21.5-41.5 39.4-64.8L83.1 161.5C60.3 191.2 44 220.8 34.5 243.7c-3.3 7.9-3.3 16.7 0 24.6c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c47.8 0 89.9-12.9 126.2-32.5l-41.9-33zM192 256c0 70.7 57.3 128 128 128c13.3 0 26.1-2 38.2-5.8L302 334c-23.5-5.4-43.1-21.2-53.7-42.3l-56.1-44.2c-.2 2.8-.3 5.6-.3 8.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "f": { + "aliases": { + "unicodes": { + "composite": [ + "66" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter F", + "Latin Small Letter F", + "letter" + ] + }, + "unicode": "46", + "label": "F", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V256 448c0 17.7 14.3 32 32 32s32-14.3 32-32V288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "face-angry": { + "aliases": { + "names": [ + "angry" + ], + "unicodes": { + "composite": [ + "1f620" + ], + "secondary": [ + "10f556" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "angry", + "angry face", + "disapprove", + "emoticon", + "face", + "mad", + "upset" + ] + }, + "unicode": "f556", + "label": "Face Angry", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM338.7 395.9c6.6-5.9 7.1-16 1.2-22.6C323.8 355.4 295.7 336 256 336s-67.8 19.4-83.9 37.3c-5.9 6.6-5.4 16.7 1.2 22.6s16.7 5.4 22.6-1.2c11.7-13 31.6-26.7 60.1-26.7s48.4 13.7 60.1 26.7c5.9 6.6 16 7.1 22.6 1.2zM176.4 272c17.7 0 32-14.3 32-32c0-1.5-.1-3-.3-4.4l10.9 3.6c8.4 2.8 17.4-1.7 20.2-10.1s-1.7-17.4-10.1-20.2l-96-32c-8.4-2.8-17.4 1.7-20.2 10.1s1.7 17.4 10.1 20.2l30.7 10.2c-5.8 5.8-9.3 13.8-9.3 22.6c0 17.7 14.3 32 32 32zm192-32c0-8.9-3.6-17-9.5-22.8l30.2-10.1c8.4-2.8 12.9-11.9 10.1-20.2s-11.9-12.9-20.2-10.1l-96 32c-8.4 2.8-12.9 11.9-10.1 20.2s11.9 12.9 20.2 10.1l11.7-3.9c-.2 1.5-.3 3.1-.3 4.7c0 17.7 14.3 32 32 32s32-14.3 32-32z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm72.4-118.5c9.7-9 10.2-24.2 1.2-33.9C315.3 344.3 290.6 328 256 328s-59.3 16.3-73.5 31.6c-9 9.7-8.5 24.9 1.2 33.9s24.9 8.5 33.9-1.2c7.4-7.9 20-16.4 38.5-16.4s31.1 8.5 38.5 16.4c9 9.7 24.2 10.2 33.9 1.2zM176.4 272c17.7 0 32-14.3 32-32c0-1.5-.1-3-.3-4.4l10.9 3.6c8.4 2.8 17.4-1.7 20.2-10.1s-1.7-17.4-10.1-20.2l-96-32c-8.4-2.8-17.4 1.7-20.2 10.1s1.7 17.4 10.1 20.2l30.7 10.2c-5.8 5.8-9.3 13.8-9.3 22.6c0 17.7 14.3 32 32 32zm192-32c0-8.9-3.6-17-9.5-22.8l30.2-10.1c8.4-2.8 12.9-11.9 10.1-20.2s-11.9-12.9-20.2-10.1l-96 32c-8.4 2.8-12.9 11.9-10.1 20.2s11.9 12.9 20.2 10.1l11.7-3.9c-.2 1.5-.3 3.1-.3 4.7c0 17.7 14.3 32 32 32s32-14.3 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-dizzy": { + "aliases": { + "names": [ + "dizzy" + ], + "unicodes": { + "secondary": [ + "10f567" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dazed", + "dead", + "disapprove", + "emoticon", + "face" + ] + }, + "unicode": "f567", + "label": "Face Dizzy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-224a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM100.7 132.7c6.2-6.2 16.4-6.2 22.6 0L160 169.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L182.6 192l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L160 214.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L137.4 192l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6zm192 0c6.2-6.2 16.4-6.2 22.6 0L352 169.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L374.6 192l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L352 214.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L329.4 192l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 32a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM103 135c9.4-9.4 24.6-9.4 33.9 0l23 23 23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-23 23 23 23c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-23-23-23 23c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l23-23-23-23c-9.4-9.4-9.4-24.6 0-33.9zm192 0c9.4-9.4 24.6-9.4 33.9 0l23 23 23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-23 23 23 23c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-23-23-23 23c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l23-23-23-23c-9.4-9.4-9.4-24.6 0-33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-flushed": { + "aliases": { + "names": [ + "flushed" + ], + "unicodes": { + "composite": [ + "1f633" + ], + "secondary": [ + "10f579" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dazed", + "embarrassed", + "emoticon", + "face", + "flushed", + "flushed face" + ] + }, + "unicode": "f579", + "label": "Face Flushed", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM176 384c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16s-7.2-16-16-16H192c-8.8 0-16 7.2-16 16zm-16-88a72 72 0 1 0 0-144 72 72 0 1 0 0 144zm264-72a72 72 0 1 0 -144 0 72 72 0 1 0 144 0zm-288 0a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm192 0a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM160.4 248a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm216-24a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM192 336c-13.3 0-24 10.7-24 24s10.7 24 24 24H320c13.3 0 24-10.7 24-24s-10.7-24-24-24H192zM160 176a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm0 128a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm144-80a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm128 0a80 80 0 1 0 -160 0 80 80 0 1 0 160 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-frown": { + "aliases": { + "names": [ + "frown" + ], + "unicodes": { + "composite": [ + "2639" + ], + "secondary": [ + "10f119" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.9", + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "disapprove", + "emoticon", + "face", + "frown", + "frowning face", + "rating", + "sad" + ] + }, + "unicode": "f119", + "label": "Face Frown", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM159.3 388.7c-2.6 8.4-11.6 13.2-20 10.5s-13.2-11.6-10.5-20C145.2 326.1 196.3 288 256 288s110.8 38.1 127.3 91.3c2.6 8.4-2.1 17.4-10.5 20s-17.4-2.1-20-10.5C340.5 349.4 302.1 320 256 320s-84.5 29.4-96.7 68.7zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM174.6 384.1c-4.5 12.5-18.2 18.9-30.7 14.4s-18.9-18.2-14.4-30.7C146.9 319.4 198.9 288 256 288s109.1 31.4 126.6 79.9c4.5 12.5-2 26.2-14.4 30.7s-26.2-2-30.7-14.4C328.2 358.5 297.2 336 256 336s-72.2 22.5-81.4 48.1zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-frown-open": { + "aliases": { + "names": [ + "frown-open" + ], + "unicodes": { + "composite": [ + "1f626" + ], + "secondary": [ + "10f57a" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "disapprove", + "emoticon", + "face", + "frown", + "frowning face with open mouth", + "mouth", + "open", + "rating", + "sad" + ] + }, + "unicode": "f57a", + "label": "Face Frown Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm-122 174.5c-12.4 5.2-26.5-4.1-21.1-16.4c16-36.6 52.4-62.1 94.8-62.1s78.8 25.6 94.8 62.1c5.4 12.3-8.7 21.6-21.1 16.4c-22.4-9.5-47.4-14.8-73.7-14.8s-51.3 5.3-73.7 14.8z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM182.4 382.5c-12.4 5.2-26.5-4.1-21.1-16.4c16-36.6 52.4-62.1 94.8-62.1s78.8 25.6 94.8 62.1c5.4 12.3-8.7 21.6-21.1 16.4c-22.4-9.5-47.4-14.8-73.7-14.8s-51.3 5.3-73.7 14.8zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grimace": { + "aliases": { + "names": [ + "grimace" + ], + "unicodes": { + "composite": [ + "1f62c" + ], + "secondary": [ + "10f57f" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cringe", + "emoticon", + "face", + "grimace", + "grimacing face", + "teeth" + ] + }, + "unicode": "f57f", + "label": "Face Grimace", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm96-112h-8V360l55.3 0c-3.8 22.7-23.6 40-47.3 40zm47.3-56L344 344V304h8c23.8 0 43.5 17.3 47.3 40zM328 344H264V304h64v40zm0 56H264V360h64v40zm-80-96v40l-64 0V304h64zm0 56v40H184V360l64 0zm-80-16H112.7c3.8-22.7 23.6-40 47.3-40h8v40zm0 56h-8c-23.8 0-43.5-17.3-47.3-40H168v40zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 0 0 416 208 208 0 1 0 0-416zM512 256A256 256 0 1 1 0 256a256 256 0 1 1 512 0zM168 320c-13.3 0-24 10.7-24 24s10.7 24 24 24h8V320h-8zm40 48h32V320H208v48zm96 0V320H272v48h32zm32 0h8c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8v48zM168 288H344c30.9 0 56 25.1 56 56s-25.1 56-56 56H168c-30.9 0-56-25.1-56-56s25.1-56 56-56zm-23.6-80a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin": { + "aliases": { + "names": [ + "grin" + ], + "unicodes": { + "composite": [ + "1f600" + ], + "secondary": [ + "10f580" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "grin", + "grinning face", + "laugh", + "smile" + ] + }, + "unicode": "f580", + "label": "Face Grin", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-beam": { + "aliases": { + "names": [ + "grin-beam" + ], + "unicodes": { + "composite": [ + "1f604" + ], + "secondary": [ + "10f582" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "eye", + "face", + "grinning face with smiling eyes", + "laugh", + "mouth", + "open", + "smile" + ] + }, + "unicode": "f582", + "label": "Face Grin Beam", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zm-170.5-84l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM217.6 228.8l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-beam-sweat": { + "aliases": { + "names": [ + "grin-beam-sweat" + ], + "unicodes": { + "composite": [ + "1f605" + ], + "secondary": [ + "10f583" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "embarass", + "emoticon", + "face", + "grinning face with sweat", + "open", + "smile", + "sweat" + ] + }, + "unicode": "f583", + "label": "Face Grin Beam Sweat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M476.8 126.3c-4.1 1.1-8.4 1.7-12.8 1.7c-26.5 0-48-21-48-47c0-5 1.8-11.3 4.6-18.1c.3-.7 .6-1.4 .9-2.1c9-20.2 26.5-44.9 36-57.5c3.2-4.4 9.6-4.4 12.8 0C483.4 20.6 512 61 512 81c0 21.7-14.9 39.8-35.2 45.3zM256 0c51.4 0 99.3 15.2 139.4 41.2c-1.5 3.1-3 6.2-4.3 9.3c-3.4 8-7.1 19-7.1 30.5c0 44.3 36.6 79 80 79c9.6 0 18.8-1.7 27.4-4.8c13.3 30.9 20.6 65 20.6 100.8c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0zM383.8 317.8C345.3 329.4 301.9 336 256 336s-89.3-6.6-127.8-18.2c-12.3-3.7-24.3 7-19.2 18.7c24.5 56.9 81.1 96.7 147 96.7s122.5-39.8 147-96.7c5.1-11.8-6.9-22.4-19.2-18.7zm-166.2-89l0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C126.7 188.4 120 206.1 120 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0 0 0zm160 0l0 0 0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C286.7 188.4 280 206.1 280 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M476.8 126.3C497.1 120.8 512 102.7 512 81c0-20-28.6-60.4-41.6-77.7c-3.2-4.4-9.6-4.4-12.8 0c-9.5 12.6-27.1 37.2-36 57.5c-.3 .7-.6 1.4-.9 2.1C417.8 69.7 416 76 416 81c0 26 21.5 47 48 47c4.4 0 8.7-.6 12.8-1.7zM395.4 41.2C355.3 15.2 307.4 0 256 0C114.6 0 0 114.6 0 256S114.6 512 256 512s256-114.6 256-256c0-35.8-7.3-69.9-20.6-100.8c-8.6 3.1-17.8 4.8-27.4 4.8c-8.9 0-17.6-1.5-25.7-4.2C454.7 185.5 464 219.7 464 256c0 114.9-93.1 208-208 208S48 370.9 48 256S141.1 48 256 48c48.7 0 93.4 16.7 128.9 44.7c-.6-3.8-.9-7.7-.9-11.7c0-11.4 3.8-22.4 7.1-30.5c1.3-3.1 2.7-6.2 4.3-9.3zM375 336.5c10.4-16.1-6.8-32.5-25.5-28.1c-28.9 6.8-60.5 10.5-93.6 10.5s-64.7-3.7-93.6-10.5c-18.7-4.4-35.9 12-25.5 28.1c24.6 38.1 68.7 63.5 119.1 63.5s94.5-25.4 119.1-63.5zM217.6 228.8l0 0 0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C126.7 188.4 120 206.1 120 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0zm160 0l0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C286.7 188.4 280 206.1 280 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-hearts": { + "aliases": { + "names": [ + "grin-hearts" + ], + "unicodes": { + "composite": [ + "1f60d" + ], + "secondary": [ + "10f584" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "eye", + "face", + "love", + "smile", + "smiling face with heart-eyes" + ] + }, + "unicode": "f584", + "label": "Face Grin Hearts", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zM199.3 129.1c17.8 4.8 28.4 23.1 23.6 40.8l-17.4 65c-2.3 8.5-11.1 13.6-19.6 11.3l-65.1-17.4c-17.8-4.8-28.4-23.1-23.6-40.8s23.1-28.4 40.8-23.6l16.1 4.3 4.3-16.1c4.8-17.8 23.1-28.4 40.8-23.6zm154.3 23.6l4.3 16.1 16.1-4.3c17.8-4.8 36.1 5.8 40.8 23.6s-5.8 36.1-23.6 40.8l-65.1 17.4c-8.5 2.3-17.3-2.8-19.6-11.3l-17.4-65c-4.8-17.8 5.8-36.1 23.6-40.8s36.1 5.8 40.9 23.6z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM215.3 137.1c17.8 4.8 28.4 23.1 23.6 40.8l-17.4 65c-2.3 8.5-11.1 13.6-19.6 11.3l-65.1-17.4c-17.8-4.8-28.4-23.1-23.6-40.8s23.1-28.4 40.8-23.6l16.1 4.3 4.3-16.1c4.8-17.8 23.1-28.4 40.8-23.6zm122.3 23.6l4.3 16.1 16.1-4.3c17.8-4.8 36.1 5.8 40.8 23.6s-5.8 36.1-23.6 40.8l-65.1 17.4c-8.5 2.3-17.3-2.8-19.6-11.3l-17.4-65c-4.8-17.8 5.8-36.1 23.6-40.8s36.1 5.8 40.9 23.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-squint": { + "aliases": { + "names": [ + "grin-squint" + ], + "unicodes": { + "composite": [ + "1f606" + ], + "secondary": [ + "10f585" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "grinning squinting face", + "laugh", + "mouth", + "satisfied", + "smile" + ] + }, + "unicode": "f585", + "label": "Face Grin Squint", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zM133.5 146.7l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zm-216-161.7l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-squint-tears": { + "aliases": { + "names": [ + "grin-squint-tears" + ], + "unicodes": { + "composite": [ + "1f923" + ], + "secondary": [ + "10f586" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "floor", + "happy", + "laugh", + "rolling", + "rolling on the floor laughing", + "smile" + ] + }, + "unicode": "f586", + "label": "Face Grin Squint Tears", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M426.8 14.2C446-5 477.5-4.6 497.1 14.9s20 51 .7 70.3c-6.8 6.8-21.4 12.4-37.4 16.7c-16.3 4.4-34.1 7.5-46.3 9.3c-1.6 .2-3.1 .5-4.6 .6c-4.9 .8-9.1-2.8-9.5-7.4c-.1-.7 0-1.4 .1-2.1c1.6-11.2 4.6-29.6 9-47c.3-1.3 .7-2.6 1-3.9c4.3-15.9 9.8-30.5 16.7-37.4zm-44.7 19c-1.5 4.8-2.9 9.6-4.1 14.3c-4.8 18.9-8 38.5-9.7 50.3c-4 26.8 18.9 49.7 45.7 45.8c11.9-1.6 31.5-4.8 50.4-9.7c4.7-1.2 9.5-2.5 14.3-4.1C534.2 227.5 520.2 353.8 437 437c-83.2 83.2-209.5 97.2-307.2 41.8c1.5-4.8 2.8-9.6 4-14.3c4.8-18.9 8-38.5 9.7-50.3c4-26.8-18.9-49.7-45.7-45.8c-11.9 1.6-31.5 4.8-50.4 9.7c-4.7 1.2-9.5 2.5-14.3 4.1C-22.2 284.5-8.2 158.2 75 75C158.2-8.3 284.5-22.2 382.2 33.2zM51.5 410.1c18.5-5 38.8-8.3 50.9-10c.4-.1 .7-.1 1-.1c5.1-.2 9.2 4.3 8.4 9.6c-1.7 12.1-5 32.4-10 50.9C97.6 476.4 92 491 85.2 497.8C66 517 34.5 516.6 14.9 497.1s-20-51-.7-70.3c6.8-6.8 21.4-12.4 37.4-16.7zM416.9 209c-4.7-11.9-20.8-11-26.8 .3c-19 35.5-45 70.8-77.5 103.3S244.8 371.1 209.3 390c-11.3 6-12.2 22.1-.3 26.8c57.6 22.9 125.8 11 172.3-35.5s58.4-114.8 35.5-172.3zM87.1 285.1c2 2 4.6 3.2 7.3 3.4l56.1 5.1 5.1 56.1c.3 2.8 1.5 5.4 3.4 7.3c6.3 6.3 17.2 3.6 19.8-4.9l29.7-97.4c3.5-11.6-7.3-22.5-19-19L92 265.3c-8.6 2.6-11.3 13.4-4.9 19.8zM265.3 92l-29.7 97.4c-3.5 11.6 7.3 22.5 19 19l97.4-29.7c8.6-2.6 11.3-13.4 4.9-19.8c-2-2-4.6-3.2-7.3-3.4l-56.1-5.1-5.1-56.1c-.2-2.8-1.5-5.4-3.4-7.3c-6.3-6.3-17.2-3.6-19.8 4.9z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M426.8 14.2C446-5 477.5-4.6 497.1 14.9s20 51 .7 70.3c-14.8 14.8-65.7 23.6-88.3 26.7c-5.6 .9-10.3-3.9-9.5-9.5C403.3 79.9 412 29 426.8 14.2zM75 75C158.2-8.3 284.5-22.2 382.2 33.2c-1.5 4.8-2.9 9.6-4.1 14.3c-3.1 12.2-5.5 24.6-7.3 35c-80.8-53.6-190.7-44.8-261.9 26.4C37.7 180.1 28.9 290 82.5 370.8c-10.5 1.8-22.9 4.2-35 7.3c-4.7 1.2-9.5 2.5-14.3 4.1C-22.2 284.5-8.2 158.2 75 75zm389.6 58.9c4.7-1.2 9.5-2.5 14.3-4.1C534.2 227.5 520.2 353.8 437 437c-83.2 83.2-209.5 97.2-307.2 41.8c1.5-4.8 2.8-9.6 4-14.3c3.1-12.2 5.5-24.6 7.3-35c80.8 53.6 190.7 44.8 261.9-26.4c71.2-71.2 80-181.1 26.4-261.9c10.5-1.8 22.9-4.2 35-7.3zm-105.4 93c10.1-16.3 33.9-16.9 37.9 1.9c9.5 44.4-3.7 93.5-39.3 129.1s-84.8 48.8-129.1 39.3c-18.7-4-18.2-27.8-1.9-37.9c25.2-15.7 50.2-35.4 73.6-58.8s43.1-48.4 58.8-73.6zM92 265.3l97.4-29.7c11.6-3.5 22.5 7.3 19 19l-29.7 97.4c-2.6 8.6-13.4 11.3-19.8 4.9c-2-2-3.2-4.6-3.4-7.3l-5.1-56.1-56.1-5.1c-2.8-.3-5.4-1.5-7.3-3.4c-6.3-6.3-3.6-17.2 4.9-19.8zm193-178.2c2 2 3.2 4.6 3.4 7.3l5.1 56.1 56.1 5.1c2.8 .3 5.4 1.5 7.3 3.4c6.3 6.3 3.6 17.2-4.9 19.8l-97.4 29.7c-11.6 3.5-22.5-7.3-19-19L265.3 92c2.6-8.6 13.4-11.3 19.8-4.9zM14.9 497.1c-19.6-19.6-20-51-.7-70.3C29 412 79.8 403.2 102.4 400.1c5.6-.9 10.3 3.9 9.5 9.5c-3.2 22.5-11.9 73.5-26.7 88.3C66 517 34.5 516.6 14.9 497.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-stars": { + "aliases": { + "names": [ + "grin-stars" + ], + "unicodes": { + "composite": [ + "1f929" + ], + "secondary": [ + "10f587" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "eyes", + "face", + "grinning", + "star", + "star-struck", + "starry-eyed" + ] + }, + "unicode": "f587", + "label": "Face Grin Stars", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm407.4 75.5c5-11.8-7-22.5-19.3-18.7c-39.7 12.2-84.5 19-131.8 19s-92.1-6.8-131.8-19c-12.3-3.8-24.3 6.9-19.3 18.7c25 59.1 83.2 100.5 151.1 100.5s126.2-41.4 151.1-100.5zM160 120c-3.1 0-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L160 232.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L226.4 178c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7c-1.3-2.8-4.1-4.6-7.2-4.6zm192 0c-3.1 0-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L352 232.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L418.4 178c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7c-1.3-2.8-4.1-4.6-7.2-4.6z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM183.2 132.6c-1.3-2.8-4.1-4.6-7.2-4.6s-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L176 240.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L242.4 186c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7zm160 0c-1.3-2.8-4.1-4.6-7.2-4.6s-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L336 240.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L402.4 186c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7zm6.3 175.8c-28.9 6.8-60.5 10.5-93.6 10.5s-64.7-3.7-93.6-10.5c-18.7-4.4-35.9 12-25.5 28.1c24.6 38.1 68.7 63.5 119.1 63.5s94.5-25.4 119.1-63.5c10.4-16.1-6.8-32.5-25.5-28.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-tears": { + "aliases": { + "names": [ + "grin-tears" + ], + "unicodes": { + "composite": [ + "1f602" + ], + "secondary": [ + "10f588" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "face with tears of joy", + "joy", + "laugh", + "tear" + ] + }, + "unicode": "f588", + "label": "Face Grin Tears", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M548.6 371.4C506.4 454.8 419.9 512 320 512s-186.4-57.2-228.6-140.6c4.5-2.9 8.7-6.3 12.7-10.3c8.1-8.1 13.2-18.6 16.5-26.6c3.6-8.8 6.5-18.4 8.8-27.5c4.6-18.2 7.7-37 9.3-48.2c3.9-26.5-18.8-49.2-45.2-45.4c-6.8 .9-16.2 2.4-26.6 4.4C85.3 94.5 191.6 0 320 0S554.7 94.5 573.2 217.7c-10.3-2-19.8-3.5-26.6-4.4c-26.5-3.9-49.2 18.8-45.2 45.4c1.6 11.3 4.6 30 9.3 48.2c2.3 9.1 5.2 18.8 8.8 27.5c3.3 8.1 8.4 18.5 16.5 26.6c3.9 3.9 8.2 7.4 12.7 10.3zM107 254.1c-3.1 21.5-11.4 70.2-25.5 84.4c-.9 1-1.9 1.8-2.9 2.7C60 356.7 32 355.5 14.3 337.7c-18.7-18.7-19.1-48.8-.7-67.2c8.6-8.6 30.1-15.1 50.5-19.6c13-2.8 25.5-4.8 33.9-6c5.4-.8 9.9 3.7 9 9zm454.5 87.1c-.8-.6-1.5-1.3-2.3-2c-.2-.2-.5-.4-.7-.7c-14.1-14.1-22.5-62.9-25.5-84.4c-.8-5.4 3.7-9.9 9-9c1 .1 2.2 .3 3.3 .5c8.2 1.2 19.2 3 30.6 5.5c20.4 4.4 41.9 10.9 50.5 19.6c18.4 18.4 18 48.5-.7 67.2c-17.7 17.7-45.7 19-64.2 3.4zm-90.1-9.7c5-11.8-7-22.5-19.3-18.7c-39.7 12.2-84.4 19-131.8 19s-92.1-6.8-131.8-19c-12.3-3.8-24.3 6.9-19.3 18.7c25 59.1 83.2 100.5 151.1 100.5s126.2-41.4 151.1-100.5zM281.6 228.8l0 0 0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C190.7 188.4 184 206.1 184 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0zm160 0l0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C350.7 188.4 344 206.1 344 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0 0 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M516.1 325.5c1 3 2.1 6 3.3 8.9c3.3 8.1 8.4 18.5 16.5 26.6c3.9 3.9 8.2 7.4 12.7 10.3C506.4 454.8 419.9 512 320 512s-186.4-57.2-228.6-140.6c4.5-2.9 8.7-6.3 12.7-10.3c8.1-8.1 13.2-18.6 16.5-26.6c1.2-2.9 2.3-5.9 3.3-8.9C152.5 406.2 229.5 464 320 464s167.5-57.8 196.1-138.5zM320 48c-101.4 0-185.8 72.5-204.3 168.5c-6.7-3.1-14.3-4.3-22.3-3.1c-6.8 .9-16.2 2.4-26.6 4.4C85.3 94.5 191.6 0 320 0S554.7 94.5 573.2 217.7c-10.3-2-19.8-3.5-26.6-4.4c-8-1.2-15.7 .1-22.3 3.1C505.8 120.5 421.4 48 320 48zM78.5 341.1C60 356.7 32 355.5 14.3 337.7c-18.7-18.7-19.1-48.8-.7-67.2c8.6-8.6 30.1-15.1 50.5-19.6c13-2.8 25.5-4.8 33.9-6c5.4-.8 9.9 3.7 9 9c-3.1 21.5-11.4 70.2-25.5 84.4c-.9 1-1.9 1.8-2.9 2.7zm483 0c-.8-.6-1.5-1.3-2.3-2c-.2-.2-.5-.4-.7-.7c-14.1-14.1-22.5-62.9-25.5-84.4c-.8-5.4 3.7-9.9 9-9c1 .1 2.2 .3 3.3 .5c8.2 1.2 19.2 3 30.6 5.5c20.4 4.4 41.9 10.9 50.5 19.6c18.4 18.4 18 48.5-.7 67.2c-17.7 17.7-45.7 19-64.2 3.4zM439 336.5C414.4 374.6 370.3 400 319.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5c18.7-4.4 35.9 12 25.5 28.1zM281.6 228.8l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0zm160 0l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-tongue": { + "aliases": { + "names": [ + "grin-tongue" + ], + "unicodes": { + "composite": [ + "1f61b" + ], + "secondary": [ + "10f589" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "face with tongue", + "tongue" + ] + }, + "unicode": "f589", + "label": "Face Grin Tongue", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256C0 368.9 73.1 464.7 174.5 498.8C165.3 484 160 466.6 160 448V400.7c-24-17.5-43.1-41.4-54.8-69.2c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19c12.3-3.8 24.3 6.9 19.3 18.7c-11.8 28-31.1 52-55.4 69.6V448c0 18.6-5.3 36-14.5 50.8C438.9 464.7 512 368.9 512 256C512 114.6 397.4 0 256 0S0 114.6 0 256zm176.4-80a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM320 448V402.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V448c0 35.3 28.7 64 64 64s64-28.7 64-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256c0-114.9-93.1-208-208-208S48 141.1 48 256c0 81.7 47.1 152.4 115.7 186.4c-2.4-8.4-3.7-17.3-3.7-26.4V363.6c-8.9-8-16.7-17.1-23.1-27.1c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5c18.7-4.4 35.9 12 25.5 28.1c-6.4 9.9-14.2 19-23 27V416c0 9.2-1.3 18-3.7 26.4C416.9 408.4 464 337.7 464 256zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm176.4-80a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM320 416V378.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V416c0 35.3 28.7 64 64 64s64-28.7 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-tongue-squint": { + "aliases": { + "names": [ + "grin-tongue-squint" + ], + "unicodes": { + "composite": [ + "1f61d" + ], + "secondary": [ + "10f58a" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "eye", + "face", + "horrible", + "squinting face with tongue", + "taste", + "tongue" + ] + }, + "unicode": "f58a", + "label": "Face Grin Tongue Squint", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256C0 368.9 73.1 464.7 174.5 498.8C165.3 484 160 466.6 160 448V400.7c-24-17.5-43.1-41.4-54.8-69.2c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19c12.3-3.8 24.3 6.9 19.3 18.7c-11.8 28-31.1 52-55.4 69.6V448c0 18.6-5.3 36-14.5 50.8C438.9 464.7 512 368.9 512 256C512 114.6 397.4 0 256 0S0 114.6 0 256zM116 141.1c0-9 9.6-14.7 17.5-10.5l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6zm262.5-10.5c7.9-4.2 17.5 1.5 17.5 10.5c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9zM320 448V402.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V448c0 35.3 28.7 64 64 64s64-28.7 64-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256c0-114.9-93.1-208-208-208S48 141.1 48 256c0 81.7 47.1 152.4 115.7 186.4c-2.4-8.4-3.7-17.3-3.7-26.4V392.7c-24-17.5-43.1-41.4-54.8-69.2c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19c12.3-3.8 24.3 6.9 19.3 18.7c-11.8 28-31.1 52-55.4 69.6V416c0 9.2-1.3 18-3.7 26.4C416.9 408.4 464 337.7 464 256zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm116-98.9c0-9 9.6-14.7 17.5-10.5l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6zm262.5-10.5c7.9-4.2 17.5 1.5 17.5 10.5c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9zM320 416V378.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V416c0 35.3 28.7 64 64 64s64-28.7 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-tongue-wink": { + "aliases": { + "names": [ + "grin-tongue-wink" + ], + "unicodes": { + "composite": [ + "1f61c" + ], + "secondary": [ + "10f58b" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "5.12.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "eye", + "face", + "joke", + "tongue", + "wink", + "winking face with tongue" + ] + }, + "unicode": "f58b", + "label": "Face Grin Tongue Wink", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M174.5 498.8C73.1 464.7 0 368.9 0 256C0 114.6 114.6 0 256 0S512 114.6 512 256c0 112.9-73.1 208.7-174.5 242.8C346.7 484 352 466.6 352 448V401.1c24.3-17.5 43.6-41.6 55.4-69.6c5-11.8-7-22.5-19.3-18.7c-39.7 12.2-84.5 19-131.8 19s-92.1-6.8-131.8-19c-12.3-3.8-24.3 6.9-19.3 18.7c11.7 27.8 30.8 51.7 54.8 69.2V448c0 18.6 5.3 36 14.5 50.8zm20.7-265.2c5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0c-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2c17.6-23.5 52.8-23.5 70.4 0zM336 272a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM320 402.6V448c0 35.3-28.7 64-64 64s-64-28.7-64-64V402.6c0-14.7 11.9-26.6 26.6-26.6h2c11.3 0 21.1 7.9 23.6 18.9c2.8 12.6 20.8 12.6 23.6 0c2.5-11.1 12.3-18.9 23.6-18.9h2c14.7 0 26.6 11.9 26.6 26.6zM336 184a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M348.3 442.4c2.4-8.4 3.7-17.3 3.7-26.4V363.5c8.8-8 16.6-17.1 23-27c10.4-16.1-6.8-32.5-25.5-28.1c-28.9 6.8-60.5 10.5-93.6 10.5s-64.7-3.7-93.6-10.5c-18.7-4.4-35.9 12-25.5 28.1c6.5 10 14.3 19.1 23.1 27.1V416c0 9.2 1.3 18 3.7 26.4C95.1 408.4 48 337.7 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208c0 81.7-47.1 152.4-115.7 186.4zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM159.6 220c10.6 0 19.9 3.8 25.4 9.7c7.6 8.1 20.2 8.5 28.3 .9s8.5-20.2 .9-28.3C199.7 186.8 179 180 159.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7 .9 28.3s20.7 7.1 28.3-.9c5.5-5.8 14.8-9.7 25.4-9.7zm176.7 12a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm-.4-72a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm0 128a80 80 0 1 0 0-160 80 80 0 1 0 0 160zM320 416c0 35.3-28.7 64-64 64s-64-28.7-64-64V378.6c0-14.7 11.9-26.6 26.6-26.6h2c11.3 0 21.1 7.9 23.6 18.9c2.8 12.6 20.8 12.6 23.6 0c2.5-11.1 12.3-18.9 23.6-18.9h2c14.7 0 26.6 11.9 26.6 26.6V416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-wide": { + "aliases": { + "names": [ + "grin-alt" + ], + "unicodes": { + "composite": [ + "1f603" + ], + "secondary": [ + "10f581" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "grinning face with big eyes", + "laugh", + "mouth", + "open", + "smile" + ] + }, + "unicode": "f581", + "label": "Face Grin Wide", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zM208 192c0 35.3-14.3 64-32 64s-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64zm128 64c-17.7 0-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64s-14.3 64-32 64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM224 192c0 35.3-14.3 64-32 64s-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64zm96 64c-17.7 0-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64s-14.3 64-32 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-grin-wink": { + "aliases": { + "names": [ + "grin-wink" + ], + "unicodes": { + "secondary": [ + "10f58c" + ] + } + }, + "changes": [ + "5.1.0", + "5.1.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "flirt", + "laugh", + "smile" + ] + }, + "unicode": "f58c", + "label": "Face Grin Wink", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zm-16.9-79.2c-17.6-23.5-52.8-23.5-70.4 0c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm165.8 21.7c-7.6 8.1-20.2 8.5-28.3 .9s-8.5-20.2-.9-28.3c14.5-15.5 35.2-22.3 54.6-22.3s40.1 6.8 54.6 22.3c7.6 8.1 7.1 20.7-.9 28.3s-20.7 7.1-28.3-.9c-5.5-5.8-14.8-9.7-25.4-9.7s-19.9 3.8-25.4 9.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-kiss": { + "aliases": { + "names": [ + "kiss" + ], + "unicodes": { + "composite": [ + "1f617" + ], + "secondary": [ + "10f596" + ] + } + }, + "changes": [ + "5.1.0", + "5.1.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "face", + "kiss", + "kissing face", + "love", + "smooch" + ] + }, + "unicode": "f596", + "label": "Face Kiss", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm48.7-198.3c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 443.1 257.4 448 240 448c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1 .3-.2 .6-.4c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.4-.3-.5-.3-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm304.7 25.7c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 411.1 257.4 416 240 416c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.8-.5-.1-.1-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-kiss-beam": { + "aliases": { + "names": [ + "kiss-beam" + ], + "unicodes": { + "composite": [ + "1f619" + ], + "secondary": [ + "10f597" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "eye", + "face", + "kiss", + "kissing face with smiling eyes", + "love", + "smile", + "smooch" + ] + }, + "unicode": "f597", + "label": "Face Kiss Beam", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm48.7-198.3c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 443.1 257.4 448 240 448c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1 .3-.2 .6-.4c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.4-.3-.5-.3-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zm-87.1-84.9l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm304.7 41.7c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 427.1 257.4 432 240 432c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zm-87.1-68.9l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-kiss-wink-heart": { + "aliases": { + "names": [ + "kiss-wink-heart" + ], + "unicodes": { + "composite": [ + "1f618" + ], + "secondary": [ + "10f598" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "face", + "face blowing a kiss", + "kiss", + "love", + "smooch" + ] + }, + "unicode": "f598", + "label": "Face Kiss Wink Heart", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M498 339.7c9.1-26.2 14-54.4 14-83.7C512 114.6 397.4 0 256 0S0 114.6 0 256S114.6 512 256 512c35.4 0 69.1-7.2 99.7-20.2c-4.8-5.5-8.5-12.2-10.4-19.7l-22.9-89.3c-10-39 11.8-80.9 51.8-92.1c37.2-10.4 73.8 10.1 87.5 44c12.7-1.6 25.1 .4 36.2 5zM296 332c0 6.9-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C258.7 443.1 241.4 448 224 448c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.6-.4-.3-.2-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm194.8 57.6c-17.6-23.5-52.8-23.5-70.4 0c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2zM434 352.3c-6-23.2-28.8-37-51.1-30.8s-35.4 30.1-29.5 53.4l22.9 89.3c2.2 8.7 11.2 13.9 19.8 11.4l84.9-23.8c22.2-6.2 35.4-30.1 29.5-53.4s-28.8-37-51.1-30.8l-20.2 5.6-5.4-21z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M338.9 446.8c-25.4 11-53.4 17.2-82.9 17.2C141.1 464 48 370.9 48 256S141.1 48 256 48s208 93.1 208 208c0 22.4-3.5 43.9-10.1 64.1c3.1 4.5 5.7 9.4 7.8 14.6c12.7-1.6 25.1 .4 36.2 5c9.1-26.2 14-54.4 14-83.7C512 114.6 397.4 0 256 0S0 114.6 0 256S114.6 512 256 512c35.4 0 69.1-7.2 99.7-20.2c-4.8-5.5-8.5-12.2-10.4-19.7l-6.5-25.3zM296 316c0-6.9-3.1-13.2-7.3-18.3c-4.3-5.2-10.1-9.7-16.7-13.4C258.7 276.9 241.4 272 224 272c-3.6 0-6.8 2.5-7.7 6s.6 7.2 3.8 9l0 0 0 0 0 0 .2 .1c.2 .1 .5 .3 .9 .5c.8 .5 2 1.2 3.4 2.1c2.8 1.9 6.5 4.5 10.2 7.6c3.7 3.1 7.2 6.6 9.6 10.1c2.5 3.5 3.5 6.4 3.5 8.6s-1 5-3.5 8.6c-2.5 3.5-5.9 6.9-9.6 10.1c-3.7 3.1-7.4 5.7-10.2 7.6c-1.4 .9-2.6 1.6-3.4 2.1c-.4 .2-.7 .4-.9 .5l-.2 .1 0 0 0 0 0 0 0 0 0 0c-2.5 1.4-4.1 4.1-4.1 7s1.6 5.6 4.1 7l0 0 0 0 0 0 .2 .1c.2 .1 .5 .3 .9 .5c.8 .5 2 1.2 3.4 2.1c2.8 1.9 6.5 4.5 10.2 7.6c3.7 3.1 7.2 6.6 9.6 10.1c2.5 3.5 3.5 6.4 3.5 8.6s-1 5-3.5 8.6c-2.5 3.5-5.9 6.9-9.6 10.1c-3.7 3.1-7.4 5.7-10.2 7.6c-1.4 .9-2.6 1.6-3.4 2.1c-.4 .2-.7 .4-.9 .5l-.2 .1 0 0 0 0 0 0 0 0c-3.2 1.8-4.7 5.5-3.8 9s4.1 6 7.7 6c17.4 0 34.7-4.9 47.9-12.3c6.6-3.7 12.5-8.2 16.7-13.4c4.3-5.1 7.3-11.4 7.3-18.3s-3.1-13.2-7.3-18.3c-4.3-5.2-10.1-9.7-16.7-13.4c-2.7-1.5-5.7-3-8.7-4.3c3.1-1.3 6-2.7 8.7-4.3c6.6-3.7 12.5-8.2 16.7-13.4c4.3-5.1 7.3-11.4 7.3-18.3zM176.4 240a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm159.3-20c10.6 0 19.9 3.8 25.4 9.7c7.6 8.1 20.2 8.5 28.3 .9s8.5-20.2 .9-28.3C375.7 186.8 355 180 335.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7 .9 28.3s20.7 7.1 28.3-.9c5.5-5.8 14.8-9.7 25.4-9.7zM434 352.3c-6-23.2-28.8-37-51.1-30.8s-35.4 30.1-29.5 53.4l22.9 89.3c2.2 8.7 11.2 13.9 19.8 11.4l84.9-23.8c22.2-6.2 35.4-30.1 29.5-53.4s-28.8-37-51.1-30.8l-20.2 5.6-5.4-21z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-laugh": { + "aliases": { + "names": [ + "laugh" + ], + "unicodes": { + "secondary": [ + "10f599" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "laugh", + "smile" + ] + }, + "unicode": "f599", + "label": "Face Laugh", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zM144.4 192a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9H364.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1zM144.4 192a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-laugh-beam": { + "aliases": { + "names": [ + "laugh-beam" + ], + "unicodes": { + "composite": [ + "1f601" + ], + "secondary": [ + "10f59a" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "beaming face with smiling eyes", + "emoticon", + "eye", + "face", + "grin", + "happy", + "smile" + ] + }, + "unicode": "f59a", + "label": "Face Laugh Beam", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zM217.6 212.8l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9H364.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1zm86.9-85.1l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-laugh-squint": { + "aliases": { + "names": [ + "laugh-squint" + ], + "unicodes": { + "secondary": [ + "10f59b" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "happy", + "smile" + ] + }, + "unicode": "f59b", + "label": "Face Laugh Squint", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zm36.7-199.4l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 125.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9H364.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1zm2.8-183.3l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 141.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-laugh-wink": { + "aliases": { + "names": [ + "laugh-wink" + ], + "unicodes": { + "secondary": [ + "10f59c" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "happy", + "smile" + ] + }, + "unicode": "f59c", + "label": "Face Laugh Wink", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zM144.4 192a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm156.4 25.6c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2c-17.6-23.5-52.8-23.5-70.4 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9H364.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1zM144.4 192a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm165.8 21.7c-7.6 8.1-20.2 8.5-28.3 .9s-8.5-20.2-.9-28.3c14.5-15.5 35.2-22.3 54.6-22.3s40.1 6.8 54.6 22.3c7.6 8.1 7.1 20.7-.9 28.3s-20.7 7.1-28.3-.9c-5.5-5.8-14.8-9.7-25.4-9.7s-19.9 3.8-25.4 9.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-meh": { + "aliases": { + "names": [ + "meh" + ], + "unicodes": { + "composite": [ + "1f610" + ], + "secondary": [ + "10f11a" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.9", + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "deadpan", + "emoticon", + "face", + "meh", + "neutral", + "neutral face", + "rating" + ] + }, + "unicode": "f11a", + "label": "Face Meh", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM160 336H352c8.8 0 16 7.2 16 16s-7.2 16-16 16H160c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM176.4 240a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm192-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM184 328c-13.3 0-24 10.7-24 24s10.7 24 24 24H328c13.3 0 24-10.7 24-24s-10.7-24-24-24H184z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-meh-blank": { + "aliases": { + "names": [ + "meh-blank" + ], + "unicodes": { + "composite": [ + "1f636" + ], + "secondary": [ + "10f5a4" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "face without mouth", + "mouth", + "neutral", + "quiet", + "rating", + "silent" + ] + }, + "unicode": "f5a4", + "label": "Face Meh Blank", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm208.4-48a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm128 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 0 0 416 208 208 0 1 0 0-416zM512 256A256 256 0 1 1 0 256a256 256 0 1 1 512 0zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-rolling-eyes": { + "aliases": { + "names": [ + "meh-rolling-eyes" + ], + "unicodes": { + "composite": [ + "1f644" + ], + "secondary": [ + "10f5a5" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "eyeroll", + "eyes", + "face", + "face with rolling eyes", + "neutral", + "rating", + "rolling" + ] + }, + "unicode": "f5a5", + "label": "Face Rolling Eyes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM192 368H320c8.8 0 16 7.2 16 16s-7.2 16-16 16H192c-8.8 0-16-7.2-16-16s7.2-16 16-16zm32-144c0 35.3-28.7 64-64 64s-64-28.7-64-64c0-26 15.5-48.4 37.8-58.4c-3.7 5.2-5.8 11.6-5.8 18.4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.9-2.2-13.2-5.8-18.4C208.5 175.6 224 198 224 224zm128 64c-35.3 0-64-28.7-64-64c0-26 15.5-48.4 37.8-58.4c-3.7 5.2-5.8 11.6-5.8 18.4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.9-2.2-13.2-5.8-18.4C400.5 175.6 416 198 416 224c0 35.3-28.7 64-64 64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM168 376c0 13.3 10.7 24 24 24H320c13.3 0 24-10.7 24-24s-10.7-24-24-24H192c-13.3 0-24 10.7-24 24zm-8-104c-26.5 0-48-21.5-48-48c0-14.3 6.3-27.2 16.2-36c-.2 1.3-.2 2.6-.2 4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-1.4-.1-2.7-.2-4c10 8.8 16.2 21.7 16.2 36c0 26.5-21.5 48-48 48zm0 32a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm192-32c-26.5 0-48-21.5-48-48c0-14.3 6.3-27.2 16.2-36c-.2 1.3-.2 2.6-.2 4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-1.4-.1-2.7-.2-4c10 8.8 16.2 21.7 16.2 36c0 26.5-21.5 48-48 48zm0 32a80 80 0 1 0 0-160 80 80 0 1 0 0 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-sad-cry": { + "aliases": { + "names": [ + "sad-cry" + ], + "unicodes": { + "composite": [ + "1f62d" + ], + "secondary": [ + "10f5b3" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cry", + "emoticon", + "face", + "loudly crying face", + "sad", + "sob", + "tear", + "tears" + ] + }, + "unicode": "f5b3", + "label": "Face Sad Cry", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 493.4c-29.6 12-62.1 18.6-96 18.6s-66.4-6.6-96-18.6V288c0-8.8-7.2-16-16-16s-16 7.2-16 16V477.8C51.5 433.5 0 350.8 0 256C0 114.6 114.6 0 256 0S512 114.6 512 256c0 94.8-51.5 177.5-128 221.8V288c0-8.8-7.2-16-16-16s-16 7.2-16 16V493.4zM195.2 233.6c5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0c-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2c17.6-23.5 52.8-23.5 70.4 0zm121.6 0c17.6-23.5 52.8-23.5 70.4 0c5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0c-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2zM208 336v32c0 26.5 21.5 48 48 48s48-21.5 48-48V336c0-26.5-21.5-48-48-48s-48 21.5-48 48z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M400 406.1V288c0-13.3-10.7-24-24-24s-24 10.7-24 24V440.6c-28.7 15-61.4 23.4-96 23.4s-67.3-8.5-96-23.4V288c0-13.3-10.7-24-24-24s-24 10.7-24 24V406.1C72.6 368.2 48 315 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208c0 59-24.6 112.2-64 150.1zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM159.6 220c10.6 0 19.9 3.8 25.4 9.7c7.6 8.1 20.2 8.5 28.3 .9s8.5-20.2 .9-28.3C199.7 186.8 179 180 159.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7 .9 28.3s20.7 7.1 28.3-.9c5.5-5.8 14.8-9.7 25.4-9.7zm166.6 9.7c5.5-5.8 14.8-9.7 25.4-9.7s19.9 3.8 25.4 9.7c7.6 8.1 20.2 8.5 28.3 .9s8.5-20.2 .9-28.3C391.7 186.8 371 180 351.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7 .9 28.3s20.7 7.1 28.3-.9zM208 320v32c0 26.5 21.5 48 48 48s48-21.5 48-48V320c0-26.5-21.5-48-48-48s-48 21.5-48 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-sad-tear": { + "aliases": { + "names": [ + "sad-tear" + ], + "unicodes": { + "composite": [ + "1f622" + ], + "secondary": [ + "10f5b4" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cry", + "crying face", + "emoticon", + "face", + "sad", + "tear", + "tears" + ] + }, + "unicode": "f5b4", + "label": "Face Sad Tear", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zm240 80c0-8.8 7.2-16 16-16c45 0 85.6 20.5 115.7 53.1c6 6.5 5.6 16.6-.9 22.6s-16.6 5.6-22.6-.9c-25-27.1-57.4-42.9-92.3-42.9c-8.8 0-16-7.2-16-16zm-80 80c-26.5 0-48-21-48-47c0-20 28.6-60.4 41.6-77.7c3.2-4.4 9.6-4.4 12.8 0C179.6 308.6 208 349 208 369c0 26-21.5 47-48 47zM367.6 208a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm-192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M175.9 448c-35-.1-65.5-22.6-76-54.6C67.6 356.8 48 308.7 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208s-93.1 208-208 208c-28.4 0-55.5-5.7-80.1-16zM0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM128 369c0 26 21.5 47 48 47s48-21 48-47c0-20-28.4-60.4-41.6-77.7c-3.2-4.4-9.6-4.4-12.8 0C156.6 308.6 128 349 128 369zm128-65c-13.3 0-24 10.7-24 24s10.7 24 24 24c30.7 0 58.7 11.5 80 30.6c9.9 8.8 25 8 33.9-1.9s8-25-1.9-33.9C338.3 320.2 299 304 256 304zm47.6-96a32 32 0 1 0 64 0 32 32 0 1 0 -64 0zm-128 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-smile": { + "aliases": { + "names": [ + "smile" + ], + "unicodes": { + "composite": [ + "1f642" + ], + "secondary": [ + "10f118" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.9", + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "approve", + "emoticon", + "face", + "happy", + "rating", + "satisfied", + "slightly smiling face", + "smile" + ] + }, + "unicode": "f118", + "label": "Face Smile", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-smile-beam": { + "aliases": { + "names": [ + "smile-beam" + ], + "unicodes": { + "composite": [ + "1f60a" + ], + "secondary": [ + "10f5b8" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blush", + "emoticon", + "eye", + "face", + "happy", + "positive", + "smile", + "smiling face with smiling eyes" + ] + }, + "unicode": "f5b8", + "label": "Face Smile Beam", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zm53.5-96.7l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zm40-89.3l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-smile-wink": { + "aliases": { + "names": [ + "smile-wink" + ], + "unicodes": { + "composite": [ + "1f609" + ], + "secondary": [ + "10f4da" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "happy", + "hint", + "joke", + "wink", + "winking face" + ] + }, + "unicode": "f4da", + "label": "Face Smile Wink", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm156.4 25.6c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2c-17.6-23.5-52.8-23.5-70.4 0z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm165.8 21.7c-7.6 8.1-20.2 8.5-28.3 .9s-8.5-20.2-.9-28.3c14.5-15.5 35.2-22.3 54.6-22.3s40.1 6.8 54.6 22.3c7.6 8.1 7.1 20.7-.9 28.3s-20.7 7.1-28.3-.9c-5.5-5.8-14.8-9.7-25.4-9.7s-19.9 3.8-25.4 9.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-surprise": { + "aliases": { + "names": [ + "surprise" + ], + "unicodes": { + "composite": [ + "1f62e" + ], + "secondary": [ + "10f5c2" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "face with open mouth", + "mouth", + "open", + "shocked", + "sympathy" + ] + }, + "unicode": "f5c2", + "label": "Face Surprise", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM256 288a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm176.4-80a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM256 288a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "face-tired": { + "aliases": { + "names": [ + "tired" + ], + "unicodes": { + "composite": [ + "1f62b" + ], + "secondary": [ + "10f5c8" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "angry", + "emoticon", + "face", + "grumpy", + "tired", + "tired face", + "upset" + ] + }, + "unicode": "f5c8", + "label": "Face Tired", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.7 328.7c22-22 53.9-40.7 91.3-40.7s69.3 18.7 91.3 40.7c11.1 11.1 20.1 23.4 26.4 35.4c6.2 11.7 10.3 24.4 10.3 35.9c0 5.2-2.6 10.2-6.9 13.2s-9.8 3.7-14.7 1.8l-20.5-7.7c-26.9-10.1-55.5-15.3-84.3-15.3h-3.2c-28.8 0-57.3 5.2-84.3 15.3L149.6 415c-4.9 1.8-10.4 1.2-14.7-1.8s-6.9-7.9-6.9-13.2c0-11.6 4.2-24.2 10.3-35.9c6.3-12 15.3-24.3 26.4-35.4zm-31.2-182l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + }, + "regular": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm176.5 64.3C196.1 302.1 223.8 288 256 288s59.9 14.1 79.5 32.3C354.5 338.1 368 362 368 384c0 5.4-2.7 10.4-7.2 13.4s-10.2 3.4-15.2 1.3l-17.2-7.5c-22.8-10-47.5-15.1-72.4-15.1s-49.6 5.2-72.4 15.1l-17.2 7.5c-4.9 2.2-10.7 1.7-15.2-1.3s-7.2-8-7.2-13.4c0-22 13.5-45.9 32.5-63.7zm-43-173.6l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "facebook": { + "aliases": { + "unicodes": { + "composite": [ + "f230" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [ + "facebook-official", + "social network" + ] + }, + "unicode": "f09a", + "label": "Facebook", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "facebook-f": { + "changes": [ + "5.0.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [ + "facebook" + ] + }, + "unicode": "f39e", + "label": "Facebook F", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "facebook-messenger": { + "changes": [ + "5.0.0", + "5.8.2", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f39f", + "label": "Facebook Messenger", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256.55 8C116.52 8 8 110.34 8 248.57c0 72.3 29.71 134.78 78.07 177.94 8.35 7.51 6.63 11.86 8.05 58.23A19.92 19.92 0 0 0 122 502.31c52.91-23.3 53.59-25.14 62.56-22.7C337.85 521.8 504 423.7 504 248.57 504 110.34 396.59 8 256.55 8zm149.24 185.13l-73 115.57a37.37 37.37 0 0 1-53.91 9.93l-58.08-43.47a15 15 0 0 0-18 0l-78.37 59.44c-10.46 7.93-24.16-4.6-17.11-15.67l73-115.57a37.36 37.36 0 0 1 53.91-9.93l58.06 43.46a15 15 0 0 0 18 0l78.41-59.38c10.44-7.98 24.14 4.54 17.09 15.62z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fan": { + "aliases": { + "unicodes": { + "secondary": [ + "10f863" + ] + } + }, + "changes": [ + "5.9.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ac", + "air conditioning", + "blade", + "blower", + "cool", + "hot" + ] + }, + "unicode": "f863", + "label": "Fan", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M258.6 0c-1.7 0-3.4 .1-5.1 .5C168 17 115.6 102.3 130.5 189.3c2.9 17 8.4 32.9 15.9 47.4L32 224H29.4C13.2 224 0 237.2 0 253.4c0 1.7 .1 3.4 .5 5.1C17 344 102.3 396.4 189.3 381.5c17-2.9 32.9-8.4 47.4-15.9L224 480v2.6c0 16.2 13.2 29.4 29.4 29.4c1.7 0 3.4-.1 5.1-.5C344 495 396.4 409.7 381.5 322.7c-2.9-17-8.4-32.9-15.9-47.4L480 288h2.6c16.2 0 29.4-13.2 29.4-29.4c0-1.7-.1-3.4-.5-5.1C495 168 409.7 115.6 322.7 130.5c-17 2.9-32.9 8.4-47.4 15.9L288 32V29.4C288 13.2 274.8 0 258.6 0zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fantasy-flight-games": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "game", + "gaming", + "tabletop" + ] + }, + "unicode": "f6dc", + "label": "Fantasy Flight-games", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 32.86L32.86 256 256 479.14 479.14 256 256 32.86zM88.34 255.83c1.96-2 11.92-12.3 96.49-97.48 41.45-41.75 86.19-43.77 119.77-18.69 24.63 18.4 62.06 58.9 62.15 59 .68.74 1.07 2.86.58 3.38-11.27 11.84-22.68 23.54-33.5 34.69-34.21-32.31-40.52-38.24-48.51-43.95-17.77-12.69-41.4-10.13-56.98 5.1-2.17 2.13-1.79 3.43.12 5.35 2.94 2.95 28.1 28.33 35.09 35.78-11.95 11.6-23.66 22.97-35.69 34.66-12.02-12.54-24.48-25.53-36.54-38.11-21.39 21.09-41.69 41.11-61.85 60.99zm234.82 101.6c-35.49 35.43-78.09 38.14-106.99 20.47-22.08-13.5-39.38-32.08-72.93-66.84 12.05-12.37 23.79-24.42 35.37-36.31 33.02 31.91 37.06 36.01 44.68 42.09 18.48 14.74 42.52 13.67 59.32-1.8 3.68-3.39 3.69-3.64.14-7.24-10.59-10.73-21.19-21.44-31.77-32.18-1.32-1.34-3.03-2.48-.8-4.69 10.79-10.71 21.48-21.52 32.21-32.29.26-.26.65-.38 1.91-1.07 12.37 12.87 24.92 25.92 37.25 38.75 21.01-20.73 41.24-40.68 61.25-60.42 13.68 13.4 27.13 26.58 40.86 40.03-20.17 20.86-81.68 82.71-100.5 101.5zM256 0L0 256l256 256 256-256L256 0zM16 256L256 16l240 240-240 240L16 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "faucet": { + "aliases": { + "unicodes": { + "secondary": [ + "10e005" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "drinking", + "drip", + "house", + "hygiene", + "kitchen", + "potable", + "potable water", + "sanitation", + "sink", + "water" + ] + }, + "unicode": "e005", + "label": "Faucet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 96v12L96 96c-17.7 0-32 14.3-32 32s14.3 32 32 32l96-12 31-3.9 1-.1 1 .1 31 3.9 96 12c17.7 0 32-14.3 32-32s-14.3-32-32-32l-96 12V96c0-17.7-14.3-32-32-32s-32 14.3-32 32zM32 256c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H132.1c20.2 29 53.9 48 91.9 48s71.7-19 91.9-48H352c17.7 0 32 14.3 32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32c0-88.4-71.6-160-160-160H320l-22.6-22.6c-6-6-14.1-9.4-22.6-9.4H256V180.2l-32-4-32 4V224H173.3c-8.5 0-16.6 3.4-22.6 9.4L128 256H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "faucet-drip": { + "aliases": { + "unicodes": { + "composite": [ + "1f6b0" + ], + "secondary": [ + "10e006" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drinking", + "drip", + "house", + "hygiene", + "kitchen", + "potable", + "potable water", + "sanitation", + "sink", + "water" + ] + }, + "unicode": "e006", + "label": "Faucet Drip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 0c17.7 0 32 14.3 32 32V44l96-12c17.7 0 32 14.3 32 32s-14.3 32-32 32L256 84l-31-3.9-1-.1-1 .1L192 84 96 96C78.3 96 64 81.7 64 64s14.3-32 32-32l96 12V32c0-17.7 14.3-32 32-32zM0 224c0-17.7 14.3-32 32-32h96l22.6-22.6c6-6 14.1-9.4 22.6-9.4H192V116.2l32-4 32 4V160h18.7c8.5 0 16.6 3.4 22.6 9.4L320 192h32c88.4 0 160 71.6 160 160c0 17.7-14.3 32-32 32H416c-17.7 0-32-14.3-32-32s-14.3-32-32-32H315.9c-20.2 29-53.9 48-91.9 48s-71.7-19-91.9-48H32c-17.7 0-32-14.3-32-32V224zM436.8 423.4c1.9-4.5 6.3-7.4 11.2-7.4s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V480c0 17.7-14.3 32-32 32s-32-14.3-32-32v-1.2c0-4.5 .9-8.9 2.7-13.1l18.2-42.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fax": { + "aliases": { + "unicodes": { + "composite": [ + "1f4e0", + "1f5b7" + ], + "secondary": [ + "10f1ac" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.3.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Fax Icon", + "business", + "communicate", + "copy", + "facsimile", + "fax", + "fax machine", + "send" + ] + }, + "unicode": "f1ac", + "label": "Fax", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 64v96h64V64H386.7L416 93.3V160h64V93.3c0-17-6.7-33.3-18.7-45.3L432 18.7C420 6.7 403.7 0 386.7 0H192c-35.3 0-64 28.7-64 64zM0 160V480c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32zm480 32H128V480c0 17.7 14.3 32 32 32H480c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32zM256 256a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm96 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm32 96a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM224 416a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "feather": { + "aliases": { + "unicodes": { + "composite": [ + "1fab6" + ], + "secondary": [ + "10f52d" + ] + } + }, + "changes": [ + "5.0.13", + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "feather", + "flight", + "light", + "plucked", + "plumage", + "quill", + "write" + ] + }, + "unicode": "f52d", + "label": "Feather", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M278.5 215.6L23 471c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l57-57h68c49.7 0 97.9-14.4 139-41c11.1-7.2 5.5-23-7.8-23c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l81-24.3c2.5-.8 4.8-2.1 6.7-4l22.4-22.4c10.1-10.1 2.9-27.3-11.3-27.3l-32.2 0c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l112-33.6c4-1.2 7.4-3.9 9.3-7.7C506.4 207.6 512 184.1 512 160c0-41-16.3-80.3-45.3-109.3l-5.5-5.5C432.3 16.3 393 0 352 0s-80.3 16.3-109.3 45.3L139 149C91 197 64 262.1 64 330v55.3L253.6 195.8c6.2-6.2 16.4-6.2 22.6 0c5.4 5.4 6.1 13.6 2.2 19.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "feather-pointed": { + "aliases": { + "names": [ + "feather-alt" + ], + "unicodes": { + "secondary": [ + "10f56b" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "light", + "plucked", + "quill", + "write" + ] + }, + "unicode": "f56b", + "label": "Feather Pointed", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M278.5 215.6L23 471c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l74.8-74.8c7.4 4.6 15.3 8.2 23.8 10.5C200.3 452.8 270 454.5 338 409.4c12.2-8.1 5.8-25.4-8.8-25.4l-16.1 0c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l97.7-29.3c3.4-1 6.4-3.1 8.4-6.1c4.4-6.4 8.6-12.9 12.6-19.6c6.2-10.3-1.5-23-13.5-23l-38.6 0c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l80.9-24.3c4.6-1.4 8.4-4.8 10.2-9.3C494.5 163 507.8 86.1 511.9 36.8c.8-9.9-3-19.6-10-26.6s-16.7-10.8-26.6-10C391.5 7 228.5 40.5 137.4 131.6C57.3 211.7 56.7 302.3 71.3 356.4c2.1 7.9 12 9.6 17.8 3.8L253.6 195.8c6.2-6.2 16.4-6.2 22.6 0c5.4 5.4 6.1 13.6 2.2 19.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fedex": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Federal Express", + "package", + "shipping" + ] + }, + "unicode": "f797", + "label": "FedEx", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M586 284.5l53.3-59.9h-62.4l-21.7 24.8-22.5-24.8H414v-16h56.1v-48.1H318.9V236h-.5c-9.6-11-21.5-14.8-35.4-14.8-28.4 0-49.8 19.4-57.3 44.9-18-59.4-97.4-57.6-121.9-14v-24.2H49v-26.2h60v-41.1H0V345h49v-77.5h48.9c-1.5 5.7-2.3 11.8-2.3 18.2 0 73.1 102.6 91.4 130.2 23.7h-42c-14.7 20.9-45.8 8.9-45.8-14.6h85.5c3.7 30.5 27.4 56.9 60.1 56.9 14.1 0 27-6.9 34.9-18.6h.5V345h212.2l22.1-25 22.3 25H640l-54-60.5zm-446.7-16.6c6.1-26.3 41.7-25.6 46.5 0h-46.5zm153.4 48.9c-34.6 0-34-62.8 0-62.8 32.6 0 34.5 62.8 0 62.8zm167.8 19.1h-94.4V169.4h95v30.2H405v33.9h55.5v28.1h-56.1v44.7h56.1v29.6zm-45.9-39.8v-24.4h56.1v-44l50.7 57-50.7 57v-45.6h-56.1zm138.6 10.3l-26.1 29.5H489l45.6-51.2-45.6-51.2h39.7l26.6 29.3 25.6-29.3h38.5l-45.4 51 46 51.4h-40.5l-26.3-29.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fedora": { + "changes": [ + "5.6.0", + "5.6.3", + "5.8.0", + "6.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "unicode": "f798", + "label": "Fedora", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M.0413 255.8C.1219 132.2 100.3 32 224 32C347.7 32 448 132.3 448 256C448 379.7 347.8 479.9 224.1 480H50.93C22.84 480 .0832 457.3 .0416 429.2H0V255.8H.0413zM342.6 192.7C342.6 153 307 124.2 269.4 124.2C234.5 124.2 203.6 150.5 199.3 184.1C199.1 187.9 198.9 189.1 198.9 192.6C198.8 213.7 198.9 235.4 198.1 257C199 283.1 199.1 309.1 198.1 333.6C198.1 360.7 178.7 379.1 153.4 379.1C128.1 379.1 107.6 358.9 107.6 333.6C108.1 305.9 130.2 288.3 156.1 287.5H156.3L182.6 287.3V250L156.3 250.2C109.2 249.8 71.72 286.7 70.36 333.6C70.36 379.2 107.9 416.5 153.4 416.5C196.4 416.5 232.1 382.9 236 340.9L236.2 287.4L268.8 287.1C294.1 287.3 293.8 249.3 268.6 249.8L236.2 250.1C236.2 243.7 236.3 237.3 236.3 230.9C236.4 218.2 236.4 205.5 236.2 192.7C236.3 176.2 252 161.5 269.4 161.5C286.9 161.5 305.3 170.2 305.3 192.7C305.3 195.9 305.2 197.8 305 199C303.1 209.5 310.2 219.4 320.7 220.9C331.3 222.4 340.9 214.8 341.9 204.3C342.5 200.1 342.6 196.4 342.6 192.7H342.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ferry": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barge", + "boat", + "carry", + "ferryboat", + "ship" + ] + }, + "unicode": "e4ea", + "label": "Ferry", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M224 0H352c17.7 0 32 14.3 32 32h75.1c20.6 0 31.6 24.3 18.1 39.8L456 96H120L98.8 71.8C85.3 56.3 96.3 32 116.9 32H192c0-17.7 14.3-32 32-32zM96 128H480c17.7 0 32 14.3 32 32V283.5c0 13.3-4.2 26.3-11.9 37.2l-51.4 71.9c-1.9 1.1-3.7 2.2-5.5 3.5c-15.5 10.7-34 18-51 19.9H375.6c-17.1-1.8-35-9-50.8-19.9c-22.1-15.5-51.6-15.5-73.7 0c-14.8 10.2-32.5 18-50.6 19.9H183.9c-17-1.8-35.6-9.2-51-19.9c-1.8-1.3-3.7-2.4-5.6-3.5L75.9 320.7C68.2 309.8 64 296.8 64 283.5V160c0-17.7 14.3-32 32-32zm32 64v96H448V192H128zM306.5 421.9C329 437.4 356.5 448 384 448c26.9 0 55.3-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 501.7 417 512 384 512c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 437.2 165.1 448 192 448c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "figma": { + "changes": [ + "5.6.0", + "5.7.0", + "5.8.0", + "5.15.4", + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "design", + "interface" + ] + }, + "unicode": "f799", + "label": "Figma", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M14 95.7924C14 42.8877 56.8878 0 109.793 0H274.161C327.066 0 369.954 42.8877 369.954 95.7924C369.954 129.292 352.758 158.776 326.711 175.897C352.758 193.019 369.954 222.502 369.954 256.002C369.954 308.907 327.066 351.795 274.161 351.795H272.081C247.279 351.795 224.678 342.369 207.666 326.904V415.167C207.666 468.777 163.657 512 110.309 512C57.5361 512 14 469.243 14 416.207C14 382.709 31.1945 353.227 57.2392 336.105C31.1945 318.983 14 289.5 14 256.002C14 222.502 31.196 193.019 57.2425 175.897C31.196 158.776 14 129.292 14 95.7924ZM176.288 191.587H109.793C74.2172 191.587 45.3778 220.427 45.3778 256.002C45.3778 291.44 73.9948 320.194 109.381 320.416C109.518 320.415 109.655 320.415 109.793 320.415H176.288V191.587ZM207.666 256.002C207.666 291.577 236.505 320.417 272.081 320.417H274.161C309.737 320.417 338.576 291.577 338.576 256.002C338.576 220.427 309.737 191.587 274.161 191.587H272.081C236.505 191.587 207.666 220.427 207.666 256.002ZM109.793 351.795C109.655 351.795 109.518 351.794 109.381 351.794C73.9948 352.015 45.3778 380.769 45.3778 416.207C45.3778 451.652 74.6025 480.622 110.309 480.622C146.591 480.622 176.288 451.186 176.288 415.167V351.795H109.793ZM109.793 31.3778C74.2172 31.3778 45.3778 60.2173 45.3778 95.7924C45.3778 131.368 74.2172 160.207 109.793 160.207H176.288V31.3778H109.793ZM207.666 160.207H274.161C309.737 160.207 338.576 131.368 338.576 95.7924C338.576 60.2173 309.737 31.3778 274.161 31.3778H207.666V160.207Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "file": { + "aliases": { + "unicodes": { + "composite": [ + "1f4c4", + "1f5cb", + "f016" + ], + "secondary": [ + "10f15b" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Empty Document", + "document", + "new", + "page", + "page facing up", + "pdf", + "resume" + ] + }, + "unicode": "f15b", + "label": "File", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 464c8.8 0 16-7.2 16-16V160H256c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320zM0 64C0 28.7 28.7 0 64 0H229.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-arrow-down": { + "aliases": { + "names": [ + "file-download" + ], + "unicodes": { + "secondary": [ + "10f56d" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "export", + "save" + ] + }, + "unicode": "f56d", + "label": "File Arrow Down", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM216 232V334.1l31-31c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-72 72c-9.4 9.4-24.6 9.4-33.9 0l-72-72c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l31 31V232c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-arrow-up": { + "aliases": { + "names": [ + "file-upload" + ], + "unicodes": { + "secondary": [ + "10f574" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "import", + "page", + "save" + ] + }, + "unicode": "f574", + "label": "File Arrow Up", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM216 408c0 13.3-10.7 24-24 24s-24-10.7-24-24V305.9l-31 31c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l72-72c9.4-9.4 24.6-9.4 33.9 0l72 72c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-31-31V408z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-audio": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c7" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "mp3", + "music", + "page", + "play", + "sound" + ] + }, + "unicode": "f1c7", + "label": "File Audio", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zm2 226.3c37.1 22.4 62 63.1 62 109.7s-24.9 87.3-62 109.7c-7.6 4.6-17.4 2.1-22-5.4s-2.1-17.4 5.4-22C269.4 401.5 288 370.9 288 336s-18.6-65.5-46.5-82.3c-7.6-4.6-10-14.4-5.4-22s14.4-10 22-5.4zm-91.9 30.9c6 2.5 9.9 8.3 9.9 14.8V400c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5L113.4 376H80c-8.8 0-16-7.2-16-16V312c0-8.8 7.2-16 16-16h33.4l35.3-35.3c4.6-4.6 11.5-5.9 17.4-3.5zm51 34.9c6.6-5.9 16.7-5.3 22.6 1.3C249.8 304.6 256 319.6 256 336s-6.2 31.4-16.3 42.7c-5.9 6.6-16 7.1-22.6 1.3s-7.1-16-1.3-22.6c5.1-5.7 8.1-13.1 8.1-21.3s-3.1-15.7-8.1-21.3c-5.9-6.6-5.3-16.7 1.3-22.6z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464H320c8.8 0 16-7.2 16-16V160H256c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16zM0 64C0 28.7 28.7 0 64 0H229.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM192 272V400c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5L129.4 376H112c-8.8 0-16-7.2-16-16V312c0-8.8 7.2-16 16-16h17.4l35.3-35.3c4.6-4.6 11.5-5.9 17.4-3.5s9.9 8.3 9.9 14.8zm85.8-4c11.6 20 18.2 43.3 18.2 68s-6.6 48-18.2 68c-6.6 11.5-21.3 15.4-32.8 8.8s-15.4-21.3-8.8-32.8c7.5-12.9 11.8-27.9 11.8-44s-4.3-31.1-11.8-44c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-circle-check": { + "changes": [ + "6.0.0", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "not affected", + "ok", + "okay", + "paper" + ] + }, + "unicode": "e5a0", + "label": "File Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM288 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L416 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "paper" + ] + }, + "unicode": "e4eb", + "label": "File Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-circle-minus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "paper" + ] + }, + "unicode": "e4ed", + "label": "File Circle Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM288 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm224 0c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16s7.2 16 16 16H496c8.8 0 16-7.2 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-circle-plus": { + "aliases": { + "unicodes": { + "composite": [ + "e4ee" + ] + } + }, + "changes": [ + "6.0.0", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "document", + "file", + "new", + "page", + "paper", + "pdf" + ] + }, + "unicode": "e494", + "label": "File Circle Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm16 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H368c-8.8 0-16 7.2-16 16s7.2 16 16 16h48v48c0 8.8 7.2 16 16 16s16-7.2 16-16V384h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H448V304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-circle-question": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "paper" + ] + }, + "unicode": "e4ef", + "label": "File Circle Question", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zM368 321.6V328c0 8.8 7.2 16 16 16s16-7.2 16-16v-6.4c0-5.3 4.3-9.6 9.6-9.6h40.5c7.7 0 13.9 6.2 13.9 13.9c0 5.2-2.9 9.9-7.4 12.3l-32 16.8c-5.3 2.8-8.6 8.2-8.6 14.2V384c0 8.8 7.2 16 16 16s16-7.2 16-16v-5.1l23.5-12.3c15.1-7.9 24.5-23.6 24.5-40.6c0-25.4-20.6-45.9-45.9-45.9H409.6c-23 0-41.6 18.6-41.6 41.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-circle-xmark": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "paper" + ] + }, + "unicode": "e5a1", + "label": "File Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm59.3 107.3c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L409.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L432 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368l36.7-36.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-code": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c9" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "css", + "development", + "document", + "html" + ] + }, + "unicode": "f1c9", + "label": "File Code", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM153 289l-31 31 31 31c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L71 337c-9.4-9.4-9.4-24.6 0-33.9l48-48c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM265 255l48 48c9.4 9.4 9.4 24.6 0 33.9l-48 48c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l31-31-31-31c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm97 289c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L79 303c-9.4 9.4-9.4 24.6 0 33.9l48 48c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-31-31 31-31zM257 255c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l31 31-31 31c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l48-48c9.4-9.4 9.4-24.6 0-33.9l-48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-contract": { + "aliases": { + "unicodes": { + "secondary": [ + "10f56c" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agreement", + "binding", + "document", + "legal", + "signature" + ] + }, + "unicode": "f56c", + "label": "File Contract", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM80 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm54.2 253.8c-6.1 20.3-24.8 34.2-46 34.2H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h8.2c7.1 0 13.3-4.6 15.3-11.4l14.9-49.5c3.4-11.3 13.8-19.1 25.6-19.1s22.2 7.7 25.6 19.1l11.6 38.6c7.4-6.2 16.8-9.7 26.8-9.7c15.9 0 30.4 9 37.5 23.2l4.4 8.8H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-6.1 0-11.6-3.4-14.3-8.8l-8.8-17.7c-1.7-3.4-5.1-5.5-8.8-5.5s-7.2 2.1-8.8 5.5l-8.8 17.7c-2.9 5.9-9.2 9.4-15.7 8.8s-12.1-5.1-13.9-11.3L144 349l-9.8 32.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-csv": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6dd" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "excel", + "numbers", + "spreadsheets", + "table" + ] + }, + "unicode": "f6dd", + "label": "File Csv", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM80 224H96c22.1 0 40 17.9 40 40v8c0 8.8-7.2 16-16 16s-16-7.2-16-16v-8c0-4.4-3.6-8-8-8H80c-4.4 0-8 3.6-8 8v80c0 4.4 3.6 8 8 8H96c4.4 0 8-3.6 8-8v-8c0-8.8 7.2-16 16-16s16 7.2 16 16v8c0 22.1-17.9 40-40 40H80c-22.1 0-40-17.9-40-40V264c0-22.1 17.9-40 40-40zm72 46.4c0-25.6 20.8-46.4 46.4-46.4H216c8.8 0 16 7.2 16 16s-7.2 16-16 16H198.4c-7.9 0-14.4 6.4-14.4 14.4c0 5.2 2.8 9.9 7.2 12.5l25.4 14.5c14.4 8.3 23.4 23.6 23.4 40.3c0 25.6-20.8 46.4-46.4 46.4H168c-8.8 0-16-7.2-16-16s7.2-16 16-16h25.6c7.9 0 14.4-6.4 14.4-14.4c0-5.2-2.8-9.9-7.2-12.5l-25.4-14.5C160.9 302.4 152 287 152 270.4zM280 240v31.6c0 23 5.5 45.6 16 66c10.5-20.3 16-42.9 16-66V240c0-8.8 7.2-16 16-16s16 7.2 16 16v31.6c0 34.7-10.3 68.7-29.6 97.6l-5.1 7.7c-3 4.5-8 7.1-13.3 7.1s-10.3-2.7-13.3-7.1l-5.1-7.7c-19.3-28.9-29.6-62.9-29.6-97.6V240c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-excel": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c3" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "csv", + "document", + "numbers", + "spreadsheets", + "table" + ] + }, + "unicode": "f1c3", + "label": "File Excel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM155.7 250.2L192 302.1l36.3-51.9c7.6-10.9 22.6-13.5 33.4-5.9s13.5 22.6 5.9 33.4L221.3 344l46.4 66.2c7.6 10.9 5 25.8-5.9 33.4s-25.8 5-33.4-5.9L192 385.8l-36.3 51.9c-7.6 10.9-22.6 13.5-33.4 5.9s-13.5-22.6-5.9-33.4L162.7 344l-46.4-66.2c-7.6-10.9-5-25.8 5.9-33.4s25.8-5 33.4 5.9z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 448V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm90.9 233.3c-8.1-10.5-23.2-12.3-33.7-4.2s-12.3 23.2-4.2 33.7L161.6 320l-44.5 57.3c-8.1 10.5-6.3 25.5 4.2 33.7s25.5 6.3 33.7-4.2L192 359.1l37.1 47.6c8.1 10.5 23.2 12.3 33.7 4.2s12.3-23.2 4.2-33.7L222.4 320l44.5-57.3c8.1-10.5 6.3-25.5-4.2-33.7s-25.5-6.3-33.7 4.2L192 280.9l-37.1-47.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-export": { + "aliases": { + "names": [ + "arrow-right-from-file" + ], + "unicodes": { + "secondary": [ + "10f56e" + ] + } + }, + "changes": [ + "5.1.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "save" + ] + }, + "unicode": "f56e", + "label": "File Export", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V288H216c-13.3 0-24 10.7-24 24s10.7 24 24 24H384V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM384 336V288H494.1l-39-39c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l80 80c9.4 9.4 9.4 24.6 0 33.9l-80 80c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l39-39H384zm0-208H256V0L384 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-image": { + "aliases": { + "unicodes": { + "composite": [ + "1f5bb" + ], + "secondary": [ + "10f1c5" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Document with Picture", + "document", + "image", + "jpg", + "photo", + "png" + ] + }, + "unicode": "f1c5", + "label": "File Image", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM64 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm152 32c5.3 0 10.2 2.6 13.2 6.9l88 128c3.4 4.9 3.7 11.3 1 16.5s-8.2 8.6-14.2 8.6H216 176 128 80c-5.8 0-11.1-3.1-13.9-8.1s-2.8-11.2 .2-16.1l48-80c2.9-4.8 8.1-7.8 13.7-7.8s10.8 2.9 13.7 7.8l12.8 21.4 48.3-70.2c3-4.3 7.9-6.9 13.2-6.9z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm96 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm69.2 46.9c-3-4.3-7.9-6.9-13.2-6.9s-10.2 2.6-13.2 6.9l-41.3 59.7-11.9-19.1c-2.9-4.7-8.1-7.5-13.6-7.5s-10.6 2.8-13.6 7.5l-40 64c-3.1 4.9-3.2 11.1-.4 16.2s8.2 8.2 14 8.2h48 32 40 72c6 0 11.4-3.3 14.2-8.6s2.4-11.6-1-16.5l-72-104z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-import": { + "aliases": { + "names": [ + "arrow-right-to-file" + ], + "unicodes": { + "secondary": [ + "10f56f" + ] + } + }, + "changes": [ + "5.1.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copy", + "document", + "send", + "upload" + ] + }, + "unicode": "f56f", + "label": "File Import", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 64c0-35.3 28.7-64 64-64H352V128c0 17.7 14.3 32 32 32H512V448c0 35.3-28.7 64-64 64H192c-35.3 0-64-28.7-64-64V336H302.1l-39 39c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9l-80-80c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l39 39H128V64zm0 224v48H24c-13.3 0-24-10.7-24-24s10.7-24 24-24H128zM512 128H384V0L512 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-invoice": { + "aliases": { + "unicodes": { + "secondary": [ + "10f570" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "account", + "bill", + "charge", + "document", + "payment", + "receipt" + ] + }, + "unicode": "f570", + "label": "File Invoice", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM80 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm16 96H288c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V256c0-17.7 14.3-32 32-32zm0 32v64H288V256H96zM240 416h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-invoice-dollar": { + "aliases": { + "unicodes": { + "secondary": [ + "10f571" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "$", + "account", + "bill", + "charge", + "document", + "dollar-sign", + "money", + "payment", + "receipt", + "usd" + ] + }, + "unicode": "f571", + "label": "File Invoice Dollar", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM64 80c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm128 72c8.8 0 16 7.2 16 16v17.3c8.5 1.2 16.7 3.1 24.1 5.1c8.5 2.3 13.6 11 11.3 19.6s-11 13.6-19.6 11.3c-11.1-3-22-5.2-32.1-5.3c-8.4-.1-17.4 1.8-23.6 5.5c-5.7 3.4-8.1 7.3-8.1 12.8c0 3.7 1.3 6.5 7.3 10.1c6.9 4.1 16.6 7.1 29.2 10.9l.5 .1 0 0 0 0c11.3 3.4 25.3 7.6 36.3 14.6c12.1 7.6 22.4 19.7 22.7 38.2c.3 19.3-9.6 33.3-22.9 41.6c-7.7 4.8-16.4 7.6-25.1 9.1V440c0 8.8-7.2 16-16 16s-16-7.2-16-16V422.2c-11.2-2.1-21.7-5.7-30.9-8.9l0 0c-2.1-.7-4.2-1.4-6.2-2.1c-8.4-2.8-12.9-11.9-10.1-20.2s11.9-12.9 20.2-10.1c2.5 .8 4.8 1.6 7.1 2.4l0 0 0 0 0 0c13.6 4.6 24.6 8.4 36.3 8.7c9.1 .3 17.9-1.7 23.7-5.3c5.1-3.2 7.9-7.3 7.8-14c-.1-4.6-1.8-7.8-7.7-11.6c-6.8-4.3-16.5-7.4-29-11.2l-1.6-.5 0 0c-11-3.3-24.3-7.3-34.8-13.7c-12-7.2-22.6-18.9-22.7-37.3c-.1-19.4 10.8-32.8 23.8-40.5c7.5-4.4 15.8-7.2 24.1-8.7V232c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-lines": { + "aliases": { + "names": [ + "file-alt", + "file-text" + ], + "unicodes": { + "composite": [ + "1f5b9", + "1f5ce", + "f0f6" + ], + "secondary": [ + "10f15c" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Document", + "Document with Text", + "document", + "file-text", + "invoice", + "new", + "page", + "pdf" + ] + }, + "unicode": "f15c", + "label": "File Lines", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM112 256H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm56 256c-13.3 0-24 10.7-24 24s10.7 24 24 24H264c13.3 0 24-10.7 24-24s-10.7-24-24-24H120zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24H264c13.3 0 24-10.7 24-24s-10.7-24-24-24H120z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f477" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "health", + "history", + "prescription", + "record" + ] + }, + "unicode": "f477", + "label": "File Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM160 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H224v48c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V352H112c-8.8 0-16-7.2-16-16V304c0-8.8 7.2-16 16-16h48V240z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-pdf": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c1" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrobat", + "document", + "preview", + "save" + ] + }, + "unicode": "f1c1", + "label": "File Pdf", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V304H296 272 184 160c-35.3 0-64 28.7-64 64v80 48 16H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM160 352h24c30.9 0 56 25.1 56 56s-25.1 56-56 56h-8v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V448 368c0-8.8 7.2-16 16-16zm24 80c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8v48h8zm88-80h24c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H272c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16zm24 128c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16h-8v96h8zm72-112c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H400v32h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H400v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V432 368z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 464H96v48H64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0H229.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V288H336V160H256c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16zm96-112h24c30.9 0 56 25.1 56 56s-25.1 56-56 56h-8v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V448 368c0-8.8 7.2-16 16-16zm24 80c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8v48h8zm72-64c0-8.8 7.2-16 16-16h24c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H272c-8.8 0-16-7.2-16-16V368zm32 112h8c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16h-8v96zm96-128h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H400v32h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H400v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V432 368c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-pen": { + "aliases": { + "names": [ + "file-edit" + ], + "unicodes": { + "composite": [ + "1f4dd" + ], + "secondary": [ + "10f31c" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "memo", + "pen", + "pencil", + "update", + "write" + ] + }, + "unicode": "f31c", + "label": "File Pen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V285.7l-86.8 86.8c-10.3 10.3-17.5 23.1-21 37.2l-18.7 74.9c-2.3 9.2-1.8 18.8 1.3 27.5H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM549.8 235.7l14.4 14.4c15.6 15.6 15.6 40.9 0 56.6l-29.4 29.4-71-71 29.4-29.4c15.6-15.6 40.9-15.6 56.6 0zM311.9 417L441.1 287.8l71 71L382.9 487.9c-4.1 4.1-9.2 7-14.9 8.4l-60.1 15c-5.5 1.4-11.2-.2-15.2-4.2s-5.6-9.7-4.2-15.2l15-60.1c1.4-5.6 4.3-10.8 8.4-14.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-powerpoint": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c4" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "display", + "document", + "keynote", + "presentation" + ] + }, + "unicode": "f1c4", + "label": "File Powerpoint", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM136 240h68c42 0 76 34 76 76s-34 76-76 76H160v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V368 264c0-13.3 10.7-24 24-24zm68 104c15.5 0 28-12.5 28-28s-12.5-28-28-28H160v56h44z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm72 208c-13.3 0-24 10.7-24 24V336v56c0 13.3 10.7 24 24 24s24-10.7 24-24V360h44c42 0 76-34 76-76s-34-76-76-76H136zm68 104H160V256h44c15.5 0 28 12.5 28 28s-12.5 28-28 28z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-prescription": { + "aliases": { + "unicodes": { + "secondary": [ + "10f572" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "drugs", + "medical", + "medicine", + "rx" + ] + }, + "unicode": "f572", + "label": "File Prescription", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM104 196h72c33.1 0 60 26.9 60 60c0 25.5-15.9 47.2-38.3 55.9l43 40.3 33.8-31c8.1-7.5 20.8-6.9 28.3 1.2s6.9 20.8-1.2 28.3L270 379.7l31.7 29.7c8.1 7.6 8.5 20.2 .9 28.3s-20.2 8.5-28.3 .9l-33.9-31.8-34.9 32c-8.1 7.5-20.8 6.9-28.3-1.2s-6.9-20.8 1.2-28.3l32.6-29.9-64.8-60.8c-.9-.8-1.6-1.7-2.3-2.6H124v44c0 11-9 20-20 20s-20-9-20-20V296 216c0-11 9-20 20-20zm72 80c11 0 20-9 20-20s-9-20-20-20H124v40h52z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-shield": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antivirus", + "data", + "document", + "protect", + "safe", + "safety", + "secure" + ] + }, + "unicode": "e4f0", + "label": "File Shield", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v47l-92.8 37.1c-21.3 8.5-35.2 29.1-35.2 52c0 56.6 18.9 148 94.2 208.3c-9 4.8-19.3 7.6-30.2 7.6H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm39.1 97.7c5.7-2.3 12.1-2.3 17.8 0l120 48C570 277.4 576 286.2 576 296c0 63.3-25.9 168.8-134.8 214.2c-5.9 2.5-12.6 2.5-18.5 0C313.9 464.8 288 359.3 288 296c0-9.8 6-18.6 15.1-22.3l120-48zM527.4 312L432 273.8V461.7c68.2-33 91.5-99 95.4-149.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-signature": { + "aliases": { + "unicodes": { + "secondary": [ + "10f573" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "John Hancock", + "contract", + "document", + "name" + ] + }, + "unicode": "f573", + "label": "File Signature", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V428.7c-2.7 1.1-5.4 2-8.2 2.7l-60.1 15c-3 .7-6 1.2-9 1.4c-.9 .1-1.8 .2-2.7 .2H240c-6.1 0-11.6-3.4-14.3-8.8l-8.8-17.7c-1.7-3.4-5.1-5.5-8.8-5.5s-7.2 2.1-8.8 5.5l-8.8 17.7c-2.9 5.9-9.2 9.4-15.7 8.8s-12.1-5.1-13.9-11.3L144 381l-9.8 32.8c-6.1 20.3-24.8 34.2-46 34.2H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h8.2c7.1 0 13.3-4.6 15.3-11.4l14.9-49.5c3.4-11.3 13.8-19.1 25.6-19.1s22.2 7.8 25.6 19.1l11.6 38.6c7.4-6.2 16.8-9.7 26.8-9.7c15.9 0 30.4 9 37.5 23.2l4.4 8.8h8.9c-3.1-8.8-3.7-18.4-1.4-27.8l15-60.1c2.8-11.3 8.6-21.5 16.8-29.7L384 203.6V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM549.8 139.7c-15.6-15.6-40.9-15.6-56.6 0l-29.4 29.4 71 71 29.4-29.4c15.6-15.6 15.6-40.9 0-56.6l-14.4-14.4zM311.9 321c-4.1 4.1-7 9.2-8.4 14.9l-15 60.1c-1.4 5.5 .2 11.2 4.2 15.2s9.7 5.6 15.2 4.2l60.1-15c5.6-1.4 10.8-4.3 14.9-8.4L512.1 262.7l-71-71L311.9 321z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-video": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c8" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "m4v", + "movie", + "mp4", + "play" + ] + }, + "unicode": "f1c8", + "label": "File Video", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM64 288c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V288zM300.9 397.9L256 368V304l44.9-29.9c2-1.3 4.4-2.1 6.8-2.1c6.8 0 12.3 5.5 12.3 12.3V387.7c0 6.8-5.5 12.3-12.3 12.3c-2.4 0-4.8-.7-6.8-2.1z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 464c8.8 0 16-7.2 16-16V160H256c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320zM0 64C0 28.7 28.7 0 64 0H229.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM80 288c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32v16l44.9-29.9c2-1.3 4.4-2.1 6.8-2.1c6.8 0 12.3 5.5 12.3 12.3V387.7c0 6.8-5.5 12.3-12.3 12.3c-2.4 0-4.8-.7-6.8-2.1L240 368v16c0 17.7-14.3 32-32 32H112c-17.7 0-32-14.3-32-32V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-waveform": { + "aliases": { + "names": [ + "file-medical-alt" + ], + "unicodes": { + "secondary": [ + "10f478" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "health", + "history", + "prescription", + "record" + ] + }, + "unicode": "f478", + "label": "File Waveform", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V288H112c6.1 0 11.6 3.4 14.3 8.8L144 332.2l49.7-99.4c2.7-5.4 8.2-8.8 14.3-8.8s11.6 3.4 14.3 8.8L249.9 288H320c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-6.1 0-11.6-3.4-14.3-8.8L208 275.8l-49.7 99.4c-2.7 5.4-8.3 8.8-14.3 8.8s-11.6-3.4-14.3-8.8L102.1 320H0V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "file-word": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c2" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "edit", + "page", + "text", + "writing" + ] + }, + "unicode": "f1c2", + "label": "File Word", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM111 257.1l26.8 89.2 31.6-90.3c3.4-9.6 12.5-16.1 22.7-16.1s19.3 6.4 22.7 16.1l31.6 90.3L273 257.1c3.8-12.7 17.2-19.9 29.9-16.1s19.9 17.2 16.1 29.9l-48 160c-3 10-12.1 16.9-22.4 17.1s-19.8-6.2-23.2-16.1L192 336.6l-33.3 95.3c-3.4 9.8-12.8 16.3-23.2 16.1s-19.5-7.1-22.4-17.1l-48-160c-3.8-12.7 3.4-26.1 16.1-29.9s26.1 3.4 29.9 16.1z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 448V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm55 241.1c-3.8-12.7-17.2-19.9-29.9-16.1s-19.9 17.2-16.1 29.9l48 160c3 10.2 12.4 17.1 23 17.1s19.9-7 23-17.1l25-83.4 25 83.4c3 10.2 12.4 17.1 23 17.1s19.9-7 23-17.1l48-160c3.8-12.7-3.4-26.1-16.1-29.9s-26.1 3.4-29.9 16.1l-25 83.4-25-83.4c-3-10.2-12.4-17.1-23-17.1s-19.9 7-23 17.1l-25 83.4-25-83.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "file-zipper": { + "aliases": { + "names": [ + "file-archive" + ], + "unicodes": { + "secondary": [ + "10f1c6" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + ".zip", + "bundle", + "compress", + "compression", + "download", + "zip" + ] + }, + "unicode": "f1c6", + "label": "File Zipper", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM96 48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zm-6.3 71.8c3.7-14 16.4-23.8 30.9-23.8h14.8c14.5 0 27.2 9.7 30.9 23.8l23.5 88.2c1.4 5.4 2.1 10.9 2.1 16.4c0 35.2-28.8 63.7-64 63.7s-64-28.5-64-63.7c0-5.5 .7-11.1 2.1-16.4l23.5-88.2zM112 336c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H112z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16h48v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm48 112c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H128c-8.8 0-16 7.2-16 16zm0 64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H128c-8.8 0-16 7.2-16 16zm-6.3 71.8L82.1 335.9c-1.4 5.4-2.1 10.9-2.1 16.4c0 35.2 28.8 63.7 64 63.7s64-28.5 64-63.7c0-5.5-.7-11.1-2.2-16.4l-23.5-88.2c-3.7-14-16.4-23.8-30.9-23.8H136.6c-14.5 0-27.2 9.7-30.9 23.8zM128 336h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H128c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "fill": { + "aliases": { + "unicodes": { + "secondary": [ + "10f575" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bucket", + "color", + "paint", + "paint bucket" + ] + }, + "unicode": "f575", + "label": "Fill", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M84.6 9.4C72.1-3.1 51.9-3.1 39.4 9.4s-12.5 32.8 0 45.3L120.7 136 28.6 228.1c-37.5 37.5-37.5 98.3 0 135.8L146.1 481.4c37.5 37.5 98.3 37.5 135.8 0L472.3 290.9c28.1-28.1 28.1-73.7 0-101.8L320.9 37.7c-28.1-28.1-73.7-28.1-101.8 0L166 90.7 84.6 9.4zM166 181.3l49.4 49.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L211.3 136l53.1-53.1c3.1-3.1 8.2-3.1 11.3 0L427.1 234.3c3.1 3.1 3.1 8.2 0 11.3L384.7 288H65.5c1.4-5.4 4.2-10.4 8.4-14.6L166 181.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fill-drip": { + "aliases": { + "unicodes": { + "secondary": [ + "10f576" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bucket", + "color", + "drop", + "paint", + "paint bucket", + "spill" + ] + }, + "unicode": "f576", + "label": "Fill Drip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M41.4 9.4C53.9-3.1 74.1-3.1 86.6 9.4L168 90.7l53.1-53.1c28.1-28.1 73.7-28.1 101.8 0L474.3 189.1c28.1 28.1 28.1 73.7 0 101.8L283.9 481.4c-37.5 37.5-98.3 37.5-135.8 0L30.6 363.9c-37.5-37.5-37.5-98.3 0-135.8L122.7 136 41.4 54.6c-12.5-12.5-12.5-32.8 0-45.3zm176 221.3L168 181.3 75.9 273.4c-4.2 4.2-7 9.3-8.4 14.6H386.7l42.3-42.3c3.1-3.1 3.1-8.2 0-11.3L277.7 82.9c-3.1-3.1-8.2-3.1-11.3 0L213.3 136l49.4 49.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0zM512 512c-35.3 0-64-28.7-64-64c0-25.2 32.6-79.6 51.2-108.7c6-9.4 19.5-9.4 25.5 0C543.4 368.4 576 422.8 576 448c0 35.3-28.7 64-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "film": { + "aliases": { + "unicodes": { + "composite": [ + "1f39e" + ], + "secondary": [ + "10f008" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cinema", + "film", + "film frames", + "frames", + "movie", + "strip", + "video" + ] + }, + "unicode": "f008", + "label": "Film", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM48 368v32c0 8.8 7.2 16 16 16H96c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zm368-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H416zM48 240v32c0 8.8 7.2 16 16 16H96c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zm368-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H416zM48 112v32c0 8.8 7.2 16 16 16H96c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zM416 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H416zM160 128v64c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32zm32 160c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32H192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "filter": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0b0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "funnel", + "options", + "separate", + "sort" + ] + }, + "unicode": "f0b0", + "label": "Filter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321821, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M3.9 54.9C10.5 40.9 24.5 32 40 32H472c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L320 320.9V448c0 12.1-6.8 23.2-17.7 28.6s-23.8 4.3-33.5-3l-64-48c-8.1-6-12.8-15.5-12.8-25.6V320.9L9 97.3C-.7 85.4-2.8 68.8 3.9 54.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "filter-circle-dollar": { + "aliases": { + "names": [ + "funnel-dollar" + ], + "unicodes": { + "secondary": [ + "10f662" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "filter", + "money", + "options", + "separate", + "sort" + ] + }, + "unicode": "f662", + "label": "Filter Circle Dollar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321821, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M3.9 22.9C10.5 8.9 24.5 0 40 0H472c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L396.4 195.6C316.2 212.1 256 283 256 368c0 27.4 6.3 53.4 17.5 76.5c-1.6-.8-3.2-1.8-4.7-2.9l-64-48c-8.1-6-12.8-15.5-12.8-25.6V288.9L9 65.3C-.7 53.4-2.8 36.8 3.9 22.9zM576 368c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zM408.8 335.4c.6-.9 1.8-2.1 4.2-3.4c5.1-2.7 12.5-4.1 18.7-4c8.2 .1 17.1 1.8 26.4 4.1c8.6 2.1 17.3-3.1 19.4-11.7s-3.1-17.3-11.7-19.4c-5.6-1.4-11.6-2.7-17.9-3.7V288c0-8.8-7.2-16-16-16s-16 7.2-16 16v9.5c-6.1 1.2-12.3 3.2-18 6.3c-11.8 6.3-23 18.4-21.8 37.2c1 16 11.7 25.3 21.6 30.7c8.8 4.7 19.7 7.8 28.6 10.3l1.8 .5c10.3 2.9 17.9 5.2 23.2 8.3c4.5 2.7 4.7 4.2 4.7 5.6c.1 2.4-.5 3.7-1 4.5c-.6 1-1.8 2.2-4 3.3c-4.7 2.5-11.8 3.8-18.5 3.6c-9.5-.3-18.5-3.1-29.9-6.8c-1.9-.6-3.8-1.2-5.8-1.8c-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20c1.6 .5 3.3 1 5 1.6l0 0 0 0c7 2.3 15.1 4.8 23.7 6.6v11.4c0 8.8 7.2 16 16 16s16-7.2 16-16V438.7c6.2-1.1 12.5-3.1 18.3-6.2c12.1-6.5 22.3-18.7 21.7-36.9c-.5-16.2-10.3-26.3-20.5-32.3c-9.4-5.6-21.2-8.9-30.5-11.5l-.2 0c-10.4-2.9-18.3-5.2-23.9-8.2c-4.8-2.6-4.8-4-4.8-4.5l0-.1c-.1-1.9 .3-2.9 .8-3.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "filter-circle-xmark": { + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "funnel", + "options", + "remove", + "separate", + "sort" + ] + }, + "unicode": "e17b", + "label": "Filter Circle Xmark", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321821, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M3.9 22.9C10.5 8.9 24.5 0 40 0H472c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L396.4 195.6C316.2 212.1 256 283 256 368c0 27.4 6.3 53.4 17.5 76.5c-1.6-.8-3.2-1.8-4.7-2.9l-64-48c-8.1-6-12.8-15.5-12.8-25.6V288.9L9 65.3C-.7 53.4-2.8 36.8 3.9 22.9zM432 512c-79.5 0-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144s-64.5 144-144 144zm59.3-180.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L409.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L432 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368l36.7-36.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fingerprint": { + "aliases": { + "unicodes": { + "secondary": [ + "10f577" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "human", + "id", + "identification", + "lock", + "smudge", + "touch", + "unique", + "unlock" + ] + }, + "unicode": "f577", + "label": "Fingerprint", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M454.4 93c7.3 8.8 6.1 21.6-2 29.7c-10.6 10.6-28.2 8.6-38-2.7C376.2 75.9 319.9 48 257 48C142.1 48 49 141.1 49 256v24.9c0 6.1-.2 12.2-.6 18.3C47.7 311.2 37.6 320 25.6 320C11.1 320 .1 307 .7 292.5c.2-3.9 .3-7.7 .3-11.6V256C1 114.6 115.6 0 257 0c79.4 0 150.4 36.2 197.4 93zm19.3 89.6c13.1-6.5 29-.2 32.4 14.1c4.5 19.1 6.9 39 6.9 59.4v24.9c0 5.4-.1 10.9-.2 16.3C512.6 310 502 320 489.2 320c-13.7 0-24.6-11.5-24.4-25.3c.1-4.6 .1-9.2 .1-13.8V256c0-15.1-1.6-29.8-4.6-43.9c-2.5-11.8 2.5-24.2 13.3-29.6zM257 80c97.2 0 176 78.8 176 176v24.9c0 27.7-1.7 55.3-5 82.7c-1.4 11.7-11.5 20.3-23.3 20.3c-14.7 0-25.9-13.2-24.2-27.8c3-24.9 4.4-50.1 4.4-75.3V256c0-70.7-57.3-128-128-128c-11.6 0-22.8 1.5-33.4 4.4c-10.6 2.9-22.3 .4-29.4-7.9c-10.4-12.1-6.9-30.9 8.3-35.9C219.6 83 238 80 257 80zM151.7 148.7c8.2 9.6 7.5 23.8 .2 34.2C137.5 203.6 129 228.8 129 256v24.9c0 28.9-3.3 57.7-9.7 85.8C116.9 377 107.6 384 97.1 384c-15.9 0-27.3-15.6-23.9-31.1c5.2-23.6 7.8-47.7 7.8-71.9V256c0-40.6 13.7-78 36.8-107.7c8.5-11 24.8-10.2 33.9 .4zM257 160c53 0 96 43 96 96v24.9c0 39.7-3.9 79.3-11.6 118.1c-2 10-10.8 17-21 17c-14.2 0-24.5-13.3-21.8-27.2c6.9-35.5 10.4-71.6 10.4-107.9V256c0-28.7-23.3-52-52-52s-52 23.3-52 52v24.9c0 40.5-5.3 80.7-15.9 119.7c-2.5 9.2-10.9 15.4-20.4 15.4c-14.8 0-25.3-14.6-21.5-29c9.1-34.6 13.8-70.2 13.8-106.1V256c0-53 43-96 96-96zm24 96v24.9c0 65.8-12.1 131-35.7 192.4l-5.9 15.3c-4.8 12.4-18.6 18.5-31 13.8s-18.5-18.6-13.8-31l5.9-15.3C222 400.2 233 340.8 233 280.9V256c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fire": { + "aliases": { + "unicodes": { + "composite": [ + "1f525" + ], + "secondary": [ + "10f06d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.6.0", + "5.6.3", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "caliente", + "fire", + "flame", + "heat", + "hot", + "popular", + "tool" + ] + }, + "unicode": "f06d", + "label": "Fire", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M159.3 5.4c7.8-7.3 19.9-7.2 27.7 .1c27.6 25.9 53.5 53.8 77.7 84c11-14.4 23.5-30.1 37-42.9c7.9-7.4 20.1-7.4 28 .1c34.6 33 63.9 76.6 84.5 118c20.3 40.8 33.8 82.5 33.8 111.9C448 404.2 348.2 512 224 512C98.4 512 0 404.1 0 276.5c0-38.4 17.8-85.3 45.4-131.7C73.3 97.7 112.7 48.6 159.3 5.4zM225.7 416c25.3 0 47.7-7 68.8-21c42.1-29.4 53.4-88.2 28.1-134.4c-4.5-9-16-9.6-22.5-2l-25.2 29.3c-6.6 7.6-18.5 7.4-24.7-.5c-16.5-21-46-58.5-62.8-79.8c-6.3-8-18.3-8.1-24.7-.1c-33.8 42.5-50.8 69.3-50.8 99.4C112 375.4 162.6 416 225.7 416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fire-burner": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cook", + "fire", + "flame", + "kitchen", + "stove" + ] + }, + "unicode": "e4f1", + "label": "Fire Burner", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M293.5 3.8c19.7 17.8 38.2 37 55.5 57.7c7.9-9.9 16.8-20.7 26.5-29.5c5.6-5.1 14.4-5.1 20 0c24.7 22.7 45.6 52.7 60.4 81.1c14.5 28 24.2 58.8 24.2 79C480 280 408.7 352 320 352c-89.7 0-160-72.1-160-159.8c0-26.4 12.7-60.7 32.4-92.6c20-32.4 48.1-66.1 81.4-95.8c2.8-2.5 6.4-3.8 10-3.7c3.5 0 7 1.3 9.8 3.8zM370 273c30-21 38-63 20-96c-2-4-4-8-7-12l-36 42s-58-74-62-79c-30 37-45 58-45 82c0 49 36 78 81 78c18 0 34-5 49-15zM32 288c0-17.7 14.3-32 32-32H96c17.7 0 32 14.3 32 32s-14.3 32-32 32v64H544V320c-17.7 0-32-14.3-32-32s14.3-32 32-32h32c17.7 0 32 14.3 32 32v96c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32V288zM320 480a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm160-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM192 480a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fire-extinguisher": { + "aliases": { + "unicodes": { + "composite": [ + "1f9ef" + ], + "secondary": [ + "10f134" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "caliente", + "extinguish", + "fire", + "fire extinguisher", + "fire fighter", + "flame", + "heat", + "hot", + "quench", + "rescue" + ] + }, + "unicode": "f134", + "label": "Fire Extinguisher", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M500.3 7.3C507.7 13.3 512 22.4 512 32v96c0 9.6-4.3 18.7-11.7 24.7s-17.2 8.5-26.6 6.6l-160-32C301.5 124.9 292 115.7 289 104H224v34.8c37.8 18 64 56.5 64 101.2V384H64V240c0-44.7 26.2-83.2 64-101.2V110c-36.2 11.1-66 36.9-82.3 70.5c-5.8 11.9-20.2 16.9-32.1 11.1S-3.3 171.4 2.5 159.5C26.7 109.8 72.7 72.6 128 60.4V32c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V56h65c3-11.7 12.5-20.9 24.7-23.4l160-32c9.4-1.9 19.1 .6 26.6 6.6zM288 416v32c0 35.3-28.7 64-64 64H128c-35.3 0-64-28.7-64-64V416H288zM176 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fire-flame-curved": { + "aliases": { + "names": [ + "fire-alt" + ], + "unicodes": { + "secondary": [ + "10f7e4" + ] + } + }, + "changes": [ + "5.6.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "caliente", + "flame", + "heat", + "hot", + "popular" + ] + }, + "unicode": "f7e4", + "label": "Fire Flame Curved", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M153.6 29.9l16-21.3C173.6 3.2 180 0 186.7 0C198.4 0 208 9.6 208 21.3V43.5c0 13.1 5.4 25.7 14.9 34.7L307.6 159C356.4 205.6 384 270.2 384 337.7C384 434 306 512 209.7 512H192C86 512 0 426 0 320v-3.8c0-48.8 19.4-95.6 53.9-130.1l3.5-3.5c4.2-4.2 10-6.6 16-6.6C85.9 176 96 186.1 96 198.6V288c0 35.3 28.7 64 64 64s64-28.7 64-64v-3.9c0-18-7.2-35.3-19.9-48l-38.6-38.6c-24-24-37.5-56.7-37.5-90.7c0-27.7 9-54.8 25.6-76.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fire-flame-simple": { + "aliases": { + "names": [ + "burn" + ], + "unicodes": { + "secondary": [ + "10f46a" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caliente", + "energy", + "fire", + "flame", + "gas", + "heat", + "hot" + ] + }, + "unicode": "f46a", + "label": "Fire Flame Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M372.5 256.5l-.7-1.9C337.8 160.8 282 76.5 209.1 8.5l-3.3-3C202.1 2 197.1 0 192 0s-10.1 2-13.8 5.5l-3.3 3C102 76.5 46.2 160.8 12.2 254.6l-.7 1.9C3.9 277.3 0 299.4 0 321.6C0 426.7 86.8 512 192 512s192-85.3 192-190.4c0-22.2-3.9-44.2-11.5-65.1zm-90.8 49.5c4.1 9.3 6.2 19.4 6.2 29.5c0 53-43 96.5-96 96.5s-96-43.5-96-96.5c0-10.1 2.1-20.3 6.2-29.5l1.9-4.3c15.8-35.4 37.9-67.7 65.3-95.1l8.9-8.9c3.6-3.6 8.5-5.6 13.6-5.6s10 2 13.6 5.6l8.9 8.9c27.4 27.4 49.6 59.7 65.3 95.1l1.9 4.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "firefox": { + "changes": [ + "4.4.0", + "5.0.0", + "5.0.1", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "unicode": "f269", + "label": "Firefox", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M503.52,241.48c-.12-1.56-.24-3.12-.24-4.68v-.12l-.36-4.68v-.12a245.86,245.86,0,0,0-7.32-41.15c0-.12,0-.12-.12-.24l-1.08-4c-.12-.24-.12-.48-.24-.6-.36-1.2-.72-2.52-1.08-3.72-.12-.24-.12-.6-.24-.84-.36-1.2-.72-2.4-1.08-3.48-.12-.36-.24-.6-.36-1-.36-1.2-.72-2.28-1.2-3.48l-.36-1.08c-.36-1.08-.84-2.28-1.2-3.36a8.27,8.27,0,0,0-.36-1c-.48-1.08-.84-2.28-1.32-3.36-.12-.24-.24-.6-.36-.84-.48-1.2-1-2.28-1.44-3.48,0-.12-.12-.24-.12-.36-1.56-3.84-3.24-7.68-5-11.4l-.36-.72c-.48-1-.84-1.8-1.32-2.64-.24-.48-.48-1.08-.72-1.56-.36-.84-.84-1.56-1.2-2.4-.36-.6-.6-1.2-1-1.8s-.84-1.44-1.2-2.28c-.36-.6-.72-1.32-1.08-1.92s-.84-1.44-1.2-2.16a18.07,18.07,0,0,0-1.2-2c-.36-.72-.84-1.32-1.2-2s-.84-1.32-1.2-2-.84-1.32-1.2-1.92-.84-1.44-1.32-2.16a15.63,15.63,0,0,0-1.2-1.8L463.2,119a15.63,15.63,0,0,0-1.2-1.8c-.48-.72-1.08-1.56-1.56-2.28-.36-.48-.72-1.08-1.08-1.56l-1.8-2.52c-.36-.48-.6-.84-1-1.32-1-1.32-1.8-2.52-2.76-3.72a248.76,248.76,0,0,0-23.51-26.64A186.82,186.82,0,0,0,412,62.46c-4-3.48-8.16-6.72-12.48-9.84a162.49,162.49,0,0,0-24.6-15.12c-2.4-1.32-4.8-2.52-7.2-3.72a254,254,0,0,0-55.43-19.56c-1.92-.36-3.84-.84-5.64-1.2h-.12c-1-.12-1.8-.36-2.76-.48a236.35,236.35,0,0,0-38-4H255.14a234.62,234.62,0,0,0-45.48,5c-33.59,7.08-63.23,21.24-82.91,39-1.08,1-1.92,1.68-2.4,2.16l-.48.48H124l-.12.12.12-.12a.12.12,0,0,0,.12-.12l-.12.12a.42.42,0,0,1,.24-.12c14.64-8.76,34.92-16,49.44-19.56l5.88-1.44c.36-.12.84-.12,1.2-.24,1.68-.36,3.36-.72,5.16-1.08.24,0,.6-.12.84-.12C250.94,20.94,319.34,40.14,367,85.61a171.49,171.49,0,0,1,26.88,32.76c30.36,49.2,27.48,111.11,3.84,147.59-34.44,53-111.35,71.27-159,24.84a84.19,84.19,0,0,1-25.56-59,74.05,74.05,0,0,1,6.24-31c1.68-3.84,13.08-25.67,18.24-24.59-13.08-2.76-37.55,2.64-54.71,28.19-15.36,22.92-14.52,58.2-5,83.28a132.85,132.85,0,0,1-12.12-39.24c-12.24-82.55,43.31-153,94.31-170.51-27.48-24-96.47-22.31-147.71,15.36-29.88,22-51.23,53.16-62.51,90.36,1.68-20.88,9.6-52.08,25.8-83.88-17.16,8.88-39,37-49.8,62.88-15.6,37.43-21,82.19-16.08,124.79.36,3.24.72,6.36,1.08,9.6,19.92,117.11,122,206.38,244.78,206.38C392.77,503.42,504,392.19,504,255,503.88,250.48,503.76,245.92,503.52,241.48Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "firefox-browser": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "unicode": "e007", + "label": "Firefox Browser", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M130.22 127.548C130.38 127.558 130.3 127.558 130.22 127.548V127.548ZM481.64 172.898C471.03 147.398 449.56 119.898 432.7 111.168C446.42 138.058 454.37 165.048 457.4 185.168C457.405 185.306 457.422 185.443 457.45 185.578C429.87 116.828 383.098 89.1089 344.9 28.7479C329.908 5.05792 333.976 3.51792 331.82 4.08792L331.7 4.15792C284.99 30.1109 256.365 82.5289 249.12 126.898C232.503 127.771 216.219 131.895 201.19 139.035C199.838 139.649 198.736 140.706 198.066 142.031C197.396 143.356 197.199 144.87 197.506 146.323C197.7 147.162 198.068 147.951 198.586 148.639C199.103 149.327 199.76 149.899 200.512 150.318C201.264 150.737 202.096 150.993 202.954 151.071C203.811 151.148 204.676 151.045 205.491 150.768L206.011 150.558C221.511 143.255 238.408 139.393 255.541 139.238C318.369 138.669 352.698 183.262 363.161 201.528C350.161 192.378 326.811 183.338 304.341 187.248C392.081 231.108 368.541 381.784 246.951 376.448C187.487 373.838 149.881 325.467 146.421 285.648C146.421 285.648 157.671 243.698 227.041 243.698C234.541 243.698 255.971 222.778 256.371 216.698C256.281 214.698 213.836 197.822 197.281 181.518C188.434 172.805 184.229 168.611 180.511 165.458C178.499 163.75 176.392 162.158 174.201 160.688C168.638 141.231 168.399 120.638 173.51 101.058C148.45 112.468 128.96 130.508 114.8 146.428H114.68C105.01 134.178 105.68 93.7779 106.25 85.3479C106.13 84.8179 99.022 89.0159 98.1 89.6579C89.5342 95.7103 81.5528 102.55 74.26 110.088C57.969 126.688 30.128 160.242 18.76 211.318C14.224 231.701 12 255.739 12 263.618C12 398.318 121.21 507.508 255.92 507.508C376.56 507.508 478.939 420.281 496.35 304.888C507.922 228.192 481.64 173.82 481.64 172.898Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "first-order": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2b0", + "label": "First Order", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "first-order-alt": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f50a", + "label": "Alternate First Order", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "firstdraft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a1", + "label": "firstdraft", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fish": { + "aliases": { + "unicodes": { + "composite": [ + "1f41f" + ], + "secondary": [ + "10f578" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pisces", + "fauna", + "fish", + "gold", + "seafood", + "swimming", + "zodiac" + ] + }, + "unicode": "f578", + "label": "Fish", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M180.5 141.5C219.7 108.5 272.6 80 336 80s116.3 28.5 155.5 61.5c39.1 33 66.9 72.4 81 99.8c4.7 9.2 4.7 20.1 0 29.3c-14.1 27.4-41.9 66.8-81 99.8C452.3 403.5 399.4 432 336 432s-116.3-28.5-155.5-61.5c-16.2-13.7-30.5-28.5-42.7-43.1L48.1 379.6c-12.5 7.3-28.4 5.3-38.7-4.9S-3 348.7 4.2 336.1L50 256 4.2 175.9c-7.2-12.6-5-28.4 5.3-38.6s26.1-12.2 38.7-4.9l89.7 52.3c12.2-14.6 26.5-29.4 42.7-43.1zM448 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fish-fins": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fish", + "fishery", + "pisces", + "seafood" + ] + }, + "unicode": "e4f2", + "label": "Fish Fins", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M275.2 38.4c-10.6-8-25-8.5-36.3-1.5S222 57.3 224.6 70.3l9.7 48.6c-19.4 9-36.9 19.9-52.4 31.5c-15.3 11.5-29 23.9-40.7 36.3L48.1 132.4c-12.5-7.3-28.4-5.3-38.7 4.9S-3 163.3 4.2 175.9L50 256 4.2 336.1c-7.2 12.6-5 28.4 5.3 38.6s26.1 12.2 38.7 4.9l93.1-54.3c11.8 12.3 25.4 24.8 40.7 36.3c15.5 11.6 33 22.5 52.4 31.5l-9.7 48.6c-2.6 13 3.1 26.3 14.3 33.3s25.6 6.5 36.3-1.5l77.6-58.2c54.9-4 101.5-27 137.2-53.8c39.2-29.4 67.2-64.7 81.6-89.5c5.8-9.9 5.8-22.2 0-32.1c-14.4-24.8-42.5-60.1-81.6-89.5c-35.8-26.8-82.3-49.8-137.2-53.8L275.2 38.4zM384 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "flag": { + "aliases": { + "unicodes": { + "composite": [ + "1f3f4", + "f11d" + ], + "secondary": [ + "10f024" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "black flag", + "country", + "notice", + "notification", + "notify", + "pole", + "report", + "symbol", + "waving" + ] + }, + "unicode": "f024", + "label": "Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32V64 368 480c0 17.7 14.3 32 32 32s32-14.3 32-32V352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4l34.7-13c12.5-4.7 20.8-16.6 20.8-30V66.1c0-23-24.2-38-44.8-27.7l-9.6 4.8c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z" + }, + "regular": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 24C48 10.7 37.3 0 24 0S0 10.7 0 24V64 350.5 400v88c0 13.3 10.7 24 24 24s24-10.7 24-24V388l80.3-20.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4l34.7-13c12.5-4.7 20.8-16.6 20.8-30V66.1c0-23-24.2-38-44.8-27.7l-9.6 4.8c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L48 52V24zm0 77.5l96.6-24.2c27-6.7 55.5-3.6 80.4 8.8c54.9 27.4 118.7 29.7 175 6.8V334.7l-24.4 9.1c-33.7 12.6-71.2 10.7-103.4-5.4c-48.2-24.1-103.3-30.1-155.6-17.1L48 338.5v-237z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "flag-checkered": { + "aliases": { + "unicodes": { + "composite": [ + "1f3c1" + ], + "secondary": [ + "10f11e" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.7.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checkered", + "chequered", + "chequered flag", + "finish", + "notice", + "notification", + "notify", + "pole", + "racing", + "report", + "start", + "symbol", + "win" + ] + }, + "unicode": "f11e", + "label": "Flag Checkered", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 0C49.7 0 64 14.3 64 32V48l69-17.2c38.1-9.5 78.3-5.1 113.5 12.5c46.3 23.2 100.8 23.2 147.1 0l9.6-4.8C423.8 28.1 448 43.1 448 66.1V345.8c0 13.3-8.3 25.3-20.8 30l-34.7 13c-46.2 17.3-97.6 14.6-141.7-7.4c-37.9-19-81.4-23.7-122.5-13.4L64 384v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V400 334 64 32C0 14.3 14.3 0 32 0zM64 187.1l64-13.9v65.5L64 252.6V318l48.8-12.2c5.1-1.3 10.1-2.4 15.2-3.3V238.7l38.9-8.4c8.3-1.8 16.7-2.5 25.1-2.1l0-64c13.6 .4 27.2 2.6 40.4 6.4l23.6 6.9v66.7l-41.7-12.3c-7.3-2.1-14.8-3.4-22.3-3.8v71.4c21.8 1.9 43.3 6.7 64 14.4V244.2l22.7 6.7c13.5 4 27.3 6.4 41.3 7.4V194c-7.8-.8-15.6-2.3-23.2-4.5l-40.8-12v-62c-13-3.8-25.8-8.8-38.2-15c-8.2-4.1-16.9-7-25.8-8.8v72.4c-13-.4-26 .8-38.7 3.6L128 173.2V98L64 114v73.1zM320 335.7c16.8 1.5 33.9-.7 50-6.8l14-5.2V251.9l-7.9 1.8c-18.4 4.3-37.3 5.7-56.1 4.5v77.4zm64-149.4V115.4c-20.9 6.1-42.4 9.1-64 9.1V194c13.9 1.4 28 .5 41.7-2.6l22.3-5.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "flag-usa": { + "aliases": { + "unicodes": { + "secondary": [ + "10f74d" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "betsy ross", + "country", + "fla", + "flag: United States", + "old glory", + "stars", + "stripes", + "symbol" + ] + }, + "unicode": "f74d", + "label": "Flag Usa", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 0C49.7 0 64 14.3 64 32V48l69-17.2c38.1-9.5 78.3-5.1 113.5 12.5c46.3 23.2 100.8 23.2 147.1 0l9.6-4.8C423.8 28.1 448 43.1 448 66.1v36.1l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-20.3-9-41.8-14.7-63.6-16.9v32.2c17.4 2.1 34.4 6.7 50.6 13.9l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4L448 136.3v62l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-40.2-17.9-85-22.5-128.1-13.3L64 203.1v32.7l70.2-15.1c36.4-7.8 74.3-3.9 108.4 11.3l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4L448 232.3v62l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-40.2-17.9-85-22.5-128.1-13.3L64 299.1v32.7l70.2-15.1c36.4-7.8 74.3-3.9 108.4 11.3l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4L448 328.3v33.5c0 13.3-8.3 25.3-20.8 30l-34.7 13c-46.2 17.3-97.6 14.6-141.7-7.4c-37.9-19-81.4-23.7-122.5-13.4L64 400v80c0 17.7-14.3 32-32 32s-32-14.3-32-32V416 345.5 312.8 249.5 216.8 153.5 120.8 64 32C0 14.3 14.3 0 32 0zm80 96A16 16 0 1 0 80 96a16 16 0 1 0 32 0zm32 0a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm-32 48a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm32 0a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "flask": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0c3" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beaker", + "experimental", + "labs", + "science" + ] + }, + "unicode": "f0c3", + "label": "Flask", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M288 0H160 128C110.3 0 96 14.3 96 32s14.3 32 32 32V196.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6C0 480.9 31.1 512 69.4 512H378.6c38.3 0 69.4-31.1 69.4-69.4c0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H288zM192 196.8V64h64V196.8c0 23.7 6.6 46.9 19 67.1L309.5 320h-171L173 263.9c12.4-20.2 19-43.4 19-67.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "flask-vial": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "chemistry", + "lab", + "laboratory", + "test", + "test tube" + ] + }, + "unicode": "e4f3", + "label": "Flask Vial", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M175 389.4c-9.8 16-15 34.3-15 53.1c-10 3.5-20.8 5.5-32 5.5c-53 0-96-43-96-96V64C14.3 64 0 49.7 0 32S14.3 0 32 0H96h64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32V309.9l-49 79.6zM96 64v96h64V64H96zM352 0H480h32c17.7 0 32 14.3 32 32s-14.3 32-32 32V214.9L629.7 406.2c6.7 10.9 10.3 23.5 10.3 36.4c0 38.3-31.1 69.4-69.4 69.4H261.4c-38.3 0-69.4-31.1-69.4-69.4c0-12.8 3.6-25.4 10.3-36.4L320 214.9V64c-17.7 0-32-14.3-32-32s14.3-32 32-32h32zm32 64V224c0 5.9-1.6 11.7-4.7 16.8L330.5 320h171l-48.8-79.2c-3.1-5-4.7-10.8-4.7-16.8V64H384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "flickr": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f16e", + "label": "Flickr", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "flipboard": { + "changes": [ + "5.0.5", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f44d", + "label": "Flipboard", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "floppy-disk": { + "aliases": { + "names": [ + "save" + ], + "unicodes": { + "composite": [ + "1f4be", + "1f5aa" + ], + "secondary": [ + "10f0c7" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Hard Shell Floppy Disk", + "computer", + "disk", + "download", + "floppy", + "floppy disk", + "floppy-o" + ] + }, + "unicode": "f0c7", + "label": "Floppy Disk", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V173.3c0-17-6.7-33.3-18.7-45.3L352 50.7C340 38.7 323.7 32 306.7 32H64zm0 96c0-17.7 14.3-32 32-32H288c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V128zM224 288a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + }, + "regular": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 96V416c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V170.5c0-4.2-1.7-8.3-4.7-11.3l33.9-33.9c12 12 18.7 28.3 18.7 45.3V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H309.5c17 0 33.3 6.7 45.3 18.7l74.5 74.5-33.9 33.9L320.8 84.7c-.3-.3-.5-.5-.8-.8V184c0 13.3-10.7 24-24 24H104c-13.3 0-24-10.7-24-24V80H64c-8.8 0-16 7.2-16 16zm80-16v80H272V80H128zm32 240a64 64 0 1 1 128 0 64 64 0 1 1 -128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "florin-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency" + ] + }, + "unicode": "e184", + "label": "Florin Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M314.7 32c-38.8 0-73.7 23.3-88.6 59.1L170.7 224H64c-17.7 0-32 14.3-32 32s14.3 32 32 32h80L98.9 396.3c-5 11.9-16.6 19.7-29.5 19.7H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H69.3c38.8 0 73.7-23.3 88.6-59.1L213.3 288H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H240l45.1-108.3c5-11.9 16.6-19.7 29.5-19.7H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H314.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fly": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f417", + "label": "Fly", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "folder": { + "aliases": { + "names": [ + "folder-blank" + ], + "unicodes": { + "composite": [ + "1f4c1", + "1f5bf", + "f114" + ], + "secondary": [ + "10f07b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Folder", + "archive", + "directory", + "document", + "file", + "file folder", + "folder" + ] + }, + "unicode": "f07b", + "label": "Folder", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 480H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H288c-10.1 0-19.6-4.7-25.6-12.8L243.2 57.6C231.1 41.5 212.1 32 192 32H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H196.1c19.1 0 37.4 7.6 50.9 21.1L289.9 96H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16H286.6c-10.6 0-20.8-4.2-28.3-11.7L213.1 87c-4.5-4.5-10.6-7-17-7H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "folder-closed": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "file" + ] + }, + "unicode": "e185", + "label": "Folder Closed", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 480H64c-35.3 0-64-28.7-64-64V192H512V416c0 35.3-28.7 64-64 64zm64-320H0V96C0 60.7 28.7 32 64 32H192c20.1 0 39.1 9.5 51.2 25.6l19.2 25.6c6 8.1 15.5 12.8 25.6 12.8H448c35.3 0 64 28.7 64 64z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H289.9L247 53.1C233.5 39.6 215.2 32 196.1 32H64zM48 96c0-8.8 7.2-16 16-16H196.1c6.4 0 12.5 2.5 17 7l45.3 45.3c7.5 7.5 17.7 11.7 28.3 11.7H448c8.8 0 16 7.2 16 16v32H48V96zm0 144H464V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V240z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "folder-minus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f65d" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "delete", + "directory", + "document", + "file", + "negative", + "remove" + ] + }, + "unicode": "f65d", + "label": "Folder Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 480H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H192c20.1 0 39.1 9.5 51.2 25.6l19.2 25.6c6 8.1 15.5 12.8 25.6 12.8H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64zM184 272c-13.3 0-24 10.7-24 24s10.7 24 24 24H328c13.3 0 24-10.7 24-24s-10.7-24-24-24H184z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "folder-open": { + "aliases": { + "unicodes": { + "composite": [ + "1f4c2", + "1f5c1", + "f115" + ], + "secondary": [ + "10f07c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Open Folder", + "archive", + "directory", + "document", + "empty", + "file", + "folder", + "new", + "open", + "open file folder" + ] + }, + "unicode": "f07c", + "label": "Folder Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M88.7 223.8L0 375.8V96C0 60.7 28.7 32 64 32H181.5c17 0 33.3 6.7 45.3 18.7l26.5 26.5c12 12 28.3 18.7 45.3 18.7H416c35.3 0 64 28.7 64 64v32H144c-22.8 0-43.8 12.1-55.3 31.8zm27.6 16.1C122.1 230 132.6 224 144 224H544c11.5 0 22 6.1 27.7 16.1s5.7 22.2-.1 32.1l-112 192C453.9 474 443.4 480 432 480H32c-11.5 0-22-6.1-27.7-16.1s-5.7-22.2 .1-32.1l112-192z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 480h48c11.4 0 21.9-6 27.6-15.9l112-192c5.8-9.9 5.8-22.1 .1-32.1S555.5 224 544 224H144c-11.4 0-21.9 6-27.6 15.9L48 357.1V96c0-8.8 7.2-16 16-16H181.5c4.2 0 8.3 1.7 11.3 4.7l26.5 26.5c21 21 49.5 32.8 79.2 32.8H416c8.8 0 16 7.2 16 16v32h48V160c0-35.3-28.7-64-64-64H298.5c-17 0-33.3-6.7-45.3-18.7L226.7 50.7c-12-12-28.3-18.7-45.3-18.7H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H87.7 384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "folder-plus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f65e" + ] + } + }, + "changes": [ + "5.3.0", + "5.11.0", + "5.12.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "archive", + "create", + "directory", + "document", + "file", + "new", + "positive" + ] + }, + "unicode": "f65e", + "label": "Folder Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H192c20.1 0 39.1 9.5 51.2 25.6l19.2 25.6c6 8.1 15.5 12.8 25.6 12.8H448c35.3 0 64 28.7 64 64V416zM232 376c0 13.3 10.7 24 24 24s24-10.7 24-24V312h64c13.3 0 24-10.7 24-24s-10.7-24-24-24H280V200c0-13.3-10.7-24-24-24s-24 10.7-24 24v64H168c-13.3 0-24 10.7-24 24s10.7 24 24 24h64v64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "folder-tree": { + "aliases": { + "unicodes": { + "secondary": [ + "10f802" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "directory", + "document", + "file", + "search", + "structure" + ] + }, + "unicode": "f802", + "label": "Folder Tree", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32v96V384c0 35.3 28.7 64 64 64H256V384H64V160H256V96H64V32zM288 192c0 17.7 14.3 32 32 32H544c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H445.3c-8.5 0-16.6-3.4-22.6-9.4L409.4 9.4c-6-6-14.1-9.4-22.6-9.4H320c-17.7 0-32 14.3-32 32V192zm0 288c0 17.7 14.3 32 32 32H544c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32H445.3c-8.5 0-16.6-3.4-22.6-9.4l-13.3-13.3c-6-6-14.1-9.4-22.6-9.4H320c-17.7 0-32 14.3-32 32V480z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "font": { + "aliases": { + "unicodes": { + "secondary": [ + "10f031" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabet", + "glyph", + "text", + "type", + "typeface" + ] + }, + "unicode": "f031", + "label": "Font", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M254 52.8C249.3 40.3 237.3 32 224 32s-25.3 8.3-30 20.8L57.8 416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-1.8l18-48H303.8l18 48H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H390.2L254 52.8zM279.8 304H168.2L224 155.1 279.8 304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "font-awesome": { + "aliases": { + "names": [ + "font-awesome-flag", + "font-awesome-logo-full" + ], + "unicodes": { + "composite": [ + "f425", + "f4e6" + ], + "primary": [ + "f4e6" + ], + "secondary": [ + "10f2b4", + "10f4e6" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.15.4", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "awesome", + "flag", + "font", + "icons", + "typeface" + ] + }, + "unicode": "f2b4", + "label": "Font Awesome", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 48V384c-63.1 22.5-82.3 32-119.5 32c-62.8 0-86.6-32-149.3-32c-20.6 0-36.6 3.6-51.2 8.2v-64c14.6-4.6 30.6-8.2 51.2-8.2c62.7 0 86.5 32 149.3 32c20.4 0 35.6-3 55.5-9.3v-208c-19.9 6.3-35.1 9.3-55.5 9.3c-62.8 0-86.6-32-149.3-32c-50.8 0-74.9 20.6-115.2 28.7V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 46.3 14.3 32 32 32s32 14.3 32 32V76.7c40.3-8 64.4-28.7 115.2-28.7c62.7 0 86.5 32 149.3 32c37.1 0 56.4-9.5 119.5-32z" + }, + "regular": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 56c0-13.3-10.7-24-24-24S0 42.7 0 56V456c0 13.3 10.7 24 24 24s24-10.7 24-24V124.2l12.5-2.4c16.7-3.2 31.5-8.5 44.2-13.1l0 0 0 0c3.7-1.3 7.1-2.6 10.4-3.7c15.2-5.2 30.4-9.1 51.2-9.1c25.6 0 43 6 63.5 13.3l.5 .2c20.9 7.4 44.8 15.9 79.1 15.9c32.3 0 53.7-6.8 90.5-19.6V342.9l-9.5 3.3c-41.5 14.4-55.2 19.2-81 19.2c-25.7 0-43.1-6-63.6-13.3l-.6-.2c-20.8-7.4-44.8-15.8-79-15.8c-16.8 0-31 2-43.9 5c-12.9 3-20.9 16-17.9 28.9s16 20.9 28.9 17.9c9.6-2.2 20.1-3.7 32.9-3.7c25.6 0 43 6 63.5 13.3l.5 .2c20.9 7.4 44.8 15.9 79.1 15.9c34.4 0 56.4-7.7 97.8-22.2c7.5-2.6 15.5-5.4 24.4-8.5l16.2-5.5V360 72 38.4L416.2 49.3c-9.7 3.3-18.2 6.3-25.7 8.9c-41.5 14.4-55.2 19.2-81 19.2c-25.7 0-43.1-6-63.6-13.3l-.6-.2c-20.8-7.4-44.8-15.8-79-15.8c-27.8 0-48.5 5.5-66.6 11.6c-4.9 1.7-9.3 3.3-13.6 4.8c-11.9 4.3-22 7.9-34.7 10.3L48 75.4V56z" + }, + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 48V384C385 407 366 416 329 416C266 416 242 384 179 384C159 384 143 388 128 392V328C143 324 159 320 179 320C242 320 266 352 329 352C349 352 364 349 384 343V135C364 141 349 144 329 144C266 144 242 112 179 112C128 112 104 133 64 141V448C64 466 50 480 32 480S0 466 0 448V64C0 46 14 32 32 32S64 46 64 64V77C104 69 128 48 179 48C242 48 266 80 329 80C366 80 385 71 448 48Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + }, + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fonticons": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f280", + "label": "Fonticons", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32zm187 140.9c-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23zm74.3 241.8v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm80.8-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fonticons-fi": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a2", + "label": "Fonticons Fi", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "football": { + "aliases": { + "names": [ + "football-ball" + ], + "unicodes": { + "composite": [ + "1f3c8" + ], + "secondary": [ + "10f44e" + ] + } + }, + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "american football", + "ball", + "fall", + "football", + "nfl", + "pigskin", + "seasonal" + ] + }, + "unicode": "f44e", + "label": "Football", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321823, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M247.5 25.4c-13.5 3.3-26.4 7.2-38.6 11.7C142.9 61.6 96.7 103.6 66 153.6c-18.3 29.8-30.9 62.3-39.2 95.4L264.5 486.6c13.5-3.3 26.4-7.2 38.6-11.7c66-24.5 112.2-66.5 142.9-116.5c18.3-29.8 30.9-62.3 39.1-95.3L247.5 25.4zM495.2 205.3c6.1-56.8 1.4-112.2-7.7-156.4c-2.7-12.9-13-22.9-26.1-25.1c-58.2-9.7-109.9-12-155.6-7.9L495.2 205.3zM206.1 496L16.8 306.7c-6.1 56.8-1.4 112.2 7.7 156.4c2.7 12.9 13 22.9 26.1 25.1c58.2 9.7 109.9 12 155.6 7.9zm54.6-331.3c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6zm-48 48c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6zm-48 48c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fort-awesome": { + "changes": [ + "4.5.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [ + "castle" + ] + }, + "unicode": "f286", + "label": "Fort Awesome", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "fort-awesome-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "castle" + ] + }, + "unicode": "f3a3", + "label": "Alternate Fort Awesome", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208 237.4h-22.2c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7H208c2.1 0 3.7-1.6 3.7-3.7v-51.7c0-2.1-1.6-3.7-3.7-3.7zm118.2 0H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm132-125.1c-2.3-3.2-4.6-6.4-7.1-9.5-9.8-12.5-20.8-24-32.8-34.4-4.5-3.9-9.1-7.6-13.9-11.2-1.6-1.2-3.2-2.3-4.8-3.5C372 34.1 340.3 20 306 13c-16.2-3.3-32.9-5-50-5s-33.9 1.7-50 5c-34.3 7.1-66 21.2-93.3 40.8-1.6 1.1-3.2 2.3-4.8 3.5-4.8 3.6-9.4 7.3-13.9 11.2-3 2.6-5.9 5.3-8.8 8s-5.7 5.5-8.4 8.4c-5.5 5.7-10.7 11.8-15.6 18-2.4 3.1-4.8 6.3-7.1 9.5C25.2 153 8.3 202.5 8.3 256c0 2 .1 4 .1 6 .1.7.1 1.3.1 2 .1 1.3.1 2.7.2 4 0 .8.1 1.5.1 2.3 0 1.3.1 2.5.2 3.7.1.8.1 1.6.2 2.4.1 1.1.2 2.3.3 3.5 0 .8.1 1.6.2 2.4.1 1.2.3 2.4.4 3.6.1.8.2 1.5.3 2.3.1 1.3.3 2.6.5 3.9.1.6.2 1.3.3 1.9l.9 5.7c.1.6.2 1.1.3 1.7.3 1.3.5 2.7.8 4 .2.8.3 1.6.5 2.4.2 1 .5 2.1.7 3.2.2.9.4 1.7.6 2.6.2 1 .4 2 .7 3 .2.9.5 1.8.7 2.7.3 1 .5 1.9.8 2.9.3.9.5 1.8.8 2.7.2.9.5 1.9.8 2.8s.5 1.8.8 2.7c.3 1 .6 1.9.9 2.8.6 1.6 1.1 3.3 1.7 4.9.4 1 .7 1.9 1 2.8.3 1 .7 2 1.1 3 .3.8.6 1.5.9 2.3l1.2 3c.3.7.6 1.5.9 2.2.4 1 .9 2 1.3 3l.9 2.1c.5 1 .9 2 1.4 3 .3.7.6 1.3.9 2 .5 1 1 2.1 1.5 3.1.2.6.5 1.1.8 1.7.6 1.1 1.1 2.2 1.7 3.3.1.2.2.3.3.5 2.2 4.1 4.4 8.2 6.8 12.2.2.4.5.8.7 1.2.7 1.1 1.3 2.2 2 3.3.3.5.6.9.9 1.4.6 1.1 1.3 2.1 2 3.2.3.5.6.9.9 1.4.7 1.1 1.4 2.1 2.1 3.2.2.4.5.8.8 1.2.7 1.1 1.5 2.2 2.3 3.3.2.2.3.5.5.7 37.5 51.7 94.4 88.5 160 99.4.9.1 1.7.3 2.6.4 1 .2 2.1.4 3.1.5s1.9.3 2.8.4c1 .2 2 .3 3 .4.9.1 1.9.2 2.9.3s1.9.2 2.9.3 2.1.2 3.1.3c.9.1 1.8.1 2.7.2 1.1.1 2.3.1 3.4.2.8 0 1.7.1 2.5.1 1.3 0 2.6.1 3.9.1.7.1 1.4.1 2.1.1 2 .1 4 .1 6 .1s4-.1 6-.1c.7 0 1.4-.1 2.1-.1 1.3 0 2.6 0 3.9-.1.8 0 1.7-.1 2.5-.1 1.1-.1 2.3-.1 3.4-.2.9 0 1.8-.1 2.7-.2 1-.1 2.1-.2 3.1-.3s1.9-.2 2.9-.3c.9-.1 1.9-.2 2.9-.3s2-.3 3-.4 1.9-.3 2.8-.4c1-.2 2.1-.3 3.1-.5.9-.1 1.7-.3 2.6-.4 65.6-11 122.5-47.7 160.1-102.4.2-.2.3-.5.5-.7.8-1.1 1.5-2.2 2.3-3.3.2-.4.5-.8.8-1.2.7-1.1 1.4-2.1 2.1-3.2.3-.5.6-.9.9-1.4.6-1.1 1.3-2.1 2-3.2.3-.5.6-.9.9-1.4.7-1.1 1.3-2.2 2-3.3.2-.4.5-.8.7-1.2 2.4-4 4.6-8.1 6.8-12.2.1-.2.2-.3.3-.5.6-1.1 1.1-2.2 1.7-3.3.2-.6.5-1.1.8-1.7.5-1 1-2.1 1.5-3.1.3-.7.6-1.3.9-2 .5-1 1-2 1.4-3l.9-2.1c.5-1 .9-2 1.3-3 .3-.7.6-1.5.9-2.2l1.2-3c.3-.8.6-1.5.9-2.3.4-1 .7-2 1.1-3s.7-1.9 1-2.8c.6-1.6 1.2-3.3 1.7-4.9.3-1 .6-1.9.9-2.8s.5-1.8.8-2.7c.2-.9.5-1.9.8-2.8s.6-1.8.8-2.7c.3-1 .5-1.9.8-2.9.2-.9.5-1.8.7-2.7.2-1 .5-2 .7-3 .2-.9.4-1.7.6-2.6.2-1 .5-2.1.7-3.2.2-.8.3-1.6.5-2.4.3-1.3.6-2.7.8-4 .1-.6.2-1.1.3-1.7l.9-5.7c.1-.6.2-1.3.3-1.9.1-1.3.3-2.6.5-3.9.1-.8.2-1.5.3-2.3.1-1.2.3-2.4.4-3.6 0-.8.1-1.6.2-2.4.1-1.1.2-2.3.3-3.5.1-.8.1-1.6.2-2.4.1 1.7.1.5.2-.7 0-.8.1-1.5.1-2.3.1-1.3.2-2.7.2-4 .1-.7.1-1.3.1-2 .1-2 .1-4 .1-6 0-53.5-16.9-103-45.8-143.7zM448 371.5c-9.4 15.5-20.6 29.9-33.6 42.9-20.6 20.6-44.5 36.7-71.2 48-13.9 5.8-28.2 10.3-42.9 13.2v-75.8c0-58.6-88.6-58.6-88.6 0v75.8c-14.7-2.9-29-7.3-42.9-13.2-26.7-11.3-50.6-27.4-71.2-48-13-13-24.2-27.4-33.6-42.9v-71.3c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7V326h29.6V182c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-4.8 6.5-3.7 9.5-3.7V88.1c-4.4-2-7.4-6.7-7.4-11.5 0-16.8 25.4-16.8 25.4 0 0 4.8-3 9.4-7.4 11.5V92c6.3-1.4 12.7-2.3 19.2-2.3 9.4 0 18.4 3.5 26.3 3.5 7.2 0 15.2-3.5 19.4-3.5 2.1 0 3.7 1.6 3.7 3.7v48.4c0 5.6-18.7 6.5-22.4 6.5-8.6 0-16.6-3.5-25.4-3.5-7 0-14.1 1.2-20.8 2.8v30.7c3 0 9.5-1.1 9.5 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7h22.2c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7v144h29.5v-25.8c0-2.1 1.6-3.7 3.7-3.7h22.2c2.1 0 3.7 1.6 3.7 3.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "forumbee": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f211", + "label": "Forumbee", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "forward": { + "aliases": { + "unicodes": { + "composite": [ + "23e9" + ], + "secondary": [ + "10f04e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "double", + "fast", + "fast-forward button", + "forward", + "next", + "skip" + ] + }, + "unicode": "f04e", + "label": "Forward", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M52.5 440.6c-9.5 7.9-22.8 9.7-34.1 4.4S0 428.4 0 416V96C0 83.6 7.2 72.3 18.4 67s24.5-3.6 34.1 4.4L224 214.3V256v41.7L52.5 440.6zM256 352V256 128 96c0-12.4 7.2-23.7 18.4-29s24.5-3.6 34.1 4.4l192 160c7.3 6.1 11.5 15.1 11.5 24.6s-4.2 18.5-11.5 24.6l-192 160c-9.5 7.9-22.8 9.7-34.1 4.4s-18.4-16.6-18.4-29V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "forward-fast": { + "aliases": { + "names": [ + "fast-forward" + ], + "unicodes": { + "composite": [ + "23ed" + ], + "secondary": [ + "10f050" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "end", + "last", + "next", + "next scene", + "next track", + "next track button", + "triangle" + ] + }, + "unicode": "f050", + "label": "Forward Fast", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M18.4 445c11.2 5.3 24.5 3.6 34.1-4.4L224 297.7V416c0 12.4 7.2 23.7 18.4 29s24.5 3.6 34.1-4.4L448 297.7V416c0 17.7 14.3 32 32 32s32-14.3 32-32V96c0-17.7-14.3-32-32-32s-32 14.3-32 32V214.3L276.5 71.4c-9.5-7.9-22.8-9.7-34.1-4.4S224 83.6 224 96V214.3L52.5 71.4c-9.5-7.9-22.8-9.7-34.1-4.4S0 83.6 0 96V416c0 12.4 7.2 23.7 18.4 29z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "forward-step": { + "aliases": { + "names": [ + "step-forward" + ], + "unicodes": { + "secondary": [ + "10f051" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "end", + "last", + "next" + ] + }, + "unicode": "f051", + "label": "Forward Step", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M52.5 440.6c-9.5 7.9-22.8 9.7-34.1 4.4S0 428.4 0 416V96C0 83.6 7.2 72.3 18.4 67s24.5-3.6 34.1 4.4l192 160L256 241V96c0-17.7 14.3-32 32-32s32 14.3 32 32V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V271l-11.5 9.6-192 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "foursquare": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f180", + "label": "Foursquare", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 368, + 512 + ], + "width": 368, + "height": 512, + "path": "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "franc-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "French Franc Sign", + "currency" + ] + }, + "unicode": "e18f", + "label": "Franc Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M80 32C62.3 32 48 46.3 48 64V224v96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v64c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V256H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "free-code-camp": { + "changes": [ + "4.7.0", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2c5", + "label": "freeCodeCamp", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M97.22,96.21c10.36-10.65,16-17.12,16-21.9,0-2.76-1.92-5.51-3.83-7.42A14.81,14.81,0,0,0,101,64.05c-8.48,0-20.92,8.79-35.84,25.69C23.68,137,2.51,182.81,3.37,250.34s17.47,117,54.06,161.87C76.22,435.86,90.62,448,100.9,448a13.55,13.55,0,0,0,8.37-3.84c1.91-2.76,3.81-5.63,3.81-8.38,0-5.63-3.86-12.2-13.2-20.55-44.45-42.33-67.32-97-67.48-165C32.25,188.8,54,137.83,97.22,96.21ZM239.47,420.07c.58.37.91.55.91.55Zm93.79.55.17-.13C333.24,420.62,333.17,420.67,333.26,420.62Zm3.13-158.18c-16.24-4.15,50.41-82.89-68.05-177.17,0,0,15.54,49.38-62.83,159.57-74.27,104.35,23.46,168.73,34,175.23-6.73-4.35-47.4-35.7,9.55-128.64,11-18.3,25.53-34.87,43.5-72.16,0,0,15.91,22.45,7.6,71.13C287.7,364,354,342.91,355,343.94c22.75,26.78-17.72,73.51-21.58,76.55,5.49-3.65,117.71-78,33-188.1C360.43,238.4,352.62,266.59,336.39,262.44ZM510.88,89.69C496,72.79,483.52,64,475,64a14.81,14.81,0,0,0-8.39,2.84c-1.91,1.91-3.83,4.66-3.83,7.42,0,4.78,5.6,11.26,16,21.9,43.23,41.61,65,92.59,64.82,154.06-.16,68-23,122.63-67.48,165-9.34,8.35-13.18,14.92-13.2,20.55,0,2.75,1.9,5.62,3.81,8.38A13.61,13.61,0,0,0,475.1,448c10.28,0,24.68-12.13,43.47-35.79,36.59-44.85,53.14-94.38,54.06-161.87S552.32,137,510.88,89.69Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "freebsd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a4", + "label": "FreeBSD", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "frog": { + "aliases": { + "unicodes": { + "secondary": [ + "10f52e" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "amphibian", + "bullfrog", + "fauna", + "hop", + "kermit", + "kiss", + "prince", + "ribbit", + "toad", + "wart" + ] + }, + "unicode": "f52e", + "label": "Frog", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M368 32c41.7 0 75.9 31.8 79.7 72.5l85.6 26.3c25.4 7.8 42.8 31.3 42.8 57.9c0 21.8-11.7 41.9-30.7 52.7L400.8 323.5 493.3 416H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H480c-8.5 0-16.6-3.4-22.6-9.4L346.9 360.2c11.7-36 3.2-77.1-25.4-105.7c-40.6-40.6-106.3-40.6-146.9-.1L101 324.4c-6.4 6.1-6.7 16.2-.6 22.6s16.2 6.6 22.6 .6l73.8-70.2 .1-.1 .1-.1c3.5-3.5 7.3-6.6 11.3-9.2c27.9-18.5 65.9-15.4 90.5 9.2c24.7 24.7 27.7 62.9 9 90.9c-2.6 3.8-5.6 7.5-9 10.9L261.8 416H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-35.3 0-64-28.7-64-64C0 249.6 127 112.9 289.3 97.5C296.2 60.2 328.8 32 368 32zm0 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "fulcrum": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f50b", + "label": "Fulcrum", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M95.75 164.14l-35.38 43.55L25 164.14l35.38-43.55zM144.23 0l-20.54 198.18L72.72 256l51 57.82L144.23 512V300.89L103.15 256l41.08-44.89zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55zm-48.48 47L216.5 256l-41.08 44.89V512L196 313.82 247 256l-51-57.82L175.42 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "futbol": { + "aliases": { + "names": [ + "futbol-ball", + "soccer-ball" + ], + "unicodes": { + "composite": [ + "26bd" + ], + "secondary": [ + "10f1e3" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "football", + "mls", + "soccer", + "soccer ball" + ] + }, + "unicode": "f1e3", + "label": "Futbol", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321824, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M417.3 360.1l-71.6-4.8c-5.2-.3-10.3 1.1-14.5 4.2s-7.2 7.4-8.4 12.5l-17.6 69.6C289.5 445.8 273 448 256 448s-33.5-2.2-49.2-6.4L189.2 372c-1.3-5-4.3-9.4-8.4-12.5s-9.3-4.5-14.5-4.2l-71.6 4.8c-17.6-27.2-28.5-59.2-30.4-93.6L125 228.3c4.4-2.8 7.6-7 9.2-11.9s1.4-10.2-.5-15l-26.7-66.6C128 109.2 155.3 89 186.7 76.9l55.2 46c4 3.3 9 5.1 14.1 5.1s10.2-1.8 14.1-5.1l55.2-46c31.3 12.1 58.7 32.3 79.6 57.9l-26.7 66.6c-1.9 4.8-2.1 10.1-.5 15s4.9 9.1 9.2 11.9l60.7 38.2c-1.9 34.4-12.8 66.4-30.4 93.6zM256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zm14.1-325.7c-8.4-6.1-19.8-6.1-28.2 0L194 221c-8.4 6.1-11.9 16.9-8.7 26.8l18.3 56.3c3.2 9.9 12.4 16.6 22.8 16.6h59.2c10.4 0 19.6-6.7 22.8-16.6l18.3-56.3c3.2-9.9-.3-20.7-8.7-26.8l-47.9-34.8z" + }, + "regular": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M177.1 228.6L207.9 320h96.5l29.62-91.38L256 172.1L177.1 228.6zM255.1 0C114.6 0 .0001 114.6 .0001 256S114.6 512 256 512s255.1-114.6 255.1-255.1S397.4 0 255.1 0zM435.2 361.1l-103.9-1.578l-30.67 99.52C286.2 462.2 271.3 464 256 464s-30.19-1.773-44.56-4.93L180.8 359.6L76.83 361.1c-14.93-25.35-24.79-54.01-27.8-84.72L134.3 216.4L100.7 118.1c19.85-22.34 44.32-40.45 72.04-52.62L256 128l83.29-62.47c27.72 12.17 52.19 30.27 72.04 52.62L377.7 216.4l85.23 59.97C459.1 307.1 450.1 335.8 435.2 361.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "g": { + "aliases": { + "unicodes": { + "composite": [ + "67" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter G", + "Latin Small Letter G", + "letter" + ] + }, + "unicode": "47", + "label": "G", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 96C135.6 96 64 167.6 64 256s71.6 160 160 160c77.4 0 142-55 156.8-128H256c-17.7 0-32-14.3-32-32s14.3-32 32-32H400c25.8 0 49.6 21.4 47.2 50.6C437.8 389.6 341.4 480 224 480C100.3 480 0 379.7 0 256S100.3 32 224 32c57.4 0 109.7 21.6 149.3 57c13.2 11.8 14.3 32 2.5 45.2s-32 14.3-45.2 2.5C302.3 111.4 265 96 224 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "galactic-republic": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [ + "politics", + "star wars" + ] + }, + "unicode": "f50c", + "label": "Galactic Republic", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "galactic-senate": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [ + "star wars" + ] + }, + "unicode": "f50d", + "label": "Galactic Senate", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gamepad": { + "aliases": { + "unicodes": { + "secondary": [ + "10f11b" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arcade", + "controller", + "d-pad", + "joystick", + "video", + "video game" + ] + }, + "unicode": "f11b", + "label": "Gamepad", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321824, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 64C86 64 0 150 0 256S86 448 192 448H448c106 0 192-86 192-192s-86-192-192-192H192zM496 248c-22.1 0-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40s-17.9 40-40 40zm-24 56c0 22.1-17.9 40-40 40s-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40zM168 200c0-13.3 10.7-24 24-24s24 10.7 24 24v32h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H216v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H136c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V200z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gas-pump": { + "aliases": { + "unicodes": { + "composite": [ + "26fd" + ], + "secondary": [ + "10f52f" + ] + } + }, + "changes": [ + "5.0.13", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "car", + "diesel", + "fuel", + "fuel pump", + "fuelpump", + "gas", + "gasoline", + "petrol", + "pump", + "station" + ] + }, + "unicode": "f52f", + "label": "Gas Pump", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 64C32 28.7 60.7 0 96 0H256c35.3 0 64 28.7 64 64V256h8c48.6 0 88 39.4 88 88v32c0 13.3 10.7 24 24 24s24-10.7 24-24V222c-27.6-7.1-48-32.2-48-62V96L384 64c-8.8-8.8-8.8-23.2 0-32s23.2-8.8 32 0l77.3 77.3c12 12 18.7 28.3 18.7 45.3V168v24 32V376c0 39.8-32.2 72-72 72s-72-32.2-72-72V344c0-22.1-17.9-40-40-40h-8V448c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V64zM96 80v96c0 8.8 7.2 16 16 16H240c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H112c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gauge": { + "aliases": { + "names": [ + "dashboard", + "gauge-med", + "tachometer-alt-average" + ], + "unicodes": { + "secondary": [ + "10f624" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "fast", + "odometer", + "speed", + "speedometer" + ] + }, + "unicode": "f624", + "label": "Gauge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm320 96c0-26.9-16.5-49.9-40-59.3V88c0-13.3-10.7-24-24-24s-24 10.7-24 24V292.7c-23.5 9.5-40 32.5-40 59.3c0 35.3 28.7 64 64 64s64-28.7 64-64zM144 176a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm-16 80a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM400 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gauge-high": { + "aliases": { + "names": [ + "tachometer-alt", + "tachometer-alt-fast" + ], + "unicodes": { + "composite": [ + "f3fd" + ], + "primary": [ + "f3fd" + ], + "secondary": [ + "10f3fd", + "10f625" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "fast", + "odometer", + "speed", + "speedometer" + ] + }, + "unicode": "f625", + "label": "Gauge High", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM256 416c35.3 0 64-28.7 64-64c0-17.4-6.9-33.1-18.1-44.6L366 161.7c5.3-12.1-.2-26.3-12.3-31.6s-26.3 .2-31.6 12.3L257.9 288c-.6 0-1.3 0-1.9 0c-35.3 0-64 28.7-64 64s28.7 64 64 64zM176 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM96 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm352-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gauge-simple": { + "aliases": { + "names": [ + "gauge-simple-med", + "tachometer-average" + ], + "unicodes": { + "secondary": [ + "10f629" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "fast", + "odometer", + "speed", + "speedometer" + ] + }, + "unicode": "f629", + "label": "Gauge Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm320 96c0-26.9-16.5-49.9-40-59.3V88c0-13.3-10.7-24-24-24s-24 10.7-24 24V292.7c-23.5 9.5-40 32.5-40 59.3c0 35.3 28.7 64 64 64s64-28.7 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gauge-simple-high": { + "aliases": { + "names": [ + "tachometer", + "tachometer-fast" + ], + "unicodes": { + "composite": [ + "f0e4" + ], + "primary": [ + "f0e4" + ], + "secondary": [ + "10f0e4", + "10f62a" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "fast", + "odometer", + "speed", + "speedometer" + ] + }, + "unicode": "f62a", + "label": "Gauge Simple High", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm320 96c0-15.9-5.8-30.4-15.3-41.6l76.6-147.4c6.1-11.8 1.5-26.3-10.2-32.4s-26.2-1.5-32.4 10.2L262.1 288.3c-2-.2-4-.3-6.1-.3c-35.3 0-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gavel": { + "aliases": { + "names": [ + "legal" + ], + "unicodes": { + "secondary": [ + "10f0e3" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hammer", + "judge", + "law", + "lawyer", + "opinion" + ] + }, + "unicode": "f0e3", + "label": "Gavel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M318.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-120 120c-12.5 12.5-12.5 32.8 0 45.3l16 16c12.5 12.5 32.8 12.5 45.3 0l4-4L325.4 293.4l-4 4c-12.5 12.5-12.5 32.8 0 45.3l16 16c12.5 12.5 32.8 12.5 45.3 0l120-120c12.5-12.5 12.5-32.8 0-45.3l-16-16c-12.5-12.5-32.8-12.5-45.3 0l-4 4L330.6 74.6l4-4c12.5-12.5 12.5-32.8 0-45.3l-16-16zm-152 288c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l48 48c12.5 12.5 32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-1.4-1.4L272 285.3 226.7 240 168 298.7l-1.4-1.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gear": { + "aliases": { + "names": [ + "cog" + ], + "unicodes": { + "composite": [ + "2699" + ], + "secondary": [ + "10f013" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cog", + "cogwheel", + "gear", + "mechanical", + "settings", + "sprocket", + "tool", + "wheel" + ] + }, + "unicode": "f013", + "label": "Gear", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M481.9 166.6c3.2 8.7 .5 18.4-6.4 24.6l-30.9 28.1c-7.7 7.1-11.4 17.5-10.9 27.9c.1 2.9 .2 5.8 .2 8.8s-.1 5.9-.2 8.8c-.5 10.5 3.1 20.9 10.9 27.9l30.9 28.1c6.9 6.2 9.6 15.9 6.4 24.6c-4.4 11.9-9.7 23.3-15.8 34.3l-4.7 8.1c-6.6 11-14 21.4-22.1 31.2c-5.9 7.2-15.7 9.6-24.5 6.8l-39.7-12.6c-10-3.2-20.8-1.1-29.7 4.6c-4.9 3.1-9.9 6.1-15.1 8.7c-9.3 4.8-16.5 13.2-18.8 23.4l-8.9 40.7c-2 9.1-9 16.3-18.2 17.8c-13.8 2.3-28 3.5-42.5 3.5s-28.7-1.2-42.5-3.5c-9.2-1.5-16.2-8.7-18.2-17.8l-8.9-40.7c-2.2-10.2-9.5-18.6-18.8-23.4c-5.2-2.7-10.2-5.6-15.1-8.7c-8.8-5.7-19.7-7.8-29.7-4.6L69.1 425.9c-8.8 2.8-18.6 .3-24.5-6.8c-8.1-9.8-15.5-20.2-22.1-31.2l-4.7-8.1c-6.1-11-11.4-22.4-15.8-34.3c-3.2-8.7-.5-18.4 6.4-24.6l30.9-28.1c7.7-7.1 11.4-17.5 10.9-27.9c-.1-2.9-.2-5.8-.2-8.8s.1-5.9 .2-8.8c.5-10.5-3.1-20.9-10.9-27.9L8.4 191.2c-6.9-6.2-9.6-15.9-6.4-24.6c4.4-11.9 9.7-23.3 15.8-34.3l4.7-8.1c6.6-11 14-21.4 22.1-31.2c5.9-7.2 15.7-9.6 24.5-6.8l39.7 12.6c10 3.2 20.8 1.1 29.7-4.6c4.9-3.1 9.9-6.1 15.1-8.7c9.3-4.8 16.5-13.2 18.8-23.4l8.9-40.7c2-9.1 9-16.3 18.2-17.8C213.3 1.2 227.5 0 242 0s28.7 1.2 42.5 3.5c9.2 1.5 16.2 8.7 18.2 17.8l8.9 40.7c2.2 10.2 9.4 18.6 18.8 23.4c5.2 2.7 10.2 5.6 15.1 8.7c8.8 5.7 19.7 7.7 29.7 4.6l39.7-12.6c8.8-2.8 18.6-.3 24.5 6.8c8.1 9.8 15.5 20.2 22.1 31.2l4.7 8.1c6.1 11 11.4 22.4 15.8 34.3zM242 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gears": { + "aliases": { + "names": [ + "cogs" + ], + "unicodes": { + "secondary": [ + "10f085" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gears", + "mechanical", + "settings", + "sprocket", + "wheel" + ] + }, + "unicode": "f085", + "label": "Gears", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M305.5 135.3c7.1-6.3 9.9-16.2 6.2-25c-2.3-5.3-4.8-10.5-7.6-15.5L301 89.4c-3-5-6.3-9.9-9.8-14.6c-5.7-7.6-15.7-10.1-24.7-7.1l-28.2 9.3c-10.7-8.8-23-16-36.2-20.9L196 27.1c-1.9-9.3-9.1-16.7-18.5-17.8C170.9 8.4 164.2 8 157.4 8h-.7c-6.8 0-13.5 .4-20.1 1.2c-9.4 1.1-16.6 8.6-18.5 17.8L112 56.1c-13.3 5-25.5 12.1-36.2 20.9L47.5 67.8c-9-3-19-.5-24.7 7.1c-3.5 4.7-6.8 9.6-9.9 14.6l-3 5.3c-2.8 5-5.3 10.2-7.6 15.6c-3.7 8.7-.9 18.6 6.2 25l22.2 19.8C29.6 161.9 29 168.9 29 176s.6 14.1 1.7 20.9L8.5 216.7c-7.1 6.3-9.9 16.2-6.2 25c2.3 5.3 4.8 10.5 7.6 15.6l3 5.2c3 5.1 6.3 9.9 9.9 14.6c5.7 7.6 15.7 10.1 24.7 7.1l28.2-9.3c10.7 8.8 23 16 36.2 20.9l6.1 29.1c1.9 9.3 9.1 16.7 18.5 17.8c6.7 .8 13.5 1.2 20.4 1.2s13.7-.4 20.4-1.2c9.4-1.1 16.6-8.6 18.5-17.8l6.1-29.1c13.3-5 25.5-12.1 36.2-20.9l28.2 9.3c9 3 19 .5 24.7-7.1c3.5-4.7 6.8-9.5 9.8-14.6l3.1-5.4c2.8-5 5.3-10.2 7.6-15.5c3.7-8.7 .9-18.6-6.2-25l-22.2-19.8c1.1-6.8 1.7-13.8 1.7-20.9s-.6-14.1-1.7-20.9l22.2-19.8zM109 176a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM501.7 500.5c6.3 7.1 16.2 9.9 25 6.2c5.3-2.3 10.5-4.8 15.5-7.6l5.4-3.1c5-3 9.9-6.3 14.6-9.8c7.6-5.7 10.1-15.7 7.1-24.7l-9.3-28.2c8.8-10.7 16-23 20.9-36.2l29.1-6.1c9.3-1.9 16.7-9.1 17.8-18.5c.8-6.7 1.2-13.5 1.2-20.4s-.4-13.7-1.2-20.4c-1.1-9.4-8.6-16.6-17.8-18.5L580.9 307c-5-13.3-12.1-25.5-20.9-36.2l9.3-28.2c3-9 .5-19-7.1-24.7c-4.7-3.5-9.6-6.8-14.6-9.9l-5.3-3c-5-2.8-10.2-5.3-15.6-7.6c-8.7-3.7-18.6-.9-25 6.2l-19.8 22.2c-6.8-1.1-13.8-1.7-20.9-1.7s-14.1 .6-20.9 1.7l-19.8-22.2c-6.3-7.1-16.2-9.9-25-6.2c-5.3 2.3-10.5 4.8-15.6 7.6l-5.2 3c-5.1 3-9.9 6.3-14.6 9.9c-7.6 5.7-10.1 15.7-7.1 24.7l9.3 28.2c-8.8 10.7-16 23-20.9 36.2L312.1 313c-9.3 1.9-16.7 9.1-17.8 18.5c-.8 6.7-1.2 13.5-1.2 20.4s.4 13.7 1.2 20.4c1.1 9.4 8.6 16.6 17.8 18.5l29.1 6.1c5 13.3 12.1 25.5 20.9 36.2l-9.3 28.2c-3 9-.5 19 7.1 24.7c4.7 3.5 9.5 6.8 14.6 9.8l5.4 3.1c5 2.8 10.2 5.3 15.5 7.6c8.7 3.7 18.6 .9 25-6.2l19.8-22.2c6.8 1.1 13.8 1.7 20.9 1.7s14.1-.6 20.9-1.7l19.8 22.2zM461 304a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gem": { + "aliases": { + "unicodes": { + "composite": [ + "1f48e" + ], + "secondary": [ + "10f3a5" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "diamond", + "gem", + "gem stone", + "jewel", + "jewelry", + "sapphire", + "stone", + "treasure" + ] + }, + "unicode": "f3a5", + "label": "Gem", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M116.7 33.8c4.5-6.1 11.7-9.8 19.3-9.8H376c7.6 0 14.8 3.6 19.3 9.8l112 152c6.8 9.2 6.1 21.9-1.5 30.4l-232 256c-4.6 5-11 7.9-17.8 7.9s-13.2-2.9-17.8-7.9l-232-256c-7.7-8.5-8.3-21.2-1.5-30.4l112-152zm38.5 39.8c-3.3 2.5-4.2 7-2.1 10.5l57.4 95.6L63.3 192c-4.1 .3-7.3 3.8-7.3 8s3.2 7.6 7.3 8l192 16c.4 0 .9 0 1.3 0l192-16c4.1-.3 7.3-3.8 7.3-8s-3.2-7.6-7.3-8L301.5 179.8l57.4-95.6c2.1-3.5 1.2-8.1-2.1-10.5s-7.9-2-10.7 1L256 172.2 165.9 74.6c-2.8-3-7.4-3.4-10.7-1z" + }, + "regular": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M168.5 72L256 165l87.5-93h-175zM383.9 99.1L311.5 176h129L383.9 99.1zm50 124.9H256 78.1L256 420.3 433.9 224zM71.5 176h129L128.1 99.1 71.5 176zm434.3 40.1l-232 256c-4.6 5-11 7.9-17.8 7.9s-13.2-2.9-17.8-7.9l-232-256c-7.7-8.5-8.3-21.2-1.5-30.4l112-152c4.5-6.1 11.7-9.8 19.3-9.8H376c7.6 0 14.8 3.6 19.3 9.8l112 152c6.8 9.2 6.1 21.9-1.5 30.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "genderless": { + "aliases": { + "unicodes": { + "secondary": [ + "10f22d" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "androgynous", + "asexual", + "gender", + "sexless" + ] + }, + "unicode": "f22d", + "label": "Genderless", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M176 144a112 112 0 1 1 0 224 112 112 0 1 1 0-224zm0 288a176 176 0 1 0 0-352 176 176 0 1 0 0 352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "get-pocket": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f265", + "label": "Get Pocket", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gg": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f260", + "label": "GG Currency", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gg-circle": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f261", + "label": "GG Currency Circle", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ghost": { + "aliases": { + "unicodes": { + "composite": [ + "1f47b" + ], + "secondary": [ + "10f6e2" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apparition", + "blinky", + "clyde", + "creature", + "face", + "fairy tale", + "fantasy", + "floating", + "ghost", + "halloween", + "holiday", + "inky", + "monster", + "pacman", + "pinky", + "spirit" + ] + }, + "unicode": "f6e2", + "label": "Ghost", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M40.1 467.1l-11.2 9c-3.2 2.5-7.1 3.9-11.1 3.9C8 480 0 472 0 462.2V192C0 86 86 0 192 0S384 86 384 192V462.2c0 9.8-8 17.8-17.8 17.8c-4 0-7.9-1.4-11.1-3.9l-11.2-9c-13.4-10.7-32.8-9-44.1 3.9L269.3 506c-3.3 3.8-8.2 6-13.3 6s-9.9-2.2-13.3-6l-26.6-30.5c-12.7-14.6-35.4-14.6-48.2 0L141.3 506c-3.3 3.8-8.2 6-13.3 6s-9.9-2.2-13.3-6L84.2 471c-11.3-12.9-30.7-14.6-44.1-3.9zM160 192a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm96 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gift": { + "aliases": { + "unicodes": { + "composite": [ + "1f381" + ], + "secondary": [ + "10f06b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "box", + "celebration", + "christmas", + "generosity", + "gift", + "giving", + "holiday", + "party", + "present", + "wrapped", + "wrapped gift", + "xmas" + ] + }, + "unicode": "f06b", + "label": "Gift", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M190.5 68.8L225.3 128H224 152c-22.1 0-40-17.9-40-40s17.9-40 40-40h2.2c14.9 0 28.8 7.9 36.3 20.8zM64 88c0 14.4 3.5 28 9.6 40H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H480c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H438.4c6.1-12 9.6-25.6 9.6-40c0-48.6-39.4-88-88-88h-2.2c-31.9 0-61.5 16.9-77.7 44.4L256 85.5l-24.1-41C215.7 16.9 186.1 0 154.2 0H152C103.4 0 64 39.4 64 88zm336 0c0 22.1-17.9 40-40 40H288h-1.3l34.8-59.2C329.1 55.9 342.9 48 357.8 48H360c22.1 0 40 17.9 40 40zM32 288V464c0 26.5 21.5 48 48 48H224V288H32zM288 512H432c26.5 0 48-21.5 48-48V288H288V512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gifts": { + "aliases": { + "unicodes": { + "secondary": [ + "10f79c" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "christmas", + "generosity", + "giving", + "holiday", + "party", + "present", + "wrapped", + "xmas" + ] + }, + "unicode": "f79c", + "label": "Gifts", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M200.6 32C205 19.5 198.5 5.8 186 1.4S159.8 3.5 155.4 16L144.7 46.2l-9.9-29.8C130.6 3.8 117-3 104.4 1.2S85 19 89.2 31.6l8.3 25-27.4-20c-10.7-7.8-25.7-5.4-33.5 5.3s-5.4 25.7 5.3 33.5L70.2 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H200.6c-5.4-9.4-8.6-20.3-8.6-32V256c0-29.9 20.5-55 48.2-62c1.8-31 17.1-58.2 40.1-76.1C271.7 104.7 256.9 96 240 96H217.8l28.3-20.6c10.7-7.8 13.1-22.8 5.3-33.5s-22.8-13.1-33.5-5.3L192.5 55.1 200.6 32zM363.5 185.5L393.1 224H344c-13.3 0-24-10.7-24-24c0-13.1 10.8-24 24.2-24c7.6 0 14.7 3.5 19.3 9.5zM272 200c0 8.4 1.4 16.5 4.1 24H272c-26.5 0-48 21.5-48 48v80H416V256h32v96H640V272c0-26.5-21.5-48-48-48h-4.1c2.7-7.5 4.1-15.6 4.1-24c0-39.9-32.5-72-72.2-72c-22.4 0-43.6 10.4-57.3 28.2L432 195.8l-30.5-39.6c-13.7-17.8-35-28.2-57.3-28.2c-39.7 0-72.2 32.1-72.2 72zM224 464c0 26.5 21.5 48 48 48H416V384H224v80zm224 48H592c26.5 0 48-21.5 48-48V384H448V512zm96-312c0 13.3-10.7 24-24 24H470.9l29.6-38.5c4.6-5.9 11.7-9.5 19.3-9.5c13.4 0 24.2 10.9 24.2 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "git": { + "changes": [ + "4.1.0", + "5.0.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d3", + "label": "Git", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M216.29 158.39H137C97 147.9 6.51 150.63 6.51 233.18c0 30.09 15 51.23 35 61-25.1 23-37 33.85-37 49.21 0 11 4.47 21.14 17.89 26.81C8.13 383.61 0 393.35 0 411.65c0 32.11 28.05 50.82 101.63 50.82 70.75 0 111.79-26.42 111.79-73.18 0-58.66-45.16-56.5-151.63-63l13.43-21.55c27.27 7.58 118.7 10 118.7-67.89 0-18.7-7.73-31.71-15-41.07l37.41-2.84zm-63.42 241.9c0 32.06-104.89 32.1-104.89 2.43 0-8.14 5.27-15 10.57-21.54 77.71 5.3 94.32 3.37 94.32 19.11zm-50.81-134.58c-52.8 0-50.46-71.16 1.2-71.16 49.54 0 50.82 71.16-1.2 71.16zm133.3 100.51v-32.1c26.75-3.66 27.24-2 27.24-11V203.61c0-8.5-2.05-7.38-27.24-16.26l4.47-32.92H324v168.71c0 6.51.4 7.32 6.51 8.14l20.73 2.84v32.1zm52.45-244.31c-23.17 0-36.59-13.43-36.59-36.61s13.42-35.77 36.59-35.77c23.58 0 37 12.62 37 35.77s-13.42 36.61-37 36.61zM512 350.46c-17.49 8.53-43.1 16.26-66.28 16.26-48.38 0-66.67-19.5-66.67-65.46V194.75c0-5.42 1.05-4.06-31.71-4.06V154.5c35.78-4.07 50-22 54.47-66.27h38.63c0 65.83-1.34 61.81 3.26 61.81H501v40.65h-60.56v97.15c0 6.92-4.92 51.41 60.57 26.84z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "git-alt": { + "changes": [ + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f841", + "label": "Git Alt", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M439.55 236.05L244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "github": { + "changes": [ + "2.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "unicode": "f09b", + "label": "GitHub", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "github-alt": { + "changes": [ + "3.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "unicode": "f113", + "label": "Alternate GitHub", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 480, + 512 + ], + "width": 480, + "height": 512, + "path": "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gitkraken": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a6", + "label": "GitKraken", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 592, + 512 + ], + "width": 592, + "height": 512, + "path": "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gitlab": { + "changes": [ + "4.6.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "Axosoft" + ] + }, + "unicode": "f296", + "label": "GitLab", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M503.5 204.6L502.8 202.8L433.1 21.02C431.7 17.45 429.2 14.43 425.9 12.38C423.5 10.83 420.8 9.865 417.9 9.57C415 9.275 412.2 9.653 409.5 10.68C406.8 11.7 404.4 13.34 402.4 15.46C400.5 17.58 399.1 20.13 398.3 22.9L351.3 166.9H160.8L113.7 22.9C112.9 20.13 111.5 17.59 109.6 15.47C107.6 13.35 105.2 11.72 102.5 10.7C99.86 9.675 96.98 9.295 94.12 9.587C91.26 9.878 88.51 10.83 86.08 12.38C82.84 14.43 80.33 17.45 78.92 21.02L9.267 202.8L8.543 204.6C-1.484 230.8-2.72 259.6 5.023 286.6C12.77 313.5 29.07 337.3 51.47 354.2L51.74 354.4L52.33 354.8L158.3 434.3L210.9 474L242.9 498.2C246.6 500.1 251.2 502.5 255.9 502.5C260.6 502.5 265.2 500.1 268.9 498.2L300.9 474L353.5 434.3L460.2 354.4L460.5 354.1C482.9 337.2 499.2 313.5 506.1 286.6C514.7 259.6 513.5 230.8 503.5 204.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gitter": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f426", + "label": "Gitter", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "glass-water": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "potable", + "water" + ] + }, + "unicode": "e4f4", + "label": "Glass Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C23.1 0 14.6 3.7 8.6 10.2S-.6 25.4 .1 34.3L28.9 437.7c3 41.9 37.8 74.3 79.8 74.3H275.3c42 0 76.8-32.4 79.8-74.3L383.9 34.3c.6-8.9-2.4-17.6-8.5-24.1S360.9 0 352 0H32zM73 156.5L66.4 64H317.6L311 156.5l-24.2 12.1c-19.4 9.7-42.2 9.7-61.6 0c-20.9-10.4-45.5-10.4-66.4 0c-19.4 9.7-42.2 9.7-61.6 0L73 156.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "glass-water-droplet": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "potable", + "water" + ] + }, + "unicode": "e4f5", + "label": "Glass Water Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C23.1 0 14.6 3.7 8.6 10.2S-.6 25.4 .1 34.3L28.9 437.7c3 41.9 37.8 74.3 79.8 74.3H275.3c42 0 76.8-32.4 79.8-74.3L383.9 34.3c.6-8.9-2.4-17.6-8.5-24.1S360.9 0 352 0H32zM83 297.5L66.4 64H317.6L301 297.5 288 304c-20.1 10.1-43.9 10.1-64 0s-43.9-10.1-64 0s-43.9 10.1-64 0l-13-6.5zM256 196c0-24-33.7-70.1-52.2-93.5c-6.1-7.7-17.5-7.7-23.6 0C161.7 125.9 128 172 128 196c0 33.1 28.7 60 64 60s64-26.9 64-60z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "glasses": { + "aliases": { + "unicodes": { + "secondary": [ + "10f530" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hipster", + "nerd", + "reading", + "sight", + "spectacles", + "vision" + ] + }, + "unicode": "f530", + "label": "Glasses", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M118.6 80c-11.5 0-21.4 7.9-24 19.1L57 260.3c20.5-6.2 48.3-12.3 78.7-12.3c32.3 0 61.8 6.9 82.8 13.5c10.6 3.3 19.3 6.7 25.4 9.2c3.1 1.3 5.5 2.4 7.3 3.2c.9 .4 1.6 .7 2.1 1l.6 .3 .2 .1 .1 0 0 0 0 0s0 0-6.3 12.7h0l6.3-12.7c5.8 2.9 10.4 7.3 13.5 12.7h40.6c3.1-5.3 7.7-9.8 13.5-12.7l6.3 12.7h0c-6.3-12.7-6.3-12.7-6.3-12.7l0 0 0 0 .1 0 .2-.1 .6-.3c.5-.2 1.2-.6 2.1-1c1.8-.8 4.2-1.9 7.3-3.2c6.1-2.6 14.8-5.9 25.4-9.2c21-6.6 50.4-13.5 82.8-13.5c30.4 0 58.2 6.1 78.7 12.3L481.4 99.1c-2.6-11.2-12.6-19.1-24-19.1c-3.1 0-6.2 .6-9.2 1.8L416.9 94.3c-12.3 4.9-26.3-1.1-31.2-13.4s1.1-26.3 13.4-31.2l31.3-12.5c8.6-3.4 17.7-5.2 27-5.2c33.8 0 63.1 23.3 70.8 56.2l43.9 188c1.7 7.3 2.9 14.7 3.5 22.1c.3 1.9 .5 3.8 .5 5.7v6.7V352v16c0 61.9-50.1 112-112 112H419.7c-59.4 0-108.5-46.4-111.8-105.8L306.6 352H269.4l-1.2 22.2C264.9 433.6 215.8 480 156.3 480H112C50.1 480 0 429.9 0 368V352 310.7 304c0-1.9 .2-3.8 .5-5.7c.6-7.4 1.8-14.8 3.5-22.1l43.9-188C55.5 55.3 84.8 32 118.6 32c9.2 0 18.4 1.8 27 5.2l31.3 12.5c12.3 4.9 18.3 18.9 13.4 31.2s-18.9 18.3-31.2 13.4L127.8 81.8c-2.9-1.2-6-1.8-9.2-1.8zM64 325.4V368c0 26.5 21.5 48 48 48h44.3c25.5 0 46.5-19.9 47.9-45.3l2.5-45.6c-2.3-.8-4.9-1.7-7.5-2.5c-17.2-5.4-39.9-10.5-63.6-10.5c-23.7 0-46.2 5.1-63.2 10.5c-3.1 1-5.9 1.9-8.5 2.9zM512 368V325.4c-2.6-.9-5.5-1.9-8.5-2.9c-17-5.4-39.5-10.5-63.2-10.5c-23.7 0-46.4 5.1-63.6 10.5c-2.7 .8-5.2 1.7-7.5 2.5l2.5 45.6c1.4 25.4 22.5 45.3 47.9 45.3H464c26.5 0 48-21.5 48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "glide": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2a5", + "label": "Glide", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "glide-g": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2a6", + "label": "Glide G", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "globe": { + "aliases": { + "unicodes": { + "composite": [ + "1f310" + ], + "secondary": [ + "10f0ac" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.9", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "coordinates", + "country", + "earth", + "global", + "globe", + "globe with meridians", + "gps", + "internet", + "language", + "localize", + "location", + "map", + "meridians", + "network", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "unicode": "f0ac", + "label": "Globe", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 256c0 22.2-1.2 43.6-3.3 64H163.3c-2.2-20.4-3.3-41.8-3.3-64s1.2-43.6 3.3-64H348.7c2.2 20.4 3.3 41.8 3.3 64zm28.8-64H503.9c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64H380.8c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64zm112.6-32H376.7c-10-63.9-29.8-117.4-55.3-151.6c78.3 20.7 142 77.5 171.9 151.6zm-149.1 0H167.7c6.1-36.4 15.5-68.6 27-94.7c10.5-23.6 22.2-40.7 33.5-51.5C239.4 3.2 248.7 0 256 0s16.6 3.2 27.8 13.8c11.3 10.8 23 27.9 33.5 51.5c11.6 26 21 58.2 27 94.7zm-209 0H18.6C48.6 85.9 112.2 29.1 190.6 8.4C165.1 42.6 145.3 96.1 135.3 160zM8.1 192H131.2c-2.1 20.6-3.2 42-3.2 64s1.1 43.4 3.2 64H8.1C2.8 299.5 0 278.1 0 256s2.8-43.5 8.1-64zM194.7 446.6c-11.6-26-20.9-58.2-27-94.6H344.3c-6.1 36.4-15.5 68.6-27 94.6c-10.5 23.6-22.2 40.7-33.5 51.5C272.6 508.8 263.3 512 256 512s-16.6-3.2-27.8-13.8c-11.3-10.8-23-27.9-33.5-51.5zM135.3 352c10 63.9 29.8 117.4 55.3 151.6C112.2 482.9 48.6 426.1 18.6 352H135.3zm358.1 0c-30 74.1-93.6 130.9-171.9 151.6c25.5-34.2 45.2-87.7 55.3-151.6H493.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gofore": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a7", + "label": "Gofore", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 400, + 512 + ], + "width": 400, + "height": 512, + "path": "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "golang": { + "changes": [ + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e40f", + "label": "Go", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M400.1 194.8C389.2 197.6 380.2 199.1 371 202.4C363.7 204.3 356.3 206.3 347.8 208.5L347.2 208.6C343 209.8 342.6 209.9 338.7 205.4C334 200.1 330.6 196.7 324.1 193.5C304.4 183.9 285.4 186.7 267.7 198.2C246.5 211.9 235.6 232.2 235.9 257.4C236.2 282.4 253.3 302.9 277.1 306.3C299.1 309.1 316.9 301.7 330.9 285.8C333 283.2 334.9 280.5 337 277.5V277.5L337 277.5C337.8 276.5 338.5 275.4 339.3 274.2H279.2C272.7 274.2 271.1 270.2 273.3 264.9C277.3 255.2 284.8 239 289.2 230.9C290.1 229.1 292.3 225.1 296.1 225.1H397.2C401.7 211.7 409 198.2 418.8 185.4C441.5 155.5 468.1 139.9 506 133.4C537.8 127.8 567.7 130.9 594.9 149.3C619.5 166.1 634.7 188.9 638.8 218.8C644.1 260.9 631.9 295.1 602.1 324.4C582.4 345.3 557.2 358.4 528.2 364.3C522.6 365.3 517.1 365.8 511.7 366.3C508.8 366.5 506 366.8 503.2 367.1C474.9 366.5 449 358.4 427.2 339.7C411.9 326.4 401.3 310.1 396.1 291.2C392.4 298.5 388.1 305.6 382.1 312.3C360.5 341.9 331.2 360.3 294.2 365.2C263.6 369.3 235.3 363.4 210.3 344.7C187.3 327.2 174.2 304.2 170.8 275.5C166.7 241.5 176.7 210.1 197.2 184.2C219.4 155.2 248.7 136.8 284.5 130.3C313.8 124.1 341.8 128.4 367.1 145.6C383.6 156.5 395.4 171.4 403.2 189.5C405.1 192.3 403.8 193.9 400.1 194.8zM48.3 200.4C47.05 200.4 46.74 199.8 47.36 198.8L53.91 190.4C54.53 189.5 56.09 188.9 57.34 188.9H168.6C169.8 188.9 170.1 189.8 169.5 190.7L164.2 198.8C163.6 199.8 162 200.7 161.1 200.7L48.3 200.4zM1.246 229.1C0 229.1-.3116 228.4 .3116 227.5L6.855 219.1C7.479 218.2 9.037 217.5 10.28 217.5H152.4C153.6 217.5 154.2 218.5 153.9 219.4L151.4 226.9C151.1 228.1 149.9 228.8 148.6 228.8L1.246 229.1zM75.72 255.9C75.1 256.8 75.41 257.7 76.65 257.7L144.6 258C145.5 258 146.8 257.1 146.8 255.9L147.4 248.4C147.4 247.1 146.8 246.2 145.5 246.2H83.2C81.95 246.2 80.71 247.1 80.08 248.1L75.72 255.9zM577.2 237.9C577 235.3 576.9 233.1 576.5 230.9C570.9 200.1 542.5 182.6 512.9 189.5C483.9 196 465.2 214.4 458.4 243.7C452.8 268 464.6 292.6 487 302.6C504.2 310.1 521.3 309.2 537.8 300.7C562.4 287.1 575.8 268 577.4 241.2C577.3 240 577.3 238.9 577.2 237.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "golf-ball-tee": { + "aliases": { + "names": [ + "golf-ball" + ], + "unicodes": { + "secondary": [ + "10f450" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caddy", + "eagle", + "putt", + "tee" + ] + }, + "unicode": "f450", + "label": "Golf Ball Tee", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321826, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 192c0 66.8-34.1 125.6-85.8 160H85.8C34.1 317.6 0 258.8 0 192C0 86 86 0 192 0S384 86 384 192zM242.1 256.6c0 18.5-15 33.5-33.5 33.5c-4.9 0-9.6-1.1-13.8-3c5.3 11.6 16.9 19.7 30.5 19.7c18.5 0 33.5-15 33.5-33.5c0-13.6-8.1-25.3-19.7-30.5c1.9 4.2 3 8.9 3 13.8zm-52.3-49.3c-4.9 0-9.6-1.1-13.8-3c5.3 11.6 16.9 19.7 30.5 19.7c18.5 0 33.5-15 33.5-33.5c0-13.6-8.1-25.3-19.7-30.5c1.9 4.2 3 8.9 3 13.8c0 18.5-15 33.5-33.5 33.5zm113.5-17.5c0 18.5-15 33.5-33.5 33.5c-4.9 0-9.6-1.1-13.8-3c5.3 11.6 16.9 19.7 30.5 19.7c18.5 0 33.5-15 33.5-33.5c0-13.6-8.1-25.3-19.7-30.5c1.9 4.2 3 8.9 3 13.8zM96 416c0-17.7 14.3-32 32-32h64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H240c-8.8 0-16 7.2-16 16v16c0 17.7-14.3 32-32 32s-32-14.3-32-32V464c0-8.8-7.2-16-16-16H128c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "goodreads": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a8", + "label": "Goodreads", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "goodreads-g": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3a9", + "label": "Goodreads G", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a0", + "label": "Google Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 488, + 512 + ], + "width": 488, + "height": 512, + "path": "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-drive": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3aa", + "label": "Google Drive", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-pay": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e079", + "label": "Google Pay", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M105.72,215v41.25h57.1a49.66,49.66,0,0,1-21.14,32.6c-9.54,6.55-21.72,10.28-36,10.28-27.6,0-50.93-18.91-59.3-44.22a65.61,65.61,0,0,1,0-41l0,0c8.37-25.46,31.7-44.37,59.3-44.37a56.43,56.43,0,0,1,40.51,16.08L176.47,155a101.24,101.24,0,0,0-70.75-27.84,105.55,105.55,0,0,0-94.38,59.11,107.64,107.64,0,0,0,0,96.18v.15a105.41,105.41,0,0,0,94.38,59c28.47,0,52.55-9.53,70-25.91,20-18.61,31.41-46.15,31.41-78.91A133.76,133.76,0,0,0,205.38,215Zm389.41-4c-10.13-9.38-23.93-14.14-41.39-14.14-22.46,0-39.34,8.34-50.5,24.86l20.85,13.26q11.45-17,31.26-17a34.05,34.05,0,0,1,22.75,8.79A28.14,28.14,0,0,1,487.79,248v5.51c-9.1-5.07-20.55-7.75-34.64-7.75-16.44,0-29.65,3.88-39.49,11.77s-14.82,18.31-14.82,31.56a39.74,39.74,0,0,0,13.94,31.27c9.25,8.34,21,12.51,34.79,12.51,16.29,0,29.21-7.3,39-21.89h1v17.72h22.61V250C510.25,233.45,505.26,220.34,495.13,211ZM475.9,300.3a37.32,37.32,0,0,1-26.57,11.16A28.61,28.61,0,0,1,431,305.21a19.41,19.41,0,0,1-7.77-15.63c0-7,3.22-12.81,9.54-17.42s14.53-7,24.07-7C470,265,480.3,268,487.64,273.94,487.64,284.07,483.68,292.85,475.9,300.3Zm-93.65-142A55.71,55.71,0,0,0,341.74,142H279.07V328.74H302.7V253.1h39c16,0,29.5-5.36,40.51-15.93.88-.89,1.76-1.79,2.65-2.68A54.45,54.45,0,0,0,382.25,158.26Zm-16.58,62.23a30.65,30.65,0,0,1-23.34,9.68H302.7V165h39.63a32,32,0,0,1,22.6,9.23A33.18,33.18,0,0,1,365.67,220.49ZM614.31,201,577.77,292.7h-.45L539.9,201H514.21L566,320.55l-29.35,64.32H561L640,201Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-play": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ab", + "label": "Google Play", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-plus": { + "changes": [ + "4.6.0", + "5.0.0", + "5.13.1" + ], + "ligatures": [], + "search": { + "terms": [ + "google-plus-circle", + "google-plus-official" + ] + }, + "unicode": "f2b3", + "label": "Google Plus", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256,8C119.1,8,8,119.1,8,256S119.1,504,256,504,504,392.9,504,256,392.9,8,256,8ZM185.3,380a124,124,0,0,1,0-248c31.3,0,60.1,11,83,32.3l-33.6,32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9,0-77.2,35.5-77.2,78.1S142.3,334,185.3,334c32.6,0,64.9-19.1,70.1-53.3H185.3V238.1H302.2a109.2,109.2,0,0,1,1.9,20.7c0,70.8-47.5,121.2-118.8,121.2ZM415.5,273.8v35.5H380V273.8H344.5V238.3H380V202.8h35.5v35.5h35.2v35.5Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-plus-g": { + "changes": [ + "2.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "google-plus", + "social network" + ] + }, + "unicode": "f0d5", + "label": "Google Plus G", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "google-wallet": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1ee", + "label": "Google Wallet", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gopuram": { + "aliases": { + "unicodes": { + "secondary": [ + "10f664" + ] + } + }, + "changes": [ + "5.3.0", + "5.7.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "entrance", + "hinduism", + "temple", + "tower" + ] + }, + "unicode": "f664", + "label": "Gopuram", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M120 0c13.3 0 24 10.7 24 24v8h40V24c0-13.3 10.7-24 24-24s24 10.7 24 24v8h48V24c0-13.3 10.7-24 24-24s24 10.7 24 24v8h40V24c0-13.3 10.7-24 24-24s24 10.7 24 24v8V64v64c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32v96c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H416V352H384V224H352V128H320v96h32V352h32V512H304V464c0-26.5-21.5-48-48-48s-48 21.5-48 48v48H128V352h32V224h32V128H160v96H128V352H96V512H32c-17.7 0-32-14.3-32-32V384c0-17.7 14.3-32 32-32V256c0-17.7 14.3-32 32-32V160c0-17.7 14.3-32 32-32V64 32 24c0-13.3 10.7-24 24-24zM256 272c-17.7 0-32 14.3-32 32v48h64V304c0-17.7-14.3-32-32-32zm-32-80v32h64V192c0-17.7-14.3-32-32-32s-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "graduation-cap": { + "aliases": { + "names": [ + "mortar-board" + ], + "unicodes": { + "composite": [ + "1f393" + ], + "secondary": [ + "10f19d" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.2.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cap", + "celebration", + "ceremony", + "clothing", + "college", + "graduate", + "graduation", + "graduation cap", + "hat", + "learning", + "school", + "student" + ] + }, + "unicode": "f19d", + "label": "Graduation Cap", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 32c-8.1 0-16.1 1.4-23.7 4.1L15.8 137.4C6.3 140.9 0 149.9 0 160s6.3 19.1 15.8 22.6l57.9 20.9C57.3 229.3 48 259.8 48 291.9v28.1c0 28.4-10.8 57.7-22.3 80.8c-6.5 13-13.9 25.8-22.5 37.6C0 442.7-.9 448.3 .9 453.4s6 8.9 11.2 10.2l64 16c4.2 1.1 8.7 .3 12.4-2s6.3-6.1 7.1-10.4c8.6-42.8 4.3-81.2-2.1-108.7C90.3 344.3 86 329.8 80 316.5V291.9c0-30.2 10.2-58.7 27.9-81.5c12.9-15.5 29.6-28 49.2-35.7l157-61.7c8.2-3.2 17.5 .8 20.7 9s-.8 17.5-9 20.7l-157 61.7c-12.4 4.9-23.3 12.4-32.2 21.6l159.6 57.6c7.6 2.7 15.6 4.1 23.7 4.1s16.1-1.4 23.7-4.1L624.2 182.6c9.5-3.4 15.8-12.5 15.8-22.6s-6.3-19.1-15.8-22.6L343.7 36.1C336.1 33.4 328.1 32 320 32zM128 408c0 35.3 86 72 192 72s192-36.7 192-72L496.7 262.6 354.5 314c-11.1 4-22.8 6-34.5 6s-23.5-2-34.5-6L143.3 262.6 128 408z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gratipay": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "like", + "love" + ] + }, + "unicode": "f184", + "label": "Gratipay (Gittip)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "grav": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2d6", + "label": "Grav", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "greater-than": { + "aliases": { + "unicodes": { + "composite": [ + "f531" + ], + "primary": [ + "f531" + ], + "secondary": [ + "103e", + "10f531" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Greater-Than Sign", + "arithmetic", + "compare", + "math" + ] + }, + "unicode": "3e", + "label": "Greater Than", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M3.4 81.7c-7.9 15.8-1.5 35 14.3 42.9L280.5 256 17.7 387.4C1.9 395.3-4.5 414.5 3.4 430.3s27.1 22.2 42.9 14.3l320-160c10.8-5.4 17.7-16.5 17.7-28.6s-6.8-23.2-17.7-28.6l-320-160c-15.8-7.9-35-1.5-42.9 14.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "greater-than-equal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f532" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "compare", + "math" + ] + }, + "unicode": "f532", + "label": "Greater Than Equal", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M52.1 93.7C35.7 87.1 27.7 68.5 34.3 52.1s25.2-24.4 41.6-17.8l320 128C408 167.1 416 178.9 416 192s-8 24.9-20.1 29.7l-320 128c-16.4 6.6-35-1.4-41.6-17.8s1.4-35 17.8-41.6L297.8 192 52.1 93.7zM416 416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "grip": { + "aliases": { + "names": [ + "grip-horizontal" + ], + "unicodes": { + "secondary": [ + "10f58d" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "unicode": "f58d", + "label": "Grip", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 136c0-22.1-17.9-40-40-40L40 96C17.9 96 0 113.9 0 136l0 48c0 22.1 17.9 40 40 40H88c22.1 0 40-17.9 40-40V136zm0 192c0-22.1-17.9-40-40-40H40c-22.1 0-40 17.9-40 40v48c0 22.1 17.9 40 40 40H88c22.1 0 40-17.9 40-40V328zm32-192v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V136c0-22.1-17.9-40-40-40l-48 0c-22.1 0-40 17.9-40 40zM288 328c0-22.1-17.9-40-40-40H200c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V328zm32-192v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V136c0-22.1-17.9-40-40-40l-48 0c-22.1 0-40 17.9-40 40zM448 328c0-22.1-17.9-40-40-40H360c-22.1 0-40 17.9-40 40v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V328z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "grip-lines": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7a4" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "unicode": "f7a4", + "label": "Grip Lines", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 288c-17.7 0-32 14.3-32 32s14.3 32 32 32l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 288zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "grip-lines-vertical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7a5" + ] + } + }, + "changes": [ + "5.6.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "unicode": "f7a5", + "label": "Grip Lines Vertical", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 192, + 512 + ], + "width": 192, + "height": 512, + "path": "M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64zm128 0c0-17.7-14.3-32-32-32s-32 14.3-32 32V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "grip-vertical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f58e" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "unicode": "f58e", + "label": "Grip Vertical", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M40 352c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0zm192 0c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0zM40 320l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40zM232 192c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0zM40 160l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40L40 32C17.9 32 0 49.9 0 72l0 48c0 22.1 17.9 40 40 40zM232 32c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gripfire": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ac", + "label": "Gripfire, Inc.", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M112.5 301.4c0-73.8 105.1-122.5 105.1-203 0-47.1-34-88-39.1-90.4.4 3.3.6 6.7.6 10C179.1 110.1 32 171.9 32 286.6c0 49.8 32.2 79.2 66.5 108.3 65.1 46.7 78.1 71.4 78.1 86.6 0 10.1-4.8 17-4.8 22.3 13.1-16.7 17.4-31.9 17.5-46.4 0-29.6-21.7-56.3-44.2-86.5-16-22.3-32.6-42.6-32.6-69.5zm205.3-39c-12.1-66.8-78-124.4-94.7-130.9l4 7.2c2.4 5.1 3.4 10.9 3.4 17.1 0 44.7-54.2 111.2-56.6 116.7-2.2 5.1-3.2 10.5-3.2 15.8 0 20.1 15.2 42.1 17.9 42.1 2.4 0 56.6-55.4 58.1-87.7 6.4 11.7 9.1 22.6 9.1 33.4 0 41.2-41.8 96.9-41.8 96.9 0 11.6 31.9 53.2 35.5 53.2 1 0 2.2-1.4 3.2-2.4 37.9-39.3 67.3-85 67.3-136.8 0-8-.7-16.2-2.2-24.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "group-arrows-rotate": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "community", + "engagement", + "spin", + "sync" + ] + }, + "unicode": "e4f6", + "label": "Group Arrows Rotate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192.1 71.9c16.9-5 26.6-22.9 21.5-39.8s-22.9-26.6-39.8-21.5c-21.5 6.4-41.8 15.5-60.6 27C105.3 34 96.4 32 87 32C51.7 32 23 60.7 23 96c0 9.4 2 18.3 5.6 26.3C17.2 141 8 161.4 1.6 182.9c-5 16.9 4.6 34.8 21.5 39.8s34.8-4.6 39.8-21.5c4.3-14.6 10.4-28.5 17.9-41.4c2 .2 4.1 .3 6.1 .3c35.3 0 64-28.7 64-64c0-2.1-.1-4.1-.3-6.1c12.9-7.5 26.8-13.6 41.4-17.9zm128-61.3c-16.9-5-34.8 4.6-39.8 21.5s4.6 34.8 21.5 39.8c14.6 4.3 28.5 10.4 41.4 17.9c-.2 2-.3 4.1-.3 6.1c0 35.3 28.7 64 64 64c2.1 0 4.1-.1 6.2-.3c7.5 12.9 13.6 26.8 17.9 41.4c5 16.9 22.9 26.6 39.8 21.5s26.6-22.9 21.5-39.8c-6.4-21.5-15.5-41.8-27-60.6c3.6-8 5.6-16.9 5.6-26.3c0-35.3-28.7-64-64-64c-9.4 0-18.3 2-26.3 5.6c-18.7-11.5-39-20.6-60.6-27zM62.9 310.9c-5-16.9-22.9-26.6-39.8-21.5s-26.6 22.9-21.5 39.8c6.4 21.5 15.5 41.8 27 60.6C25 397.7 23 406.6 23 416c0 35.3 28.7 64 64 64c9.4 0 18.3-2 26.3-5.6c18.7 11.5 39 20.6 60.6 27c16.9 5 34.8-4.6 39.8-21.5s-4.6-34.8-21.5-39.8c-14.6-4.3-28.5-10.4-41.4-17.9c.2-2 .3-4.1 .3-6.2c0-35.3-28.7-64-64-64c-2.1 0-4.1 .1-6.2 .3c-7.5-12.9-13.6-26.8-17.9-41.4zm429.4 18.3c5-16.9-4.6-34.8-21.5-39.8s-34.8 4.6-39.8 21.5c-4.3 14.6-10.4 28.5-17.9 41.4c-2-.2-4.1-.3-6.2-.3c-35.3 0-64 28.7-64 64c0 2.1 .1 4.1 .3 6.2c-12.9 7.5-26.8 13.6-41.4 17.9c-16.9 5-26.6 22.9-21.5 39.8s22.9 26.6 39.8 21.5c21.5-6.4 41.8-15.5 60.6-27c8 3.6 16.9 5.6 26.3 5.6c35.3 0 64-28.7 64-64c0-9.4-2-18.3-5.6-26.3c11.5-18.7 20.6-39 27-60.6zM183.8 256.8c0-15.6 5.6-29.9 14.9-41.1L214 231c6.6 6.6 17.8 1.9 17.8-7.4V163.2c0-5.7-4.7-10.4-10.4-10.4H160.9c-9.3 0-13.9 11.2-7.4 17.8l11.2 11.2c-17.9 19.8-28.9 46.2-28.9 75.1c0 43.6 24.9 81.3 61.1 99.8c11.8 6 26.3 1.4 32.3-10.4s1.4-26.3-10.4-32.3c-20.8-10.6-34.9-32.2-34.9-57zm93.1-58.6c20.8 10.6 34.9 32.2 34.9 57c0 15.6-5.6 29.9-14.9 41.1L281.6 281c-6.6-6.6-17.8-1.9-17.8 7.4v60.5c0 5.7 4.7 10.4 10.4 10.4h60.5c9.3 0 13.9-11.2 7.4-17.8l-11.2-11.2c17.9-19.8 28.9-46.2 28.9-75.1c0-43.6-24.9-81.3-61.1-99.8c-11.8-6-26.3-1.4-32.3 10.4s-1.4 26.3 10.4 32.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "grunt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ad", + "label": "Grunt", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm142.1 45.8c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm62.7-45.8c3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6 7.5-11.4 25.4-26 44.9-37zM160 418.5h-29.4c-5.5 0-8.2 1.6-9.5 2.9-1.9 2-2.2 4.7-.9 8.1 3.5 9.1 11.4 16.5 13.7 18.6 3.1 2.7 7.5 4.3 11.8 4.3 4.4 0 8.3-1.7 11-4.6 7.5-8.2 11.9-17.1 13-19.8.6-1.5 1.3-4.5-.9-6.8-1.8-1.8-4.7-2.7-8.8-2.7zm189.2-101.2c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59zM191.9 187.7h.2c12.7-.1 27.2-17.8 27.2-17.8-9.9 6-18.8 8.1-27.3 8.3-8.5-.2-17.4-2.3-27.3-8.3 0 0 14.5 17.6 27.2 17.8zm61.7 230.7h-29.4c-4.2 0-7.2.9-8.9 2.7-2.2 2.3-1.5 5.2-.9 6.7 1 2.6 5.5 11.3 13 19.3 2.7 2.9 6.6 4.5 11 4.5s8.7-1.6 11.8-4.2c2.3-2 10.2-9.2 13.7-18.1 1.3-3.3 1-6-.9-7.9-1.3-1.3-4-2.9-9.4-3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "guarani-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Guarani Sign", + "currency" + ] + }, + "unicode": "e19a", + "label": "Guarani Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-17.7 0-32 14.3-32 32V66.7C69.2 81.9 0 160.9 0 256s69.2 174.1 160 189.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V445.3c90.8-15.2 160-94.2 160-189.3c0-17.7-14.3-32-32-32H224V132c22.1 5.7 41.8 17.1 57.6 32.6c12.6 12.4 32.9 12.2 45.3-.4s12.2-32.9-.5-45.3C299 92 263.5 73.3 224 66.7V32c0-17.7-14.3-32-32-32zM160 132V380c-55.2-14.2-96-64.3-96-124s40.8-109.8 96-124zM224 380V288h92c-11.6 45-47 80.4-92 92z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "guilded": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07e", + "label": "Guilded", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M443.427,64H4.571c0,103.26,22.192,180.06,43.418,222.358C112.046,414.135,224,448,225.256,448a312.824,312.824,0,0,0,140.55-103.477c25.907-33.923,53.1-87.19,65.916-145.761H171.833c4.14,36.429,22.177,67.946,45.1,86.944h88.589c-17.012,28.213-48.186,54.4-80.456,69.482-31.232-13.259-69.09-46.544-96.548-98.362-26.726-53.833-27.092-105.883-27.092-105.883H437.573A625.91,625.91,0,0,0,443.427,64Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "guitar": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7a6" + ] + } + }, + "changes": [ + "5.6.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acoustic", + "instrument", + "music", + "rock", + "rock and roll", + "song", + "strings" + ] + }, + "unicode": "f7a6", + "label": "Guitar", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M465 7c-9.4-9.4-24.6-9.4-33.9 0L383 55c-2.4 2.4-4.3 5.3-5.5 8.5l-15.4 41-77.5 77.6c-45.1-29.4-99.3-30.2-131 1.6c-11 11-18 24.6-21.4 39.6c-3.7 16.6-19.1 30.7-36.1 31.6c-25.6 1.3-49.3 10.7-67.3 28.6C-16 328.4-7.6 409.4 47.5 464.5s136.1 63.5 180.9 18.7c17.9-17.9 27.4-41.7 28.6-67.3c.9-17 15-32.3 31.6-36.1c15-3.4 28.6-10.5 39.6-21.4c31.8-31.8 31-85.9 1.6-131l77.6-77.6 41-15.4c3.2-1.2 6.1-3.1 8.5-5.5l48-48c9.4-9.4 9.4-24.6 0-33.9L465 7zM208 256a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "gulp": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ae", + "label": "Gulp", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "gun": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "firearm", + "pistol", + "weapon" + ] + }, + "unicode": "e19b", + "label": "Gun", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M528 56c0-13.3-10.7-24-24-24s-24 10.7-24 24v8H32C14.3 64 0 78.3 0 96V208c0 17.7 14.3 32 32 32H42c20.8 0 36.1 19.6 31 39.8L33 440.2c-2.4 9.6-.2 19.7 5.8 27.5S54.1 480 64 480h96c14.7 0 27.5-10 31-24.2L217 352H321.4c23.7 0 44.8-14.9 52.7-37.2L400.9 240H432c8.5 0 16.6-3.4 22.6-9.4L477.3 208H544c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32H528V56zM321.4 304H229l16-64h105l-21 58.7c-1.1 3.2-4.2 5.3-7.5 5.3zM80 128H464c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "h": { + "aliases": { + "unicodes": { + "composite": [ + "68" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter H", + "Latin Small Letter H", + "letter" + ] + }, + "unicode": "48", + "label": "H", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 256l0 192c0 17.7 14.3 32 32 32s32-14.3 32-32l0-224V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V192L64 192 64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-192 256 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hacker-news": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d4", + "label": "Hacker News", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hackerrank": { + "changes": [ + "5.2.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5f7", + "label": "Hackerrank", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M477.5 128C463 103.05 285.13 0 256.16 0S49.25 102.79 34.84 128s-14.49 230.8 0 256 192.38 128 221.32 128S463 409.08 477.49 384s14.51-231 .01-256zM316.13 414.22c-4 0-40.91-35.77-38-38.69.87-.87 6.26-1.48 17.55-1.83 0-26.23.59-68.59.94-86.32 0-2-.44-3.43-.44-5.85h-79.93c0 7.1-.46 36.2 1.37 72.88.23 4.54-1.58 6-5.74 5.94-10.13 0-20.27-.11-30.41-.08-4.1 0-5.87-1.53-5.74-6.11.92-33.44 3-84-.15-212.67v-3.17c-9.67-.35-16.38-1-17.26-1.84-2.92-2.92 34.54-38.69 38.49-38.69s41.17 35.78 38.27 38.69c-.87.87-7.9 1.49-16.77 1.84v3.16c-2.42 25.75-2 79.59-2.63 105.39h80.26c0-4.55.39-34.74-1.2-83.64-.1-3.39.95-5.17 4.21-5.2 11.07-.08 22.15-.13 33.23-.06 3.46 0 4.57 1.72 4.5 5.38C333 354.64 336 341.29 336 373.69c8.87.35 16.82 1 17.69 1.84 2.88 2.91-33.62 38.69-37.58 38.69z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hammer": { + "aliases": { + "unicodes": { + "composite": [ + "1f528" + ], + "secondary": [ + "10f6e3" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "fix", + "hammer", + "recovery", + "repair", + "settings", + "tool" + ] + }, + "unicode": "f6e3", + "label": "Hammer", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M413.5 237.5c-28.2 4.8-58.2-3.6-80-25.4l-38.1-38.1C280.4 159 272 138.8 272 117.6V105.5L192.3 62c-5.3-2.9-8.6-8.6-8.3-14.7s3.9-11.5 9.5-14l47.2-21C259.1 4.2 279 0 299.2 0h18.1c36.7 0 72 14 98.7 39.1l44.6 42c24.2 22.8 33.2 55.7 26.6 86L503 183l8-8c9.4-9.4 24.6-9.4 33.9 0l24 24c9.4 9.4 9.4 24.6 0 33.9l-88 88c-9.4 9.4-24.6 9.4-33.9 0l-24-24c-9.4-9.4-9.4-24.6 0-33.9l8-8-17.5-17.5zM27.4 377.1L260.9 182.6c3.5 4.9 7.5 9.6 11.8 14l38.1 38.1c6 6 12.4 11.2 19.2 15.7L134.9 484.6c-14.5 17.4-36 27.4-58.6 27.4C34.1 512 0 477.8 0 435.7c0-22.6 10.1-44.1 27.4-58.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hamsa": { + "aliases": { + "unicodes": { + "secondary": [ + "10f665" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "amulet", + "christianity", + "islam", + "jewish", + "judaism", + "muslim", + "protection" + ] + }, + "unicode": "f665", + "label": "Hamsa", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M34.6 288H80c8.8 0 16-7.2 16-16V72c0-22.1 17.9-40 40-40s40 17.9 40 40V204c0 11 9 20 20 20s20-9 20-20V40c0-22.1 17.9-40 40-40s40 17.9 40 40V204c0 11 9 20 20 20s20-9 20-20V72c0-22.1 17.9-40 40-40s40 17.9 40 40V272c0 8.8 7.2 16 16 16h45.4c19.1 0 34.6 15.5 34.6 34.6c0 8.6-3.2 16.9-9 23.3L416.6 441c-41.1 45.2-99.4 71-160.6 71s-119.4-25.8-160.6-71L9 345.9c-5.8-6.4-9-14.7-9-23.3C0 303.5 15.5 288 34.6 288zM256 288c-38.4 0-76.8 35.8-90.6 50.2c-3.6 3.7-5.4 8.7-5.4 13.8s1.8 10.1 5.4 13.8C179.2 380.2 217.6 416 256 416s76.8-35.8 90.6-50.2c3.6-3.7 5.4-8.7 5.4-13.8s-1.8-10.1-5.4-13.8C332.8 323.8 294.4 288 256 288zm0 32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand": { + "aliases": { + "names": [ + "hand-paper" + ], + "unicodes": { + "composite": [ + "1f91a", + "270b" + ], + "secondary": [ + "10f256" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Raised Hand", + "backhand", + "game", + "halt", + "palm", + "raised", + "raised back of hand", + "roshambo", + "stop" + ] + }, + "unicode": "f256", + "label": "Hand", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V336c0 1.5 0 3.1 .1 4.6L67.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6L124.8 448c43.1 41.1 100.4 64 160 64H304c97.2 0 176-78.8 176-176V128c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V32z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c-25.3 0-47.2 14.7-57.6 36c-7-2.6-14.5-4-22.4-4c-35.3 0-64 28.7-64 64V261.5l-2.7-2.7c-25-25-65.5-25-90.5 0s-25 65.5 0 90.5L106.5 437c48 48 113.1 75 181 75H296h8c1.5 0 3-.1 4.5-.4c91.7-6.2 165-79.4 171.1-171.1c.3-1.5 .4-3 .4-4.5V160c0-35.3-28.7-64-64-64c-5.5 0-10.9 .7-16 2V96c0-35.3-28.7-64-64-64c-7.9 0-15.4 1.4-22.4 4C303.2 14.7 281.3 0 256 0zM240 96.1c0 0 0-.1 0-.1V64c0-8.8 7.2-16 16-16s16 7.2 16 16V95.9c0 0 0 .1 0 .1V232c0 13.3 10.7 24 24 24s24-10.7 24-24V96c0 0 0 0 0-.1c0-8.8 7.2-16 16-16s16 7.2 16 16v55.9c0 0 0 .1 0 .1v80c0 13.3 10.7 24 24 24s24-10.7 24-24V160.1c0 0 0-.1 0-.1c0-8.8 7.2-16 16-16s16 7.2 16 16V332.9c-.1 .6-.1 1.3-.2 1.9c-3.4 69.7-59.3 125.6-129 129c-.6 0-1.3 .1-1.9 .2H296h-8.5c-55.2 0-108.1-21.9-147.1-60.9L52.7 315.3c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L119 336.4c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V96c0-8.8 7.2-16 16-16c8.8 0 16 7.1 16 15.9V232c0 13.3 10.7 24 24 24s24-10.7 24-24V96.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-back-fist": { + "aliases": { + "names": [ + "hand-rock" + ], + "unicodes": { + "secondary": [ + "10f255" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fist", + "game", + "roshambo" + ] + }, + "unicode": "f255", + "label": "Hand Back Fist", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0C101.5 0 80 21.5 80 48V96v28.5V176c0 8.8-7.2 16-16 16s-16-7.2-16-16V149.3l-9 7.5C24.4 169 16 187 16 206V244c0 38 16.9 74 46.1 98.3L112 384v96c0 17.7 14.3 32 32 32H304c17.7 0 32-14.3 32-32V374.7c46.9-19 80-65 80-118.7V176 160 144c0-26.5-21.5-48-48-48c-12.4 0-23.6 4.7-32.1 12.3C334 83.5 313.3 64 288 64c-12.4 0-23.6 4.7-32.1 12.3C254 51.5 233.3 32 208 32c-12.4 0-23.6 4.7-32.1 12.3C174 19.5 153.3 0 128 0z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M112 64c0-8.8 7.2-16 16-16s16 7.2 16 16c0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2c8.8 0 16 7.2 16 16c0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2c8.8 0 16 7.2 16 16c0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2c8.8 0 16 7.2 16 16V264c0 31.3-20 58-48 67.9c-9.6 3.4-16 12.5-16 22.6V488c0 13.3 10.7 24 24 24s24-10.7 24-24V370.2c38-20.1 64-60.1 64-106.2V160c0-35.3-28.7-64-64-64c-2.8 0-5.6 .2-8.3 .5C300.8 77.1 279.9 64 256 64c-2.8 0-5.6 .2-8.3 .5C236.8 45.1 215.9 32 192 32c-2.8 0-5.6 .2-8.3 .5C172.8 13.1 151.9 0 128 0C92.7 0 64 28.7 64 64v64.3c-11.7 7.4-22.5 16.4-32 26.9l17.8 16.1L32 155.2l-9.4 10.5C8 181.8 0 202.8 0 224.6v12.8C0 287 24.2 333.4 64.8 361.9l13.8-19.7L64.8 361.9l8.9 6.2c6.9 4.8 14.4 8.6 22.3 11.3V488c0 13.3 10.7 24 24 24s24-10.7 24-24V359.9c0-12.6-9.8-23.1-22.4-23.9c-7.3-.5-14.3-2.9-20.3-7.1L88.2 347.5l13.1-18.7-8.9-6.2C64.6 303.1 48 271.3 48 237.4V224.6c0-9.9 3.7-19.4 10.3-26.8l9.4-10.5c3.8-4.2 7.9-8.1 12.3-11.6V208c0 8.8 7.2 16 16 16s16-7.2 16-16V142.3 128 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-dots": { + "aliases": { + "names": [ + "allergies" + ], + "unicodes": { + "secondary": [ + "10f461" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "allergy", + "freckles", + "hand", + "hives", + "palm", + "pox", + "skin", + "spots" + ] + }, + "unicode": "f461", + "label": "Hand Dots", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V336c0 1.5 0 3.1 .1 4.6L67.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6L124.8 448c43.1 41.1 100.4 64 160 64H304c97.2 0 176-78.8 176-176V128c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V32zM240 336a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm80 16a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm48-16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm-16 80a16 16 0 1 1 0 32 16 16 0 1 1 0-32zM240 432a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm-48-48a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-fist": { + "aliases": { + "names": [ + "fist-raised" + ], + "unicodes": { + "composite": [ + "270a" + ], + "secondary": [ + "10f6de" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "clenched", + "d&d", + "dnd", + "fantasy", + "fist", + "hand", + "ki", + "monk", + "punch", + "raised fist", + "resist", + "strength", + "unarmed combat" + ] + }, + "unicode": "f6de", + "label": "Hand Fist", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M160 0c17.7 0 32 14.3 32 32V144H128V32c0-17.7 14.3-32 32-32zM32 64c0-17.7 14.3-32 32-32s32 14.3 32 32v80H32V64zm192 0c0-17.7 14.3-32 32-32s32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V64zm96 64c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V128zm-96 88l0-.6c9.4 5.4 20.3 8.6 32 8.6c13.2 0 25.4-4 35.6-10.8c8.7 24.9 32.5 42.8 60.4 42.8c11.7 0 22.6-3.1 32-8.6V256c0 52.3-25.1 98.8-64 128v96c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V401.6c-17.3-7.9-33.2-18.8-46.9-32.5L37.5 357.5C13.5 333.5 0 300.9 0 267V240c0-35.3 28.7-64 64-64h88c22.1 0 40 17.9 40 40s-17.9 40-40 40H96c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4bd" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "lift" + ] + }, + "unicode": "f4bd", + "label": "Hand Holding", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M559.7 392.2c17.8-13.1 21.6-38.1 8.5-55.9s-38.1-21.6-55.9-8.5L392.6 416H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h16 64c17.7 0 32-14.3 32-32s-14.3-32-32-32H288 272 193.7c-29.1 0-57.3 9.9-80 28L68.8 384H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H192 352.5c29 0 57.3-9.3 80.7-26.5l126.6-93.3zm-366.1-8.3a.5 .5 0 1 1 -.9 .1 .5 .5 0 1 1 .9-.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding-dollar": { + "aliases": { + "names": [ + "hand-holding-usd" + ], + "unicodes": { + "secondary": [ + "10f4c0" + ] + } + }, + "changes": [ + "5.0.9", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "$", + "carry", + "dollar sign", + "donation", + "giving", + "lift", + "money", + "price" + ] + }, + "unicode": "f4c0", + "label": "Hand Holding Dollar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M312 24V34.5c6.4 1.2 12.6 2.7 18.2 4.2c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17c-10.9-2.9-21.1-4.9-30.2-5c-7.3-.1-14.7 1.7-19.4 4.4c-2.1 1.3-3.1 2.4-3.5 3c-.3 .5-.7 1.2-.7 2.8c0 .3 0 .5 0 .6c.2 .2 .9 1.2 3.3 2.6c5.8 3.5 14.4 6.2 27.4 10.1l.9 .3 0 0c11.1 3.3 25.9 7.8 37.9 15.3c13.7 8.6 26.1 22.9 26.4 44.9c.3 22.5-11.4 38.9-26.7 48.5c-6.7 4.1-13.9 7-21.3 8.8V232c0 13.3-10.7 24-24 24s-24-10.7-24-24V220.6c-9.5-2.3-18.2-5.3-25.6-7.8c-2.1-.7-4.1-1.4-6-2c-12.6-4.2-19.4-17.8-15.2-30.4s17.8-19.4 30.4-15.2c2.6 .9 5 1.7 7.3 2.5c13.6 4.6 23.4 7.9 33.9 8.3c8 .3 15.1-1.6 19.2-4.1c1.9-1.2 2.8-2.2 3.2-2.9c.4-.6 .9-1.8 .8-4.1l0-.2c0-1 0-2.1-4-4.6c-5.7-3.6-14.3-6.4-27.1-10.3l-1.9-.6c-10.8-3.2-25-7.5-36.4-14.4c-13.5-8.1-26.5-22-26.6-44.1c-.1-22.9 12.9-38.6 27.7-47.4c6.4-3.8 13.3-6.4 20.2-8.2V24c0-13.3 10.7-24 24-24s24 10.7 24 24zM568.2 336.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 485.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 384l0 0-.9 0c.3 0 .6 0 .9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding-droplet": { + "aliases": { + "names": [ + "hand-holding-water" + ], + "unicodes": { + "secondary": [ + "10f4c1" + ] + } + }, + "changes": [ + "5.0.9", + "5.13.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "covid-19", + "drought", + "grow", + "lift", + "sanitation" + ] + }, + "unicode": "f4c1", + "label": "Hand Holding Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M275.5 6.6C278.3 2.5 283 0 288 0s9.7 2.5 12.5 6.6L366.8 103C378 119.3 384 138.6 384 158.3V160c0 53-43 96-96 96s-96-43-96-96v-1.7c0-19.8 6-39 17.2-55.3L275.5 6.6zM568.2 336.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 485.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 384l0 0-.9 0c.3 0 .6 0 .9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding-hand": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "care", + "give", + "help", + "hold", + "protect" + ] + }, + "unicode": "e4f7", + "label": "Hand Holding Hand", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M7.8 207.7c-13.1-17.8-9.3-42.8 8.5-55.9L142.9 58.5C166.2 41.3 194.5 32 223.5 32H384 544c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H507.2l-44.9 36c-22.7 18.2-50.9 28-80 28H304 288 224c-17.7 0-32-14.3-32-32s14.3-32 32-32h64 16c8.8 0 16-7.2 16-16s-7.2-16-16-16H183.4L63.7 216.2c-17.8 13.1-42.8 9.3-55.9-8.5zM382.4 160l0 0 .9 0c-.3 0-.6 0-.9 0zM568.2 304.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 453.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V384c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 352l0 0-.9 0c.3 0 .6 0 .9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding-heart": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4be" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "charity", + "gift", + "lift", + "package" + ] + }, + "unicode": "f4be", + "label": "Hand Holding Heart", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M148 76.6C148 34.3 182.3 0 224.6 0c20.3 0 39.8 8.1 54.1 22.4l9.3 9.3 9.3-9.3C311.6 8.1 331.1 0 351.4 0C393.7 0 428 34.3 428 76.6c0 20.3-8.1 39.8-22.4 54.1L302.1 234.1c-7.8 7.8-20.5 7.8-28.3 0L170.4 130.7C156.1 116.4 148 96.9 148 76.6zM568.2 336.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 485.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 384l0 0-.9 0c.3 0 .6 0 .9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-holding-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10e05c" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "care", + "covid-19", + "donate", + "help" + ] + }, + "unicode": "e05c", + "label": "Hand Holding Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M224 24V80H168c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h56v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V176h56c13.3 0 24-10.7 24-24V104c0-13.3-10.7-24-24-24H320V24c0-13.3-10.7-24-24-24H248c-13.3 0-24 10.7-24 24zM559.7 392.2c17.8-13.1 21.6-38.1 8.5-55.9s-38.1-21.6-55.9-8.5L392.6 416H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h16 64c17.7 0 32-14.3 32-32s-14.3-32-32-32H288 272 193.7c-29.1 0-57.3 9.9-80 28L68.8 384H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H192 352.5c29 0 57.3-9.3 80.7-26.5l126.6-93.3zm-367-8.2l.9 0 0 0c-.3 0-.6 0-.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-lizard": { + "aliases": { + "unicodes": { + "secondary": [ + "10f258" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "game", + "roshambo" + ] + }, + "unicode": "f258", + "label": "Hand Lizard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 112C0 85.5 21.5 64 48 64H160h80 46.5c36.8 0 71.2 18 92.1 48.2l113.5 164c13 18.7 19.9 41 19.9 63.8v12 16 48c0 17.7-14.3 32-32 32H384c-17.7 0-32-14.3-32-32V402.2L273.9 352H240 160 112c-26.5 0-48-21.5-48-48s21.5-48 48-48h48 80c26.5 0 48-21.5 48-48s-21.5-48-48-48H160 48c-26.5 0-48-21.5-48-48z" + }, + "regular": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M72 112c-13.3 0-24 10.7-24 24s10.7 24 24 24H240c35.3 0 64 28.7 64 64s-28.7 64-64 64H136c-13.3 0-24 10.7-24 24s10.7 24 24 24H288c4.5 0 8.9 1.3 12.7 3.6l64 40c7 4.4 11.3 12.1 11.3 20.4v24c0 13.3-10.7 24-24 24s-24-10.7-24-24V413.3L281.1 384H136c-39.8 0-72-32.2-72-72s32.2-72 72-72H240c8.8 0 16-7.2 16-16s-7.2-16-16-16H72c-39.8 0-72-32.2-72-72S32.2 64 72 64H281.6c46.7 0 90.9 21.5 119.7 58.3l78.4 100.1c20.9 26.7 32.3 59.7 32.3 93.7V424c0 13.3-10.7 24-24 24s-24-10.7-24-24V316.1c0-23.2-7.8-45.8-22.1-64.1L363.5 151.9c-19.7-25.2-49.9-39.9-81.9-39.9H72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-middle-finger": { + "aliases": { + "unicodes": { + "composite": [ + "1f595" + ], + "secondary": [ + "10f806" + ] + } + }, + "changes": [ + "5.7.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "flip the bird", + "gesture", + "hand", + "hate", + "middle finger", + "rude" + ] + }, + "unicode": "f806", + "label": "Hand Middle Finger", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M216 0c-22.1 0-40 17.9-40 40V204.2c-8.5-7.6-19.7-12.2-32-12.2c-26.5 0-48 21.5-48 48v7 73c0 8.8-7.2 16-16 16s-16-7.2-16-16V264.3c-2 1.4-3.9 3-5.8 4.5L39 284.8C24.4 297 16 315 16 334V372c0 38 16.9 74 46.1 98.3l5.4 4.5c28.8 24 65 37.1 102.4 37.1H288c70.7 0 128-57.3 128-128V320 288c0-26.5-21.5-48-48-48c-12.4 0-23.6 4.7-32.1 12.3C334 227.5 313.3 208 288 208c-12.3 0-23.5 4.6-32 12.2V40c0-22.1-17.9-40-40-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-peace": { + "aliases": { + "unicodes": { + "composite": [ + "270c" + ], + "secondary": [ + "10f25b" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hand", + "rest", + "truce", + "v", + "victory", + "victory hand" + ] + }, + "unicode": "f25b", + "label": "Hand Peace", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M192 0c17.7 0 32 14.3 32 32V240H160V32c0-17.7 14.3-32 32-32zm96 160c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32zm64 64c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224zM61.3 51.2L143.9 240H74.1L2.7 76.8C-4.4 60.6 3 41.8 19.2 34.7s35.1 .3 42.1 16.5zm27 221.3l-.2-.5h69.9H184c22.1 0 40 17.9 40 40s-17.9 40-40 40H128c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72l0-.6c9.4 5.4 20.3 8.6 32 8.6c13.2 0 25.4-4 35.6-10.8c8.7 24.9 32.5 42.8 60.4 42.8c11.7 0 22.6-3.1 32-8.6V352c0 88.4-71.6 160-160 160H194.3c-42.4 0-83.1-16.9-113.1-46.9L69.5 453.5C45.5 429.5 32 396.9 32 363V336c0-32.7 24.6-59.7 56.3-63.5z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M218.8 1.4c-35.2-3.7-66.6 21.8-70.3 57L142 119 124.7 69.6C113 36.3 76.4 18.8 43.1 30.5S-7.8 78.8 3.9 112.1L56.7 262.2C41.5 276.7 32 297.3 32 320v0 24c0 92.8 75.2 168 168 168h48c92.8 0 168-75.2 168-168V272 256 224c0-35.3-28.7-64-64-64c-7.9 0-15.4 1.4-22.4 4c-10.4-21.3-32.3-36-57.6-36c-.7 0-1.5 0-2.2 0l5.9-56.3c3.7-35.2-21.8-66.6-57-70.3zm-.2 155.4C211.9 166.9 208 179 208 192v48c0 .7 0 1.4 0 2c-5.1-1.3-10.5-2-16-2h-7.4l-5.4-15.3 17-161.3c.9-8.8 8.8-15.2 17.6-14.2s15.2 8.8 14.2 17.6l-9.5 90.1zM79.4 85.6L133.7 240H112c-4 0-8 .3-11.9 .9L49.2 96.2c-2.9-8.3 1.5-17.5 9.8-20.4s17.5 1.5 20.4 9.8zM256 192c0-8.8 7.2-16 16-16s16 7.2 16 16v32 16c0 8.8-7.2 16-16 16s-16-7.2-16-16V192zm38.4 108c10.4 21.3 32.3 36 57.6 36c5.5 0 10.9-.7 16-2v10c0 66.3-53.7 120-120 120H200c-66.3 0-120-53.7-120-120l0-24 0 0c0-17.7 14.3-32 32-32h80c8.8 0 16 7.2 16 16s-7.2 16-16 16H152c-13.3 0-24 10.7-24 24s10.7 24 24 24h40c35.3 0 64-28.7 64-64c0-.7 0-1.4 0-2c5.1 1.3 10.5 2 16 2c7.9 0 15.4-1.4 22.4-4zM368 272c0 8.8-7.2 16-16 16s-16-7.2-16-16V240 224c0-8.8 7.2-16 16-16s16 7.2 16 16v32 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-point-down": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0a7" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "hand-o-down", + "point" + ] + }, + "unicode": "f0a7", + "label": "Hand Point Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 480c0 17.7 14.3 32 32 32s32-14.3 32-32V272H32V480zM224 320c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-17.7-14.3-32-32-32s-32 14.3-32 32v64zm-64 64c17.7 0 32-14.3 32-32V304c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 17.7 14.3 32 32 32zm160-96c0 17.7 14.3 32 32 32s32-14.3 32-32V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64zm-96-88l0 .6c9.4-5.4 20.3-8.6 32-8.6c13.2 0 25.4 4 35.6 10.8c8.7-24.9 32.5-42.8 60.4-42.8c11.7 0 22.6 3.1 32 8.6V160C384 71.6 312.4 0 224 0H162.3C119.8 0 79.1 16.9 49.1 46.9L37.5 58.5C13.5 82.5 0 115.1 0 149v27c0 35.3 28.7 64 64 64h88c22.1 0 40-17.9 40-40s-17.9-40-40-40H96c-8.8 0-16-7.2-16-16s7.2-16 16-16h56c39.8 0 72 32.2 72 72z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 448l0-177.6c5.2 1 10.5 1.6 16 1.6l16 0 0 32 0 144c0 8.8-7.2 16-16 16s-16-7.2-16-16zM80 224c-17.7 0-32-14.3-32-32c0 0 0 0 0 0l0-24c0-66.3 53.7-120 120-120l48 0c52.5 0 97.1 33.7 113.4 80.7c-3.1-.5-6.2-.7-9.4-.7c-20 0-37.9 9.2-49.7 23.6c-9-4.9-19.4-7.6-30.3-7.6c-15.1 0-29 5.3-40 14c-11-8.8-24.9-14-40-14l-40 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l40 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-40 0-40 0zM0 192s0 0 0 0c0 18 6 34.6 16 48l0 208c0 35.3 28.7 64 64 64s64-28.7 64-64l0-82c5.1 1.3 10.5 2 16 2c25.3 0 47.2-14.7 57.6-36c7 2.6 14.5 4 22.4 4c20 0 37.9-9.2 49.7-23.6c9 4.9 19.4 7.6 30.3 7.6c35.3 0 64-28.7 64-64l0-64 0-24C384 75.2 308.8 0 216 0L168 0C75.2 0 0 75.2 0 168l0 24zm336 64c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-48 0-16c0-8.8 7.2-16 16-16s16 7.2 16 16l0 64zM160 272c5.5 0 10.9-.7 16-2l0 2 0 32c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-32 16 0zm64-24l0-40c0-8.8 7.2-16 16-16s16 7.2 16 16l0 48 0 16c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-point-left": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0a5" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "finger", + "hand-o-left", + "left", + "point", + "previous" + ] + }, + "unicode": "f0a5", + "label": "Hand Point Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 96C14.3 96 0 110.3 0 128s14.3 32 32 32l208 0V96L32 96zM192 288c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm-64-64c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32s-14.3-32-32-32H160c-17.7 0-32 14.3-32 32zm96 160c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H224zm88-96l-.6 0c5.4 9.4 8.6 20.3 8.6 32c0 13.2-4 25.4-10.8 35.6c24.9 8.7 42.8 32.5 42.8 60.4c0 11.7-3.1 22.6-8.6 32H352c88.4 0 160-71.6 160-160V226.3c0-42.4-16.9-83.1-46.9-113.1l-11.6-11.6C429.5 77.5 396.9 64 363 64l-27 0c-35.3 0-64 28.7-64 64v88c0 22.1 17.9 40 40 40s40-17.9 40-40V160c0-8.8 7.2-16 16-16s16 7.2 16 16v56c0 39.8-32.2 72-72 72z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 128l177.6 0c-1 5.2-1.6 10.5-1.6 16l0 16-32 0L64 160c-8.8 0-16-7.2-16-16s7.2-16 16-16zm224 16c0-17.7 14.3-32 32-32c0 0 0 0 0 0l24 0c66.3 0 120 53.7 120 120l0 48c0 52.5-33.7 97.1-80.7 113.4c.5-3.1 .7-6.2 .7-9.4c0-20-9.2-37.9-23.6-49.7c4.9-9 7.6-19.4 7.6-30.3c0-15.1-5.3-29-14-40c8.8-11 14-24.9 14-40l0-40c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 40c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-40 0-40zm32-80s0 0 0 0c-18 0-34.6 6-48 16L64 80C28.7 80 0 108.7 0 144s28.7 64 64 64l82 0c-1.3 5.1-2 10.5-2 16c0 25.3 14.7 47.2 36 57.6c-2.6 7-4 14.5-4 22.4c0 20 9.2 37.9 23.6 49.7c-4.9 9-7.6 19.4-7.6 30.3c0 35.3 28.7 64 64 64l64 0 24 0c92.8 0 168-75.2 168-168l0-48c0-92.8-75.2-168-168-168l-24 0zM256 400c-8.8 0-16-7.2-16-16s7.2-16 16-16l48 0 16 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-64 0zM240 224c0 5.5 .7 10.9 2 16l-2 0-32 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l32 0 0 16zm24 64l40 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-48 0-16 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l24 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-point-right": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0a4" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "forward", + "hand-o-right", + "next", + "point", + "right" + ] + }, + "unicode": "f0a4", + "label": "Hand Point Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480 96c17.7 0 32 14.3 32 32s-14.3 32-32 32l-208 0 0-64 208 0zM320 288c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32s14.3-32 32-32h64zm64-64c0 17.7-14.3 32-32 32H304c-17.7 0-32-14.3-32-32s14.3-32 32-32h48c17.7 0 32 14.3 32 32zM288 384c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32h64zm-88-96l.6 0c-5.4 9.4-8.6 20.3-8.6 32c0 13.2 4 25.4 10.8 35.6C177.9 364.3 160 388.1 160 416c0 11.7 3.1 22.6 8.6 32H160C71.6 448 0 376.4 0 288l0-61.7c0-42.4 16.9-83.1 46.9-113.1l11.6-11.6C82.5 77.5 115.1 64 149 64l27 0c35.3 0 64 28.7 64 64v88c0 22.1-17.9 40-40 40s-40-17.9-40-40V160c0-8.8-7.2-16-16-16s-16 7.2-16 16v56c0 39.8 32.2 72 72 72z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 128l-177.6 0c1 5.2 1.6 10.5 1.6 16l0 16 32 0 144 0c8.8 0 16-7.2 16-16s-7.2-16-16-16zM224 144c0-17.7-14.3-32-32-32c0 0 0 0 0 0l-24 0c-66.3 0-120 53.7-120 120l0 48c0 52.5 33.7 97.1 80.7 113.4c-.5-3.1-.7-6.2-.7-9.4c0-20 9.2-37.9 23.6-49.7c-4.9-9-7.6-19.4-7.6-30.3c0-15.1 5.3-29 14-40c-8.8-11-14-24.9-14-40l0-40c0-13.3 10.7-24 24-24s24 10.7 24 24l0 40c0 8.8 7.2 16 16 16s16-7.2 16-16l0-40 0-40zM192 64s0 0 0 0c18 0 34.6 6 48 16l208 0c35.3 0 64 28.7 64 64s-28.7 64-64 64l-82 0c1.3 5.1 2 10.5 2 16c0 25.3-14.7 47.2-36 57.6c2.6 7 4 14.5 4 22.4c0 20-9.2 37.9-23.6 49.7c4.9 9 7.6 19.4 7.6 30.3c0 35.3-28.7 64-64 64l-64 0-24 0C75.2 448 0 372.8 0 280l0-48C0 139.2 75.2 64 168 64l24 0zm64 336c8.8 0 16-7.2 16-16s-7.2-16-16-16l-48 0-16 0c-8.8 0-16 7.2-16 16s7.2 16 16 16l64 0zm16-176c0 5.5-.7 10.9-2 16l2 0 32 0c8.8 0 16-7.2 16-16s-7.2-16-16-16l-32 0 0 16zm-24 64l-40 0c-8.8 0-16 7.2-16 16s7.2 16 16 16l48 0 16 0c8.8 0 16-7.2 16-16s-7.2-16-16-16l-24 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-point-up": { + "aliases": { + "unicodes": { + "composite": [ + "261d" + ], + "secondary": [ + "10f0a6" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "hand", + "hand-o-up", + "index", + "index pointing up", + "point", + "up" + ] + }, + "unicode": "f0a6", + "label": "Hand Point Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 32C32 14.3 46.3 0 64 0S96 14.3 96 32V240H32V32zM224 192c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V192zm-64-64c17.7 0 32 14.3 32 32v48c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32zm160 96c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224zm-96 88l0-.6c9.4 5.4 20.3 8.6 32 8.6c13.2 0 25.4-4 35.6-10.8c8.7 24.9 32.5 42.8 60.4 42.8c11.7 0 22.6-3.1 32-8.6V352c0 88.4-71.6 160-160 160H162.3c-42.4 0-83.1-16.9-113.1-46.9L37.5 453.5C13.5 429.5 0 396.9 0 363V336c0-35.3 28.7-64 64-64h88c22.1 0 40 17.9 40 40s-17.9 40-40 40H96c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 64V241.6c5.2-1 10.5-1.6 16-1.6H96V208 64c0-8.8-7.2-16-16-16s-16 7.2-16 16zM80 288c-17.7 0-32 14.3-32 32c0 0 0 0 0 0v24c0 66.3 53.7 120 120 120h48c52.5 0 97.1-33.7 113.4-80.7c-3.1 .5-6.2 .7-9.4 .7c-20 0-37.9-9.2-49.7-23.6c-9 4.9-19.4 7.6-30.3 7.6c-15.1 0-29-5.3-40-14c-11 8.8-24.9 14-40 14H120c-13.3 0-24-10.7-24-24s10.7-24 24-24h40c8.8 0 16-7.2 16-16s-7.2-16-16-16H120 80zM0 320s0 0 0 0c0-18 6-34.6 16-48V64C16 28.7 44.7 0 80 0s64 28.7 64 64v82c5.1-1.3 10.5-2 16-2c25.3 0 47.2 14.7 57.6 36c7-2.6 14.5-4 22.4-4c20 0 37.9 9.2 49.7 23.6c9-4.9 19.4-7.6 30.3-7.6c35.3 0 64 28.7 64 64v64 24c0 92.8-75.2 168-168 168H168C75.2 512 0 436.8 0 344V320zm336-64c0-8.8-7.2-16-16-16s-16 7.2-16 16v48 16c0 8.8 7.2 16 16 16s16-7.2 16-16V256zM160 240c5.5 0 10.9 .7 16 2v-2V208c0-8.8-7.2-16-16-16s-16 7.2-16 16v32h16zm64 24v40c0 8.8 7.2 16 16 16s16-7.2 16-16V256 240c0-8.8-7.2-16-16-16s-16 7.2-16 16v24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-pointer": { + "aliases": { + "unicodes": { + "secondary": [ + "10f25a" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "cursor", + "select" + ] + }, + "unicode": "f25a", + "label": "Hand Pointer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 40c0-22.1 17.9-40 40-40s40 17.9 40 40V188.2c8.5-7.6 19.7-12.2 32-12.2c25.3 0 46 19.5 47.9 44.3c8.5-7.7 19.8-12.3 32.1-12.3c25.3 0 46 19.5 47.9 44.3c8.5-7.7 19.8-12.3 32.1-12.3c26.5 0 48 21.5 48 48v32 64c0 70.7-57.3 128-128 128l-16 0H240l-.1 0h-5.2c-5 0-9.9-.3-14.7-1c-55.3-5.6-106.2-34-140-79L8 336c-13.3-17.7-9.7-42.7 8-56s42.7-9.7 56 8l56 74.7V40zM240 304c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304zm48-16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304c0-8.8-7.2-16-16-16zm80 16c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 64c0-8.8 7.2-16 16-16s16 7.2 16 16V200c0 10.3 6.6 19.5 16.4 22.8s20.6-.1 26.8-8.3c3-3.9 7.6-6.4 12.8-6.4c8.8 0 16 7.2 16 16v8c0 10.3 6.6 19.5 16.4 22.8s20.6-.1 26.8-8.3c3-3.9 7.6-6.4 12.8-6.4c8.8 0 16 7.2 16 16c0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2c8.8 0 16 7.2 16 16v96 8c0 39.8-32.2 72-72 72H272 212.3h-.9c-37.4 0-72.4-18.7-93.2-49.9L50.7 312.9c-4.9-7.4-2.9-17.3 4.4-22.2s17.3-2.9 22.2 4.4L116 353.2c5.9 8.8 16.8 12.7 26.9 9.7s17-12.4 17-23V320 64zM176 0c-35.3 0-64 28.7-64 64V261.7C91.2 238 55.5 232.8 28.5 250.7C-.9 270.4-8.9 310.1 10.8 339.5L78.3 440.8c29.7 44.5 79.6 71.2 133.1 71.2h.9H272h56c66.3 0 120-53.7 120-120v-8V288c0-35.3-28.7-64-64-64c-2.8 0-5.6 .2-8.3 .5c-11-19.4-31.8-32.5-55.7-32.5c-5.4 0-10.5 .7-15.5 1.9c-10.8-20.2-32-33.9-56.5-33.9c-2.7 0-5.4 .2-8 .5V64c0-35.3-28.7-64-64-64zm48 304c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304zm48-16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304c0-8.8-7.2-16-16-16zm80 16c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-scissors": { + "aliases": { + "unicodes": { + "secondary": [ + "10f257" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cut", + "game", + "roshambo" + ] + }, + "unicode": "f257", + "label": "Hand Scissors", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M40 208c-22.1 0-40 17.9-40 40s17.9 40 40 40l180.2 0c-7.6 8.5-12.2 19.7-12.2 32c0 25.3 19.5 46 44.3 47.9c-7.7 8.5-12.3 19.8-12.3 32.1c0 26.5 21.5 48 48 48l32 0 64 0c70.7 0 128-57.3 128-128l0-113.1c0-40.2-16-78.8-44.4-107.3C444.8 76.8 413.9 64 381.7 64L336 64c-21.3 0-39.3 13.9-45.6 33.1l74.5 23.7c8.4 2.7 13.1 11.7 10.4 20.1s-11.7 13.1-20.1 10.4L288 129.9l0 .1L84 65.8C62.9 59.2 40.5 70.9 33.8 92s5.1 43.5 26.2 50.2L269.5 208 40 208z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M.2 276.3c-1.2-35.3 26.4-65 61.7-66.2l3.3-.1L57 208.1C22.5 200.5 .7 166.3 8.3 131.8S50.2 75.5 84.7 83.2l173 38.3c2.3-2.9 4.6-5.7 7.1-8.5l18.4-20.3C299.9 74.5 323.5 64 348.3 64l10.2 0c54.1 0 104.1 28.7 131.3 75.4l1.5 2.6c13.6 23.2 20.7 49.7 20.7 76.6L512 344c0 66.3-53.7 120-120 120l-8 0-96 0c-35.3 0-64-28.7-64-64c0-2.8 .2-5.6 .5-8.3c-19.4-11-32.5-31.8-32.5-55.7c0-.8 0-1.6 0-2.4L66.4 338c-35.3 1.2-65-26.4-66.2-61.7zm63.4-18.2c-8.8 .3-15.7 7.7-15.4 16.5s7.7 15.7 16.5 15.4l161.5-5.6c9.8-.3 18.7 5.3 22.7 14.2s2.2 19.3-4.5 26.4c-2.8 2.9-4.4 6.7-4.4 11c0 8.8 7.2 16 16 16c9.1 0 17.4 5.1 21.5 13.3s3.2 17.9-2.3 25.1c-2 2.7-3.2 6-3.2 9.6c0 8.8 7.2 16 16 16l96 0 8 0c39.8 0 72-32.2 72-72l0-125.4c0-18.4-4.9-36.5-14.2-52.4l-1.5-2.6c-18.6-32-52.8-51.6-89.8-51.6l-10.2 0c-11.3 0-22 4.8-29.6 13.1l-17.5-15.9 17.5 15.9-18.4 20.3c-.6 .6-1.1 1.3-1.7 1.9l57 13.2c8.6 2 14 10.6 12 19.2s-10.6 14-19.2 12l-85.6-19.7L74.3 130c-8.6-1.9-17.2 3.5-19.1 12.2s3.5 17.2 12.2 19.1l187.5 41.6c10.2 2.3 17.8 10.9 18.7 21.4l.1 1c.6 6.6-1.5 13.1-5.8 18.1s-10.6 7.9-17.2 8.2L63.6 258.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hand-sparkles": { + "aliases": { + "unicodes": { + "secondary": [ + "10e05d" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clean", + "covid-19", + "hygiene", + "magic", + "palm", + "soap", + "wash" + ] + }, + "unicode": "e05d", + "label": "Hand Sparkles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0c17.7 0 32 14.3 32 32V240c0 8.8 7.2 16 16 16s16-7.2 16-16V64c0-17.7 14.3-32 32-32s32 14.3 32 32V240c0 8.8 7.2 16 16 16s16-7.2 16-16V128c0-17.7 14.3-32 32-32s32 14.3 32 32V323.1c-11.9 4.8-21.3 14.9-25 27.8l-8.9 31.2L478.9 391C460.6 396.3 448 413 448 432c0 18.9 12.5 35.6 30.6 40.9C448.4 497.4 409.9 512 368 512H348.8c-59.6 0-116.9-22.9-160-64L76.4 341c-16-15.2-16.6-40.6-1.4-56.6s40.6-16.6 56.6-1.4l60.5 57.6c0-1.5-.1-3.1-.1-4.6V64c0-17.7 14.3-32 32-32s32 14.3 32 32V240c0 8.8 7.2 16 16 16s16-7.2 16-16V32c0-17.7 14.3-32 32-32zm-7.3 326.6c-1.1-3.9-4.7-6.6-8.7-6.6s-7.6 2.7-8.7 6.6L288 352l-25.4 7.3c-3.9 1.1-6.6 4.7-6.6 8.7s2.7 7.6 6.6 8.7L288 384l7.3 25.4c1.1 3.9 4.7 6.6 8.7 6.6s7.6-2.7 8.7-6.6L320 384l25.4-7.3c3.9-1.1 6.6-4.7 6.6-8.7s-2.7-7.6-6.6-8.7L320 352l-7.3-25.4zM104 120l48.3 13.8c4.6 1.3 7.7 5.5 7.7 10.2s-3.1 8.9-7.7 10.2L104 168 90.2 216.3c-1.3 4.6-5.5 7.7-10.2 7.7s-8.9-3.1-10.2-7.7L56 168 7.7 154.2C3.1 152.9 0 148.7 0 144s3.1-8.9 7.7-10.2L56 120 69.8 71.7C71.1 67.1 75.3 64 80 64s8.9 3.1 10.2 7.7L104 120zM584 408l48.3 13.8c4.6 1.3 7.7 5.5 7.7 10.2s-3.1 8.9-7.7 10.2L584 456l-13.8 48.3c-1.3 4.6-5.5 7.7-10.2 7.7s-8.9-3.1-10.2-7.7L536 456l-48.3-13.8c-4.6-1.3-7.7-5.5-7.7-10.2s3.1-8.9 7.7-10.2L536 408l13.8-48.3c1.3-4.6 5.5-7.7 10.2-7.7s8.9 3.1 10.2 7.7L584 408z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hand-spock": { + "aliases": { + "unicodes": { + "composite": [ + "1f596" + ], + "secondary": [ + "10f259" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "hand", + "live long", + "palm", + "prosper", + "salute", + "spock", + "star trek", + "vulcan", + "vulcan salute" + ] + }, + "unicode": "f259", + "label": "Hand Spock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M214.9 23.7C210.3 6.6 192.8-3.5 175.7 1.1s-27.2 22.1-22.6 39.2L206 237.8c2.5 9.2-4.5 18.2-14 18.2c-6.4 0-12-4.2-13.9-10.3L134.6 102.7c-5.1-16.9-23-26.4-39.9-21.3s-26.4 23-21.3 39.9l62.8 206.4c2.4 7.9-7.2 13.8-13.2 8.1L67.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6L124.8 448c43.1 41.1 100.4 64 160 64h10.9 8.2c.1 0 .1-.1 .1-.1s.1-.1 .1-.1c58.3-3.5 108.6-43.2 125.3-99.7l81.2-275c5-16.9-4.7-34.7-21.6-39.8s-34.7 4.7-39.8 21.6L411.5 247.1c-1.6 5.3-6.4 8.9-12 8.9c-7.9 0-13.8-7.3-12.2-15.1l36-170.3c3.7-17.3-7.4-34.3-24.7-37.9s-34.3 7.4-37.9 24.7L323.1 235.1c-2.6 12.2-13.3 20.9-25.8 20.9c-11.9 0-22.4-8-25.4-19.5l-57-212.8z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M189.7 25.3l6.2 23.2-6.2-23.2zm48.9 28.4l23.2-6.2v0l-23.2 6.2zM161.3 74.3l-23.2 6.2v0l23.2-6.2zm46.5 175.3l-22.1 9.3c4.9 11.6 17.9 17.5 29.9 13.4s18.7-16.7 15.4-28.9l-23.2 6.2zm-51-121.1l-22.1 9.3 22.1-9.3zm-52.4-21.3l9.3 22.1-9.3-22.1zM83.1 159.5L61 168.8h0l22.1-9.3zm5.4 144.9l14.7-18.9L88.6 304.4zm-56.1 7l18.9 14.7h0L32.4 311.4zm7 56.1L24.7 386.5h0l14.7-18.9zm92 71.6l-14.7 18.9 14.7-18.9zm300.1-48.5l23.3 5.8-23.3-5.8zm55.2-220.9l23.3 5.8v0l-23.3-5.8zm-29.1-48.5l5.8-23.3-5.8 23.3zm-48.5 29.1l23.3 5.8v0l-23.3-5.8zM383 255l-23.3-5.8 0 0L383 255zm-2.6-.5l23.6 4.2 0 0-23.6-4.2zM407.4 103l23.6 4.2v0L407.4 103zM375 56.6l-4.2 23.6L375 56.6zM328.6 89L305 84.8v0L328.6 89zM299.5 252.6l-23.6-4.2 0 0 23.6 4.2zm-8 .3l23.2-6.2 0 0-23.2 6.2zM304 488l.5-24-.5 24zm-157-138L161.8 331l-14.7 18.9zM195.9 48.5c8.5-2.3 17.3 2.8 19.6 11.4l46.4-12.3c-9.1-34.2-44.1-54.5-78.3-45.4l12.3 46.4zM184.5 68.1c-2.3-8.5 2.8-17.3 11.4-19.6L183.6 2.1c-34.2 9.1-54.5 44.1-45.4 78.3l46.4-12.3zM231 243.4L184.5 68.1 138.1 80.4l46.5 175.3L231 243.4zM134.7 137.8l51 121.1L230 240.2 179 119.2l-44.2 18.6zm-21-8.5c8.1-3.4 17.5 .4 21 8.5L179 119.2C165.3 86.6 127.7 71.3 95.2 85l18.6 44.2zm-8.5 21c-3.4-8.1 .4-17.5 8.5-21L95.2 85C62.6 98.7 47.3 136.3 61 168.8l44.2-18.6zm76.2 181l-76.2-181L61 168.8l76.2 181 44.2-18.6zM73.8 323.4l58.5 45.5L161.8 331l-58.5-45.5L73.8 323.4zm-22.5 2.8c5.4-7 15.5-8.2 22.5-2.8l29.5-37.9c-27.9-21.7-68.1-16.7-89.8 11.2l37.9 29.5zm2.8 22.5c-7-5.4-8.2-15.5-2.8-22.5L13.5 296.7c-21.7 27.9-16.7 68.1 11.2 89.8l29.5-37.9zm92 71.6l-92-71.6L24.7 386.5l92 71.6 29.5-37.9zM273.9 464c-46.3 0-91.2-15.4-127.7-43.8l-29.5 37.9C161.6 493 216.9 512 273.9 512V464zm30.1 0H273.9v48H304V464zm2.8 0c-.8 0-1.5 0-2.3 0l-1 48c1.1 0 2.2 0 3.3 0V464zm101.5-79.2C396.7 431.3 354.8 464 306.8 464v48c70 0 131.1-47.7 148-115.6l-46.6-11.6zm55.2-220.9L408.3 384.8l46.6 11.6 55.2-220.9-46.6-11.6zm-11.6-19.4c8.6 2.1 13.8 10.8 11.6 19.4l46.6 11.6c8.6-34.3-12.3-69-46.6-77.6l-11.6 46.6zm-19.4 11.6c2.1-8.6 10.8-13.8 19.4-11.6l11.6-46.6c-34.3-8.6-69 12.3-77.6 46.6l46.6 11.6zM406.3 260.8l26.2-104.7-46.6-11.6L359.7 249.2l46.6 11.6zM381.7 280c11.6 0 21.7-7.9 24.6-19.2l-46.6-11.6c2.5-10.1 11.6-17.2 22-17.2v48zm-24.9-29.7c-2.8 15.5 9.2 29.7 24.9 29.7V232c14.1 0 24.8 12.8 22.3 26.7l-47.3-8.4zM383.8 98.8L356.8 250.3l47.3 8.4L431 107.2l-47.3-8.4zm-13-18.6c8.7 1.5 14.5 9.9 13 18.6l47.3 8.4c6.2-34.8-17-68-51.8-74.2l-8.4 47.3zm-18.6 13c1.5-8.7 9.9-14.5 18.6-13L379.2 33c-34.8-6.2-68 17-74.2 51.8l47.3 8.4zM323.2 256.8L352.2 93.2 305 84.8 275.9 248.4l47.3 8.4zM295.5 280c13.6 0 25.3-9.8 27.7-23.2l-47.3-8.4c1.7-9.5 9.9-16.4 19.6-16.4v48zm-27.2-20.9c3.3 12.3 14.4 20.9 27.2 20.9V232c9 0 16.9 6.1 19.2 14.8l-46.4 12.3zM215.5 59.9l52.8 199.2 46.4-12.3L261.9 47.6 215.5 59.9zM328 488c0 13.4-11.1 24.3-24.5 24l1-48c-13.5-.3-24.5 10.5-24.5 24h48zm-24 24c13.3 0 24-10.8 24-24H280c0-13.2 10.7-24 24-24v48zM137.2 349.8c-6.4-15.2 11.6-29 24.6-18.8l-29.5 37.9c26 20.2 61.9-7.3 49.1-37.7l-44.2 18.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "handcuffs": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrest", + "criminal", + "handcuffs", + "jail", + "lock", + "police", + "wrist" + ] + }, + "unicode": "e4f8", + "label": "Handcuffs", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M240 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM192 48a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm-32 80c17.7 0 32 14.3 32 32h8c13.3 0 24 10.7 24 24v16c0 1.7-.2 3.4-.5 5.1C280.3 229.6 320 286.2 320 352c0 88.4-71.6 160-160 160S0 440.4 0 352c0-65.8 39.7-122.4 96.5-146.9c-.4-1.6-.5-3.3-.5-5.1V184c0-13.3 10.7-24 24-24h8c0-17.7 14.3-32 32-32zm0 320a96 96 0 1 0 0-192 96 96 0 1 0 0 192zm192-96c0-25.9-5.1-50.5-14.4-73.1c16.9-32.9 44.8-59.1 78.9-73.9c-.4-1.6-.5-3.3-.5-5.1V184c0-13.3 10.7-24 24-24h8c0-17.7 14.3-32 32-32s32 14.3 32 32h8c13.3 0 24 10.7 24 24v16c0 1.7-.2 3.4-.5 5.1C600.3 229.6 640 286.2 640 352c0 88.4-71.6 160-160 160c-62 0-115.8-35.3-142.4-86.9c9.3-22.5 14.4-47.2 14.4-73.1zm224 0a96 96 0 1 0 -192 0 96 96 0 1 0 192 0zM368 0a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm80 48a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands": { + "aliases": { + "names": [ + "sign-language", + "signing" + ], + "unicodes": { + "secondary": [ + "10f2a7" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Translate", + "asl", + "deaf", + "hands" + ] + }, + "unicode": "f2a7", + "label": "Hands", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669918857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 160l-.1 72.6c-.1 52.2-24 101-64 133.1c.1-1.9 .1-3.8 .1-5.7v-8c0-71.8-37-138.6-97.9-176.7l-60.2-37.6c-8.6-5.4-17.9-8.4-27.3-9.4L216.7 48.8c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8l78 135.1c3.3 5.7 10.7 7.7 16.4 4.4s7.7-10.7 4.4-16.4l-62-107.4c-6.6-11.5-2.7-26.2 8.8-32.8S330 5 336.6 16.5l68 117.8 0 0 0 0 43.3 75L448 160c0-17.7 14.4-32 32-32s32 14.4 32 32zM211.9 88.5L236.5 131c-13.9 4.5-26.4 13.7-34.7 27c-.9 1.4-1.7 2.9-2.5 4.4l-28.9-50c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8zm-46.4 63.7l26.8 46.4c.6 6 2.1 11.8 4.3 17.4H192 178.7l0 0H147l-23-39.8c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8zM228.9 175c9.4-15 29.1-19.5 44.1-10.2l60.2 37.6C384.7 234.7 416 291.2 416 352v8c0 83.9-68.1 152-152 152H88c-13.3 0-24-10.7-24-24s10.7-24 24-24h92c6.6 0 12-5.4 12-12s-5.4-12-12-12H56c-13.3 0-24-10.7-24-24s10.7-24 24-24H180c6.6 0 12-5.4 12-12s-5.4-12-12-12H24c-13.3 0-24-10.7-24-24s10.7-24 24-24H180c6.6 0 12-5.4 12-12s-5.4-12-12-12H56c-13.3 0-24-10.7-24-24s10.7-24 24-24H192l0 0 0 0h93.2L239 219.1c-15-9.4-19.5-29.1-10.2-44.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-asl-interpreting": { + "aliases": { + "names": [ + "american-sign-language-interpreting", + "asl-interpreting", + "hands-american-sign-language-interpreting" + ], + "unicodes": { + "secondary": [ + "10f2a3" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "asl", + "deaf", + "finger", + "hand", + "interpret", + "speak" + ] + }, + "unicode": "f2a3", + "label": "Hands Asl Interpreting", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M156.6 46.3c7.9-15.8 1.5-35-14.3-42.9s-35-1.5-42.9 14.3L13.5 189.4C4.6 207.2 0 226.8 0 246.7V256c0 70.7 57.3 128 128 128h72 8v-.3c35.2-2.7 65.4-22.8 82.1-51.7c8.8-15.3 3.6-34.9-11.7-43.7s-34.9-3.6-43.7 11.7c-7 12-19.9 20-34.7 20c-22.1 0-40-17.9-40-40s17.9-40 40-40c14.8 0 27.7 8 34.7 20c8.8 15.3 28.4 20.5 43.7 11.7s20.5-28.4 11.7-43.7c-12.8-22.1-33.6-39.1-58.4-47.1l80.8-22c17-4.6 27.1-22.2 22.5-39.3s-22.2-27.1-39.3-22.5L194.9 124.6l81.6-68c13.6-11.3 15.4-31.5 4.1-45.1S249.1-3.9 235.5 7.4L133.6 92.3l23-46zM483.4 465.7c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l85.9-171.7c8.9-17.8 13.5-37.4 13.5-57.2V256c0-70.7-57.3-128-128-128H440h-8v.3c-35.2 2.7-65.4 22.8-82.1 51.7c-8.9 15.3-3.6 34.9 11.7 43.7s34.9 3.6 43.7-11.7c7-12 19.9-20 34.7-20c22.1 0 40 17.9 40 40s-17.9 40-40 40c-14.8 0-27.7-8-34.7-20c-8.9-15.3-28.4-20.5-43.7-11.7s-20.5 28.4-11.7 43.7c12.8 22.1 33.6 39.1 58.4 47.1l-80.8 22c-17.1 4.7-27.1 22.2-22.5 39.3s22.2 27.1 39.3 22.5l100.7-27.5-81.6 68c-13.6 11.3-15.4 31.5-4.1 45.1s31.5 15.4 45.1 4.1l101.9-84.9-23 46z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-bound": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abduction", + "bound", + "handcuff", + "wrist" + ] + }, + "unicode": "e4f9", + "label": "Hands Bound", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32V96v59.1 .7V192v21.9c0 14.2 5.1 27.9 14.3 38.7L99.6 352H96c-13.3 0-24 10.7-24 24s10.7 24 24 24h32H256h64H448h32c13.3 0 24-10.7 24-24s-10.7-24-24-24h-3.6l85.3-99.5c9.2-10.8 14.3-24.5 14.3-38.7V192 155.8v-.7V96 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V96v48.8l-69.3 92.4c-5.7 7.6-16.1 9.6-24.2 4.8c-9.7-5.7-12.1-18.7-5.1-27.5L441 180c10.8-13.5 8.9-33.3-4.4-44.5s-33-9.8-44.5 3.2l-46.7 52.5C329 209.7 320 233.4 320 258.1V320v32H256V320 258.1c0-24.6-9-48.4-25.4-66.8l-46.7-52.5c-11.5-13-31.3-14.4-44.5-3.2s-15.2 30.9-4.4 44.5l27.6 34.5c7 8.8 4.7 21.8-5.1 27.5c-8.1 4.8-18.6 2.7-24.2-4.8L64 144.8V96 32zm64 448v32H256V480h64v32H448V480h32c13.3 0 24-10.7 24-24s-10.7-24-24-24H448 320 256 128 96c-13.3 0-24 10.7-24 24s10.7 24 24 24h32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-bubbles": { + "aliases": { + "names": [ + "hands-wash" + ], + "unicodes": { + "secondary": [ + "10e05e" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "hygiene", + "soap", + "wash" + ] + }, + "unicode": "e05e", + "label": "Hands Bubbles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669918857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M384 64a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm96 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM128 464a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM0 160l.1 72.6c.1 52.2 24 101 64 133.1c-.1-1.9-.1-3.8-.1-5.7v-8c0-71.8 37-138.6 97.9-176.7l60.2-37.6c8.6-5.4 17.9-8.4 27.3-9.4l45.9-79.5c6.6-11.5 2.7-26.2-8.8-32.8s-26.2-2.7-32.8 8.8l-78 135.1c-3.3 5.7-10.7 7.7-16.4 4.4s-7.7-10.7-4.4-16.4l62-107.4c6.6-11.5 2.7-26.2-8.8-32.8S182 5 175.4 16.5l-68 117.8 0 0 0 0-43.3 75L64 160c0-17.7-14.4-32-32-32s-32 14.4-32 32zM300.1 88.5L275.5 131c13.9 4.5 26.4 13.7 34.7 27c.9 1.5 1.7 2.9 2.5 4.4l28.9-50c6.6-11.5 2.7-26.2-8.8-32.8s-26.2-2.7-32.8 8.8zm46.4 63.7l-26.8 46.4c-.6 6-2.1 11.8-4.3 17.4H320h13.3l0 0H365l23-39.8c6.6-11.5 2.7-26.2-8.8-32.8s-26.2-2.7-32.8 8.8zM283.1 175c-9.4-15-29.1-19.5-44.1-10.2l-60.2 37.6C127.3 234.7 96 291.2 96 352v8c0 8.9 .8 17.6 2.2 26.1c35.4 8.2 61.8 40 61.8 77.9c0 6.3-.7 12.5-2.1 18.4C183.1 501 214.3 512 248 512H424c13.3 0 24-10.7 24-24s-10.7-24-24-24H332c-6.6 0-12-5.4-12-12s5.4-12 12-12H456c13.3 0 24-10.7 24-24s-10.7-24-24-24H332c-6.6 0-12-5.4-12-12s5.4-12 12-12H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H332c-6.6 0-12-5.4-12-12s5.4-12 12-12H456c13.3 0 24-10.7 24-24s-10.7-24-24-24H320l0 0 0 0H226.8L273 219.1c15-9.4 19.5-29.1 10.2-44.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-clapping": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "applause", + "clap", + "clapping hands", + "hand" + ] + }, + "unicode": "e1a8", + "label": "Hands Clapping", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669918857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M336 16V80c0 8.8-7.2 16-16 16s-16-7.2-16-16V16c0-8.8 7.2-16 16-16s16 7.2 16 16zm-98.7 7.1l32 48c4.9 7.4 2.9 17.3-4.4 22.2s-17.3 2.9-22.2-4.4l-32-48c-4.9-7.4-2.9-17.3 4.4-22.2s17.3-2.9 22.2 4.4zM135 119c9.4-9.4 24.6-9.4 33.9 0L292.7 242.7c10.1 10.1 27.3 2.9 27.3-11.3V192c0-17.7 14.3-32 32-32s32 14.3 32 32V345.6c0 57.1-30 110-78.9 139.4c-64 38.4-145.8 28.3-198.5-24.4L7 361c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l53 53c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1L23 265c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l93 93c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1L55 185c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l117 117c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1l-93-93c-9.4-9.4-9.4-24.6 0-33.9zM433.1 484.9c-24.2 14.5-50.9 22.1-77.7 23.1c48.1-39.6 76.6-99 76.6-162.4l0-98.1c8.2-.1 16-6.4 16-16V192c0-17.7 14.3-32 32-32s32 14.3 32 32V345.6c0 57.1-30 110-78.9 139.4zM424.9 18.7c7.4 4.9 9.3 14.8 4.4 22.2l-32 48c-4.9 7.4-14.8 9.3-22.2 4.4s-9.3-14.8-4.4-22.2l32-48c4.9-7.4 14.8-9.3 22.2-4.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-holding": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4c2" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "hold", + "lift" + ] + }, + "unicode": "f4c2", + "label": "Hands Holding", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M80 104c0-22.1-17.9-40-40-40S0 81.9 0 104v56 64V325.5c0 25.5 10.1 49.9 28.1 67.9L128 493.3c12 12 28.3 18.7 45.3 18.7H240c26.5 0 48-21.5 48-48V385.1c0-29.7-11.8-58.2-32.8-79.2l-25.3-25.3 0 0-15.2-15.2-32-32c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l32 32 15.2 15.2c11 11 9.2 29.2-3.7 37.8c-9.7 6.5-22.7 5.2-31-3.1L98.7 309.5c-12-12-18.7-28.3-18.7-45.3V224 144 104zm480 0v40 80 40.2c0 17-6.7 33.3-18.7 45.3l-51.1 51.1c-8.3 8.3-21.3 9.6-31 3.1c-12.9-8.6-14.7-26.9-3.7-37.8l15.2-15.2 32-32c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-32 32-15.2 15.2 0 0-25.3 25.3c-21 21-32.8 49.5-32.8 79.2V464c0 26.5 21.5 48 48 48h66.7c17 0 33.3-6.7 45.3-18.7l99.9-99.9c18-18 28.1-42.4 28.1-67.9V224 160 104c0-22.1-17.9-40-40-40s-40 17.9-40 40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-holding-child": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "care", + "give", + "help", + "hold", + "protect" + ] + }, + "unicode": "e4fa", + "label": "Hands Holding Child", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0a40 40 0 1 1 0 80 40 40 0 1 1 0-80zm44.7 164.3L375.8 253c1.6 13.2-7.7 25.1-20.8 26.8s-25.1-7.7-26.8-20.8l-4.4-35h-7.6l-4.4 35c-1.6 13.2-13.6 22.5-26.8 20.8s-22.5-13.6-20.8-26.8l11.1-88.8L255.5 181c-10.1 8.6-25.3 7.3-33.8-2.8s-7.3-25.3 2.8-33.8l27.9-23.6C271.3 104.8 295.3 96 320 96s48.7 8.8 67.6 24.7l27.9 23.6c10.1 8.6 11.4 23.7 2.8 33.8s-23.7 11.4-33.8 2.8l-19.8-16.7zM40 64c22.1 0 40 17.9 40 40v40 80 40.2c0 17 6.7 33.3 18.7 45.3l51.1 51.1c8.3 8.3 21.3 9.6 31 3.1c12.9-8.6 14.7-26.9 3.7-37.8l-15.2-15.2-32-32c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l32 32 15.2 15.2 0 0 25.3 25.3c21 21 32.8 49.5 32.8 79.2V464c0 26.5-21.5 48-48 48H173.3c-17 0-33.3-6.7-45.3-18.7L28.1 393.4C10.1 375.4 0 351 0 325.5V224 160 104C0 81.9 17.9 64 40 64zm560 0c22.1 0 40 17.9 40 40v56 64V325.5c0 25.5-10.1 49.9-28.1 67.9L512 493.3c-12 12-28.3 18.7-45.3 18.7H400c-26.5 0-48-21.5-48-48V385.1c0-29.7 11.8-58.2 32.8-79.2l25.3-25.3 0 0 15.2-15.2 32-32c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-32 32-15.2 15.2c-11 11-9.2 29.2 3.7 37.8c9.7 6.5 22.7 5.2 31-3.1l51.1-51.1c12-12 18.7-28.3 18.7-45.3V224 144 104c0-22.1 17.9-40 40-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-holding-circle": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "circle", + "gift", + "protection" + ] + }, + "unicode": "e4fb", + "label": "Hands Holding Circle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0a128 128 0 1 1 0 256A128 128 0 1 1 320 0zM40 64c22.1 0 40 17.9 40 40v40 80 40.2c0 17 6.7 33.3 18.7 45.3l51.1 51.1c8.3 8.3 21.3 9.6 31 3.1c12.9-8.6 14.7-26.9 3.7-37.8l-15.2-15.2-32-32c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l32 32 15.2 15.2 0 0 25.3 25.3c21 21 32.8 49.5 32.8 79.2V464c0 26.5-21.5 48-48 48H173.3c-17 0-33.3-6.7-45.3-18.7L28.1 393.4C10.1 375.4 0 351 0 325.5V224 160 104C0 81.9 17.9 64 40 64zm560 0c22.1 0 40 17.9 40 40v56 64V325.5c0 25.5-10.1 49.9-28.1 67.9L512 493.3c-12 12-28.3 18.7-45.3 18.7H400c-26.5 0-48-21.5-48-48V385.1c0-29.7 11.8-58.2 32.8-79.2l25.3-25.3 0 0 15.2-15.2 32-32c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-32 32-15.2 15.2c-11 11-9.2 29.2 3.7 37.8c9.7 6.5 22.7 5.2 31-3.1l51.1-51.1c12-12 18.7-28.3 18.7-45.3V224 144 104c0-22.1 17.9-40 40-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hands-praying": { + "aliases": { + "names": [ + "praying-hands" + ], + "unicodes": { + "secondary": [ + "10f684" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "kneel", + "preach", + "religion", + "worship" + ] + }, + "unicode": "f684", + "label": "Hands Praying", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M351.2 4.8c3.2-2 6.6-3.3 10-4.1c4.7-1 9.6-.9 14.1 .1c7.7 1.8 14.8 6.5 19.4 13.6L514.6 194.2c8.8 13.1 13.4 28.6 13.4 44.4v73.5c0 6.9 4.4 13 10.9 15.2l79.2 26.4C631.2 358 640 370.2 640 384v96c0 9.9-4.6 19.3-12.5 25.4s-18.1 8.1-27.7 5.5L431 465.9c-56-14.9-95-65.7-95-123.7V224c0-17.7 14.3-32 32-32s32 14.3 32 32v80c0 8.8 7.2 16 16 16s16-7.2 16-16V219.1c0-7-1.8-13.8-5.3-19.8L340.3 48.1c-1.7-3-2.9-6.1-3.6-9.3c-1-4.7-1-9.6 .1-14.1c1.9-8 6.8-15.2 14.3-19.9zm-62.4 0c7.5 4.6 12.4 11.9 14.3 19.9c1.1 4.6 1.2 9.4 .1 14.1c-.7 3.2-1.9 6.3-3.6 9.3L213.3 199.3c-3.5 6-5.3 12.9-5.3 19.8V304c0 8.8 7.2 16 16 16s16-7.2 16-16V224c0-17.7 14.3-32 32-32s32 14.3 32 32V342.2c0 58-39 108.7-95 123.7l-168.7 45c-9.6 2.6-19.9 .5-27.7-5.5S0 489.9 0 480V384c0-13.8 8.8-26 21.9-30.4l79.2-26.4c6.5-2.2 10.9-8.3 10.9-15.2V238.5c0-15.8 4.7-31.2 13.4-44.4L245.2 14.5c4.6-7.1 11.7-11.8 19.4-13.6c4.6-1.1 9.4-1.2 14.1-.1c3.5 .8 6.9 2.1 10 4.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "handshake": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2b5" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agreement", + "greeting", + "meeting", + "partnership" + ] + }, + "unicode": "f2b5", + "label": "Handshake", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M323.4 85.2l-96.8 78.4c-16.1 13-19.2 36.4-7 53.1c12.9 17.8 38 21.3 55.3 7.8l99.3-77.2c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L512 316.8V128h-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2zm22.8 124.4l-51.7 40.2C263 274.4 217.3 268 193.7 235.6c-22.2-30.5-16.6-73.1 12.7-96.8l83.2-67.3c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-72 48V352h28.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c4.5-4.9 7.8-10.6 9.9-16.5c19.4 13 45.8 10.3 62.1-7.5c17.9-19.5 16.6-49.9-2.9-67.8l-134.2-123zM16 128c-8.8 0-16 7.2-16 16V352c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V128H16zM48 320a16 16 0 1 1 0 32 16 16 0 1 1 0-32zM544 128V352c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V144c0-8.8-7.2-16-16-16H544zm32 208a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + }, + "regular": { + "lastModified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M272.2 64.6l-51.1 51.1c-15.3 4.2-29.5 11.9-41.5 22.5L153 161.9C142.8 171 129.5 176 115.8 176H96V304c20.4 .6 39.8 8.9 54.3 23.4l35.6 35.6 7 7 0 0L219.9 397c6.2 6.2 16.4 6.2 22.6 0c1.7-1.7 3-3.7 3.7-5.8c2.8-7.7 9.3-13.5 17.3-15.3s16.4 .6 22.2 6.5L296.5 393c11.6 11.6 30.4 11.6 41.9 0c5.4-5.4 8.3-12.3 8.6-19.4c.4-8.8 5.6-16.6 13.6-20.4s17.3-3 24.4 2.1c9.4 6.7 22.5 5.8 30.9-2.6c9.4-9.4 9.4-24.6 0-33.9L340.1 243l-35.8 33c-27.3 25.2-69.2 25.6-97 .9c-31.7-28.2-32.4-77.4-1.6-106.5l70.1-66.2C303.2 78.4 339.4 64 377.1 64c36.1 0 71 13.3 97.9 37.2L505.1 128H544h40 40c8.8 0 16 7.2 16 16V352c0 17.7-14.3 32-32 32H576c-11.8 0-22.2-6.4-27.7-16H463.4c-3.4 6.7-7.9 13.1-13.5 18.7c-17.1 17.1-40.8 23.8-63 20.1c-3.6 7.3-8.5 14.1-14.6 20.2c-27.3 27.3-70 30-100.4 8.1c-25.1 20.8-62.5 19.5-86-4.1L159 404l-7-7-35.6-35.6c-5.5-5.5-12.7-8.7-20.4-9.3C96 369.7 81.6 384 64 384H32c-17.7 0-32-14.3-32-32V144c0-8.8 7.2-16 16-16H56 96h19.8c2 0 3.9-.7 5.3-2l26.5-23.6C175.5 77.7 211.4 64 248.7 64H259c4.4 0 8.9 .2 13.2 .6zM544 320V176H496c-5.9 0-11.6-2.2-15.9-6.1l-36.9-32.8c-18.2-16.2-41.7-25.1-66.1-25.1c-25.4 0-49.8 9.7-68.3 27.1l-70.1 66.2c-10.3 9.8-10.1 26.3 .5 35.7c9.3 8.3 23.4 8.1 32.5-.3l71.9-66.4c9.7-9 24.9-8.4 33.9 1.4s8.4 24.9-1.4 33.9l-.8 .8 74.4 74.4c10 10 16.5 22.3 19.4 35.1H544zM64 336a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm528 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "handshake-angle": { + "aliases": { + "names": [ + "hands-helping" + ], + "unicodes": { + "secondary": [ + "10f4c4" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aid", + "assistance", + "handshake", + "partnership", + "volunteering" + ] + }, + "unicode": "f4c4", + "label": "Handshake Angle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M534 248v3.3l69.7-69.7c21.9-21.9 21.9-57.3 0-79.2L525.6 24.4c-21.9-21.9-57.3-21.9-79.2 0L406.3 64.5c-2.7-.3-5.5-.5-8.3-.5H286c-37.1 0-67.6 28-71.6 64H214V248c0 22.1 17.9 40 40 40s40-17.9 40-40V176c0 0 0-.1 0-.1V160l16 0 136 0c0 0 0 0 .1 0H454c44.2 0 80 35.8 80 80v8zM326 192v56c0 39.8-32.2 72-72 72s-72-32.2-72-72V129.4c-35.9 6.2-65.8 32.3-76 68.2L89.5 255.2 16.3 328.4c-21.9 21.9-21.9 57.3 0 79.2l78.1 78.1c21.9 21.9 57.3 21.9 79.2 0l37.7-37.7c.9 0 1.8 .1 2.7 .1H374c26.5 0 48-21.5 48-48c0-5.6-1-11-2.7-16H422c26.5 0 48-21.5 48-48c0-12.8-5-24.4-13.2-33c25.7-5 45.1-27.6 45.2-54.8v-.4c-.1-30.8-25.1-55.8-56-55.8c0 0 0 0 0 0l-120 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "handshake-simple": { + "aliases": { + "names": [ + "handshake-alt" + ], + "unicodes": { + "composite": [ + "1f91d" + ], + "secondary": [ + "10f4c6" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agreement", + "greeting", + "hand", + "handshake", + "meeting", + "partnership", + "shake" + ] + }, + "unicode": "f4c6", + "label": "Handshake Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M323.4 85.2l-96.8 78.4c-16.1 13-19.2 36.4-7 53.1c12.9 17.8 38 21.3 55.3 7.8l99.3-77.2c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L550.2 352H592c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H516h-4-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2zm22.8 124.4l-51.7 40.2C263 274.4 217.3 268 193.7 235.6c-22.2-30.5-16.6-73.1 12.7-96.8l83.2-67.3c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-72 48H48c-26.5 0-48 21.5-48 48V304c0 26.5 21.5 48 48 48H156.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c4.5-4.9 7.8-10.6 9.9-16.5c19.4 13 45.8 10.3 62.1-7.5c17.9-19.5 16.6-49.9-2.9-67.8l-134.2-123z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "handshake-simple-slash": { + "aliases": { + "names": [ + "handshake-alt-slash" + ], + "unicodes": { + "secondary": [ + "10e05f" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "broken", + "covid-19", + "social distance" + ] + }, + "unicode": "e05f", + "label": "Handshake Simple Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-135-105.8c-1.1-11.4-6.3-22.3-15.3-30.7l-134.2-123-23.4 18.2-26-20.3 77.2-60.1c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L550.2 352H592c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H516h-4-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2l-89.7 72.6-25.8-20.3 81.8-66.2c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-35.5 23.7L38.8 5.1zM0 176V304c0 26.5 21.5 48 48 48H156.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c.8-.8 1.5-1.7 2.2-2.6L41.2 128.5C17.9 131.8 0 151.8 0 176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "handshake-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e060" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "broken", + "covid-19", + "social distance" + ] + }, + "unicode": "e060", + "label": "Handshake Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-135-105.8c-1.1-11.4-6.3-22.3-15.3-30.7l-134.2-123-23.4 18.2-26-20.3 77.2-60.1c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L512 316.8V128h-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2l-89.7 72.6-25.8-20.3 81.8-66.2c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-35.5 23.7L38.8 5.1zM96 171.6L40.6 128H0V352c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V171.6zM413.6 421.9L128 196.9V352h28.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c.8-.8 1.5-1.7 2.2-2.6zM48 320a16 16 0 1 1 0 32 16 16 0 1 1 0-32zM544 128V352c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V128H544zm32 208a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hanukiah": { + "aliases": { + "unicodes": { + "composite": [ + "1f54e" + ], + "secondary": [ + "10f6e6" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "candelabrum", + "candle", + "candlestick", + "hanukkah", + "jewish", + "judaism", + "light", + "menorah", + "religion" + ] + }, + "unicode": "f6e6", + "label": "Hanukiah", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M314.2 3.3C309.1 12.1 296 36.6 296 56c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7C324.6 1.2 322.4 0 320 0s-4.6 1.2-5.8 3.3zm-288 48C21.1 60.1 8 84.6 8 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7C36.6 49.2 34.4 48 32 48s-4.6 1.2-5.8 3.3zM88 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C101.1 60.1 88 84.6 88 104zm82.2-52.7C165.1 60.1 152 84.6 152 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3zM216 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C229.1 60.1 216 84.6 216 104zM394.2 51.3C389.1 60.1 376 84.6 376 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3zM440 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C453.1 60.1 440 84.6 440 104zm82.2-52.7C517.1 60.1 504 84.6 504 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3zM584 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C597.1 60.1 584 84.6 584 104zM112 160c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm160 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zM352 144c0-17.7-14.3-32-32-32s-32 14.3-32 32V320H96c-17.7 0-32-14.3-32-32V192c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 53 43 96 96 96H288v64H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H320 480c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V384H544c53 0 96-43 96-96V192c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H352V144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hard-drive": { + "aliases": { + "names": [ + "hdd" + ], + "unicodes": { + "composite": [ + "1f5b4" + ], + "secondary": [ + "10f0a0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Hard Disk", + "cpu", + "hard drive", + "harddrive", + "machine", + "save", + "storage" + ] + }, + "unicode": "f0a0", + "label": "Hard Drive", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V280.4c-17-15.2-39.4-24.4-64-24.4H64c-24.6 0-47 9.2-64 24.4V96zM64 288H448c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V352c0-35.3 28.7-64 64-64zM320 416a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm128-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + }, + "regular": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16V258c5.1-1.3 10.5-2 16-2H448c5.5 0 10.9 .7 16 2V96c0-8.8-7.2-16-16-16H64zM48 320v96c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V320c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zM0 320V96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V320v96c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320zm280 48a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm120-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hashnode": { + "changes": [ + "6.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e499", + "label": "Hashnode", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M35.19 171.1C-11.72 217.1-11.72 294 35.19 340.9L171.1 476.8C217.1 523.7 294 523.7 340.9 476.8L476.8 340.9C523.7 294 523.7 217.1 476.8 171.1L340.9 35.19C294-11.72 217.1-11.72 171.1 35.19L35.19 171.1zM315.5 315.5C282.6 348.3 229.4 348.3 196.6 315.5C163.7 282.6 163.7 229.4 196.6 196.6C229.4 163.7 282.6 163.7 315.5 196.6C348.3 229.4 348.3 282.6 315.5 315.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hashtag": { + "aliases": { + "unicodes": { + "composite": [ + "f292" + ], + "primary": [ + "f292" + ], + "secondary": [ + "1023", + "10f292" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Number Sign", + "Twitter", + "instagram", + "pound", + "social media", + "tag" + ] + }, + "unicode": "23", + "label": "Hashtag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M181.3 32.4c17.4 2.9 29.2 19.4 26.3 36.8L197.8 128h95.1l11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3s29.2 19.4 26.3 36.8L357.8 128H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H347.1L325.8 320H384c17.7 0 32 14.3 32 32s-14.3 32-32 32H315.1l-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l9.8-58.7H155.1l-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8L90.2 384H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l21.3-128H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3zM187.1 192L165.8 320h95.1l21.3-128H187.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hat-cowboy": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8c0" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buckaroo", + "horse", + "jackeroo", + "john b.", + "old west", + "pardner", + "ranch", + "rancher", + "rodeo", + "western", + "wrangler" + ] + }, + "unicode": "f8c0", + "label": "Hat Cowboy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 64c14.4 0 22.3-7 30.8-14.4C360.4 41.1 370.7 32 392 32c49.3 0 84.4 152.2 97.9 221.9C447.8 272.1 390.9 288 320 288s-127.8-15.9-169.9-34.1C163.6 184.2 198.7 32 248 32c21.3 0 31.6 9.1 41.2 17.6C297.7 57 305.6 64 320 64zM111.1 270.7c47.2 24.5 117.5 49.3 209 49.3s161.8-24.8 208.9-49.3c24.8-12.9 49.8-28.3 70.1-47.7c7.9-7.9 20.2-9.2 29.6-3.3c9.5 5.9 13.5 17.9 9.9 28.5c-13.5 37.7-38.4 72.3-66.1 100.6C523.7 398.9 443.6 448 320 448s-203.6-49.1-252.5-99.2C39.8 320.4 14.9 285.8 1.4 248.1c-3.6-10.6 .4-22.6 9.9-28.5c9.5-5.9 21.7-4.5 29.6 3.3c20.4 19.4 45.3 34.8 70.1 47.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hat-cowboy-side": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8c1" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buckaroo", + "horse", + "jackeroo", + "john b.", + "old west", + "pardner", + "ranch", + "rancher", + "rodeo", + "western", + "wrangler" + ] + }, + "unicode": "f8c1", + "label": "Hat Cowboy Side", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M152.7 135.9l-10.4 57.2c6.8-.7 13.6-1.1 20.5-1.1h10.7c39.4 0 77.8 12.1 110.1 34.7L562.4 421.8l35.1 24.6c24.4-6 42.5-28.1 42.5-54.4c0-75.8-94.7-126.6-134.6-144.7L474 83.9C468.2 53.8 441.8 32 411.1 32h-2.7c-5.6 0-11.1 .7-16.5 2.2L199.2 85.5c-23.9 6.4-42 26-46.5 50.4zM0 384c0 35.3 28.7 64 64 64H544L265.3 252.9c-26.9-18.8-58.9-28.9-91.8-28.9H162.9c-60.6 0-116 34.2-143.1 88.4L13.5 325C4.6 342.7 0 362.3 0 382.2V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hat-wizard": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6e8" + ] + } + }, + "changes": [ + "5.4.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "accessory", + "buckle", + "clothing", + "d&d", + "dnd", + "fantasy", + "halloween", + "head", + "holiday", + "mage", + "magic", + "pointy", + "witch" + ] + }, + "unicode": "f6e8", + "label": "Hat Wizard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 416L168.6 180.7c15.3-34.4 40.3-63.5 72-83.7l146.9-94c3-1.9 6.5-2.9 10-2.9C407.7 0 416 8.3 416 18.6v1.6c0 2.6-.5 5.1-1.4 7.5L354.8 176.9c-1.9 4.7-2.8 9.7-2.8 14.7c0 5.5 1.2 11 3.4 16.1L448 416H240.9l11.8-35.4 40.4-13.5c6.5-2.2 10.9-8.3 10.9-15.2s-4.4-13-10.9-15.2l-40.4-13.5-13.5-40.4C237 276.4 230.9 272 224 272s-13 4.4-15.2 10.9l-13.5 40.4-40.4 13.5C148.4 339 144 345.1 144 352s4.4 13 10.9 15.2l40.4 13.5L207.1 416H64zM279.6 141.5c-1.1-3.3-4.1-5.5-7.6-5.5s-6.5 2.2-7.6 5.5l-6.7 20.2-20.2 6.7c-3.3 1.1-5.5 4.1-5.5 7.6s2.2 6.5 5.5 7.6l20.2 6.7 6.7 20.2c1.1 3.3 4.1 5.5 7.6 5.5s6.5-2.2 7.6-5.5l6.7-20.2 20.2-6.7c3.3-1.1 5.5-4.1 5.5-7.6s-2.2-6.5-5.5-7.6l-20.2-6.7-6.7-20.2zM32 448H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "head-side-cough": { + "aliases": { + "unicodes": { + "secondary": [ + "10e061" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cough", + "covid-19", + "germs", + "lungs", + "respiratory", + "sick" + ] + }, + "unicode": "e061", + "label": "Head Side Cough", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 224.2C0 100.6 100.2 0 224 0h32c95.2 0 174.2 69.3 189.4 160.1c2.2 13 6.7 25.7 15 36.1l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4c0 24.2-19.6 43.8-43.8 43.8H448v0 32L339.2 365.6c-11 1.4-19.2 10.7-19.2 21.8c0 11.6 9 21.2 20.6 21.9L448 416v16c0 26.5-21.5 48-48 48H320v8c0 13.3-10.7 24-24 24H256v0H96c-17.7 0-32-14.3-32-32V407.3c0-16.7-6.9-32.5-17.1-45.8C16.6 322.4 0 274.1 0 224.2zm352-.2a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM464 384a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm152-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM592 480a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM552 312a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm40-24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM552 408a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "head-side-cough-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e062" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cough", + "covid-19", + "germs", + "lungs", + "respiratory", + "sick" + ] + }, + "unicode": "e062", + "label": "Head Side Cough Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L440.3 319.8c22.3-2.1 39.7-20.8 39.7-43.7c0-10-3.4-19.6-9.6-27.4l-42-52.6c-8.3-10.3-12.8-23-15-36.1C398.2 69.3 319.2 0 224 0H201.7C157 0 115.7 14.5 82.2 39.2L38.8 5.1zM0 201.7c0 44.8 18.3 91.5 46.5 127.7C56.9 342.8 64 358.8 64 375.8V480c0 17.7 14.3 32 32 32H256c17.7 0 32-14.3 32-32h64c32.8 0 59.9-24.7 63.6-56.6l-9.4-7.4H352c-17.7 0-32-14.3-32-32c0-10.5 5.1-19.9 12.9-25.7L20.8 112.4C7.5 139.3 0 169.6 0 201.7zM632 288a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm-88 72a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm64 48a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "head-side-mask": { + "aliases": { + "unicodes": { + "secondary": [ + "10e063" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "coronavirus", + "covid-19", + "filter", + "flu", + "infection", + "pandemic", + "respirator", + "virus" + ] + }, + "unicode": "e063", + "label": "Head Side Mask", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224.2c0-22.2 3.2-43.6 9.2-63.9l227 165.1C228.5 337.8 224 352.4 224 368V512H96c-17.7 0-32-14.3-32-32V407.3c0-16.7-6.9-32.5-17.1-45.8C16.6 322.4 0 274.1 0 224.2zm258.6 77.9L21 129.3C56.7 53 134.2 0 224 0h32c95.2 0 174.2 69.3 189.4 160.1c2.2 13 6.7 25.7 15 36.1l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4c0 4.1-.6 8.1-1.6 11.9H304c-16.9 0-32.5 5.2-45.4 14.1zM352 224a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM256 512V368c0-26.5 21.5-48 48-48H512l-16 48H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H485.3l-10.7 32H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H464l-1.4 4.2c-8.7 26.1-33.2 43.8-60.7 43.8H256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "head-side-virus": { + "aliases": { + "unicodes": { + "secondary": [ + "10e064" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "coronavirus", + "covid-19", + "flu", + "infection", + "pandemic", + "sick" + ] + }, + "unicode": "e064", + "label": "Head Side Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224.2C0 100.6 100.2 0 224 0h32c95.2 0 174.2 69.3 189.4 160.1c2.2 13 6.7 25.7 15 36.1l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4c0 24.2-19.6 43.8-43.8 43.8H448v64c0 35.3-28.7 64-64 64H320v32c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V407.3c0-16.7-6.9-32.5-17.1-45.8C16.6 322.4 0 274.1 0 224.2zM240 80c-8.8 0-16 7.2-16 16c0 33-39.9 49.5-63.2 26.2c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6C161.5 168.1 145 208 112 208c-8.8 0-16 7.2-16 16s7.2 16 16 16c33 0 49.5 39.9 26.2 63.2c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0C184.1 302.5 224 319 224 352c0 8.8 7.2 16 16 16s16-7.2 16-16c0-33 39.9-49.5 63.2-26.2c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6C318.5 279.9 335 240 368 240c8.8 0 16-7.2 16-16s-7.2-16-16-16c-33 0-49.5-39.9-26.2-63.2c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0C295.9 145.5 256 129 256 96c0-8.8-7.2-16-16-16zm-24 96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm40 80a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heading": { + "aliases": { + "names": [ + "header" + ], + "unicodes": { + "secondary": [ + "10f1dc" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.9.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "header", + "text", + "title" + ] + }, + "unicode": "f1dc", + "label": "Heading", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H80h48c17.7 0 32 14.3 32 32s-14.3 32-32 32H112V208H336V96H320c-17.7 0-32-14.3-32-32s14.3-32 32-32h48 48c17.7 0 32 14.3 32 32s-14.3 32-32 32H400V240 416h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H368 320c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V272H112V416h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H80 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48V240 96H32C14.3 96 0 81.7 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "headphones": { + "aliases": { + "unicodes": { + "composite": [ + "1f3a7" + ], + "secondary": [ + "10f025" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "earbud", + "headphone", + "listen", + "music", + "sound", + "speaker" + ] + }, + "unicode": "f025", + "label": "Headphones", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 80C149.9 80 62.4 159.4 49.6 262c9.4-3.8 19.6-6 30.4-6c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48c-44.2 0-80-35.8-80-80V384 336 288C0 146.6 114.6 32 256 32s256 114.6 256 256v48 48 16c0 44.2-35.8 80-80 80c-26.5 0-48-21.5-48-48V304c0-26.5 21.5-48 48-48c10.8 0 21 2.1 30.4 6C449.6 159.4 362.1 80 256 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "headphones-simple": { + "aliases": { + "names": [ + "headphones-alt" + ], + "unicodes": { + "secondary": [ + "10f58f" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "listen", + "music", + "sound", + "speaker" + ] + }, + "unicode": "f58f", + "label": "Headphones Simple", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 80C141.1 80 48 173.1 48 288V392c0 13.3-10.7 24-24 24s-24-10.7-24-24V288C0 146.6 114.6 32 256 32s256 114.6 256 256V392c0 13.3-10.7 24-24 24s-24-10.7-24-24V288c0-114.9-93.1-208-208-208zM80 352c0-35.3 28.7-64 64-64h16c17.7 0 32 14.3 32 32V448c0 17.7-14.3 32-32 32H144c-35.3 0-64-28.7-64-64V352zm288-64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H352c-17.7 0-32-14.3-32-32V320c0-17.7 14.3-32 32-32h16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "headset": { + "aliases": { + "unicodes": { + "secondary": [ + "10f590" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "gamer", + "gaming", + "listen", + "live chat", + "microphone", + "shot caller", + "sound", + "support", + "telemarketer" + ] + }, + "unicode": "f590", + "label": "Headset", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48C141.1 48 48 141.1 48 256v40c0 13.3-10.7 24-24 24s-24-10.7-24-24V256C0 114.6 114.6 0 256 0S512 114.6 512 256V400.1c0 48.6-39.4 88-88.1 88L313.6 488c-8.3 14.3-23.8 24-41.6 24H240c-26.5 0-48-21.5-48-48s21.5-48 48-48h32c17.8 0 33.3 9.7 41.6 24l110.4 .1c22.1 0 40-17.9 40-40V256c0-114.9-93.1-208-208-208zM144 208h16c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H144c-35.3 0-64-28.7-64-64V272c0-35.3 28.7-64 64-64zm224 0c35.3 0 64 28.7 64 64v48c0 35.3-28.7 64-64 64H352c-17.7 0-32-14.3-32-32V240c0-17.7 14.3-32 32-32h16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart": { + "aliases": { + "unicodes": { + "composite": [ + "1f499", + "1f49a", + "1f49b", + "1f49c", + "1f5a4", + "1f90d", + "1f90e", + "1f9e1", + "2665", + "2764", + "f08a" + ], + "secondary": [ + "10f004" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "black", + "black heart", + "blue", + "blue heart", + "brown", + "brown heart", + "card", + "evil", + "favorite", + "game", + "green", + "green heart", + "heart", + "heart suit", + "like", + "love", + "orange", + "orange heart", + "purple", + "purple heart", + "red heart", + "relationship", + "valentine", + "white", + "white heart", + "wicked", + "yellow", + "yellow heart" + ] + }, + "unicode": "f004", + "label": "Heart", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z" + }, + "regular": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M244 84L255.1 96L267.1 84.02C300.6 51.37 347 36.51 392.6 44.1C461.5 55.58 512 115.2 512 185.1V190.9C512 232.4 494.8 272.1 464.4 300.4L283.7 469.1C276.2 476.1 266.3 480 256 480C245.7 480 235.8 476.1 228.3 469.1L47.59 300.4C17.23 272.1 0 232.4 0 190.9V185.1C0 115.2 50.52 55.58 119.4 44.1C164.1 36.51 211.4 51.37 244 84C243.1 84 244 84.01 244 84L244 84zM255.1 163.9L210.1 117.1C188.4 96.28 157.6 86.4 127.3 91.44C81.55 99.07 48 138.7 48 185.1V190.9C48 219.1 59.71 246.1 80.34 265.3L256 429.3L431.7 265.3C452.3 246.1 464 219.1 464 190.9V185.1C464 138.7 430.4 99.07 384.7 91.44C354.4 86.4 323.6 96.28 301.9 117.1L255.1 163.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "heart-circle-bolt": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cardiogram", + "ekg", + "electric", + "heart", + "love", + "pacemaker" + ] + }, + "unicode": "e4fc", + "label": "Heart Circle Bolt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm47.9-225c4.3 3.7 5.4 9.9 2.6 14.9L452.4 356H488c5.2 0 9.8 3.3 11.4 8.2s-.1 10.3-4.2 13.4l-96 72c-4.5 3.4-10.8 3.2-15.1-.6s-5.4-9.9-2.6-14.9L411.6 380H376c-5.2 0-9.8-3.3-11.4-8.2s.1-10.3 4.2-13.4l96-72c4.5-3.4 10.8-3.2 15.1 .6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love", + "not affected", + "ok", + "okay" + ] + }, + "unicode": "e4fd", + "label": "Heart Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM576 368c0-79.5-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144s144-64.5 144-144zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L416 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love" + ] + }, + "unicode": "e4fe", + "label": "Heart Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm0-48c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm0-192c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-circle-minus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love" + ] + }, + "unicode": "e4ff", + "label": "Heart Circle Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM576 368c0-79.5-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144s144-64.5 144-144zm-64 0c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16H496c8.8 0 16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-circle-plus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love" + ] + }, + "unicode": "e500", + "label": "Heart Circle Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm16-208v48h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H448v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V384H368c-8.8 0-16-7.2-16-16s7.2-16 16-16h48V304c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love" + ] + }, + "unicode": "e501", + "label": "Heart Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm59.3-180.7L454.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L432 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L409.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L432 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-crack": { + "aliases": { + "names": [ + "heart-broken" + ], + "unicodes": { + "composite": [ + "1f494" + ], + "secondary": [ + "10f7a9" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "break", + "breakup", + "broken", + "broken heart", + "crushed", + "dislike", + "dumped", + "grief", + "love", + "lovesick", + "relationship", + "sad" + ] + }, + "unicode": "f7a9", + "label": "Heart Crack", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M119.4 44.1c23.3-3.9 46.8-1.9 68.6 5.3l49.8 77.5-75.4 75.4c-1.5 1.5-2.4 3.6-2.3 5.8s1 4.2 2.6 5.7l112 104c2.9 2.7 7.4 2.9 10.5 .3s3.8-7 1.7-10.4l-60.4-98.1 90.7-75.6c2.6-2.1 3.5-5.7 2.4-8.8L296.8 61.8c28.5-16.7 62.4-23.2 95.7-17.6C461.5 55.6 512 115.2 512 185.1v5.8c0 41.5-17.2 81.2-47.6 109.5L283.7 469.1c-7.5 7-17.4 10.9-27.7 10.9s-20.2-3.9-27.7-10.9L47.6 300.4C17.2 272.1 0 232.4 0 190.9v-5.8c0-69.9 50.5-129.5 119.4-141z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "heart-pulse": { + "aliases": { + "names": [ + "heartbeat" + ], + "unicodes": { + "secondary": [ + "10f21e" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ekg", + "electrocardiogram", + "health", + "lifeline", + "vital signs" + ] + }, + "unicode": "f21e", + "label": "Heart Pulse", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M228.3 469.1L47.6 300.4c-4.2-3.9-8.2-8.1-11.9-12.4h87c22.6 0 43-13.6 51.7-34.5l10.5-25.2 49.3 109.5c3.8 8.5 12.1 14 21.4 14.1s17.8-5 22-13.3L320 253.7l1.7 3.4c9.5 19 28.9 31 50.1 31H476.3c-3.7 4.3-7.7 8.5-11.9 12.4L283.7 469.1c-7.5 7-17.4 10.9-27.7 10.9s-20.2-3.9-27.7-10.9zM503.7 240h-132c-3 0-5.8-1.7-7.2-4.4l-23.2-46.3c-4.1-8.1-12.4-13.3-21.5-13.3s-17.4 5.1-21.5 13.3l-41.4 82.8L205.9 158.2c-3.9-8.7-12.7-14.3-22.2-14.1s-18.1 5.9-21.8 14.8l-31.8 76.3c-1.2 3-4.2 4.9-7.4 4.9H16c-2.6 0-5 .4-7.3 1.1C3 225.2 0 208.2 0 190.9v-5.8c0-69.9 50.5-129.5 119.4-141C165 36.5 211.4 51.4 244 84l12 12 12-12c32.6-32.6 79-47.5 124.6-39.9C461.5 55.6 512 115.2 512 185.1v5.8c0 16.9-2.8 33.5-8.3 49.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "helicopter": { + "aliases": { + "unicodes": { + "composite": [ + "1f681" + ], + "secondary": [ + "10f533" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airwolf", + "apache", + "chopper", + "flight", + "fly", + "helicopter", + "travel", + "vehicle" + ] + }, + "unicode": "f533", + "label": "Helicopter", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 32c0-17.7 14.3-32 32-32H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H384v64h32c88.4 0 160 71.6 160 160v64c0 17.7-14.3 32-32 32H384 320c-20.1 0-39.1-9.5-51.2-25.6l-71.4-95.2c-3.5-4.7-8.3-8.3-13.7-10.5L47.2 198.1c-9.5-3.8-16.7-12-19.2-22L5 83.9C2.4 73.8 10.1 64 20.5 64H48c10.1 0 19.6 4.7 25.6 12.8L112 128H320V64H160c-17.7 0-32-14.3-32-32zM384 320H512V288c0-53-43-96-96-96H384V320zM630.6 425.4c12.5 12.5 12.5 32.8 0 45.3l-3.9 3.9c-24 24-56.6 37.5-90.5 37.5H256c-17.7 0-32-14.3-32-32s14.3-32 32-32H536.2c17 0 33.3-6.7 45.3-18.7l3.9-3.9c12.5-12.5 32.8-12.5 45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "helicopter-symbol": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chopper", + "helicopter", + "landing pad", + "whirlybird" + ] + }, + "unicode": "e502", + "label": "Helicopter Symbol", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M443.3 224H508C493.6 108.2 401.8 16.4 286 2V66.7C366.4 80.1 429.9 143.6 443.3 224zM508 288H443.3C429.9 368.4 366.4 431.9 286 445.4V510c115.8-14.4 207.6-106.2 222-222zM0 288C14.4 403.8 106.2 495.6 222 510V445.4C141.6 431.9 78.1 368.4 64.7 288H0zm0-64H64.7C78.1 143.6 141.6 80.1 222 66.7V2C106.2 16.4 14.4 108.2 0 224zm206-64c0-17.7-14.3-32-32-32s-32 14.3-32 32V352c0 17.7 14.3 32 32 32s32-14.3 32-32V288h96v64c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H206V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "helmet-safety": { + "aliases": { + "names": [ + "hard-hat", + "hat-hard" + ], + "unicodes": { + "secondary": [ + "10f807" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "construction", + "hardhat", + "helmet", + "safety" + ] + }, + "unicode": "f807", + "label": "Helmet Safety", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M256 32c-17.7 0-32 14.3-32 32v2.3 99.6c0 5.6-4.5 10.1-10.1 10.1c-3.6 0-7-1.9-8.8-5.1L157.1 87C83 123.5 32 199.8 32 288v64H544l0-66.4c-.9-87.2-51.7-162.4-125.1-198.6l-48 83.9c-1.8 3.2-5.2 5.1-8.8 5.1c-5.6 0-10.1-4.5-10.1-10.1V66.3 64c0-17.7-14.3-32-32-32H256zM16.6 384C7.4 384 0 391.4 0 400.6c0 4.7 2 9.2 5.8 11.9C27.5 428.4 111.8 480 288 480s260.5-51.6 282.2-67.5c3.8-2.8 5.8-7.2 5.8-11.9c0-9.2-7.4-16.6-16.6-16.6H16.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "helmet-un": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "helmet", + "united nations" + ] + }, + "unicode": "e503", + "label": "Helmet Un", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M479.5 224C471.2 98.9 367.2 0 240 0C107.5 0 0 107.5 0 240v56.3C0 344.8 39.2 384 87.7 384H200h14.9L343.5 505.4c4.5 4.2 10.4 6.6 16.5 6.6h96c13.3 0 24-10.7 24-24s-10.7-24-24-24H369.5l-1.5-1.5V288h80 32c17.7 0 32-14.3 32-32s-14.3-32-32-32h-.5zM320 417.2l-78-73.7L274.4 288H320V417.2zM285.3 103.1l34.7 52V112c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52V208c0 8.8-7.2 16-16 16s-16-7.2-16-16V112c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4zM160 112v64c0 8.8 7.2 16 16 16s16-7.2 16-16V112c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48V112c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "highlighter": { + "aliases": { + "unicodes": { + "secondary": [ + "10f591" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "marker", + "sharpie", + "update", + "write" + ] + }, + "unicode": "f591", + "label": "Highlighter", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M315 315l158.4-215L444.1 70.6 229 229 315 315zm-187 5l0 0V248.3c0-15.3 7.2-29.6 19.5-38.6L420.6 8.4C428 2.9 437 0 446.2 0c11.4 0 22.4 4.5 30.5 12.6l54.8 54.8c8.1 8.1 12.6 19 12.6 30.5c0 9.2-2.9 18.2-8.4 25.6L334.4 396.5c-9 12.3-23.4 19.5-38.6 19.5H224l-25.4 25.4c-12.5 12.5-32.8 12.5-45.3 0l-50.7-50.7c-12.5-12.5-12.5-32.8 0-45.3L128 320zM7 466.3l63-63 70.6 70.6-31 31c-4.5 4.5-10.6 7-17 7H24c-13.3 0-24-10.7-24-24v-4.7c0-6.4 2.5-12.5 7-17z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hill-avalanche": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mudslide", + "snow", + "winter" + ] + }, + "unicode": "e507", + "label": "Hill Avalanche", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M440.7 401.9c34.2 23.1 81.1 19.5 111.4-10.8c34.4-34.4 34.4-90.1 0-124.4c-27.8-27.8-69.5-33.1-102.6-16c-11.8 6.1-16.4 20.6-10.3 32.3s20.6 16.4 32.3 10.3c15.1-7.8 34-5.3 46.6 7.3c15.6 15.6 15.6 40.9 0 56.6s-40.9 15.6-56.6 0l-81.7-81.7C402.2 261.3 417 236.4 417 208c0-33.9-21.1-62.9-50.9-74.5c1.9-6.8 2.9-14 2.9-21.5c0-44.2-35.8-80-80-80c-27.3 0-51.5 13.7-65.9 34.6C217.3 46.6 198.9 32 177 32c-26.5 0-48 21.5-48 48c0 4 .5 7.9 1.4 11.6L440.7 401.9zM481 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM69.3 87C44.1 61.8 1 79.7 1 115.3V432c0 44.2 35.8 80 80 80H397.7c35.6 0 53.5-43.1 28.3-68.3L69.3 87z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hill-rockslide": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mudslide" + ] + }, + "unicode": "e508", + "label": "Hill Rockslide", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M252.4 103.8l27 48c2.8 5 8.2 8.2 13.9 8.2l53.3 0c5.8 0 11.1-3.1 13.9-8.2l27-48c2.7-4.9 2.7-10.8 0-15.7l-27-48c-2.8-5-8.2-8.2-13.9-8.2H293.4c-5.8 0-11.1 3.1-13.9 8.2l-27 48c-2.7 4.9-2.7 10.8 0 15.7zM68.3 87C43.1 61.8 0 79.7 0 115.3V432c0 44.2 35.8 80 80 80H396.7c35.6 0 53.5-43.1 28.3-68.3L68.3 87zM504.2 403.6c4.9 2.7 10.8 2.7 15.7 0l48-27c5-2.8 8.2-8.2 8.2-13.9V309.4c0-5.8-3.1-11.1-8.2-13.9l-48-27c-4.9-2.7-10.8-2.7-15.7 0l-48 27c-5 2.8-8.2 8.2-8.2 13.9v53.3c0 5.8 3.1 11.1 8.2 13.9l48 27zM192 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM384 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hippo": { + "aliases": { + "unicodes": { + "composite": [ + "1f99b" + ], + "secondary": [ + "10f6ed" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.1", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "fauna", + "hippo", + "hippopotamus", + "hungry", + "mammal" + ] + }, + "unicode": "f6ed", + "label": "Hippo", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M407 47c9.4-9.4 24.6-9.4 33.9 0l17.2 17.2c1.9-.1 3.9-.2 5.8-.2h32c11.2 0 21.9 2.3 31.6 6.5L543 55c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L564 101.9c7.6 12.2 12 26.7 12 42.1c0 10.2 7.4 18.8 16.7 23c27.9 12.5 47.3 40.5 47.3 73c0 26.2-12.6 49.4-32 64v32c0 8.8-7.2 16-16 16H560c-8.8 0-16-7.2-16-16V320H480v16c0 8.8-7.2 16-16 16H432c-8.8 0-16-7.2-16-16V318.4c-11.8-2.4-22.7-7.4-32-14.4c-1.5-1.1-2.9-2.3-4.3-3.5c-17-14.7-27.7-36.4-27.7-60.5c0-8.8-7.2-16-16-16s-16 7.2-16 16c0 44.7 26.2 83.2 64 101.2V352c0 17.7 14.3 32 32 32h32v64c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V372c-19.8 7.7-41.4 12-64 12s-44.2-4.3-64-12v76c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V329.1L45.9 369.7c-5.4 12.1-19.6 17.6-31.7 12.2S-3.3 362.4 2.1 350.3L24 300.9c5.3-11.9 8-24.7 8-37.7C32 155.7 117.2 68 223.8 64.1l.2-.1h7.2H256h32c41.7 0 83.4 12.1 117.2 25.7c1.7-1.8 3.5-3.6 5.3-5.2L407 81c-9.4-9.4-9.4-24.6 0-33.9zm73 185a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm88 24a24 24 0 1 0 0-48 24 24 0 1 0 0 48zM480 144a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm48 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hips": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f452", + "label": "Hips", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M251.6 157.6c0-1.9-.9-2.8-2.8-2.8h-40.9c-1.6 0-2.7 1.4-2.7 2.8v201.8c0 1.4 1.1 2.8 2.7 2.8h40.9c1.9 0 2.8-.9 2.8-2.8zM156.5 168c-16.1-11.8-36.3-17.9-60.3-18-18.1-.1-34.6 3.7-49.8 11.4V80.2c0-1.8-.9-2.7-2.8-2.7H2.7c-1.8 0-2.7.9-2.7 2.7v279.2c0 1.9.9 2.8 2.7 2.8h41c1.9 0 2.8-.9 2.8-2.8V223.3c0-.8-2.8-27 45.8-27 48.5 0 45.8 26.1 45.8 27v122.6c0 9 7.3 16.3 16.4 16.3h27.3c1.8 0 2.7-.9 2.7-2.8V223.3c0-23.4-9.3-41.8-28-55.3zm478.4 110.1c-6.8-15.7-18.4-27-34.9-34.1l-57.6-25.3c-8.6-3.6-9.2-11.2-2.6-16.1 7.4-5.5 44.3-13.9 84 6.8 1.7 1 4-.3 4-2.4v-44.7c0-1.3-.6-2.1-1.9-2.6-17.7-6.6-36.1-9.9-55.1-9.9-26.5 0-45.3 5.8-58.5 15.4-.5.4-28.4 20-22.7 53.7 3.4 19.6 15.8 34.2 37.2 43.6l53.6 23.5c11.6 5.1 15.2 13.3 12.2 21.2-3.7 9.1-13.2 13.6-36.5 13.6-24.3 0-44.7-8.9-58.4-19.1-2.1-1.4-4.4.2-4.4 2.3v34.4c0 10.4 4.9 17.3 14.6 20.7 15.6 5.5 31.6 8.2 48.2 8.2 12.7 0 25.8-1.2 36.3-4.3.7-.3 36-8.9 45.6-45.8 3.5-13.5 2.4-26.5-3.1-39.1zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zM228.3 72.5c-15.9 0-28.8 12.9-28.9 28.9 0 15.6 12.7 28.9 28.9 28.9s28.9-13.1 28.9-28.9c0-16.2-13-28.9-28.9-28.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hire-a-helper": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b0", + "label": "HireAHelper", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hive": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07f", + "label": "Hive Blockchain Network", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M260.353,254.878,131.538,33.1a2.208,2.208,0,0,0-3.829.009L.3,254.887A2.234,2.234,0,0,0,.3,257.122L129.116,478.9a2.208,2.208,0,0,0,3.83-.009L260.358,257.113A2.239,2.239,0,0,0,260.353,254.878Zm39.078-25.713a2.19,2.19,0,0,0,1.9,1.111h66.509a2.226,2.226,0,0,0,1.9-3.341L259.115,33.111a2.187,2.187,0,0,0-1.9-1.111H190.707a2.226,2.226,0,0,0-1.9,3.341ZM511.7,254.886,384.9,33.112A2.2,2.2,0,0,0,382.99,32h-66.6a2.226,2.226,0,0,0-1.906,3.34L440.652,256,314.481,476.66a2.226,2.226,0,0,0,1.906,3.34h66.6a2.2,2.2,0,0,0,1.906-1.112L511.7,257.114A2.243,2.243,0,0,0,511.7,254.886ZM366.016,284.917H299.508a2.187,2.187,0,0,0-1.9,1.111l-108.8,190.631a2.226,2.226,0,0,0,1.9,3.341h66.509a2.187,2.187,0,0,0,1.9-1.111l108.8-190.631A2.226,2.226,0,0,0,366.016,284.917Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hockey-puck": { + "aliases": { + "unicodes": { + "secondary": [ + "10f453" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ice", + "nhl", + "sport" + ] + }, + "unicode": "f453", + "label": "Hockey Puck", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321831, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 256C114.6 256 0 213 0 160s114.6-96 256-96s256 43 256 96s-114.6 96-256 96zm192.3 1.8c24.7-9.3 46.9-21 63.7-35.6V352c0 53-114.6 96-256 96S0 405 0 352V222.3c16.8 14.6 39 26.3 63.7 35.6C114.5 276.9 182.5 288 256 288s141.5-11.1 192.3-30.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "holly-berry": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7aa" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "catwoman", + "christmas", + "decoration", + "flora", + "halle", + "holiday", + "ororo munroe", + "plant", + "storm", + "xmas" + ] + }, + "unicode": "f7aa", + "label": "Holly Berry", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M247 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-80 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM267.8 383.8c1 .1 2.1 .2 3.2 .2c39.8 0 72 32.2 72 72v22.7c0 16.4 16 27.9 31.6 22.8l12.8-4.3c18-6 37.3-6.5 55.6-1.5l19.4 5.3c17.9 4.9 34.4-11.6 29.5-29.5L486.6 452c-5-18.3-4.4-37.6 1.5-55.6l4.3-12.8c5.2-15.5-6.4-31.6-22.8-31.6c-34.6 0-62.7-28.1-62.7-62.7v-32c0-16.4-16-27.9-31.6-22.8l-12.8 4.3c-18 6-37.3 6.5-55.6 1.5l-29.6-8.1c-2.9-.8-5.9-1-8.7-.7c4.2 9.7 5.8 20.8 3.7 32.3L266 298.7c-1.5 8.4-1.4 17 .5 25.3l5.3 23.9c2.8 12.7 1.1 25.2-4 35.9zM118.6 234.5c-15.5-5.2-31.6 6.4-31.6 22.8v32C87 323.9 58.9 352 24.3 352C7.9 352-3.6 368 1.5 383.6l4.3 12.8c6 18 6.5 37.3 1.5 55.6L2.1 471.5c-4.9 17.9 11.6 34.4 29.5 29.5L51 495.6c18.3-5 37.6-4.5 55.6 1.5l12.8 4.3c15.5 5.2 31.6-6.4 31.6-22.8v-32c0-34.6 28.1-62.7 62.7-62.7c16.4 0 27.9-16 22.8-31.6l-4.3-12.8c-6-18-6.5-37.3-1.5-55.6l5.3-19.4c4.9-17.9-11.6-34.4-29.5-29.5L187 240.4c-18.3 5-37.6 4.4-55.6-1.5l-12.8-4.3zM375 144a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hooli": { + "changes": [ + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f427", + "label": "Hooli", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8zm57.7-5.3v5.3l-19.4.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3zm408.9-115.2c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zm-29 120.5H640V241.5h-57.9zm-73.7 0h57.9V156.7L508.4 184zm-31-119.4c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6s-1.4 34.3 16.8 52.5 50.4 17.1 50.4 17.1 32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5s-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9s10.7 2.1 10.7 10.9zm-106.2-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.8 110.8V352h57.9v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.4-21.6-38.4-31.4v-31c13.1 14.7 30.5 31.4 53.4 50.3l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5s50.4 17.1 50.4 17.1 32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zM65.2 184v63.3c-48.7-54.5-38.9-76-35.2-79.1 13.5-11.4 37.5-8 64.4 2.1zm226.5 120.5c0 3.6-1.8 12.5-10.7 12.5s-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9s10.7 2.1 10.7 10.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hornbill": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f592", + "label": "Hornbill", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M76.38 370.3a37.8 37.8 0 1 1-32.07-32.42c-78.28-111.35 52-190.53 52-190.53-5.86 43-8.24 91.16-8.24 91.16-67.31 41.49.93 64.06 39.81 72.87a140.38 140.38 0 0 0 131.66 91.94c1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6zm108-327.7A37.57 37.57 0 0 0 181 21.45a37.95 37.95 0 1 0-31.17 54.22c-22.55 29.91-53.83 89.57-52.42 190l21.84-.15c0-.9-.14-1.77-.14-2.68A140.42 140.42 0 0 1 207 132.71c8-37.71 30.7-114.3 73.8-44.29 0 0 48.14 2.38 91.18 8.24 0 0-77.84-128-187.59-54.06zm304.19 134.17a37.94 37.94 0 1 0-53.84-28.7C403 126.13 344.89 99 251.28 100.33l.14 22.5c2.7-.15 5.39-.41 8.14-.41a140.37 140.37 0 0 1 130.49 88.76c39.1 9 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 49-194.61a37.45 37.45 0 0 0 19.31-3.5zM374.06 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15a140.34 140.34 0 0 1-91.39 131.45c-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 51a37.5 37.5 0 0 0 3.64 14 37.93 37.93 0 1 0 33.89-54.29z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "horse": { + "aliases": { + "unicodes": { + "composite": [ + "1f40e" + ], + "secondary": [ + "10f6f0" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "equestrian", + "equus", + "fauna", + "horse", + "mammmal", + "mare", + "neigh", + "pony", + "racehorse", + "racing" + ] + }, + "unicode": "f6f0", + "label": "Horse", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M448 238.1V160h16l9.8 19.6c12.5 25.1 42.2 36.4 68.3 26c20.5-8.2 33.9-28 33.9-50.1V80c0-19.1-8.4-36.3-21.7-48H560c8.8 0 16-7.2 16-16s-7.2-16-16-16H480 448C377.3 0 320 57.3 320 128H224 203.2 148.8c-30.7 0-57.6 16.3-72.5 40.8C33.2 174.5 0 211.4 0 256v56c0 13.3 10.7 24 24 24s24-10.7 24-24V256c0-13.4 6.6-25.2 16.7-32.5c1.6 13 6.3 25.4 13.6 36.4l28.2 42.4c8.3 12.4 6.4 28.7-1.2 41.6c-16.5 28-20.6 62.2-10 93.9l17.5 52.4c4.4 13.1 16.6 21.9 30.4 21.9h33.7c21.8 0 37.3-21.4 30.4-42.1l-20.8-62.5c-2.1-6.4-.5-13.4 4.3-18.2l12.7-12.7c13.2-13.2 20.6-31.1 20.6-49.7c0-2.3-.1-4.6-.3-6.9l84 24c4.1 1.2 8.2 2.1 12.3 2.8V480c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V315.7c19.2-19.2 31.5-45.7 32-75.7h0v-1.9zM496 64a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "horse-head": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ab" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "equus", + "fauna", + "mammmal", + "mare", + "neigh", + "pony" + ] + }, + "unicode": "f7ab", + "label": "Horse Head", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 464V316.9C0 208.5 68.3 111.8 170.5 75.6L340.2 15.5C361.6 7.9 384 23.8 384 46.4c0 11-5.5 21.2-14.6 27.3L336 96c48.1 0 91.2 29.8 108.1 74.9l48.6 129.5c11.8 31.4 4.1 66.8-19.6 90.5c-16 16-37.8 25.1-60.5 25.1h-3.4c-26.1 0-50.9-11.6-67.6-31.7l-32.3-38.7c-11.7 4.1-24.2 6.4-37.3 6.4l-.1 0 0 0c-6.3 0-12.5-.5-18.6-1.5c-3.6-.6-7.2-1.4-10.7-2.3l0 0c-28.9-7.8-53.1-26.8-67.8-52.2c-4.4-7.6-14.2-10.3-21.9-5.8s-10.3 14.2-5.8 21.9c24 41.5 68.3 70 119.3 71.9l47.2 70.8c4 6.1 6.2 13.2 6.2 20.4c0 20.3-16.5 36.8-36.8 36.8H48c-26.5 0-48-21.5-48-48zM328 224a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hospital": { + "aliases": { + "names": [ + "hospital-alt", + "hospital-wide" + ], + "unicodes": { + "composite": [ + "1f3e5", + "f47d" + ], + "primary": [ + "f47d" + ], + "secondary": [ + "10f0f8", + "10f47d" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "covid-19", + "doctor", + "emergency room", + "hospital", + "medical center", + "medicine" + ] + }, + "unicode": "f0f8", + "label": "Hospital", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 48c0-26.5 21.5-48 48-48H400c26.5 0 48 21.5 48 48V512H368V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H192V48zM48 96H160V512H48c-26.5 0-48-21.5-48-48V320H80c8.8 0 16-7.2 16-16s-7.2-16-16-16H0V224H80c8.8 0 16-7.2 16-16s-7.2-16-16-16H0V144c0-26.5 21.5-48 48-48zm544 0c26.5 0 48 21.5 48 48v48H560c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H560c-8.8 0-16 7.2-16 16s7.2 16 16 16h80V464c0 26.5-21.5 48-48 48H480V96H592zM312 64c-8.8 0-16 7.2-16 16v24H272c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h24v24c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16V152h24c8.8 0 16-7.2 16-16V120c0-8.8-7.2-16-16-16H344V80c0-8.8-7.2-16-16-16H312z" + }, + "regular": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M232 0c-39.8 0-72 32.2-72 72v8H72C32.2 80 0 112.2 0 152V440c0 39.8 32.2 72 72 72h.2 .2 .2 .2 .2H73h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2H75h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2H77h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2H79h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2H82h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2H85h.2 .2 .2 .2H86h.2 .2 .2 .2H87h.2 .2 .2 .2H88h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2H98h.2 .2 .2 .2H99h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2v0H456h8v0H568c39.8 0 72-32.2 72-72V152c0-39.8-32.2-72-72-72H480V72c0-39.8-32.2-72-72-72H232zM480 128h88c13.3 0 24 10.7 24 24v40H536c-13.3 0-24 10.7-24 24s10.7 24 24 24h56v48H536c-13.3 0-24 10.7-24 24s10.7 24 24 24h56V440c0 13.3-10.7 24-24 24H480V336 128zM72 128h88V464h-.1-.2-.2-.2H159h-.2-.2-.2H158h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H154h-.2-.2-.2H153h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H150h-.2-.2-.2H149h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H146h-.2-.2-.2H145h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H142h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H139h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H136h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H133h-.2-.2-.2-.2-.2-.2-.2-.2H131h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H128h-.2-.2-.2-.2-.2-.2-.2-.2H126h-.2-.2-.2-.2-.2-.2-.2-.2H124h-.2-.2-.2-.2-.2-.2-.2-.2H122h-.2-.2-.2-.2-.2-.2-.2-.2H120h-.2-.2-.2-.2-.2-.2-.2-.2H118h-.2-.2-.2-.2-.2-.2-.2-.2H116h-.2-.2-.2-.2-.2-.2-.2-.2H114h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H111h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H108h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H105h-.2-.2-.2-.2H104h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H100h-.2-.2-.2-.2H99h-.2-.2-.2-.2H98h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H88h-.2-.2-.2-.2H87h-.2-.2-.2-.2H86h-.2-.2-.2-.2H85h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H82h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H79h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H77h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H75h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H73h-.2-.2-.2-.2-.2H72c-13.2 0-24-10.7-24-24V336h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H48V240h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H48V152c0-13.3 10.7-24 24-24zM208 72c0-13.3 10.7-24 24-24H408c13.3 0 24 10.7 24 24V336 464H368V400c0-26.5-21.5-48-48-48s-48 21.5-48 48v64H208V72zm88 24v24H272c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h24v24c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16V168h24c8.8 0 16-7.2 16-16V136c0-8.8-7.2-16-16-16H344V96c0-8.8-7.2-16-16-16H312c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hospital-user": { + "aliases": { + "unicodes": { + "secondary": [ + "10f80d" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "network", + "patient", + "primary care" + ] + }, + "unicode": "f80d", + "label": "Hospital User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V256H144c8.8 0 16 7.2 16 16s-7.2 16-16 16H0v64H144c8.8 0 16 7.2 16 16s-7.2 16-16 16H0v80c0 26.5 21.5 48 48 48H265.9c-6.3-10.2-9.9-22.2-9.9-35.1c0-46.9 25.8-87.8 64-109.2V271.8 48c0-26.5-21.5-48-48-48H48zM152 64h16c8.8 0 16 7.2 16 16v24h24c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H184v24c0 8.8-7.2 16-16 16H152c-8.8 0-16-7.2-16-16V152H112c-8.8 0-16-7.2-16-16V120c0-8.8 7.2-16 16-16h24V80c0-8.8 7.2-16 16-16zM512 272a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM288 477.1c0 19.3 15.6 34.9 34.9 34.9H541.1c19.3 0 34.9-15.6 34.9-34.9c0-51.4-41.7-93.1-93.1-93.1H381.1c-51.4 0-93.1 41.7-93.1 93.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hot-tub-person": { + "aliases": { + "names": [ + "hot-tub" + ], + "unicodes": { + "secondary": [ + "10f593" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "jacuzzi", + "spa" + ] + }, + "unicode": "f593", + "label": "Hot Tub Person", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M272 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v5.2c0 34 14.4 66.4 39.7 89.2l16.4 14.8c15.2 13.7 23.8 33.1 23.8 53.5V200c0 13.3 10.7 24 24 24s24-10.7 24-24V186.8c0-34-14.4-66.4-39.7-89.2L295.8 82.8C280.7 69.1 272 49.7 272 29.2V24zM0 320v16V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64H277.3c-13.8 0-27.3-4.5-38.4-12.8l-85.3-64C137 166.7 116.8 160 96 160c-53 0-96 43-96 96v64zm128 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16s16 7.2 16 16zm80-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm112 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16s16 7.2 16 16zm80-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM360 0c-13.3 0-24 10.7-24 24v5.2c0 34 14.4 66.4 39.7 89.2l16.4 14.8c15.2 13.7 23.8 33.1 23.8 53.5V200c0 13.3 10.7 24 24 24s24-10.7 24-24V186.8c0-34-14.4-66.4-39.7-89.2L407.8 82.8C392.7 69.1 384 49.7 384 29.2V24c0-13.3-10.7-24-24-24zM64 128A64 64 0 1 0 64 0a64 64 0 1 0 0 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hotdog": { + "aliases": { + "unicodes": { + "composite": [ + "1f32d" + ], + "secondary": [ + "10f80f" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bun", + "chili", + "frankfurt", + "frankfurter", + "hot dog", + "hotdog", + "kosher", + "polish", + "sandwich", + "sausage", + "vienna", + "weiner" + ] + }, + "unicode": "f80f", + "label": "Hotdog", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M488.6 23.4c31.2 31.2 31.2 81.9 0 113.1l-352 352c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1l352-352c31.2-31.2 81.9-31.2 113.1 0zM443.3 92.7c-6.2-6.2-16.4-6.2-22.6 0c-12.5 12.5-23.8 15.1-37.5 17.6l-2.5 .4c-13.8 2.5-31.6 5.6-48 22c-16.7 16.7-20.9 36-24.1 50.9l0 0v0l-.2 1c-3.4 15.6-6 26.4-15.7 36.1s-20.5 12.3-36.1 15.7l-1 .2c-14.9 3.2-34.2 7.4-50.9 24.1s-20.9 36-24.1 50.9l-.2 1c-3.4 15.6-6 26.4-15.7 36.1c-9.2 9.2-18 10.8-32.7 13.4l0 0-.9 .2c-15.6 2.8-34.9 6.9-54.4 26.4c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0c12.5-12.5 23.8-15.1 37.5-17.6l2.5-.4c13.8-2.5 31.6-5.6 48-22c16.7-16.7 20.9-36 24.1-50.9l.2-1c3.4-15.6 6-26.4 15.7-36.1s20.5-12.3 36.1-15.7l1-.2c14.9-3.2 34.2-7.4 50.9-24.1s20.9-36 24.1-50.9l.2-1c3.4-15.6 6-26.4 15.7-36.1c9.2-9.2 18-10.8 32.7-13.4l.9-.2c15.6-2.8 34.9-6.9 54.4-26.4c6.2-6.2 6.2-16.4 0-22.6zM191.2 479.2l288-288L495 207c10.9 10.9 17 25.6 17 41s-6.1 30.1-17 41L289 495c-10.9 10.9-25.6 17-41 17s-30.1-6.1-41-17l-15.8-15.8zM17 305C6.1 294.1 0 279.4 0 264s6.1-30.1 17-41L223 17C233.9 6.1 248.6 0 264 0s30.1 6.1 41 17l15.8 15.8-288 288L17 305z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hotel": { + "aliases": { + "unicodes": { + "composite": [ + "1f3e8" + ], + "secondary": [ + "10f594" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "hotel", + "inn", + "lodging", + "motel", + "resort", + "travel" + ] + }, + "unicode": "f594", + "label": "Hotel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H480c17.7 0 32 14.3 32 32s-14.3 32-32 32V448c17.7 0 32 14.3 32 32s-14.3 32-32 32H304V464c0-26.5-21.5-48-48-48s-48 21.5-48 48v48H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V64C14.3 64 0 49.7 0 32zm96 80v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H112c-8.8 0-16 7.2-16 16zM240 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H240zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zM112 192c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H112zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H368zM328 384c13.3 0 24.3-10.9 21-23.8c-10.6-41.5-48.2-72.2-93-72.2s-82.5 30.7-93 72.2c-3.3 12.8 7.8 23.8 21 23.8H328z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hotjar": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b1", + "label": "Hotjar", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hourglass": { + "aliases": { + "names": [ + "hourglass-empty" + ], + "unicodes": { + "composite": [ + "23f3", + "f250" + ], + "secondary": [ + "10f254" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "hourglass", + "hourglass not done", + "minute", + "sand", + "stopwatch", + "time", + "timer" + ] + }, + "unicode": "f254", + "label": "Hourglass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H64 320h32c17.7 0 32 14.3 32 32s-14.3 32-32 32V75c0 42.4-16.9 83.1-46.9 113.1L237.3 256l67.9 67.9c30 30 46.9 70.7 46.9 113.1v11c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32V437c0-42.4 16.9-83.1 46.9-113.1L146.7 256 78.9 188.1C48.9 158.1 32 117.4 32 75V64C14.3 64 0 49.7 0 32zM96 64V75c0 25.5 10.1 49.9 28.1 67.9L192 210.7l67.9-67.9c18-18 28.1-42.4 28.1-67.9V64H96zm0 384H288V437c0-25.5-10.1-49.9-28.1-67.9L192 301.3l-67.9 67.9c-18 18-28.1 42.4-28.1 67.9v11z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M24 0C10.7 0 0 10.7 0 24S10.7 48 24 48h8V67c0 40.3 16 79 44.5 107.5L158.1 256 76.5 337.5C48 366 32 404.7 32 445v19H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H360c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8V445c0-40.3-16-79-44.5-107.5L225.9 256l81.5-81.5C336 146 352 107.3 352 67V48h8c13.3 0 24-10.7 24-24s-10.7-24-24-24H24zM192 289.9l81.5 81.5C293 391 304 417.4 304 445v19H80V445c0-27.6 11-54 30.5-73.5L192 289.9zm0-67.9l-81.5-81.5C91 121 80 94.6 80 67V48H304V67c0 27.6-11 54-30.5 73.5L192 222.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hourglass-end": { + "aliases": { + "names": [ + "hourglass-3" + ], + "unicodes": { + "composite": [ + "231b" + ], + "secondary": [ + "10f253" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "hourglass done", + "minute", + "sand", + "stopwatch", + "time", + "timer" + ] + }, + "unicode": "f253", + "label": "Hourglass End", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM96 75V64H288V75c0 25.5-10.1 49.9-28.1 67.9L192 210.7l-67.9-67.9C106.1 124.9 96 100.4 96 75z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "hourglass-half": { + "aliases": { + "names": [ + "hourglass-2" + ], + "unicodes": { + "secondary": [ + "10f252" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "minute", + "sand", + "stopwatch", + "time" + ] + }, + "unicode": "f252", + "label": "Hourglass Half", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM96 75V64H288V75c0 19-5.6 37.4-16 53H112c-10.3-15.6-16-34-16-53zm16 309c3.5-5.3 7.6-10.3 12.1-14.9L192 301.3l67.9 67.9c4.6 4.6 8.6 9.6 12.2 14.9H112z" + }, + "regular": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 24C0 10.7 10.7 0 24 0H360c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8V67c0 40.3-16 79-44.5 107.5L225.9 256l81.5 81.5C336 366 352 404.7 352 445v19h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V445c0-40.3 16-79 44.5-107.5L158.1 256 76.5 174.5C48 146 32 107.3 32 67V48H24C10.7 48 0 37.3 0 24zM110.5 371.5c-3.9 3.9-7.5 8.1-10.7 12.5H284.2c-3.2-4.4-6.8-8.6-10.7-12.5L192 289.9l-81.5 81.5zM284.2 128C297 110.4 304 89 304 67V48H80V67c0 22.1 7 43.4 19.8 61H284.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "hourglass-start": { + "aliases": { + "names": [ + "hourglass-1" + ], + "unicodes": { + "secondary": [ + "10f251" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "minute", + "sand", + "stopwatch", + "time" + ] + }, + "unicode": "f251", + "label": "Hourglass Start", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM288 437v11H96V437c0-25.5 10.1-49.9 28.1-67.9L192 301.3l67.9 67.9c18 18 28.1 42.4 28.1 67.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house": { + "aliases": { + "names": [ + "home", + "home-alt", + "home-lg-alt" + ], + "unicodes": { + "composite": [ + "1f3e0", + "f80a", + "f80c" + ], + "primary": [ + "f80a", + "f80c" + ], + "secondary": [ + "10f015", + "10f80a", + "10f80c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "building", + "home", + "house", + "main", + "residence" + ] + }, + "unicode": "f015", + "label": "House", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c0 2.7-.2 5.4-.5 8.1V472c0 22.1-17.9 40-40 40H456c-1.1 0-2.2 0-3.3-.1c-1.4 .1-2.8 .1-4.2 .1H416 392c-22.1 0-40-17.9-40-40V448 384c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32v64 24c0 22.1-17.9 40-40 40H160 128.1c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2H104c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9 .1-2.8V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-chimney": { + "aliases": { + "names": [ + "home-lg" + ], + "unicodes": { + "composite": [ + "f80b" + ], + "primary": [ + "f80b" + ], + "secondary": [ + "10f80b" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "building", + "chimney", + "house", + "main", + "residence", + "smokestack" + ] + }, + "unicode": "e3af", + "label": "House Chimney", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L512 185V64c0-17.7-14.3-32-32-32H448c-17.7 0-32 14.3-32 32v36.7L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32v69.7c-.1 .9-.1 1.8-.1 2.8V472c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2H160h24c22.1 0 40-17.9 40-40V448 384c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v64 24c0 22.1 17.9 40 40 40h24 32.5c1.4 0 2.8 0 4.2-.1c1.1 .1 2.2 .1 3.3 .1h16c22.1 0 40-17.9 40-40V455.8c.3-2.6 .5-5.3 .5-8.1l-.7-160.2h32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-chimney-crack": { + "aliases": { + "names": [ + "house-damage" + ], + "unicodes": { + "secondary": [ + "10f6f1" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "devastation", + "disaster", + "earthquake", + "home", + "insurance" + ] + }, + "unicode": "f6f1", + "label": "House Chimney Crack", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H326.4L288 448l80.8-67.3c7.8-6.5 7.6-18.6-.4-24.9L250.6 263.2c-14.6-11.5-33.8 7-22.8 22L288 368l-85.5 71.2c-6.1 5-7.5 13.8-3.5 20.5L230.4 512H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V185l52.8 46.4c8 7 12 15 11 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-chimney-medical": { + "aliases": { + "names": [ + "clinic-medical" + ], + "unicodes": { + "secondary": [ + "10f7f2" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "general practitioner", + "hospital", + "infirmary", + "medicine", + "office", + "outpatient" + ] + }, + "unicode": "f7f2", + "label": "House Chimney Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V185l52.8 46.4c8 7 12 15 11 24zM272 192c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320h48c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H320V208c0-8.8-7.2-16-16-16H272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-chimney-user": { + "aliases": { + "unicodes": { + "secondary": [ + "10e065" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "home", + "isolation", + "quarantine" + ] + }, + "unicode": "e065", + "label": "House Chimney User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L512 185V64c0-17.7-14.3-32-32-32H448c-17.7 0-32 14.3-32 32v36.7L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64H448.5c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32zM288 160a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM176 400c0-44.2 35.8-80 80-80h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H192c-8.8 0-16-7.2-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-chimney-window": { + "aliases": { + "unicodes": { + "secondary": [ + "10e00d" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "building", + "family", + "home", + "residence" + ] + }, + "unicode": "e00d", + "label": "House Chimney Window", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V185l52.8 46.4c8 7 12 15 11 24zM248 192c-13.3 0-24 10.7-24 24v80c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V216c0-13.3-10.7-24-24-24H248z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "home", + "house", + "not affected", + "ok", + "okay" + ] + }, + "unicode": "e509", + "label": "House Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320.7 352c8.1-89.7 83.5-160 175.3-160c8.9 0 17.6 .7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32v69.7c-.1 .9-.1 1.8-.1 2.8V472c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2H160h24c22.1 0 40-17.9 40-40V448 384c0-17.7 14.3-32 32-32h64l.7 0zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "affected", + "home", + "house" + ] + }, + "unicode": "e50a", + "label": "House Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320.7 352c8.1-89.7 83.5-160 175.3-160c8.9 0 17.6 .7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32v69.7c-.1 .9-.1 1.8-.1 2.8V472c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2H160h24c22.1 0 40-17.9 40-40V448 384c0-17.7 14.3-32 32-32h64l.7 0zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "destroy", + "home", + "house" + ] + }, + "unicode": "e50b", + "label": "House Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320.7 352c8.1-89.7 83.5-160 175.3-160c8.9 0 17.6 .7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32v69.7c-.1 .9-.1 1.8-.1 2.8V472c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2H160h24c22.1 0 40-17.9 40-40V448 384c0-17.7 14.3-32 32-32h64l.7 0zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-crack": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "devastation", + "disaster", + "earthquake", + "home", + "insurance" + ] + }, + "unicode": "e3b1", + "label": "House Crack", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64H230.4l-31.3-52.2c-4.1-6.8-2.6-15.5 3.5-20.5L288 368l-60.2-82.8c-10.9-15 8.2-33.5 22.8-22l117.9 92.6c8 6.3 8.2 18.4 .4 24.9L288 448l38.4 64H448.5c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-fire": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "emergency", + "home" + ] + }, + "unicode": "e50c", + "label": "House Fire", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 350.1l0 1.9H256c-17.7 0-32 14.3-32 32v64 24c0 22.1-17.9 40-40 40H160 128.1c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2H104c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9 .1-2.8V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L447.3 128.1c-12.3-1-25 3-34.8 11.7c-35.4 31.6-65.6 67.7-87.3 102.8C304.3 276.5 288 314.9 288 350.1zM453.5 163.8c19.7 17.8 38.2 37 55.5 57.7c7.9-9.9 16.8-20.7 26.5-29.5c5.6-5.1 14.4-5.1 20 0c24.7 22.7 45.6 52.7 60.4 81.1c14.5 28 24.2 58.8 24.2 79C640 440 568.7 512 480 512c-89.7 0-160-72.1-160-159.8c0-26.4 12.7-60.7 32.4-92.6c20-32.4 48.1-66.1 81.4-95.8c2.8-2.5 6.4-3.8 10-3.7c3.5 0 7 1.3 9.8 3.8zM530 433c30-21 38-63 20-96c-2-4-4-8-7-12l-36 42s-58-74-62-79c-30 37-45 58-45 82c0 49 36 78 81 78c18 0 34-5 49-15z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camp", + "home" + ] + }, + "unicode": "e50d", + "label": "House Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 0c-17.7 0-32 14.3-32 32V192 512h64V192H624c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H512c0-17.7-14.3-32-32-32zM416 159L276.8 39.7c-12-10.3-29.7-10.3-41.7 0l-224 192C1 240.4-2.7 254.5 2 267.1S18.6 288 32 288H64V480c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v96c0 17.7 14.3 32 32 32h64.7l.2 0h-1V159z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-flood-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "damage", + "flood", + "water" + ] + }, + "unicode": "e50e", + "label": "House Flood Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M306.8 6.1C295.6-2 280.4-2 269.2 6.1l-176 128c-11.2 8.2-15.9 22.6-11.6 35.8S98.1 192 112 192h16v73c1.7 1 3.3 2 4.9 3.1c18 12.4 40.1 20.3 59.2 20.3c21.1 0 42-8.5 59.2-20.3c22.1-15.5 51.6-15.5 73.7 0c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c1.5-1 3-2 4.5-2.9l-.3-73.2H464c13.9 0 26.1-8.9 30.4-22.1s-.4-27.6-11.6-35.8l-176-128zM269.5 309.9C247 325.4 219.5 336 192 336c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 389.7 159 400 192 400c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.5-27.3-10.1-39.2-1.7l0 0C439.4 325.2 410.9 336 384 336c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0zM384 448c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-flood-water-circle-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "damage", + "flood", + "water" + ] + }, + "unicode": "e50f", + "label": "House Flood Water Circle Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 144A144 144 0 1 0 0 144a144 144 0 1 0 288 0zM140.7 76.7c6.2-6.2 16.4-6.2 22.6 0l56 56c6.2 6.2 6.2 16.4 0 22.6l-56 56c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L169.4 160H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h89.4L140.7 99.3c-6.2-6.2-6.2-16.4 0-22.6zM320 144c0 57.3-27.4 108.2-69.8 140.3c11.8-3.6 23-9.4 33-16.2c22.1-15.5 51.6-15.5 73.7 0c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.4 78.1 3.4c2.1 1.7 4.2 3.3 6.5 4.9l-.3-84.4H576c13.9 0 26.1-8.9 30.4-22.1s-.4-27.6-11.6-35.8l-176-128C407.6-2 392.4-2 381.2 6.1L301 64.4c12.1 23.9 19 50.9 19 79.6zm18.5 165.9c-11.1-7.9-25.9-7.9-37 0C279 325.4 251.5 336 224 336c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C158.5 389.7 191 400 224 400c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.5-27.3-10.1-39.2-1.7l0 0C471.4 325.2 442.9 336 416 336c-27.5 0-55-10.6-77.5-26.1zm0 112c-11.1-7.9-25.9-7.9-37 0C279 437.4 251.5 448 224 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C158.5 501.7 191 512 224 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C471.4 437.2 442.9 448 416 448c-27.5 0-55-10.6-77.5-26.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-laptop": { + "aliases": { + "names": [ + "laptop-house" + ], + "unicodes": { + "secondary": [ + "10e066" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "covid-19", + "device", + "office", + "remote", + "work from home" + ] + }, + "unicode": "e066", + "label": "House Laptop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M218.3 8.5c12.3-11.3 31.2-11.3 43.4 0l208 192c6.7 6.2 10.3 14.8 10.3 23.5H336c-19.1 0-36.3 8.4-48 21.7V208c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64V416H112c-26.5 0-48-21.5-48-48V256H32c-13.2 0-25-8.1-29.8-20.3s-1.6-26.2 8.1-35.2l208-192zM352 304V448H544V304H352zm-48-16c0-17.7 14.3-32 32-32H560c17.7 0 32 14.3 32 32V448h32c8.8 0 16 7.2 16 16c0 26.5-21.5 48-48 48H544 352 304c-26.5 0-48-21.5-48-48c0-8.8 7.2-16 16-16h32V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "home", + "house", + "lockdown", + "quarantine" + ] + }, + "unicode": "e510", + "label": "House Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M384 480c0 11.7 3.1 22.6 8.6 32H392c-22.1 0-40-17.9-40-40V448 384c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32v64 24c0 22.1-17.9 40-40 40H160 128.1c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2H104c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9 .1-2.8V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L490.7 166.3C447.2 181.7 416 223.2 416 272v24.6c-19.1 11.1-32 31.7-32 55.4V480zM528 240c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-medical": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "facility", + "general practitioner", + "health", + "hospital", + "infirmary", + "medicine", + "office", + "outpatient" + ] + }, + "unicode": "e3b2", + "label": "House Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64H448.5c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32zM256 208c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H320v48c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V320H208c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h48V208z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-medical-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clinic", + "hospital", + "not affected", + "ok", + "okay" + ] + }, + "unicode": "e511", + "label": "House Medical Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L522.1 193.9c-8.5-1.3-17.3-1.9-26.1-1.9c-54.7 0-103.5 24.9-135.8 64H320V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zm32 0a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L480 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-medical-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "clinic", + "hospital" + ] + }, + "unicode": "e512", + "label": "House Medical Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L522.1 193.9c-8.5-1.3-17.3-1.9-26.1-1.9c-54.7 0-103.5 24.9-135.8 64H320V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zM496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-medical-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clinic", + "destroy", + "hospital" + ] + }, + "unicode": "e513", + "label": "House Medical Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L522.1 193.9c-8.5-1.3-17.3-1.9-26.1-1.9c-54.7 0-103.5 24.9-135.8 64H320V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zM496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm22.6 144l36.7-36.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L496 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L473.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L496 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L518.6 368z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-medical-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clinic", + "hospital", + "mash" + ] + }, + "unicode": "e514", + "label": "House Medical Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 0c17.7 0 32 14.3 32 32H624c8.8 0 16 7.2 16 16V176c0 8.8-7.2 16-16 16H512V512H448V192 32c0-17.7 14.3-32 32-32zM276.8 39.7L416 159V512h1l-.2 0H96c-17.7 0-32-14.3-32-32V288H32c-13.4 0-25.4-8.3-30-20.9s-1-26.7 9.2-35.4l224-192c12-10.3 29.7-10.3 41.7 0zM224 208v48H176c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320h48c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H288V208c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-signal": { + "aliases": { + "unicodes": { + "secondary": [ + "10e012" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "building", + "connect", + "family", + "home", + "residence", + "smart home", + "wifi" + ] + }, + "unicode": "e012", + "label": "House Signal", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M357.7 8.5c-12.3-11.3-31.2-11.3-43.4 0l-208 192c-9.4 8.6-12.7 22-8.5 34c87.1 25.3 155.6 94.2 180.3 181.6H464c26.5 0 48-21.5 48-48V256h32c13.2 0 25-8.1 29.8-20.3s1.6-26.2-8.1-35.2l-208-192zM288 208c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H304c-8.8 0-16-7.2-16-16V208zM24 256c-13.3 0-24 10.7-24 24s10.7 24 24 24c101.6 0 184 82.4 184 184c0 13.3 10.7 24 24 24s24-10.7 24-24c0-128.1-103.9-232-232-232zm8 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM0 376c0 13.3 10.7 24 24 24c48.6 0 88 39.4 88 88c0 13.3 10.7 24 24 24s24-10.7 24-24c0-75.1-60.9-136-136-136c-13.3 0-24 10.7-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-tsunami": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "damage", + "flood", + "tidal wave", + "wave" + ] + }, + "unicode": "e515", + "label": "House Tsunami", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M80.8 136.5C104.9 93.8 152.6 64 209 64c16.9 0 33.1 2.7 48.2 7.7c16.8 5.5 34.9-3.6 40.4-20.4s-3.6-34.9-20.4-40.4C255.8 3.8 232.8 0 209 0C95.2 0 0 88 0 200c0 91.6 53.5 172.1 142.2 194.1c13.4 3.8 27.5 5.9 42.2 5.9c.7 0 1.4 0 2.1-.1c1.8 0 3.7 .1 5.5 .1l0 0c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.5-27.3-10.1-39.2-1.7l0 0C439.4 325.2 410.9 336 384 336c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0c-22.4 15.5-49.9 26.1-77.4 26.1c0 0-.1 0-.1 0c-12.4 0-24-1.5-34.9-4.3C121.6 320.2 96 287 96 248c0-48.5 39.5-88 88.4-88c13.5 0 26.1 3 37.5 8.3c16 7.5 35.1 .6 42.5-15.5s.6-35.1-15.5-42.5C229.3 101.1 207.4 96 184.4 96c-40 0-76.4 15.4-103.6 40.5zm252-18.1c-8.1 6-12.8 15.5-12.8 25.6V265c1.6 1 3.3 2 4.8 3.1c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.3 78.1 3.4c10.6 8.8 24.2 15.6 37.3 18.6c5.8 1.4 11.2 3.4 16.2 6.2c.7-2.7 1.1-5.5 1.1-8.4l-.4-144c0-10-4.7-19.4-12.7-25.5l-95.5-72c-11.4-8.6-27.1-8.6-38.5 0l-96 72zM384 448c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "house-user": { + "aliases": { + "names": [ + "home-user" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "house" + ] + }, + "unicode": "e1b0", + "label": "House User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24zM352 224a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zm-96 96c-44.2 0-80 35.8-80 80c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16c0-44.2-35.8-80-80-80H256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "houzz": { + "changes": [ + "4.4.0", + "5.0.0", + "5.0.9", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f27c", + "label": "Houzz", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M275.9 330.7H171.3V480H17V32h109.5v104.5l305.1 85.6V480H275.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hryvnia-sign": { + "aliases": { + "names": [ + "hryvnia" + ], + "unicodes": { + "composite": [ + "20b4" + ], + "secondary": [ + "10f6f2" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Hryvnia Sign", + "currency" + ] + }, + "unicode": "f6f2", + "label": "Hryvnia Sign", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M121.9 116.2C138.3 103.1 158.7 96 179.6 96H223c27.1 0 49 21.9 49 49c0 11.5-4 22.4-11.1 31H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H155.5l-50.6 28.9c-1.7 1-3.4 2-5.1 3.1H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H52.3c-2.8 9.9-4.3 20.4-4.3 31c0 62.4 50.6 113 113 113h43.4c35.5 0 70-12.1 97.7-34.3L308 441c13.8-11 16-31.2 5-45s-31.2-16-45-5l-5.9 4.7c-16.4 13.1-36.7 20.2-57.7 20.2H161c-27.1 0-49-21.9-49-49c0-11.5 4-22.4 11.1-31H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H228.5l50.6-28.9c1.7-1 3.4-2 5.1-3.1H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H331.7c2.8-10 4.3-20.4 4.3-31c0-62.4-50.6-113-113-113H179.6c-35.5 0-70 12.1-97.7 34.3L76 71c-13.8 11-16 31.2-5 45s31.2 16 45 5l5.9-4.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "html5": { + "changes": [ + "3.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f13b", + "label": "HTML 5 Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hubspot": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b2", + "label": "HubSpot", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "hurricane": { + "aliases": { + "unicodes": { + "secondary": [ + "10f751" + ] + } + }, + "changes": [ + "5.5.0", + "5.10.1", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "coriolis effect", + "eye", + "storm", + "tropical cyclone", + "typhoon" + ] + }, + "unicode": "f751", + "label": "Hurricane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 208C0 104.4 75.7 18.5 174.9 2.6C184 1.2 192 8.6 192 17.9V81.2c0 8.4 6.5 15.3 14.7 16.5C307 112.5 384 199 384 303.4c0 103.6-75.7 189.5-174.9 205.4c-9.2 1.5-17.1-5.9-17.1-15.2V430.2c0-8.4-6.5-15.3-14.7-16.5C77 398.9 0 312.4 0 208zm288 48A96 96 0 1 0 96 256a96 96 0 1 0 192 0zm-96-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "i": { + "aliases": { + "unicodes": { + "composite": [ + "69" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter I", + "Latin Small Letter I", + "letter" + ] + }, + "unicode": "49", + "label": "I", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96h96V416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H192V96h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "i-cursor": { + "aliases": { + "unicodes": { + "secondary": [ + "10f246" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "editing", + "i-beam", + "type", + "writing" + ] + }, + "unicode": "f246", + "label": "I Cursor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M.1 29.3C-1.4 47 11.7 62.4 29.3 63.9l8 .7C70.5 67.3 96 95 96 128.3V224H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H96v95.7c0 33.3-25.5 61-58.7 63.8l-8 .7C11.7 449.6-1.4 465 .1 482.7s16.9 30.7 34.5 29.2l8-.7c34.1-2.8 64.2-18.9 85.4-42.9c21.2 24 51.2 40.1 85.4 42.9l8 .7c17.6 1.5 33.1-11.6 34.5-29.2s-11.6-33.1-29.2-34.5l-8-.7C185.5 444.7 160 417 160 383.7V288h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H160V128.3c0-33.3 25.5-61 58.7-63.8l8-.7c17.6-1.5 30.7-16.9 29.2-34.5S239-1.4 221.3 .1l-8 .7C179.2 3.6 149.2 19.7 128 43.7c-21.2-24-51.2-40-85.4-42.9l-8-.7C17-1.4 1.6 11.7 .1 29.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ice-cream": { + "aliases": { + "unicodes": { + "composite": [ + "1f368" + ], + "secondary": [ + "10f810" + ] + } + }, + "changes": [ + "5.7.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chocolate", + "cone", + "cream", + "dessert", + "frozen", + "ice", + "ice cream", + "scoop", + "sorbet", + "sweet", + "vanilla", + "yogurt" + ] + }, + "unicode": "f810", + "label": "Ice Cream", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M335.1 160c.6-5.3 .9-10.6 .9-16C336 64.5 271.5 0 192 0S48 64.5 48 144c0 5.4 .3 10.7 .9 16H48c-26.5 0-48 21.5-48 48s21.5 48 48 48h53.5 181H336c26.5 0 48-21.5 48-48s-21.5-48-48-48h-.9zM64 288L168.8 497.7c4.4 8.8 13.3 14.3 23.2 14.3s18.8-5.5 23.2-14.3L320 288H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "icicles": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ad" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "frozen", + "hanging", + "ice", + "seasonal", + "sharp" + ] + }, + "unicode": "f7ad", + "label": "Icicles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M75.8 304.8L1 35.7c-.7-2.5-1-5-1-7.5C0 12.6 12.6 0 28.2 0H482.4C498.8 0 512 13.2 512 29.6c0 1.6-.1 3.3-.4 4.9L434.6 496.1c-1.5 9.2-9.5 15.9-18.8 15.9c-9.2 0-17.1-6.6-18.7-15.6L336 160 307.2 303.9c-1.9 9.3-10.1 16.1-19.6 16.1c-9.2 0-17.2-6.2-19.4-15.1L240 192 210.6 368.2c-1.5 9.1-9.4 15.8-18.6 15.8s-17.1-6.7-18.6-15.8L144 192 115.9 304.3c-2.3 9.2-10.6 15.7-20.1 15.7c-9.3 0-17.5-6.2-20-15.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "icons": { + "aliases": { + "names": [ + "heart-music-camera-bolt" + ], + "unicodes": { + "secondary": [ + "10f86d" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bolt", + "emoji", + "heart", + "image", + "music", + "photo", + "symbols" + ] + }, + "unicode": "f86d", + "label": "Icons", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M500.3 7.3C507.7 13.3 512 22.4 512 32V176c0 26.5-28.7 48-64 48s-64-21.5-64-48s28.7-48 64-48V71L352 90.2V208c0 26.5-28.7 48-64 48s-64-21.5-64-48s28.7-48 64-48V64c0-15.3 10.8-28.4 25.7-31.4l160-32c9.4-1.9 19.1 .6 26.6 6.6zM74.7 304l11.8-17.8c5.9-8.9 15.9-14.2 26.6-14.2h61.7c10.7 0 20.7 5.3 26.6 14.2L213.3 304H240c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V352c0-26.5 21.5-48 48-48H74.7zM192 408a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM478.7 278.3L440.3 368H496c6.7 0 12.6 4.1 15 10.4s.6 13.3-4.4 17.7l-128 112c-5.6 4.9-13.9 5.3-19.9 .9s-8.2-12.4-5.3-19.2L391.7 400H336c-6.7 0-12.6-4.1-15-10.4s-.6-13.3 4.4-17.7l128-112c5.6-4.9 13.9-5.3 19.9-.9s8.2 12.4 5.3 19.2zm-339-59.2c-6.5 6.5-17 6.5-23 0L19.9 119.2c-28-29-26.5-76.9 5-103.9c27-23.5 68.4-19 93.4 6.5l10 10.5 9.5-10.5c25-25.5 65.9-30 93.9-6.5c31 27 32.5 74.9 4.5 103.9l-96.4 99.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "id-badge": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2c1" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "contact", + "identification", + "license", + "profile" + ] + }, + "unicode": "f2c1", + "label": "Id Badge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zm96 320h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-32-96a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM144 64h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M256 48V64c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H256zM0 64C0 28.7 28.7 0 64 0H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM160 320h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-32-96a64 64 0 1 1 128 0 64 64 0 1 1 -128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "id-card": { + "aliases": { + "names": [ + "drivers-license" + ], + "unicodes": { + "composite": [ + "f2c3" + ], + "secondary": [ + "10f2c2" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "5.8.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contact", + "demographics", + "document", + "identification", + "issued", + "profile", + "registration" + ] + }, + "unicode": "f2c2", + "label": "Id Card", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 96l576 0c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96zm0 32V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128H0zM64 405.3c0-29.5 23.9-53.3 53.3-53.3H234.7c29.5 0 53.3 23.9 53.3 53.3c0 5.9-4.8 10.7-10.7 10.7H74.7c-5.9 0-10.7-4.8-10.7-10.7zM176 192a64 64 0 1 1 0 128 64 64 0 1 1 0-128zm176 16c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16z" + }, + "regular": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M528 160V416c0 8.8-7.2 16-16 16H320c0-44.2-35.8-80-80-80H176c-44.2 0-80 35.8-80 80H64c-8.8 0-16-7.2-16-16V160H528zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM272 256a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zm104-48c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H376zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H376z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "id-card-clip": { + "aliases": { + "names": [ + "id-card-alt" + ], + "unicodes": { + "secondary": [ + "10f47f" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contact", + "demographics", + "document", + "identification", + "issued", + "profile" + ] + }, + "unicode": "f47f", + "label": "Id Card Clip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M256 0h64c17.7 0 32 14.3 32 32V96c0 17.7-14.3 32-32 32H256c-17.7 0-32-14.3-32-32V32c0-17.7 14.3-32 32-32zM64 64H192v48c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48V64H512c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128C0 92.7 28.7 64 64 64zM176 437.3c0 5.9 4.8 10.7 10.7 10.7H389.3c5.9 0 10.7-4.8 10.7-10.7c0-29.5-23.9-53.3-53.3-53.3H229.3c-29.5 0-53.3 23.9-53.3 53.3zM288 352a64 64 0 1 0 0-128 64 64 0 1 0 0 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ideal": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e013", + "label": "iDeal", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M125.61,165.48a49.07,49.07,0,1,0,49.06,49.06A49.08,49.08,0,0,0,125.61,165.48ZM86.15,425.84h78.94V285.32H86.15Zm151.46-211.6c0-20-10-22.53-18.74-22.53H204.82V237.5h14.05C228.62,237.5,237.61,234.69,237.61,214.24Zm201.69,46V168.93h22.75V237.5h33.69C486.5,113.08,388.61,86.19,299.67,86.19H204.84V169h14c25.6,0,41.5,17.35,41.5,45.26,0,28.81-15.52,46-41.5,46h-14V425.88h94.83c144.61,0,194.94-67.16,196.72-165.64Zm-109.75,0H273.3V169h54.43v22.73H296v10.58h30V225H296V237.5h33.51Zm74.66,0-5.16-17.67H369.31l-5.18,17.67H340.47L368,168.92h32.35l27.53,91.34ZM299.65,32H32V480H299.65c161.85,0,251-79.73,251-224.52C550.62,172,518,32,299.65,32Zm0,426.92H53.07V53.07H299.65c142.1,0,229.9,64.61,229.9,202.41C529.55,389.57,448.55,458.92,299.65,458.92Zm83.86-264.85L376,219.88H392.4l-7.52-25.81Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "igloo": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ae" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dome", + "dwelling", + "eskimo", + "home", + "house", + "ice", + "snow" + ] + }, + "unicode": "f7ae", + "label": "Igloo", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M320 33.8V160H48.5C100.2 82.8 188.1 32 288 32c10.8 0 21.5 .6 32 1.8zM352 160V39.1C424.9 55.7 487.2 99.8 527.5 160H352zM29.9 192H96V320H0c0-46 10.8-89.4 29.9-128zM192 320H128V192H448V320H384v32H576v80c0 26.5-21.5 48-48 48H352V352c0-35.3-28.7-64-64-64s-64 28.7-64 64V480H48c-26.5 0-48-21.5-48-48V352H192V320zm288 0V192h66.1c19.2 38.6 29.9 82 29.9 128H480z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "image": { + "aliases": { + "unicodes": { + "secondary": [ + "10f03e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "album", + "landscape", + "photo", + "picture" + ] + }, + "unicode": "f03e", + "label": "Image", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM323.8 202.5c-4.5-6.6-11.9-10.5-19.8-10.5s-15.4 3.9-19.8 10.5l-87 127.6L170.7 297c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6h96 32H424c8.9 0 17.1-4.9 21.2-12.8s3.6-17.4-1.4-24.7l-120-176zM112 192a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 80c8.8 0 16 7.2 16 16V415.8l-5-6.5-136-176c-4.5-5.9-11.6-9.3-19-9.3s-14.4 3.4-19 9.3L202 340.7l-30.5-42.7C167 291.7 159.8 288 152 288s-15 3.7-19.5 10.1l-80 112L48 416.3l0-.3V96c0-8.8 7.2-16 16-16H448zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm80 192a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "image-portrait": { + "aliases": { + "names": [ + "portrait" + ], + "unicodes": { + "secondary": [ + "10f3e0" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "id", + "image", + "photo", + "picture", + "selfie" + ] + }, + "unicode": "f3e0", + "label": "Image Portrait", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 64c0-35.3-28.7-64-64-64H64C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64l0-384zM128 192a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM80 356.6c0-37.9 30.7-68.6 68.6-68.6h86.9c37.9 0 68.6 30.7 68.6 68.6c0 15.1-12.3 27.4-27.4 27.4H107.4C92.3 384 80 371.7 80 356.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "images": { + "aliases": { + "unicodes": { + "secondary": [ + "10f302" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "album", + "landscape", + "photo", + "picture" + ] + }, + "unicode": "f302", + "label": "Images", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M160 32c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H160zM396 138.7l96 144c4.9 7.4 5.4 16.8 1.2 24.6S480.9 320 472 320H328 280 200c-9.2 0-17.6-5.3-21.6-13.6s-2.9-18.2 2.9-25.4l64-80c4.6-5.7 11.4-9 18.7-9s14.2 3.3 18.7 9l17.3 21.6 56-84C360.5 132 368 128 376 128s15.5 4 20 10.7zM192 128a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM48 120c0-13.3-10.7-24-24-24S0 106.7 0 120V344c0 75.1 60.9 136 136 136H456c13.3 0 24-10.7 24-24s-10.7-24-24-24H136c-48.6 0-88-39.4-88-88V120z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M160 80H512c8.8 0 16 7.2 16 16V320c0 8.8-7.2 16-16 16H490.8L388.1 178.9c-4.4-6.8-12-10.9-20.1-10.9s-15.7 4.1-20.1 10.9l-52.2 79.8-12.4-16.9c-4.5-6.2-11.7-9.8-19.4-9.8s-14.8 3.6-19.4 9.8L175.6 336H160c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16zM96 96V320c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H160c-35.3 0-64 28.7-64 64zM48 120c0-13.3-10.7-24-24-24S0 106.7 0 120V344c0 75.1 60.9 136 136 136H456c13.3 0 24-10.7 24-24s-10.7-24-24-24H136c-48.6 0-88-39.4-88-88V120zm208 24a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "imdb": { + "changes": [ + "4.7.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2d8", + "label": "IMDB", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M89.5 323.6H53.93V186.2H89.5V323.6zM156.1 250.5L165.2 186.2H211.5V323.6H180.5V230.9L167.1 323.6H145.8L132.8 232.9L132.7 323.6H101.5V186.2H147.6C148.1 194.5 150.4 204.3 151.9 215.6L156.1 250.5zM223.7 323.6V186.2H250.3C267.3 186.2 277.3 187.1 283.3 188.6C289.4 190.3 294 192.8 297.2 196.5C300.3 199.8 302.3 203.1 303 208.5C303.9 212.9 304.4 221.6 304.4 234.7V282.9C304.4 295.2 303.7 303.4 302.5 307.6C301.4 311.7 299.4 315 296.5 317.3C293.7 319.7 290.1 321.4 285.8 322.3C281.6 323.1 275.2 323.6 266.7 323.6H223.7zM259.2 209.7V299.1C264.3 299.1 267.5 298.1 268.6 296.8C269.7 294.8 270.4 289.2 270.4 280.1V226.8C270.4 220.6 270.3 216.6 269.7 214.8C269.4 213 268.5 211.8 267.1 210.1C265.7 210.1 263 209.7 259.2 209.7V209.7zM316.5 323.6V186.2H350.6V230.1C353.5 227.7 356.7 225.2 360.1 223.5C363.7 222 368.9 221.1 372.9 221.1C377.7 221.1 381.8 221.9 385.2 223.3C388.6 224.8 391.2 226.8 393.2 229.5C394.9 232.1 395.9 234.8 396.3 237.3C396.7 239.9 396.1 245.3 396.1 253.5V292.1C396.1 300.3 396.3 306.4 395.3 310.5C394.2 314.5 391.5 318.1 387.5 320.1C383.4 324 378.6 325.4 372.9 325.4C368.9 325.4 363.7 324.5 360.2 322.9C356.7 321.1 353.5 318.4 350.6 314.9L348.5 323.6L316.5 323.6zM361.6 302.9C362.3 301.1 362.6 296.9 362.6 290.4V255C362.6 249.4 362.3 245.5 361.5 243.8C360.8 241.9 357.8 241.1 355.7 241.1C353.7 241.1 352.3 241.9 351.6 243.4C351 244.9 350.6 248.8 350.6 255V291.4C350.6 297.5 351 301.4 351.8 303C352.4 304.7 353.9 305.5 355.9 305.5C358.1 305.5 360.1 304.7 361.6 302.9L361.6 302.9zM418.4 32.04C434.1 33.27 447.1 47.28 447.1 63.92V448.1C447.1 464.5 435.2 478.5 418.9 479.1C418.6 479.1 418.4 480 418.1 480H29.88C29.6 480 29.32 479.1 29.04 479.9C13.31 478.5 1.093 466.1 0 449.7L.0186 61.78C1.081 45.88 13.82 33.09 30.26 31.1H417.7C417.9 31.1 418.2 32.01 418.4 32.04L418.4 32.04zM30.27 41.26C19 42.01 10.02 51.01 9.257 62.4V449.7C9.63 455.1 11.91 460.2 15.7 464C19.48 467.9 24.51 470.3 29.89 470.7H418.1C429.6 469.7 438.7 459.1 438.7 448.1V63.91C438.7 58.17 436.6 52.65 432.7 48.45C428.8 44.24 423.4 41.67 417.7 41.26L30.27 41.26z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "inbox": { + "aliases": { + "unicodes": { + "secondary": [ + "10f01c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "desk", + "email", + "mail", + "message" + ] + }, + "unicode": "f01c", + "label": "Inbox", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M121 32C91.6 32 66 52 58.9 80.5L1.9 308.4C.6 313.5 0 318.7 0 323.9V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V323.9c0-5.2-.6-10.4-1.9-15.5l-57-227.9C446 52 420.4 32 391 32H121zm0 64H391l48 192H387.8c-12.1 0-23.2 6.8-28.6 17.7l-14.3 28.6c-5.4 10.8-16.5 17.7-28.6 17.7H195.8c-12.1 0-23.2-6.8-28.6-17.7l-14.3-28.6c-5.4-10.8-16.5-17.7-28.6-17.7H73L121 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "indent": { + "aliases": { + "unicodes": { + "secondary": [ + "10f03c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "align", + "justify", + "paragraph", + "tab" + ] + }, + "unicode": "f03c", + "label": "Indent", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64zM192 192c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32zm32 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zM0 448c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM127.8 268.6L25.8 347.9C15.3 356.1 0 348.6 0 335.3V176.7c0-13.3 15.3-20.8 25.8-12.6l101.9 79.3c8.2 6.4 8.2 18.9 0 25.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "indian-rupee-sign": { + "aliases": { + "names": [ + "indian-rupee", + "inr" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Indian Rupee Sign", + "currency" + ] + }, + "unicode": "e1bc", + "label": "Indian Rupee Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H96h16H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H231.8c9.6 14.4 16.7 30.6 20.7 48H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H252.4c-13.2 58.3-61.9 103.2-122.2 110.9L274.6 422c14.4 10.3 17.7 30.3 7.4 44.6s-30.3 17.7-44.6 7.4L13.4 314C2.1 306-2.7 291.5 1.5 278.2S18.1 256 32 256h80c32.8 0 61-19.7 73.3-48H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H185.3C173 115.7 144.8 96 112 96H96 32C14.3 96 0 81.7 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "industry": { + "aliases": { + "unicodes": { + "secondary": [ + "10f275" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "factory", + "industrial", + "manufacturing", + "mill", + "warehouse" + ] + }, + "unicode": "f275", + "label": "Industry", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64V304v48 80c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V304 152.2c0-18.2-19.4-29.7-35.4-21.1L320 215.4V152.2c0-18.2-19.4-29.7-35.4-21.1L128 215.4V64c0-17.7-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "infinity": { + "aliases": { + "unicodes": { + "composite": [ + "221e", + "267e" + ], + "secondary": [ + "10f534" + ] + } + }, + "changes": [ + "5.0.13", + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Infinity", + "eternity", + "forever", + "infinity", + "math", + "unbounded", + "universal" + ] + }, + "unicode": "f534", + "label": "Infinity", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 241.1C0 161 65 96 145.1 96c38.5 0 75.4 15.3 102.6 42.5L320 210.7l72.2-72.2C419.5 111.3 456.4 96 494.9 96C575 96 640 161 640 241.1v29.7C640 351 575 416 494.9 416c-38.5 0-75.4-15.3-102.6-42.5L320 301.3l-72.2 72.2C220.5 400.7 183.6 416 145.1 416C65 416 0 351 0 270.9V241.1zM274.7 256l-72.2-72.2c-15.2-15.2-35.9-23.8-57.4-23.8C100.3 160 64 196.3 64 241.1v29.7c0 44.8 36.3 81.1 81.1 81.1c21.5 0 42.2-8.5 57.4-23.8L274.7 256zm90.5 0l72.2 72.2c15.2 15.2 35.9 23.8 57.4 23.8c44.8 0 81.1-36.3 81.1-81.1V241.1c0-44.8-36.3-81.1-81.1-81.1c-21.5 0-42.2 8.5-57.4 23.8L365.3 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "info": { + "aliases": { + "unicodes": { + "secondary": [ + "10f129" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "details", + "help", + "information", + "more", + "support" + ] + }, + "unicode": "f129", + "label": "Info", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 192, + 512 + ], + "width": 192, + "height": 512, + "path": "M48 80a48 48 0 1 1 96 0A48 48 0 1 1 48 80zM0 224c0-17.7 14.3-32 32-32H96c17.7 0 32 14.3 32 32V448h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H64V256H32c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "instagram": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f16d", + "label": "Instagram", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "instalod": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e081", + "label": "InstaLOD", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M153.384,480H387.113L502.554,275.765,204.229,333.211ZM504.726,240.078,387.113,32H155.669L360.23,267.9ZM124.386,48.809,7.274,256,123.236,461.154,225.627,165.561Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "intercom": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "customer", + "messenger" + ] + }, + "unicode": "f7af", + "label": "Intercom", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zm-108.3 82.1c0-19.8 29.9-19.8 29.9 0v199.5c0 19.8-29.9 19.8-29.9 0V114.1zm-74.6-7.5c0-19.8 29.9-19.8 29.9 0v216.5c0 19.8-29.9 19.8-29.9 0V106.6zm-74.7 7.5c0-19.8 29.9-19.8 29.9 0v199.5c0 19.8-29.9 19.8-29.9 0V114.1zM59.7 144c0-19.8 29.9-19.8 29.9 0v134.3c0 19.8-29.9 19.8-29.9 0V144zm323.4 227.8c-72.8 63-241.7 65.4-318.1 0-15-12.8 4.4-35.5 19.4-22.7 65.9 55.3 216.1 53.9 279.3 0 14.9-12.9 34.3 9.8 19.4 22.7zm5.2-93.5c0 19.8-29.9 19.8-29.9 0V144c0-19.8 29.9-19.8 29.9 0v134.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "internet-explorer": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "ie" + ] + }, + "unicode": "f26b", + "label": "Internet-explorer", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "invision": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "design", + "interface" + ] + }, + "unicode": "f7b0", + "label": "InVision", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M407.4 32H40.6C18.2 32 0 50.2 0 72.6v366.8C0 461.8 18.2 480 40.6 480h366.8c22.4 0 40.6-18.2 40.6-40.6V72.6c0-22.4-18.2-40.6-40.6-40.6zM176.1 145.6c.4 23.4-22.4 27.3-26.6 27.4-14.9 0-27.1-12-27.1-27 .1-35.2 53.1-35.5 53.7-.4zM332.8 377c-65.6 0-34.1-74-25-106.6 14.1-46.4-45.2-59-59.9.7l-25.8 103.3H177l8.1-32.5c-31.5 51.8-94.6 44.4-94.6-4.3.1-14.3.9-14 23-104.1H81.7l9.7-35.6h76.4c-33.6 133.7-32.6 126.9-32.9 138.2 0 20.9 40.9 13.5 57.4-23.2l19.8-79.4h-32.3l9.7-35.6h68.8l-8.9 40.5c40.5-75.5 127.9-47.8 101.8 38-14.2 51.1-14.6 50.7-14.9 58.8 0 15.5 17.5 22.6 31.8-16.9L386 325c-10.5 36.7-29.4 52-53.2 52z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ioxhost": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f208", + "label": "ioxhost", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "italic": { + "aliases": { + "unicodes": { + "secondary": [ + "10f033" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "emphasis", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f033", + "label": "Italic", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M128 64c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H293.3L160 416h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H90.7L224 96H160c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "itch-io": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f83a", + "label": "itch.io", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M71.92 34.77C50.2 47.67 7.4 96.84 7 109.73v21.34c0 27.06 25.29 50.84 48.25 50.84 27.57 0 50.54-22.85 50.54-50 0 27.12 22.18 50 49.76 50s49-22.85 49-50c0 27.12 23.59 50 51.16 50h.5c27.57 0 51.16-22.85 51.16-50 0 27.12 21.47 50 49 50s49.76-22.85 49.76-50c0 27.12 23 50 50.54 50 23 0 48.25-23.78 48.25-50.84v-21.34c-.4-12.9-43.2-62.07-64.92-75C372.56 32.4 325.76 32 256 32S91.14 33.1 71.92 34.77zm132.32 134.39c-22 38.4-77.9 38.71-99.85.25-13.17 23.14-43.17 32.07-56 27.66-3.87 40.15-13.67 237.13 17.73 269.15 80 18.67 302.08 18.12 379.76 0 31.65-32.27 21.32-232 17.75-269.15-12.92 4.44-42.88-4.6-56-27.66-22 38.52-77.85 38.1-99.85-.24-7.1 12.49-23.05 28.94-51.76 28.94a57.54 57.54 0 0 1-51.75-28.94zm-41.58 53.77c16.47 0 31.09 0 49.22 19.78a436.91 436.91 0 0 1 88.18 0C318.22 223 332.85 223 349.31 223c52.33 0 65.22 77.53 83.87 144.45 17.26 62.15-5.52 63.67-33.95 63.73-42.15-1.57-65.49-32.18-65.49-62.79-39.25 6.43-101.93 8.79-155.55 0 0 30.61-23.34 61.22-65.49 62.79-28.42-.06-51.2-1.58-33.94-63.73 18.67-67 31.56-144.45 83.88-144.45zM256 270.79s-44.38 40.77-52.35 55.21l29-1.17v25.32c0 1.55 21.34.16 23.33.16 11.65.54 23.31 1 23.31-.16v-25.28l29 1.17c-8-14.48-52.35-55.24-52.35-55.24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "itunes": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b4", + "label": "iTunes", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "itunes-note": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b5", + "label": "Itunes Note", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "j": { + "aliases": { + "unicodes": { + "composite": [ + "6a" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter J", + "Latin Small Letter J", + "letter" + ] + }, + "unicode": "4a", + "label": "J", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M288 32c17.7 0 32 14.3 32 32V320c0 88.4-71.6 160-160 160S0 408.4 0 320V288c0-17.7 14.3-32 32-32s32 14.3 32 32v32c0 53 43 96 96 96s96-43 96-96V64c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "jar": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "jam", + "jelly", + "storage" + ] + }, + "unicode": "e516", + "label": "Jar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32 32C32 14.3 46.3 0 64 0H256c17.7 0 32 14.3 32 32s-14.3 32-32 32H64C46.3 64 32 49.7 32 32zM0 160c0-35.3 28.7-64 64-64H256c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V160zm96 64c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32H224c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32H96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "jar-wheat": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flour", + "storage" + ] + }, + "unicode": "e517", + "label": "Jar Wheat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32 32C32 14.3 46.3 0 64 0H256c17.7 0 32 14.3 32 32s-14.3 32-32 32H64C46.3 64 32 49.7 32 32zM0 160c0-35.3 28.7-64 64-64H256c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V160zm112 0H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 198 90 224 122.2 224H144h32 21.8c32.1 0 58.2-26 58.2-58.2c0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7c-11.7-13.3-28.9-21.7-48-21.7zm48 117.7c-11.7-13.3-28.9-21.7-48-21.7H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 294 90 320 122.2 320H144h32 21.8c32.1 0 58.2-26 58.2-58.2c0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7zM112 352H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 390 90 416 122.2 416H144v32c0 8.8 7.2 16 16 16s16-7.2 16-16V416h21.8c32.1 0 58.2-26 58.2-58.2c0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7c-11.7-13.3-28.9-21.7-48-21.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "java": { + "changes": [ + "5.0.10", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4e4", + "label": "Java", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M277.74 312.9c9.8-6.7 23.4-12.5 23.4-12.5s-38.7 7-77.2 10.2c-47.1 3.9-97.7 4.7-123.1 1.3-60.1-8 33-30.1 33-30.1s-36.1-2.4-80.6 19c-52.5 25.4 130 37 224.5 12.1zm-85.4-32.1c-19-42.7-83.1-80.2 0-145.8C296 53.2 242.84 0 242.84 0c21.5 84.5-75.6 110.1-110.7 162.6-23.9 35.9 11.7 74.4 60.2 118.2zm114.6-176.2c.1 0-175.2 43.8-91.5 140.2 24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3zm-6.1 270.5a12.19 12.19 0 0 1-2 2.6c128.3-33.7 81.1-118.9 19.8-97.3a17.33 17.33 0 0 0-8.2 6.3 70.45 70.45 0 0 1 11-3c31-6.5 75.5 41.5-20.6 91.4zM348 437.4s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2C232.84 509.4 401 461.3 348 437.4zM124.44 396c-78.7 22 47.9 67.4 148.1 24.5a185.89 185.89 0 0 1-28.2-13.8c-44.7 8.5-65.4 9.1-106 4.5-33.5-3.8-13.9-15.2-13.9-15.2zm179.8 97.2c-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6 92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7zM260.64 353c-59.2 11.4-93.5 11.1-136.8 6.6-33.5-3.5-11.6-19.7-11.6-19.7-86.8 28.8 48.2 61.4 169.5 25.9a60.37 60.37 0 0 1-21.1-12.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "jedi": { + "aliases": { + "unicodes": { + "secondary": [ + "10f669" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crest", + "force", + "sith", + "skywalker", + "star wars", + "yoda" + ] + }, + "unicode": "f669", + "label": "Jedi", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M230 315.7l-21.2-31.9c-2.1-3.2-1.7-7.4 1-10.1s6.9-3.1 10.1-1l29.5 19.7c2.1 1.4 4.9 0 5-2.6L263.7 8c.1-4.5 3.8-8 8.3-8s8.1 3.5 8.3 8l9.4 281.9c.1 2.5 2.9 3.9 5 2.6l29.5-19.7c3.2-2.1 7.4-1.7 10.1 1s3.1 6.9 1 10.1L314 315.7c-1.3 1.9-.2 4.5 2 4.9l37.6 7.5c3.7 .7 6.4 4 6.4 7.8s-2.7 7.1-6.4 7.8L316 351.4c-2.2 .4-3.3 3-2 4.9l21.2 31.9c2.1 3.2 1.7 7.4-1 10.1s-6.9 3.1-10.1 1l-26.3-17.6c-2.2-1.4-5.1 .2-5 2.8l2.1 61.5C354.6 435.2 400 382.9 400 320c0-37-15.7-70.4-40.8-93.7c-7-6.5-6.5-18.6 1-24.4C394.1 175.5 416 134.3 416 88c0-16.8-2.9-33-8.2-48c-4.6-13 10.2-30 21.4-22c53.5 38 92.7 94.8 107.8 160.7c.5 2.1-.2 4.3-1.7 5.9l-28.4 28.4c-4 4-1.2 10.9 4.5 10.9h26c3.4 0 6.2 2.6 6.3 6c.1 3.3 .2 6.6 .2 10c0 17.5-1.7 34.7-4.8 51.3c-.2 1.2-.9 2.4-1.7 3.3l-46.5 46.5c-4 4-1.2 10.9 4.5 10.9H510c4.6 0 7.7 4.8 5.7 9C471.2 450.5 378.8 512 272 512S72.8 450.5 28.3 361c-2.1-4.2 1-9 5.7-9H48.5c5.7 0 8.6-6.9 4.5-10.9L6.6 294.6c-.9-.9-1.5-2-1.7-3.3C1.7 274.7 0 257.5 0 240c0-3.3 .1-6.7 .2-10c.1-3.4 2.9-6 6.3-6h26c5.7 0 8.6-6.9 4.5-10.9L8.6 184.6c-1.5-1.5-2.2-3.8-1.7-5.9C22.1 112.8 61.3 56 114.8 18c11.3-8 26 8.9 21.4 22c-5.3 15-8.2 31.2-8.2 48c0 46.3 21.9 87.5 55.8 113.9c7.5 5.8 8 17.9 1 24.4C159.7 249.6 144 283 144 320c0 62.9 45.4 115.2 105.1 126l2.1-61.5c.1-2.6-2.8-4.2-5-2.8l-26.3 17.6c-3.2 2.1-7.4 1.7-10.1-1s-3.1-6.9-1-10.1L230 356.3c1.3-1.9 .2-4.5-2-4.9l-37.6-7.5c-3.7-.7-6.4-4-6.4-7.8s2.7-7.1 6.4-7.8l37.6-7.5c2.2-.4 3.3-3 2-4.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "jedi-order": { + "changes": [ + "5.0.12", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "star wars" + ] + }, + "unicode": "f50e", + "label": "Jedi Order", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M398.5 373.6c95.9-122.1 17.2-233.1 17.2-233.1 45.4 85.8-41.4 170.5-41.4 170.5 105-171.5-60.5-271.5-60.5-271.5 96.9 72.7-10.1 190.7-10.1 190.7 85.8 158.4-68.6 230.1-68.6 230.1s-.4-16.9-2.2-85.7c4.3 4.5 34.5 36.2 34.5 36.2l-24.2-47.4 62.6-9.1-62.6-9.1 20.2-55.5-31.4 45.9c-2.2-87.7-7.8-305.1-7.9-306.9v-2.4 1-1 2.4c0 1-5.6 219-7.9 306.9l-31.4-45.9 20.2 55.5-62.6 9.1 62.6 9.1-24.2 47.4 34.5-36.2c-1.8 68.8-2.2 85.7-2.2 85.7s-154.4-71.7-68.6-230.1c0 0-107-118.1-10.1-190.7 0 0-165.5 99.9-60.5 271.5 0 0-86.8-84.8-41.4-170.5 0 0-78.7 111 17.2 233.1 0 0-26.2-16.1-49.4-77.7 0 0 16.9 183.3 222 185.7h4.1c205-2.4 222-185.7 222-185.7-23.6 61.5-49.9 77.7-49.9 77.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "jenkins": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b6", + "label": "Jenkis", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "jet-fighter": { + "aliases": { + "names": [ + "fighter-jet" + ], + "unicodes": { + "secondary": [ + "10f0fb" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airforce", + "airplane", + "airport", + "fast", + "fly", + "goose", + "marines", + "maverick", + "military", + "plane", + "quick", + "top gun", + "transportation", + "travel" + ] + }, + "unicode": "f0fb", + "label": "Jet Fighter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M160 24c0-13.3 10.7-24 24-24H296c13.3 0 24 10.7 24 24s-10.7 24-24 24H280L384 192H500.4c7.7 0 15.3 1.4 22.5 4.1L625 234.4c9 3.4 15 12 15 21.6s-6 18.2-15 21.6L522.9 315.9c-7.2 2.7-14.8 4.1-22.5 4.1H384L280 464h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V320H160l-54.6 54.6c-6 6-14.1 9.4-22.6 9.4H64c-17.7 0-32-14.3-32-32V288c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32H82.7c8.5 0 16.6 3.4 22.6 9.4L160 192h32V48h-8c-13.3 0-24-10.7-24-24zM80 240c-8.8 0-16 7.2-16 16s7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "jet-fighter-up": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airforce", + "airplane", + "airport", + "fast", + "fly", + "goose", + "marines", + "maverick", + "military", + "plane", + "quick", + "top gun", + "transportation", + "travel" + ] + }, + "unicode": "e518", + "label": "Jet Fighter Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M270.7 9.7C268.2 3.8 262.4 0 256 0s-12.2 3.8-14.7 9.7L197.2 112.6c-3.4 8-5.2 16.5-5.2 25.2v77l-144 84V280c0-13.3-10.7-24-24-24s-24 10.7-24 24v56 32 24c0 13.3 10.7 24 24 24s24-10.7 24-24v-8H192v32.7L133.5 468c-3.5 3-5.5 7.4-5.5 12v16c0 8.8 7.2 16 16 16h96V448c0-8.8 7.2-16 16-16s16 7.2 16 16v64h96c8.8 0 16-7.2 16-16V480c0-4.6-2-9-5.5-12L320 416.7V384H464v8c0 13.3 10.7 24 24 24s24-10.7 24-24V368 336 280c0-13.3-10.7-24-24-24s-24 10.7-24 24v18.8l-144-84v-77c0-8.7-1.8-17.2-5.2-25.2L270.7 9.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "jira": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian" + ] + }, + "unicode": "f7b1", + "label": "Jira", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M490 241.7C417.1 169 320.6 71.8 248.5 0 83 164.9 6 241.7 6 241.7c-7.9 7.9-7.9 20.7 0 28.7C138.8 402.7 67.8 331.9 248.5 512c379.4-378 15.7-16.7 241.5-241.7 8-7.9 8-20.7 0-28.6zm-241.5 90l-76-75.7 76-75.7 76 75.7-76 75.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "joget": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b7", + "label": "Joget", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M378.1 45C337.6 19.9 292.6 8 248.2 8 165 8 83.8 49.9 36.9 125.9c-71.9 116.6-35.6 269.3 81 341.2s269.3 35.6 341.2-80.9c71.9-116.6 35.6-269.4-81-341.2zm51.8 323.2c-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6zm-200.8-86.3c-55.5-1.4-81.7-20.8-58.5-48.2s51.1-40.7 68.9-51.2c17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9zm183.8-54.8c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5 31.9-14 13.4-24.6c-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "joint": { + "aliases": { + "unicodes": { + "secondary": [ + "10f595" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blunt", + "cannabis", + "doobie", + "drugs", + "marijuana", + "roach", + "smoke", + "smoking", + "spliff" + ] + }, + "unicode": "f595", + "label": "Joint", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M448 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43c0 55.2 21.9 108.1 60.9 147.1l21 21c9 9 14.1 21.2 14.1 33.9v11c0 17.7 14.3 32 32 32s32-14.3 32-32V245c0-29.7-11.8-58.2-32.8-79.2l-21-21C463.2 117.8 448 81.2 448 43V32zM576 256c0 17.7 14.3 32 32 32s32-14.3 32-32V245c0-55.2-21.9-108.1-60.9-147.1l-21-21c-9-9-14.1-21.2-14.1-33.9V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43c0 29.7 11.8 58.2 32.8 79.2l21 21c27 27 42.2 63.6 42.2 101.8v11zM229.8 360c-4.7-2.3-10-2.7-15.2-2c-37.8 5.6-75.2 14.3-106.9 22.8C81.3 388 58.3 395.1 42 400.4c-8.2 2.7-14.7 4.9-19.2 6.5c-2.3 .8-4 1.4-5.2 1.8l-1.3 .5C6.8 412.5 0 421.4 0 432s6.8 19.5 16.3 22.7l1.3 .5c1.2 .4 3 1.1 5.2 1.8c4.5 1.6 11 3.8 19.2 6.5c16.3 5.4 39.2 12.5 65.7 19.6C160.3 497.3 228.8 512 288 512h67.3c4.1 0 6.3-5.1 3.6-8.3L256.5 380.8c-7.4-8.9-16.5-15.9-26.7-20.8zM445 512h19 51.3c4.1 0 6.3-5.1 3.6-8.3L416.5 380.8C401.3 362.5 378.8 352 355 352H336 288c-1.1 0-2.3 0-3.4 0c-4.1 0-6.2 5.1-3.5 8.3L383.5 483.2C398.7 501.5 421.2 512 445 512zm-3.9-151.7L543.5 483.2c14.6 17.5 35.9 27.9 58.6 28.7c21.1-1.1 37.9-18.6 37.9-39.9V392c0-22.1-17.9-40-40-40H444.7c-4.1 0-6.3 5.1-3.6 8.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "joomla": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1aa", + "label": "Joomla Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "js": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b8", + "label": "JavaScript (JS)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "jsfiddle": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1cc", + "label": "jsFiddle", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "jug-detergent": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "detergent", + "laundry", + "soap", + "wash" + ] + }, + "unicode": "e519", + "label": "Jug Detergent", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 24c0-13.3 10.7-24 24-24h80c13.3 0 24 10.7 24 24V48h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H88C74.7 96 64 85.3 64 72s10.7-24 24-24h8V24zM0 256c0-70.7 57.3-128 128-128H256c70.7 0 128 57.3 128 128V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256zm256 0v96c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-17.7-14.3-32-32-32s-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "k": { + "aliases": { + "unicodes": { + "composite": [ + "6b" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter K", + "Latin Small Letter K", + "letter" + ] + }, + "unicode": "4b", + "label": "K", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M311 86.3c12.3-12.7 12-32.9-.7-45.2s-32.9-12-45.2 .7l-155.2 160L64 249V64c0-17.7-14.3-32-32-32S0 46.3 0 64V328 448c0 17.7 14.3 32 32 32s32-14.3 32-32V341l64.7-66.7 133 192c10.1 14.5 30 18.1 44.5 8.1s18.1-30 8.1-44.5L174.1 227.4 311 86.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kaaba": { + "aliases": { + "unicodes": { + "composite": [ + "1f54b" + ], + "secondary": [ + "10f66b" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Muslim", + "building", + "cube", + "islam", + "kaaba", + "muslim", + "religion" + ] + }, + "unicode": "f66b", + "label": "Kaaba", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M60 120l228 71.2L516 120 288 48.8 60 120zM278.5 1.5c6.2-1.9 12.9-1.9 19.1 0l256 80C566.9 85.6 576 98 576 112v16 0 21.2L292.8 237.7c-3.1 1-6.4 1-9.5 0L0 149.2V128 112C0 98 9.1 85.6 22.5 81.5l256-80zm23.9 266.8L576 182.8v46.5l-52.8 16.5c-8.4 2.6-13.1 11.6-10.5 20s11.6 13.1 20 10.5L576 262.8V400c0 14-9.1 26.4-22.5 30.5l-256 80c-6.2 1.9-12.9 1.9-19.1 0l-256-80C9.1 426.4 0 414 0 400V262.8l43.2 13.5c8.4 2.6 17.4-2.1 20-10.5s-2.1-17.4-10.5-20L0 229.2V182.8l273.7 85.5c9.3 2.9 19.3 2.9 28.6 0zm-185.5-2.6c-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20l64 20c8.4 2.6 17.4-2.1 20-10.5s-2.1-17.4-10.5-20l-64-20zm352 30.5c8.4-2.6 13.1-11.6 10.5-20s-11.6-13.1-20-10.5l-64 20c-8.4 2.6-13.1 11.6-10.5 20s11.6 13.1 20 10.5l64-20zm-224 9.5c-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20l38.5 12c9.3 2.9 19.3 2.9 28.6 0l38.5-12c8.4-2.6 13.1-11.6 10.5-20s-11.6-13.1-20-10.5l-38.5 12c-3.1 1-6.4 1-9.5 0l-38.5-12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kaggle": { + "changes": [ + "5.2.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5fa", + "label": "Kaggle", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M304.2 501.5L158.4 320.3 298.2 185c2.6-2.7 1.7-10.5-5.3-10.5h-69.2c-3.5 0-7 1.8-10.5 5.3L80.9 313.5V7.5q0-7.5-7.5-7.5H21.5Q14 0 14 7.5v497q0 7.5 7.5 7.5h51.9q7.5 0 7.5-7.5v-109l30.8-29.3 110.5 140.6c3 3.5 6.5 5.3 10.5 5.3h66.9q5.25 0 6-3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "key": { + "aliases": { + "unicodes": { + "composite": [ + "1f511" + ], + "secondary": [ + "10f084" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "key", + "lock", + "password", + "private", + "secret", + "unlock" + ] + }, + "unicode": "f084", + "label": "Key", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M336 352c97.2 0 176-78.8 176-176S433.2 0 336 0S160 78.8 160 176c0 18.7 2.9 36.8 8.3 53.7L7 391c-4.5 4.5-7 10.6-7 17v80c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V448h40c13.3 0 24-10.7 24-24V384h40c6.4 0 12.5-2.5 17-7l33.3-33.3c16.9 5.4 35 8.3 53.7 8.3zM376 96a40 40 0 1 1 0 80 40 40 0 1 1 0-80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "keybase": { + "changes": [ + "5.0.11", + "5.8.0", + "5.10.2", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f5", + "label": "Keybase", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M286.17 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18zm111.92-147.6c-9.5-14.62-39.37-52.45-87.26-73.71q-9.1-4.06-18.38-7.27a78.43 78.43 0 0 0-47.88-104.13c-12.41-4.1-23.33-6-32.41-5.77-.6-2-1.89-11 9.4-35L198.66 32l-5.48 7.56c-8.69 12.06-16.92 23.55-24.34 34.89a51 51 0 0 0-8.29-1.25c-41.53-2.45-39-2.33-41.06-2.33-50.61 0-50.75 52.12-50.75 45.88l-2.36 36.68c-1.61 27 19.75 50.21 47.63 51.85l8.93.54a214 214 0 0 0-46.29 35.54C14 304.66 14 374 14 429.77v33.64l23.32-29.8a148.6 148.6 0 0 0 14.56 37.56c5.78 10.13 14.87 9.45 19.64 7.33 4.21-1.87 10-6.92 3.75-20.11a178.29 178.29 0 0 1-15.76-53.13l46.82-59.83-24.66 74.11c58.23-42.4 157.38-61.76 236.25-38.59 34.2 10.05 67.45.69 84.74-23.84.72-1 1.2-2.16 1.85-3.22a156.09 156.09 0 0 1 2.8 28.43c0 23.3-3.69 52.93-14.88 81.64-2.52 6.46 1.76 14.5 8.6 15.74 7.42 1.57 15.33-3.1 18.37-11.15C429 443 434 414 434 382.32c0-38.58-13-77.46-35.91-110.92zM142.37 128.58l-15.7-.93-1.39 21.79 13.13.78a93 93 0 0 0 .32 19.57l-22.38-1.34a12.28 12.28 0 0 1-11.76-12.79L107 119c1-12.17 13.87-11.27 13.26-11.32l29.11 1.73a144.35 144.35 0 0 0-7 19.17zm148.42 172.18a10.51 10.51 0 0 1-14.35-1.39l-9.68-11.49-34.42 27a8.09 8.09 0 0 1-11.13-1.08l-15.78-18.64a7.38 7.38 0 0 1 1.34-10.34l34.57-27.18-14.14-16.74-17.09 13.45a7.75 7.75 0 0 1-10.59-1s-3.72-4.42-3.8-4.53a7.38 7.38 0 0 1 1.37-10.34L214 225.19s-18.51-22-18.6-22.14a9.56 9.56 0 0 1 1.74-13.42 10.38 10.38 0 0 1 14.3 1.37l81.09 96.32a9.58 9.58 0 0 1-1.74 13.44zM187.44 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "keyboard": { + "aliases": { + "unicodes": { + "composite": [ + "2328" + ], + "secondary": [ + "10f11c" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accessory", + "computer", + "edit", + "input", + "keyboard", + "text", + "type", + "write" + ] + }, + "unicode": "f11c", + "label": "Keyboard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm16 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm80-176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V144zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zM160 336c0-8.8 7.2-16 16-16H400c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V336zM272 128h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM256 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM368 128h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM352 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V240zM464 128h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM448 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V240zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16z" + }, + "regular": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 112c-8.8 0-16 7.2-16 16V384c0 8.8 7.2 16 16 16H512c8.8 0 16-7.2 16-16V128c0-8.8-7.2-16-16-16H64zM0 128C0 92.7 28.7 64 64 64H512c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM176 320H400c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm-72-72c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H120c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H120c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16zm64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H200c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H200c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16zm64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H280c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H280c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16zm64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H360c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H360c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16zm64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H440c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H440c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "keycdn": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ba", + "label": "KeyCDN", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "khanda": { + "aliases": { + "unicodes": { + "composite": [ + "262c" + ], + "secondary": [ + "10f66d" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Adi Shakti", + "chakkar", + "sikh", + "sikhism", + "sword" + ] + }, + "unicode": "f66d", + "label": "Khanda", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M246.8 3.7c5.9-4.9 14.6-4.9 20.5 0l48 40c5.9 4.9 7.5 13.2 3.8 19.9l0 0 0 0 0 0 0 0-.1 .1-.3 .6c-.3 .5-.7 1.3-1.2 2.3c-1 2-2.6 5-4.4 8.6c-.5 .9-.9 1.9-1.4 2.9C345.9 97.4 369 134 369 176s-23.1 78.6-57.3 97.8c.5 1 1 2 1.4 2.9c1.8 3.7 3.3 6.6 4.4 8.6c.5 1 .9 1.8 1.2 2.3l.3 .6 .1 .1 0 0 0 0c3.6 6.7 2 15-3.8 19.9L273 343.5v19.8l35.6-24.5 41.1-28.2c42.8-29.4 68.4-78 68.4-130c0-31.1-9.2-61.6-26.5-87.5l-2.8-4.2c-4-6-3.5-14 1.3-19.5s12.7-7 19.2-3.7L402.1 80c7.2-14.3 7.2-14.3 7.2-14.3l0 0 0 0 .1 0 .3 .2 1 .5c.8 .4 2 1.1 3.5 1.9c2.9 1.7 7 4.1 11.8 7.3c9.6 6.4 22.5 16.1 35.4 29c25.7 25.7 52.7 65.6 52.7 119.3c0 53.1-26.4 100.5-51.2 133.6c-12.6 16.7-25.1 30.3-34.5 39.7c-4.7 4.7-8.7 8.4-11.5 10.9c-1.4 1.3-2.5 2.2-3.3 2.9l-.9 .8-.3 .2-.1 .1 0 0 0 0s0 0-10.2-12.3l10.2 12.3c-5.1 4.3-12.4 4.9-18.2 1.6l-75.6-43-32.7 22.5 45.5 31.3c1.8-.4 3.7-.7 5.7-.7c13.3 0 24 10.7 24 24s-10.7 24-24 24c-12.2 0-22.3-9.1-23.8-21L273 423.4v28.9c9.6 5.5 16 15.9 16 27.7c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-11.8 6.4-22.2 16-27.7V424.1l-40.3 27.7C198.8 463.3 188.9 472 177 472c-13.3 0-24-10.7-24-24s10.7-24 24-24c2.2 0 4.4 .3 6.5 .9l45.8-31.5-32.7-22.5-75.6 43c-5.8 3.3-13 2.7-18.2-1.6L113 400c-10.2 12.3-10.2 12.3-10.3 12.3l0 0 0 0-.1-.1-.3-.2-.9-.8c-.8-.7-1.9-1.7-3.3-2.9c-2.8-2.5-6.7-6.2-11.5-10.9c-9.4-9.4-21.9-23-34.5-39.7C27.4 324.5 1 277.1 1 224c0-53.7 26.9-93.6 52.7-119.3c12.9-12.9 25.8-22.6 35.4-29C94 72.5 98 70 100.9 68.4c1.5-.8 2.6-1.5 3.5-1.9l1-.5 .3-.2 .1 0 0 0 0 0s0 0 7.2 14.3l-7.2-14.3c6.5-3.2 14.3-1.7 19.2 3.7s5.3 13.4 1.3 19.5l-2.8 4.2C106.2 119 97 149.5 97 180.6c0 51.9 25.6 100.6 68.4 130l41.1 28.2L241 362.6V343.5l-42.2-35.2c-5.9-4.9-7.5-13.2-3.8-19.9l0 0 0 0 0 0 .1-.1 .3-.6c.3-.5 .7-1.3 1.2-2.3c1-2 2.6-5 4.4-8.6c.5-.9 .9-1.9 1.4-2.9C168.1 254.6 145 218 145 176s23.1-78.6 57.3-97.8c-.5-1-1-2-1.4-2.9c-1.8-3.7-3.3-6.6-4.4-8.6c-.5-1-.9-1.8-1.2-2.3l-.3-.6-.1-.1 0 0 0 0 0 0c-3.6-6.7-2-15 3.8-19.9l48-40zM221.2 122.9c-17 11.5-28.2 31-28.2 53.1s11.2 41.6 28.2 53.1C228 210.2 233 190.9 233 176s-5-34.2-11.8-53.1zm71.5 106.2c17-11.5 28.2-31 28.2-53.1s-11.2-41.6-28.2-53.1C286 141.8 281 161.1 281 176s5 34.2 11.8 53.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kickstarter": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3bb", + "label": "Kickstarter", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "kickstarter-k": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3bc", + "label": "Kickstarter K", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "kip-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Kip Sign", + "currency" + ] + }, + "unicode": "e1c4", + "label": "Kip Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M340.8 88.3c13.4-11.5 15-31.7 3.5-45.1s-31.7-15-45.1-3.5L128 186.4V64c0-17.7-14.3-32-32-32S64 46.3 64 64V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V325.6L299.2 472.3c13.4 11.5 33.6 9.9 45.1-3.5s9.9-33.6-3.5-45.1L182.5 288H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H182.5L340.8 88.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kit-medical": { + "aliases": { + "names": [ + "first-aid" + ], + "unicodes": { + "secondary": [ + "10f479" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emergency", + "emt", + "health", + "medical", + "rescue" + ] + }, + "unicode": "f479", + "label": "Kit Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H96V32H64zm64 0V480H448V32H128zM512 480c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H480V480h32zM256 176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H320v48c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V288H208c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16h48V176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kitchen-set": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chef", + "cook", + "cup", + "kitchen", + "pan", + "pot", + "skillet" + ] + }, + "unicode": "e51a", + "label": "Kitchen Set", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M240 144A96 96 0 1 0 48 144a96 96 0 1 0 192 0zm44.4 32C269.9 240.1 212.5 288 144 288C64.5 288 0 223.5 0 144S64.5 0 144 0c68.5 0 125.9 47.9 140.4 112h71.8c8.8-9.8 21.6-16 35.8-16H496c26.5 0 48 21.5 48 48s-21.5 48-48 48H392c-14.2 0-27-6.2-35.8-16H284.4zM144 80a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM400 240c13.3 0 24 10.7 24 24v8h96c13.3 0 24 10.7 24 24s-10.7 24-24 24H280c-13.3 0-24-10.7-24-24s10.7-24 24-24h96v-8c0-13.3 10.7-24 24-24zM288 464V352H512V464c0 26.5-21.5 48-48 48H336c-26.5 0-48-21.5-48-48zM48 320h80 16 32c26.5 0 48 21.5 48 48s-21.5 48-48 48H160c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V336c0-8.8 7.2-16 16-16zm128 64c8.8 0 16-7.2 16-16s-7.2-16-16-16H160v32h16zM24 464H200c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "kiwi-bird": { + "aliases": { + "unicodes": { + "secondary": [ + "10f535" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "fauna", + "new zealand" + ] + }, + "unicode": "f535", + "label": "Kiwi Bird", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M291.2 388.4c31.2-18.8 64.7-36.4 101.1-36.4H448c4.6 0 9.1-.2 13.6-.7l85.3 121.9c4 5.7 11.3 8.2 17.9 6.1s11.2-8.3 11.2-15.3V224c0-70.7-57.3-128-128-128H392.3c-36.4 0-69.9-17.6-101.1-36.4C262.3 42.1 228.3 32 192 32C86 32 0 118 0 224c0 71.1 38.6 133.1 96 166.3V456c0 13.3 10.7 24 24 24s24-10.7 24-24V410c15.3 3.9 31.4 6 48 6c5.4 0 10.7-.2 16-.7V456c0 13.3 10.7 24 24 24s24-10.7 24-24V405.1c12.4-4.4 24.2-10 35.2-16.7zM448 200a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "korvue": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42f", + "label": "KORVUE", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 446, + 512 + ], + "width": 446, + "height": 512, + "path": "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "l": { + "aliases": { + "unicodes": { + "composite": [ + "6c" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter L", + "Latin Small Letter L", + "letter" + ] + }, + "unicode": "4c", + "label": "L", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32c17.7 0 32 14.3 32 32V416H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "land-mine-on": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bomb", + "danger", + "explosion", + "war" + ] + }, + "unicode": "e51b", + "label": "Land Mine On", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M312 24V168c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24s24 10.7 24 24zM160 320c0-17.7 14.3-32 32-32H384c17.7 0 32 14.3 32 32v32H160V320zM82.7 410.5c8.1-16.3 24.8-26.5 42.9-26.5H450.3c18.2 0 34.8 10.3 42.9 26.5l27.6 55.2C531.5 487 516 512 492.2 512H83.8c-23.8 0-39.3-25-28.6-46.3l27.6-55.2zM4.3 138.3c7.5-10.9 22.5-13.6 33.4-6.1l104 72c10.9 7.5 13.6 22.5 6.1 33.4s-22.5 13.6-33.4 6.1l-104-72c-10.9-7.5-13.6-22.5-6.1-33.4zm534.1-6.1c10.9-7.5 25.8-4.8 33.4 6.1s4.8 25.8-6.1 33.4l-104 72c-10.9 7.5-25.8 4.8-33.4-6.1s-4.8-25.8 6.1-33.4l104-72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "landmark": { + "aliases": { + "unicodes": { + "composite": [ + "1f3db" + ], + "secondary": [ + "10f66f" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "classical", + "historic", + "memorable", + "monument", + "museum", + "politics" + ] + }, + "unicode": "f66f", + "label": "Landmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M240.1 4.2c9.8-5.6 21.9-5.6 31.8 0l171.8 98.1L448 104l0 .9 47.9 27.4c12.6 7.2 18.8 22 15.1 36s-16.4 23.8-30.9 23.8H32c-14.5 0-27.2-9.8-30.9-23.8s2.5-28.8 15.1-36L64 104.9V104l4.4-1.6L240.1 4.2zM64 224h64V416h40V224h64V416h48V224h64V416h40V224h64V420.3c.6 .3 1.2 .7 1.8 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1V224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "landmark-dome": { + "aliases": { + "names": [ + "landmark-alt" + ], + "unicodes": { + "secondary": [ + "10f752" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "historic", + "memorable", + "monument", + "politics" + ] + }, + "unicode": "f752", + "label": "Landmark Dome", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M248 0h16c13.3 0 24 10.7 24 24V34.7C368.4 48.1 431.9 111.6 445.3 192H448c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h2.7C80.1 111.6 143.6 48.1 224 34.7V24c0-13.3 10.7-24 24-24zM64 288h64V416h40V288h64V416h48V288h64V416h40V288h64V420.3c.6 .3 1.2 .7 1.7 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "landmark-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "capitol", + "flag", + "landmark", + "memorial" + ] + }, + "unicode": "e51c", + "label": "Landmark Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M272 0h80c8.8 0 16 7.2 16 16V80c0 8.8-7.2 16-16 16H272v32H464c17.7 0 32 14.3 32 32s-14.3 32-32 32H48c-17.7 0-32-14.3-32-32s14.3-32 32-32H240V16c0-8.8 7.2-16 16-16h16zM64 224h64V416h40V224h64V416h48V224h64V416h40V224h64V420.3c.6 .3 1.2 .7 1.8 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1V224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "language": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1ab" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dialect", + "idiom", + "localize", + "speech", + "translate", + "vernacular" + ] + }, + "unicode": "f1ab", + "label": "Language", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H256h48 16H576c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H320 304 256 64c-35.3 0-64-28.7-64-64V128zm320 0V384H576V128H320zM178.3 175.9c-3.2-7.2-10.4-11.9-18.3-11.9s-15.1 4.7-18.3 11.9l-64 144c-4.5 10.1 .1 21.9 10.2 26.4s21.9-.1 26.4-10.2l8.9-20.1h73.6l8.9 20.1c4.5 10.1 16.3 14.6 26.4 10.2s14.6-16.3 10.2-26.4l-64-144zM160 233.2L179 276H141l19-42.8zM448 164c11 0 20 9 20 20v4h44 16c11 0 20 9 20 20s-9 20-20 20h-2l-1.6 4.5c-8.9 24.4-22.4 46.6-39.6 65.4c.9 .6 1.8 1.1 2.7 1.6l18.9 11.3c9.5 5.7 12.5 18 6.9 27.4s-18 12.5-27.4 6.9l-18.9-11.3c-4.5-2.7-8.8-5.5-13.1-8.5c-10.6 7.5-21.9 14-34 19.4l-3.6 1.6c-10.1 4.5-21.9-.1-26.4-10.2s.1-21.9 10.2-26.4l3.6-1.6c6.4-2.9 12.6-6.1 18.5-9.8l-12.2-12.2c-7.8-7.8-7.8-20.5 0-28.3s20.5-7.8 28.3 0l14.6 14.6 .5 .5c12.4-13.1 22.5-28.3 29.8-45H448 376c-11 0-20-9-20-20s9-20 20-20h52v-4c0-11 9-20 20-20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "laptop": { + "aliases": { + "unicodes": { + "composite": [ + "1f4bb" + ], + "secondary": [ + "10f109" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "dell", + "demo", + "device", + "laptop", + "mac", + "macbook", + "machine", + "pc", + "personal" + ] + }, + "unicode": "f109", + "label": "Laptop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 32C92.7 32 64 60.7 64 96V352h64V96H512V352h64V96c0-35.3-28.7-64-64-64H128zM19.2 384C8.6 384 0 392.6 0 403.2C0 445.6 34.4 480 76.8 480H563.2c42.4 0 76.8-34.4 76.8-76.8c0-10.6-8.6-19.2-19.2-19.2H19.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "laptop-code": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5fc" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "dell", + "demo", + "develop", + "device", + "mac", + "macbook", + "machine", + "pc" + ] + }, + "unicode": "f5fc", + "label": "Laptop Code", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 96c0-35.3 28.7-64 64-64H512c35.3 0 64 28.7 64 64V352H512V96H128V352H64V96zM0 403.2C0 392.6 8.6 384 19.2 384H620.8c10.6 0 19.2 8.6 19.2 19.2c0 42.4-34.4 76.8-76.8 76.8H76.8C34.4 480 0 445.6 0 403.2zM281 209l-31 31 31 31c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-48-48c-9.4-9.4-9.4-24.6 0-33.9l48-48c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM393 175l48 48c9.4 9.4 9.4 24.6 0 33.9l-48 48c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l31-31-31-31c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "laptop-file": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "education", + "laptop", + "learning", + "remote work" + ] + }, + "unicode": "e51d", + "label": "Laptop File", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 0H48C21.5 0 0 21.5 0 48V368c0 26.5 21.5 48 48 48H162.7c6.6-18.6 24.4-32 45.3-32V272c0-44.2 35.8-80 80-80h32V128H224c-17.7 0-32-14.3-32-32V0zm96 224c-26.5 0-48 21.5-48 48v16 96 32H208c-8.8 0-16 7.2-16 16v16c0 35.3 28.7 64 64 64H576c35.3 0 64-28.7 64-64V432c0-8.8-7.2-16-16-16H592V288c0-35.3-28.7-64-64-64H320 304 288zm32 64H528V416H304V288h16zM224 0V96h96L224 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "laptop-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f812" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "device", + "ehr", + "electronic health records", + "history" + ] + }, + "unicode": "f812", + "label": "Laptop Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 96c0-35.3 28.7-64 64-64H512c35.3 0 64 28.7 64 64V352H512V96H128V352H64V96zM0 403.2C0 392.6 8.6 384 19.2 384H620.8c10.6 0 19.2 8.6 19.2 19.2c0 42.4-34.4 76.8-76.8 76.8H76.8C34.4 480 0 445.6 0 403.2zM288 160c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H352v48c0 8.8-7.2 16-16 16H304c-8.8 0-16-7.2-16-16V272H240c-8.8 0-16-7.2-16-16V224c0-8.8 7.2-16 16-16h48V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "laravel": { + "changes": [ + "5.0.0", + "5.0.3", + "5.11.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3bd", + "label": "Laravel", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504.4,115.83a5.72,5.72,0,0,0-.28-.68,8.52,8.52,0,0,0-.53-1.25,6,6,0,0,0-.54-.71,9.36,9.36,0,0,0-.72-.94c-.23-.22-.52-.4-.77-.6a8.84,8.84,0,0,0-.9-.68L404.4,55.55a8,8,0,0,0-8,0L300.12,111h0a8.07,8.07,0,0,0-.88.69,7.68,7.68,0,0,0-.78.6,8.23,8.23,0,0,0-.72.93c-.17.24-.39.45-.54.71a9.7,9.7,0,0,0-.52,1.25c-.08.23-.21.44-.28.68a8.08,8.08,0,0,0-.28,2.08V223.18l-80.22,46.19V63.44a7.8,7.8,0,0,0-.28-2.09c-.06-.24-.2-.45-.28-.68a8.35,8.35,0,0,0-.52-1.24c-.14-.26-.37-.47-.54-.72a9.36,9.36,0,0,0-.72-.94,9.46,9.46,0,0,0-.78-.6,9.8,9.8,0,0,0-.88-.68h0L115.61,1.07a8,8,0,0,0-8,0L11.34,56.49h0a6.52,6.52,0,0,0-.88.69,7.81,7.81,0,0,0-.79.6,8.15,8.15,0,0,0-.71.93c-.18.25-.4.46-.55.72a7.88,7.88,0,0,0-.51,1.24,6.46,6.46,0,0,0-.29.67,8.18,8.18,0,0,0-.28,2.1v329.7a8,8,0,0,0,4,6.95l192.5,110.84a8.83,8.83,0,0,0,1.33.54c.21.08.41.2.63.26a7.92,7.92,0,0,0,4.1,0c.2-.05.37-.16.55-.22a8.6,8.6,0,0,0,1.4-.58L404.4,400.09a8,8,0,0,0,4-6.95V287.88l92.24-53.11a8,8,0,0,0,4-7V117.92A8.63,8.63,0,0,0,504.4,115.83ZM111.6,17.28h0l80.19,46.15-80.2,46.18L31.41,63.44Zm88.25,60V278.6l-46.53,26.79-33.69,19.4V123.5l46.53-26.79Zm0,412.78L23.37,388.5V77.32L57.06,96.7l46.52,26.8V338.68a6.94,6.94,0,0,0,.12.9,8,8,0,0,0,.16,1.18h0a5.92,5.92,0,0,0,.38.9,6.38,6.38,0,0,0,.42,1v0a8.54,8.54,0,0,0,.6.78,7.62,7.62,0,0,0,.66.84l0,0c.23.22.52.38.77.58a8.93,8.93,0,0,0,.86.66l0,0,0,0,92.19,52.18Zm8-106.17-80.06-45.32,84.09-48.41,92.26-53.11,80.13,46.13-58.8,33.56Zm184.52,4.57L215.88,490.11V397.8L346.6,323.2l45.77-26.15Zm0-119.13L358.68,250l-46.53-26.79V131.79l33.69,19.4L392.37,178Zm8-105.28-80.2-46.17,80.2-46.16,80.18,46.15Zm8,105.28V178L455,151.19l33.68-19.4v91.39h0Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "lari-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Lari Sign", + "currency" + ] + }, + "unicode": "e1c8", + "label": "Lari Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M144 32c17.7 0 32 14.3 32 32V96.7c5.3-.4 10.6-.7 16-.7s10.7 .2 16 .7V64c0-17.7 14.3-32 32-32s32 14.3 32 32v49.4c54.9 25.2 95.8 75.5 108.2 136.2c3.5 17.3-7.7 34.2-25 37.7s-34.2-7.7-37.7-25c-6.1-29.9-22.5-55.9-45.4-74.3V256c0 17.7-14.3 32-32 32s-32-14.3-32-32V161c-5.2-.7-10.6-1-16-1s-10.8 .3-16 1v95c0 17.7-14.3 32-32 32s-32-14.3-32-32V188.1C82.7 211.5 64 247.6 64 288c0 70.7 57.3 128 128 128H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H192 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48.9C18.5 382 0 337.2 0 288c0-77.5 45.9-144.3 112-174.6V64c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lastfm": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f202", + "label": "last.fm", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "layer-group": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5fd" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "develop", + "layers", + "map", + "stack" + ] + }, + "unicode": "f5fd", + "label": "Layer Group", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321837, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M264.5 5.2c14.9-6.9 32.1-6.9 47 0l218.6 101c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 149.8C37.4 145.8 32 137.3 32 128s5.4-17.9 13.9-21.8L264.5 5.2zM476.9 209.6l53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 277.8C37.4 273.8 32 265.3 32 256s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0l152-70.2zm-152 198.2l152-70.2 53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 405.8C37.4 401.8 32 393.3 32 384s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "leaf": { + "aliases": { + "unicodes": { + "secondary": [ + "10f06c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eco", + "flora", + "nature", + "plant", + "vegan" + ] + }, + "unicode": "f06c", + "label": "Leaf", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M272 96c-78.6 0-145.1 51.5-167.7 122.5c33.6-17 71.5-26.5 111.7-26.5h88c8.8 0 16 7.2 16 16s-7.2 16-16 16H288 216s0 0 0 0c-16.6 0-32.7 1.9-48.3 5.4c-25.9 5.9-49.9 16.4-71.4 30.7c0 0 0 0 0 0C38.3 298.8 0 364.9 0 440v16c0 13.3 10.7 24 24 24s24-10.7 24-24V440c0-48.7 20.7-92.5 53.8-123.2C121.6 392.3 190.3 448 272 448l1 0c132.1-.7 239-130.9 239-291.4c0-42.6-7.5-83.1-21.1-119.6c-2.6-6.9-12.7-6.6-16.2-.1C455.9 72.1 418.7 96 376 96L272 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "leanpub": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f212", + "label": "Leanpub", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "left-long": { + "aliases": { + "names": [ + "long-arrow-alt-left" + ], + "unicodes": { + "secondary": [ + "10f30a" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "long-arrow-left", + "previous" + ] + }, + "unicode": "f30a", + "label": "Left Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M177.5 414c-8.8 3.8-19 2-26-4.6l-144-136C2.7 268.9 0 262.6 0 256s2.7-12.9 7.5-17.4l144-136c7-6.6 17.2-8.4 26-4.6s14.5 12.5 14.5 22l0 72 288 0c17.7 0 32 14.3 32 32l0 64c0 17.7-14.3 32-32 32l-288 0 0 72c0 9.6-5.7 18.2-14.5 22z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "left-right": { + "aliases": { + "names": [ + "arrows-alt-h" + ], + "unicodes": { + "composite": [ + "2194" + ], + "secondary": [ + "10f337" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows-h", + "expand", + "horizontal", + "landscape", + "left-right arrow", + "resize", + "wide" + ] + }, + "unicode": "f337", + "label": "Left Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504.3 273.6c4.9-4.5 7.7-10.9 7.7-17.6s-2.8-13-7.7-17.6l-112-104c-7-6.5-17.2-8.2-25.9-4.4s-14.4 12.5-14.4 22l0 56-192 0 0-56c0-9.5-5.7-18.2-14.4-22s-18.9-2.1-25.9 4.4l-112 104C2.8 243 0 249.3 0 256s2.8 13 7.7 17.6l112 104c7 6.5 17.2 8.2 25.9 4.4s14.4-12.5 14.4-22l0-56 192 0 0 56c0 9.5 5.7 18.2 14.4 22s18.9 2.1 25.9-4.4l112-104z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lemon": { + "aliases": { + "unicodes": { + "composite": [ + "1f34b" + ], + "secondary": [ + "10f094" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "citrus", + "fruit", + "lemon", + "lemonade", + "lime", + "tart" + ] + }, + "unicode": "f094", + "label": "Lemon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 96c0-35.3-28.7-64-64-64c-6.6 0-13 1-19 2.9c-22.5 7-48.1 14.9-71 9c-75.2-19.1-156.4 11-213.7 68.3S-7.2 250.8 11.9 326c5.8 22.9-2 48.4-9 71C1 403 0 409.4 0 416c0 35.3 28.7 64 64 64c6.6 0 13-1 19.1-2.9c22.5-7 48.1-14.9 71-9c75.2 19.1 156.4-11 213.7-68.3s87.5-138.5 68.3-213.7c-5.8-22.9 2-48.4 9-71c1.9-6 2.9-12.4 2.9-19.1zM212.5 127.4c-54.6 16-101.1 62.5-117.1 117.1C92.9 253 84 257.8 75.5 255.4S62.2 244 64.6 235.5c19.1-65.1 73.7-119.8 138.9-138.9c8.5-2.5 17.4 2.4 19.9 10.9s-2.4 17.4-10.9 19.9z" + }, + "regular": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M368 80c-3.2 0-6.2 .4-8.9 1.3C340 86.8 313 91.9 284.8 84.6C227.4 69.7 160.2 92 110.1 142.1S37.7 259.4 52.6 316.8c7.3 28.2 2.2 55.2-3.3 74.3c-.8 2.8-1.3 5.8-1.3 8.9c0 17.7 14.3 32 32 32c3.2 0 6.2-.4 8.9-1.3c19.1-5.5 46.1-10.7 74.3-3.3c57.4 14.9 124.6-7.4 174.7-57.5s72.4-117.3 57.5-174.7c-7.3-28.2-2.2-55.2 3.3-74.3c.8-2.8 1.3-5.8 1.3-8.9c0-17.7-14.3-32-32-32zm0-48c44.2 0 80 35.8 80 80c0 7.7-1.1 15.2-3.1 22.3c-4.6 15.8-7.1 32.9-3 48.9c20.1 77.6-10.9 161.5-70 220.7s-143.1 90.2-220.7 70c-16-4.1-33-1.6-48.9 3c-7.1 2-14.6 3.1-22.3 3.1c-44.2 0-80-35.8-80-80c0-7.7 1.1-15.2 3.1-22.3c4.6-15.8 7.1-32.9 3-48.9C-14 251.3 17 167.3 76.2 108.2S219.3 18 296.8 38.1c16 4.1 33 1.6 48.9-3c7.1-2 14.6-3.1 22.3-3.1zM246.7 167c-52 15.2-96.5 59.7-111.7 111.7c-3.7 12.7-17.1 20-29.8 16.3s-20-17.1-16.3-29.8c19.8-67.7 76.6-124.5 144.3-144.3c12.7-3.7 26.1 3.6 29.8 16.3s-3.6 26.1-16.3 29.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "less": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41d", + "label": "Less", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "less-than": { + "aliases": { + "unicodes": { + "composite": [ + "f536" + ], + "primary": [ + "f536" + ], + "secondary": [ + "103c", + "10f536" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Less-Than Sign", + "arithmetic", + "compare", + "math" + ] + }, + "unicode": "3c", + "label": "Less Than", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M380.6 81.7c7.9 15.8 1.5 35-14.3 42.9L103.6 256 366.3 387.4c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-320-160C6.8 279.2 0 268.1 0 256s6.8-23.2 17.7-28.6l320-160c15.8-7.9 35-1.5 42.9 14.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "less-than-equal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f537" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "compare", + "math" + ] + }, + "unicode": "f537", + "label": "Less Than Equal", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M395.9 93.7c16.4-6.6 24.4-25.2 17.8-41.6s-25.2-24.4-41.6-17.8l-320 128C40 167.1 32 178.9 32 192s8 24.9 20.1 29.7l320 128c16.4 6.6 35-1.4 41.6-17.8s-1.4-35-17.8-41.6L150.2 192 395.9 93.7zM32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "life-ring": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1cd" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "coast guard", + "help", + "overboard", + "save", + "support" + ] + }, + "unicode": "f1cd", + "label": "Life Ring", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M367.2 412.5C335.9 434.9 297.5 448 256 448s-79.9-13.1-111.2-35.5l58-58c15.8 8.6 34 13.5 53.3 13.5s37.4-4.9 53.3-13.5l58 58zm90.7 .8c33.8-43.4 54-98 54-157.3s-20.2-113.9-54-157.3c9-12.5 7.9-30.1-3.4-41.3S425.8 45 413.3 54C369.9 20.2 315.3 0 256 0S142.1 20.2 98.7 54c-12.5-9-30.1-7.9-41.3 3.4S45 86.2 54 98.7C20.2 142.1 0 196.7 0 256s20.2 113.9 54 157.3c-9 12.5-7.9 30.1 3.4 41.3S86.2 467 98.7 458c43.4 33.8 98 54 157.3 54s113.9-20.2 157.3-54c12.5 9 30.1 7.9 41.3-3.4s12.4-28.8 3.4-41.3zm-45.5-46.1l-58-58c8.6-15.8 13.5-34 13.5-53.3s-4.9-37.4-13.5-53.3l58-58C434.9 176.1 448 214.5 448 256s-13.1 79.9-35.5 111.2zM367.2 99.5l-58 58c-15.8-8.6-34-13.5-53.3-13.5s-37.4 4.9-53.3 13.5l-58-58C176.1 77.1 214.5 64 256 64s79.9 13.1 111.2 35.5zM157.5 309.3l-58 58C77.1 335.9 64 297.5 64 256s13.1-79.9 35.5-111.2l58 58c-8.6 15.8-13.5 34-13.5 53.3s4.9 37.4 13.5 53.3zM208 256a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z" + }, + "regular": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M385.1 419.1C349.7 447.2 304.8 464 256 464s-93.7-16.8-129.1-44.9l80.4-80.4c14.3 8.4 31 13.3 48.8 13.3s34.5-4.8 48.8-13.3l80.4 80.4zm68.1 .2C489.9 374.9 512 318.1 512 256s-22.1-118.9-58.8-163.3L465 81c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L419.3 58.8C374.9 22.1 318.1 0 256 0S137.1 22.1 92.7 58.8L81 47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L58.8 92.7C22.1 137.1 0 193.9 0 256s22.1 118.9 58.8 163.3L47 431c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l11.8-11.8C137.1 489.9 193.9 512 256 512s118.9-22.1 163.3-58.8L431 465c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-11.8-11.8zm-34.1-34.1l-80.4-80.4c8.4-14.3 13.3-31 13.3-48.8s-4.8-34.5-13.3-48.8l80.4-80.4C447.2 162.3 464 207.2 464 256s-16.8 93.7-44.9 129.1zM385.1 92.9l-80.4 80.4c-14.3-8.4-31-13.3-48.8-13.3s-34.5 4.8-48.8 13.3L126.9 92.9C162.3 64.8 207.2 48 256 48s93.7 16.8 129.1 44.9zM173.3 304.8L92.9 385.1C64.8 349.7 48 304.8 48 256s16.8-93.7 44.9-129.1l80.4 80.4c-8.4 14.3-13.3 31-13.3 48.8s4.8 34.5 13.3 48.8zM208 256a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "lightbulb": { + "aliases": { + "unicodes": { + "composite": [ + "1f4a1" + ], + "secondary": [ + "10f0eb" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bulb", + "comic", + "electric", + "energy", + "idea", + "inspiration", + "light", + "light bulb" + ] + }, + "unicode": "f0eb", + "label": "Lightbulb", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M256 384c9.6-31.9 29.5-59.1 49.2-86.2l0 0c5.2-7.1 10.4-14.2 15.4-21.4c19.8-28.5 31.4-63 31.4-100.3C352 78.8 273.2 0 176 0S0 78.8 0 176c0 37.3 11.6 71.9 31.4 100.3c5 7.2 10.2 14.3 15.4 21.4l0 0C66.5 324.9 86.4 352.1 96 384H256zM176 512c44.2 0 80-35.8 80-80V416H96v16c0 44.2 35.8 80 80 80zM96 176c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-61.9 50.1-112 112-112c8.8 0 16 7.2 16 16s-7.2 16-16 16c-44.2 0-80 35.8-80 80z" + }, + "regular": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M281.2 248.9C295.6 228.3 304 203.2 304 176c0-70.7-57.3-128-128-128S48 105.3 48 176c0 27.2 8.4 52.3 22.8 72.9c3.7 5.3 8.1 11.3 12.8 17.7l0 0c12.9 17.7 28.3 38.9 39.8 59.8c10.4 19 15.7 38.8 18.3 57.5H93c-2.2-12-5.9-23.7-11.8-34.5c-9.9-18-22.2-34.9-34.5-51.8l0 0 0 0c-5.2-7.1-10.4-14.2-15.4-21.4C11.6 247.9 0 213.3 0 176C0 78.8 78.8 0 176 0s176 78.8 176 176c0 37.3-11.6 71.9-31.4 100.3c-5 7.2-10.2 14.3-15.4 21.4l0 0 0 0c-12.3 16.8-24.6 33.7-34.5 51.8c-5.9 10.8-9.6 22.5-11.8 34.5H210.4c2.6-18.7 7.9-38.6 18.3-57.5c11.5-20.9 26.9-42.1 39.8-59.8l0 0 0 0 0 0c4.7-6.4 9-12.4 12.7-17.7zM176 128c-26.5 0-48 21.5-48 48c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16s-7.2 16-16 16zm0 384c-44.2 0-80-35.8-80-80V416H256v16c0 44.2-35.8 80-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "line": { + "changes": [ + "5.0.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3c0", + "label": "Line", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1672840969, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M311 196.8v81.3c0 2.1-1.6 3.7-3.7 3.7h-13c-1.3 0-2.4-.7-3-1.5l-37.3-50.3v48.2c0 2.1-1.6 3.7-3.7 3.7h-13c-2.1 0-3.7-1.6-3.7-3.7V196.9c0-2.1 1.6-3.7 3.7-3.7h12.9c1.1 0 2.4 .6 3 1.6l37.3 50.3V196.9c0-2.1 1.6-3.7 3.7-3.7h13c2.1-.1 3.8 1.6 3.8 3.5zm-93.7-3.7h-13c-2.1 0-3.7 1.6-3.7 3.7v81.3c0 2.1 1.6 3.7 3.7 3.7h13c2.1 0 3.7-1.6 3.7-3.7V196.8c0-1.9-1.6-3.7-3.7-3.7zm-31.4 68.1H150.3V196.8c0-2.1-1.6-3.7-3.7-3.7h-13c-2.1 0-3.7 1.6-3.7 3.7v81.3c0 1 .3 1.8 1 2.5c.7 .6 1.5 1 2.5 1h52.2c2.1 0 3.7-1.6 3.7-3.7v-13c0-1.9-1.6-3.7-3.5-3.7zm193.7-68.1H327.3c-1.9 0-3.7 1.6-3.7 3.7v81.3c0 1.9 1.6 3.7 3.7 3.7h52.2c2.1 0 3.7-1.6 3.7-3.7V265c0-2.1-1.6-3.7-3.7-3.7H344V247.7h35.5c2.1 0 3.7-1.6 3.7-3.7V230.9c0-2.1-1.6-3.7-3.7-3.7H344V213.5h35.5c2.1 0 3.7-1.6 3.7-3.7v-13c-.1-1.9-1.7-3.7-3.7-3.7zM512 93.4V419.4c-.1 51.2-42.1 92.7-93.4 92.6H92.6C41.4 511.9-.1 469.8 0 418.6V92.6C.1 41.4 42.2-.1 93.4 0H419.4c51.2 .1 92.7 42.1 92.6 93.4zM441.6 233.5c0-83.4-83.7-151.3-186.4-151.3s-186.4 67.9-186.4 151.3c0 74.7 66.3 137.4 155.9 149.3c21.8 4.7 19.3 12.7 14.4 42.1c-.8 4.7-3.8 18.4 16.1 10.1s107.3-63.2 146.5-108.2c27-29.7 39.9-59.8 39.9-93.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "lines-leaning": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "canted", + "domino", + "falling", + "resilience", + "resilient", + "tipped" + ] + }, + "unicode": "e51e", + "label": "Lines Leaning", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M190.4 74.1c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2l-128 384c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l128-384zm70.9-41.7c-17.4-2.9-33.9 8.9-36.8 26.3l-64 384c-2.9 17.4 8.9 33.9 26.3 36.8s33.9-8.9 36.8-26.3l64-384c2.9-17.4-8.9-33.9-26.3-36.8zM352 32c-17.7 0-32 14.3-32 32V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "link": { + "aliases": { + "names": [ + "chain" + ], + "unicodes": { + "composite": [ + "1f517" + ], + "secondary": [ + "10f0c1" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attach", + "attachment", + "chain", + "connect", + "lin", + "link" + ] + }, + "unicode": "f0c1", + "label": "Link", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M562.8 267.7c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114L405.3 334.8c-31.5 31.5-82.5 31.5-114 0c-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C189.5 251.2 196 330 246 380c56.5 56.5 148 56.5 204.5 0L562.8 267.7zM43.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C57 372 57 321 88.5 289.5L200.7 177.2c31.5-31.5 82.5-31.5 114 0c27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C416.5 260.8 410 182 360 132c-56.5-56.5-148-56.5-204.5 0L43.2 244.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "link-slash": { + "aliases": { + "names": [ + "chain-broken", + "chain-slash", + "unlink" + ], + "unicodes": { + "secondary": [ + "10f127" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attachment", + "chain", + "chain-broken", + "remove" + ] + }, + "unicode": "f127", + "label": "Link Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L489.3 358.2l90.5-90.5c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114l-96 96-31.9-25C430.9 239.6 420.1 175.1 377 132c-52.2-52.3-134.5-56.2-191.3-11.7L38.8 5.1zM239 162c30.1-14.9 67.7-9.9 92.8 15.3c20 20 27.5 48.3 21.7 74.5L239 162zM406.6 416.4L220.9 270c-2.1 39.8 12.2 80.1 42.2 110c38.9 38.9 94.4 51 143.6 36.3zm-290-228.5L60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5l61.8-61.8-50.6-39.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "linkedin": { + "changes": [ + "1.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linkedin-square" + ] + }, + "unicode": "f08c", + "label": "LinkedIn", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "linkedin-in": { + "changes": [ + "2.0.0", + "5.0.0", + "5.4.1", + "5.8.0", + "5.8.1" + ], + "ligatures": [], + "search": { + "terms": [ + "linkedin" + ] + }, + "unicode": "f0e1", + "label": "LinkedIn In", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "linode": { + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2b8", + "label": "Linode", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M366.036,186.867l-59.5,36.871-.838,36.871-29.329-19.273-39.384,24.3c2.238,55.211,2.483,59.271,2.51,59.5l-97.2,65.359L127.214,285.748l108.1-62.01L195.09,197.761l-75.417,38.547L98.723,93.015,227.771,43.574,136.432,0,10.737,39.385,38.39,174.3l41.9,32.681L48.445,222.062,69.394,323.457,98.723,351.11,77.774,363.679l16.76,78.769L160.733,512c-10.8-74.842-11.658-78.641-11.725-78.773l77.925-55.3c16.759-12.57,15.083-10.894,15.083-10.894l.838,24.3,33.519,28.491-.838-77.093,46.927-33.519,26.815-18.435-2.514,36.033,25.139,17.6,6.7-74.579,58.657-43.575Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "linux": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "tux" + ] + }, + "unicode": "f17c", + "label": "Linux", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M220.8 123.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm-21.9 1.7c1.2 0 2-1.2 3-1.7 1.1-.6 3.1-.4 3.5-1.6.2-.4-.2-.9-.6-1.1-1.6-.9-3.8-.6-5.5.1-1.3.6-3.4 1.5-3.2 2.9.1 1 1.8 1.5 2.8 1.4zM420 403.8c-3.6-4-5.3-11.6-7.2-19.7-1.8-8.1-3.9-16.8-10.5-22.4-1.3-1.1-2.6-2.1-4-2.9-1.3-.8-2.7-1.5-4.1-2 9.2-27.3 5.6-54.5-3.7-79.1-11.4-30.1-31.3-56.4-46.5-74.4-17.1-21.5-33.7-41.9-33.4-72C311.1 85.4 315.7.1 234.8 0 132.4-.2 158 103.4 156.9 135.2c-1.7 23.4-6.4 41.8-22.5 64.7-18.9 22.5-45.5 58.8-58.1 96.7-6 17.9-8.8 36.1-6.2 53.3-6.5 5.8-11.4 14.7-16.6 20.2-4.2 4.3-10.3 5.9-17 8.3s-14 6-18.5 14.5c-2.1 3.9-2.8 8.1-2.8 12.4 0 3.9.6 7.9 1.2 11.8 1.2 8.1 2.5 15.7.8 20.8-5.2 14.4-5.9 24.4-2.2 31.7 3.8 7.3 11.4 10.5 20.1 12.3 17.3 3.6 40.8 2.7 59.3 12.5 19.8 10.4 39.9 14.1 55.9 10.4 11.6-2.6 21.1-9.6 25.9-20.2 12.5-.1 26.3-5.4 48.3-6.6 14.9-1.2 33.6 5.3 55.1 4.1.6 2.3 1.4 4.6 2.5 6.7v.1c8.3 16.7 23.8 24.3 40.3 23 16.6-1.3 34.1-11 48.3-27.9 13.6-16.4 36-23.2 50.9-32.2 7.4-4.5 13.4-10.1 13.9-18.3.4-8.2-4.4-17.3-15.5-29.7zM223.7 87.3c9.8-22.2 34.2-21.8 44-.4 6.5 14.2 3.6 30.9-4.3 40.4-1.6-.8-5.9-2.6-12.6-4.9 1.1-1.2 3.1-2.7 3.9-4.6 4.8-11.8-.2-27-9.1-27.3-7.3-.5-13.9 10.8-11.8 23-4.1-2-9.4-3.5-13-4.4-1-6.9-.3-14.6 2.9-21.8zM183 75.8c10.1 0 20.8 14.2 19.1 33.5-3.5 1-7.1 2.5-10.2 4.6 1.2-8.9-3.3-20.1-9.6-19.6-8.4.7-9.8 21.2-1.8 28.1 1 .8 1.9-.2-5.9 5.5-15.6-14.6-10.5-52.1 8.4-52.1zm-13.6 60.7c6.2-4.6 13.6-10 14.1-10.5 4.7-4.4 13.5-14.2 27.9-14.2 7.1 0 15.6 2.3 25.9 8.9 6.3 4.1 11.3 4.4 22.6 9.3 8.4 3.5 13.7 9.7 10.5 18.2-2.6 7.1-11 14.4-22.7 18.1-11.1 3.6-19.8 16-38.2 14.9-3.9-.2-7-1-9.6-2.1-8-3.5-12.2-10.4-20-15-8.6-4.8-13.2-10.4-14.7-15.3-1.4-4.9 0-9 4.2-12.3zm3.3 334c-2.7 35.1-43.9 34.4-75.3 18-29.9-15.8-68.6-6.5-76.5-21.9-2.4-4.7-2.4-12.7 2.6-26.4v-.2c2.4-7.6.6-16-.6-23.9-1.2-7.8-1.8-15 .9-20 3.5-6.7 8.5-9.1 14.8-11.3 10.3-3.7 11.8-3.4 19.6-9.9 5.5-5.7 9.5-12.9 14.3-18 5.1-5.5 10-8.1 17.7-6.9 8.1 1.2 15.1 6.8 21.9 16l19.6 35.6c9.5 19.9 43.1 48.4 41 68.9zm-1.4-25.9c-4.1-6.6-9.6-13.6-14.4-19.6 7.1 0 14.2-2.2 16.7-8.9 2.3-6.2 0-14.9-7.4-24.9-13.5-18.2-38.3-32.5-38.3-32.5-13.5-8.4-21.1-18.7-24.6-29.9s-3-23.3-.3-35.2c5.2-22.9 18.6-45.2 27.2-59.2 2.3-1.7.8 3.2-8.7 20.8-8.5 16.1-24.4 53.3-2.6 82.4.6-20.7 5.5-41.8 13.8-61.5 12-27.4 37.3-74.9 39.3-112.7 1.1.8 4.6 3.2 6.2 4.1 4.6 2.7 8.1 6.7 12.6 10.3 12.4 10 28.5 9.2 42.4 1.2 6.2-3.5 11.2-7.5 15.9-9 9.9-3.1 17.8-8.6 22.3-15 7.7 30.4 25.7 74.3 37.2 95.7 6.1 11.4 18.3 35.5 23.6 64.6 3.3-.1 7 .4 10.9 1.4 13.8-35.7-11.7-74.2-23.3-84.9-4.7-4.6-4.9-6.6-2.6-6.5 12.6 11.2 29.2 33.7 35.2 59 2.8 11.6 3.3 23.7.4 35.7 16.4 6.8 35.9 17.9 30.7 34.8-2.2-.1-3.2 0-4.2 0 3.2-10.1-3.9-17.6-22.8-26.1-19.6-8.6-36-8.6-38.3 12.5-12.1 4.2-18.3 14.7-21.4 27.3-2.8 11.2-3.6 24.7-4.4 39.9-.5 7.7-3.6 18-6.8 29-32.1 22.9-76.7 32.9-114.3 7.2zm257.4-11.5c-.9 16.8-41.2 19.9-63.2 46.5-13.2 15.7-29.4 24.4-43.6 25.5s-26.5-4.8-33.7-19.3c-4.7-11.1-2.4-23.1 1.1-36.3 3.7-14.2 9.2-28.8 9.9-40.6.8-15.2 1.7-28.5 4.2-38.7 2.6-10.3 6.6-17.2 13.7-21.1.3-.2.7-.3 1-.5.8 13.2 7.3 26.6 18.8 29.5 12.6 3.3 30.7-7.5 38.4-16.3 9-.3 15.7-.9 22.6 5.1 9.9 8.5 7.1 30.3 17.1 41.6 10.6 11.6 14 19.5 13.7 24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4s5.9-6.3 3.1-6.6-2.6 2.6-6 5.1c-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2s-18.7-4.8-24.9-9.7c-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "lira-sign": { + "aliases": { + "unicodes": { + "composite": [ + "20a4" + ], + "secondary": [ + "10f195" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Lira Sign", + "currency" + ] + }, + "unicode": "f195", + "label": "Lira Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M112 160.4c0-35.5 28.8-64.4 64.4-64.4c6.9 0 13.8 1.1 20.4 3.3l81.2 27.1c16.8 5.6 34.9-3.5 40.5-20.2s-3.5-34.9-20.2-40.5L217 38.6c-13.1-4.4-26.8-6.6-40.6-6.6C105.5 32 48 89.5 48 160.4V192H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H46c-2.2 10.5-6.1 20.6-11.7 29.9L4.6 431.5c-5.9 9.9-6.1 22.2-.4 32.2S20.5 480 32 480H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H88.5l.7-1.1c11.6-19.3 18.9-40.7 21.6-62.9H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V256H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V160.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "list": { + "aliases": { + "names": [ + "list-squares" + ], + "unicodes": { + "secondary": [ + "10f03a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "unicode": "f03a", + "label": "List", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M40 48C26.7 48 16 58.7 16 72v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V72c0-13.3-10.7-24-24-24H40zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM16 232v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V232c0-13.3-10.7-24-24-24H40c-13.3 0-24 10.7-24 24zM40 368c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V392c0-13.3-10.7-24-24-24H40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "list-check": { + "aliases": { + "names": [ + "tasks" + ], + "unicodes": { + "secondary": [ + "10f0ae" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "downloading", + "downloads", + "loading", + "progress", + "project management", + "settings", + "to do" + ] + }, + "unicode": "f0ae", + "label": "List Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M152.1 38.2c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 113C-2.3 103.6-2.3 88.4 7 79s24.6-9.4 33.9 0l22.1 22.1 55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zm0 160c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 273c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22.1 22.1 55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zM224 96c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zm0 160c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zM160 416c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H192c-17.7 0-32-14.3-32-32zM48 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "list-ol": { + "aliases": { + "names": [ + "list-1-2", + "list-numeric" + ], + "unicodes": { + "secondary": [ + "10f0cb" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "numbers", + "ol", + "todo", + "ul" + ] + }, + "unicode": "f0cb", + "label": "List Ol", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M24 56c0-13.3 10.7-24 24-24H80c13.3 0 24 10.7 24 24V176h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H40c-13.3 0-24-10.7-24-24s10.7-24 24-24H56V80H48C34.7 80 24 69.3 24 56zM86.7 341.2c-6.5-7.4-18.3-6.9-24 1.2L51.5 357.9c-7.7 10.8-22.7 13.3-33.5 5.6s-13.3-22.7-5.6-33.5l11.1-15.6c23.7-33.2 72.3-35.6 99.2-4.9c21.3 24.4 20.8 60.9-1.1 84.7L86.8 432H120c13.3 0 24 10.7 24 24s-10.7 24-24 24H32c-9.5 0-18.2-5.6-22-14.4s-2.1-18.9 4.3-25.9l72-78c5.3-5.8 5.4-14.6 .3-20.5zM224 64H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "list-ul": { + "aliases": { + "names": [ + "list-dots" + ], + "unicodes": { + "secondary": [ + "10f0ca" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "unicode": "f0ca", + "label": "List Ul", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 144a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM64 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm48-208a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "litecoin-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency" + ] + }, + "unicode": "e1d3", + "label": "Litecoin Sign", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M128 64c0-17.7-14.3-32-32-32S64 46.3 64 64V213.6L23.2 225.2c-17 4.9-26.8 22.6-22 39.6s22.6 26.8 39.6 22L64 280.1V448c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V261.9l136.8-39.1c17-4.9 26.8-22.6 22-39.6s-22.6-26.8-39.6-22L128 195.3V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "location-arrow": { + "aliases": { + "unicodes": { + "secondary": [ + "10f124" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "compass", + "coordinate", + "direction", + "gps", + "map", + "navigation", + "place" + ] + }, + "unicode": "f124", + "label": "Location Arrow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M413.6 92.1c4.9-11.9 2.1-25.6-7-34.7s-22.8-11.9-34.7-7l-352 144C5.7 200.2-2.3 215.2 .6 230.2s16.1 25.8 31.4 25.8H208V432c0 15.3 10.8 28.4 25.8 31.4s30-5.1 35.8-19.3l144-352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "location-crosshairs": { + "aliases": { + "names": [ + "location" + ], + "unicodes": { + "secondary": [ + "10f601" + ] + } + }, + "changes": [ + "5.2.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinate", + "direction", + "gps", + "location", + "map", + "navigation", + "place", + "where" + ] + }, + "unicode": "f601", + "label": "Location Crosshairs", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c17.7 0 32 14.3 32 32V66.7C368.4 80.1 431.9 143.6 445.3 224H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H445.3C431.9 368.4 368.4 431.9 288 445.3V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.3C143.6 431.9 80.1 368.4 66.7 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H66.7C80.1 143.6 143.6 80.1 224 66.7V32c0-17.7 14.3-32 32-32zM128 256a128 128 0 1 0 256 0 128 128 0 1 0 -256 0zm128-80a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "location-dot": { + "aliases": { + "names": [ + "map-marker-alt" + ], + "unicodes": { + "secondary": [ + "10f3c5" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "unicode": "f3c5", + "label": "Location Dot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "location-pin": { + "aliases": { + "names": [ + "map-marker" + ], + "unicodes": { + "secondary": [ + "10f041" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "unicode": "f041", + "label": "Location Pin", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 192c0 87.4-117 243-168.3 307.2c-12.3 15.3-35.1 15.3-47.4 0C117 435 0 279.4 0 192C0 86 86 0 192 0S384 86 384 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "location-pin-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "lockdown", + "map", + "quarantine" + ] + }, + "unicode": "e51f", + "label": "Location Pin Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M215.7 499.2c11-13.8 25.1-31.7 40.3-52.3V352c0-23.7 12.9-44.4 32-55.4V272c0-55.6 40.5-101.7 93.6-110.5C367 70 287.7 0 192 0C86 0 0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM400 240c17.7 0 32 14.3 32 32v48H368V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H480c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lock": { + "aliases": { + "unicodes": { + "composite": [ + "1f512" + ], + "secondary": [ + "10f023" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "closed", + "lock", + "locked", + "open", + "password", + "private", + "protect", + "security" + ] + }, + "unicode": "f023", + "label": "Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M144 144v48H304V144c0-44.2-35.8-80-80-80s-80 35.8-80 80zM80 192V144C80 64.5 144.5 0 224 0s144 64.5 144 144v48h16c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lock-open": { + "aliases": { + "unicodes": { + "secondary": [ + "10f3c1" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "open", + "password", + "private", + "protect", + "security", + "unlock" + ] + }, + "unicode": "f3c1", + "label": "Lock Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M352 144c0-44.2 35.8-80 80-80s80 35.8 80 80v48c0 17.7 14.3 32 32 32s32-14.3 32-32V144C576 64.5 511.5 0 432 0S288 64.5 288 144v48H64c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V256c0-35.3-28.7-64-64-64H352V144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "locust": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "horde", + "infestation", + "locust", + "plague", + "swarm" + ] + }, + "unicode": "e520", + "label": "Locust", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M312 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h16c98.7 0 180.6 71.4 197 165.4c-9-3.5-18.8-5.4-29-5.4H431.8l-41.8-97.5c-3.4-7.9-10.8-13.4-19.3-14.4s-17 2.7-22.1 9.6l-40.9 55.5-21.7-50.7c-3.3-7.8-10.5-13.2-18.9-14.3s-16.7 2.3-22 8.9l-240 304c-8.2 10.4-6.4 25.5 4 33.7s25.5 6.4 33.7-4l79.4-100.5 43 16.4-40.5 55c-7.9 10.7-5.6 25.7 5.1 33.6s25.7 5.6 33.6-5.1L215.1 400h74.5l-29.3 42.3c-7.5 10.9-4.8 25.8 6.1 33.4s25.8 4.8 33.4-6.1L348 400h80.4l38.8 67.9c6.6 11.5 21.2 15.5 32.7 8.9s15.5-21.2 8.9-32.7L483.6 400H496c44.1 0 79.8-35.7 80-79.7c0-.1 0-.2 0-.3V280C576 143 465 32 328 32H312zm50.5 168l17.1 40H333l29.5-40zm-87.7 38.1l-1.4 1.9H225.1l32.7-41.5 16.9 39.5zM88.8 240C57.4 240 32 265.4 32 296.8c0 15.5 6.3 30 16.9 40.4L126.7 240H88.8zM496 288a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lungs": { + "aliases": { + "unicodes": { + "composite": [ + "1fac1" + ], + "secondary": [ + "10f604" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air", + "breath", + "covid-19", + "exhalation", + "inhalation", + "lungs", + "organ", + "respiration", + "respiratory" + ] + }, + "unicode": "f604", + "label": "Lungs", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0c17.7 0 32 14.3 32 32V164.1c0 16.4 8.4 31.7 22.2 40.5l9.8 6.2V165.3C384 127 415 96 453.3 96c21.7 0 42.8 10.2 55.8 28.8c15.4 22.1 44.3 65.4 71 116.9c26.5 50.9 52.4 112.5 59.6 170.3c.2 1.3 .2 2.6 .2 4v7c0 49.1-39.8 89-89 89c-7.3 0-14.5-.9-21.6-2.7l-72.7-18.2C414 480.5 384 442.1 384 398V325l90.5 57.6c7.5 4.7 17.3 2.5 22.1-4.9s2.5-17.3-4.9-22.1L384 287.1v-.4l-44.1-28.1c-7.3-4.6-13.9-10.1-19.9-16.1c-5.9 6-12.6 11.5-19.9 16.1L256 286.7 161.2 347l-13.5 8.6c0 0 0 0-.1 0c-7.4 4.8-9.6 14.6-4.8 22.1c4.7 7.5 14.6 9.7 22.1 4.9l91.1-58V398c0 44.1-30 82.5-72.7 93.1l-72.7 18.2c-7.1 1.8-14.3 2.7-21.6 2.7c-49.1 0-89-39.8-89-89v-7c0-1.3 .1-2.7 .2-4c7.2-57.9 33.1-119.4 59.6-170.3c26.8-51.5 55.6-94.8 71-116.9c13-18.6 34-28.8 55.8-28.8C225 96 256 127 256 165.3v45.5l9.8-6.2c13.8-8.8 22.2-24.1 22.2-40.5V32c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lungs-virus": { + "aliases": { + "unicodes": { + "secondary": [ + "10e067" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "coronavirus", + "covid-19", + "flu", + "infection", + "pandemic", + "respiratory", + "sick" + ] + }, + "unicode": "e067", + "label": "Lungs Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0c17.7 0 32 14.3 32 32V156.2c-8.5-7.6-19.7-12.2-32-12.2s-23.5 4.6-32 12.2V32c0-17.7 14.3-32 32-32zM444.5 195.5c-16.4-16.4-41.8-18.5-60.5-6.1V165.3C384 127 415 96 453.3 96c21.7 0 42.8 10.2 55.8 28.8c15.4 22.1 44.3 65.4 71 116.9c26.5 50.9 52.4 112.5 59.6 170.3c.2 1.3 .2 2.6 .2 4v7c0 49.1-39.8 89-89 89c-7.3 0-14.5-.9-21.6-2.7l-72.7-18.2c-20.9-5.2-38.7-17.1-51.5-32.9c14 1.5 28.5-3 39.2-13.8l-22.6-22.6 22.6 22.6c18.7-18.7 18.7-49.1 0-67.9c-1.1-1.1-1.4-2-1.5-2.5c-.1-.8-.1-1.8 .4-2.9s1.2-1.9 1.8-2.3c.5-.3 1.3-.8 2.9-.8c26.5 0 48-21.5 48-48s-21.5-48-48-48c-1.6 0-2.4-.4-2.9-.8c-.6-.4-1.3-1.2-1.8-2.3s-.5-2.2-.4-2.9c.1-.6 .4-1.4 1.5-2.5c18.7-18.7 18.7-49.1 0-67.9zM421.8 421.8c-6.2 6.2-16.4 6.2-22.6 0C375.9 398.5 336 415 336 448c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C241.5 375.9 225 336 192 336c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C264.1 241.5 304 225 304 192c0-8.8 7.2-16 16-16s16 7.2 16 16c0 33 39.9 49.5 63.2 26.2c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C398.5 264.1 415 304 448 304c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2c6.2 6.2 6.2 16.4 0 22.6zM183.3 491.2l-72.7 18.2c-7.1 1.8-14.3 2.7-21.6 2.7c-49.1 0-89-39.8-89-89v-7c0-1.3 .1-2.7 .2-4c7.2-57.9 33.1-119.4 59.6-170.3c26.8-51.5 55.6-94.8 71-116.9c13-18.6 34-28.8 55.8-28.8C225 96 256 127 256 165.3v24.1c-18.6-12.4-44-10.3-60.5 6.1c-18.7 18.7-18.7 49.1 0 67.9c1.1 1.1 1.4 2 1.5 2.5c.1 .8 .1 1.8-.4 2.9s-1.2 1.9-1.8 2.3c-.5 .3-1.3 .8-2.9 .8c-26.5 0-48 21.5-48 48s21.5 48 48 48c1.6 0 2.4 .4 2.9 .8c.6 .4 1.3 1.2 1.8 2.3s.5 2.2 .4 2.9c-.1 .6-.4 1.4-1.5 2.5c-18.7 18.7-18.7 49.1 0 67.9c10.7 10.7 25.3 15.3 39.2 13.8c-12.8 15.9-30.6 27.7-51.5 32.9zM296 320a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm72 32a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "lyft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3c3", + "label": "lyft", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "m": { + "aliases": { + "unicodes": { + "composite": [ + "6d" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter M", + "Latin Small Letter M", + "letter" + ] + }, + "unicode": "4d", + "label": "M", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M22.7 33.4c13.5-4.1 28.1 1.1 35.9 12.9L224 294.3 389.4 46.2c7.8-11.7 22.4-17 35.9-12.9S448 49.9 448 64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V169.7L250.6 369.8c-5.9 8.9-15.9 14.2-26.6 14.2s-20.7-5.3-26.6-14.2L64 169.7V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 49.9 9.2 37.5 22.7 33.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magento": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3c4", + "label": "Magento", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "magnet": { + "aliases": { + "unicodes": { + "composite": [ + "1f9f2" + ], + "secondary": [ + "10f076" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Attract", + "attraction", + "horseshoe", + "lodestone", + "magnet", + "magnetic", + "tool" + ] + }, + "unicode": "f076", + "label": "Magnet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 160v96C0 379.7 100.3 480 224 480s224-100.3 224-224V160H320v96c0 53-43 96-96 96s-96-43-96-96V160H0zm0-32H128V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v64zm320 0H448V64c0-17.7-14.3-32-32-32H352c-17.7 0-32 14.3-32 32v64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass": { + "aliases": { + "names": [ + "search" + ], + "unicodes": { + "composite": [ + "1f50d" + ], + "secondary": [ + "10f002" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "find", + "glass", + "magnify", + "magnifying", + "magnifying glass tilted left", + "preview", + "search", + "tool", + "zoom" + ] + }, + "unicode": "f002", + "label": "Magnifying Glass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "find", + "next", + "search" + ] + }, + "unicode": "e521", + "label": "Magnifying Glass Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM241 119c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l31 31H120c-13.3 0-24 10.7-24 24s10.7 24 24 24H238.1l-31 31c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9l-72-72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-chart": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analysis", + "chart" + ] + }, + "unicode": "e522", + "label": "Magnifying Glass Chart", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zm-312 8v64c0 13.3 10.7 24 24 24s24-10.7 24-24l0-64c0-13.3-10.7-24-24-24s-24 10.7-24 24zm80-96V280c0 13.3 10.7 24 24 24s24-10.7 24-24V120c0-13.3-10.7-24-24-24s-24 10.7-24 24zm80 64v96c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24s-24 10.7-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-dollar": { + "aliases": { + "names": [ + "search-dollar" + ], + "unicodes": { + "secondary": [ + "10f688" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "find", + "magnify", + "money", + "preview", + "zoom" + ] + }, + "unicode": "f688", + "label": "Magnifying Glass Dollar", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM228 104c0-11-9-20-20-20s-20 9-20 20v14c-7.6 1.7-15.2 4.4-22.2 8.5c-13.9 8.3-25.9 22.8-25.8 43.9c.1 20.3 12 33.1 24.7 40.7c11 6.6 24.7 10.8 35.6 14l1.7 .5c12.6 3.8 21.8 6.8 28 10.7c5.1 3.2 5.8 5.4 5.9 8.2c.1 5-1.8 8-5.9 10.5c-5 3.1-12.9 5-21.4 4.7c-11.1-.4-21.5-3.9-35.1-8.5c-2.3-.8-4.7-1.6-7.2-2.4c-10.5-3.5-21.8 2.2-25.3 12.6s2.2 21.8 12.6 25.3c1.9 .6 4 1.3 6.1 2.1l0 0 0 0c8.3 2.9 17.9 6.2 28.2 8.4V312c0 11 9 20 20 20s20-9 20-20V298.2c8-1.7 16-4.5 23.2-9c14.3-8.9 25.1-24.1 24.8-45c-.3-20.3-11.7-33.4-24.6-41.6c-11.5-7.2-25.9-11.6-37.1-15l-.7-.2c-12.8-3.9-21.9-6.7-28.3-10.5c-5.2-3.1-5.3-4.9-5.3-6.7c0-3.7 1.4-6.5 6.2-9.3c5.4-3.2 13.6-5.1 21.5-5c9.6 .1 20.2 2.2 31.2 5.2c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-6.5-1.7-13.7-3.4-21.1-4.7V104z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-location": { + "aliases": { + "names": [ + "search-location" + ], + "unicodes": { + "secondary": [ + "10f689" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "find", + "magnify", + "preview", + "zoom" + ] + }, + "unicode": "f689", + "label": "Magnifying Glass Location", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM288 176c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 48.8 46.5 111.6 68.6 138.6c6 7.3 16.8 7.3 22.7 0c22.1-27 68.6-89.8 68.6-138.6zm-112 0a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-minus": { + "aliases": { + "names": [ + "search-minus" + ], + "unicodes": { + "secondary": [ + "10f010" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "minify", + "negative", + "smaller", + "zoom", + "zoom out" + ] + }, + "unicode": "f010", + "label": "Magnifying Glass Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM136 184c-13.3 0-24 10.7-24 24s10.7 24 24 24H280c13.3 0 24-10.7 24-24s-10.7-24-24-24H136z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "magnifying-glass-plus": { + "aliases": { + "names": [ + "search-plus" + ], + "unicodes": { + "secondary": [ + "10f00e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "magnify", + "positive", + "zoom", + "zoom in" + ] + }, + "unicode": "f00e", + "label": "Magnifying Glass Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM184 296c0 13.3 10.7 24 24 24s24-10.7 24-24V232h64c13.3 0 24-10.7 24-24s-10.7-24-24-24H232V120c0-13.3-10.7-24-24-24s-24 10.7-24 24v64H120c-13.3 0-24 10.7-24 24s10.7 24 24 24h64v64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mailchimp": { + "changes": [ + "5.1.0", + "5.7.0", + "5.8.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f59e", + "label": "Mailchimp", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M330.61 243.52a36.15 36.15 0 0 1 9.3 0c1.66-3.83 1.95-10.43.45-17.61-2.23-10.67-5.25-17.14-11.48-16.13s-6.47 8.74-4.24 19.42c1.26 6 3.49 11.14 6 14.32zM277.05 252c4.47 2 7.2 3.26 8.28 2.13 1.89-1.94-3.48-9.39-12.12-13.09a31.44 31.44 0 0 0-30.61 3.68c-3 2.18-5.81 5.22-5.41 7.06.85 3.74 10-2.71 22.6-3.48 7-.44 12.8 1.75 17.26 3.71zm-9 5.13c-9.07 1.42-15 6.53-13.47 10.1.9.34 1.17.81 5.21-.81a37 37 0 0 1 18.72-1.95c2.92.34 4.31.52 4.94-.49 1.46-2.22-5.71-8-15.39-6.85zm54.17 17.1c3.38-6.87-10.9-13.93-14.3-7s10.92 13.88 14.32 6.97zm15.66-20.47c-7.66-.13-7.95 15.8-.26 15.93s7.98-15.81.28-15.96zm-218.79 78.9c-1.32.31-6 1.45-8.47-2.35-5.2-8 11.11-20.38 3-35.77-9.1-17.47-27.82-13.54-35.05-5.54-8.71 9.6-8.72 23.54-5 24.08 4.27.57 4.08-6.47 7.38-11.63a12.83 12.83 0 0 1 17.85-3.72c11.59 7.59 1.37 17.76 2.28 28.62 1.39 16.68 18.42 16.37 21.58 9a2.08 2.08 0 0 0-.2-2.33c.03.89.68-1.3-3.35-.39zm299.72-17.07c-3.35-11.73-2.57-9.22-6.78-20.52 2.45-3.67 15.29-24-3.07-43.25-10.4-10.92-33.9-16.54-41.1-18.54-1.5-11.39 4.65-58.7-21.52-83 20.79-21.55 33.76-45.29 33.73-65.65-.06-39.16-48.15-51-107.42-26.47l-12.55 5.33c-.06-.05-22.71-22.27-23.05-22.57C169.5-18-41.77 216.81 25.78 273.85l14.76 12.51a72.49 72.49 0 0 0-4.1 33.5c3.36 33.4 36 60.42 67.53 60.38 57.73 133.06 267.9 133.28 322.29 3 1.74-4.47 9.11-24.61 9.11-42.38s-10.09-25.27-16.53-25.27zm-316 48.16c-22.82-.61-47.46-21.15-49.91-45.51-6.17-61.31 74.26-75.27 84-12.33 4.54 29.64-4.67 58.49-34.12 57.81zM84.3 249.55C69.14 252.5 55.78 261.09 47.6 273c-4.88-4.07-14-12-15.59-15-13.01-24.85 14.24-73 33.3-100.21C112.42 90.56 186.19 39.68 220.36 48.91c5.55 1.57 23.94 22.89 23.94 22.89s-34.15 18.94-65.8 45.35c-42.66 32.85-74.89 80.59-94.2 132.4zM323.18 350.7s-35.74 5.3-69.51-7.07c6.21-20.16 27 6.1 96.4-13.81 15.29-4.38 35.37-13 51-25.35a102.85 102.85 0 0 1 7.12 24.28c3.66-.66 14.25-.52 11.44 18.1-3.29 19.87-11.73 36-25.93 50.84A106.86 106.86 0 0 1 362.55 421a132.45 132.45 0 0 1-20.34 8.58c-53.51 17.48-108.3-1.74-126-43a66.33 66.33 0 0 1-3.55-9.74c-7.53-27.2-1.14-59.83 18.84-80.37 1.23-1.31 2.48-2.85 2.48-4.79a8.45 8.45 0 0 0-1.92-4.54c-7-10.13-31.19-27.4-26.33-60.83 3.5-24 24.49-40.91 44.07-39.91l5 .29c8.48.5 15.89 1.59 22.88 1.88 11.69.5 22.2-1.19 34.64-11.56 4.2-3.5 7.57-6.54 13.26-7.51a17.45 17.45 0 0 1 13.6 2.24c10 6.64 11.4 22.73 11.92 34.49.29 6.72 1.1 23 1.38 27.63.63 10.67 3.43 12.17 9.11 14 3.19 1.05 6.15 1.83 10.51 3.06 13.21 3.71 21 7.48 26 12.31a16.38 16.38 0 0 1 4.74 9.29c1.56 11.37-8.82 25.4-36.31 38.16-46.71 21.68-93.68 14.45-100.48 13.68-20.15-2.71-31.63 23.32-19.55 41.15 22.64 33.41 122.4 20 151.37-21.35.69-1 .12-1.59-.73-1-41.77 28.58-97.06 38.21-128.46 26-4.77-1.85-14.73-6.44-15.94-16.67 43.6 13.49 71 .74 71 .74s2.03-2.79-.56-2.53zm-68.47-5.7zm-83.4-187.5c16.74-19.35 37.36-36.18 55.83-45.63a.73.73 0 0 1 1 1c-1.46 2.66-4.29 8.34-5.19 12.65a.75.75 0 0 0 1.16.79c11.49-7.83 31.48-16.22 49-17.3a.77.77 0 0 1 .52 1.38 41.86 41.86 0 0 0-7.71 7.74.75.75 0 0 0 .59 1.19c12.31.09 29.66 4.4 41 10.74.76.43.22 1.91-.64 1.72-69.55-15.94-123.08 18.53-134.5 26.83a.76.76 0 0 1-1-1.12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "manat-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Manat Sign", + "currency" + ] + }, + "unicode": "e1d5", + "label": "Manat Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 32c-17.7 0-32 14.3-32 32V98.7C69.2 113.9 0 192.9 0 288V448c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-59.6 40.8-109.8 96-124V448c0 17.7 14.3 32 32 32s32-14.3 32-32V164c55.2 14.2 96 64.3 96 124V448c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-95.1-69.2-174.1-160-189.3V64c0-17.7-14.3-32-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mandalorian": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f50f", + "label": "Mandalorian", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M232.27 511.89c-1-3.26-1.69-15.83-1.39-24.58.55-15.89 1-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-1 .4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-1-11.43a92.38 92.38 0 0 0-.34-12.71c-2-13-3.46-27.7-3.25-33.9s.43-7.15 2.06-9.67c3.05-4.71 6.51-14 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74a109.54 109.54 0 0 1 4.42-15.05c2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71s-4.76 4.8-8.29 7.36c-8.37 6.08-11.7 9.39-12.66 12.58s-1 7.23-.16 7.76c.34.21 1.29 2.4 2.11 4.88a28.83 28.83 0 0 1 .72 15.36c-.39 1.77-1 5.47-1.46 8.23s-1 6.46-1.25 8.22a9.85 9.85 0 0 1-1.55 4.26c-1 1-1.14.91-2.05-.53a14.87 14.87 0 0 1-1.44-4.75c-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-1-21a14.24 14.24 0 0 0 1.67-4.61c0-2.39-2.2-5.32-7.41-9.89-7-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3-2.6 9.11-3 22l-.34 12.19 2 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56s.95 22.75 2 24.71c.36.66.51 1.35.34 1.52s.41 2.09 1.29 4.27a38.14 38.14 0 0 1 2.06 9 91 91 0 0 0 1.71 10.37c2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 58-2 61.21-.12 2-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4-4.79-2.83-9.95.7-3 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73s.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57 0-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-11-1.9-23.85-14.55-6.15-6-12.34-12-13.75-13.19-2.81-2.42-2.79-2-.56-9.63l1.35-4.65-1.69-3a32.22 32.22 0 0 0-2.59-4.07c-1.33-1.51-5.5-10.89-6-13.49a4.24 4.24 0 0 1 .87-3.9c2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1 9.41 5 1.34 4.79 1.37 9.79.1 18.55a101.2 101.2 0 0 0-1 11.11c0 4 .19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52a18.67 18.67 0 0 1 4.72 2.85c11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 8 4.54 10 13.39 1.31 5.65 4 11.14 5.46 11.14a9.38 9.38 0 0 0 3.33-1.39c2-1.22 2.25-1.73 2.25-4.18a132.88 132.88 0 0 0-2-17.84c-.37-1.66-.78-4.06-.93-5.35s-.61-3.85-1-5.69c-2.55-11.16-3.65-15.46-4.1-16-1.55-2-4.08-10.2-4.93-15.92-1.64-11.11-4-14.23-12.91-17.39A43.15 43.15 0 0 1 165.24 78c-1.15-1-4-3.22-6.35-5.06s-4.41-3.53-4.6-3.76a22.7 22.7 0 0 0-2.69-2c-6.24-4.22-8.84-7-11.26-12l-2.44-5-.22-13-.22-13 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2 8.53-.19 10.12 0 11.66 1.56s1.36 6.4-.29 8.5a6.66 6.66 0 0 0-1.34 2.32c0 .58-2.61 4.91-5.42 9a30.39 30.39 0 0 0-2.37 6.82c20.44 13.39 21.55 3.77 14.07 29L194 66.92c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-12-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28a45.3 45.3 0 0 1 7.55-1.68 29.57 29.57 0 0 0 6-1.29c3.65-1.11 4.5-1.17 6.35-.4a29.54 29.54 0 0 0 5.82 1.36 18.18 18.18 0 0 1 6 1.91 22.67 22.67 0 0 0 5 2.17c2.51.68 3 .57 7.05-1.67l4.35-2.4L268.32 5c10.44-.4 10.81-.47 15.26-2.68L288.16 0l2.46 1.43c1.76 1 3.14 2.73 4.85 6 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39a35.76 35.76 0 0 0 2.1 5.91 13.55 13.55 0 0 1 1.31 4c.31 4.33 0 5.3-2.41 6.92-2.17 1.47-7 7.91-7 9.34a14.77 14.77 0 0 1-1.07 3c-5 11.51-6.76 13.56-14.26 17-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26a18.33 18.33 0 0 1-4.09 3.71 13.62 13.62 0 0 0-4.38 4.78 5.89 5.89 0 0 1-2.49 2.91 6.88 6.88 0 0 0-2.45 1.71 67.62 67.62 0 0 1-7 5.38c-3.33 2.34-6.87 5-7.87 6A7.27 7.27 0 0 1 224 100a5.76 5.76 0 0 0-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6a36.45 36.45 0 0 0 1.42 5.88c1.32 3.8 1.31 7.86 0 10.57s-.89 6.65 1.35 9.59c2 2.63 2.16 4.56.71 8.84a33.45 33.45 0 0 0-1.06 8.91c0 4.88.22 6.28 1.46 8.38s1.82 2.48 3.24 2.32c2-.23 2.3-1.05 4.71-12.12 2.18-10 3.71-11.92 13.76-17.08 2.94-1.51 7.46-4 10-5.44s6.79-3.69 9.37-4.91a40.09 40.09 0 0 0 15.22-11.67c7.11-8.79 10-16.22 12.85-33.3a18.37 18.37 0 0 1 2.86-7.73 20.39 20.39 0 0 0 2.89-7.31c1-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8-2.18 3.11-6.46 13-8.76 20.26l-2.29 7.22-7 6.49c-3.83 3.57-8 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 10a14.62 14.62 0 0 0 1.59 7.26 42 42 0 0 1 2.09 4.83 9.28 9.28 0 0 0 1.57 2.89c1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12-4.7 12-1.79 0-4.06 9.27-5.07 20.74-.18 2-.62 5.94-1 8.7s-1 10-1.35 16.05c-.77 12.22-.19 18.77 2 23.15 3.41 6.69.52 12.69-11 22.84l-4 3.49.07 5.19a40.81 40.81 0 0 0 1.14 8.87c4.61 16 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15a61.31 61.31 0 0 1 1.08 7c.17 2 .66 5.33 1.08 7.36.47 2.26.78 11 .79 22.74v19.06l-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3-17.66-3-21.3 0-4.23 1-6 5.28-9.13s4.86-3.14 5.48-.72c.28 1.1 1.45 5.62 2.6 10 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-1 7.07-1.17 12.39-1 28.43.17 19.4-.64 35.73-2 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-71-37.58a101 101 0 0 1-1.73-10.79 100.5 100.5 0 0 0-1.73-10.79 37.53 37.53 0 0 1-1-6.49c-.31-3.19-.91-7.46-1.33-9.48-1-4.79-3.35-19.35-3.42-21.07 0-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29 1-1 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83s-.49 9.87-.67 11.71-.61 9.36-.94 16.72c-.79 17.41-1.94 31.29-2.65 32a.62.62 0 0 1-1-.14zm-87.18-266.59c21.07 12.79 17.84 14.15 28.49 17.66 13 4.29 18.87 7.13 23.15 16.87C111.6 233.28 86.25 255 78.55 268c-31 52-6 101.59 62.75 87.21-14.18 29.23-78 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-68 3-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.3 70.64-78.7 91.18-105.29 61.71z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "map": { + "aliases": { + "unicodes": { + "composite": [ + "1f5fa", + "f278" + ], + "secondary": [ + "10f279" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel", + "world", + "world map" + ] + }, + "unicode": "f279", + "label": "Map", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 476.1L192 421.2V35.9L384 90.8V476.1zm32-1.2V88.4L543.1 37.5c15.8-6.3 32.9 5.3 32.9 22.3V394.6c0 9.8-6 18.6-15.1 22.3L416 474.8zM15.1 95.1L160 37.2V423.6L32.9 474.5C17.1 480.8 0 469.2 0 452.2V117.4c0-9.8 6-18.6 15.1-22.3z" + }, + "regular": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M565.6 36.2C572.1 40.7 576 48.1 576 56V392c0 10-6.2 18.9-15.5 22.4l-168 64c-5.2 2-10.9 2.1-16.1 .3L192.5 417.5l-160 61c-7.4 2.8-15.7 1.8-22.2-2.7S0 463.9 0 456V120c0-10 6.2-18.9 15.5-22.4l168-64c5.2-2 10.9-2.1 16.1-.3L383.5 94.5l160-61c7.4-2.8 15.7-1.8 22.2 2.7zM48 136.5V421.2l120-45.7V90.8L48 136.5zM360 422.7V137.3l-144-48V374.7l144 48zm48-1.5l120-45.7V90.8L408 136.5V421.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "map-location": { + "aliases": { + "names": [ + "map-marked" + ], + "unicodes": { + "secondary": [ + "10f59f" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "unicode": "f59f", + "label": "Map Location", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M302.8 312C334.9 271.9 408 174.6 408 120C408 53.7 354.3 0 288 0S168 53.7 168 120c0 54.6 73.1 151.9 105.2 192c7.7 9.6 22 9.6 29.6 0zM416 503l144.9-58c9.1-3.6 15.1-12.5 15.1-22.3V152c0-17-17.1-28.6-32.9-22.3l-116 46.4c-.5 1.2-1 2.5-1.5 3.7c-2.9 6.8-6.1 13.7-9.6 20.6V503zM15.1 187.3C6 191 0 199.8 0 209.6V480.4c0 17 17.1 28.6 32.9 22.3L160 451.8V200.4c-3.5-6.9-6.7-13.8-9.6-20.6c-5.6-13.2-10.4-27.4-12.8-41.5l-122.6 49zM384 255c-20.5 31.3-42.3 59.6-56.2 77c-20.5 25.6-59.1 25.6-79.6 0c-13.9-17.4-35.7-45.7-56.2-77V449.4l192 54.9V255z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "map-location-dot": { + "aliases": { + "names": [ + "map-marked-alt" + ], + "unicodes": { + "secondary": [ + "10f5a0" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "unicode": "f5a0", + "label": "Map Location Dot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M408 120c0 54.6-73.1 151.9-105.2 192c-7.7 9.6-22 9.6-29.6 0C241.1 271.9 168 174.6 168 120C168 53.7 221.7 0 288 0s120 53.7 120 120zm8 80.4c3.5-6.9 6.7-13.8 9.6-20.6c.5-1.2 1-2.5 1.5-3.7l116-46.4C558.9 123.4 576 135 576 152V422.8c0 9.8-6 18.6-15.1 22.3L416 503V200.4zM137.6 138.3c2.4 14.1 7.2 28.3 12.8 41.5c2.9 6.8 6.1 13.7 9.6 20.6V451.8L32.9 502.7C17.1 509 0 497.4 0 480.4V209.6c0-9.8 6-18.6 15.1-22.3l122.6-49zM327.8 332c13.9-17.4 35.7-45.7 56.2-77V504.3L192 449.4V255c20.5 31.3 42.3 59.6 56.2 77c20.5 25.6 59.1 25.6 79.6 0zM288 152a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "map-pin": { + "aliases": { + "unicodes": { + "composite": [ + "1f4cd" + ], + "secondary": [ + "10f276" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "agree", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "marker", + "navigation", + "pin", + "place", + "position", + "pushpin", + "round pushpin", + "travel" + ] + }, + "unicode": "f276", + "label": "Map Pin", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32 144a144 144 0 1 1 288 0A144 144 0 1 1 32 144zM176 80c8.8 0 16-7.2 16-16s-7.2-16-16-16c-53 0-96 43-96 96c0 8.8 7.2 16 16 16s16-7.2 16-16c0-35.3 28.7-64 64-64zM144 480V317.1c10.4 1.9 21.1 2.9 32 2.9s21.6-1 32-2.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "markdown": { + "changes": [ + "5.2.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f60f", + "label": "Markdown", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M593.8 59.1H46.2C20.7 59.1 0 79.8 0 105.2v301.5c0 25.5 20.7 46.2 46.2 46.2h547.7c25.5 0 46.2-20.7 46.1-46.1V105.2c0-25.4-20.7-46.1-46.2-46.1zM338.5 360.6H277v-120l-61.5 76.9-61.5-76.9v120H92.3V151.4h61.5l61.5 76.9 61.5-76.9h61.5v209.2zm135.3 3.1L381.5 256H443V151.4h61.5V256H566z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "marker": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5a1" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "sharpie", + "update", + "write" + ] + }, + "unicode": "f5a1", + "label": "Marker", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M481 31C445.1-4.8 386.9-4.8 351 31l-15 15L322.9 33C294.8 4.9 249.2 4.9 221.1 33L135 119c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0L255 66.9c9.4-9.4 24.6-9.4 33.9 0L302.1 80 186.3 195.7 316.3 325.7 481 161c35.9-35.9 35.9-94.1 0-129.9zM293.7 348.3L163.7 218.3 99.5 282.5c-48 48-80.8 109.2-94.1 175.8l-5 25c-1.6 7.9 .9 16 6.6 21.7s13.8 8.1 21.7 6.6l25-5c66.6-13.3 127.8-46.1 175.8-94.1l64.2-64.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars": { + "aliases": { + "unicodes": { + "composite": [ + "2642" + ], + "secondary": [ + "10f222" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gender", + "male", + "male sign", + "man" + ] + }, + "unicode": "f222", + "label": "Mars", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M289.8 46.8c3.7-9 12.5-14.8 22.2-14.8H424c13.3 0 24 10.7 24 24V168c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-33.4-33.4L321 204.2c19.5 28.4 31 62.7 31 99.8c0 97.2-78.8 176-176 176S0 401.2 0 304s78.8-176 176-176c37 0 71.4 11.4 99.8 31l52.6-52.6L295 73c-6.9-6.9-8.9-17.2-5.2-26.2zM400 80l0 0h0v0zM176 416a112 112 0 1 0 0-224 112 112 0 1 0 0 224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-and-venus": { + "aliases": { + "unicodes": { + "composite": [ + "26a5" + ], + "secondary": [ + "10f224" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Male and Female Sign", + "female", + "gender", + "intersex", + "male", + "transgender" + ] + }, + "unicode": "f224", + "label": "Mars And Venus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M321.8 14.8C325.5 5.8 334.3 0 344 0H456c13.3 0 24 10.7 24 24V136c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39-24.7 24.7C391 163.3 400 192.6 400 224c0 80.2-59.1 146.7-136.1 158.2c0 .6 .1 1.2 .1 1.8v.4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .3 .4 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3h24c13.3 0 24 10.7 24 24s-10.7 24-24 24H264v.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0l-24 0-24 0v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V486 486v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V485 485v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V484v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V483v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V481v-.1-.1-.1-.1-.1-.1-.1-.1V480v-.1-.1-.1-.1-.1-.1-.1V479v-.1-.1-.1-.1-.1-.1-.1V478v-.1-.1-.1-.1-.1-.1V477v-.1-.1-.1-.1-.1-.1V476v-.1-.1-.1-.1-.1-.1V475v-.1-.2-.2-.2-.2-.2V474v-.2-.2-.2-.2-.2V473v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V470v-.2-.2-.2-.2-.2V469v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V467v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V463v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V459v-.2-.2-.2-.2-.2-.2-.2-.2V457v-.2-.2-.2-.2V456H192c-13.3 0-24-10.7-24-24s10.7-24 24-24h24v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3V403v-.3-.3V402v-.3-.3V401v-.3-.3V400v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.4-.3-.4-.4-.4-.4V393v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V388v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V384c0-.6 0-1.2 .1-1.8C139.1 370.7 80 304.2 80 224c0-88.4 71.6-160 160-160c39.6 0 75.9 14.4 103.8 38.2L366.1 80 327 41c-6.9-6.9-8.9-17.2-5.2-26.2zM432 48l0 0h0v0zM240 488h24c0 13.3-10.7 24-24 24s-24-10.7-24-24h24zm96-264a96 96 0 1 0 -192 0 96 96 0 1 0 192 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-and-venus-burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gender", + "violence" + ] + }, + "unicode": "e523", + "label": "Mars And Venus Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M504 0c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l39 39-22.2 22.2C475.9 78.4 439.6 64 400 64c-88.4 0-160 71.6-160 160c0 80.2 59.1 146.7 136.1 158.2c0 .6-.1 1.2-.1 1.8v.4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .3 .4 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3H352c-13.3 0-24 10.7-24 24s10.7 24 24 24h24v.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0l24 0H376c0 13.3 10.7 24 24 24s24-10.7 24-24H400l24 0v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V486 486v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V485 485v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V484v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V483v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V481v-.1-.1-.1-.1-.1-.1-.1-.1V480v-.1-.1-.1-.1-.1-.1-.1V479v-.1-.1-.1-.1-.1-.1-.1V478v-.1-.1-.1-.1-.1-.1V477v-.1-.1-.1-.1-.1-.1V476v-.1-.1-.1-.1-.1-.1V475v-.1-.2-.2-.2-.2-.2V474v-.2-.2-.2-.2-.2V473v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V470v-.2-.2-.2-.2-.2V469v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V467v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V463v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V459v-.2-.2-.2-.2-.2-.2-.2-.2V457v-.2-.2-.2-.2V456h24c13.3 0 24-10.7 24-24s-10.7-24-24-24H424v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3V403v-.3-.3V402v-.3-.3V401v-.3-.3V400v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.4-.3-.4-.4-.4-.4V393v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V388v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V384c0-.6 0-1.2-.1-1.8c77-11.6 136.1-78 136.1-158.2c0-31.4-9-60.7-24.7-85.4L560 113.9l39 39c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V24c0-13.3-10.7-24-24-24H504zM400 128a96 96 0 1 1 0 192 96 96 0 1 1 0-192zM190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74L55.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L10.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L90.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6L176 286.1l58.6 53.9c4.1 3.8 9.9 5.1 15.2 3.6C223.6 310.8 208 269.2 208 224c0-60.8 28.3-115 72.4-150.2L220.3 92.1l-29.4-74z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-double": { + "aliases": { + "unicodes": { + "composite": [ + "26a3" + ], + "secondary": [ + "10f227" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Doubled Male Sign", + "gay", + "gender", + "male", + "men" + ] + }, + "unicode": "f227", + "label": "Mars Double", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M312 32c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l33.4 33.4L275.8 159c-28.4-19.5-62.7-31-99.8-31C78.8 128 0 206.8 0 304s78.8 176 176 176s176-78.8 176-176c0-37-11.4-71.4-31-99.8l52.6-52.6L407 185c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V56c0-13.3-10.7-24-24-24H312zm88 48h0v0l0 0zM64 304a112 112 0 1 1 224 0A112 112 0 1 1 64 304zM368 480c97.2 0 176-78.8 176-176c0-37-11.4-71.4-31-99.8l52.6-52.6L599 185c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V56c0-13.3-10.7-24-24-24H504c-9.7 0-18.5 5.8-22.2 14.8c-1.2 2.9-1.8 6-1.8 9l0 .2v.2c0 6.2 2.5 12.2 7 16.8l33.4 33.4L480 146.7V168c0 22.6-13.6 43.1-34.6 51.7c-.8 .3-1.7 .7-2.5 1C465.7 241.2 480 270.9 480 304c0 61.9-50.1 112-112 112c-5.4 0-10.8-.4-16-1.1c-12.9 20.4-29.1 38.3-48.1 53.1c19.8 7.8 41.4 12 64 12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-stroke": { + "aliases": { + "unicodes": { + "composite": [ + "26a6" + ], + "secondary": [ + "10f229" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Male with Stroke Sign", + "gender", + "transgender" + ] + }, + "unicode": "f229", + "label": "Mars Stroke", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M376 0c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l33.4 33.4L370.3 96.4 345 71c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l25.4 25.4L307.8 159c-28.4-19.5-62.7-31-99.8-31c-97.2 0-176 78.8-176 176s78.8 176 176 176s176-78.8 176-176c0-37-11.4-71.4-31-99.8l28.6-28.6L407 201c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-25.4-25.4 22.1-22.1L471 153c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V24c0-13.3-10.7-24-24-24H376zm88 48h0v0l0 0zM96 304a112 112 0 1 1 224 0A112 112 0 1 1 96 304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-stroke-right": { + "aliases": { + "names": [ + "mars-stroke-h" + ], + "unicodes": { + "composite": [ + "26a9" + ], + "secondary": [ + "10f22b" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Horizontal Male with Stroke Sign", + "gender" + ] + }, + "unicode": "f22b", + "label": "Mars Stroke Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 368a112 112 0 1 0 0-224 112 112 0 1 0 0 224zm174.4-88C354.7 365.8 281.1 432 192 432C94.8 432 16 353.2 16 256S94.8 80 192 80c89.1 0 162.7 66.2 174.4 152H400V176c0-13.3 10.7-24 24-24s24 10.7 24 24v56h32V176c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l80 80c9.4 9.4 9.4 24.6 0 33.9l-80 80c-6.9 6.9-17.2 8.9-26.2 5.2s-14.8-12.5-14.8-22.2V280H448v56c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H366.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mars-stroke-up": { + "aliases": { + "names": [ + "mars-stroke-v" + ], + "unicodes": { + "composite": [ + "26a8" + ], + "secondary": [ + "10f22a" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Vertical Male with Stroke Sign", + "gender" + ] + }, + "unicode": "f22a", + "label": "Mars Stroke Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M148.7 4.7c6.2-6.2 16.4-6.2 22.6 0l64 64c4.6 4.6 5.9 11.5 3.5 17.4s-8.3 9.9-14.8 9.9H184v24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H184v24c0 .6 0 1.2-.1 1.8c77 11.6 136.1 78 136.1 158.2c0 88.4-71.6 160-160 160S0 440.4 0 352c0-80.2 59.1-146.7 136.1-158.2c0-.6-.1-1.2-.1-1.8V168H104c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V96H96c-6.5 0-12.3-3.9-14.8-9.9s-1.1-12.9 3.5-17.4l64-64zM256 352A96 96 0 1 0 64 352a96 96 0 1 0 192 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "martini-glass": { + "aliases": { + "names": [ + "glass-martini-alt" + ], + "unicodes": { + "composite": [ + "1f378" + ], + "secondary": [ + "10f57b" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "cocktail", + "cocktail glass", + "drink", + "glass", + "liquor" + ] + }, + "unicode": "f57b", + "label": "Martini Glass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 0C19.1 0 7.4 7.8 2.4 19.8s-2.2 25.7 6.9 34.9L224 269.3V448H160c-17.7 0-32 14.3-32 32s14.3 32 32 32h96 96c17.7 0 32-14.3 32-32s-14.3-32-32-32H288V269.3L502.6 54.6c9.2-9.2 11.9-22.9 6.9-34.9S492.9 0 480 0H32zM173.3 128l-64-64H402.7l-64 64H173.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "martini-glass-citrus": { + "aliases": { + "names": [ + "cocktail" + ], + "unicodes": { + "secondary": [ + "10f561" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "beverage", + "drink", + "gin", + "glass", + "margarita", + "martini", + "vodka" + ] + }, + "unicode": "f561", + "label": "Martini Glass Citrus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M432 240c53 0 96-43 96-96s-43-96-96-96c-35.5 0-66.6 19.3-83.2 48H296.2C316 40.1 369.3 0 432 0c79.5 0 144 64.5 144 144s-64.5 144-144 144c-27.7 0-53.5-7.8-75.5-21.3l35.4-35.4c12.2 5.6 25.8 8.7 40.1 8.7zM1.8 142.8C5.5 133.8 14.3 128 24 128H392c9.7 0 18.5 5.8 22.2 14.8s1.7 19.3-5.2 26.2l-177 177V464h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H208 120c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V345.9L7 169c-6.9-6.9-8.9-17.2-5.2-26.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "martini-glass-empty": { + "aliases": { + "names": [ + "glass-martini" + ], + "unicodes": { + "secondary": [ + "10f000" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.1.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "drink", + "liquor" + ] + }, + "unicode": "f000", + "label": "Martini Glass Empty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 0C19.1 0 7.4 7.8 2.4 19.8s-2.2 25.7 6.9 34.9L224 269.3V448H160c-17.7 0-32 14.3-32 32s14.3 32 32 32h96 96c17.7 0 32-14.3 32-32s-14.3-32-32-32H288V269.3L502.6 54.6c9.2-9.2 11.9-22.9 6.9-34.9S492.9 0 480 0H32zM256 210.7L109.3 64H402.7L256 210.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mask": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6fa" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carnivale", + "costume", + "disguise", + "halloween", + "secret", + "super hero" + ] + }, + "unicode": "f6fa", + "label": "Mask", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 64C64 64 0 160 0 272S80 448 176 448h8.4c24.2 0 46.4-13.7 57.2-35.4l23.2-46.3c4.4-8.8 13.3-14.3 23.2-14.3s18.8 5.5 23.2 14.3l23.2 46.3c10.8 21.7 33 35.4 57.2 35.4H400c96 0 176-64 176-176s-64-208-288-208zM96 256a64 64 0 1 1 128 0A64 64 0 1 1 96 256zm320-64a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mask-face": { + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "coronavirus", + "covid-19", + "filter", + "flu", + "infection", + "pandemic", + "respirator", + "virus" + ] + }, + "unicode": "e1d7", + "label": "Mask Face", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 64c-27.2 0-53.8 8-76.4 23.1l-37.1 24.8c-15.8 10.5-34.3 16.1-53.3 16.1H144 128 56c-30.9 0-56 25.1-56 56v85c0 55.1 37.5 103.1 90.9 116.4l108 27C233.8 435 275.4 448 320 448s86.2-13 121.1-35.5l108-27C602.5 372.1 640 324.1 640 269V184c0-30.9-25.1-56-56-56H512 496h-9.2c-19 0-37.5-5.6-53.3-16.1L396.4 87.1C373.8 72 347.2 64 320 64zM132.3 346.3l-29.8-7.4C70.5 330.9 48 302.1 48 269V184c0-4.4 3.6-8 8-8H96v48c0 45.1 13.4 87.2 36.3 122.3zm405.1-7.4l-29.8 7.4c23-35.2 36.3-77.2 36.3-122.3V176h40c4.4 0 8 3.6 8 8v85c0 33-22.5 61.8-54.5 69.9zM192 208c0-8.8 7.2-16 16-16H432c8.8 0 16 7.2 16 16s-7.2 16-16 16H208c-8.8 0-16-7.2-16-16zm16 48H432c8.8 0 16 7.2 16 16s-7.2 16-16 16H208c-8.8 0-16-7.2-16-16s7.2-16 16-16zm16 80c0-8.8 7.2-16 16-16H400c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mask-ventilator": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "gas", + "mask", + "oxygen", + "respirator", + "ventilator" + ] + }, + "unicode": "e524", + "label": "Mask Ventilator", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M159.1 176C139.4 219.2 128 264.7 128 300.8c0 15.9 2.2 31.4 6.3 46l-31.8-7.9C70.5 330.9 48 302.1 48 269V184c0-4.4 3.6-8 8-8H159.1zm26-48H56c-30.9 0-56 25.1-56 56v85c0 55.1 37.5 103.1 90.9 116.4l71.3 17.8c22.7 30.5 55.4 54.1 93.8 66.6V393.3c-19.7-16.4-32-40.3-32-66.9c0-49.5 43-134.4 96-134.4c52.5 0 96 84.9 96 134.4c0 26.7-12.4 50.4-32 66.8v76.6c38-12.6 70.6-36 93.5-66.4l71.6-17.9C602.5 372.1 640 324.1 640 269V184c0-30.9-25.1-56-56-56H454.5C419.7 73.8 372.1 32 320 32c-52.6 0-100.2 41.8-134.9 96zm295.6 48H584c4.4 0 8 3.6 8 8v85c0 33-22.5 61.8-54.5 69.9l-31.8 8c4.2-14.7 6.4-30.1 6.4-46.1c0-36.1-11.6-81.6-31.3-124.8zM288 320V512h64V320c0-17.7-14.3-32-32-32s-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "masks-theater": { + "aliases": { + "names": [ + "theater-masks" + ], + "unicodes": { + "composite": [ + "1f3ad" + ], + "secondary": [ + "10f630" + ] + } + }, + "changes": [ + "5.2.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "comedy", + "mask", + "perform", + "performing", + "performing arts", + "theater", + "theatre", + "tragedy" + ] + }, + "unicode": "f630", + "label": "Masks Theater", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M74.6 373.2c41.7 36.1 108 82.5 166.1 73.7c6.1-.9 12.1-2.5 18-4.5c-9.2-12.3-17.3-24.4-24.2-35.4c-21.9-35-28.8-75.2-25.9-113.6c-20.6 4.1-39.2 13-54.7 25.4c-6.5 5.2-16.3 1.3-14.8-7c6.4-33.5 33-60.9 68.2-66.3c2.6-.4 5.3-.7 7.9-.8l19.4-131.3c2-13.8 8-32.7 25-45.9C278.2 53.2 310.5 37 363.2 32.2c-.8-.7-1.6-1.4-2.4-2.1C340.6 14.5 288.4-11.5 175.7 5.6S20.5 63 5.7 83.9C0 91.9-.8 102 .6 111.8L24.8 276.1c5.5 37.3 21.5 72.6 49.8 97.2zm87.7-219.6c4.4-3.1 10.8-2 11.8 3.3c.1 .5 .2 1.1 .3 1.6c3.2 21.8-11.6 42-33.1 45.3s-41.5-11.8-44.7-33.5c-.1-.5-.1-1.1-.2-1.6c-.6-5.4 5.2-8.4 10.3-6.7c9 3 18.8 3.9 28.7 2.4s19.1-5.3 26.8-10.8zM261.6 390c29.4 46.9 79.5 110.9 137.6 119.7s124.5-37.5 166.1-73.7c28.3-24.5 44.3-59.8 49.8-97.2l24.2-164.3c1.4-9.8 .6-19.9-5.1-27.9c-14.8-20.9-57.3-61.2-170-78.3S299.4 77.2 279.2 92.8c-7.8 6-11.5 15.4-12.9 25.2L242.1 282.3c-5.5 37.3-.4 75.8 19.6 107.7zM404.5 235.3c-7.7-5.5-16.8-9.3-26.8-10.8s-19.8-.6-28.7 2.4c-5.1 1.7-10.9-1.3-10.3-6.7c.1-.5 .1-1.1 .2-1.6c3.2-21.8 23.2-36.8 44.7-33.5s36.3 23.5 33.1 45.3c-.1 .5-.2 1.1-.3 1.6c-1 5.3-7.4 6.4-11.8 3.3zm136.2 15.5c-1 5.3-7.4 6.4-11.8 3.3c-7.7-5.5-16.8-9.3-26.8-10.8s-19.8-.6-28.7 2.4c-5.1 1.7-10.9-1.3-10.3-6.7c.1-.5 .1-1.1 .2-1.6c3.2-21.8 23.2-36.8 44.7-33.5s36.3 23.5 33.1 45.3c-.1 .5-.2 1.1-.3 1.6zM530 350.2c-19.6 44.7-66.8 72.5-116.8 64.9s-87.1-48.2-93-96.7c-1-8.3 8.9-12.1 15.2-6.7c23.9 20.8 53.6 35.3 87 40.3s66.1 .1 94.9-12.8c7.6-3.4 16 3.2 12.6 10.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mastodon": { + "changes": [ + "5.0.11", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f6", + "label": "Mastodon", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M433 179.11c0-97.2-63.71-125.7-63.71-125.7-62.52-28.7-228.56-28.4-290.48 0 0 0-63.72 28.5-63.72 125.7 0 115.7-6.6 259.4 105.63 289.1 40.51 10.7 75.32 13 103.33 11.4 50.81-2.8 79.32-18.1 79.32-18.1l-1.7-36.9s-36.31 11.4-77.12 10.1c-40.41-1.4-83-4.4-89.63-54a102.54 102.54 0 0 1-.9-13.9c85.63 20.9 158.65 9.1 178.75 6.7 56.12-6.7 105-41.3 111.23-72.9 9.8-49.8 9-121.5 9-121.5zm-75.12 125.2h-46.63v-114.2c0-49.7-64-51.6-64 6.9v62.5h-46.33V197c0-58.5-64-56.6-64-6.9v114.2H90.19c0-122.1-5.2-147.9 18.41-175 25.9-28.9 79.82-30.8 103.83 6.1l11.6 19.5 11.6-19.5c24.11-37.1 78.12-34.8 103.83-6.1 23.71 27.3 18.4 53 18.4 175z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mattress-pillow": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air mattress", + "mattress", + "pillow", + "rest", + "sleep" + ] + }, + "unicode": "e525", + "label": "Mattress Pillow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 64H64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H256V64zm32 384H576c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H288V448zM64 160c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "maxcdn": { + "changes": [ + "3.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f136", + "label": "MaxCDN", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "maximize": { + "aliases": { + "names": [ + "expand-arrows-alt" + ], + "unicodes": { + "secondary": [ + "10f31e" + ] + } + }, + "changes": [ + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "fullscreen", + "move", + "resize" + ] + }, + "unicode": "f31e", + "label": "Maximize", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M168 32H24C10.7 32 0 42.7 0 56V200c0 9.7 5.8 18.5 14.8 22.2s19.3 1.7 26.2-5.2l40-40 79 79L81 335 41 295c-6.9-6.9-17.2-8.9-26.2-5.2S0 302.3 0 312V456c0 13.3 10.7 24 24 24H168c9.7 0 18.5-5.8 22.2-14.8s1.7-19.3-5.2-26.2l-40-40 79-79 79 79-40 40c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8H424c13.3 0 24-10.7 24-24V312c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2l-40 40-79-79 79-79 40 40c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V56c0-13.3-10.7-24-24-24H280c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l40 40-79 79-79-79 40-40c6.9-6.9 8.9-17.2 5.2-26.2S177.7 32 168 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mdb": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f8ca", + "label": "Material Design for Bootstrap", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M17.37 160.41L7 352h43.91l5.59-79.83L84.43 352h44.71l25.54-77.43 4.79 77.43H205l-12.79-191.59H146.7L106 277.74 63.67 160.41zm281 0h-47.9V352h47.9s95 .8 94.2-95.79c-.78-94.21-94.18-95.78-94.18-95.78zm-1.2 146.46V204.78s46 4.27 46.8 50.57-46.78 51.54-46.78 51.54zm238.29-74.24a56.16 56.16 0 0 0 8-38.31c-5.34-35.76-55.08-34.32-55.08-34.32h-51.9v191.58H482s87 4.79 87-63.85c0-43.14-33.52-55.08-33.52-55.08zm-51.9-31.94s13.57-1.59 16 9.59c1.43 6.66-4 12-4 12h-12v-21.57zm-.1 109.46l.1-24.92V267h.08s41.58-4.73 41.19 22.43c-.33 25.65-41.35 20.74-41.35 20.74z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "medal": { + "aliases": { + "unicodes": { + "composite": [ + "1f3c5" + ], + "secondary": [ + "10f5a2" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "award", + "medal", + "ribbon", + "sports medal", + "star", + "trophy" + ] + }, + "unicode": "f5a2", + "label": "Medal", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M4.1 38.2C1.4 34.2 0 29.4 0 24.6C0 11 11 0 24.6 0H133.9c11.2 0 21.7 5.9 27.4 15.5l68.5 114.1c-48.2 6.1-91.3 28.6-123.4 61.9L4.1 38.2zm503.7 0L405.6 191.5c-32.1-33.3-75.2-55.8-123.4-61.9L350.7 15.5C356.5 5.9 366.9 0 378.1 0H487.4C501 0 512 11 512 24.6c0 4.8-1.4 9.6-4.1 13.6zM80 336a176 176 0 1 1 352 0A176 176 0 1 1 80 336zm184.4-94.9c-3.4-7-13.3-7-16.8 0l-22.4 45.4c-1.4 2.8-4 4.7-7 5.1L168 298.9c-7.7 1.1-10.7 10.5-5.2 16l36.3 35.4c2.2 2.2 3.2 5.2 2.7 8.3l-8.6 49.9c-1.3 7.6 6.7 13.5 13.6 9.9l44.8-23.6c2.7-1.4 6-1.4 8.7 0l44.8 23.6c6.9 3.6 14.9-2.2 13.6-9.9l-8.6-49.9c-.5-3 .5-6.1 2.7-8.3l36.3-35.4c5.6-5.4 2.5-14.8-5.2-16l-50.1-7.3c-3-.4-5.7-2.4-7-5.1l-22.4-45.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "medapps": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3c6", + "label": "MedApps", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "medium": { + "aliases": { + "names": [ + "medium-m" + ], + "unicodes": { + "composite": [ + "f3c7" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f23a", + "label": "Medium", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M180.5,74.262C80.813,74.262,0,155.633,0,256S80.819,437.738,180.5,437.738,361,356.373,361,256,280.191,74.262,180.5,74.262Zm288.25,10.646c-49.845,0-90.245,76.619-90.245,171.095s40.406,171.1,90.251,171.1,90.251-76.619,90.251-171.1H559C559,161.5,518.6,84.908,468.752,84.908Zm139.506,17.821c-17.526,0-31.735,68.628-31.735,153.274s14.2,153.274,31.735,153.274S640,340.631,640,256C640,171.351,625.785,102.729,608.258,102.729Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "medrt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3c8", + "label": "MRT", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 544, + 512 + ], + "width": 544, + "height": 512, + "path": "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "meetup": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2e0", + "label": "Meetup", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "megaport": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5a3", + "label": "Megaport", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M214.5 209.6v66.2l33.5 33.5 33.3-33.3v-66.4l-33.4-33.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm145.1 414.4L367 441.6l-26-19.2v-65.5l-33.4-33.4-33.4 33.4v65.5L248 441.6l-26.1-19.2v-65.5l-33.4-33.4-33.5 33.4v65.5l-26.1 19.2-26.1-19.2v-87l59.5-59.5V188l59.5-59.5V52.9l26.1-19.2L274 52.9v75.6l59.5 59.5v87.6l59.7 59.7v87.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "memory": { + "aliases": { + "unicodes": { + "secondary": [ + "10f538" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "DIMM", + "RAM", + "hardware", + "storage", + "technology" + ] + }, + "unicode": "f538", + "label": "Memory", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128v7.4c0 6.8 4.4 12.6 10.1 16.3C23.3 160.3 32 175.1 32 192s-8.7 31.7-21.9 40.3C4.4 236 0 241.8 0 248.6V320H576V248.6c0-6.8-4.4-12.6-10.1-16.3C552.7 223.7 544 208.9 544 192s8.7-31.7 21.9-40.3c5.7-3.7 10.1-9.5 10.1-16.3V128c0-35.3-28.7-64-64-64H64zM576 352H0v64c0 17.7 14.3 32 32 32H80V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h48c17.7 0 32-14.3 32-32V352zM192 160v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32zm128 0v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32zm128 0v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mendeley": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f7b3", + "label": "Mendeley", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M624.6 325.2c-12.3-12.4-29.7-19.2-48.4-17.2-43.3-1-49.7-34.9-37.5-98.8 22.8-57.5-14.9-131.5-87.4-130.8-77.4.7-81.7 82-130.9 82-48.1 0-54-81.3-130.9-82-72.9-.8-110.1 73.3-87.4 130.8 12.2 63.9 5.8 97.8-37.5 98.8-21.2-2.3-37 6.5-53 22.5-19.9 19.7-19.3 94.8 42.6 102.6 47.1 5.9 81.6-42.9 61.2-87.8-47.3-103.7 185.9-106.1 146.5-8.2-.1.1-.2.2-.3.4-26.8 42.8 6.8 97.4 58.8 95.2 52.1 2.1 85.4-52.6 58.8-95.2-.1-.2-.2-.3-.3-.4-39.4-97.9 193.8-95.5 146.5 8.2-4.6 10-6.7 21.3-5.7 33 4.9 53.4 68.7 74.1 104.9 35.2 17.8-14.8 23.1-65.6 0-88.3zm-303.9-19.1h-.6c-43.4 0-62.8-37.5-62.8-62.8 0-34.7 28.2-62.8 62.8-62.8h.6c34.7 0 62.8 28.1 62.8 62.8 0 25-19.2 62.8-62.8 62.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "menorah": { + "aliases": { + "unicodes": { + "secondary": [ + "10f676" + ] + } + }, + "changes": [ + "5.3.0", + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "candle", + "hanukkah", + "jewish", + "judaism", + "light" + ] + }, + "unicode": "f676", + "label": "Menorah", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M20.8 7.4C22.8 2.9 27.1 0 32 0s9.2 2.9 11.2 7.4L61.3 49.7c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32S0 81.7 0 64V62.8c0-4.5 .9-8.9 2.7-13.1L20.8 7.4zm96 0C118.8 2.9 123.1 0 128 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1L116.8 7.4zm77.8 42.4L212.8 7.4C214.8 2.9 219.1 0 224 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1zM308.8 7.4C310.8 2.9 315.1 0 320 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1L308.8 7.4zm77.8 42.4L404.8 7.4C406.8 2.9 411.1 0 416 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1zM500.8 7.4C502.8 2.9 507.1 0 512 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1L500.8 7.4zm77.8 42.4L596.8 7.4C598.8 2.9 603.1 0 608 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1zM32 128c17.7 0 32 14.3 32 32V288c0 17.7 14.3 32 32 32H288V160c0-17.7 14.3-32 32-32s32 14.3 32 32V320H544c17.7 0 32-14.3 32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32V288c0 53-43 96-96 96H352v64H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 160c-17.7 0-32-14.3-32-32s14.3-32 32-32H288V384H96c-53 0-96-43-96-96V160c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96 32H96V256 160c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96 32H192V256 160c0-17.7 14.3-32 32-32zm192 0c17.7 0 32 14.3 32 32v96 32H384V256 160c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96 32H480V256 160c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mercury": { + "aliases": { + "unicodes": { + "composite": [ + "263f" + ], + "secondary": [ + "10f223" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Mercury", + "gender", + "hybrid", + "transgender" + ] + }, + "unicode": "f223", + "label": "Mercury", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M56.1 7C69.8-4 90-1.8 101 12c17.6 22 44.7 36 75 36s57.3-14 75-36c11.1-13.8 31.2-16 45-5s16 31.2 5 45c-7.8 9.7-16.6 18.4-26.4 26.1C321.3 109.7 352 163.3 352 224c0 89.1-66.2 162.7-152 174.4V424h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H200v16c0 13.3-10.7 24-24 24s-24-10.7-24-24V472H120c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V398.4C66.2 386.7 0 313.1 0 224C0 163.3 30.7 109.7 77.5 78.1C67.7 70.5 58.9 61.7 51.1 52c-11.1-13.8-8.8-33.9 5-45zM64 224a112 112 0 1 0 224 0A112 112 0 1 0 64 224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "message": { + "aliases": { + "names": [ + "comment-alt" + ], + "unicodes": { + "secondary": [ + "10f27a" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "unicode": "f27a", + "label": "Message", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V352c0 35.3 28.7 64 64 64h96v80c0 6.1 3.4 11.6 8.8 14.3s11.9 2.1 16.8-1.5L309.3 416H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 368c26.5 0 48 21.5 48 48v16l72.5-54.4c8.3-6.2 18.4-9.6 28.8-9.6H448c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16V352c0 8.8 7.2 16 16 16h96zm48 124l-.2 .2-5.1 3.8-17.1 12.8c-4.8 3.6-11.3 4.2-16.8 1.5s-8.8-8.2-8.8-14.3V474.7v-6.4V468v-4V416H112 64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0H448c35.3 0 64 28.7 64 64V352c0 35.3-28.7 64-64 64H309.3L208 492z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "meta": { + "changes": [ + "6.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e49b", + "label": "Meta", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 317.9C640 409.2 600.6 466.4 529.7 466.4C467.1 466.4 433.9 431.8 372.8 329.8L341.4 277.2C333.1 264.7 326.9 253 320.2 242.2C300.1 276 273.1 325.2 273.1 325.2C206.1 441.8 168.5 466.4 116.2 466.4C43.42 466.4 0 409.1 0 320.5C0 177.5 79.78 42.4 183.9 42.4C234.1 42.4 277.7 67.08 328.7 131.9C365.8 81.8 406.8 42.4 459.3 42.4C558.4 42.4 640 168.1 640 317.9H640zM287.4 192.2C244.5 130.1 216.5 111.7 183 111.7C121.1 111.7 69.22 217.8 69.22 321.7C69.22 370.2 87.7 397.4 118.8 397.4C149 397.4 167.8 378.4 222 293.6C222 293.6 246.7 254.5 287.4 192.2V192.2zM531.2 397.4C563.4 397.4 578.1 369.9 578.1 322.5C578.1 198.3 523.8 97.08 454.9 97.08C421.7 97.08 393.8 123 360 175.1C369.4 188.9 379.1 204.1 389.3 220.5L426.8 282.9C485.5 377 500.3 397.4 531.2 397.4L531.2 397.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "meteor": { + "aliases": { + "unicodes": { + "composite": [ + "2604" + ], + "secondary": [ + "10f753" + ] + } + }, + "changes": [ + "5.5.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "armageddon", + "asteroid", + "comet", + "shooting star", + "space" + ] + }, + "unicode": "f753", + "label": "Meteor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M493.7 .9L299.4 75.6l2.3-29.3c1-12.8-12.8-21.5-24-15.1L101.3 133.4C38.6 169.7 0 236.6 0 309C0 421.1 90.9 512 203 512c72.4 0 139.4-38.6 175.7-101.3L480.8 234.3c6.5-11.1-2.2-25-15.1-24l-29.3 2.3L511.1 18.3c.6-1.5 .9-3.2 .9-4.8C512 6 506 0 498.5 0c-1.7 0-3.3 .3-4.8 .9zM192 192a128 128 0 1 1 0 256 128 128 0 1 1 0-256zm0 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm16 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microblog": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e01a", + "label": "Micro.blog", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M399.36,362.23c29.49-34.69,47.1-78.34,47.1-125.79C446.46,123.49,346.86,32,224,32S1.54,123.49,1.54,236.44,101.14,440.87,224,440.87a239.28,239.28,0,0,0,79.44-13.44,7.18,7.18,0,0,1,8.12,2.56c18.58,25.09,47.61,42.74,79.89,49.92a4.42,4.42,0,0,0,5.22-3.43,4.37,4.37,0,0,0-.85-3.62,87,87,0,0,1,3.69-110.69ZM329.52,212.4l-57.3,43.49L293,324.75a6.5,6.5,0,0,1-9.94,7.22L224,290.92,164.94,332a6.51,6.51,0,0,1-9.95-7.22l20.79-68.86-57.3-43.49a6.5,6.5,0,0,1,3.8-11.68l71.88-1.51,23.66-67.92a6.5,6.5,0,0,1,12.28,0l23.66,67.92,71.88,1.51a6.5,6.5,0,0,1,3.88,11.68Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "microchip": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2db" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cpu", + "hardware", + "processor", + "technology" + ] + }, + "unicode": "f2db", + "label": "Microchip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64c-35.3 0-64 28.7-64 64H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H64v56H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H64v56H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H64c0 35.3 28.7 64 64 64v40c0 13.3 10.7 24 24 24s24-10.7 24-24V448h56v40c0 13.3 10.7 24 24 24s24-10.7 24-24V448h56v40c0 13.3 10.7 24 24 24s24-10.7 24-24V448c35.3 0 64-28.7 64-64h40c13.3 0 24-10.7 24-24s-10.7-24-24-24H448V280h40c13.3 0 24-10.7 24-24s-10.7-24-24-24H448V176h40c13.3 0 24-10.7 24-24s-10.7-24-24-24H448c0-35.3-28.7-64-64-64V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H280V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H176V24zM160 128H352c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32zm192 32H160V352H352V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microphone": { + "aliases": { + "unicodes": { + "secondary": [ + "10f130" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "audio", + "information", + "podcast", + "public", + "record", + "sing", + "sound", + "voice" + ] + }, + "unicode": "f130", + "label": "Microphone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M176 0C123 0 80 43 80 96V256c0 53 43 96 96 96s96-43 96-96V96c0-53-43-96-96-96zM48 216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 89.1 66.2 162.7 152 174.4V464H104c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H200V430.4c85.8-11.7 152-85.3 152-174.4V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 70.7-57.3 128-128 128s-128-57.3-128-128V216z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microphone-lines": { + "aliases": { + "names": [ + "microphone-alt" + ], + "unicodes": { + "composite": [ + "1f399" + ], + "secondary": [ + "10f3c9" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "mic", + "microphone", + "music", + "podcast", + "record", + "sing", + "sound", + "studio", + "studio microphone", + "voice" + ] + }, + "unicode": "f3c9", + "label": "Microphone Lines", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M80 96V256c0 53 43 96 96 96s96-43 96-96H192c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V192H192c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V128H192c-8.8 0-16-7.2-16-16s7.2-16 16-16h80c0-53-43-96-96-96S80 43 80 96zM304 240v16c0 70.7-57.3 128-128 128s-128-57.3-128-128V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 89.1 66.2 162.7 152 174.4V464H104c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H200V430.4c85.8-11.7 152-85.3 152-174.4V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microphone-lines-slash": { + "aliases": { + "names": [ + "microphone-alt-slash" + ], + "unicodes": { + "secondary": [ + "10f539" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "disable", + "mute", + "podcast", + "record", + "sing", + "sound", + "voice" + ] + }, + "unicode": "f539", + "label": "Microphone Lines Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c15.2-26 23.9-56.3 23.9-88.7V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v24 16c0 21.2-5.1 41.1-14.2 58.7L416 300.8V256H358.9l-34.5-27c2.9-3.1 7-5 11.6-5h80V192H336c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V128H336c-8.8 0-16-7.2-16-16s7.2-16 16-16h80c0-53-43-96-96-96s-96 43-96 96v54.3L38.8 5.1zm362.5 407l-43.1-33.9C346.1 382 333.3 384 320 384c-70.7 0-128-57.3-128-128v-8.7L144.7 210c-.5 1.9-.7 3.9-.7 6v40c0 89.1 66.2 162.7 152 174.4V464H248c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V430.4c20.4-2.8 39.7-9.1 57.3-18.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microphone-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f131" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "disable", + "mute", + "podcast", + "record", + "sing", + "sound", + "voice" + ] + }, + "unicode": "f131", + "label": "Microphone Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c15.2-26 23.9-56.3 23.9-88.7V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 21.2-5.1 41.1-14.2 58.7L416 300.8V96c0-53-43-96-96-96s-96 43-96 96v54.3L38.8 5.1zM344 430.4c20.4-2.8 39.7-9.1 57.3-18.2l-43.1-33.9C346.1 382 333.3 384 320 384c-70.7 0-128-57.3-128-128v-8.7L144.7 210c-.5 1.9-.7 3.9-.7 6v40c0 89.1 66.2 162.7 152 174.4V464H248c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V430.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microscope": { + "aliases": { + "unicodes": { + "composite": [ + "1f52c" + ], + "secondary": [ + "10f610" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "electron", + "lens", + "microscope", + "optics", + "science", + "shrink", + "testing", + "tool" + ] + }, + "unicode": "f610", + "label": "Microscope", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 32c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32c17.7 0 32 14.3 32 32V288c0 17.7-14.3 32-32 32c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32zM32 448H320c70.7 0 128-57.3 128-128s-57.3-128-128-128V128c106 0 192 86 192 192c0 49.2-18.5 94-48.9 128H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm80-64H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "microsoft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ca", + "label": "Microsoft", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mill-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Mill Sign", + "currency" + ] + }, + "unicode": "e1ed", + "label": "Mill Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M302.1 42.8c5.9-16.6-2.7-35-19.4-40.9s-35 2.7-40.9 19.4L208 116.1c-5.7 4-11.1 8.5-16 13.5C171.7 108.9 143.3 96 112 96c-19.5 0-37.8 5-53.7 13.7C52.5 101.4 42.9 96 32 96C14.3 96 0 110.3 0 128v80V416c0 17.7 14.3 32 32 32s32-14.3 32-32V208c0-26.5 21.5-48 48-48s48 21.5 48 48v42.5L81.9 469.2c-5.9 16.6 2.7 35 19.4 40.9s35-2.7 40.9-19.4l21.4-60C168.9 441 179.6 448 192 448c17.7 0 32-14.3 32-32V261.5l35.7-100c3.9-1 8.1-1.6 12.3-1.6c26.5 0 48 21.5 48 48V416c0 17.7 14.3 32 32 32s32-14.3 32-32V208c0-58.2-44.3-106-101.1-111.5l19.2-53.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "minimize": { + "aliases": { + "names": [ + "compress-arrows-alt" + ], + "unicodes": { + "secondary": [ + "10f78c" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "fullscreen", + "minimize", + "move", + "resize", + "shrink", + "smaller" + ] + }, + "unicode": "f78c", + "label": "Minimize", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M456 224H312c-13.3 0-24-10.7-24-24V56c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l40 40L442.3 5.7C446 2 450.9 0 456 0s10 2 13.7 5.7l36.7 36.7C510 46 512 50.9 512 56s-2 10-5.7 13.7L433 143l40 40c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8zm0 64c9.7 0 18.5 5.8 22.2 14.8s1.7 19.3-5.2 26.2l-40 40 73.4 73.4c3.6 3.6 5.7 8.5 5.7 13.7s-2 10-5.7 13.7l-36.7 36.7C466 510 461.1 512 456 512s-10-2-13.7-5.7L369 433l-40 40c-6.9 6.9-17.2 8.9-26.2 5.2s-14.8-12.5-14.8-22.2V312c0-13.3 10.7-24 24-24H456zm-256 0c13.3 0 24 10.7 24 24V456c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-40-40L69.7 506.3C66 510 61.1 512 56 512s-10-2-13.7-5.7L5.7 469.7C2 466 0 461.1 0 456s2-10 5.7-13.7L79 369 39 329c-6.9-6.9-8.9-17.2-5.2-26.2s12.5-14.8 22.2-14.8H200zM56 224c-9.7 0-18.5-5.8-22.2-14.8s-1.7-19.3 5.2-26.2l40-40L5.7 69.7C2 66 0 61.1 0 56s2-10 5.7-13.7L42.3 5.7C46 2 50.9 0 56 0s10 2 13.7 5.7L143 79l40-40c6.9-6.9 17.2-8.9 26.2-5.2s14.8 12.5 14.8 22.2V200c0 13.3-10.7 24-24 24H56z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "minus": { + "aliases": { + "names": [ + "subtract" + ], + "unicodes": { + "composite": [ + "2013", + "2212", + "2796" + ], + "secondary": [ + "10f068" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "En Dash", + "Minus Sign", + "collapse", + "delete", + "hide", + "math", + "minify", + "minus", + "negative", + "remove", + "sign", + "trash", + "−" + ] + }, + "unicode": "f068", + "label": "Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M416 256c0 17.7-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mitten": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7b5" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing", + "cold", + "glove", + "hands", + "knitted", + "seasonal", + "warmth" + ] + }, + "unicode": "f7b5", + "label": "Mitten", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 384H64L5.4 178.9C1.8 166.4 0 153.4 0 140.3C0 62.8 62.8 0 140.3 0h3.4c66 0 123.5 44.9 139.5 108.9l31.4 125.8 17.6-20.1C344.8 200.2 362.9 192 382 192h2.8c34.9 0 63.3 28.3 63.3 63.3c0 15.9-6 31.2-16.8 42.9L352 384zM32 448c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mix": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3cb", + "label": "Mix", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mixcloud": { + "changes": [ + "4.5.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f289", + "label": "Mixcloud", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M212.98 346.566H179.789V195.114L185.973 173.47H175.262L137.127 346.566H76.1069L37.7323 173.47H27.276L33.1913 195.114V346.566H0V165H65.6506L102.248 338.096H110.747L147.329 165H212.98L212.98 346.566ZM544.459 283.589L458.434 345.655V307.534L531.329 255.776L458.434 204.017V165.896L544.459 228.231H553.721L640 165.896V204.017L566.866 255.776L640 307.549V345.655L553.721 283.589H544.459ZM430.157 272.311H248.113V239.255H430.157V272.311Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mixer": { + "changes": [ + "5.12.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e056", + "label": "Mixer", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M114.57,76.07a45.71,45.71,0,0,0-67.51-6.41c-17.58,16.18-19,43.52-4.75,62.77l91.78,123L41.76,379.58c-14.23,19.25-13.11,46.59,4.74,62.77A45.71,45.71,0,0,0,114,435.94L242.89,262.7a12.14,12.14,0,0,0,0-14.23ZM470.24,379.58,377.91,255.45l91.78-123c14.22-19.25,12.83-46.59-4.75-62.77a45.71,45.71,0,0,0-67.51,6.41l-128,172.12a12.14,12.14,0,0,0,0,14.23L398,435.94a45.71,45.71,0,0,0,67.51,6.41C483.35,426.17,484.47,398.83,470.24,379.58Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mizuni": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3cc", + "label": "Mizuni", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "mobile": { + "aliases": { + "names": [ + "mobile-android", + "mobile-phone" + ], + "unicodes": { + "composite": [ + "1f4f1" + ], + "secondary": [ + "10f3ce" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "android", + "call", + "cell", + "cell phone", + "device", + "mobile", + "mobile phone", + "number", + "phone", + "screen", + "telephone", + "text" + ] + }, + "unicode": "f3ce", + "label": "Mobile", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zm80 432h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mobile-button": { + "aliases": { + "unicodes": { + "secondary": [ + "10f10b" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "call", + "cell phone", + "device", + "iphone", + "number", + "screen", + "telephone" + ] + }, + "unicode": "f10b", + "label": "Mobile button", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM176 400a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mobile-retro": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cellphone", + "cellular", + "phone" + ] + }, + "unicode": "e527", + "label": "Mobile Retro", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H256c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm64 96v64c0 17.7 14.3 32 32 32H224c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32zM80 352a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm24 56a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm56-56a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm24 56a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm56-56a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm24 56a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM128 48c-8.8 0-16 7.2-16 16s7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16H128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mobile-screen": { + "aliases": { + "names": [ + "mobile-android-alt" + ], + "unicodes": { + "secondary": [ + "10f3cf" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "android", + "call", + "cell phone", + "device", + "number", + "screen", + "telephone", + "text" + ] + }, + "unicode": "f3cf", + "label": "Mobile screen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H288c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM128 448c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16H144c-8.8 0-16 7.2-16 16zM288 64H64V384H288V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mobile-screen-button": { + "aliases": { + "names": [ + "mobile-alt" + ], + "unicodes": { + "secondary": [ + "10f3cd" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "call", + "cell phone", + "device", + "iphone", + "number", + "screen", + "telephone" + ] + }, + "unicode": "f3cd", + "label": "Mobile Screen Button", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H288c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM208 448a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM288 64H64V384H288V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "modx": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f285", + "label": "MODX", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "monero": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d0", + "label": "Monero", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "money-bill": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0d6" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f0d6", + "label": "Money Bill", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm64 320H64V320c35.3 0 64 28.7 64 64zM64 192V128h64c0 35.3-28.7 64-64 64zM448 384c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM288 160a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bill-1": { + "aliases": { + "names": [ + "money-bill-alt" + ], + "unicodes": { + "secondary": [ + "10f3d1" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f3d1", + "label": "Money Bill 1", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm64 320H64V320c35.3 0 64 28.7 64 64zM64 192V128h64c0 35.3-28.7 64-64 64zM448 384c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM176 256a112 112 0 1 1 224 0 112 112 0 1 1 -224 0zm76-48c0 9.7 6.9 17.7 16 19.6V276h-4c-11 0-20 9-20 20s9 20 20 20h24 24c11 0 20-9 20-20s-9-20-20-20h-4V208c0-11-9-20-20-20H272c-11 0-20 9-20 20z" + }, + "regular": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 112c0 35.3-28.7 64-64 64V336c35.3 0 64 28.7 64 64H464c0-35.3 28.7-64 64-64V176c-35.3 0-64-28.7-64-64H112zM0 128C0 92.7 28.7 64 64 64H512c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM176 256a112 112 0 1 1 224 0 112 112 0 1 1 -224 0zm80-48c0 8.8 7.2 16 16 16v64h-8c-8.8 0-16 7.2-16 16s7.2 16 16 16h24 24c8.8 0 16-7.2 16-16s-7.2-16-16-16h-8V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "money-bill-1-wave": { + "aliases": { + "names": [ + "money-bill-wave-alt" + ], + "unicodes": { + "secondary": [ + "10f53b" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f53b", + "label": "Money Bill 1 Wave", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 112.5V422.3c0 18 10.1 35 27 41.3c87 32.5 174 10.3 261-11.9c79.8-20.3 159.6-40.7 239.3-18.9c23 6.3 48.7-9.5 48.7-33.4V89.7c0-18-10.1-35-27-41.3C462 15.9 375 38.1 288 60.3C208.2 80.6 128.4 100.9 48.7 79.1C25.6 72.8 0 88.6 0 112.5zM128 416H64V352c35.3 0 64 28.7 64 64zM64 224V160h64c0 35.3-28.7 64-64 64zM448 352c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM384 256c0 61.9-43 112-96 112s-96-50.1-96-112s43-112 96-112s96 50.1 96 112zM252 208c0 9.7 6.9 17.7 16 19.6V276h-4c-11 0-20 9-20 20s9 20 20 20h24 24c11 0 20-9 20-20s-9-20-20-20h-4V208c0-11-9-20-20-20H272c-11 0-20 9-20 20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bill-transfer": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "conversion", + "deposit", + "money", + "transfer", + "withdrawal" + ] + }, + "unicode": "e528", + "label": "Money Bill Transfer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M535 41c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l64 64c4.5 4.5 7 10.6 7 17s-2.5 12.5-7 17l-64 64c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l23-23L384 112c-13.3 0-24-10.7-24-24s10.7-24 24-24l174.1 0L535 41zM105 377l-23 23L256 400c13.3 0 24 10.7 24 24s-10.7 24-24 24L81.9 448l23 23c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L7 441c-4.5-4.5-7-10.6-7-17s2.5-12.5 7-17l64-64c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM96 64H337.9c-3.7 7.2-5.9 15.3-5.9 24c0 28.7 23.3 52 52 52l117.4 0c-4 17 .6 35.5 13.8 48.8c20.3 20.3 53.2 20.3 73.5 0L608 169.5V384c0 35.3-28.7 64-64 64H302.1c3.7-7.2 5.9-15.3 5.9-24c0-28.7-23.3-52-52-52l-117.4 0c4-17-.6-35.5-13.8-48.8c-20.3-20.3-53.2-20.3-73.5 0L32 342.5V128c0-35.3 28.7-64 64-64zm64 64H96v64c35.3 0 64-28.7 64-64zM544 320c-35.3 0-64 28.7-64 64h64V320zM320 352a96 96 0 1 0 0-192 96 96 0 1 0 0 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bill-trend-up": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "bonds", + "inflation", + "market", + "stocks", + "trade" + ] + }, + "unicode": "e529", + "label": "Money Bill Trend Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M470.7 9.4c3 3.1 5.3 6.6 6.9 10.3s2.4 7.8 2.4 12.2l0 .1v0 96c0 17.7-14.3 32-32 32s-32-14.3-32-32V109.3L310.6 214.6c-11.8 11.8-30.8 12.6-43.5 1.7L176 138.1 84.8 216.3c-13.4 11.5-33.6 9.9-45.1-3.5s-9.9-33.6 3.5-45.1l112-96c12-10.3 29.7-10.3 41.7 0l89.5 76.7L370.7 64H352c-17.7 0-32-14.3-32-32s14.3-32 32-32h96 0c8.8 0 16.8 3.6 22.6 9.3l.1 .1zM0 304c0-26.5 21.5-48 48-48H464c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V304zM48 416v48H96c0-26.5-21.5-48-48-48zM96 304H48v48c26.5 0 48-21.5 48-48zM464 416c-26.5 0-48 21.5-48 48h48V416zM416 304c0 26.5 21.5 48 48 48V304H416zm-96 80a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bill-wave": { + "aliases": { + "unicodes": { + "secondary": [ + "10f53a" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f53a", + "label": "Money Bill Wave", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 112.5V422.3c0 18 10.1 35 27 41.3c87 32.5 174 10.3 261-11.9c79.8-20.3 159.6-40.7 239.3-18.9c23 6.3 48.7-9.5 48.7-33.4V89.7c0-18-10.1-35-27-41.3C462 15.9 375 38.1 288 60.3C208.2 80.6 128.4 100.9 48.7 79.1C25.6 72.8 0 88.6 0 112.5zM288 352c-44.2 0-80-43-80-96s35.8-96 80-96s80 43 80 96s-35.8 96-80 96zM64 352c35.3 0 64 28.7 64 64H64V352zm64-208c0 35.3-28.7 64-64 64V144h64zM512 304v64H448c0-35.3 28.7-64 64-64zM448 96h64v64c-35.3 0-64-28.7-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bill-wheat": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agribusiness", + "agriculture", + "farming", + "food", + "livelihood", + "subsidy" + ] + }, + "unicode": "e52a", + "label": "Money Bill Wheat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 0c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80c0-8.8 7.2-16 16-16zM56 16h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56C42.7 64 32 53.3 32 40s10.7-24 24-24zM24 88H136c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24S10.7 88 24 88zm8 96c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24zM272 16c0-8.8 7.2-16 16-16c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80zM400 0c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80c0-8.8 7.2-16 16-16zm80 144c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM352 128c8.8 0 16 7.2 16 16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-96 16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM0 304c0-26.5 21.5-48 48-48H464c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V304zM48 416v48H96c0-26.5-21.5-48-48-48zM96 304H48v48c26.5 0 48-21.5 48-48zM464 416c-26.5 0-48 21.5-48 48h48V416zM416 304c0 26.5 21.5 48 48 48V304H416zm-96 80a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-bills": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atm", + "cash", + "money", + "moolah" + ] + }, + "unicode": "e1f3", + "label": "Money Bills", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 96V320c0 35.3 28.7 64 64 64H576c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H160c-35.3 0-64 28.7-64 64zm64 160c35.3 0 64 28.7 64 64H160V256zM224 96c0 35.3-28.7 64-64 64V96h64zM576 256v64H512c0-35.3 28.7-64 64-64zM512 96h64v64c-35.3 0-64-28.7-64-64zM288 208a80 80 0 1 1 160 0 80 80 0 1 1 -160 0zM48 120c0-13.3-10.7-24-24-24S0 106.7 0 120V360c0 66.3 53.7 120 120 120H520c13.3 0 24-10.7 24-24s-10.7-24-24-24H120c-39.8 0-72-32.2-72-72V120z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f53c" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank check", + "buy", + "checkout", + "cheque", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f53c", + "label": "Money Check", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm48 160H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zM96 336c0-8.8 7.2-16 16-16H464c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zM376 160h80c13.3 0 24 10.7 24 24v48c0 13.3-10.7 24-24 24H376c-13.3 0-24-10.7-24-24V184c0-13.3 10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "money-check-dollar": { + "aliases": { + "names": [ + "money-check-alt" + ], + "unicodes": { + "secondary": [ + "10f53d" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank check", + "buy", + "checkout", + "cheque", + "money", + "payment", + "price", + "purchase" + ] + }, + "unicode": "f53d", + "label": "Money Check Dollar", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zM272 192H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H272c-8.8 0-16-7.2-16-16s7.2-16 16-16zM256 304c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H272c-8.8 0-16-7.2-16-16zM164 152v13.9c7.5 1.2 14.6 2.9 21.1 4.7c10.7 2.8 17 13.8 14.2 24.5s-13.8 17-24.5 14.2c-11-2.9-21.6-5-31.2-5.2c-7.9-.1-16 1.8-21.5 5c-4.8 2.8-6.2 5.6-6.2 9.3c0 1.8 .1 3.5 5.3 6.7c6.3 3.8 15.5 6.7 28.3 10.5l.7 .2c11.2 3.4 25.6 7.7 37.1 15c12.9 8.1 24.3 21.3 24.6 41.6c.3 20.9-10.5 36.1-24.8 45c-7.2 4.5-15.2 7.3-23.2 9V360c0 11-9 20-20 20s-20-9-20-20V345.4c-10.3-2.2-20-5.5-28.2-8.4l0 0 0 0c-2.1-.7-4.1-1.4-6.1-2.1c-10.5-3.5-16.1-14.8-12.6-25.3s14.8-16.1 25.3-12.6c2.5 .8 4.9 1.7 7.2 2.4c13.6 4.6 24 8.1 35.1 8.5c8.6 .3 16.5-1.6 21.4-4.7c4.1-2.5 6-5.5 5.9-10.5c0-2.9-.8-5-5.9-8.2c-6.3-4-15.4-6.9-28-10.7l-1.7-.5c-10.9-3.3-24.6-7.4-35.6-14c-12.7-7.7-24.6-20.5-24.7-40.7c-.1-21.1 11.8-35.7 25.8-43.9c6.9-4.1 14.5-6.8 22.2-8.5V152c0-11 9-20 20-20s20 9 20 20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "monument": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5a6" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "historic", + "landmark", + "memorable" + ] + }, + "unicode": "f5a6", + "label": "Monument", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M180.7 4.7c6.2-6.2 16.4-6.2 22.6 0l80 80c2.5 2.5 4.1 5.8 4.6 9.3l40.2 322H55.9L96.1 94c.4-3.5 2-6.8 4.6-9.3l80-80zM152 272c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H152zM32 448H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "moon": { + "aliases": { + "unicodes": { + "composite": [ + "1f319", + "23fe" + ], + "secondary": [ + "10f186" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Power Sleep Symbol", + "contrast", + "crescent", + "crescent moon", + "dark", + "lunar", + "moon", + "night" + ] + }, + "unicode": "f186", + "label": "Moon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M223.5 32C100 32 0 132.3 0 256S100 480 223.5 480c60.6 0 115.5-24.2 155.8-63.4c5-4.9 6.3-12.5 3.1-18.7s-10.1-9.7-17-8.5c-9.8 1.7-19.8 2.6-30.1 2.6c-96.9 0-175.5-78.8-175.5-176c0-65.8 36-123.1 89.3-153.3c6.1-3.5 9.2-10.5 7.7-17.3s-7.3-11.9-14.3-12.5c-6.3-.5-12.6-.8-19-.8z" + }, + "regular": { + "lastModified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M144.7 98.7c-21 34.1-33.1 74.3-33.1 117.3c0 98 62.8 181.4 150.4 211.7c-12.4 2.8-25.3 4.3-38.6 4.3C126.6 432 48 353.3 48 256c0-68.9 39.4-128.4 96.8-157.3zm62.1-66C91.1 41.2 0 137.9 0 256C0 379.7 100 480 223.5 480c47.8 0 92-15 128.4-40.6c1.9-1.3 3.7-2.7 5.5-4c4.8-3.6 9.4-7.4 13.9-11.4c2.7-2.4 5.3-4.8 7.9-7.3c5-4.9 6.3-12.5 3.1-18.7s-10.1-9.7-17-8.5c-3.7 .6-7.4 1.2-11.1 1.6c-5 .5-10.1 .9-15.3 1c-1.2 0-2.5 0-3.7 0c-.1 0-.2 0-.3 0c-96.8-.2-175.2-78.9-175.2-176c0-54.8 24.9-103.7 64.1-136c1-.9 2.1-1.7 3.2-2.6c4-3.2 8.2-6.2 12.5-9c3.1-2 6.3-4 9.6-5.8c6.1-3.5 9.2-10.5 7.7-17.3s-7.3-11.9-14.3-12.5c-3.6-.3-7.1-.5-10.7-.6c-2.7-.1-5.5-.1-8.2-.1c-3.3 0-6.5 .1-9.8 .2c-2.3 .1-4.6 .2-6.9 .4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "mortar-pestle": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5a7" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crush", + "culinary", + "grind", + "medical", + "mix", + "pharmacy", + "prescription", + "spices" + ] + }, + "unicode": "f5a7", + "label": "Mortar Pestle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504.3 11.1C493.3-1.6 474.5-3.7 461 6.2L252.3 160H397.3L502.6 54.6c11.8-11.8 12.6-30.8 1.6-43.5zM32 192c-17.7 0-32 14.3-32 32s14.3 32 32 32c0 82.5 43.4 147.7 123.9 176.2c-11.1 13.9-19.4 30.3-23.9 48.1C127.6 497.4 142.3 512 160 512H352c17.7 0 32.4-14.6 28.1-31.7c-4.5-17.8-12.8-34.1-23.9-48.1C436.6 403.7 480 338.5 480 256c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mosque": { + "aliases": { + "unicodes": { + "composite": [ + "1f54c" + ], + "secondary": [ + "10f678" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Muslim", + "building", + "islam", + "landmark", + "mosque", + "muslim", + "religion" + ] + }, + "unicode": "f678", + "label": "Mosque", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M400 0c5 0 9.8 2.4 12.8 6.4c34.7 46.3 78.1 74.9 133.5 111.5l0 0 0 0c5.2 3.4 10.5 7 16 10.6c28.9 19.2 45.7 51.7 45.7 86.1c0 28.6-11.3 54.5-29.8 73.4H221.8c-18.4-19-29.8-44.9-29.8-73.4c0-34.4 16.7-66.9 45.7-86.1c5.4-3.6 10.8-7.1 16-10.6l0 0 0 0C309.1 81.3 352.5 52.7 387.2 6.4c3-4 7.8-6.4 12.8-6.4zM288 512V440c0-13.3-10.7-24-24-24s-24 10.7-24 24v72H192c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32H608c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H560V440c0-13.3-10.7-24-24-24s-24 10.7-24 24v72H448V454c0-19-8.4-37-23-49.2L400 384l-25 20.8C360.4 417 352 435 352 454v58H288zM70.4 5.2c5.7-4.3 13.5-4.3 19.2 0l16 12C139.8 42.9 160 83.2 160 126v2H0v-2C0 83.2 20.2 42.9 54.4 17.2l16-12zM0 160H160V296.6c-19.1 11.1-32 31.7-32 55.4V480c0 9.6 2.1 18.6 5.8 26.8c-6.6 3.4-14 5.2-21.8 5.2H48c-26.5 0-48-21.5-48-48V176 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mosquito": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bite", + "bug", + "mosquito", + "west nile" + ] + }, + "unicode": "e52b", + "label": "Mosquito", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M463.7 505.9c9.8-8.9 10.7-24.3 2.1-34.3l-42.1-49 0-54.7c0-5.5-1.8-10.8-5.1-15.1L352 266.3l0-.3L485.4 387.8C542.4 447.6 640 405.2 640 320.6c0-47.9-34-88.3-79.4-94.2l-153-23.9 40.8-40.9c7.8-7.8 9.4-20.1 3.9-29.8L428.5 90.1l38.2-50.9c8-10.6 6.1-25.9-4.3-34.1s-25.2-6.3-33.2 4.4l-48 63.9c-5.9 7.9-6.6 18.6-1.7 27.2L402.2 140 352 190.3l0-38.2c0-14.9-10.2-27.4-24-31l0-57.2c0-4.4-3.6-8-8-8s-8 3.6-8 8l0 57.2c-13.8 3.6-24 16.1-24 31l0 38.1L237.8 140l22.6-39.5c4.9-8.6 4.2-19.3-1.7-27.2l-48-63.9c-8-10.6-22.8-12.6-33.2-4.4s-12.2 23.5-4.3 34.1l38.2 50.9-23.9 41.7c-5.5 9.7-3.9 22 3.9 29.8l40.8 40.9-153 23.9C34 232.3 0 272.7 0 320.6c0 84.6 97.6 127 154.6 67.1L288 266l0 .3-66.5 86.4c-3.3 4.3-5.1 9.6-5.1 15.1l0 54.7-42.1 49c-8.6 10.1-7.7 25.5 2.1 34.3s24.7 7.9 33.4-2.1l48-55.9c3.8-4.4 5.9-10.2 5.9-16.1l0-55.4L288 344.7l0 63.1c0 17.7 14.3 32 32 32s32-14.3 32-32l0-63.1 24.3 31.6 0 55.4c0 5.9 2.1 11.7 5.9 16.1l48 55.9c8.6 10.1 23.6 11 33.4 2.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mosquito-net": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bite", + "malaria", + "mosquito", + "net" + ] + }, + "unicode": "e52c", + "label": "Mosquito Net", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M168.8 462.3c-7.9-4-11.1-13.6-7.2-21.5L192 380.2l0-44.2c0-4.2 1.7-8.3 4.7-11.3L256 265.4V242.2L139.2 344C87.8 395.3 0 358.9 0 286.3c0-41.1 30.6-75.8 71.4-80.9l159.9-23.9-49.6-41.3c-5.1-4.2-7-11.1-4.9-17.4l13.9-41.7-29-58.1c-4-7.9-.7-17.5 7.2-21.5s17.5-.7 21.5 7.2l32 64c1.9 3.8 2.2 8.2 .9 12.2l-12.5 37.6L256 160.5V137.9c0-14.9 10.1-27.3 23.8-31V63.7c0-4.5 3.7-8.2 8.2-8.2s8.2 3.7 8.2 8.2V107c13.7 3.6 23.8 16.1 23.8 31v22.6l45.4-37.8L352.8 85.1c-1.3-4-1-8.4 .9-12.2l32-64c4-7.9 13.6-11.1 21.5-7.2s11.1 13.6 7.2 21.5l-29 58.1 13.9 41.7c2.1 6.2 .1 13.1-4.9 17.4l-49.6 41.3 159.9 23.9c22.5 2.8 41.8 14.6 54.7 31.4c-2.7 2.6-5.2 5.4-7.3 8.6c-8.6-12.9-23.3-21.5-40-21.5s-31.4 8.5-40 21.5c-8.6-12.9-23.3-21.5-40-21.5c-21.7 0-40 14.3-45.9 34.1c-10.7 3.2-19.8 10.1-25.9 19.2l-40.2-35v23.1l32.4 32.4c-.3 2-.4 4.1-.4 6.2c0 16.7 8.5 31.4 21.5 40c-4 2.6-7.5 5.9-10.6 9.5L320 310.6v50c0 17.7-14.3 32-32 32s-32-14.3-32-32v-50l-32 32 0 41.4c0 2.5-.6 4.9-1.7 7.2l-32 64c-4 7.9-13.6 11.1-21.5 7.2zM512 256c8.8 0 16 7.2 16 16v16h48V272c0-8.8 7.2-16 16-16s16 7.2 16 16v16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H608v48h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H608v48h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H608v16c0 8.8-7.2 16-16 16s-16-7.2-16-16V480H528v16c0 8.8-7.2 16-16 16s-16-7.2-16-16V480H448v16c0 8.8-7.2 16-16 16s-16-7.2-16-16V480H400c-8.8 0-16-7.2-16-16s7.2-16 16-16h16V400H400c-8.8 0-16-7.2-16-16s7.2-16 16-16h16V320H400c-8.8 0-16-7.2-16-16s7.2-16 16-16h16V272c0-8.8 7.2-16 16-16s16 7.2 16 16v16h48V272c0-8.8 7.2-16 16-16zm16 112h48V320H528v48zm0 80h48V400H528v48zM448 320v48h48V320H448zm0 80v48h48V400H448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "motorcycle": { + "aliases": { + "unicodes": { + "composite": [ + "1f3cd" + ], + "secondary": [ + "10f21c" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bike", + "machine", + "motorcycle", + "racing", + "transportation", + "vehicle" + ] + }, + "unicode": "f21c", + "label": "Motorcycle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M280 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h57.7l16.4 30.3L256 192l-45.3-45.3c-12-12-28.3-18.7-45.3-18.7H64c-17.7 0-32 14.3-32 32v32h96c88.4 0 160 71.6 160 160c0 11-1.1 21.7-3.2 32h70.4c-2.1-10.3-3.2-21-3.2-32c0-52.2 25-98.6 63.7-127.8l15.4 28.6C402.4 276.3 384 312 384 352c0 70.7 57.3 128 128 128s128-57.3 128-128s-57.3-128-128-128c-13.5 0-26.5 2.1-38.7 6L418.2 128H480c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H459.6c-7.5 0-14.7 2.6-20.5 7.4L391.7 78.9l-14-26c-7-12.9-20.5-21-35.2-21H280zM462.7 311.2l28.2 52.2c6.3 11.7 20.9 16 32.5 9.7s16-20.9 9.7-32.5l-28.2-52.2c2.3-.3 4.7-.4 7.1-.4c35.3 0 64 28.7 64 64s-28.7 64-64 64s-64-28.7-64-64c0-15.5 5.5-29.7 14.7-40.8zM187.3 376c-9.5 23.5-32.5 40-59.3 40c-35.3 0-64-28.7-64-64s28.7-64 64-64c26.9 0 49.9 16.5 59.3 40h66.4C242.5 268.8 190.5 224 128 224C57.3 224 0 281.3 0 352s57.3 128 128 128c62.5 0 114.5-44.8 125.8-104H187.3zM128 384a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mound": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barrier", + "hill", + "pitcher", + "speedbump" + ] + }, + "unicode": "e52d", + "label": "Mound", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M113.1 179.2C142.8 127.7 197.6 96 257 96s114.2 31.7 143.9 83.2L509.4 368c12.3 21.3-3.1 48-27.7 48H32.3c-24.6 0-40-26.6-27.7-48L113.1 179.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mountain": { + "aliases": { + "unicodes": { + "composite": [ + "1f3d4" + ], + "secondary": [ + "10f6fc" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "glacier", + "hiking", + "hill", + "landscape", + "mountain", + "snow", + "snow-capped mountain", + "travel", + "view" + ] + }, + "unicode": "f6fc", + "label": "Mountain", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669918857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 32c12.5 0 24.1 6.4 30.7 17L503.4 394.4c5.6 8.9 8.6 19.2 8.6 29.7c0 30.9-25 55.9-55.9 55.9H55.9C25 480 0 455 0 424.1c0-10.5 3-20.8 8.6-29.7L225.2 49c6.6-10.6 18.3-17 30.8-17zm65 192L256 120.4 176.9 246.5l18.3 24.4c6.4 8.5 19.2 8.5 25.6 0l25.6-34.1c6-8.1 15.5-12.8 25.6-12.8h49z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mountain-city": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "location", + "rural", + "urban" + ] + }, + "unicode": "e52e", + "label": "Mountain City", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M336 0c-26.5 0-48 21.5-48 48v92.1l71.4 118.4c2.5-1.6 5.4-2.5 8.6-2.5h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-3.5l73.8 122.4c12.4 20.6 12.9 46.3 1.2 67.3c-.4 .8-.9 1.6-1.4 2.3H592c26.5 0 48-21.5 48-48V240c0-26.5-21.5-48-48-48H568V120c0-13.3-10.7-24-24-24s-24 10.7-24 24v72H480V48c0-26.5-21.5-48-48-48H336zm32 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V80c0-8.8 7.2-16 16-16zM352 176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V176zm160 96c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V272zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16zM224 188.9L283.8 288H223l-48 64-24.6-41.2L224 188.9zm29.4-44.2C247.1 134.3 236 128 224 128s-23.1 6.3-29.4 16.7L5.1 458.9c-6.5 10.8-6.7 24.3-.7 35.3S22 512 34.5 512H413.5c12.5 0 24-6.8 30.1-17.8s5.8-24.5-.7-35.3L253.4 144.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mountain-sun": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "country", + "hiking", + "landscape", + "rural", + "travel", + "view" + ] + }, + "unicode": "e52f", + "label": "Mountain Sun", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M560 160A80 80 0 1 0 560 0a80 80 0 1 0 0 160zM55.9 512H381.1h75H578.9c33.8 0 61.1-27.4 61.1-61.1c0-11.2-3.1-22.2-8.9-31.8l-132-216.3C495 196.1 487.8 192 480 192s-15 4.1-19.1 10.7l-48.2 79L286.8 81c-6.6-10.6-18.3-17-30.8-17s-24.1 6.4-30.8 17L8.6 426.4C3 435.3 0 445.6 0 456.1C0 487 25 512 55.9 512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mug-hot": { + "aliases": { + "unicodes": { + "composite": [ + "2615" + ], + "secondary": [ + "10f7b6" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beverage", + "caliente", + "cocoa", + "coffee", + "cup", + "drink", + "holiday", + "hot", + "hot beverage", + "hot chocolate", + "steam", + "steaming", + "tea", + "warmth" + ] + }, + "unicode": "f7b6", + "label": "Mug Hot", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M88 0C74.7 0 64 10.7 64 24c0 38.9 23.4 59.4 39.1 73.1l1.1 1C120.5 112.3 128 119.9 128 136c0 13.3 10.7 24 24 24s24-10.7 24-24c0-38.9-23.4-59.4-39.1-73.1l-1.1-1C119.5 47.7 112 40.1 112 24c0-13.3-10.7-24-24-24zM32 192c-17.7 0-32 14.3-32 32V416c0 53 43 96 96 96H288c53 0 96-43 96-96h16c61.9 0 112-50.1 112-112s-50.1-112-112-112H352 32zm352 64h16c26.5 0 48 21.5 48 48s-21.5 48-48 48H384V256zM224 24c0-13.3-10.7-24-24-24s-24 10.7-24 24c0 38.9 23.4 59.4 39.1 73.1l1.1 1C232.5 112.3 240 119.9 240 136c0 13.3 10.7 24 24 24s24-10.7 24-24c0-38.9-23.4-59.4-39.1-73.1l-1.1-1C231.5 47.7 224 40.1 224 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "mug-saucer": { + "aliases": { + "names": [ + "coffee" + ], + "unicodes": { + "secondary": [ + "10f0f4" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beverage", + "breakfast", + "cafe", + "drink", + "fall", + "morning", + "mug", + "seasonal", + "tea" + ] + }, + "unicode": "f0f4", + "label": "Mug Saucer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 64c0-17.7 14.3-32 32-32H448h64c70.7 0 128 57.3 128 128s-57.3 128-128 128H480c0 53-43 96-96 96H192c-53 0-96-43-96-96V64zM480 224h32c35.3 0 64-28.7 64-64s-28.7-64-64-64H480V224zM32 416H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "music": { + "aliases": { + "unicodes": { + "composite": [ + "1f3b5" + ], + "secondary": [ + "10f001" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.2.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "lyrics", + "melody", + "music", + "musical note", + "note", + "sing", + "sound" + ] + }, + "unicode": "f001", + "label": "Music", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M499.1 6.3c8.1 6 12.9 15.6 12.9 25.7v72V368c0 44.2-43 80-96 80s-96-35.8-96-80s43-80 96-80c11.2 0 22 1.6 32 4.6V147L192 223.8V432c0 44.2-43 80-96 80s-96-35.8-96-80s43-80 96-80c11.2 0 22 1.6 32 4.6V200 128c0-14.1 9.3-26.6 22.8-30.7l320-96c9.7-2.9 20.2-1.1 28.3 5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "n": { + "aliases": { + "unicodes": { + "composite": [ + "6e" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter N", + "Latin Small Letter N", + "letter", + "nay", + "no" + ] + }, + "unicode": "4e", + "label": "N", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M21.1 33.9c12.7-4.6 26.9-.7 35.5 9.6L320 359.6V64c0-17.7 14.3-32 32-32s32 14.3 32 32V448c0 13.5-8.4 25.5-21.1 30.1s-26.9 .7-35.5-9.6L64 152.4V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 50.5 8.4 38.5 21.1 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "naira-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Naira Sign", + "currency" + ] + }, + "unicode": "e1f6", + "label": "Naira Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M122.6 46.3c-7.8-11.7-22.4-17-35.9-12.9S64 49.9 64 64V256H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V320H228.2l97.2 145.8c7.8 11.7 22.4 17 35.9 12.9s22.7-16.5 22.7-30.6V320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H384V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V256H262.5L122.6 46.3zM305.1 320H320v22.3L305.1 320zM185.5 256H128V169.7L185.5 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "napster": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d2", + "label": "Napster", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "neos": { + "changes": [ + "5.2.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f612", + "label": "Neos", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M415.44 512h-95.11L212.12 357.46v91.1L125.69 512H28V29.82L68.47 0h108.05l123.74 176.13V63.45L386.69 0h97.69v461.5zM38.77 35.27V496l72-52.88V194l215.5 307.64h84.79l52.35-38.17h-78.27L69 13zm82.54 466.61l80-58.78v-101l-79.76-114.4v220.94L49 501.89h72.34zM80.63 10.77l310.6 442.57h82.37V10.77h-79.75v317.56L170.91 10.77zM311 191.65l72 102.81V15.93l-72 53v122.72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "network-wired": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6ff" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "connect", + "ethernet", + "internet", + "intranet" + ] + }, + "unicode": "f6ff", + "label": "Network Wired", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321846, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 64H384v64H256V64zM240 0c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48h48v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96v32H80c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H240c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H192V288H448v32H400c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H560c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H512V288h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V192h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H240zM96 448V384H224v64H96zm320-64H544v64H416V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "neuter": { + "aliases": { + "unicodes": { + "composite": [ + "26b2" + ], + "secondary": [ + "10f22c" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Neuter", + "gender" + ] + }, + "unicode": "f22c", + "label": "Neuter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 176a112 112 0 1 1 224 0A112 112 0 1 1 64 176zM208 349.1c81.9-15 144-86.8 144-173.1C352 78.8 273.2 0 176 0S0 78.8 0 176c0 86.3 62.1 158.1 144 173.1V480c0 17.7 14.3 32 32 32s32-14.3 32-32V349.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "newspaper": { + "aliases": { + "unicodes": { + "composite": [ + "1f4f0" + ], + "secondary": [ + "10f1ea" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "article", + "editorial", + "headline", + "journal", + "journalism", + "news", + "newspaper", + "paper", + "press" + ] + }, + "unicode": "f1ea", + "label": "Newspaper", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 96c0-35.3 28.7-64 64-64H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H80c-44.2 0-80-35.8-80-80V128c0-17.7 14.3-32 32-32s32 14.3 32 32V400c0 8.8 7.2 16 16 16s16-7.2 16-16V96zm64 24v80c0 13.3 10.7 24 24 24H424c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24H184c-13.3 0-24 10.7-24 24zm0 184c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm160 0c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H336c-8.8 0-16 7.2-16 16zM160 400c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm160 0c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H336c-8.8 0-16 7.2-16 16z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M168 80c-13.3 0-24 10.7-24 24V408c0 8.4-1.4 16.5-4.1 24H440c13.3 0 24-10.7 24-24V104c0-13.3-10.7-24-24-24H168zM72 432c13.3 0 24-10.7 24-24V104c0-39.8 32.2-72 72-72H440c39.8 0 72 32.2 72 72V408c0 39.8-32.2 72-72 72H72c-39.8 0-72-32.2-72-72V112C0 98.7 10.7 88 24 88s24 10.7 24 24V408c0 13.3 10.7 24 24 24zM176 136c0-13.3 10.7-24 24-24H408c13.3 0 24 10.7 24 24v80c0 13.3-10.7 24-24 24H200c-13.3 0-24-10.7-24-24V136zm24 136h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24s10.7-24 24-24zm144 0h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H344c-13.3 0-24-10.7-24-24s10.7-24 24-24zM200 352h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24s10.7-24 24-24zm144 0h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H344c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "nfc-directional": { + "changes": [ + "6.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connect", + "data", + "near field communication", + "nfc", + "scan", + "signal", + "transfer", + "wireless" + ] + }, + "unicode": "e530", + "label": "NFC Directional", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M211.8 488.6C213.4 491.1 213.9 494.2 213.2 497.1C212.6 500 210.8 502.6 208.3 504.2C205.7 505.8 202.7 506.3 199.7 505.7C138.3 491.8 84.1 455.8 47.53 404.5C10.97 353.2-5.395 290.3 1.57 227.7C8.536 165 38.34 107.2 85.29 65.21C132.2 23.2 193-.0131 256 0C257.5 0 258.1 .2931 260.3 .8627C261.7 1.432 262.1 2.267 264 3.319C265.1 4.371 265.9 5.619 266.5 6.993C267 8.367 267.3 9.839 267.3 11.32V112.3L291.8 86.39C292.8 85.31 294 84.44 295.4 83.84C296.7 83.23 298.2 82.9 299.7 82.86C301.2 82.81 302.6 83.06 304 83.59C305.4 84.12 306.7 84.92 307.8 85.94C308.8 86.96 309.7 88.18 310.3 89.54C310.9 90.89 311.3 92.35 311.3 93.84C311.3 95.32 311.1 96.8 310.6 98.18C310 99.57 309.2 100.8 308.2 101.9L264.2 148.5C263.1 149.6 261.9 150.5 260.5 151.1C259 151.7 257.5 152 255.1 152C254.5 152 252.9 151.7 251.5 151.1C250.1 150.5 248.8 149.6 247.8 148.5L203.7 101.9C201.7 99.74 200.6 96.83 200.7 93.84C200.7 90.84 202 87.1 204.2 85.94C206.4 83.88 209.3 82.77 212.3 82.86C215.3 82.94 218.1 84.21 220.2 86.39L244.7 112.4V22.89C188.3 25.64 134.9 48.73 94.23 87.87C53.58 127 28.49 179.6 23.61 235.8C18.73 292 34.38 348.1 67.68 393.7C100.1 439.2 149.7 471.2 204.7 483.6C207.6 484.3 210.2 486.1 211.8 488.6L211.8 488.6zM171.4 126.1C170.6 127.4 169.5 128.5 168.3 129.3C147.8 143.2 131.1 161.9 119.5 183.8C107.9 205.7 101.8 230.1 101.8 254.9C101.8 279.7 107.9 304.1 119.5 325.1C131.1 347.9 147.8 366.6 168.3 380.5C170.8 382.2 172.5 384.8 173 387.8C173.6 390.7 172.1 393.8 171.3 396.2C169.6 398.7 166.1 400.4 164 400.1C161.1 401.5 158 400.9 155.6 399.2C132 383.2 112.8 361.7 99.46 336.5C86.15 311.4 79.19 283.4 79.19 254.9C79.19 226.5 86.15 198.4 99.46 173.3C112.8 148.1 132 126.6 155.6 110.6C156.8 109.8 158.2 109.2 159.6 108.8C161.1 108.5 162.6 108.5 164.1 108.8C165.5 109 166.9 109.6 168.2 110.4C169.5 111.2 170.5 112.3 171.4 113.5C172.2 114.7 172.8 116.1 173.1 117.6C173.4 119.1 173.4 120.6 173.1 122C172.8 123.5 172.3 124.9 171.4 126.1H171.4zM340.9 383.5C341.7 382.3 342.8 381.2 343.1 380.4V380.3C364.4 366.3 381.1 347.6 392.7 325.7C404.2 303.9 410.2 279.5 410.2 254.8C410.2 230.1 404.2 205.7 392.7 183.8C381.1 161.1 364.4 143.3 343.1 129.3C342.8 128.5 341.7 127.4 340.9 126.2C340.1 124.9 339.5 123.5 339.3 122.1C338.1 120.6 339 119.1 339.3 117.7C339.6 116.2 340.2 114.8 341 113.6C341.9 112.4 342.1 111.3 344.2 110.5C345.4 109.7 346.8 109.2 348.3 108.9C349.8 108.6 351.2 108.6 352.7 108.9C354.2 109.2 355.5 109.8 356.8 110.7C380.2 126.7 399.5 148.2 412.7 173.3C426 198.4 432.1 226.4 432.1 254.8C432.1 283.3 426 311.3 412.7 336.4C399.5 361.5 380.2 383 356.8 399C355.5 399.9 354.2 400.5 352.7 400.8C351.2 401.1 349.8 401.1 348.3 400.8C346.8 400.5 345.4 399.1 344.2 399.2C342.1 398.4 341.9 397.3 341 396.1C340.2 394.9 339.6 393.5 339.3 392C339 390.6 338.1 389.1 339.3 387.6C339.5 386.2 340.1 384.8 340.9 383.5V383.5zM312.3 6.307C368.5 19.04 418.7 50.28 455 95.01C485.4 132.6 504.6 178 510.3 226C515.9 274 507.9 322.7 487.1 366.3C466.2 409.9 433.5 446.8 392.6 472.6C351.7 498.3 304.4 512 256 512C254.5 512 253.1 511.7 251.7 511.1C250.3 510.6 249.1 509.7 248 508.7C246.1 507.6 246.1 506.4 245.6 505C245 503.6 244.7 502.2 244.7 500.7V401.5L220.2 427.5C218.1 429.7 215.3 430.1 212.3 431.1C209.3 431.2 206.4 430 204.2 427.1C202 425.9 200.7 423.1 200.7 420.1C200.6 417.1 201.7 414.2 203.7 412L247.8 365.4C249.1 363.2 252.9 362 255.1 362C259.1 362 262 363.2 264.2 365.4L308.2 412C310.3 414.2 311.4 417.1 311.3 420.1C311.2 423.1 309.9 425.9 307.8 427.1C305.6 430 302.7 431.2 299.7 431.1C296.7 430.1 293.8 429.7 291.8 427.5L267.3 401.6V489.1C323.7 486.3 377.1 463.3 417.8 424.1C458.5 384.1 483.6 332.4 488.5 276.2C493.3 219.1 477.7 163.9 444.4 118.3C411.1 72.75 362.4 40.79 307.4 28.36C305.9 28.03 304.6 27.42 303.3 26.57C302.1 25.71 301.1 24.63 300.3 23.37C299.5 22.12 298.1 20.72 298.7 19.26C298.5 17.8 298.5 16.3 298.8 14.85C299.2 13.41 299.8 12.04 300.6 10.82C301.5 9.61 302.6 8.577 303.8 7.784C305.1 6.99 306.5 6.451 307.9 6.198C309.4 5.945 310.9 5.982 312.3 6.307L312.3 6.307zM353.1 256.1C353.1 287.5 335.6 317.2 303.8 339.6C301.7 341.1 299 341.9 296.4 341.6C293.7 341.4 291.2 340.3 289.4 338.4L219.3 268.6C217.1 266.5 215.1 263.6 215.9 260.6C215.9 257.6 217.1 254.7 219.2 252.6C221.4 250.5 224.2 249.3 227.2 249.3C230.2 249.3 233.1 250.5 235.2 252.6L298.3 315.4C319.1 298.3 330.5 277.5 330.5 256.1C330.5 232.2 316.4 209.1 290.8 191C288.3 189.3 286.7 186.7 286.2 183.7C285.7 180.8 286.3 177.7 288.1 175.3C289.8 172.8 292.4 171.2 295.4 170.7C298.3 170.2 301.4 170.8 303.8 172.6C335.6 195 353.1 224.7 353.1 256.1V256.1zM216.7 341.5C213.7 342 210.7 341.3 208.2 339.6C176.5 317.2 158.1 287.5 158.1 256.1C158.1 224.7 176.5 195 208.2 172.6C210.4 171 213.1 170.3 215.7 170.5C218.4 170.8 220.8 171.9 222.7 173.8L292.8 243.6C294.9 245.7 296.1 248.6 296.1 251.6C296.1 254.6 294.1 257.4 292.8 259.6C290.7 261.7 287.8 262.9 284.9 262.9C281.9 262.9 278.1 261.7 276.9 259.6L213.8 196.7C192.9 214 181.6 234.7 181.6 256.1C181.6 279.1 195.7 303.1 221.3 321.1C223.7 322.9 225.4 325.5 225.9 328.5C226.4 331.4 225.7 334.4 224 336.9C222.3 339.3 219.6 341 216.7 341.5L216.7 341.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "nfc-symbol": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connect", + "data", + "near field communication", + "nfc", + "scan", + "signal", + "transfer", + "wireless" + ] + }, + "unicode": "e531", + "label": "Nfc Symbol", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M392.9 32.43C400.6 31.1 408.6 32.89 414.1 37.41C498.2 96.14 544 173.7 544 255.1C544 338.2 498.2 415.9 414.1 474.6C409.3 478.6 402.4 480.5 395.5 479.9C388.5 479.3 382 476.3 377.1 471.4L193.7 288.7C188.1 283.2 185 275.7 184.1 267.8C184.1 260 188.1 252.5 193.6 246.9C199.2 241.4 206.7 238.2 214.5 238.2C222.4 238.2 229.9 241.3 235.4 246.8L400.5 411.2C455.1 366.5 484.8 312 484.8 255.1C484.8 193.5 447.9 132.9 380.9 85.76C374.5 81.24 370.1 74.35 368.8 66.62C367.4 58.89 369.2 50.94 373.8 44.53C378.3 38.12 385.2 33.77 392.9 32.43V32.43zM186.9 479.6C179.2 480.9 171.3 479.1 164.8 474.6C81.67 415.9 35.84 338.2 35.84 255.1C35.84 173.7 81.67 96.14 164.8 37.41C170.5 33.4 177.4 31.53 184.4 32.12C191.3 32.71 197.8 35.72 202.7 40.63L386.1 223.3C391.7 228.8 394.8 236.3 394.8 244.2C394.9 251.1 391.8 259.5 386.2 265.1C380.7 270.6 373.2 273.8 365.3 273.8C357.5 273.8 349.1 270.7 344.4 265.2L179.3 100.7C124.7 145.9 95.03 199.9 95.03 255.1C95.03 318.5 131.9 379.1 198.1 426.2C205.4 430.8 209.7 437.6 211.1 445.4C212.4 453.1 210.6 461.1 206.1 467.5C201.6 473.9 194.7 478.2 186.9 479.6V479.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "nimblr": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5a8", + "label": "Nimblr", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M246.6 299.29c15.57 0 27.15 11.46 27.15 27s-11.62 27-27.15 27c-15.7 0-27.15-11.57-27.15-27s11.55-27 27.15-27zM113 326.25c0-15.61 11.68-27 27.15-27s27.15 11.46 27.15 27-11.47 27-27.15 27c-15.44 0-27.15-11.31-27.15-27M191.76 159C157 159 89.45 178.77 59.25 227L14 0v335.48C14 433.13 93.61 512 191.76 512s177.76-78.95 177.76-176.52S290.13 159 191.76 159zm0 308.12c-73.27 0-132.51-58.9-132.51-131.59s59.24-131.59 132.51-131.59 132.51 58.86 132.51 131.54S265 467.07 191.76 467.07z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "node": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f419", + "label": "Node.js", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "node-js": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d3", + "label": "Node.js JS", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "not-equal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f53e" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "compare", + "math" + ] + }, + "unicode": "f53e", + "label": "Not Equal", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M353.8 37.4c14.7 9.8 18.7 29.7 8.9 44.4L321.1 144H384c17.7 0 32 14.3 32 32s-14.3 32-32 32H278.5l-64 96H384c17.7 0 32 14.3 32 32s-14.3 32-32 32H171.8l-65.2 97.7c-9.8 14.7-29.7 18.7-44.4 8.9s-18.7-29.7-8.9-44.4L94.9 368H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H137.5l64-96H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H244.2l65.2-97.7c9.8-14.7 29.7-18.7 44.4-8.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "notdef": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "close", + "missing" + ] + }, + "unicode": "e1fe", + "label": "Notdef", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 390.3L153.5 256 64 121.7V390.3zM102.5 448H281.5L192 313.7 102.5 448zm128-192L320 390.3V121.7L230.5 256zM281.5 64H102.5L192 198.3 281.5 64zM0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "note-sticky": { + "aliases": { + "names": [ + "sticky-note" + ], + "unicodes": { + "composite": [ + "f24a" + ], + "secondary": [ + "10f249" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "message", + "note", + "paper", + "reminder", + "sticker" + ] + }, + "unicode": "f249", + "label": "Note Sticky", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H288V368c0-26.5 21.5-48 48-48H448V96c0-35.3-28.7-64-64-64H64zM448 352H402.7 336c-8.8 0-16 7.2-16 16v66.7V480l32-32 64-64 32-32z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H288V352c0-17.7 14.3-32 32-32h80V96c0-8.8-7.2-16-16-16H64zM288 480H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V320v5.5c0 17-6.7 33.3-18.7 45.3l-90.5 90.5c-12 12-28.3 18.7-45.3 18.7H288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "notes-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f481" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clipboard", + "doctor", + "ehr", + "health", + "history", + "records" + ] + }, + "unicode": "f481", + "label": "Notes Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 352V96c0-35.3 28.7-64 64-64H416c35.3 0 64 28.7 64 64V293.5c0 17-6.7 33.3-18.7 45.3l-58.5 58.5c-12 12-28.3 18.7-45.3 18.7H160c-35.3 0-64-28.7-64-64zM272 128c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V256h48c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H320V144c0-8.8-7.2-16-16-16H272zm24 336c13.3 0 24 10.7 24 24s-10.7 24-24 24H136C60.9 512 0 451.1 0 376V152c0-13.3 10.7-24 24-24s24 10.7 24 24l0 224c0 48.6 39.4 88 88 88H296z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "npm": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d4", + "label": "npm", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ns8": { + "changes": [ + "5.0.0", + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d5", + "label": "NS8", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M104.324,269.172h26.067V242.994H104.324Zm52.466-26.178-.055-26.178v-.941a39.325,39.325,0,0,0-78.644.941v.166h26.4v-.166a12.98,12.98,0,0,1,25.956,0v26.178Zm52.356,25.846a91.1,91.1,0,0,1-91.1,91.1h-.609a91.1,91.1,0,0,1-91.1-91.1H0v.166A117.33,117.33,0,0,0,117.44,386.28h.775A117.331,117.331,0,0,0,235.49,268.84V242.828H209.146Zm-157.233,0a65.362,65.362,0,0,0,130.723,0H156.292a39.023,39.023,0,0,1-78.035,0V242.883H51.968v-26.62A65.42,65.42,0,0,1,182.8,217.48v25.293h26.344V217.48a91.761,91.761,0,0,0-183.522,0v25.4H51.913Zm418.4-71.173c13.67,0,24.573,6.642,30.052,18.264l.719,1.549,23.245-11.511-.609-1.439c-8.025-19.26-28.5-31.27-53.407-31.27-23.134,0-43.611,11.4-50.972,28.447-.123,26.876-.158,23.9,0,24.85,4.7,11.013,14.555,19.37,28.668,24.241a102.033,102.033,0,0,0,19.813,3.984c5.479.72,10.626,1.384,15.829,3.1,6.364,2.1,10.46,5.257,12.84,9.851v9.851c-3.708,7.527-13.781,12.342-25.791,12.342-14.334,0-25.956-6.918-31.933-19.039l-.72-1.494L415.026,280.9l.553,1.439c7.915,19.426,29.609,32.044,55.289,32.044,23.632,0,44.608-11.4,52.3-28.447l.166-25.9-.166-.664c-4.87-11.014-15.219-19.647-28.944-24.241-7.693-2.712-14.335-3.6-20.7-4.427a83.777,83.777,0,0,1-14.832-2.878c-6.31-1.937-10.4-5.092-12.619-9.63v-8.412C449.45,202.427,458.969,197.667,470.315,197.667ZM287.568,311.344h26.067v-68.4H287.568Zm352.266-53.3c-2.933-6.254-8.3-12.01-15.441-16.714A37.99,37.99,0,0,0,637.4,226l.166-25.347-.166-.664C630.038,184,610.667,173.26,589.25,173.26S548.461,184,541.1,199.992l-.166,25.347.166.664a39.643,39.643,0,0,0,13.006,15.331c-7.2,4.7-12.508,10.46-15.441,16.714l-.166,28.889.166.72c7.582,15.994,27.893,26.731,50.585,26.731s43.057-10.737,50.584-26.731l.166-28.89Zm-73.22-50.806c3.6-6.31,12.563-10.516,22.58-10.516s19.038,4.206,22.636,10.516v13.725c-3.542,6.2-12.563,10.349-22.636,10.349s-19.094-4.15-22.58-10.349Zm47.319,72.169c-3.764,6.641-13.338,10.9-24.683,10.9-11.125,0-20.976-4.372-24.684-10.9V263.25c3.708-6.309,13.5-10.515,24.684-10.515,11.345,0,20.919,4.15,24.683,10.515ZM376.4,265.962l-59.827-89.713h-29v40.623h26.51v.387l62.539,94.085H402.3V176.249H376.4Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "nutritionix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d6", + "label": "Nutritionix", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 400, + 512 + ], + "width": 400, + "height": 512, + "path": "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "o": { + "aliases": { + "unicodes": { + "composite": [ + "6f" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter O", + "Latin Small Letter O", + "letter" + ] + }, + "unicode": "4f", + "label": "O", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 96a160 160 0 1 0 0 320 160 160 0 1 0 0-320zM448 256A224 224 0 1 1 0 256a224 224 0 1 1 448 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "object-group": { + "aliases": { + "unicodes": { + "secondary": [ + "10f247" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "combine", + "copy", + "design", + "merge", + "select" + ] + }, + "unicode": "f247", + "label": "Object Group", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M32 119.4C12.9 108.4 0 87.7 0 64C0 28.7 28.7 0 64 0c23.7 0 44.4 12.9 55.4 32H456.6C467.6 12.9 488.3 0 512 0c35.3 0 64 28.7 64 64c0 23.7-12.9 44.4-32 55.4V392.6c19.1 11.1 32 31.7 32 55.4c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H119.4c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V119.4zM456.6 96H119.4c-5.6 9.7-13.7 17.8-23.4 23.4V392.6c9.7 5.6 17.8 13.7 23.4 23.4H456.6c5.6-9.7 13.7-17.8 23.4-23.4V119.4c-9.7-5.6-17.8-13.7-23.4-23.4zM128 160c0-17.7 14.3-32 32-32H288c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V160zM256 320h32c35.3 0 64-28.7 64-64V224h64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H288c-17.7 0-32-14.3-32-32V320z" + }, + "regular": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M16 115.8C6.2 107 0 94.2 0 80C0 53.5 21.5 32 48 32c14.2 0 27 6.2 35.8 16H428.2c8.8-9.8 21.6-16 35.8-16c26.5 0 48 21.5 48 48c0 14.2-6.2 27-16 35.8V396.2c9.8 8.8 16 21.6 16 35.8c0 26.5-21.5 48-48 48c-14.2 0-27-6.2-35.8-16H83.8C75 473.8 62.2 480 48 480c-26.5 0-48-21.5-48-48c0-14.2 6.2-27 16-35.8V115.8zM93.3 96c-4.8 13.6-15.6 24.4-29.3 29.3V386.7c13.6 4.8 24.4 15.6 29.3 29.3H418.7c4.8-13.6 15.6-24.4 29.3-29.3V125.3c-13.6-4.8-24.4-15.6-29.3-29.3H93.3zM96 160c0-17.7 14.3-32 32-32H256c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V160zM224 320h32c35.3 0 64-28.7 64-64V224h64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H256c-17.7 0-32-14.3-32-32V320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "object-ungroup": { + "aliases": { + "unicodes": { + "secondary": [ + "10f248" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copy", + "design", + "merge", + "select", + "separate" + ] + }, + "unicode": "f248", + "label": "Object Ungroup", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 119.4C12.9 108.4 0 87.7 0 64C0 28.7 28.7 0 64 0c23.7 0 44.4 12.9 55.4 32H328.6C339.6 12.9 360.3 0 384 0c35.3 0 64 28.7 64 64c0 23.7-12.9 44.4-32 55.4V232.6c19.1 11.1 32 31.7 32 55.4c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H119.4c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V119.4zM119.4 96c-5.6 9.7-13.7 17.8-23.4 23.4V232.6c9.7 5.6 17.8 13.7 23.4 23.4H328.6c5.6-9.7 13.7-17.8 23.4-23.4V119.4c-9.7-5.6-17.8-13.7-23.4-23.4H119.4zm192 384c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V352h64v40.6c9.7 5.6 17.8 13.7 23.4 23.4H520.6c5.6-9.7 13.7-17.8 23.4-23.4V279.4c-9.7-5.6-17.8-13.7-23.4-23.4h-46c-5.4-15.4-14.6-28.9-26.5-39.6V192h72.6c11.1-19.1 31.7-32 55.4-32c35.3 0 64 28.7 64 64c0 23.7-12.9 44.4-32 55.4V392.6c19.1 11.1 32 31.7 32 55.4c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H311.4z" + }, + "regular": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48.2 66.8c-.1-.8-.2-1.7-.2-2.5c0-.1 0-.1 0-.2c0-8.8 7.2-16 16-16c.9 0 1.9 .1 2.8 .2C74.3 49.5 80 56.1 80 64c0 8.8-7.2 16-16 16c-7.9 0-14.5-5.7-15.8-13.2zM0 64c0 26.9 16.5 49.9 40 59.3V228.7C16.5 238.1 0 261.1 0 288c0 35.3 28.7 64 64 64c26.9 0 49.9-16.5 59.3-40H324.7c9.5 23.5 32.5 40 59.3 40c35.3 0 64-28.7 64-64c0-26.9-16.5-49.9-40-59.3V123.3c23.5-9.5 40-32.5 40-59.3c0-35.3-28.7-64-64-64c-26.9 0-49.9 16.5-59.3 40H123.3C113.9 16.5 90.9 0 64 0C28.7 0 0 28.7 0 64zm368 0a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM324.7 88c6.5 16 19.3 28.9 35.3 35.3V228.7c-16 6.5-28.9 19.3-35.3 35.3H123.3c-6.5-16-19.3-28.9-35.3-35.3V123.3c16-6.5 28.9-19.3 35.3-35.3H324.7zM384 272a16 16 0 1 1 0 32 16 16 0 1 1 0-32zM80 288c0 7.9-5.7 14.5-13.2 15.8c-.8 .1-1.7 .2-2.5 .2l-.2 0c-8.8 0-16-7.2-16-16c0-.9 .1-1.9 .2-2.8C49.5 277.7 56.1 272 64 272c8.8 0 16 7.2 16 16zm391.3-40h45.4c6.5 16 19.3 28.9 35.3 35.3V388.7c-16 6.5-28.9 19.3-35.3 35.3H315.3c-6.5-16-19.3-28.9-35.3-35.3V352H232v36.7c-23.5 9.5-40 32.5-40 59.3c0 35.3 28.7 64 64 64c26.9 0 49.9-16.5 59.3-40H516.7c9.5 23.5 32.5 40 59.3 40c35.3 0 64-28.7 64-64c0-26.9-16.5-49.9-40-59.3V283.3c23.5-9.5 40-32.5 40-59.3c0-35.3-28.7-64-64-64c-26.9 0-49.9 16.5-59.3 40H448v16.4c9.8 8.8 17.8 19.5 23.3 31.6zm88.9-26.7a16 16 0 1 1 31.5 5.5 16 16 0 1 1 -31.5-5.5zM271.8 450.7a16 16 0 1 1 -31.5-5.5 16 16 0 1 1 31.5 5.5zm301.5 13c-7.5-1.3-13.2-7.9-13.2-15.8c0-8.8 7.2-16 16-16c7.9 0 14.5 5.7 15.8 13.2l0 .1c.1 .9 .2 1.8 .2 2.7c0 8.8-7.2 16-16 16c-.9 0-1.9-.1-2.8-.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "octopus-deploy": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e082", + "label": "Octopus Deploy", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M455.6,349.2c-45.891-39.09-36.67-77.877-16.095-128.11C475.16,134.04,415.967,34.14,329.93,8.3,237.04-19.6,134.252,24.341,99.677,117.147a180.862,180.862,0,0,0-10.988,73.544c1.733,29.543,14.717,52.97,24.09,80.3,17.2,50.161-28.1,92.743-66.662,117.582-46.806,30.2-36.319,39.857-8.428,41.858,23.378,1.68,44.478-4.548,65.265-15.045,9.2-4.647,40.687-18.931,45.13-28.588C135.9,413.388,111.122,459.5,126.621,488.9c19.1,36.229,67.112-31.77,76.709-45.812,8.591-12.572,42.963-81.279,63.627-46.926,18.865,31.361,8.6,76.391,35.738,104.622,32.854,34.2,51.155-18.312,51.412-44.221.163-16.411-6.1-95.852,29.9-59.944C405.428,418,436.912,467.8,472.568,463.642c38.736-4.516-22.123-67.967-28.262-78.695,5.393,4.279,53.665,34.128,53.818,9.52C498.234,375.678,468.039,359.8,455.6,349.2Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "odnoklassniki": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f263", + "label": "Odnoklassniki", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "odysee": { + "changes": [ + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e5c6", + "label": "Odysee", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1667828915, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M406.7 463c-42.3 30.8-94.4 49-150.7 49C144.9 512 50.3 441.2 14.9 342.2c2.4 1.7 5.9 3.6 7.9 4.4c16.3 7.4 40.1-5.4 62.9-28.7c6.9-6.9 14.4-12.4 22.8-17.3c18.3-11.9 37.6-20.8 58.4-27.2c0 0 22.3 34.2 43.1 74.8s-22.3 54-27.2 54c-.3 0-.8 0-1.5-.1c-11-.5-70-3-56 51.1c14.9 57.4 97.5 36.6 139.6 8.9s31.7-118.3 31.7-118.3c41.1-6.4 54 37.1 57.9 59.4c.8 4.6 1.1 9.9 1.4 15.5c1.1 21.2 2.3 45.6 35.3 46.4c5.3 0 10.6-.8 15.5-2zm-95.3-23.7c-2-.5-3.5-2.5-3-5c1-2.5 3-3.5 5-3s3.5 3 3 5s-2.5 3.5-5 3zm-207-95.6c1.5-.5 3.5 1 4 3c0 2-1 4-3 4c-1.5 .5-3.5-1-4-3c-.5-1.5 1-3.5 3-4zM451.8 421C489.3 376.4 512 318.8 512 256c0-67.5-26.1-128.9-68.8-174.7c-.1 23.5-6.1 48.2-16.8 69.2c-11.9 20.3-49 58.9-69.8 78.7c-.7 .3-1.1 .9-1.5 1.4c-.2 .2-.3 .4-.5 .6c-5 6.9-4 16.8 3 21.8c21.3 15.8 56.4 45.6 59.4 72.8c3.5 34.9 27.9 75.6 34.2 86.2l0 0c.8 1.3 1.3 2.1 1.4 2.4c0 2.2-.4 4.3-.8 6.5zM390.7 251c-.5 3 1 5.9 4 6.4s5.9-1 6.4-4s-1-5.9-4-6.4c-3-1-5.9 1-6.4 4zm61.4-60.9l-11.4 5.4-3 12.9-5.4-11.4-12.9-3 11.4-5.4 3-12.9 5.4 11.4 12.9 3zM395.5 41.3c-16.2 8.2-22.1 32.8-29 61.4l0 0c-.3 1.4-.7 2.8-1 4.2c-9.5 38.5-30.6 37.6-41.7 37.2c-1.1 0-2-.1-2.9-.1c-5.1 0-6-4-8.9-17.1c-2.6-12.1-6.9-32-17.9-63.6C271.4-2.5 211.4 13.9 165.9 41.1C110.6 74.2 131.5 143 146.1 190.5c.7 2.2 1.4 4.4 2 6.6c-4 4-13.8 7.5-26 11.9c-12.1 4.3-26.6 9.5-40.3 16.9C47.9 243.9 11.5 274.9 2 288.5C.7 277.8 0 267 0 256C0 114.6 114.6 0 256 0c51.4 0 99.4 15.2 139.5 41.3zM58.9 189.6c-1.5-2-4.5-3-6.4-1.5s-3 4.5-1.5 6.4s4.5 3 6.4 1.5c2.5-1.5 3-4.5 1.5-6.4zM327.3 64.9c2-1.5 5-.5 6.4 1.5c1.5 2.5 1 5.4-1.5 6.4c-2 1.5-5 .5-6.4-1.5s-.5-5 1.5-6.4zM95.1 105c-.5 1.5 .5 3 2 3c1.5 .5 3-.5 3-2c.5-1.5-.5-3-2-3s-3 .5-3 2zm84.7-.5c-3.5-43.1 37.1-54 37.1-54c44.1-15.4 56 5.9 66.4 37.6s3 42.6-38.6 58.9s-61.9-4.5-64.9-42.6zm89.6 14.9h1c2.5 0 5-2 5-5c2-6.9 1-14.4-2-20.8c-1.5-2-4-3.5-6.4-2.5c-3 1-4.5 4-3.5 6.9c2 4.5 3 9.9 1.5 14.9c-.5 3 1.5 5.9 4.5 6.4zm-9.9-41.6c-2 0-4-1-5-3s-2-3.5-3-5c-2-2-2-5.4 0-7.4s5.4-2 7.4 0c2 2.5 3.5 5 5 7.4s.5 5.9-2.5 7.4c-.6 0-1 .2-1.3 .3c-.2 .1-.4 .2-.6 .2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "oil-can": { + "aliases": { + "unicodes": { + "secondary": [ + "10f613" + ] + } + }, + "changes": [ + "5.2.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "crude", + "gasoline", + "grease", + "lubricate", + "petroleum" + ] + }, + "unicode": "f613", + "label": "Oil Can", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 128c17.7 0 32-14.3 32-32s-14.3-32-32-32H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v32H144 96 48c-26.5 0-48 21.5-48 48v64.8c0 19 11.2 36.2 28.5 43.9l67.5 30V368c0 26.5 21.5 48 48 48H403.1c18.4 0 35.8-7.9 48-21.7L633.5 187.7c12.3-13.9-.3-35.4-18.4-31.5L448 192l-50.5-25.2c-8.9-4.4-18.7-6.8-28.6-6.8H288V128h32zM96 208v86.1L48 272.8V208H96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "oil-well": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drill", + "oil", + "rig" + ] + }, + "unicode": "e532", + "label": "Oil Well", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M528.3 61.3c-11.4-42.7-55.3-68-98-56.6L414.9 8.8C397.8 13.4 387.7 31 392.3 48l24.5 91.4L308.5 167.5l-6.3-18.1C297.7 136.6 285.6 128 272 128s-25.7 8.6-30.2 21.4l-13.6 39L96 222.6V184c0-13.3-10.7-24-24-24s-24 10.7-24 24V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H406.7L340 257.5l-62.2 16.1L305.3 352H238.7L265 277l-74.6 19.3L137.3 448H96V288.8l337.4-87.5 25.2 94c4.6 17.1 22.1 27.2 39.2 22.6l15.5-4.1c42.7-11.4 68-55.3 56.6-98L528.3 61.3zM205.1 448l11.2-32H327.7l11.2 32H205.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "old-republic": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [ + "politics", + "star wars" + ] + }, + "unicode": "f510", + "label": "Old Republic", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "om": { + "aliases": { + "unicodes": { + "composite": [ + "1f549" + ], + "secondary": [ + "10f679" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Hindu", + "buddhism", + "hinduism", + "jainism", + "mantra", + "om", + "religion" + ] + }, + "unicode": "f679", + "label": "Om", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M379.3 4.7c-6.2-6.2-16.4-6.2-22.6 0l-16 16c-6.2 6.2-6.2 16.4 0 22.6l16 16c6.2 6.2 16.4 6.2 22.6 0l16-16c6.2-6.2 6.2-16.4 0-22.6l-16-16zM115.2 169.6c8-6 17.9-9.6 28.8-9.6c26.5 0 48 21.5 48 48s-21.5 48-48 48H109.8c-7.6 0-13.8 6.2-13.8 13.8c0 1.5 .2 2.9 .7 4.4l8 24c4.4 13.1 16.6 21.9 30.4 21.9H144h16c35.3 0 64 28.7 64 64s-28.7 64-64 64c-50.8 0-82.7-21.5-102.2-42.8c-9.9-10.8-16.6-21.6-20.9-29.7c-2.1-4-3.6-7.3-4.5-9.6c-.5-1.1-.8-2-1-2.5l-.2-.5 0-.1c-2.6-7.8-10.7-12.3-18.7-10.5C4.4 354.2-.9 361.8 .1 370L16 368C.1 370 .1 370 .1 370l0 0 0 0 0 .1 .1 .4c0 .3 .1 .8 .2 1.3c.2 1.1 .4 2.7 .8 4.6c.8 3.9 2 9.4 3.9 15.9c3.8 13 10.3 30.4 21.3 48C48.7 476.2 89.4 512 160 512c70.7 0 128-57.3 128-128c0-23.3-6.2-45.2-17.1-64h22.6c25.5 0 49.9-10.1 67.9-28.1l26.5-26.5c6-6 14.1-9.4 22.6-9.4H416c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32c-25.7 0-41.4-12.5-51.2-25.6c-5-6.7-8.4-13.4-10.5-18.6c-1.1-2.5-1.8-4.6-2.2-6c-.2-.7-.4-1.2-.5-1.5l-.1-.3 0 0c0 0 0 0 0 0c-1.9-7.3-8.6-12.4-16.2-12.1c-7.6 .3-13.9 5.9-15.1 13.4L336 368c-15.8-2.6-15.8-2.6-15.8-2.6l0 0 0 0 0 .1-.1 .3c0 .3-.1 .6-.2 1.1c-.1 .9-.3 2.1-.4 3.6c-.3 3-.6 7.3-.6 12.4c0 10.1 1.1 23.9 5.8 38.1c4.8 14.3 13.4 29.3 28.6 40.7C368.7 473.3 389.3 480 416 480c53 0 96-43 96-96V288c0-53-43-96-96-96h-5.5c-25.5 0-49.9 10.1-67.9 28.1l-26.5 26.5c-6 6-14.1 9.4-22.6 9.4H245.2c6.9-14.5 10.8-30.8 10.8-48c0-61.9-50.1-112-112-112c-25.2 0-48.5 8.3-67.2 22.4c-14.1 10.6-17 30.7-6.4 44.8s30.7 17 44.8 6.4zM280.9 66.7c-6-4-14-3.5-19.5 1.3s-7 12.7-3.7 19.2L272 80c-14.3 7.2-14.3 7.2-14.3 7.2l0 0 0 0 0 .1 .1 .2 .4 .7c.3 .6 .8 1.4 1.4 2.4c1.2 2 2.9 4.8 5.1 8.2c4.4 6.7 11.1 15.5 20 24.4C302.4 141.1 330.3 160 368 160c31.2 0 56.6-10.4 73.9-20.2c8.7-5 15.6-9.9 20.4-13.8c2.4-1.9 4.3-3.6 5.7-4.9c.7-.6 1.3-1.2 1.7-1.6l.6-.5 .2-.2 .1-.1 0 0 0 0c0 0 0 0-22.6-22.6l22.6 22.6c12.5-12.5 12.5-32.8 0-45.3c-12.4-12.4-32.6-12.5-45.1-.2c-.1 .1-.2 .2-.5 .4c-.5 .5-1.5 1.3-2.8 2.4c-2.7 2.2-6.8 5.2-12.1 8.2C399.4 90.4 384.8 96 368 96c-20.8 0-42.4-7-59.5-14.6c-8.4-3.7-15.4-7.5-20.3-10.3c-2.4-1.4-4.3-2.5-5.6-3.3c-.6-.4-1.1-.7-1.4-.9l-.3-.2 0 0 0 0 0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "opencart": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f23d", + "label": "OpenCart", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "openid": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f19b", + "label": "OpenID", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "opera": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f26a", + "label": "Opera", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "optin-monster": { + "changes": [ + "4.4.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f23c", + "label": "Optin Monster", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M572.6 421.4c5.6-9.5 4.7-15.2-5.4-11.6-3-4.9-7-9.5-11.1-13.8 2.9-9.7-.7-14.2-10.8-9.2-4.6-3.2-10.3-6.5-15.9-9.2 0-15.1-11.6-11.6-17.6-5.7-10.4-1.5-18.7-.3-26.8 5.7.3-6.5.3-13 .3-19.7 12.6 0 40.2-11 45.9-36.2 1.4-6.8 1.6-13.8-.3-21.9-3-13.5-14.3-21.3-25.1-25.7-.8-5.9-7.6-14.3-14.9-15.9s-12.4 4.9-14.1 10.3c-8.5 0-19.2 2.8-21.1 8.4-5.4-.5-11.1-1.4-16.8-1.9 2.7-1.9 5.4-3.5 8.4-4.6 5.4-9.2 14.6-11.4 25.7-11.6V256c19.5-.5 43-5.9 53.8-18.1 12.7-13.8 14.6-37.3 12.4-55.1-2.4-17.3-9.7-37.6-24.6-48.1-8.4-5.9-21.6-.8-22.7 9.5-2.2 19.6 1.2 30-38.6 25.1-10.3-23.8-24.6-44.6-42.7-60C341 49.6 242.9 55.5 166.4 71.7c19.7 4.6 41.1 8.6 59.7 16.5-26.2 2.4-52.7 11.3-76.2 23.2-32.8 17-44 29.9-56.7 42.4 14.9-2.2 28.9-5.1 43.8-3.8-9.7 5.4-18.4 12.2-26.5 20-25.8.9-23.8-5.3-26.2-25.9-1.1-10.5-14.3-15.4-22.7-9.7-28.1 19.9-33.5 79.9-12.2 103.5 10.8 12.2 35.1 17.3 54.9 17.8-.3 1.1-.3 1.9-.3 2.7 10.8.5 19.5 2.7 24.6 11.6 3 1.1 5.7 2.7 8.1 4.6-5.4.5-11.1 1.4-16.5 1.9-3.3-6.6-13.7-8.1-21.1-8.1-1.6-5.7-6.5-12.2-14.1-10.3-6.8 1.9-14.1 10-14.9 15.9-22.5 9.5-30.1 26.8-25.1 47.6 5.3 24.8 33 36.2 45.9 36.2v19.7c-6.6-5-14.3-7.5-26.8-5.7-5.5-5.5-17.3-10.1-17.3 5.7-5.9 2.7-11.4 5.9-15.9 9.2-9.8-4.9-13.6-1.7-11.1 9.2-4.1 4.3-7.8 8.6-11.1 13.8-10.2-3.7-11 2.2-5.4 11.6-1.1 3.5-1.6 7-1.9 10.8-.5 31.6 44.6 64 73.5 65.1 17.3.5 34.6-8.4 43-23.5 113.2 4.9 226.7 4.1 340.2 0 8.1 15.1 25.4 24.3 42.7 23.5 29.2-1.1 74.3-33.5 73.5-65.1.2-3.7-.7-7.2-1.7-10.7zm-73.8-254c1.1-3 2.4-8.4 2.4-14.6 0-5.9 6.8-8.1 14.1-.8 11.1 11.6 14.9 40.5 13.8 51.1-4.1-13.6-13-29-30.3-35.7zm-4.6 6.7c19.5 6.2 28.6 27.6 29.7 48.9-1.1 2.7-3 5.4-4.9 7.6-5.7 5.9-15.4 10-26.2 12.2 4.3-21.3.3-47.3-12.7-63 4.9-.8 10.9-2.4 14.1-5.7zm-24.1 6.8c13.8 11.9 20 39.2 14.1 63.5-4.1.5-8.1.8-11.6.8-1.9-21.9-6.8-44-14.3-64.6 3.7.3 8.1.3 11.8.3zM47.5 203c-1.1-10.5 2.4-39.5 13.8-51.1 7-7.3 14.1-5.1 14.1.8 0 6.2 1.4 11.6 2.4 14.6-17.3 6.8-26.2 22.2-30.3 35.7zm9.7 27.6c-1.9-2.2-3.5-4.9-4.9-7.6 1.4-21.3 10.3-42.7 29.7-48.9 3.2 3.2 9.2 4.9 14.1 5.7-13 15.7-17 41.6-12.7 63-10.8-2.2-20.5-6-26.2-12.2zm47.9 14.6c-4.1 0-8.1-.3-12.7-.8-4.6-18.6-1.9-38.9 5.4-53v.3l12.2-5.1c4.9-1.9 9.7-3.8 14.9-4.9-10.7 19.7-17.4 41.3-19.8 63.5zm184-162.7c41.9 0 76.2 34 76.2 75.9 0 42.2-34.3 76.2-76.2 76.2s-76.2-34-76.2-76.2c0-41.8 34.3-75.9 76.2-75.9zm115.6 174.3c-.3 17.8-7 48.9-23 57-13.2 6.6-6.5-7.5-16.5-58.1 13.3.3 26.6.3 39.5 1.1zm-54-1.6c.8 4.9 3.8 40.3-1.6 41.9-11.6 3.5-40 4.3-51.1-1.1-4.1-3-4.6-35.9-4.3-41.1v.3c18.9-.3 38.1-.3 57 0zM278.3 309c-13 3.5-41.6 4.1-54.6-1.6-6.5-2.7-3.8-42.4-1.9-51.6 19.2-.5 38.4-.5 57.8-.8v.3c1.1 8.3 3.3 51.2-1.3 53.7zm-106.5-51.1c12.2-.8 24.6-1.4 36.8-1.6-2.4 15.4-3 43.5-4.9 52.2-1.1 6.8-4.3 6.8-9.7 4.3-21.9-9.8-27.6-35.2-22.2-54.9zm-35.4 31.3c7.8-1.1 15.7-1.9 23.5-2.7 1.6 6.2 3.8 11.9 7 17.6 10 17 44 35.7 45.1 7 6.2 14.9 40.8 12.2 54.9 10.8 15.7-1.4 23.8-1.4 26.8-14.3 12.4 4.3 30.8 4.1 44 3 11.3-.8 20.8-.5 24.6-8.9 1.1 5.1 1.9 11.6 4.6 16.8 10.8 21.3 37.3 1.4 46.8-31.6 8.6.8 17.6 1.9 26.5 2.7-.4 1.3-3.8 7.3 7.3 11.6-47.6 47-95.7 87.8-163.2 107-63.2-20.8-112.1-59.5-155.9-106.5 9.6-3.4 10.4-8.8 8-12.5zm-21.6 172.5c-3.8 17.8-21.9 29.7-39.7 28.9-19.2-.8-46.5-17-59.2-36.5-2.7-31.1 43.8-61.3 66.2-54.6 14.9 4.3 27.8 30.8 33.5 54 0 3-.3 5.7-.8 8.2zm-8.7-66c-.5-13.5-.5-27-.3-40.5h.3c2.7-1.6 5.7-3.8 7.8-6.5 6.5-1.6 13-5.1 15.1-9.2 3.3-7.1-7-7.5-5.4-12.4 2.7-1.1 5.7-2.2 7.8-3.5 29.2 29.2 58.6 56.5 97.3 77-36.8 11.3-72.4 27.6-105.9 47-1.2-18.6-7.7-35.9-16.7-51.9zm337.6 64.6c-103 3.5-206.2 4.1-309.4 0 0 .3 0 .3-.3.3v-.3h.3c35.1-21.6 72.2-39.2 112.4-50.8 11.6 5.1 23 9.5 34.9 13.2 2.2.8 2.2.8 4.3 0 14.3-4.1 28.4-9.2 42.2-15.4 41.5 11.7 78.8 31.7 115.6 53zm10.5-12.4c-35.9-19.5-73-35.9-111.9-47.6 38.1-20 71.9-47.3 103.5-76.7 2.2 1.4 4.6 2.4 7.6 3.2 0 .8.3 1.9.5 2.4-4.6 2.7-7.8 6.2-5.9 10.3 2.2 3.8 8.6 7.6 15.1 8.9 2.4 2.7 5.1 5.1 8.1 6.8 0 13.8-.3 27.6-.8 41.3l.3-.3c-9.3 15.9-15.5 37-16.5 51.7zm105.9 6.2c-12.7 19.5-40 35.7-59.2 36.5-19.3.9-40.5-13.2-40.5-37 5.7-23.2 18.9-49.7 33.5-54 22.7-6.9 69.2 23.4 66.2 54.5zM372.9 75.2c-3.8-72.1-100.8-79.7-126-23.5 44.6-24.3 90.3-15.7 126 23.5zM74.8 407.1c-15.7 1.6-49.5 25.4-49.5 43.2 0 11.6 15.7 19.5 32.2 14.9 12.2-3.2 31.1-17.6 35.9-27.3 6-11.6-3.7-32.7-18.6-30.8zm215.9-176.2c28.6 0 51.9-21.6 51.9-48.4 0-36.1-40.5-58.1-72.2-44.3 9.5 3 16.5 11.6 16.5 21.6 0 23.3-33.3 32-46.5 11.3-7.3 34.1 19.4 59.8 50.3 59.8zM68 474.1c.5 6.5 12.2 12.7 21.6 9.5 6.8-2.7 14.6-10.5 17.3-16.2 3-7-1.1-20-9.7-18.4-8.9 1.6-29.7 16.7-29.2 25.1zm433.2-67c-14.9-1.9-24.6 19.2-18.9 30.8 4.9 9.7 24.1 24.1 36.2 27.3 16.5 4.6 32.2-3.2 32.2-14.9 0-17.8-33.8-41.6-49.5-43.2zM478.8 449c-8.4-1.6-12.4 11.3-9.5 18.4 2.4 5.7 10.3 13.5 17.3 16.2 9.2 3.2 21.1-3 21.3-9.5.9-8.4-20.2-23.5-29.1-25.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "orcid": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f8d2", + "label": "ORCID", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M294.75 188.19h-45.92V342h47.47c67.62 0 83.12-51.34 83.12-76.91 0-41.64-26.54-76.9-84.67-76.9zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-80.79 360.76h-29.84v-207.5h29.84zm-14.92-231.14a19.57 19.57 0 1 1 19.57-19.57 19.64 19.64 0 0 1-19.57 19.57zM300 369h-81V161.26h80.6c76.73 0 110.44 54.83 110.44 103.85C410 318.39 368.38 369 300 369z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "osi": { + "changes": [ + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41a", + "label": "Open Source Initiative", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M8 266.44C10.3 130.64 105.4 34 221.8 18.34c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7q-26.7-69.45-53.4-139c-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8a71.47 71.47 0 0 0-64.5-82.2c-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4q-26.85 69.9-53.7 139.9c-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119-24.9-49.2-25.2-87.7-26.8-108.7zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3q22.35-58.65 45-117.3c1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6a91.64 91.64 0 0 1 45.2 90.4c-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6q22.8 58.8 45.2 117.7c1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161-13.7-117.5-119.4-214.8-255.5-198-106.1 13-195.3 102.5-197.1 225.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "otter": { + "aliases": { + "unicodes": { + "composite": [ + "1f9a6" + ], + "secondary": [ + "10f700" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "badger", + "fauna", + "fishing", + "fur", + "mammal", + "marten", + "otter", + "playful" + ] + }, + "unicode": "f700", + "label": "Otter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M181.5 197.1l12.9 6.4c5.9 3 12.4 4.5 19.1 4.5c23.5 0 42.6-19.1 42.6-42.6V144c0-35.3-28.7-64-64-64H128c-35.3 0-64 28.7-64 64v21.4c0 23.5 19.1 42.6 42.6 42.6c6.6 0 13.1-1.5 19.1-4.5l12.9-6.4 8.4-4.2L135.1 185c-4.5-3-7.1-8-7.1-13.3V168c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24v3.7c0 5.3-2.7 10.3-7.1 13.3l-11.8 7.9 8.4 4.2zm-8.6 49.4L160 240l-12.9 6.4c-12.6 6.3-26.5 9.6-40.5 9.6c-3.6 0-7.1-.2-10.6-.6v.6c0 35.3 28.7 64 64 64h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384V336 320c0-23.7 12.9-44.4 32-55.4c9.4-5.4 20.3-8.6 32-8.6V240c0-26.5 21.5-48 48-48c8.8 0 16 7.2 16 16v32 16 48c0 8.8 7.2 16 16 16s16-7.2 16-16V204.3c0-48.2-30.8-91-76.6-106.3l-8.5-2.8c-8-2.7-12.6-11.1-10.4-19.3s10.3-13.2 18.6-11.6l19.9 4C576 86.1 640 164.2 640 254.9l0 1.1h0c0 123.7-100.3 224-224 224h-1.1H256h-.6C132 480 32 380 32 256.6V256 216.8c-10.1-14.6-16-32.3-16-51.4V144l0-1.4C6.7 139.3 0 130.5 0 120c0-13.3 10.7-24 24-24h2.8C44.8 58.2 83.3 32 128 32h64c44.7 0 83.2 26.2 101.2 64H296c13.3 0 24 10.7 24 24c0 10.5-6.7 19.3-16 22.6l0 1.4v21.4c0 1.4 0 2.8-.1 4.3c12-6.2 25.7-9.6 40.1-9.6h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-13.3 0-24 10.7-24 24v8h56.4c-15.2 17-24.4 39.4-24.4 64H320c-42.3 0-78.2-27.4-91-65.3c-5.1 .9-10.3 1.3-15.6 1.3c-14.1 0-27.9-3.3-40.5-9.6zM96 128a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm112 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "outdent": { + "aliases": { + "names": [ + "dedent" + ], + "unicodes": { + "secondary": [ + "10f03b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "align", + "justify", + "paragraph", + "tab" + ] + }, + "unicode": "f03b", + "label": "Outdent", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M6 64C6 46.3 20.3 32 38 32H422c17.7 0 32 14.3 32 32s-14.3 32-32 32H38C20.3 96 6 81.7 6 64zM198 192c0-17.7 14.3-32 32-32H422c17.7 0 32 14.3 32 32s-14.3 32-32 32H230c-17.7 0-32-14.3-32-32zm32 96H422c17.7 0 32 14.3 32 32s-14.3 32-32 32H230c-17.7 0-32-14.3-32-32s14.3-32 32-32zM6 448c0-17.7 14.3-32 32-32H422c17.7 0 32 14.3 32 32s-14.3 32-32 32H38c-17.7 0-32-14.3-32-32zm.2-179.4c-8.2-6.4-8.2-18.9 0-25.3l101.9-79.3c10.5-8.2 25.8-.7 25.8 12.6V335.3c0 13.3-15.3 20.8-25.8 12.6L6.2 268.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "p": { + "aliases": { + "unicodes": { + "composite": [ + "70" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter P", + "Latin Small Letter P", + "letter" + ] + }, + "unicode": "50", + "label": "P", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32h96c88.4 0 160 71.6 160 160s-71.6 160-160 160H64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V320 96zM64 288h96c53 0 96-43 96-96s-43-96-96-96H64V288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "padlet": { + "changes": [ + "6.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e4a0", + "label": "Padlet", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M297.9 0L298 .001C305.6 .1078 312.4 4.72 315.5 11.78L447.5 320.3L447.8 320.2L448 320.6L445.2 330.6L402.3 488.6C398.6 504.8 382.6 514.9 366.5 511.2L298.1 495.6L229.6 511.2C213.5 514.9 197.5 504.8 193.8 488.6L150.9 330.6L148.2 320.6L148.3 320.2L280.4 11.78C283.4 4.797 290.3 .1837 297.9 .0006L297.9 0zM160.1 322.1L291.1 361.2L298 483.7L305.9 362.2L436.5 322.9L436.7 322.8L305.7 347.9L297.1 27.72L291.9 347.9L160.1 322.1zM426 222.6L520.4 181.6H594.2L437.2 429.2L468.8 320.2L426 222.6zM597.5 181.4L638.9 257.6C642.9 265.1 635 273.5 627.3 269.8L579.7 247.1L597.5 181.4zM127.3 318.5L158.7 430L1.61 154.5C-4.292 144.1 7.128 132.5 17.55 138.3L169.4 222.5L127.3 318.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "page4": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d7", + "label": "page4 Corporation", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pagelines": { + "changes": [ + "4.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eco", + "flora", + "leaf", + "leaves", + "nature", + "plant", + "tree" + ] + }, + "unicode": "f18c", + "label": "Pagelines", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pager": { + "aliases": { + "unicodes": { + "composite": [ + "1f4df" + ], + "secondary": [ + "10f815" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beeper", + "cell phone", + "communication", + "page", + "pager" + ] + }, + "unicode": "f815", + "label": "Pager", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H448c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zm64 32v64c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32zM80 320c-13.3 0-24 10.7-24 24s10.7 24 24 24h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H80zm136 0c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c13.3 0 24-10.7 24-24s-10.7-24-24-24H216z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paint-roller": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5aa" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrylic", + "art", + "brush", + "color", + "fill", + "paint", + "pigment", + "watercolor" + ] + }, + "unicode": "f5aa", + "label": "Paint Roller", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H352c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM160 352c0-17.7 14.3-32 32-32V304c0-44.2 35.8-80 80-80H416c17.7 0 32-14.3 32-32V160 69.5c37.3 13.2 64 48.7 64 90.5v32c0 53-43 96-96 96H272c-8.8 0-16 7.2-16 16v16c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paintbrush": { + "aliases": { + "names": [ + "paint-brush" + ], + "unicodes": { + "composite": [ + "1f58c" + ], + "secondary": [ + "10f1fc" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrylic", + "art", + "brush", + "color", + "fill", + "paint", + "paintbrush", + "painting", + "pigment", + "watercolor" + ] + }, + "unicode": "f1fc", + "label": "Paintbrush", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M339.3 367.1c27.3-3.9 51.9-19.4 67.2-42.9L568.2 74.1c12.6-19.5 9.4-45.3-7.6-61.2S517.7-4.4 499.1 9.6L262.4 187.2c-24 18-38.2 46.1-38.4 76.1L339.3 367.1zm-19.6 25.4l-116-104.4C143.9 290.3 96 339.6 96 400c0 3.9 .2 7.8 .6 11.6C98.4 429.1 86.4 448 68.8 448H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H208c61.9 0 112-50.1 112-112c0-2.5-.1-5-.2-7.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "palette": { + "aliases": { + "unicodes": { + "composite": [ + "1f3a8" + ], + "secondary": [ + "10f53f" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrylic", + "art", + "artist palette", + "brush", + "color", + "fill", + "museum", + "paint", + "painting", + "palette", + "pigment", + "watercolor" + ] + }, + "unicode": "f53f", + "label": "Palette", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256c0 .9 0 1.8 0 2.7c-.4 36.5-33.6 61.3-70.1 61.3H344c-26.5 0-48 21.5-48 48c0 3.4 .4 6.7 1 9.9c2.1 10.2 6.5 20 10.8 29.9c6.1 13.8 12.1 27.5 12.1 42c0 31.8-21.6 60.7-53.4 62c-3.5 .1-7 .2-10.6 .2C114.6 512 0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM128 288a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0-96a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm96 96a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "palfed": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d8", + "label": "Palfed", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pallet": { + "aliases": { + "unicodes": { + "secondary": [ + "10f482" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "box", + "inventory", + "shipping", + "warehouse" + ] + }, + "unicode": "f482", + "label": "Pallet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 320c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v64H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H96 320 544h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H576V384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H544 320 96 32zm96 64H288v64H128V384zm224 0H512v64H352V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "panorama": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "image", + "landscape", + "photo", + "wide" + ] + }, + "unicode": "e209", + "label": "Panorama", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M45.6 32C20.4 32 0 52.4 0 77.6V434.4C0 459.6 20.4 480 45.6 480c5.1 0 10-.8 14.7-2.4C74.6 472.8 177.6 440 320 440s245.4 32.8 259.6 37.6c4.7 1.6 9.7 2.4 14.7 2.4c25.2 0 45.6-20.4 45.6-45.6V77.6C640 52.4 619.6 32 594.4 32c-5 0-10 .8-14.7 2.4C565.4 39.2 462.4 72 320 72S74.6 39.2 60.4 34.4C55.6 32.8 50.7 32 45.6 32zM96 160a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm272 0c7.9 0 15.4 3.9 19.8 10.5L512.3 353c5.4 8 5.6 18.4 .4 26.5s-14.7 12.3-24.2 10.7C442.7 382.4 385.2 376 320 376c-65.6 0-123.4 6.5-169.3 14.4c-9.8 1.7-19.7-2.9-24.7-11.5s-4.3-19.4 1.9-27.2L197.3 265c4.6-5.7 11.4-9 18.7-9s14.2 3.3 18.7 9l26.4 33.1 87-127.6c4.5-6.6 11.9-10.5 19.8-10.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paper-plane": { + "aliases": { + "unicodes": { + "composite": [ + "f1d9" + ], + "secondary": [ + "10f1d8" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air", + "float", + "fold", + "mail", + "paper", + "send" + ] + }, + "unicode": "f1d8", + "label": "Paper Plane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480V396.4c0-4 1.5-7.8 4.2-10.7L331.8 202.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8 17.7 316.6C7.1 311.3 .3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M16.1 260.2c-22.6 12.9-20.5 47.3 3.6 57.3L160 376V479.3c0 18.1 14.6 32.7 32.7 32.7c9.7 0 18.9-4.3 25.1-11.8l62-74.3 123.9 51.6c18.9 7.9 40.8-4.5 43.9-24.7l64-416c1.9-12.1-3.4-24.3-13.5-31.2s-23.3-7.5-34-1.4l-448 256zm52.1 25.5L409.7 90.6 190.1 336l1.2 1L68.2 285.7zM403.3 425.4L236.7 355.9 450.8 116.6 403.3 425.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "paperclip": { + "aliases": { + "unicodes": { + "composite": [ + "1f4ce" + ], + "secondary": [ + "10f0c6" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attach", + "attachment", + "connect", + "link", + "papercli", + "paperclip" + ] + }, + "unicode": "f0c6", + "label": "Paperclip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M360.2 83.8c-24.4-24.4-64-24.4-88.4 0l-184 184c-42.1 42.1-42.1 110.3 0 152.4s110.3 42.1 152.4 0l152-152c10.9-10.9 28.7-10.9 39.6 0s10.9 28.7 0 39.6l-152 152c-64 64-167.6 64-231.6 0s-64-167.6 0-231.6l184-184c46.3-46.3 121.3-46.3 167.6 0s46.3 121.3 0 167.6l-176 176c-28.6 28.6-75 28.6-103.6 0s-28.6-75 0-103.6l144-144c10.9-10.9 28.7-10.9 39.6 0s10.9 28.7 0 39.6l-144 144c-6.7 6.7-6.7 17.7 0 24.4s17.7 6.7 24.4 0l176-176c24.4-24.4 24.4-64 0-88.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "parachute-box": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4cd" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aid", + "assistance", + "goods", + "relief", + "rescue", + "supplies" + ] + }, + "unicode": "f4cd", + "label": "Parachute Box", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M380.5 192c.3-5.3 .5-10.6 .5-16c0-51-15.9-96-40.2-127.6C316.5 16.9 285.2 0 253 0s-63.5 16.9-87.8 48.4C140.9 80 125 125 125 176c0 5.4 .2 10.7 .5 16H237V320H205c-7 0-13.7 1.5-19.7 4.2L65.2 192H93.5c-.3-5.3-.5-10.6-.5-16c0-64 22.2-121.2 57.1-159.3C59 49.3 15.6 122.6 1.2 173.6C-1.5 183.1 6 192 15.9 192h6L162.2 346.3c-3.3 6.5-5.2 13.9-5.2 21.7v96c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48V368c0-7.8-1.9-15.2-5.2-21.7L484.1 192h6c9.9 0 17.4-8.9 14.7-18.4C490.4 122.6 447 49.3 355.9 16.7C390.8 54.8 413 112.1 413 176c0 5.4-.2 10.7-.5 16h28.3L320.7 324.2c-6-2.7-12.7-4.2-19.7-4.2H269V192H380.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paragraph": { + "aliases": { + "unicodes": { + "composite": [ + "b6" + ], + "secondary": [ + "10f1dd" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pilcrow Sign", + "edit", + "format", + "text", + "writing" + ] + }, + "unicode": "f1dd", + "label": "Paragraph", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M192 32h64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H384l0 352c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-352H288V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H192c-88.4 0-160-71.6-160-160s71.6-160 160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "passport": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5ab" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "id", + "identification", + "issued", + "travel" + ] + }, + "unicode": "f5ab", + "label": "Passport", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM183 278.8c-27.9-13.2-48.4-39.4-53.7-70.8h39.1c1.6 30.4 7.7 53.8 14.6 70.8zm41.3 9.2l-.3 0-.3 0c-2.4-3.5-5.7-8.9-9.1-16.5c-6-13.6-12.4-34.3-14.2-63.5h47.1c-1.8 29.2-8.1 49.9-14.2 63.5c-3.4 7.6-6.7 13-9.1 16.5zm40.7-9.2c6.8-17.1 12.9-40.4 14.6-70.8h39.1c-5.3 31.4-25.8 57.6-53.7 70.8zM279.6 176c-1.6-30.4-7.7-53.8-14.6-70.8c27.9 13.2 48.4 39.4 53.7 70.8H279.6zM223.7 96l.3 0 .3 0c2.4 3.5 5.7 8.9 9.1 16.5c6 13.6 12.4 34.3 14.2 63.5H200.5c1.8-29.2 8.1-49.9 14.2-63.5c3.4-7.6 6.7-13 9.1-16.5zM183 105.2c-6.8 17.1-12.9 40.4-14.6 70.8H129.3c5.3-31.4 25.8-57.6 53.7-70.8zM352 192A128 128 0 1 0 96 192a128 128 0 1 0 256 0zM112 384c-8.8 0-16 7.2-16 16s7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paste": { + "aliases": { + "names": [ + "file-clipboard" + ], + "unicodes": { + "secondary": [ + "10f0ea" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clipboard", + "copy", + "document", + "paper" + ] + }, + "unicode": "f0ea", + "label": "Paste", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 0c-23.7 0-44.4 12.9-55.4 32H48C21.5 32 0 53.5 0 80V400c0 26.5 21.5 48 48 48H192V176c0-44.2 35.8-80 80-80h48V80c0-26.5-21.5-48-48-48H215.4C204.4 12.9 183.7 0 160 0zM272 128c-26.5 0-48 21.5-48 48V448v16c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V256H416c-17.7 0-32-14.3-32-32V128H320 272zM160 40a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm256 88v96h96l-96-96z" + }, + "regular": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M80 96v16c0 17.7 14.3 32 32 32h60.8c16.6-28.7 47.6-48 83.2-48h62c-7.1-27.6-32.2-48-62-48H215.4C211.6 20.9 188.2 0 160 0s-51.6 20.9-55.4 48H64C28.7 48 0 76.7 0 112V384c0 35.3 28.7 64 64 64h96V400H64c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H80zm64-40a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM256 464c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H384v48c0 17.7 14.3 32 32 32h48V448c0 8.8-7.2 16-16 16H256zm192 48c35.3 0 64-28.7 64-64V227.9c0-12.7-5.1-24.9-14.1-33.9l-51.9-51.9c-9-9-21.2-14.1-33.9-14.1H256c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "patreon": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3d9", + "label": "Patreon", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pause": { + "aliases": { + "unicodes": { + "composite": [ + "23f8" + ], + "secondary": [ + "10f04c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bar", + "double", + "hold", + "pause", + "pause button", + "vertical", + "wait" + ] + }, + "unicode": "f04c", + "label": "Pause", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M48 64C21.5 64 0 85.5 0 112V400c0 26.5 21.5 48 48 48H80c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H48zm192 0c-26.5 0-48 21.5-48 48V400c0 26.5 21.5 48 48 48h32c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H240z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paw": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1b0" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "cat", + "dog", + "pet", + "print" + ] + }, + "unicode": "f1b0", + "label": "Paw", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5s.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3S-2.7 179.3 21.8 165.3s59.7 .9 78.5 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7c-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2C84.9 480 64 459.1 64 433.3v-1.6c0-10.4 1.6-20.8 5.2-30.5zM421.8 282.7c-24.5-14-29.1-51.7-10.2-84.1s54-47.3 78.5-33.3s29.1 51.7 10.2 84.1s-54 47.3-78.5 33.3zM310.1 189.7c-32.3-10.6-46.9-53.9-32.6-96.8s52.1-69.1 84.4-58.5s46.9 53.9 32.6 96.8s-52.1 69.1-84.4 58.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "paypal": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1ed", + "label": "Paypal", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "peace": { + "aliases": { + "unicodes": { + "composite": [ + "262e" + ], + "secondary": [ + "10f67c" + ] + } + }, + "changes": [ + "5.3.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "peace", + "peace symbol", + "serenity", + "tranquility", + "truce", + "war" + ] + }, + "unicode": "f67c", + "label": "Peace", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 445.3V323.5l-94.3 77.1c26.1 22.8 58.5 38.7 94.3 44.7zM89.2 351.1L224 240.8V66.7C133.2 81.9 64 160.9 64 256c0 34.6 9.2 67.1 25.2 95.1zm293.1 49.5L288 323.5V445.3c35.7-6 68.1-21.9 94.3-44.7zm40.6-49.5c16-28 25.2-60.5 25.2-95.1c0-95.1-69.2-174.1-160-189.3V240.8L422.8 351.1zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen": { + "aliases": { + "unicodes": { + "composite": [ + "1f58a" + ], + "secondary": [ + "10f304" + ] + } + }, + "changes": [ + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ballpoint", + "design", + "edit", + "pen", + "update", + "write" + ] + }, + "unicode": "f304", + "label": "Pen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M362.7 19.3L314.3 67.7 444.3 197.7l48.4-48.4c25-25 25-65.5 0-90.5L453.3 19.3c-25-25-65.5-25-90.5 0zm-71 71L58.6 323.5c-10.4 10.4-18 23.3-22.2 37.4L1 481.2C-1.5 489.7 .8 498.8 7 505s15.3 8.5 23.7 6.1l120.3-35.4c14.1-4.2 27-11.8 37.4-22.2L421.7 220.3 291.7 90.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen-clip": { + "aliases": { + "names": [ + "pen-alt" + ], + "unicodes": { + "secondary": [ + "10f305" + ] + } + }, + "changes": [ + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "update", + "write" + ] + }, + "unicode": "f305", + "label": "Pen Clip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M453.3 19.3l39.4 39.4c25 25 25 65.5 0 90.5l-52.1 52.1 0 0-1-1 0 0-16-16-96-96-17-17 52.1-52.1c25-25 65.5-25 90.5 0zM241 114.9c-9.4-9.4-24.6-9.4-33.9 0L105 217c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L173.1 81c28.1-28.1 73.7-28.1 101.8 0L288 94.1l17 17 96 96 16 16 1 1-17 17L229.5 412.5c-48 48-109.2 80.8-175.8 94.1l-25 5c-7.9 1.6-16-.9-21.7-6.6s-8.1-13.8-6.6-21.7l5-25c13.3-66.6 46.1-127.8 94.1-175.8L254.1 128 241 114.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen-fancy": { + "aliases": { + "unicodes": { + "composite": [ + "1f58b", + "2712" + ], + "secondary": [ + "10f5ac" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "black nib", + "design", + "edit", + "fountain", + "fountain pen", + "nib", + "pen", + "update", + "write" + ] + }, + "unicode": "f5ac", + "label": "Pen Fancy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M373.5 27.1C388.5 9.9 410.2 0 433 0c43.6 0 79 35.4 79 79c0 22.8-9.9 44.6-27.1 59.6L277.7 319l-10.3-10.3-64-64L193 234.3 373.5 27.1zM170.3 256.9l10.4 10.4 64 64 10.4 10.4-19.2 83.4c-3.9 17.1-16.9 30.7-33.8 35.4L24.4 510.3l95.4-95.4c2.6 .7 5.4 1.1 8.3 1.1c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32c0 2.9 .4 5.6 1.1 8.3L1.7 487.6 51.5 310c4.7-16.9 18.3-29.9 35.4-33.8l83.4-19.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen-nib": { + "aliases": { + "unicodes": { + "composite": [ + "2711" + ], + "secondary": [ + "10f5ad" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "fountain pen", + "update", + "write" + ] + }, + "unicode": "f5ad", + "label": "Pen Nib", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M366.4 18.3L310.7 74.1 435.9 199.3l55.7-55.7c21.9-21.9 21.9-57.3 0-79.2L445.6 18.3c-21.9-21.9-57.3-21.9-79.2 0zM286 94.6l-9.2 2.8L132.7 140.6c-19.9 6-35.7 21.2-42.3 41L1.8 445.8c-3.8 11.3-1 23.9 7.3 32.4L162.7 324.7c-3-6.3-4.7-13.3-4.7-20.7c0-26.5 21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48c-7.4 0-14.4-1.7-20.7-4.7L31.7 500.9c8.6 8.3 21.1 11.2 32.4 7.3l264.3-88.6c19.7-6.6 35-22.4 41-42.3l43.2-144.1 2.8-9.2L286 94.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen-ruler": { + "aliases": { + "names": [ + "pencil-ruler" + ], + "unicodes": { + "secondary": [ + "10f5ae" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "draw", + "pencil" + ] + }, + "unicode": "f5ae", + "label": "Pen Ruler", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M469.3 19.3l23.4 23.4c25 25 25 65.5 0 90.5l-56.4 56.4L322.3 75.7l56.4-56.4c25-25 65.5-25 90.5 0zM44.9 353.2L299.7 98.3 413.7 212.3 158.8 467.1c-6.7 6.7-15.1 11.6-24.2 14.2l-104 29.7c-8.4 2.4-17.4 .1-23.6-6.1s-8.5-15.2-6.1-23.6l29.7-104c2.6-9.2 7.5-17.5 14.2-24.2zM249.4 103.4L103.4 249.4 16 161.9c-18.7-18.7-18.7-49.1 0-67.9L94.1 16c18.7-18.7 49.1-18.7 67.9 0l19.8 19.8c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1l45.1 45.1zM408.6 262.6l45.1 45.1c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1L496 350.1c18.7 18.7 18.7 49.1 0 67.9L417.9 496c-18.7 18.7-49.1 18.7-67.9 0l-87.4-87.4L408.6 262.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pen-to-square": { + "aliases": { + "names": [ + "edit" + ], + "unicodes": { + "secondary": [ + "10f044" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "pen", + "pencil", + "update", + "write" + ] + }, + "unicode": "f044", + "label": "Pen To Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M471.6 21.7c-21.9-21.9-57.3-21.9-79.2 0L362.3 51.7l97.9 97.9 30.1-30.1c21.9-21.9 21.9-57.3 0-79.2L471.6 21.7zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.8 15.7-7.4 21.9-13.5L437.7 172.3 339.7 74.3 172.4 241.7zM96 64C43 64 0 107 0 160V416c0 53 43 96 96 96H352c53 0 96-43 96-96V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H96z" + }, + "regular": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M441 58.9L453.1 71c9.4 9.4 9.4 24.6 0 33.9L424 134.1 377.9 88 407 58.9c9.4-9.4 24.6-9.4 33.9 0zM209.8 256.2L344 121.9 390.1 168 255.8 302.2c-2.9 2.9-6.5 5-10.4 6.1l-58.5 16.7 16.7-58.5c1.1-3.9 3.2-7.5 6.1-10.4zM373.1 25L175.8 222.2c-8.7 8.7-15 19.4-18.3 31.1l-28.6 100c-2.4 8.4-.1 17.4 6.1 23.6s15.2 8.5 23.6 6.1l100-28.6c11.8-3.4 22.5-9.7 31.1-18.3L487 138.9c28.1-28.1 28.1-73.7 0-101.8L474.9 25C446.8-3.1 401.2-3.1 373.1 25zM88 64C39.4 64 0 103.4 0 152V424c0 48.6 39.4 88 88 88H360c48.6 0 88-39.4 88-88V312c0-13.3-10.7-24-24-24s-24 10.7-24 24V424c0 22.1-17.9 40-40 40H88c-22.1 0-40-17.9-40-40V152c0-22.1 17.9-40 40-40H200c13.3 0 24-10.7 24-24s-10.7-24-24-24H88z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "pencil": { + "aliases": { + "names": [ + "pencil-alt" + ], + "unicodes": { + "composite": [ + "270f", + "f040" + ], + "primary": [ + "f040" + ], + "secondary": [ + "10f040", + "10f303" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Lower Left Pencil", + "design", + "draw", + "edit", + "lead", + "pencil", + "update", + "write" + ] + }, + "unicode": "f303", + "label": "Pencil", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M410.3 231l11.3-11.3-33.9-33.9-62.1-62.1L291.7 89.8l-11.3 11.3-22.6 22.6L58.6 322.9c-10.4 10.4-18 23.3-22.2 37.4L1 480.7c-2.5 8.4-.2 17.5 6.1 23.7s15.3 8.5 23.7 6.1l120.3-35.4c14.1-4.2 27-11.8 37.4-22.2L387.7 253.7 410.3 231zM160 399.4l-9.1 22.7c-4 3.1-8.5 5.4-13.3 6.9L59.4 452l23-78.1c1.4-4.9 3.8-9.4 6.9-13.3l22.7-9.1v32c0 8.8 7.2 16 16 16h32zM362.7 18.7L348.3 33.2 325.7 55.8 314.3 67.1l33.9 33.9 62.1 62.1 33.9 33.9 11.3-11.3 22.6-22.6 14.5-14.5c25-25 25-65.5 0-90.5L453.3 18.7c-25-25-65.5-25-90.5 0zm-47.4 168l-144 144c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l144-144c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-arrows": { + "aliases": { + "names": [ + "people-arrows-left-right" + ], + "unicodes": { + "secondary": [ + "10e068" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "distance", + "isolation", + "separate", + "social distancing", + "users-people" + ] + }, + "unicode": "e068", + "label": "People Arrows", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M43 64a64 64 0 1 1 128 0A64 64 0 1 1 43 64zM4.9 233.4C8.3 191.9 43 160 84.6 160h44.8c27 0 51 13.4 65.5 34.1c-2.7 1.9-5.2 4-7.5 6.3l-64 64c-21.9 21.9-21.9 57.3 0 79.2L171 391.2V464c0 26.5-21.5 48-48 48H91c-26.5 0-48-21.5-48-48V348.3C16.5 338.8-1.7 312.4 .8 282.7l4.1-49.3zM427 64a64 64 0 1 1 128 0A64 64 0 1 1 427 64zM410.6 200.4c-2.3-2.3-4.9-4.4-7.5-6.3c14.5-20.7 38.6-34.1 65.5-34.1h44.8c41.6 0 76.3 31.9 79.7 73.4l4.1 49.3c2.5 29.8-15.7 56.1-42.2 65.6V464c0 26.5-21.5 48-48 48H475c-26.5 0-48-21.5-48-48V391.2l47.6-47.6c21.9-21.9 21.9-57.3 0-79.2l-64-64zM251 240v32h96V240c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l64 64c9.4 9.4 9.4 24.6 0 33.9l-64 64c-6.9 6.9-17.2 8.9-26.2 5.2s-14.8-12.5-14.8-22.2V336H251v32c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-64-64c-9.4-9.4-9.4-24.6 0-33.9l64-64c6.9-6.9 17.2-8.9 26.2-5.2s14.8 12.5 14.8 22.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-carry-box": { + "aliases": { + "names": [ + "people-carry" + ], + "unicodes": { + "secondary": [ + "10f4ce" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4ce", + "label": "People Carry Box", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M80 48a48 48 0 1 1 96 0A48 48 0 1 1 80 48zm64 193.7v65.1l51 51c7.1 7.1 11.8 16.2 13.4 26.1l15.2 90.9c2.9 17.4-8.9 33.9-26.3 36.8s-33.9-8.9-36.8-26.3l-14.3-85.9L66.8 320C54.8 308 48 291.7 48 274.7V186.6c0-32.4 26.2-58.6 58.6-58.6c24.1 0 46.5 12 59.9 32l47.4 71.1 10.1 5V160c0-17.7 14.3-32 32-32H384c17.7 0 32 14.3 32 32v76.2l10.1-5L473.5 160c13.3-20 35.8-32 59.9-32c32.4 0 58.6 26.2 58.6 58.6v88.1c0 17-6.7 33.3-18.7 45.3l-79.4 79.4-14.3 85.9c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l15.2-90.9c1.6-9.9 6.3-19 13.4-26.1l51-51V241.7l-19 28.5c-4.6 7-11 12.6-18.5 16.3l-59.6 29.8c-2.4 1.3-4.9 2.2-7.6 2.8c-2.6 .6-5.3 .9-7.9 .8H256.7c-2.5 .1-5-.2-7.5-.7c-2.9-.6-5.6-1.6-8.1-3l-59.5-29.8c-7.5-3.7-13.8-9.4-18.5-16.3l-19-28.5zM2.3 468.1L50.1 348.6l49.2 49.2-37.6 94c-6.6 16.4-25.2 24.4-41.6 17.8S-4.3 484.5 2.3 468.1zM512 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm77.9 348.6l47.8 119.5c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8l-37.6-94 49.2-49.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-group": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "family", + "group", + "team" + ] + }, + "unicode": "e533", + "label": "People Group", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M72 88a56 56 0 1 1 112 0A56 56 0 1 1 72 88zM64 245.7C54 256.9 48 271.8 48 288s6 31.1 16 42.3V245.7zm144.4-49.3C178.7 222.7 160 261.2 160 304c0 34.3 12 65.8 32 90.5V416c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V389.2C26.2 371.2 0 332.7 0 288c0-61.9 50.1-112 112-112h32c24 0 46.2 7.5 64.4 20.3zM448 416V394.5c20-24.7 32-56.2 32-90.5c0-42.8-18.7-81.3-48.4-107.7C449.8 183.5 472 176 496 176h32c61.9 0 112 50.1 112 112c0 44.7-26.2 83.2-64 101.2V416c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32zm8-328a56 56 0 1 1 112 0A56 56 0 1 1 456 88zM576 245.7v84.7c10-11.3 16-26.1 16-42.3s-6-31.1-16-42.3zM320 32a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM240 304c0 16.2 6 31 16 42.3V261.7c-10 11.3-16 26.1-16 42.3zm144-42.3v84.7c10-11.3 16-26.1 16-42.3s-6-31.1-16-42.3zM448 304c0 44.7-26.2 83.2-64 101.2V448c0 17.7-14.3 32-32 32H288c-17.7 0-32-14.3-32-32V405.2c-37.8-18-64-56.5-64-101.2c0-61.9 50.1-112 112-112h32c61.9 0 112 50.1 112 112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "group", + "need" + ] + }, + "unicode": "e534", + "label": "People Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M360 72a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zM144 208a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM496 208a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM200 313.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-36.3-67.5c1.7-1.7 3.2-3.6 4.3-5.8L264 217.5V272c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V217.5l26.9 49.9c1.2 2.2 2.6 4.1 4.3 5.8l-36.3 67.5c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L440 313.5V352c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V313.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3H486.2c-16.3 0-31.9 4.5-45.4 12.6l-33.6-62.3c-15.3-28.5-45.1-46.3-77.5-46.3H310.2c-32.4 0-62.1 17.8-77.5 46.3l-33.6 62.3c-13.5-8.1-29.1-12.6-45.4-12.6H134.2c-32.4 0-62.1 17.8-77.5 46.3L18.9 340.6c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L88 313.5V352c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V313.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-pulling": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forced return", + "yanking" + ] + }, + "unicode": "e535", + "label": "People Pulling", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M80 96A48 48 0 1 0 80 0a48 48 0 1 0 0 96zM64 128c-35.3 0-64 28.7-64 64V320c0 17.7 14.3 32 32 32c9.8 0 18.5-4.4 24.4-11.2L80.4 485.3c2.9 17.4 19.4 29.2 36.8 26.3s29.2-19.4 26.3-36.8L123.1 352h15.7l30 134.9c3.8 17.3 20.9 28.1 38.2 24.3s28.1-20.9 24.3-38.2l-57.3-258 116.3 53.8c.5 .3 1.1 .5 1.6 .7c8.6 3.6 18 3.1 25.9-.7c3.4-1.6 6.6-3.9 9.3-6.7c3.1-3.2 5.5-7 7.1-11.4c.1-.3 .2-.7 .3-1l2.5-7.5c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L537 232.7l-15.3-36.8C504.5 154.8 464.3 128 419.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-24.4 10.9-44.6 29-58.1 51.6L157.3 136.9C144.7 131 130.9 128 117 128H64zM464 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM349.7 335.6l-25 62.4-59.4 59.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L372.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-robbery": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "criminal", + "hands up", + "looting", + "robbery", + "steal" + ] + }, + "unicode": "e536", + "label": "People Robbery", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M480.2 59.1C470.1 99.6 433.7 128 392 128s-78.1-28.4-88.2-68.9L295 24.2C290.8 7.1 273.4-3.3 256.2 1S228.7 22.6 233 39.8l8.7 34.9c11 44 40.2 79.6 78.3 99.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V174.3c38.1-20 67.3-55.6 78.3-99.6L551 39.8c4.3-17.1-6.1-34.5-23.3-38.8S493.2 7.1 489 24.2l-8.7 34.9zM392 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM72 96A48 48 0 1 0 72 0a48 48 0 1 0 0 96zm-8 32c-35.3 0-64 28.7-64 64v96l0 .6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352H80V480c0 17.7 14.3 32 32 32s32-14.3 32-32V252.7l13 20.5c5.9 9.2 16.1 14.9 27 14.9h48c17.7 0 32-14.3 32-32s-14.3-32-32-32H201.6l-37.4-58.9C149.6 142 124.1 128 96.7 128H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "people-roof": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "family", + "group", + "manage", + "people", + "safe", + "shelter" + ] + }, + "unicode": "e537", + "label": "People Roof", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M335.5 4l288 160c15.4 8.6 21 28.1 12.4 43.5s-28.1 21-43.5 12.4L320 68.6 47.5 220c-15.4 8.6-34.9 3-43.5-12.4s-3-34.9 12.4-43.5L304.5 4c9.7-5.4 21.4-5.4 31.1 0zM320 160a40 40 0 1 1 0 80 40 40 0 1 1 0-80zM144 256a40 40 0 1 1 0 80 40 40 0 1 1 0-80zm312 40a40 40 0 1 1 80 0 40 40 0 1 1 -80 0zM226.9 491.4L200 441.5V480c0 17.7-14.3 32-32 32H120c-17.7 0-32-14.3-32-32V441.5L61.1 491.4c-6.3 11.7-20.8 16-32.5 9.8s-16-20.8-9.8-32.5l37.9-70.3c15.3-28.5 45.1-46.3 77.5-46.3h19.5c16.3 0 31.9 4.5 45.4 12.6l33.6-62.3c15.3-28.5 45.1-46.3 77.5-46.3h19.5c32.4 0 62.1 17.8 77.5 46.3l33.6 62.3c13.5-8.1 29.1-12.6 45.4-12.6h19.5c32.4 0 62.1 17.8 77.5 46.3l37.9 70.3c6.3 11.7 1.9 26.2-9.8 32.5s-26.2 1.9-32.5-9.8L552 441.5V480c0 17.7-14.3 32-32 32H472c-17.7 0-32-14.3-32-32V441.5l-26.9 49.9c-6.3 11.7-20.8 16-32.5 9.8s-16-20.8-9.8-32.5l36.3-67.5c-1.7-1.7-3.2-3.6-4.3-5.8L376 345.5V400c0 17.7-14.3 32-32 32H296c-17.7 0-32-14.3-32-32V345.5l-26.9 49.9c-1.2 2.2-2.6 4.1-4.3 5.8l36.3 67.5c6.3 11.7 1.9 26.2-9.8 32.5s-26.2 1.9-32.5-9.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pepper-hot": { + "aliases": { + "unicodes": { + "composite": [ + "1f336" + ], + "secondary": [ + "10f816" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buffalo wings", + "capsicum", + "chili", + "chilli", + "habanero", + "hot", + "hot pepper", + "jalapeno", + "mexican", + "pepper", + "spicy", + "tabasco", + "vegetable" + ] + }, + "unicode": "f816", + "label": "Pepper Hot", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M428.3 3c11.6-6.4 26.2-2.3 32.6 9.3l4.8 8.7c19.3 34.7 19.8 75.7 3.4 110C495.8 159.6 512 197.9 512 240c0 18.5-3.1 36.3-8.9 52.8c-6.1 17.3-28.5 16.3-36.8-.1l-11.7-23.4c-4.1-8.1-12.4-13.3-21.5-13.3H360c-13.3 0-24-10.7-24-24V152c0-13.3-10.7-24-24-24l-17.1 0c-21.3 0-30-23.9-10.8-32.9C304.7 85.4 327.7 80 352 80c28.3 0 54.8 7.3 77.8 20.2c5.5-18.2 3.7-38.4-6-55.8L419 35.7c-6.4-11.6-2.3-26.2 9.3-32.6zM171.2 345.5L264 160l40 0v80c0 26.5 21.5 48 48 48h76.2l23.9 47.8C372.3 443.9 244.3 512 103.2 512H44.4C19.9 512 0 492.1 0 467.6c0-20.8 14.5-38.8 34.8-43.3l49.8-11.1c37.6-8.4 69.5-33.2 86.7-67.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "perbyte": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e083", + "label": "PerByte", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M305.314,284.578H246.6V383.3h58.711q24.423,0,38.193-13.77t13.77-36.11q0-21.826-14.032-35.335T305.314,284.578ZM149.435,128.7H90.724v98.723h58.711q24.42,0,38.19-13.773t13.77-36.107q0-21.826-14.029-35.338T149.435,128.7ZM366.647,32H81.353A81.445,81.445,0,0,0,0,113.352V398.647A81.445,81.445,0,0,0,81.353,480H366.647A81.445,81.445,0,0,0,448,398.647V113.352A81.445,81.445,0,0,0,366.647,32Zm63.635,366.647a63.706,63.706,0,0,1-63.635,63.635H81.353a63.706,63.706,0,0,1-63.635-63.635V113.352A63.706,63.706,0,0,1,81.353,49.718H366.647a63.706,63.706,0,0,1,63.635,63.634ZM305.314,128.7H246.6v98.723h58.711q24.423,0,38.193-13.773t13.77-36.107q0-21.826-14.032-35.338T305.314,128.7Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "percent": { + "aliases": { + "names": [ + "percentage" + ], + "unicodes": { + "composite": [ + "f295", + "f541" + ], + "primary": [ + "f295", + "f541" + ], + "secondary": [ + "1025", + "10f295", + "10f541" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Percent Sign", + "discount", + "fraction", + "proportion", + "rate", + "ratio" + ] + }, + "unicode": "25", + "label": "Percent", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M374.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-320 320c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l320-320zM128 128A64 64 0 1 0 0 128a64 64 0 1 0 128 0zM384 384a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "periscope": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3da", + "label": "Periscope", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "person": { + "aliases": { + "names": [ + "male" + ], + "unicodes": { + "composite": [ + "1f9cd" + ], + "secondary": [ + "10f183" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "man", + "person standing", + "stand", + "standing", + "woman" + ] + }, + "unicode": "f183", + "label": "Person", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-arrow-down-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ground", + "indigenous", + "native" + ] + }, + "unicode": "e538", + "label": "Person Arrow Down To Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8 352V352h16v96H184zm-64 0H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H152h80H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H264V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6H177.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L120 256.9V448zM464 64V306.7l-25.4-25.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l80 80c12.5 12.5 32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L528 306.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-arrow-up-from-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "population", + "rise" + ] + }, + "unicode": "e539", + "label": "Person Arrow Up From Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8 352V352h16v96H184zm-64 0H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H152h80H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H264V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6H177.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L120 256.9V448zM598.6 121.4l-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L464 141.3 464 384c0 17.7 14.3 32 32 32s32-14.3 32-32V141.3l25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-biking": { + "aliases": { + "names": [ + "biking" + ], + "unicodes": { + "composite": [ + "1f6b4" + ], + "secondary": [ + "10f84a" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bicycle", + "bike", + "biking", + "cyclist", + "pedal", + "person biking", + "summer", + "wheel" + ] + }, + "unicode": "f84a", + "label": "Person Biking", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M400 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm27.2 64l-61.8-48.8c-17.3-13.6-41.7-13.8-59.1-.3l-83.1 64.2c-30.7 23.8-28.5 70.8 4.3 91.6L288 305.1V416c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-10.7-5.3-20.7-14.2-26.6L295 232.9l60.3-48.5L396 217c5.7 4.5 12.7 7 20 7h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H427.2zM56 384a72 72 0 1 1 144 0A72 72 0 1 1 56 384zm200 0A128 128 0 1 0 0 384a128 128 0 1 0 256 0zm184 0a72 72 0 1 1 144 0 72 72 0 1 1 -144 0zm200 0a128 128 0 1 0 -256 0 128 128 0 1 0 256 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-booth": { + "aliases": { + "unicodes": { + "secondary": [ + "10f756" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "changing room", + "curtain", + "vote", + "voting" + ] + }, + "unicode": "f756", + "label": "Person Booth", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V192h64V32zm320 0c0-17.7-14.3-32-32-32s-32 14.3-32 32V480c0 17.7 14.3 32 32 32s32-14.3 32-32V32zM224 512c17.7 0 32-14.3 32-32V320H192V480c0 17.7 14.3 32 32 32zM320 0c-9.3 0-18.1 4-24.2 11s-8.8 16.3-7.5 25.5l31.2 218.6L288.6 409.7c-3.5 17.3 7.8 34.2 25.1 37.7s34.2-7.8 37.7-25.1l.7-3.6c1.3 16.4 15.1 29.4 31.9 29.4c17.7 0 32-14.3 32-32c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H320zM112 80A48 48 0 1 0 16 80a48 48 0 1 0 96 0zm0 261.3V269.3l4.7 4.7c9 9 21.2 14.1 33.9 14.1H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H157.3l-41.6-41.6c-14.3-14.3-33.8-22.4-54-22.4C27.6 160 0 187.6 0 221.6v55.7l0 .9V480c0 17.7 14.3 32 32 32s32-14.3 32-32V384l32 42.7V480c0 17.7 14.3 32 32 32s32-14.3 32-32V421.3c0-10.4-3.4-20.5-9.6-28.8L112 341.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-breastfeeding": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baby", + "child", + "infant", + "mother", + "nutrition", + "sustenance" + ] + }, + "unicode": "e53a", + "label": "Person Breastfeeding", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0a80 80 0 1 1 0 160A80 80 0 1 1 224 0zM436.8 382.8L373.5 462c-16.6 20.7-46.8 24.1-67.5 7.5c-17.6-14.1-22.7-38.1-13.5-57.7l-.7-.1c-38.9-5.6-74.3-25.1-99.7-54.8V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 .8 0 1.6 .1 2.4l101.4 50.7c23.7 11.9 33.3 40.7 21.5 64.4s-40.7 33.3-64.4 21.5L27.2 427.3c-1.1-.5-2.2-1.1-3.3-1.7c-4.9-2.8-9.2-6.4-12.6-10.6c-4.6-5.4-7.8-11.7-9.6-18.4c-3.3-12-1.9-25.2 4.8-36.6c.6-1.1 1.3-2.2 2-3.2L75.6 256.1c26.7-40.1 71.7-64.1 119.8-64.1h75.2c46.5 0 90.1 22.5 117.2 60.3l50.7 70.9c2.2 3 4 6.1 5.5 9.4c2.9 6.7 4.3 13.8 4 20.8c-.3 10.6-4.2 21-11.2 29.4zM320 332a44 44 0 1 0 -88 0 44 44 0 1 0 88 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abuse", + "accident", + "crash", + "explode", + "violence" + ] + }, + "unicode": "e53b", + "label": "Person Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8 384V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6H465.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L408 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32zM190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74L55.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L10.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L90.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6L176 286.1l58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 50.5-7.8 24.4-40.5-55.2-38L315 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3L220.3 92.1l-29.4-74z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-cane": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aging", + "cane", + "elderly", + "old", + "staff" + ] + }, + "unicode": "e53c", + "label": "Person Cane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M240 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm-8 187.3l47.4 57.1c11.3 13.6 31.5 15.5 45.1 4.2s15.5-31.5 4.2-45.1l-73.7-88.9c-18.2-22-45.3-34.7-73.9-34.7H145.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L88 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V235.3zM320 376c0-4.4 3.6-8 8-8s8 3.6 8 8V488c0 13.3 10.7 24 24 24s24-10.7 24-24V376c0-30.9-25.1-56-56-56s-56 25.1-56 56v8c0 13.3 10.7 24 24 24s24-10.7 24-24v-8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-chalkboard": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blackboard", + "instructor", + "keynote", + "lesson", + "presentation", + "teacher" + ] + }, + "unicode": "e53d", + "label": "Person Chalkboard", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8 384V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V192h56 64 16c17.7 0 32-14.3 32-32s-14.3-32-32-32H384V64H576V256H384V224H320v48c0 26.5 21.5 48 48 48H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H368c-26.5 0-48 21.5-48 48v80H243.1 177.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L120 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "approved", + "not affected", + "ok", + "okay" + ] + }, + "unicode": "e53e", + "label": "Person Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zm136 16a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L416 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "alert", + "lost", + "missing" + ] + }, + "unicode": "e53f", + "label": "Person Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-minus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "remove" + ] + }, + "unicode": "e540", + "label": "Person Circle Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zm136 16a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm224 0c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16s7.2 16 16 16H496c8.8 0 16-7.2 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-plus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "found" + ] + }, + "unicode": "e541", + "label": "Person Circle Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm16 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H368c-8.8 0-16 7.2-16 16s7.2 16 16 16h48v48c0 8.8 7.2 16 16 16s16-7.2 16-16V384h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H448V304z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-question": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "lost", + "missing" + ] + }, + "unicode": "e542", + "label": "Person Circle Question", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zM368 321.6V328c0 8.8 7.2 16 16 16s16-7.2 16-16v-6.4c0-5.3 4.3-9.6 9.6-9.6h40.5c7.7 0 13.9 6.2 13.9 13.9c0 5.2-2.9 9.9-7.4 12.3l-32 16.8c-5.3 2.8-8.6 8.2-8.6 14.2V384c0 8.8 7.2 16 16 16s16-7.2 16-16v-5.1l23.5-12.3c15.1-7.9 24.5-23.6 24.5-40.6c0-25.4-20.6-45.9-45.9-45.9H409.6c-23 0-41.6 18.6-41.6 41.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dead", + "removed" + ] + }, + "unicode": "e543", + "label": "Person Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm59.3 107.3c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L409.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L432 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368l36.7-36.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-digging": { + "aliases": { + "names": [ + "digging" + ], + "unicodes": { + "secondary": [ + "10f85e" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bury", + "construction", + "debris", + "dig", + "men at work" + ] + }, + "unicode": "f85e", + "label": "Person Digging", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M208 64a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM9.8 214.8c5.1-12.2 19.1-18 31.4-12.9L60.7 210l22.9-38.1C99.9 144.6 129.3 128 161 128c51.4 0 97 32.9 113.3 81.7l34.6 103.7 79.3 33.1 34.2-45.6c6.4-8.5 16.6-13.3 27.2-12.8s20.3 6.4 25.8 15.5l96 160c5.9 9.9 6.1 22.2 .4 32.2s-16.3 16.2-27.8 16.2H288c-11.1 0-21.4-5.7-27.2-15.2s-6.4-21.2-1.4-31.1l16-32c5.4-10.8 16.5-17.7 28.6-17.7h32l22.5-30L22.8 246.2c-12.2-5.1-18-19.1-12.9-31.4zm82.8 91.8l112 48c11.8 5 19.4 16.6 19.4 29.4v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V405.1l-60.6-26-37 111c-5.6 16.8-23.7 25.8-40.5 20.2S-3.9 486.6 1.6 469.9l48-144 11-33 32 13.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-dots-from-line": { + "aliases": { + "names": [ + "diagnoses" + ], + "unicodes": { + "secondary": [ + "10f470" + ] + } + }, + "changes": [ + "5.0.7", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "allergy", + "diagnosis" + ] + }, + "unicode": "f470", + "label": "Person Dots From Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 176A88 88 0 1 0 288 0a88 88 0 1 0 0 176zM78.7 372.9c15-12.5 50-34.4 97.3-50.1V432H400V322.7c47.3 15.8 82.3 37.7 97.3 50.1c20.4 17 50.6 14.2 67.6-6.1s14.2-50.6-6.1-67.6c-12-10-30.1-22.5-53.2-35C497.2 278.4 481.7 288 464 288c-26.5 0-48-21.5-48-48c0-4.3 .6-8.4 1.6-12.4C379.1 215.9 335.3 208 288 208c-60.2 0-114.9 12.9-160 29.9c0 .7 0 1.4 0 2.1c0 26.5-21.5 48-48 48c-11.8 0-22.7-4.3-31-11.4c-13.1 8.1-23.7 15.9-31.7 22.5c-20.4 17-23.1 47.2-6.1 67.6s47.2 23.1 67.6 6.1zM24 464c-13.3 0-24 10.7-24 24s10.7 24 24 24H552c13.3 0 24-10.7 24-24s-10.7-24-24-24H24zM224 280a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm104 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM96 240a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm368 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-dress": { + "aliases": { + "names": [ + "female" + ], + "unicodes": { + "secondary": [ + "10f182" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "man", + "skirt", + "woman" + ] + }, + "unicode": "f182", + "label": "Person Dress", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM88 384H70.2c-10.9 0-18.6-10.7-15.2-21.1L93.3 248.1 59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l53.6-89.2c20.3-33.7 56.7-54.3 96-54.3h11.6c39.3 0 75.7 20.6 96 54.3l53.6 89.2c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9l-33.9-56.3L265 362.9c3.5 10.4-4.3 21.1-15.2 21.1H232v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H152v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-dress-burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abuse", + "accident", + "crash", + "explode", + "violence" + ] + }, + "unicode": "e544", + "label": "Person Dress Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M528 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM390.2 384H408v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h16v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h17.8c10.9 0 18.6-10.7 15.2-21.1L546.7 248.1l33.9 56.3c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-53.6-89.2c-20.2-33.7-56.7-54.3-96-54.3H474.2c-39.3 0-75.7 20.6-96 54.3l-53.6 89.2c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9l33.9-56.3L375 362.9c-3.5 10.4 4.3 21.1 15.2 21.1zM190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74L55.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L10.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L90.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6L176 286.1l58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 50.5-7.8 24.4-40.5-55.2-38L315 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3L220.3 92.1l-29.4-74z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-drowning": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drown", + "emergency", + "swim" + ] + }, + "unicode": "e545", + "label": "Person Drowning", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M192 64c0-17.7-14.3-32-32-32s-32 14.3-32 32V96.2c0 54.1 23.5 104 62.2 138.3l-21 146.7c7.8 2.1 15.5 3.3 22.8 3.3c21.1 0 42-8.5 59.2-20.3c22.1-15.5 51.6-15.5 73.7 0c12.4 8.5 26.1 14.8 39.7 18l17.7-97.6c10.7-1.2 21.3-3.1 31.9-5.5l105-23.9c17.2-3.9 28-21.1 24.1-38.3s-21.1-28-38.3-24.1L400 216.6c-41 9.3-83.7 7.5-123.7-5.2c-50.2-16-84.3-62.6-84.3-115.3V64zM320 192a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM306.5 389.9c-11.1-7.9-25.9-7.9-37 0C247 405.4 219.5 416 192 416c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 469.7 159 480 192 480c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 405.2 410.9 416 384 416c-27.5 0-55-10.6-77.5-26.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-falling": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accident", + "fall", + "trip" + ] + }, + "unicode": "e546", + "label": "Person Falling", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M256 0c17.7 0 32 14.3 32 32l0 9.8c0 54.6-27.9 104.6-72.5 133.6l.2 .3L272.5 256l87.5 0c15.1 0 29.3 7.1 38.4 19.2l43.2 57.6c10.6 14.1 7.7 34.2-6.4 44.8s-34.2 7.7-44.8-6.4L352 320l-96 0h-1.4l92.3 142.6c9.6 14.8 5.4 34.6-9.5 44.3s-34.6 5.4-44.3-9.5L132.5 249.2c-2.9 9.2-4.5 19-4.5 29l0 73.8c0 17.7-14.3 32-32 32s-32-14.3-32-32V278.2c0-65.1 39.6-123.7 100.1-147.9C200.3 115.8 224 80.8 224 41.8l0-9.8c0-17.7 14.3-32 32-32zM80 32a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-falling-burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accident", + "crash", + "death", + "fall", + "homicide", + "murder" + ] + }, + "unicode": "e547", + "label": "Person Falling Burst", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 9.8c0 39-23.7 74-59.9 88.4C71.6 154.5 32 213 32 278.2V352c0 17.7 14.3 32 32 32s32-14.3 32-32l0-73.8c0-10 1.6-19.8 4.5-29L261.1 497.4c9.6 14.8 29.4 19.1 44.3 9.5s19.1-29.4 9.5-44.3L222.6 320H224l80 0 38.4 51.2c10.6 14.1 30.7 17 44.8 6.4s17-30.7 6.4-44.8l-43.2-57.6C341.3 263.1 327.1 256 312 256l-71.5 0-56.8-80.2-.2-.3c44.7-29 72.5-79 72.5-133.6l0-9.8zM96 80A48 48 0 1 0 0 80a48 48 0 1 0 96 0zM464 286.1l58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 78.7-12.2c6.5-1 11.7-5.9 13.1-12.2s-1.1-13-6.5-16.7l-65.6-45.1L603 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3L508.3 92.1l-29.4-74C476.4 12 470.6 8 464 8s-12.4 4-14.9 10.1l-29.4 74L343.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1-65.6 45.1c-5.4 3.7-8 10.3-6.5 16.7c.1 .3 .1 .6 .2 .8l19.4 0c20.1 0 39.2 7.5 53.8 20.8l18.4 2.9L383 265.3l36.2 48.3c2.1 2.8 3.9 5.7 5.5 8.6L464 286.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-half-dress": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gender", + "man", + "restroom", + "transgender", + "woman" + ] + }, + "unicode": "e548", + "label": "Person Half Dress", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm8 352V128h6.9c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352h0zM58.2 182.3c19.9-33.1 55.3-53.5 93.8-54.3V384h0v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H70.2c-10.9 0-18.6-10.7-15.2-21.1L93.3 248.1 59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l53.6-89.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-harassing": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abuse", + "scream", + "shame", + "shout", + "yell" + ] + }, + "unicode": "e549", + "label": "Person Harassing", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM59.4 304.5L88 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V235.3l47.4 57.1c11.3 13.6 31.5 15.5 45.1 4.2s15.5-31.5 4.2-45.1l-73.7-88.9c-18.2-22-45.3-34.7-73.9-34.7H145.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9zM480 240a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM464 344v58.7l-41.4-41.4c-7.3-7.3-17.6-10.6-27.8-9s-18.9 8.1-23.5 17.3l-48 96c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3L408.8 438l54.7 54.7c12.4 12.4 29.1 19.3 46.6 19.3c36.4 0 65.9-29.5 65.9-65.9V344c0-30.9-25.1-56-56-56s-56 25.1-56 56zM288 48c0 8.8 7.2 16 16 16h56c8.8 0 16-7.2 16-16s-7.2-16-16-16H304c-8.8 0-16 7.2-16 16zm-.8 49.7c-7.9-4-17.5-.7-21.5 7.2s-.7 17.5 7.2 21.5l48 24c7.9 4 17.5 .7 21.5-7.2s.7-17.5-7.2-21.5l-48-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-hiking": { + "aliases": { + "names": [ + "hiking" + ], + "unicodes": { + "secondary": [ + "10f6ec" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "autumn", + "fall", + "hike", + "mountain", + "outdoors", + "summer", + "walk" + ] + }, + "unicode": "f6ec", + "label": "Person Hiking", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm51.3 182.7L224.2 307l49.7 49.7c9 9 14.1 21.2 14.1 33.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V397.3l-73.9-73.9c-15.8-15.8-22.2-38.6-16.9-60.3l20.4-84c8.3-34.1 42.7-54.9 76.7-46.4c19 4.8 35.6 16.4 46.4 32.7L305.1 208H336V184c0-13.3 10.7-24 24-24s24 10.7 24 24v55.8c0 .1 0 .2 0 .2s0 .2 0 .2V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V272H296.6c-16 0-31-8-39.9-21.4l-13.3-20zM81.1 471.9L117.3 334c3 4.2 6.4 8.2 10.1 11.9l41.9 41.9L142.9 488.1c-4.5 17.1-22 27.3-39.1 22.8s-27.3-22-22.8-39.1zm55.5-346L101.4 266.5c-3 12.1-14.9 19.9-27.2 17.9l-47.9-8c-14-2.3-22.9-16.3-19.2-30L31.9 155c9.5-34.8 41.1-59 77.2-59h4.2c15.6 0 27.1 14.7 23.3 29.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-military-pointing": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "army", + "customs", + "guard" + ] + }, + "unicode": "e54a", + "label": "Person Military Pointing", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M214.9 14.1C202 15.2 192 26 192 39c0 13.8 11.2 25 25 25H368c8.8 0 16-7.2 16-16V17.4C384 8 376 .7 366.7 1.4L214.9 14.1zM208 112c0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H209.6c-1 5.2-1.6 10.5-1.6 16zM40 224c-22.1 0-40 17.9-40 40s17.9 40 40 40H192v89.4L354.8 230.5c-13.3-4.3-27.3-6.5-41.6-6.5H208 40zm345.7 20.9L214.6 416H384V369.7l53.6 90.6c11.2 19 35.8 25.3 54.8 14.1s25.3-35.8 14.1-54.8L430.3 290.8c-11.2-18.9-26.6-34.5-44.6-45.9zM192 448v32c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32V448H192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-military-rifle": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "armed forces", + "army", + "military", + "rifle", + "war" + ] + }, + "unicode": "e54b", + "label": "Person Military Rifle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 39c0-13 10-23.8 22.9-24.9L302.7 1.4C312 .7 320 8 320 17.4V48c0 8.8-7.2 16-16 16H153c-13.8 0-25-11.2-25-25zm17.6 57H302.4c1 5.2 1.6 10.5 1.6 16c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-5.5 .6-10.8 1.6-16zm228 364.3L320 369.7V480c0 1.3-.1 2.5-.2 3.8L145.5 234.9c16.6-7.1 34.6-10.9 53.3-10.9h50.4c15.9 0 31.3 2.8 45.8 7.9L389.9 67.7c-7.7-4.4-10.3-14.2-5.9-21.9s14.2-10.3 21.9-5.9l13.9 8 13.9 8c7.7 4.4 10.3 14.2 5.9 21.9L384 173.9l1.6 .9c15.3 8.8 20.6 28.4 11.7 43.7L360.6 282c2 2.8 3.9 5.8 5.7 8.8l76.1 128.8c11.2 19 4.9 43.5-14.1 54.8s-43.5 4.9-54.8-14.1zM288 512H160c-17.7 0-32-14.3-32-32V369.7L74.4 460.3c-11.2 19-35.8 25.3-54.8 14.1S-5.7 438.7 5.6 419.7L81.7 290.8c9.4-15.8 21.7-29.3 36-40L299.1 510c-3.5 1.3-7.2 2-11.1 2zM264 320a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-military-to-person": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "civilian", + "coordination", + "military" + ] + }, + "unicode": "e54c", + "label": "Person Military To Person", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M67.1 11.7c-8 .9-14.1 7.7-14.1 15.8c0 8.7 7 15.8 15.8 15.9H173.5c8.3-.1 14.9-6.8 14.9-15.1V15.1c0-9-7.8-16-16.7-15L67.1 11.7zM178.6 73.5H62.9c-1.5 5.3-2.4 11-2.4 16.8c0 33.3 27 60.2 60.2 60.2s60.2-27 60.2-60.2c0-5.8-.8-11.5-2.4-16.8zM30.4 240.9v30.1c0 16.6 13.5 30.1 30.1 30.1H180.9c1.7 0 3.3-.1 4.9-.4L50.1 196.4c-12.1 11-19.7 26.9-19.7 44.6zm179.1 40c1.1-3.1 1.6-6.4 1.6-9.9V240.9c0-33.3-27-60.2-60.2-60.2H90.6c-3.5 0-7 .3-10.3 .9l129.1 99.3zM361.6 150.6a60.2 60.2 0 1 0 0-120.5 60.2 60.2 0 1 0 0 120.5zm-30.1 30.1c-33.3 0-60.2 27-60.2 60.2v30.1c0 16.6 13.5 30.1 30.1 30.1H421.9c16.6 0 30.1-13.5 30.1-30.1V240.9c0-33.3-27-60.2-60.2-60.2H331.5zM203.3 423.6c4.9-4.3 7.7-10.5 7.7-17s-2.8-12.7-7.7-17l-60.2-52.7c-6.7-5.8-16.1-7.2-24.2-3.6s-13.3 11.7-13.3 20.6V384l-82.8 0C10.3 384 .2 394.1 .2 406.6s10.1 22.6 22.6 22.6l82.8 0v30.1c0 8.9 5.2 16.9 13.3 20.6s17.5 2.3 24.2-3.6l60.2-52.7zm67.9-17c0 6.5 2.8 12.7 7.7 17l60.2 53.1c6.7 5.9 16.1 7.3 24.2 3.6s13.3-11.7 13.3-20.6l0-30.5 82.8 0c12.5 0 22.6-10.1 22.6-22.6s-10.1-22.6-22.6-22.6l-82.8 0 0-30.1c0-8.9-5.2-16.9-13.3-20.6s-17.5-2.3-24.2 3.6L279 389.6c-4.9 4.3-7.7 10.5-7.7 17z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-praying": { + "aliases": { + "names": [ + "pray" + ], + "unicodes": { + "composite": [ + "1f6d0" + ], + "secondary": [ + "10f683" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "kneel", + "place of worship", + "religion", + "thank", + "worship" + ] + }, + "unicode": "f683", + "label": "Person Praying", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 64A64 64 0 1 0 192 64a64 64 0 1 0 128 0zM200.7 264l22.9 31.5c6.5 8.9 16.3 14.7 27.2 16.1s21.9-1.7 30.4-8.7l88-72c17.1-14 19.6-39.2 5.6-56.3s-39.2-19.6-56.3-5.6l-55.2 45.2-26.2-36C221.6 156.7 196.6 144 170 144c-30.9 0-59.2 17.1-73.6 44.4L47.8 280.9c-20.2 38.5-9.4 85.9 25.6 111.8L126.6 432H40c-22.1 0-40 17.9-40 40s17.9 40 40 40H248c17.3 0 32.6-11.1 38-27.5s-.3-34.4-14.2-44.7L155.7 354l45-90z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-pregnant": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baby", + "birth", + "child", + "pregnant", + "pregnant woman", + "woman" + ] + }, + "unicode": "e31e", + "label": "Person Pregnant", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM88 383c-13.8-3.6-24-16.1-24-31V296.9l-4.6 7.6c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c15-24.9 40.3-41.5 68.7-45.6c4.1-.6 8.2-1 12.5-1h1.1 12.5H160c1.4 0 2.8 .1 4.1 .3c35.7 2.9 65.4 29.3 72.1 65l6.1 32.5c44.3 8.6 77.7 47.5 77.7 94.3v32c0 17.7-14.3 32-32 32H272 232v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384h-8-8v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V383z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-rays": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "focus", + "shine" + ] + }, + "unicode": "e54d", + "label": "Person Rays", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9l-28.6 47.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L328 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H248zM7 7C16.4-2.3 31.6-2.3 41 7l80 80c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L7 41C-2.3 31.6-2.3 16.4 7 7zM471 7c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-80 80c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L471 7zM7 505c-9.4-9.4-9.4-24.6 0-33.9l80-80c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L41 505c-9.4 9.4-24.6 9.4-33.9 0zm464 0l-80-80c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l80 80c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-rifle": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "army", + "combatant", + "gun", + "military", + "rifle", + "war" + ] + }, + "unicode": "e54e", + "label": "Person Rifle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M249.2 192c25.4 0 49.8 7.1 70.8 19.9V512H128V337.7L74.4 428.3c-11.2 19-35.8 25.3-54.8 14.1S-5.7 406.7 5.6 387.7L81.7 258.8c24.5-41.4 69-66.8 117.1-66.8h50.4zM144 80a80 80 0 1 1 160 0A80 80 0 1 1 144 80zM432 0c8.8 0 16 7.2 16 16V132.3c9.6 5.5 16 15.9 16 27.7V269.3l16-5.3V208c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v84.5c0 6.9-4.4 13-10.9 15.2L464 325.3V352h48c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H468l23 92.1c2.5 10.1-5.1 19.9-15.5 19.9H416c-8.8 0-16-7.2-16-16V400H384c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32V160c0-11.8 6.4-22.2 16-27.7V32c-8.8 0-16-7.2-16-16s7.2-16 16-16h16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-running": { + "aliases": { + "names": [ + "running" + ], + "unicodes": { + "composite": [ + "1f3c3" + ], + "secondary": [ + "10f70c" + ] + } + }, + "changes": [ + "5.4.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exit", + "flee", + "marathon", + "person running", + "race", + "running" + ] + }, + "unicode": "f70c", + "label": "Person Running", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M320 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM125.7 175.5c9.9-9.9 23.4-15.5 37.5-15.5c1.9 0 3.8 .1 5.6 .3L137.6 254c-9.3 28 1.7 58.8 26.8 74.5l86.2 53.9-25.4 88.8c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l28.7-100.4c5.9-20.6-2.6-42.6-20.7-53.9L238 299l30.9-82.4 5.1 12.3C289 264.7 323.9 288 362.7 288H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H362.7c-12.9 0-24.6-7.8-29.5-19.7l-6.3-15c-14.6-35.1-44.1-61.9-80.5-73.1l-48.7-15c-11.1-3.4-22.7-5.2-34.4-5.2c-31 0-60.8 12.3-82.7 34.3L57.4 153.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l23.1-23.1zM91.2 352H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h69.6c19 0 36.2-11.2 43.9-28.5L157 361.6l-9.5-6c-17.5-10.9-30.5-26.8-37.9-44.9L91.2 352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-shelter": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "house", + "inside", + "roof", + "safe", + "safety", + "shelter" + ] + }, + "unicode": "e54f", + "label": "Person Shelter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M271.9 4.2c-9.8-5.6-21.9-5.6-31.8 0l-224 128C6.2 137.9 0 148.5 0 160V480c0 17.7 14.3 32 32 32s32-14.3 32-32V178.6L256 68.9 448 178.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-11.5-6.2-22.1-16.1-27.8l-224-128zM256 208a40 40 0 1 0 0-80 40 40 0 1 0 0 80zm-8 280V400h16v88c0 13.3 10.7 24 24 24s24-10.7 24-24V313.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3H246.2c-32.4 0-62.1 17.8-77.5 46.3l-37.9 70.3c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L200 313.5V488c0 13.3 10.7 24 24 24s24-10.7 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-skating": { + "aliases": { + "names": [ + "skating" + ], + "unicodes": { + "secondary": [ + "10f7c5" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "figure skating", + "ice", + "olympics", + "rink", + "skate", + "winter" + ] + }, + "unicode": "f7c5", + "label": "Person Skating", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM128 128c0-17.7 14.3-32 32-32H319.4c43.6 0 64.6 53.4 32.8 83.1l-74.4 69.4 60.2 60.2c9 9 14.1 21.2 14.1 33.9V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V349.3l-77.9-77.8c-26.6-26.6-24.6-70.3 4.3-94.4l20.4-17H160c-17.7 0-32-14.3-32-32zM81.4 353.4l86.9-86.9c4.6 10 11 19.3 19.3 27.5l21.8 21.8-82.7 82.7c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3zm322.5 95.1c8.6 2.1 13.8 10.8 11.6 19.4l-.4 1.7c-6.2 24.9-28.6 42.4-54.3 42.4H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h88.8c11 0 20.6-7.5 23.3-18.2l.4-1.7c2.1-8.6 10.8-13.8 19.4-11.6zM135.2 478.3l-6.2 3.1c-21.6 10.8-47.6 6.6-64.6-10.5L4.7 411.3c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l59.6 59.6c7.3 7.3 18.5 9.1 27.7 4.5l6.2-3.1c7.9-4 17.5-.7 21.5 7.2s.7 17.5-7.2 21.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-skiing": { + "aliases": { + "names": [ + "skiing" + ], + "unicodes": { + "composite": [ + "26f7" + ], + "secondary": [ + "10f7c9" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "downhill", + "olympics", + "ski", + "skier", + "snow", + "winter" + ] + }, + "unicode": "f7c9", + "label": "Person Skiing", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M380.7 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM2.7 268.9c6.1-11.8 20.6-16.3 32.4-10.2L232.7 361.3l46.2-69.2-75.1-75.1c-14.6-14.6-20.4-33.9-18.4-52.1l108.8 52 39.3 39.3c16.2 16.2 18.7 41.5 6 60.6L289.8 391l128.7 66.8c13.6 7.1 29.8 7.2 43.6 .3l15.2-7.6c11.9-5.9 26.3-1.1 32.2 10.7s1.1 26.3-10.7 32.2l-15.2 7.6c-27.5 13.7-59.9 13.5-87.2-.7L12.9 301.3C1.2 295.2-3.4 280.7 2.7 268.9zM118.9 65.6L137 74.2l8.7-17.4c4-7.9 13.6-11.1 21.5-7.2s11.1 13.6 7.2 21.5l-8.5 16.9 54.7 26.2c1.5-.7 3.1-1.4 4.7-2.1l83.4-33.4c34.2-13.7 72.8 4.2 84.5 39.2l17.1 51.2 52.1 26.1c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-58.1-29c-11.4-5.7-20-15.7-24.1-27.8l-5.8-17.3-27.3 12.1-6.8 3-6.7-3.2L151.5 116.7l-9.2 18.4c-4 7.9-13.6 11.1-21.5 7.2s-11.1-13.6-7.2-21.5l9-18-17.6-8.4c-8-3.8-11.3-13.4-7.5-21.3s13.4-11.3 21.3-7.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-skiing-nordic": { + "aliases": { + "names": [ + "skiing-nordic" + ], + "unicodes": { + "secondary": [ + "10f7ca" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cross country", + "olympics", + "winter" + ] + }, + "unicode": "f7ca", + "label": "Person Skiing Nordic", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M336 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM227.2 160c1.9 0 3.8 .1 5.6 .3L201.6 254c-9.3 28 1.7 58.8 26.8 74.5l86.2 53.9L291.3 464H202.8l41.1-88.1-32.4-20.3c-7.8-4.9-14.7-10.7-20.6-17.3L132.2 464H99.7l54.2-257.6c4.6-1.5 9-4.1 12.7-7.8l23.1-23.1c9.9-9.9 23.4-15.5 37.5-15.5zM121.4 198.6c.4 .4 .8 .8 1.3 1.2L67 464H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H159.3c.4 0 .9 0 1.3 0H319.3c.5 0 1 0 1.4 0H504c39.8 0 72-32.2 72-72v-8c0-13.3-10.7-24-24-24s-24 10.7-24 24v8c0 13.3-10.7 24-24 24H434.6l27.6-179.3c10.5-5.2 17.8-16.1 17.8-28.7c0-17.7-14.3-32-32-32H426.7c-12.9 0-24.6-7.8-29.5-19.7l-6.3-15c-14.6-35.1-44.1-61.9-80.5-73.1l-48.7-15c-11.1-3.4-22.7-5.2-34.4-5.2c-31 0-60.8 12.3-82.7 34.3l-23.1 23.1c-12.5 12.5-12.5 32.8 0 45.3zm308 89.4L402.3 464H357.8l21.6-75.6c5.9-20.6-2.6-42.6-20.7-53.9L302 299l30.9-82.4 5.1 12.3C353 264.7 387.9 288 426.7 288h2.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-snowboarding": { + "aliases": { + "names": [ + "snowboarding" + ], + "unicodes": { + "composite": [ + "1f3c2" + ], + "secondary": [ + "10f7ce" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "olympics", + "ski", + "snow", + "snowboard", + "snowboarder", + "winter" + ] + }, + "unicode": "f7ce", + "label": "Person Snowboarding", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M209.7 3.4c15.8-7.9 35-1.5 42.9 14.3l25 50 42.4 8.5c19.5 3.9 37.8 12.3 53.5 24.5l126.1 98.1c14 10.9 16.5 31 5.6 44.9s-31 16.5-44.9 5.6l-72.1-56.1-71.5 31.8 33.1 27.6c23.2 19.3 33.5 50 26.7 79.4l-17.4 75.2c-2.2 9.4-8.2 16.8-16.1 21l86.5 33.1c4.6 1.8 9.4 2.6 14.3 2.6H472c13.3 0 24 10.7 24 24s-10.7 24-24 24H443.8c-10.8 0-21.4-2-31.5-5.8L60.1 371.3c-11.5-4.4-22-11.2-30.8-20L7 329c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22.4 22.4c4 4 8.7 7.1 14 9.1l22.4 8.6c-.8-1.6-1.5-3.2-2.1-4.9c-5.6-16.8 3.5-34.9 20.2-40.5L192 264.9l0-53.2c0-24.2 13.7-46.4 35.4-57.2l45.2-22.6-7.5-1.5c-19.4-3.9-35.9-16.5-44.7-34.1l-25-50c-7.9-15.8-1.5-35 14.3-42.9zM139 350.1l159 60.9c-2.1-5.6-2.6-11.9-1.1-18.2l17.4-75.2c1.4-5.9-.7-12-5.4-15.9l-52.8-44 0 18.8c0 20.7-13.2 39-32.8 45.5L139 350.1zM432 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-swimming": { + "aliases": { + "names": [ + "swimmer" + ], + "unicodes": { + "composite": [ + "1f3ca" + ], + "secondary": [ + "10f5c4" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ocean", + "person swimming", + "pool", + "sea", + "swim", + "water" + ] + }, + "unicode": "f5c4", + "label": "Person Swimming", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M309.5 178.4L447.9 297.1c-1.6 .9-3.2 2-4.8 3c-18 12.4-40.1 20.3-59.2 20.3c-19.6 0-40.8-7.7-59.2-20.3c-22.1-15.5-51.6-15.5-73.7 0c-17.1 11.8-38 20.3-59.2 20.3c-10.1 0-21.1-2.2-31.9-6.2C163.1 193.2 262.2 96 384 96h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384c-26.9 0-52.3 6.6-74.5 18.4zM160 160A64 64 0 1 1 32 160a64 64 0 1 1 128 0zM306.5 325.9C329 341.4 356.5 352 384 352c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 405.7 417 416 384 416c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 341.2 165.1 352 192 352c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-through-window": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "door", + "exit", + "forced entry", + "leave", + "robbery", + "steal", + "window" + ] + }, + "unicode": "e5a9", + "label": "Person Through Window", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 64l224 0 0 9.8c0 39-23.7 74-59.9 88.4C167.6 186.5 128 245 128 310.2l0 73.8s0 0 0 0H64V64zm288 0l224 0V384H508.3l-3.7-4.5-75.2-90.2c-9.1-10.9-22.6-17.3-36.9-17.3l-71.1 0-41-63.1c-.3-.5-.6-1-1-1.4c44.7-29 72.5-79 72.5-133.6l0-9.8zm73 320H379.2l42.7 64H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48V400c0 26.5 21.5 48 48 48H308.2l33.2 49.8c9.8 14.7 29.7 18.7 44.4 8.9s18.7-29.7 8.9-44.4L310.5 336l74.6 0 40 48zm-159.5 0H192s0 0 0 0l0-73.8c0-10.2 1.6-20.1 4.7-29.5L265.5 384zM192 128a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking": { + "aliases": { + "names": [ + "walking" + ], + "unicodes": { + "composite": [ + "1f6b6" + ], + "secondary": [ + "10f554" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crosswalk", + "exercise", + "hike", + "move", + "person walking", + "walk", + "walking" + ] + }, + "unicode": "f554", + "label": "Person Walking", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM126.5 199.3c-1 .4-1.9 .8-2.9 1.2l-8 3.5c-16.4 7.3-29 21.2-34.7 38.2l-2.6 7.8c-5.6 16.8-23.7 25.8-40.5 20.2s-25.8-23.7-20.2-40.5l2.6-7.8c11.4-34.1 36.6-61.9 69.4-76.5l8-3.5c20.8-9.2 43.3-14 66.1-14c44.6 0 84.8 26.8 101.9 67.9L281 232.7l21.4 10.7c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3L247 287.3c-10.3-5.2-18.4-13.8-22.8-24.5l-9.6-23-19.3 65.5 49.5 54c5.4 5.9 9.2 13 11.2 20.8l23 92.1c4.3 17.1-6.1 34.5-23.3 38.8s-34.5-6.1-38.8-23.3l-22-88.1-70.7-77.1c-14.8-16.1-20.3-38.6-14.7-59.7l16.9-63.5zM68.7 398l25-62.4c2.1 3 4.5 5.8 7 8.6l40.7 44.4-14.5 36.2c-2.4 6-6 11.5-10.6 16.1L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L68.7 398z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking-arrow-loop-left": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "population return", + "return" + ] + }, + "unicode": "e551", + "label": "Person Walking Arrow Loop Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM123.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8C248.5 154.8 208.3 128 163.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1L68.7 398 9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L116.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zm347.7 119c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L461.3 384H480c88.4 0 160-71.6 160-160s-71.6-160-160-160L352 64c-17.7 0-32 14.3-32 32s14.3 32 32 32l128 0c53 0 96 43 96 96s-43 96-96 96H461.3l25.4-25.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3l80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exit", + "internally displaced", + "leave", + "refugee" + ] + }, + "unicode": "e552", + "label": "Person Walking Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM123.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8C248.5 154.8 208.3 128 163.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1L68.7 398 9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L116.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zM550.6 153.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L530.7 224H384c-17.7 0-32 14.3-32 32s14.3 32 32 32H530.7l-25.4 25.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3l-80-80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking-dashed-line-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exit", + "refugee" + ] + }, + "unicode": "e553", + "label": "Person Walking Dashed Line Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM123.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8C248.5 154.8 208.3 128 163.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1L68.7 398 9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L116.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zM550.6 153.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L530.7 224H384c-17.7 0-32 14.3-32 32s14.3 32 32 32H530.7l-25.4 25.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3l-80-80zM392 0c-13.3 0-24 10.7-24 24V72c0 13.3 10.7 24 24 24s24-10.7 24-24V24c0-13.3-10.7-24-24-24zm24 152c0-13.3-10.7-24-24-24s-24 10.7-24 24v16c0 13.3 10.7 24 24 24s24-10.7 24-24V152zM392 320c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24s24-10.7 24-24V344c0-13.3-10.7-24-24-24zm24 120c0-13.3-10.7-24-24-24s-24 10.7-24 24v48c0 13.3 10.7 24 24 24s24-10.7 24-24V440z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking-luggage": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "baggage", + "briefcase", + "carry-on", + "deployment", + "rolling" + ] + }, + "unicode": "e554", + "label": "Person Walking Luggage", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M400 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM315.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L473 232.7l-15.3-36.8C440.5 154.8 400.3 128 355.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1l-25 62.4-59.4 59.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L308.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zM224 274.1c-7.7-4.4-17.4-1.8-21.9 5.9l-32 55.4L115.7 304c-15.3-8.8-34.9-3.6-43.7 11.7L8 426.6c-8.8 15.3-3.6 34.9 11.7 43.7l55.4 32c15.3 8.8 34.9 3.6 43.7-11.7l64-110.9c1.5-2.6 2.6-5.2 3.3-8L229.9 296c4.4-7.7 1.8-17.4-5.9-21.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "person-walking-with-cane": { + "aliases": { + "names": [ + "blind" + ], + "unicodes": { + "secondary": [ + "10f29d" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "cane" + ] + }, + "unicode": "f29d", + "label": "Person Walking With Cane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M144 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8.4 32c-36.4 0-69.6 20.5-85.9 53.1L3.4 273.7c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3L96 231.6v43.2c0 17 6.7 33.3 18.7 45.3L192 397.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V390.6c0-12.7-5.1-24.9-14.1-33.9L192 306.7V213.3l70.4 93.9c10.6 14.1 30.7 17 44.8 6.4s17-30.7 6.4-44.8L236.8 166.4C218.7 142.2 190.2 128 160 128H135.6zM96.3 346.8L65 472.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l22-88.2L96.3 346.8zM418.8 505.1c5 7.3 15 9.1 22.3 4s9.1-15 4-22.3L326.9 316.1c-2.8 3.8-6.1 7.3-10.1 10.3c-5 3.8-10.5 6.4-16.2 7.9L418.8 505.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "peseta-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Peseta Sign", + "currency" + ] + }, + "unicode": "e221", + "label": "Peseta Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64v96c-17.7 0-32 14.3-32 32s14.3 32 32 32l0 96V448c0 17.7 14.3 32 32 32s32-14.3 32-32V352h96c77.4 0 142-55 156.8-128H352c17.7 0 32-14.3 32-32s-14.3-32-32-32h-3.2C334 87 269.4 32 192 32H64zM282.5 160H96V96h96c41.8 0 77.4 26.7 90.5 64zM96 224H282.5c-13.2 37.3-48.7 64-90.5 64H96V224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "peso-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Peso Sign", + "currency" + ] + }, + "unicode": "e222", + "label": "Peso Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64v64c-17.7 0-32 14.3-32 32s14.3 32 32 32l0 32c-17.7 0-32 14.3-32 32s14.3 32 32 32l0 64v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c68.4 0 127.7-39 156.8-96H352c17.7 0 32-14.3 32-32s-14.3-32-32-32h-.7c.5-5.3 .7-10.6 .7-16s-.2-10.7-.7-16h.7c17.7 0 32-14.3 32-32s-14.3-32-32-32H332.8C303.7 71 244.4 32 176 32H64zm190.4 96H96V96h80c30.5 0 58.2 12.2 78.4 32zM96 192H286.9c.7 5.2 1.1 10.6 1.1 16s-.4 10.8-1.1 16H96V192zm158.4 96c-20.2 19.8-47.9 32-78.4 32H96V288H254.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "phabricator": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3db", + "label": "Phabricator", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "phoenix-framework": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3dc", + "label": "Phoenix Framework", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "phoenix-squadron": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f511", + "label": "Phoenix Squadron", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 63.38C142.49 27.25 201.55 7.31 260.51 8.81c29.58-.38 59.11 5.37 86.91 15.33-24.13-4.63-49-6.34-73.38-2.45C231.17 27 191 48.84 162.21 80.87c5.67-1 10.78-3.67 16-5.86 18.14-7.87 37.49-13.26 57.23-14.83 19.74-2.13 39.64-.43 59.28 1.92-14.42 2.79-29.12 4.57-43 9.59-34.43 11.07-65.27 33.16-86.3 62.63-13.8 19.71-23.63 42.86-24.67 67.13-.35 16.49 5.22 34.81 19.83 44a53.27 53.27 0 0 0 37.52 6.74c15.45-2.46 30.07-8.64 43.6-16.33 11.52-6.82 22.67-14.55 32-24.25 3.79-3.22 2.53-8.45 2.62-12.79-2.12-.34-4.38-1.11-6.3.3a203 203 0 0 1-35.82 15.37c-20 6.17-42.16 8.46-62.1.78 12.79 1.73 26.06.31 37.74-5.44 20.23-9.72 36.81-25.2 54.44-38.77a526.57 526.57 0 0 1 88.9-55.31c25.71-12 52.94-22.78 81.57-24.12-15.63 13.72-32.15 26.52-46.78 41.38-14.51 14-27.46 29.5-40.11 45.18-3.52 4.6-8.95 6.94-13.58 10.16a150.7 150.7 0 0 0-51.89 60.1c-9.33 19.68-14.5 41.85-11.77 63.65 1.94 13.69 8.71 27.59 20.9 34.91 12.9 8 29.05 8.07 43.48 5.1 32.8-7.45 61.43-28.89 81-55.84 20.44-27.52 30.52-62.2 29.16-96.35-.52-7.5-1.57-15-1.66-22.49 8 19.48 14.82 39.71 16.65 60.83 2 14.28.75 28.76-1.62 42.9-1.91 11-5.67 21.51-7.78 32.43a165 165 0 0 0 39.34-81.07 183.64 183.64 0 0 0-14.21-104.64c20.78 32 32.34 69.58 35.71 107.48.49 12.73.49 25.51 0 38.23A243.21 243.21 0 0 1 482 371.34c-26.12 47.34-68 85.63-117.19 108-78.29 36.23-174.68 31.32-248-14.68A248.34 248.34 0 0 1 25.36 366 238.34 238.34 0 0 1 0 273.08v-31.34C3.93 172 40.87 105.82 96 63.38m222 80.33a79.13 79.13 0 0 0 16-4.48c5-1.77 9.24-5.94 10.32-11.22-8.96 4.99-17.98 9.92-26.32 15.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "phone": { + "aliases": { + "unicodes": { + "composite": [ + "1f4de", + "1f57b" + ], + "secondary": [ + "10f095" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Left Hand Telephone Receiver", + "call", + "earphone", + "number", + "phone", + "receiver", + "support", + "telephone", + "telephone receiver", + "voice" + ] + }, + "unicode": "f095", + "label": "Phone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "phone-flip": { + "aliases": { + "names": [ + "phone-alt" + ], + "unicodes": { + "composite": [ + "1f57d" + ], + "secondary": [ + "10f879" + ] + } + }, + "changes": [ + "5.9.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right Hand Telephone Receiver", + "call", + "earphone", + "number", + "support", + "telephone", + "voice" + ] + }, + "unicode": "f879", + "label": "Phone Flip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M347.1 24.6c7.7-18.6 28-28.5 47.4-23.2l88 24C499.9 30.2 512 46 512 64c0 247.4-200.6 448-448 448c-18 0-33.8-12.1-38.6-29.5l-24-88c-5.3-19.4 4.6-39.7 23.2-47.4l96-40c16.3-6.8 35.2-2.1 46.3 11.6L207.3 368c70.4-33.3 127.4-90.3 160.7-160.7L318.7 167c-13.7-11.2-18.4-30-11.6-46.3l40-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "phone-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f3dd" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "cancel", + "earphone", + "mute", + "number", + "support", + "telephone", + "voice" + ] + }, + "unicode": "f3dd", + "label": "Phone Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M228.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C76.1 30.2 64 46 64 64c0 107.4 37.8 206 100.8 283.1L9.2 469.1c-10.4 8.2-12.3 23.3-4.1 33.7s23.3 12.3 33.7 4.1l592-464c10.4-8.2 12.3-23.3 4.1-33.7s-23.3-12.3-33.7-4.1L253 278c-17.8-21.5-32.9-45.2-45-70.7L257.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96zm96.8 319l-91.3 72C310.7 476 407.1 512 512 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L368.7 368c-15-7.1-29.3-15.2-43-24.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "phone-volume": { + "aliases": { + "names": [ + "volume-control-phone" + ], + "unicodes": { + "secondary": [ + "10f2a0" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.0.3", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "sound", + "support", + "telephone", + "voice", + "volume-control-phone" + ] + }, + "unicode": "f2a0", + "label": "Phone Volume", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M280 0C408.1 0 512 103.9 512 232c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-101.6-82.4-184-184-184c-13.3 0-24-10.7-24-24s10.7-24 24-24zm8 192a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm-32-72c0-13.3 10.7-24 24-24c75.1 0 136 60.9 136 136c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-48.6-39.4-88-88-88c-13.3 0-24-10.7-24-24zM117.5 1.4c19.4-5.3 39.7 4.6 47.4 23.2l40 96c6.8 16.3 2.1 35.2-11.6 46.3L144 207.3c33.3 70.4 90.3 127.4 160.7 160.7L345 318.7c11.2-13.7 30-18.4 46.3-11.6l96 40c18.6 7.7 28.5 28 23.2 47.4l-24 88C481.8 499.9 466 512 448 512C200.6 512 0 311.4 0 64C0 46 12.1 30.2 29.5 25.4l88-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "photo-film": { + "aliases": { + "names": [ + "photo-video" + ], + "unicodes": { + "secondary": [ + "10f87c" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "av", + "film", + "image", + "library", + "media" + ] + }, + "unicode": "f87c", + "label": "Photo Film", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 0H576c35.3 0 64 28.7 64 64V288c0 35.3-28.7 64-64 64H256c-35.3 0-64-28.7-64-64V64c0-35.3 28.7-64 64-64zM476 106.7C471.5 100 464 96 456 96s-15.5 4-20 10.7l-56 84L362.7 169c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6h80 48H552c8.9 0 17-4.9 21.2-12.7s3.7-17.3-1.2-24.6l-96-144zM336 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM64 128h96V384v32c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V384H512v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192c0-35.3 28.7-64 64-64zm8 64c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16H88c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H72zm0 104c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16H88c8.8 0 16-7.2 16-16V312c0-8.8-7.2-16-16-16H72zm0 104c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16H88c8.8 0 16-7.2 16-16V416c0-8.8-7.2-16-16-16H72zm336 16v16c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16V416c0-8.8-7.2-16-16-16H424c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "php": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f457", + "label": "PHP", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pied-piper": { + "changes": [ + "4.6.0", + "5.0.0", + "5.0.10", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2ae", + "label": "Pied Piper Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 480, + 512 + ], + "width": 480, + "height": 512, + "path": "M455.93,23.2C429.23,30,387.79,51.69,341.35,90.66A206,206,0,0,0,240,64C125.13,64,32,157.12,32,272s93.13,208,208,208,208-93.13,208-208a207.25,207.25,0,0,0-58.75-144.81,155.35,155.35,0,0,0-17,27.4A176.16,176.16,0,0,1,417.1,272c0,97.66-79.44,177.11-177.09,177.11a175.81,175.81,0,0,1-87.63-23.4c82.94-107.33,150.79-37.77,184.31-226.65,5.79-32.62,28-94.26,126.23-160.18C471,33.45,465.35,20.8,455.93,23.2ZM125,406.4A176.66,176.66,0,0,1,62.9,272C62.9,174.34,142.35,94.9,240,94.9a174,174,0,0,1,76.63,17.75C250.64,174.76,189.77,265.52,125,406.4Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pied-piper-alt": { + "changes": [ + "4.1.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a8", + "label": "Alternate Pied Piper Logo (Old)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9zm135.9 197.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM340.8 177c6.6 2.8 11.5 9.2 22.7 22.1 2-1.4 7.5-5.2 7.5-8.6 0-4.9-11.8-13.2-13.2-23 11.2-5.7 25.2-6 37.6-8.9 68.1-16.4 116.3-52.9 146.8-116.7C548.3 29.3 554 16.1 554.6 2l-2 2.6c-28.4 50-33 63.2-81.3 100-31.9 24.4-69.2 40.2-106.6 54.6l-6.3-.3v-21.8c-19.6 1.6-19.7-14.6-31.6-23-18.7 20.6-31.6 40.8-58.9 51.1-12.7 4.8-19.6 10-25.9 21.8 34.9-16.4 91.2-13.5 98.8-10zM555.5 0l-.6 1.1-.3.9.6-.6zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46.1v27.2l11.8-3.4-2.9-23.8zm-68.7-150.4l24.1 61.2 21-13.8-31.3-50.9zm84.4 154.9l2 12.4c9-1.5 58.4-6.6 58.4-14.1 0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pied-piper-hat": { + "changes": [ + "5.0.10" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing" + ] + }, + "unicode": "f4e5", + "label": "Pied Piper Hat (Old)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pied-piper-pp": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a7", + "label": "Pied Piper PP Logo (Old)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "piggy-bank": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4d3" + ] + } + }, + "changes": [ + "5.0.9", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "save", + "savings" + ] + }, + "unicode": "f4d3", + "label": "Piggy Bank", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M400 96l0 .7c-5.3-.4-10.6-.7-16-.7H256c-16.5 0-32.5 2.1-47.8 6c-.1-2-.2-4-.2-6c0-53 43-96 96-96s96 43 96 96zm-16 32c3.5 0 7 .1 10.4 .3c4.2 .3 8.4 .7 12.6 1.3C424.6 109.1 450.8 96 480 96h32l-18.8 75.1c15.8 14.8 28.7 32.8 37.5 52.9H544c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H512c-9.1 12.1-19.9 22.9-32 32v64c0 17.7-14.3 32-32 32H416c-17.7 0-32-14.3-32-32V448H256v32c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V416c-34.9-26.2-58.7-66.3-63.2-112H68c-37.6 0-68-30.4-68-68s30.4-68 68-68h4c13.3 0 24 10.7 24 24s-10.7 24-24 24H68c-11 0-20 9-20 20s9 20 20 20H99.2c12.1-59.8 57.7-107.5 116.3-122.8c12.9-3.4 26.5-5.2 40.5-5.2H384zm64 136a24 24 0 1 0 -48 0 24 24 0 1 0 48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pills": { + "aliases": { + "unicodes": { + "secondary": [ + "10f484" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine", + "prescription", + "tablets" + ] + }, + "unicode": "f484", + "label": "Pills", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 96c-26.5 0-48 21.5-48 48V256h96V144c0-26.5-21.5-48-48-48zM0 144C0 82.1 50.1 32 112 32s112 50.1 112 112V368c0 61.9-50.1 112-112 112S0 429.9 0 368V144zM554.9 399.4c-7.1 12.3-23.7 13.1-33.8 3.1L333.5 214.9c-10-10-9.3-26.7 3.1-33.8C360 167.7 387.1 160 416 160c88.4 0 160 71.6 160 160c0 28.9-7.7 56-21.1 79.4zm-59.5 59.5C472 472.3 444.9 480 416 480c-88.4 0-160-71.6-160-160c0-28.9 7.7-56 21.1-79.4c7.1-12.3 23.7-13.1 33.8-3.1L498.5 425.1c10 10 9.3 26.7-3.1 33.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pinterest": { + "changes": [ + "2.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f0d2", + "label": "Pinterest", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pinterest-p": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f231", + "label": "Pinterest P", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pix": { + "changes": [ + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e43a", + "label": "Pix", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M242.4 292.5C247.8 287.1 257.1 287.1 262.5 292.5L339.5 369.5C353.7 383.7 372.6 391.5 392.6 391.5H407.7L310.6 488.6C280.3 518.1 231.1 518.1 200.8 488.6L103.3 391.2H112.6C132.6 391.2 151.5 383.4 165.7 369.2L242.4 292.5zM262.5 218.9C256.1 224.4 247.9 224.5 242.4 218.9L165.7 142.2C151.5 127.1 132.6 120.2 112.6 120.2H103.3L200.7 22.76C231.1-7.586 280.3-7.586 310.6 22.76L407.8 119.9H392.6C372.6 119.9 353.7 127.7 339.5 141.9L262.5 218.9zM112.6 142.7C126.4 142.7 139.1 148.3 149.7 158.1L226.4 234.8C233.6 241.1 243 245.6 252.5 245.6C261.9 245.6 271.3 241.1 278.5 234.8L355.5 157.8C365.3 148.1 378.8 142.5 392.6 142.5H430.3L488.6 200.8C518.9 231.1 518.9 280.3 488.6 310.6L430.3 368.9H392.6C378.8 368.9 365.3 363.3 355.5 353.5L278.5 276.5C264.6 262.6 240.3 262.6 226.4 276.6L149.7 353.2C139.1 363 126.4 368.6 112.6 368.6H80.78L22.76 310.6C-7.586 280.3-7.586 231.1 22.76 200.8L80.78 142.7H112.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pizza-slice": { + "aliases": { + "unicodes": { + "secondary": [ + "10f818" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cheese", + "chicago", + "italian", + "mozzarella", + "new york", + "pepperoni", + "pie", + "slice", + "teenage mutant ninja turtles", + "tomato" + ] + }, + "unicode": "f818", + "label": "Pizza Slice", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M169.7 .9c-22.8-1.6-41.9 14-47.5 34.7L110.4 80c.5 0 1.1 0 1.6 0c176.7 0 320 143.3 320 320c0 .5 0 1.1 0 1.6l44.4-11.8c20.8-5.5 36.3-24.7 34.7-47.5C498.5 159.5 352.5 13.5 169.7 .9zM399.8 410.2c.1-3.4 .2-6.8 .2-10.2c0-159.1-128.9-288-288-288c-3.4 0-6.8 .1-10.2 .2L.5 491.9c-1.5 5.5 .1 11.4 4.1 15.4s9.9 5.6 15.4 4.1L399.8 410.2zM176 208a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm64 128a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM96 384a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "place-of-worship": { + "aliases": { + "unicodes": { + "secondary": [ + "10f67f" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "church", + "holy", + "mosque", + "synagogue" + ] + }, + "unicode": "f67f", + "label": "Place Of Worship", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 109.3V217.6L183.3 242c-14.5 8.7-23.3 24.3-23.3 41.2V512h96V416c0-35.3 28.7-64 64-64s64 28.7 64 64v96h96V283.2c0-16.9-8.8-32.5-23.3-41.2L416 217.6V109.3c0-8.5-3.4-16.6-9.4-22.6L331.3 11.3c-6.2-6.2-16.4-6.2-22.6 0L233.4 86.6c-6 6-9.4 14.1-9.4 22.6zM24.9 330.3C9.5 338.8 0 354.9 0 372.4V464c0 26.5 21.5 48 48 48h80V273.6L24.9 330.3zM592 512c26.5 0 48-21.5 48-48V372.4c0-17.5-9.5-33.6-24.9-42.1L512 273.6V512h80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane": { + "aliases": { + "unicodes": { + "secondary": [ + "10f072" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "destination", + "fly", + "location", + "mode", + "travel", + "trip" + ] + }, + "unicode": "f072", + "label": "Plane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M482.3 192c34.2 0 93.7 29 93.7 64c0 36-59.5 64-93.7 64l-116.6 0L265.2 495.9c-5.7 10-16.3 16.1-27.8 16.1l-56.2 0c-10.6 0-18.3-10.2-15.4-20.4l49-171.6L112 320 68.8 377.6c-3 4-7.8 6.4-12.8 6.4l-42 0c-7.8 0-14-6.3-14-14c0-1.3 .2-2.6 .5-3.9L32 256 .5 145.9c-.4-1.3-.5-2.6-.5-3.9c0-7.8 6.3-14 14-14l42 0c5 0 9.8 2.4 12.8 6.4L112 192l102.9 0-49-171.6C162.9 10.2 170.6 0 181.2 0l56.2 0c11.5 0 22.1 6.2 27.8 16.1L365.7 192l116.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-arrival": { + "aliases": { + "unicodes": { + "composite": [ + "1f6ec" + ], + "secondary": [ + "10f5af" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aeroplane", + "airplane", + "airplane arrival", + "airport", + "arrivals", + "arriving", + "destination", + "fly", + "land", + "landing", + "location", + "mode", + "travel", + "trip" + ] + }, + "unicode": "f5af", + "label": "Plane Arrival", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M.3 166.9L0 68C0 57.7 9.5 50.1 19.5 52.3l35.6 7.9c10.6 2.3 19.2 9.9 23 20L96 128l127.3 37.6L181.8 20.4C178.9 10.2 186.6 0 197.2 0h40.1c11.6 0 22.2 6.2 27.9 16.3l109 193.8 107.2 31.7c15.9 4.7 30.8 12.5 43.7 22.8l34.4 27.6c24 19.2 18.1 57.3-10.7 68.2c-41.2 15.6-86.2 18.1-128.8 7L121.7 289.8c-11.1-2.9-21.2-8.7-29.3-16.9L9.5 189.4c-5.9-6-9.3-14-9.3-22.5zM32 448H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm96-80a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm128-16a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "flight", + "fly", + "not affected", + "ok", + "okay", + "travel" + ] + }, + "unicode": "e555", + "label": "Plane Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49 0 70.9-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14c1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3 .4 2.6 .5 3.9 .5c6 0 11.1-3.7 13.1-9C344.5 470.7 320 422.2 320 368c0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "airplane", + "airport", + "flight", + "fly", + "travel" + ] + }, + "unicode": "e556", + "label": "Plane Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49 0 70.9-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14c1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3 .4 2.6 .5 3.9 .5c6 0 11.1-3.7 13.1-9C344.5 470.7 320 422.2 320 368c0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "destroy", + "flight", + "fly", + "travel" + ] + }, + "unicode": "e557", + "label": "Plane Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49 0 70.9-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14c1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3 .4 2.6 .5 3.9 .5c6 0 11.1-3.7 13.1-9C344.5 470.7 320 422.2 320 368c0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-departure": { + "aliases": { + "unicodes": { + "composite": [ + "1f6eb" + ], + "secondary": [ + "10f5b0" + ] + } + }, + "changes": [ + "5.1.0", + "5.8.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aeroplane", + "airplane", + "airplane departure", + "airport", + "check-in", + "departing", + "departure", + "departures", + "destination", + "fly", + "location", + "mode", + "take off", + "taking off", + "travel", + "trip" + ] + }, + "unicode": "f5b0", + "label": "Plane Departure", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M381 114.9L186.1 41.8c-16.7-6.2-35.2-5.3-51.1 2.7L89.1 67.4C78 73 77.2 88.5 87.6 95.2l146.9 94.5L136 240 77.8 214.1c-8.7-3.9-18.8-3.7-27.3 .6L18.3 230.8c-9.3 4.7-11.8 16.8-5 24.7l73.1 85.3c6.1 7.1 15 11.2 24.3 11.2H248.4c5 0 9.9-1.2 14.3-3.4L535.6 212.2c46.5-23.3 82.5-63.3 100.8-112C645.9 75 627.2 48 600.2 48H542.8c-20.2 0-40.2 4.8-58.2 14L381 114.9zM0 480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "closed", + "flight", + "fly", + "lockdown", + "quarantine", + "travel" + ] + }, + "unicode": "e558", + "label": "Plane Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 93.7C192 59.5 221 0 256 0c36 0 64 59.5 64 93.7v84.6l101.8 58.2C418 247.6 416 259.6 416 272v24.6c-17.9 10.4-30.3 29.1-31.8 50.9L320 329.1V400l57.6 43.2c4 3 6.4 7.8 6.4 12.8v24 18c0 7.8-6.3 14-14 14c-1.3 0-2.6-.2-3.9-.5L256 480 145.9 511.5c-1.3 .4-2.6 .5-3.9 .5c-7.8 0-14-6.3-14-14V456c0-5 2.4-9.8 6.4-12.8L192 400l0-70.9-171.6 49C10.2 381.1 0 373.4 0 362.8V297.3c0-5.7 3.1-11 8.1-13.9L192 178.3V93.7zM528 240c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e069" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane mode", + "airport", + "canceled", + "covid-19", + "delayed", + "grounded", + "travel" + ] + }, + "unicode": "e069", + "label": "Plane Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M514.3 192c34.2 0 93.7 29 93.7 64c0 36-59.5 64-93.7 64H440.6L630.8 469.1c10.4 8.2 12.3 23.3 4.1 33.7s-23.3 12.3-33.7 4.1L9.2 42.9C-1.2 34.7-3.1 19.6 5.1 9.2S28.4-3.1 38.8 5.1L238.1 161.3 197.8 20.4C194.9 10.2 202.6 0 213.2 0h56.2c11.5 0 22.1 6.2 27.8 16.1L397.7 192l116.6 0zM41.5 128.7l321 252.9L297.2 495.9c-5.7 10-16.3 16.1-27.8 16.1l-56.2 0c-10.6 0-18.3-10.2-15.4-20.4l49-171.6H144l-43.2 57.6c-3 4-7.8 6.4-12.8 6.4H46c-7.8 0-14-6.3-14-14c0-1.3 .2-2.6 .5-3.9L64 256 32.5 145.9c-.4-1.3-.5-2.6-.5-3.9c0-6.2 4-11.4 9.5-13.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plane-up": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "internet", + "signal", + "sky", + "wifi", + "wireless" + ] + }, + "unicode": "e22d", + "label": "Plane Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 93.7C192 59.5 221 0 256 0c36 0 64 59.5 64 93.7l0 66.3L497.8 278.5c8.9 5.9 14.2 15.9 14.2 26.6v56.7c0 10.9-10.7 18.6-21.1 15.2L320 320v80l57.6 43.2c4 3 6.4 7.8 6.4 12.8v42c0 7.8-6.3 14-14 14c-1.3 0-2.6-.2-3.9-.5L256 480 145.9 511.5c-1.3 .4-2.6 .5-3.9 .5c-7.8 0-14-6.3-14-14V456c0-5 2.4-9.8 6.4-12.8L192 400V320L21.1 377C10.7 380.4 0 372.7 0 361.8V305.1c0-10.7 5.3-20.7 14.2-26.6L192 160V93.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plant-wilt": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drought", + "planting", + "vegetation", + "wilt" + ] + }, + "unicode": "e5aa", + "label": "Plant Wilt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 120c0-30.9 25.1-56 56-56s56 25.1 56 56v13c-29.3 10-48 34.5-48 70.1c0 27.9 25.3 74.8 66 111.6c3.8 3.5 8.9 5.3 14 5.3s10.2-1.8 14-5.3c40.7-36.8 66-83.7 66-111.6c0-35.6-18.7-60.2-48-70.1V120C464 53.7 410.3 0 344 0S224 53.7 224 120v21.8C207.3 133 188.2 128 168 128c-66.3 0-120 53.7-120 120v13c-29.3 10-48 34.5-48 70.1C0 359 25.3 405.9 66 442.7c3.8 3.5 8.9 5.3 14 5.3s10.2-1.8 14-5.3c40.7-36.8 66-83.7 66-111.6c0-35.6-18.7-60.2-48-70.1V248c0-30.9 25.1-56 56-56s56 25.1 56 56v32V480c0 17.7 14.3 32 32 32s32-14.3 32-32V280 248 120z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plate-wheat": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bowl", + "hunger", + "rations", + "wheat" + ] + }, + "unicode": "e55a", + "label": "Plate Wheat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 32c44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80V48c0-8.8 7.2-16 16-16zM56 64h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24s10.7-24 24-24zM24 136H136c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24zm8 96c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24zM272 48c0-8.8 7.2-16 16-16c44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80V48zM400 32c44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80V48c0-8.8 7.2-16 16-16zm80 160v16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16V256c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM352 176c8.8 0 16 7.2 16 16v16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16V256c0-44.2 35.8-80 80-80zm-96 16v16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16V256c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM3.5 347.6C1.6 332.9 13 320 27.8 320H484.2c14.8 0 26.2 12.9 24.4 27.6C502.3 397.8 464.2 437 416 446v2c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32v-2c-48.2-9-86.3-48.2-92.5-98.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "play": { + "aliases": { + "unicodes": { + "composite": [ + "25b6" + ], + "secondary": [ + "10f04b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "audio", + "music", + "play", + "play button", + "playing", + "right", + "sound", + "start", + "triangle", + "video" + ] + }, + "unicode": "f04b", + "label": "Play", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80V432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "playstation": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3df", + "label": "PlayStation", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "plug": { + "aliases": { + "unicodes": { + "composite": [ + "1f50c" + ], + "secondary": [ + "10f1e6" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connect", + "electric", + "electric plug", + "electricity", + "online", + "plug", + "power" + ] + }, + "unicode": "f1e6", + "label": "Plug", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8C297 398 352 333.4 352 256V224c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-bolt": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "electricity", + "plug", + "power" + ] + }, + "unicode": "e55b", + "label": "Plug Circle Bolt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm47.9-225c4.3 3.7 5.4 9.9 2.6 14.9L452.4 356H488c5.2 0 9.8 3.3 11.4 8.2s-.1 10.3-4.2 13.4l-96 72c-4.5 3.4-10.8 3.2-15.1-.6s-5.4-9.9-2.6-14.9L411.6 380H376c-5.2 0-9.8-3.3-11.4-8.2s.1-10.3 4.2-13.4l96-72c4.5-3.4 10.8-3.2 15.1 .6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "electricity", + "not affected", + "ok", + "okay", + "plug", + "power" + ] + }, + "unicode": "e55c", + "label": "Plug Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM576 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L416 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "electric", + "electricity", + "plug", + "power" + ] + }, + "unicode": "e55d", + "label": "Plug Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-minus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "electricity", + "plug", + "power" + ] + }, + "unicode": "e55e", + "label": "Plug Circle Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM576 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-64 0c0 8.8-7.2 16-16 16l-128 0c-8.8 0-16-7.2-16-16s7.2-16 16-16H496c8.8 0 16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-plus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "electricity", + "plug", + "power" + ] + }, + "unicode": "e55f", + "label": "Plug Circle Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm16-208v48h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H448v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V384H368c-8.8 0-16-7.2-16-16s7.2-16 16-16h48V304c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plug-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destroy", + "electric", + "electricity", + "outage", + "plug", + "power" + ] + }, + "unicode": "e560", + "label": "Plug Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L454.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L432 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L409.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L432 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plus": { + "aliases": { + "names": [ + "add" + ], + "unicodes": { + "composite": [ + "2795", + "f067" + ], + "primary": [ + "f067" + ], + "secondary": [ + "102b", + "10f067" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "+", + "Plus Sign", + "add", + "create", + "expand", + "math", + "new", + "plus", + "positive", + "shape", + "sign" + ] + }, + "unicode": "2b", + "label": "Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M240 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H176V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H240V80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "plus-minus": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Plus-Minus Sign", + "add", + "math", + "subtract" + ] + }, + "unicode": "e43c", + "label": "Plus Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M224 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V144H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H160V320c0 17.7 14.3 32 32 32s32-14.3 32-32V208H336c17.7 0 32-14.3 32-32s-14.3-32-32-32H224V32zM0 480c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "podcast": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2ce" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "broadcast", + "music", + "sound" + ] + }, + "unicode": "f2ce", + "label": "Podcast", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M319.4 372c48.5-31.3 80.6-85.9 80.6-148c0-97.2-78.8-176-176-176S48 126.8 48 224c0 62.1 32.1 116.6 80.6 148c1.2 17.3 4 38 7.2 57.1l.2 1C56 395.8 0 316.5 0 224C0 100.3 100.3 0 224 0S448 100.3 448 224c0 92.5-56 171.9-136 206.1l.2-1.1c3.1-19.2 6-39.8 7.2-57zm-2.3-38.1c-1.6-5.7-3.9-11.1-7-16.2c-5.8-9.7-13.5-17-21.9-22.4c19.5-17.6 31.8-43 31.8-71.3c0-53-43-96-96-96s-96 43-96 96c0 28.3 12.3 53.8 31.8 71.3c-8.4 5.4-16.1 12.7-21.9 22.4c-3.1 5.1-5.4 10.5-7 16.2C99.8 307.5 80 268 80 224c0-79.5 64.5-144 144-144s144 64.5 144 144c0 44-19.8 83.5-50.9 109.9zM224 312c32.9 0 64 8.6 64 43.8c0 33-12.9 104.1-20.6 132.9c-5.1 19-24.5 23.4-43.4 23.4s-38.2-4.4-43.4-23.4c-7.8-28.5-20.6-99.7-20.6-132.8c0-35.1 31.1-43.8 64-43.8zm0-144a56 56 0 1 1 0 112 56 56 0 1 1 0-112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "poo": { + "aliases": { + "unicodes": { + "composite": [ + "1f4a9" + ], + "secondary": [ + "10f2fe" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crap", + "dung", + "face", + "monster", + "pile of poo", + "poo", + "poop", + "shit", + "smile", + "turd" + ] + }, + "unicode": "f2fe", + "label": "Poo", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M268.9 .9c-5.5-.7-11 1.4-14.5 5.7s-4.6 10.1-2.8 15.4c2.8 8.2 4.3 16.9 4.3 26.1c0 44.1-35.7 79.9-79.8 80H160c-35.3 0-64 28.7-64 64c0 19.1 8.4 36.3 21.7 48H104c-39.8 0-72 32.2-72 72c0 23.2 11 43.8 28 57c-34.1 5.7-60 35.3-60 71c0 39.8 32.2 72 72 72H440c39.8 0 72-32.2 72-72c0-35.7-25.9-65.3-60-71c17-13.2 28-33.8 28-57c0-39.8-32.2-72-72-72H394.3c13.3-11.7 21.7-28.9 21.7-48c0-35.3-28.7-64-64-64h-5.5c3.5-10 5.5-20.8 5.5-32c0-48.6-36.2-88.8-83.1-95.1zM192 256a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm96 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm64 108.3c0 2.4-.7 4.8-2.2 6.7c-8.2 10.5-39.5 45-93.8 45s-85.6-34.6-93.8-45c-1.5-1.9-2.2-4.3-2.2-6.7c0-6.8 5.5-12.3 12.3-12.3H339.7c6.8 0 12.3 5.5 12.3 12.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "poo-storm": { + "aliases": { + "names": [ + "poo-bolt" + ], + "unicodes": { + "secondary": [ + "10f75a" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bolt", + "cloud", + "euphemism", + "lightning", + "mess", + "poop", + "shit", + "turd" + ] + }, + "unicode": "f75a", + "label": "Poo Storm", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M236.9 .2c-5.5-.7-11 1.4-14.5 5.7s-4.6 10.1-2.8 15.3c2.8 8.2 4.3 16.9 4.3 26.1c0 21.7-8.5 37.2-21.9 47.6c-13.8 10.8-34 17-57.8 17H128c-35.3 0-64 28.7-64 64c0 12.2 3.4 23.5 9.3 33.2C31.7 216.2 0 252.4 0 296c0 41 28 75.4 65.8 85.2c-5.3-18.5 1-38.5 16.2-50.7l160-128c17.6-14.1 42.6-14 60.2 .2s22.8 38.6 12.8 58.8L285.7 320H304c20.4 0 38.5 12.9 45.3 32.1c3.7 10.6 3.5 21.8 0 31.9H360c48.6 0 88-39.4 88-88c0-43.6-31.7-79.8-73.3-86.8c5.9-9.7 9.3-21.1 9.3-33.2c0-35.3-28.7-64-64-64h-1.4c.9-5.4 1.4-10.9 1.4-16.6c0-48.7-36.1-88.9-83.1-95.2zm45.1 227.4c-5.8-4.7-14.2-4.7-20.1-.1l-160 128c-5.3 4.2-7.4 11.4-5.1 17.8s8.3 10.7 15.1 10.7h70.1L129.7 488.8c-3.4 6.7-1.6 14.9 4.3 19.6s14.2 4.7 20.1 .1l160-128c5.3-4.2 7.4-11.4 5.1-17.8s-8.3-10.7-15.1-10.7H233.9l52.4-104.8c3.4-6.7 1.6-14.9-4.2-19.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "poop": { + "aliases": { + "unicodes": { + "secondary": [ + "10f619" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crap", + "poop", + "shit", + "smile", + "turd" + ] + }, + "unicode": "f619", + "label": "Poop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M254.4 6.6c3.5-4.3 9-6.5 14.5-5.7C315.8 7.2 352 47.4 352 96c0 11.2-1.9 22-5.5 32H352c35.3 0 64 28.7 64 64c0 19.1-8.4 36.3-21.7 48H408c39.8 0 72 32.2 72 72c0 23.2-11 43.8-28 57c34.1 5.7 60 35.3 60 71c0 39.8-32.2 72-72 72H72c-39.8 0-72-32.2-72-72c0-35.7 25.9-65.3 60-71c-17-13.2-28-33.8-28-57c0-39.8 32.2-72 72-72h13.7C104.4 228.3 96 211.1 96 192c0-35.3 28.7-64 64-64h16.2c44.1-.1 79.8-35.9 79.8-80c0-9.2-1.5-17.9-4.3-26.1c-1.8-5.2-.8-11.1 2.8-15.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "power-off": { + "aliases": { + "unicodes": { + "composite": [ + "23fb" + ], + "secondary": [ + "10f011" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Power Symbol", + "cancel", + "computer", + "on", + "reboot", + "restart" + ] + }, + "unicode": "f011", + "label": "Power Off", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321856, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V256c0 17.7 14.3 32 32 32s32-14.3 32-32V32zM143.5 120.6c13.6-11.3 15.4-31.5 4.1-45.1s-31.5-15.4-45.1-4.1C49.7 115.4 16 181.8 16 256c0 132.5 107.5 240 240 240s240-107.5 240-240c0-74.2-33.8-140.6-86.6-184.6c-13.6-11.3-33.8-9.4-45.1 4.1s-9.4 33.8 4.1 45.1c38.9 32.3 63.5 81 63.5 135.4c0 97.2-78.8 176-176 176s-176-78.8-176-176c0-54.4 24.7-103.1 63.5-135.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "prescription": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5b1" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "pharmacy", + "rx" + ] + }, + "unicode": "f5b1", + "label": "Prescription", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32V192v96c0 17.7 14.3 32 32 32s32-14.3 32-32V224h50.7l128 128L137.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L288 397.3 393.4 502.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L333.3 352 438.6 246.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 306.7l-85.8-85.8C251.4 209.1 288 164.8 288 112C288 50.1 237.9 0 176 0H32zM176 160H64V64H176c26.5 0 48 21.5 48 48s-21.5 48-48 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "prescription-bottle": { + "aliases": { + "unicodes": { + "secondary": [ + "10f485" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "pharmacy", + "rx" + ] + }, + "unicode": "f485", + "label": "Prescription Bottle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H352c17.7 0 32 14.3 32 32V64c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64V32zm32 96H352V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V416H144c8.8 0 16-7.2 16-16s-7.2-16-16-16H32V320H144c8.8 0 16-7.2 16-16s-7.2-16-16-16H32V224H144c8.8 0 16-7.2 16-16s-7.2-16-16-16H32V128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "prescription-bottle-medical": { + "aliases": { + "names": [ + "prescription-bottle-alt" + ], + "unicodes": { + "secondary": [ + "10f486" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "pharmacy", + "rx" + ] + }, + "unicode": "f486", + "label": "Prescription Bottle Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H352c17.7 0 32 14.3 32 32V64c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64V32zm32 96H352V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V128zM160 240v48H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V352h48c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H224V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "print": { + "aliases": { + "unicodes": { + "composite": [ + "1f5a8", + "1f5b6", + "2399" + ], + "secondary": [ + "10f02f" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Print Screen Symbol", + "Printer Icon", + "business", + "computer", + "copy", + "document", + "office", + "paper", + "printer" + ] + }, + "unicode": "f02f", + "label": "Print", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 0C92.7 0 64 28.7 64 64v96h64V64H354.7L384 93.3V160h64V93.3c0-17-6.7-33.3-18.7-45.3L400 18.7C388 6.7 371.7 0 354.7 0H128zM384 352v32 64H128V384 368 352H384zm64 32h32c17.7 0 32-14.3 32-32V256c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v96c0 17.7 14.3 32 32 32H64v64c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V384zM432 248a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "product-hunt": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f288", + "label": "Product Hunt", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "pump-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06a" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anti-bacterial", + "clean", + "covid-19", + "disinfect", + "hygiene", + "medical grade", + "sanitizer", + "soap" + ] + }, + "unicode": "e06a", + "label": "Pump Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 32v96H224V96h60.1c4.2 0 8.3 1.7 11.3 4.7l33.9 33.9c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L340.7 55.4c-15-15-35.4-23.4-56.6-23.4H224c0-17.7-14.3-32-32-32H128C110.3 0 96 14.3 96 32zM85.4 160c-33.3 0-61 25.5-63.8 58.7L3 442.7C-.1 480 29.3 512 66.8 512H253.2c37.4 0 66.9-32 63.8-69.3l-18.7-224c-2.8-33.2-30.5-58.7-63.8-58.7H85.4zM184 280v32h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H184v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V360H104c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V280c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pump-soap": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06b" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anti-bacterial", + "clean", + "covid-19", + "disinfect", + "hygiene", + "sanitizer", + "soap" + ] + }, + "unicode": "e06b", + "label": "Pump Soap", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 32v96H224V96h60.1c4.2 0 8.3 1.7 11.3 4.7l33.9 33.9c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L340.7 55.4c-15-15-35.4-23.4-56.6-23.4H224c0-17.7-14.3-32-32-32H128C110.3 0 96 14.3 96 32zM85.4 160c-33.3 0-61 25.5-63.8 58.7L3 442.7C-.1 480 29.3 512 66.8 512H253.2c37.4 0 66.9-32 63.8-69.3l-18.7-224c-2.8-33.2-30.5-58.7-63.8-58.7H85.4zM224 360c0 35.3-28.7 56-64 56s-64-20.7-64-56c0-32.5 37-80.9 50.9-97.9c3.2-3.9 8.1-6.1 13.1-6.1s9.9 2.2 13.1 6.1C187 279.1 224 327.5 224 360z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "pushed": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e1", + "label": "Pushed", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 432, + 512 + ], + "width": 432, + "height": 512, + "path": "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "puzzle-piece": { + "aliases": { + "unicodes": { + "composite": [ + "1f9e9" + ], + "secondary": [ + "10f12e" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add-on", + "addon", + "clue", + "game", + "interlocking", + "jigsaw", + "piece", + "puzzle", + "puzzle piece", + "section" + ] + }, + "unicode": "f12e", + "label": "Puzzle Piece", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 104.8c0-9.2-5.8-17.3-13.2-22.8C167.2 73.3 160 61.3 160 48c0-26.5 28.7-48 64-48s64 21.5 64 48c0 13.3-7.2 25.3-18.8 34c-7.4 5.5-13.2 13.6-13.2 22.8c0 12.8 10.4 23.2 23.2 23.2H336c26.5 0 48 21.5 48 48v56.8c0 12.8 10.4 23.2 23.2 23.2c9.2 0 17.3-5.8 22.8-13.2c8.7-11.6 20.7-18.8 34-18.8c26.5 0 48 28.7 48 64s-21.5 64-48 64c-13.3 0-25.3-7.2-34-18.8c-5.5-7.4-13.6-13.2-22.8-13.2c-12.8 0-23.2 10.4-23.2 23.2V464c0 26.5-21.5 48-48 48H279.2c-12.8 0-23.2-10.4-23.2-23.2c0-9.2 5.8-17.3 13.2-22.8c11.6-8.7 18.8-20.7 18.8-34c0-26.5-28.7-48-64-48s-64 21.5-64 48c0 13.3 7.2 25.3 18.8 34c7.4 5.5 13.2 13.6 13.2 22.8c0 12.8-10.4 23.2-23.2 23.2H48c-26.5 0-48-21.5-48-48V343.2C0 330.4 10.4 320 23.2 320c9.2 0 17.3 5.8 22.8 13.2C54.7 344.8 66.7 352 80 352c26.5 0 48-28.7 48-64s-21.5-64-48-64c-13.3 0-25.3 7.2-34 18.8C40.5 250.2 32.4 256 23.2 256C10.4 256 0 245.6 0 232.8V176c0-26.5 21.5-48 48-48H168.8c12.8 0 23.2-10.4 23.2-23.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "python": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e2", + "label": "Python", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "q": { + "aliases": { + "unicodes": { + "composite": [ + "71" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter Q", + "Latin Small Letter Q", + "letter" + ] + }, + "unicode": "51", + "label": "Q", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 256c0 88.4 71.6 160 160 160c28.9 0 56-7.7 79.4-21.1l-72-86.4c-11.3-13.6-9.5-33.8 4.1-45.1s33.8-9.5 45.1 4.1l70.9 85.1C371.9 325.8 384 292.3 384 256c0-88.4-71.6-160-160-160S64 167.6 64 256zM344.9 444.6C310 467 268.5 480 224 480C100.3 480 0 379.7 0 256S100.3 32 224 32s224 100.3 224 224c0 56.1-20.6 107.4-54.7 146.7l47.3 56.8c11.3 13.6 9.5 33.8-4.1 45.1s-33.8 9.5-45.1-4.1l-46.6-55.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "qq": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d6", + "label": "QQ", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "qrcode": { + "aliases": { + "unicodes": { + "secondary": [ + "10f029" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barcode", + "info", + "information", + "scan" + ] + }, + "unicode": "f029", + "label": "Qrcode", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 80C0 53.5 21.5 32 48 32h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80zM64 96v64h64V96H64zM0 336c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V336zm64 16v64h64V352H64zM304 32h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H304c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48zm80 64H320v64h64V96zM256 304c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s7.2-16 16-16s16 7.2 16 16v96c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s-7.2-16-16-16s-16 7.2-16 16v64c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V304zM368 480a16 16 0 1 1 0-32 16 16 0 1 1 0 32zm64 0a16 16 0 1 1 0-32 16 16 0 1 1 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "question": { + "aliases": { + "unicodes": { + "composite": [ + "2753", + "2754", + "f128" + ], + "primary": [ + "f128" + ], + "secondary": [ + "103f", + "10f128" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "?", + "Question Mark", + "help", + "information", + "mark", + "outlined", + "punctuation", + "question", + "red question mark", + "support", + "unknown", + "white question mark" + ] + }, + "unicode": "3f", + "label": "Question", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 160c0-35.3 28.7-64 64-64h32c35.3 0 64 28.7 64 64v3.6c0 21.8-11.1 42.1-29.4 53.8l-42.2 27.1c-25.2 16.2-40.4 44.1-40.4 74V320c0 17.7 14.3 32 32 32s32-14.3 32-32v-1.4c0-8.2 4.2-15.8 11-20.2l42.2-27.1c36.6-23.6 58.8-64.1 58.8-107.7V160c0-70.7-57.3-128-128-128H128C57.3 32 0 89.3 0 160c0 17.7 14.3 32 32 32s32-14.3 32-32zm80 320a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "quinscape": { + "changes": [ + "5.0.5", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f459", + "label": "QuinScape", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M313.6 474.6h-1a158.1 158.1 0 0 1 0-316.2c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C501.1 117.5 391.6 8 256.5 8S12 117.5 12 252.6s109.5 244.6 244.5 244.6a237.36 237.36 0 0 0 70.4-10.1c-5.2-3.5-8.9-8.1-13.3-12.5zm-.1-.1l.4.1zm78.4-168.9a99.2 99.2 0 1 0 99.2 99.2 99.18 99.18 0 0 0-99.2-99.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "quora": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2c4", + "label": "Quora", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "quote-left": { + "aliases": { + "names": [ + "quote-left-alt" + ], + "unicodes": { + "composite": [ + "201c" + ], + "secondary": [ + "10f10d" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Left Double Quotation Mark", + "mention", + "note", + "phrase", + "text", + "type" + ] + }, + "unicode": "f10d", + "label": "Quote Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 216C0 149.7 53.7 96 120 96h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320 288 216zm256 0c0-66.3 53.7-120 120-120h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H320c-35.3 0-64-28.7-64-64V320 288 216z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "quote-right": { + "aliases": { + "names": [ + "quote-right-alt" + ], + "unicodes": { + "composite": [ + "201d" + ], + "secondary": [ + "10f10e" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right Double Quotation Mark", + "mention", + "note", + "phrase", + "text", + "type" + ] + }, + "unicode": "f10e", + "label": "Quote Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 296c0 66.3-53.7 120-120 120h-8c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H320c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72zm-256 0c0 66.3-53.7 120-120 120H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "r": { + "aliases": { + "unicodes": { + "composite": [ + "72" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter R", + "Latin Small Letter R", + "letter" + ] + }, + "unicode": "52", + "label": "R", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V288 448c0 17.7 14.3 32 32 32s32-14.3 32-32V320h95.3L261.8 466.4c10.1 14.5 30.1 18 44.6 7.9s18-30.1 7.9-44.6L230.1 309.5C282.8 288.1 320 236.4 320 176c0-79.5-64.5-144-144-144H64zM176 256H64V96H176c44.2 0 80 35.8 80 80s-35.8 80-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "r-project": { + "changes": [ + "5.0.11", + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f7", + "label": "R Project", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 581, + 512 + ], + "width": 581, + "height": 512, + "path": "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "radiation": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7b9" + ] + } + }, + "changes": [ + "5.6.0", + "5.8.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "danger", + "dangerous", + "deadly", + "hazard", + "nuclear", + "radioactive", + "warning" + ] + }, + "unicode": "f7b9", + "label": "Radiation", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M215 186.7c-23.9 13.8-40 39.7-40 69.3L31 256c-17.7 0-32.2-14.4-30-31.9C9.7 154 46.8 92.7 100.3 52c14.1-10.7 33.8-5.3 42.7 10l72 124.7zM255 336c14.6 0 28.2-3.9 40-10.7l72 124.8c8.8 15.3 3.7 35.1-12.6 41.9c-30.6 12.9-64.2 20-99.4 20s-68.9-7.1-99.4-20c-16.3-6.9-21.4-26.6-12.6-41.9l72-124.8c11.8 6.8 25.4 10.7 40 10.7zm224-80l-144 0c0-29.6-16.1-55.5-40-69.3L367 62c8.8-15.3 28.6-20.7 42.7-10c53.6 40.7 90.6 102 99.4 172.1c2.2 17.5-12.4 31.9-30 31.9zM257 208a48 48 0 1 1 -2 96 48 48 0 1 1 2-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "radio": { + "aliases": { + "unicodes": { + "composite": [ + "1f4fb" + ], + "secondary": [ + "10f8d7" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "am", + "broadcast", + "fm", + "frequency", + "music", + "news", + "radio", + "receiver", + "transmitter", + "tuner", + "video" + ] + }, + "unicode": "f8d7", + "label": "Radio", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M494.8 47c12.7-3.7 20-17.1 16.3-29.8S494-2.8 481.2 1L51.7 126.9c-9.4 2.7-17.9 7.3-25.1 13.2C10.5 151.7 0 170.6 0 192v4V304 448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H218.5L494.8 47zM368 240a80 80 0 1 1 0 160 80 80 0 1 1 0-160zM80 256c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16zM64 320c0-8.8 7.2-16 16-16H208c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm16 64c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rainbow": { + "aliases": { + "unicodes": { + "composite": [ + "1f308" + ], + "secondary": [ + "10f75b" + ] + } + }, + "changes": [ + "5.5.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gold", + "leprechaun", + "prism", + "rain", + "rainbow", + "sky" + ] + }, + "unicode": "f75b", + "label": "Rainbow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96C178.6 96 64 210.6 64 352v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352C0 175.3 143.3 32 320 32s320 143.3 320 320v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352C576 210.6 461.4 96 320 96zm0 192c-35.3 0-64 28.7-64 64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-70.7 57.3-128 128-128s128 57.3 128 128v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-35.3-28.7-64-64-64zM160 352v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-123.7 100.3-224 224-224s224 100.3 224 224v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-88.4-71.6-160-160-160s-160 71.6-160 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ranking-star": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "first place", + "podium", + "rank", + "win" + ] + }, + "unicode": "e561", + "label": "Ranking Star", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321857, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M353.8 54.1L330.2 6.3c-3.9-8.3-16.1-8.6-20.4 0L286.2 54.1l-52.3 7.5c-9.3 1.4-13.3 12.9-6.4 19.8l38 37-9 52.1c-1.4 9.3 8.2 16.5 16.8 12.2l46.9-24.8 46.6 24.4c8.6 4.3 18.3-2.9 16.8-12.2l-9-52.1 38-36.6c6.8-6.8 2.9-18.3-6.4-19.8l-52.3-7.5zM256 256c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H384c17.7 0 32-14.3 32-32V288c0-17.7-14.3-32-32-32H256zM32 320c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H160c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32H32zm416 96v64c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V416c0-17.7-14.3-32-32-32H480c-17.7 0-32 14.3-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "raspberry-pi": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f7bb", + "label": "Raspberry Pi", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 407, + 512 + ], + "width": 407, + "height": 512, + "path": "M372 232.5l-3.7-6.5c.1-46.4-21.4-65.3-46.5-79.7 7.6-2 15.4-3.6 17.6-13.2 13.1-3.3 15.8-9.4 17.1-15.8 3.4-2.3 14.8-8.7 13.6-19.7 6.4-4.4 10-10.1 8.1-18.1 6.9-7.5 8.7-13.7 5.8-19.4 8.3-10.3 4.6-15.6 1.1-20.9 6.2-11.2.7-23.2-16.6-21.2-6.9-10.1-21.9-7.8-24.2-7.8-2.6-3.2-6-6-16.5-4.7-6.8-6.1-14.4-5-22.3-2.1-9.3-7.3-15.5-1.4-22.6.8C271.6.6 269 5.5 263.5 7.6c-12.3-2.6-16.1 3-22 8.9l-6.9-.1c-18.6 10.8-27.8 32.8-31.1 44.1-3.3-11.3-12.5-33.3-31.1-44.1l-6.9.1c-5.9-5.9-9.7-11.5-22-8.9-5.6-2-8.1-7-19.4-3.4-4.6-1.4-8.9-4.4-13.9-4.3-2.6.1-5.5 1-8.7 3.5-7.9-3-15.5-4-22.3 2.1-10.5-1.3-14 1.4-16.5 4.7-2.3 0-17.3-2.3-24.2 7.8C21.2 16 15.8 28 22 39.2c-3.5 5.4-7.2 10.7 1.1 20.9-2.9 5.7-1.1 11.9 5.8 19.4-1.8 8 1.8 13.7 8.1 18.1-1.2 11 10.2 17.4 13.6 19.7 1.3 6.4 4 12.4 17.1 15.8 2.2 9.5 10 11.2 17.6 13.2-25.1 14.4-46.6 33.3-46.5 79.7l-3.7 6.5c-28.8 17.2-54.7 72.7-14.2 117.7 2.6 14.1 7.1 24.2 11 35.4 5.9 45.2 44.5 66.3 54.6 68.8 14.9 11.2 30.8 21.8 52.2 29.2C159 504.2 181 512 203 512h1c22.1 0 44-7.8 64.2-28.4 21.5-7.4 37.3-18 52.2-29.2 10.2-2.5 48.7-23.6 54.6-68.8 3.9-11.2 8.4-21.3 11-35.4 40.6-45.1 14.7-100.5-14-117.7zm-22.2-8c-1.5 18.7-98.9-65.1-82.1-67.9 45.7-7.5 83.6 19.2 82.1 67.9zm-43 93.1c-24.5 15.8-59.8 5.6-78.8-22.8s-14.6-64.2 9.9-80c24.5-15.8 59.8-5.6 78.8 22.8s14.6 64.2-9.9 80zM238.9 29.3c.8 4.2 1.8 6.8 2.9 7.6 5.4-5.8 9.8-11.7 16.8-17.3 0 3.3-1.7 6.8 2.5 9.4 3.7-5 8.8-9.5 15.5-13.3-3.2 5.6-.6 7.3 1.2 9.6 5.1-4.4 10-8.8 19.4-12.3-2.6 3.1-6.2 6.2-2.4 9.8 5.3-3.3 10.6-6.6 23.1-8.9-2.8 3.1-8.7 6.3-5.1 9.4 6.6-2.5 14-4.4 22.1-5.4-3.9 3.2-7.1 6.3-3.9 8.8 7.1-2.2 16.9-5.1 26.4-2.6l-6 6.1c-.7.8 14.1.6 23.9.8-3.6 5-7.2 9.7-9.3 18.2 1 1 5.8.4 10.4 0-4.7 9.9-12.8 12.3-14.7 16.6 2.9 2.2 6.8 1.6 11.2.1-3.4 6.9-10.4 11.7-16 17.3 1.4 1 3.9 1.6 9.7.9-5.2 5.5-11.4 10.5-18.8 15 1.3 1.5 5.8 1.5 10 1.6-6.7 6.5-15.3 9.9-23.4 14.2 4 2.7 6.9 2.1 10 2.1-5.7 4.7-15.4 7.1-24.4 10 1.7 2.7 3.4 3.4 7.1 4.1-9.5 5.3-23.2 2.9-27 5.6.9 2.7 3.6 4.4 6.7 5.8-15.4.9-57.3-.6-65.4-32.3 15.7-17.3 44.4-37.5 93.7-62.6-38.4 12.8-73 30-102 53.5-34.3-15.9-10.8-55.9 5.8-71.8zm-34.4 114.6c24.2-.3 54.1 17.8 54 34.7-.1 15-21 27.1-53.8 26.9-32.1-.4-53.7-15.2-53.6-29.8 0-11.9 26.2-32.5 53.4-31.8zm-123-12.8c3.7-.7 5.4-1.5 7.1-4.1-9-2.8-18.7-5.3-24.4-10 3.1 0 6 .7 10-2.1-8.1-4.3-16.7-7.7-23.4-14.2 4.2-.1 8.7 0 10-1.6-7.4-4.5-13.6-9.5-18.8-15 5.8.7 8.3.1 9.7-.9-5.6-5.6-12.7-10.4-16-17.3 4.3 1.5 8.3 2 11.2-.1-1.9-4.2-10-6.7-14.7-16.6 4.6.4 9.4 1 10.4 0-2.1-8.5-5.8-13.3-9.3-18.2 9.8-.1 24.6 0 23.9-.8l-6-6.1c9.5-2.5 19.3.4 26.4 2.6 3.2-2.5-.1-5.6-3.9-8.8 8.1 1.1 15.4 2.9 22.1 5.4 3.5-3.1-2.3-6.3-5.1-9.4 12.5 2.3 17.8 5.6 23.1 8.9 3.8-3.6.2-6.7-2.4-9.8 9.4 3.4 14.3 7.9 19.4 12.3 1.7-2.3 4.4-4 1.2-9.6 6.7 3.8 11.8 8.3 15.5 13.3 4.1-2.6 2.5-6.2 2.5-9.4 7 5.6 11.4 11.5 16.8 17.3 1.1-.8 2-3.4 2.9-7.6 16.6 15.9 40.1 55.9 6 71.8-29-23.5-63.6-40.7-102-53.5 49.3 25 78 45.3 93.7 62.6-8 31.8-50 33.2-65.4 32.3 3.1-1.4 5.8-3.2 6.7-5.8-4-2.8-17.6-.4-27.2-5.6zm60.1 24.1c16.8 2.8-80.6 86.5-82.1 67.9-1.5-48.7 36.5-75.5 82.1-67.9zM38.2 342c-23.7-18.8-31.3-73.7 12.6-98.3 26.5-7 9 107.8-12.6 98.3zm91 98.2c-13.3 7.9-45.8 4.7-68.8-27.9-15.5-27.4-13.5-55.2-2.6-63.4 16.3-9.8 41.5 3.4 60.9 25.6 16.9 20 24.6 55.3 10.5 65.7zm-26.4-119.7c-24.5-15.8-28.9-51.6-9.9-80s54.3-38.6 78.8-22.8 28.9 51.6 9.9 80c-19.1 28.4-54.4 38.6-78.8 22.8zM205 496c-29.4 1.2-58.2-23.7-57.8-32.3-.4-12.7 35.8-22.6 59.3-22 23.7-1 55.6 7.5 55.7 18.9.5 11-28.8 35.9-57.2 35.4zm58.9-124.9c.2 29.7-26.2 53.8-58.8 54-32.6.2-59.2-23.8-59.4-53.4v-.6c-.2-29.7 26.2-53.8 58.8-54 32.6-.2 59.2 23.8 59.4 53.4v.6zm82.2 42.7c-25.3 34.6-59.6 35.9-72.3 26.3-13.3-12.4-3.2-50.9 15.1-72 20.9-23.3 43.3-38.5 58.9-26.6 10.5 10.3 16.7 49.1-1.7 72.3zm22.9-73.2c-21.5 9.4-39-105.3-12.6-98.3 43.9 24.7 36.3 79.6 12.6 98.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ravelry": { + "changes": [ + "4.7.0", + "5.0.0", + "5.15.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2d9", + "label": "Ravelry", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M498.252,234.223c-1.208-10.34-1.7-20.826-3.746-31a310.306,310.306,0,0,0-9.622-36.6,184.068,184.068,0,0,0-30.874-57.5,251.154,251.154,0,0,0-18.818-21.689,237.362,237.362,0,0,0-47.113-36.116A240.8,240.8,0,0,0,331.356,26.65c-11.018-3.1-22.272-5.431-33.515-7.615-6.78-1.314-13.749-1.667-20.627-2.482-.316-.036-.6-.358-.9-.553q-16.143.009-32.288.006c-2.41.389-4.808.925-7.236,1.15a179.331,179.331,0,0,0-34.256,7.1,221.5,221.5,0,0,0-39.768,16.355,281.385,281.385,0,0,0-38.08,24.158c-6.167,4.61-12.268,9.36-17.974,14.518C96.539,88.494,86.34,97.72,76.785,107.555a243.878,243.878,0,0,0-33.648,43.95,206.488,206.488,0,0,0-20.494,44.6,198.2,198.2,0,0,0-7.691,34.759A201.13,201.13,0,0,0,13.4,266.385a299.716,299.716,0,0,0,4.425,40.24,226.865,226.865,0,0,0,16.73,53.3,210.543,210.543,0,0,0,24,39.528,213.589,213.589,0,0,0,26.358,28.416A251.313,251.313,0,0,0,126.7,458.455a287.831,287.831,0,0,0,55.9,25.277,269.5,269.5,0,0,0,40.641,9.835c6.071,1.01,12.275,1.253,18.412,1.873a4.149,4.149,0,0,1,1.19.56h32.289c2.507-.389,5-.937,7.527-1.143,16.336-1.332,32.107-5.335,47.489-10.717A219.992,219.992,0,0,0,379.1,460.322c9.749-6.447,19.395-13.077,28.737-20.1,5.785-4.348,10.988-9.5,16.3-14.457,3.964-3.7,7.764-7.578,11.51-11.5a232.162,232.162,0,0,0,31.427-41.639c9.542-16.045,17.355-32.905,22.3-50.926,2.859-10.413,4.947-21.045,7.017-31.652,1.032-5.279,1.251-10.723,1.87-16.087.036-.317.358-.6.552-.9V236.005A9.757,9.757,0,0,1,498.252,234.223Zm-161.117-1.15s-16.572-2.98-28.47-2.98c-27.2,0-33.57,14.9-33.57,37.04V360.8H201.582V170.062H275.1v31.931c8.924-26.822,26.771-36.189,62.04-36.189Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "react": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41b", + "label": "React", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zM167.2 307.5c5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5 4.6 8.8 9.3 17.5 14.3 26.1zm-30.3-120.3c14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26-6.3-14.9-11.6-29.5-16-43.6zm27.4 68.9c6.6-13.8 13.8-27.3 21.4-40.6s15.8-26.2 24.4-38.9c15-1.1 30.3-1.7 45.9-1.7s31 .6 45.9 1.7c8.5 12.6 16.6 25.5 24.3 38.7s14.9 26.7 21.7 40.4c-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6s-30.9-.5-45.6-1.4c-8.7-12.7-16.9-25.7-24.6-39s-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zm-149.7-15c25.3 0 45.8-20.5 45.8-45.8s-20.5-45.8-45.8-45.8c-25.3 0-45.8 20.5-45.8 45.8s20.5 45.8 45.8 45.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "reacteurope": { + "changes": [ + "5.5.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f75d", + "label": "ReactEurope", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M250.6 211.74l5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.1-.1-2.3-6.8-2.3 6.8-7.2.1 5.7 4.3zm63.7 0l5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.2-.1-2.3-6.8-2.3 6.8-7.2.1 5.7 4.3zm-91.3 50.5h-3.4c-4.8 0-3.8 4-3.8 12.1 0 4.7-2.3 6.1-5.8 6.1s-5.8-1.4-5.8-6.1v-36.6c0-4.7 2.3-6.1 5.8-6.1s5.8 1.4 5.8 6.1c0 7.2-.7 10.5 3.8 10.5h3.4c4.7-.1 3.8-3.9 3.8-12.3 0-9.9-6.7-14.1-16.8-14.1h-.2c-10.1 0-16.8 4.2-16.8 14.1V276c0 10.4 6.7 14.1 16.8 14.1h.2c10.1 0 16.8-3.8 16.8-14.1 0-9.86 1.1-13.76-3.8-13.76zm-80.7 17.4h-14.7v-19.3H139c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-11.4v-18.3H142c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-21.7c-2.4-.1-3.7 1.3-3.7 3.8v59.1c0 2.5 1.3 3.8 3.8 3.8h21.9c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8zm-42-18.5c4.6-2 7.3-6 7.3-12.4v-11.9c0-10.1-6.7-14.1-16.8-14.1H77.4c-2.5 0-3.8 1.3-3.8 3.8v59.1c0 2.5 1.3 3.8 3.8 3.8h3.4c2.5 0 3.8-1.3 3.8-3.8v-22.9h5.6l7.4 23.5a4.1 4.1 0 0 0 4.3 3.2h3.3c2.8 0 4-1.8 3.2-4.4zm-3.8-14c0 4.8-2.5 6.1-6.1 6.1h-5.8v-20.9h5.8c3.6 0 6.1 1.3 6.1 6.1zM176 226a3.82 3.82 0 0 0-4.2-3.4h-6.9a3.68 3.68 0 0 0-4 3.4l-11 59.2c-.5 2.7.9 4.1 3.4 4.1h3a3.74 3.74 0 0 0 4.1-3.5l1.8-11.3h12.2l1.8 11.3a3.74 3.74 0 0 0 4.1 3.5h3.5c2.6 0 3.9-1.4 3.4-4.1zm-12.3 39.3l4.7-29.7 4.7 29.7zm89.3 20.2v-53.2h7.5c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-25.8c-2.5 0-3.8 1.3-3.8 3.8v2.1c0 2.5 1.3 3.8 3.8 3.8h7.3v53.2c0 2.5 1.3 3.8 3.8 3.8h3.4c2.5.04 3.8-1.3 3.8-3.76zm248-.8h-19.4V258h16.1a1.89 1.89 0 0 0 2-2v-.8a1.89 1.89 0 0 0-2-2h-16.1v-25.8h19.1a1.89 1.89 0 0 0 2-2v-.8a1.77 1.77 0 0 0-2-1.9h-22.2a1.62 1.62 0 0 0-2 1.8v63a1.81 1.81 0 0 0 2 1.9H501a1.81 1.81 0 0 0 2-1.9v-.8a1.84 1.84 0 0 0-2-1.96zm-93.1-62.9h-.8c-10.1 0-15.3 4.7-15.3 14.1V276c0 9.3 5.2 14.1 15.3 14.1h.8c10.1 0 15.3-4.8 15.3-14.1v-40.1c0-9.36-5.2-14.06-15.3-14.06zm10.2 52.4c-.1 8-3 11.1-10.5 11.1s-10.5-3.1-10.5-11.1v-36.6c0-7.9 3-11.1 10.5-11.1s10.5 3.2 10.5 11.1zm-46.5-14.5c6.1-1.6 9.2-6.1 9.2-13.3v-9.7c0-9.4-5.2-14.1-15.3-14.1h-13.7a1.81 1.81 0 0 0-2 1.9v63a1.81 1.81 0 0 0 2 1.9h1.2a1.74 1.74 0 0 0 1.9-1.9v-26.9h11.6l10.4 27.2a2.32 2.32 0 0 0 2.3 1.5h1.5c1.4 0 2-1 1.5-2.3zm-6.4-3.9H355v-28.5h10.2c7.5 0 10.5 3.1 10.5 11.1v6.4c0 7.84-3 11.04-10.5 11.04zm85.9-33.1h-13.7a1.62 1.62 0 0 0-2 1.8v63a1.81 1.81 0 0 0 2 1.9h1.2a1.74 1.74 0 0 0 1.9-1.9v-26.1h10.6c10.1 0 15.3-4.8 15.3-14.1v-10.5c0-9.4-5.2-14.1-15.3-14.1zm10.2 22.8c0 7.9-3 11.1-10.5 11.1h-10.2v-29.2h10.2c7.5-.1 10.5 3.1 10.5 11zM259.5 308l-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm227.6-136.1a364.42 364.42 0 0 0-35.6-11.3c19.6-78 11.6-134.7-22.3-153.9C394.7-12.66 343.3 11 291 61.94q5.1 4.95 10.2 10.2c82.5-80 119.6-53.5 120.9-52.8 22.4 12.7 36 55.8 15.5 137.8a587.83 587.83 0 0 0-84.6-13C281.1 43.64 212.4 2 170.8 2 140 2 127 23 123.2 29.74c-18.1 32-13.3 84.2.1 133.8-70.5 20.3-120.7 54.1-120.3 95 .5 59.6 103.2 87.8 122.1 92.8-20.5 81.9-10.1 135.6 22.3 153.9 28 15.8 75.1 6 138.2-55.2q-5.1-4.95-10.2-10.2c-82.5 80-119.7 53.5-120.9 52.8-22.3-12.6-36-55.6-15.5-137.9 12.4 2.9 41.8 9.5 84.6 13 71.9 100.4 140.6 142 182.1 142 30.8 0 43.8-21 47.6-27.7 18-31.9 13.3-84.1-.1-133.8 152.3-43.8 156.2-130.2 33.9-176.3zM135.9 36.84c2.9-5.1 11.9-20.3 34.9-20.3 36.8 0 98.8 39.6 163.3 126.2a714 714 0 0 0-93.9.9 547.76 547.76 0 0 1 42.2-52.4Q277.3 86 272.2 81a598.25 598.25 0 0 0-50.7 64.2 569.69 569.69 0 0 0-84.4 14.6c-.2-1.4-24.3-82.2-1.2-123zm304.8 438.3c-2.9 5.1-11.8 20.3-34.9 20.3-36.7 0-98.7-39.4-163.3-126.2a695.38 695.38 0 0 0 93.9-.9 547.76 547.76 0 0 1-42.2 52.4q5.1 5.25 10.2 10.2a588.47 588.47 0 0 0 50.7-64.2c47.3-4.7 80.3-13.5 84.4-14.6 22.7 84.4 4.5 117 1.2 123zm9.1-138.6c-3.6-11.9-7.7-24.1-12.4-36.4a12.67 12.67 0 0 1-10.7-5.7l-.1.1a19.61 19.61 0 0 1-5.4 3.6c5.7 14.3 10.6 28.4 14.7 42.2a535.3 535.3 0 0 1-72 13c3.5-5.3 17.2-26.2 32.2-54.2a24.6 24.6 0 0 1-6-3.2c-1.1 1.2-3.6 4.2-10.9 4.2-6.2 11.2-17.4 30.9-33.9 55.2a711.91 711.91 0 0 1-112.4 1c-7.9-11.2-21.5-31.1-36.8-57.8a21 21 0 0 1-3-1.5c-1.9 1.6-3.9 3.2-12.6 3.2 6.3 11.2 17.5 30.7 33.8 54.6a548.81 548.81 0 0 1-72.2-11.7q5.85-21 14.1-42.9c-3.2 0-5.4.2-8.4-1a17.58 17.58 0 0 1-6.9 1c-4.9 13.4-9.1 26.5-12.7 39.4C-31.7 297-12.1 216 126.7 175.64c3.6 11.9 7.7 24.1 12.4 36.4 10.4 0 12.9 3.4 14.4 5.3a12 12 0 0 1 2.3-2.2c-5.8-14.7-10.9-29.2-15.2-43.3 7-1.8 32.4-8.4 72-13-15.9 24.3-26.7 43.9-32.8 55.3a14.22 14.22 0 0 1 6.4 8 23.42 23.42 0 0 1 10.2-8.4c6.5-11.7 17.9-31.9 34.8-56.9a711.72 711.72 0 0 1 112.4-1c31.5 44.6 28.9 48.1 42.5 64.5a21.42 21.42 0 0 1 10.4-7.4c-6.4-11.4-17.6-31-34.3-55.5 40.4 4.1 65 10 72.2 11.7-4 14.4-8.9 29.2-14.6 44.2a20.74 20.74 0 0 1 6.8 4.3l.1.1a12.72 12.72 0 0 1 8.9-5.6c4.9-13.4 9.2-26.6 12.8-39.5a359.71 359.71 0 0 1 34.5 11c106.1 39.9 74 87.9 72.6 90.4-19.8 35.1-80.1 55.2-105.7 62.5zm-114.4-114h-1.2a1.74 1.74 0 0 0-1.9 1.9v49.8c0 7.9-2.6 11.1-10.1 11.1s-10.1-3.1-10.1-11.1v-49.8a1.69 1.69 0 0 0-1.9-1.9H309a1.81 1.81 0 0 0-2 1.9v51.5c0 9.6 5 14.1 15.1 14.1h.4c10.1 0 15.1-4.6 15.1-14.1v-51.5a2 2 0 0 0-2.2-1.9zM321.7 308l-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm-31.1 7.4l-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm5.1-30.8h-19.4v-26.7h16.1a1.89 1.89 0 0 0 2-2v-.8a1.89 1.89 0 0 0-2-2h-16.1v-25.8h19.1a1.89 1.89 0 0 0 2-2v-.8a1.77 1.77 0 0 0-2-1.9h-22.2a1.81 1.81 0 0 0-2 1.9v63a1.81 1.81 0 0 0 2 1.9h22.5a1.77 1.77 0 0 0 2-1.9v-.8a1.83 1.83 0 0 0-2-2.06zm-7.4-99.4L286 192l-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.1-.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "readme": { + "changes": [ + "5.0.9", + "5.0.10" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4d5", + "label": "ReadMe", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "rebel": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d0", + "label": "Rebel Alliance", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "receipt": { + "aliases": { + "unicodes": { + "composite": [ + "1f9fe" + ], + "secondary": [ + "10f543" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accounting", + "bookkeeping", + "check", + "evidence", + "invoice", + "money", + "pay", + "proof", + "receipt", + "table" + ] + }, + "unicode": "f543", + "label": "Receipt", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M14 2.2C22.5-1.7 32.5-.3 39.6 5.8L80 40.4 120.4 5.8c9-7.7 22.3-7.7 31.2 0L192 40.4 232.4 5.8c9-7.7 22.2-7.7 31.2 0L304 40.4 344.4 5.8c7.1-6.1 17.1-7.5 25.6-3.6s14 12.4 14 21.8V488c0 9.4-5.5 17.9-14 21.8s-18.5 2.5-25.6-3.6L304 471.6l-40.4 34.6c-9 7.7-22.2 7.7-31.2 0L192 471.6l-40.4 34.6c-9 7.7-22.3 7.7-31.2 0L80 471.6 39.6 506.2c-7.1 6.1-17.1 7.5-25.6 3.6S0 497.4 0 488V24C0 14.6 5.5 6.1 14 2.2zM96 144c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96zM80 352c0 8.8 7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zM96 240c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "record-vinyl": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8d9" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LP", + "album", + "analog", + "music", + "phonograph", + "sound" + ] + }, + "unicode": "f8d9", + "label": "Record Vinyl", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256-96a96 96 0 1 1 0 192 96 96 0 1 1 0-192zm0 224a128 128 0 1 0 0-256 128 128 0 1 0 0 256zm0-96a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rectangle-ad": { + "aliases": { + "names": [ + "ad" + ], + "unicodes": { + "secondary": [ + "10f641" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "advertisement", + "media", + "newspaper", + "promotion", + "publicity" + ] + }, + "unicode": "f641", + "label": "Rectangle Ad", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM229.5 173.3l72 144c5.9 11.9 1.1 26.3-10.7 32.2s-26.3 1.1-32.2-10.7L253.2 328H162.8l-5.4 10.7c-5.9 11.9-20.3 16.7-32.2 10.7s-16.7-20.3-10.7-32.2l72-144c4.1-8.1 12.4-13.3 21.5-13.3s17.4 5.1 21.5 13.3zM208 237.7L186.8 280h42.3L208 237.7zM392 256a24 24 0 1 0 0 48 24 24 0 1 0 0-48zm24-43.9V184c0-13.3 10.7-24 24-24s24 10.7 24 24v96 48c0 13.3-10.7 24-24 24c-6.6 0-12.6-2.7-17-7c-9.4 4.5-19.9 7-31 7c-39.8 0-72-32.2-72-72s32.2-72 72-72c8.4 0 16.5 1.4 24 4.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rectangle-list": { + "aliases": { + "names": [ + "list-alt" + ], + "unicodes": { + "secondary": [ + "10f022" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "unicode": "f022", + "label": "Rectangle List", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H512c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM128 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm32-128a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM128 384a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm96-248c-13.3 0-24 10.7-24 24s10.7 24 24 24H448c13.3 0 24-10.7 24-24s-10.7-24-24-24H224zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24H448c13.3 0 24-10.7 24-24s-10.7-24-24-24H224zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24H448c13.3 0 24-10.7 24-24s-10.7-24-24-24H224z" + }, + "regular": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H512c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16H64zM0 96C0 60.7 28.7 32 64 32H512c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm96 64a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm104 0c0-13.3 10.7-24 24-24H448c13.3 0 24 10.7 24 24s-10.7 24-24 24H224c-13.3 0-24-10.7-24-24zm0 96c0-13.3 10.7-24 24-24H448c13.3 0 24 10.7 24 24s-10.7 24-24 24H224c-13.3 0-24-10.7-24-24zm0 96c0-13.3 10.7-24 24-24H448c13.3 0 24 10.7 24 24s-10.7 24-24 24H224c-13.3 0-24-10.7-24-24zm-72-64a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM96 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "rectangle-xmark": { + "aliases": { + "names": [ + "rectangle-times", + "times-rectangle", + "window-close" + ], + "unicodes": { + "composite": [ + "f2d4" + ], + "secondary": [ + "10f410" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "cancel", + "computer", + "development" + ] + }, + "unicode": "f410", + "label": "Rectangle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321858, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM175 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + }, + "regular": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M175 175C184.4 165.7 199.6 165.7 208.1 175L255.1 222.1L303 175C312.4 165.7 327.6 165.7 336.1 175C346.3 184.4 346.3 199.6 336.1 208.1L289.9 255.1L336.1 303C346.3 312.4 346.3 327.6 336.1 336.1C327.6 346.3 312.4 346.3 303 336.1L255.1 289.9L208.1 336.1C199.6 346.3 184.4 346.3 175 336.1C165.7 327.6 165.7 312.4 175 303L222.1 255.1L175 208.1C165.7 199.6 165.7 184.4 175 175V175zM0 96C0 60.65 28.65 32 64 32H448C483.3 32 512 60.65 512 96V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H448C456.8 432 464 424.8 464 416V96C464 87.16 456.8 80 448 80H64C55.16 80 48 87.16 48 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "recycle": { + "aliases": { + "unicodes": { + "composite": [ + "2672", + "267a", + "267b" + ], + "secondary": [ + "10f1b8" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Recycling Symbol For Generic Materials", + "Universal Recycling Symbol", + "Waste", + "compost", + "garbage", + "recycle", + "recycling symbol", + "reuse", + "trash" + ] + }, + "unicode": "f1b8", + "label": "Recycle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M174.7 45.1C192.2 17 223 0 256 0s63.8 17 81.3 45.1l38.6 61.7 27-15.6c8.4-4.9 18.9-4.2 26.6 1.7s11.1 15.9 8.6 25.3l-23.4 87.4c-3.4 12.8-16.6 20.4-29.4 17l-87.4-23.4c-9.4-2.5-16.3-10.4-17.6-20s3.4-19.1 11.8-23.9l28.4-16.4L283 79c-5.8-9.3-16-15-27-15s-21.2 5.7-27 15l-17.5 28c-9.2 14.8-28.6 19.5-43.6 10.5c-15.3-9.2-20.2-29.2-10.7-44.4l17.5-28zM429.5 251.9c15-9 34.4-4.3 43.6 10.5l24.4 39.1c9.4 15.1 14.4 32.4 14.6 50.2c.3 53.1-42.7 96.4-95.8 96.4L320 448v32c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-64-64c-9.4-9.4-9.4-24.6 0-33.9l64-64c6.9-6.9 17.2-8.9 26.2-5.2s14.8 12.5 14.8 22.2v32l96.2 0c17.6 0 31.9-14.4 31.8-32c0-5.9-1.7-11.7-4.8-16.7l-24.4-39.1c-9.5-15.2-4.7-35.2 10.7-44.4zm-364.6-31L36 204.2c-8.4-4.9-13.1-14.3-11.8-23.9s8.2-17.5 17.6-20l87.4-23.4c12.8-3.4 26 4.2 29.4 17L182 241.2c2.5 9.4-.9 19.3-8.6 25.3s-18.2 6.6-26.6 1.7l-26.5-15.3L68.8 335.3c-3.1 5-4.8 10.8-4.8 16.7c-.1 17.6 14.2 32 31.8 32l32.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-32.2 0C42.7 448-.3 404.8 0 351.6c.1-17.8 5.1-35.1 14.6-50.2l50.3-80.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "red-river": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e3", + "label": "red river", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "reddit": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a1", + "label": "reddit Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "reddit-alien": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f281", + "label": "reddit Alien", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "redhat": { + "changes": [ + "5.6.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "unicode": "f7bc", + "label": "Redhat", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M341.52 285.56c33.65 0 82.34-6.94 82.34-47 .22-6.74.86-1.82-20.88-96.24-4.62-19.15-8.68-27.84-42.31-44.65-26.09-13.34-82.92-35.37-99.73-35.37-15.66 0-20.2 20.17-38.87 20.17-18 0-31.31-15.06-48.12-15.06-16.14 0-26.66 11-34.78 33.62-27.5 77.55-26.28 74.27-26.12 78.27 0 24.8 97.64 106.11 228.47 106.11M429 254.84c4.65 22 4.65 24.35 4.65 27.25 0 37.66-42.33 58.56-98 58.56-125.74.08-235.91-73.65-235.91-122.33a49.55 49.55 0 0 1 4.06-19.72C58.56 200.86 0 208.93 0 260.63c0 84.67 200.63 189 359.49 189 121.79 0 152.51-55.08 152.51-98.58 0-34.21-29.59-73.05-82.93-96.24" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "registered": { + "aliases": { + "unicodes": { + "composite": [ + "ae" + ], + "secondary": [ + "10f25d" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copyright", + "mark", + "r", + "registered", + "trademark" + ] + }, + "unicode": "f25d", + "label": "Registered", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM160 152c0-13.3 10.7-24 24-24h88c44.2 0 80 35.8 80 80c0 28-14.4 52.7-36.3 67l34.1 75.1c5.5 12.1 .1 26.3-11.9 31.8s-26.3 .1-31.8-11.9L268.9 288H208v72c0 13.3-10.7 24-24 24s-24-10.7-24-24V264 152zm48 88h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H208v64z" + }, + "regular": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM160 152V264v96c0 13.3 10.7 24 24 24s24-10.7 24-24V288h60.9l37.2 81.9c5.5 12.1 19.7 17.4 31.8 11.9s17.4-19.7 11.9-31.8L315.7 275c21.8-14.3 36.3-39 36.3-67c0-44.2-35.8-80-80-80H184c-13.3 0-24 10.7-24 24zm48 88V176h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H208z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "renren": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f18b", + "label": "Renren", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "repeat": { + "aliases": { + "unicodes": { + "composite": [ + "1f501" + ], + "secondary": [ + "10f363" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "clockwise", + "flip", + "reload", + "repeat", + "repeat button", + "rewind", + "switch" + ] + }, + "unicode": "f363", + "label": "Repeat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224c0 17.7 14.3 32 32 32s32-14.3 32-32c0-53 43-96 96-96H320v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9S320 19.1 320 32V64H160C71.6 64 0 135.6 0 224zm512 64c0-17.7-14.3-32-32-32s-32 14.3-32 32c0 53-43 96-96 96H192V352c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V448H352c88.4 0 160-71.6 160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "reply": { + "aliases": { + "names": [ + "mail-reply" + ], + "unicodes": { + "composite": [ + "f112" + ], + "secondary": [ + "10f3e5" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mail", + "message", + "respond" + ] + }, + "unicode": "f3e5", + "label": "Reply", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M205 34.8c11.5 5.1 19 16.6 19 29.2v64H336c97.2 0 176 78.8 176 176c0 113.3-81.5 163.9-100.2 174.1c-2.5 1.4-5.3 1.9-8.1 1.9c-10.9 0-19.7-8.9-19.7-19.7c0-7.5 4.3-14.4 9.8-19.5c9.4-8.8 22.2-26.4 22.2-56.7c0-53-43-96-96-96H224v64c0 12.6-7.4 24.1-19 29.2s-25 3-34.4-5.4l-160-144C3.9 225.7 0 217.1 0 208s3.9-17.7 10.6-23.8l160-144c9.4-8.5 22.9-10.6 34.4-5.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "reply-all": { + "aliases": { + "names": [ + "mail-reply-all" + ], + "unicodes": { + "secondary": [ + "10f122" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mail", + "message", + "respond" + ] + }, + "unicode": "f122", + "label": "Reply All", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M209.4 39.5c-9.1-9.6-24.3-10-33.9-.9L33.8 173.2c-19.9 18.9-19.9 50.7 0 69.6L175.5 377.4c9.6 9.1 24.8 8.7 33.9-.9s8.7-24.8-.9-33.9L66.8 208 208.5 73.4c9.6-9.1 10-24.3 .9-33.9zM352 64c0-12.6-7.4-24.1-19-29.2s-25-3-34.4 5.4l-160 144c-6.7 6.1-10.6 14.7-10.6 23.8s3.9 17.7 10.6 23.8l160 144c9.4 8.5 22.9 10.6 34.4 5.4s19-16.6 19-29.2V288h32c53 0 96 43 96 96c0 30.4-12.8 47.9-22.2 56.7c-5.5 5.1-9.8 12-9.8 19.5c0 10.9 8.8 19.7 19.7 19.7c2.8 0 5.6-.6 8.1-1.9C494.5 467.9 576 417.3 576 304c0-97.2-78.8-176-176-176H352V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "replyd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e6", + "label": "replyd", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "republican": { + "aliases": { + "unicodes": { + "secondary": [ + "10f75e" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "conservative", + "election", + "elephant", + "politics", + "republican party", + "right", + "right-wing", + "usa" + ] + }, + "unicode": "f75e", + "label": "Republican", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 192C0 103.6 71.6 32 160 32H384c88.4 0 160 71.6 160 160v64H0V192zm415.9-64c-2.4 0-4.7 1.3-5.7 3.4l-12.6 24.6-28.2 4c-2.4 .3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3 .6 4.7 2.5 6s4.6 1.6 6.7 .5l25.2-12.8 25.2 12.8c2.2 1.1 4.8 .9 6.7-.5s3-3.7 2.5-6l-4.8-27.1L466 170.5c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4-12.6-24.6c-1.1-2.1-3.3-3.4-5.7-3.4zm-138.3 3.4c-1.1-2.1-3.3-3.4-5.7-3.4s-4.7 1.3-5.7 3.4l-12.6 24.6-28.2 4c-2.4 .3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3 .6 4.7 2.5 6s4.6 1.6 6.7 .5l25.2-12.8 25.2 12.8c2.2 1.1 4.8 .9 6.7-.5s3-3.7 2.5-6l-4.8-27.1L322 170.5c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4-12.6-24.6zM127.9 128c-2.4 0-4.7 1.3-5.7 3.4l-12.6 24.6-28.2 4c-2.4 .3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3 .6 4.7 2.5 6s4.6 1.6 6.7 .5l25.2-12.8 25.2 12.8c2.2 1.1 4.8 .9 6.7-.5s3-3.7 2.5-6l-4.8-27.1L178 170.5c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4-12.6-24.6c-1.1-2.1-3.3-3.4-5.7-3.4zm.1 160H320h96 32 64 32v32 80c0 8.8 7.2 16 16 16s16-7.2 16-16V352c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 44.2-35.8 80-80 80s-80-35.8-80-80V352H448v32 64c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V384H128v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V384 288H128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "researchgate": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f8", + "label": "Researchgate", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "resolving": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e7", + "label": "Resolving", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "restroom": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7bd" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "toilet", + "water closet", + "wc" + ] + }, + "unicode": "f7bd", + "label": "Restroom", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M80 48a48 48 0 1 1 96 0A48 48 0 1 1 80 48zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V325.2c-8.1 9.2-21.1 13.2-33.5 9.4c-16.9-5.3-26.3-23.2-21-40.1l30.9-99.1C44.9 155.3 82 128 124 128h8c42 0 79.1 27.3 91.6 67.4l30.9 99.1c5.3 16.9-4.1 34.8-21 40.1c-12.4 3.9-25.4-.2-33.5-9.4V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H120zM320 0c13.3 0 24 10.7 24 24V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24zM464 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM440 480V384H422.2c-10.9 0-18.6-10.7-15.2-21.1l9-26.9c-3.2 0-6.4-.5-9.5-1.5c-16.9-5.3-26.3-23.2-21-40.1l29.7-95.2C428.4 156.9 467.6 128 512 128s83.6 28.9 96.8 71.2l29.7 95.2c5.3 16.9-4.1 34.8-21 40.1c-3.2 1-6.4 1.5-9.5 1.5l9 26.9c3.5 10.4-4.3 21.1-15.2 21.1H584v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H504v96c0 17.7-14.3 32-32 32s-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "retweet": { + "aliases": { + "unicodes": { + "secondary": [ + "10f079" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refresh", + "reload", + "share", + "swap" + ] + }, + "unicode": "f079", + "label": "Retweet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M272 416c17.7 0 32-14.3 32-32s-14.3-32-32-32H160c-17.7 0-32-14.3-32-32V192h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8l32 0 0 128c0 53 43 96 96 96H272zM304 96c-17.7 0-32 14.3-32 32s14.3 32 32 32l112 0c17.7 0 32 14.3 32 32l0 128H416c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8l-32 0V192c0-53-43-96-96-96L304 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rev": { + "changes": [ + "5.1.0", + "5.1.1", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5b2", + "label": "Rev.io", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M289.67 274.89a65.57 65.57 0 1 1-65.56-65.56 65.64 65.64 0 0 1 65.56 65.56zm139.55-5.05h-.13a204.69 204.69 0 0 0-74.32-153l-45.38 26.2a157.07 157.07 0 0 1 71.81 131.84C381.2 361.5 310.73 432 224.11 432S67 361.5 67 274.88c0-81.88 63-149.27 143-156.43v39.12l108.77-62.79L210 32v38.32c-106.7 7.25-191 96-191 204.57 0 111.59 89.12 202.29 200.06 205v.11h210.16V269.84z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ribbon": { + "aliases": { + "unicodes": { + "composite": [ + "1f397" + ], + "secondary": [ + "10f4d6" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "badge", + "cause", + "celebration", + "lapel", + "pin", + "reminder", + "reminder ribbon", + "ribbon" + ] + }, + "unicode": "f4d6", + "label": "Ribbon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M315.2 322.8l0 0-133.9-146 0 0L128 118.6c7.8-5.1 37-22.6 78-22.6s70.2 17.4 78 22.6L227.7 180l85.6 93.4 27.4-29.8c16.3-17.7 25.3-40.9 25.3-65V149.1c0-19-5.6-37.5-16.1-53.3L309.8 35.6C294.9 13.4 269.9 0 243.2 0h-76c-25.8 0-50.1 12.5-65.1 33.5L63.9 87C52.3 103.2 46 122.8 46 142.8V164c0 23.2 8.4 45.6 23.6 63.1l56 64.2 0 0 83.3 95.6 0 0 91.8 105.3c10 11.5 26.8 14.3 40 6.8l54.5-31.1c17.8-10.2 21.6-34.3 7.7-49.4l-87.7-95.7zM187.2 410.6l-83.3-95.6L9.1 418.5C-4.8 433.6-1 457.7 16.8 467.9l55.1 31.5c13 7.4 29.3 4.9 39.4-6.1l75.9-82.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "right-from-bracket": { + "aliases": { + "names": [ + "sign-out-alt" + ], + "unicodes": { + "secondary": [ + "10f2f5" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "exit", + "leave", + "log out", + "logout", + "sign-out" + ] + }, + "unicode": "f2f5", + "label": "Right From Bracket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M377.9 105.9L500.7 228.7c7.2 7.2 11.3 17.1 11.3 27.3s-4.1 20.1-11.3 27.3L377.9 406.1c-6.4 6.4-15 9.9-24 9.9c-18.7 0-33.9-15.2-33.9-33.9l0-62.1-128 0c-17.7 0-32-14.3-32-32l0-64c0-17.7 14.3-32 32-32l128 0 0-62.1c0-18.7 15.2-33.9 33.9-33.9c9 0 17.6 3.6 24 9.9zM160 96L96 96c-17.7 0-32 14.3-32 32l0 256c0 17.7 14.3 32 32 32l64 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-64 0c-53 0-96-43-96-96L0 128C0 75 43 32 96 32l64 0c17.7 0 32 14.3 32 32s-14.3 32-32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "right-left": { + "aliases": { + "names": [ + "exchange-alt" + ], + "unicodes": { + "secondary": [ + "10f362" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "exchange", + "reciprocate", + "return", + "swap", + "transfer" + ] + }, + "unicode": "f362", + "label": "Right Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 96l320 0V32c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l96 96c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-96 96c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V160L32 160c-17.7 0-32-14.3-32-32s14.3-32 32-32zM480 352c17.7 0 32 14.3 32 32s-14.3 32-32 32H160v64c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-96-96c-6-6-9.4-14.1-9.4-22.6s3.4-16.6 9.4-22.6l96-96c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 64H480z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "right-long": { + "aliases": { + "names": [ + "long-arrow-alt-right" + ], + "unicodes": { + "secondary": [ + "10f30b" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "long-arrow-right", + "next" + ] + }, + "unicode": "f30b", + "label": "Right Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M334.5 414c8.8 3.8 19 2 26-4.6l144-136c4.8-4.5 7.5-10.8 7.5-17.4s-2.7-12.9-7.5-17.4l-144-136c-7-6.6-17.2-8.4-26-4.6s-14.5 12.5-14.5 22l0 72L32 192c-17.7 0-32 14.3-32 32l0 64c0 17.7 14.3 32 32 32l288 0 0 72c0 9.6 5.7 18.2 14.5 22z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "right-to-bracket": { + "aliases": { + "names": [ + "sign-in-alt" + ], + "unicodes": { + "secondary": [ + "10f2f6" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "enter", + "join", + "log in", + "login", + "sign in", + "sign up", + "sign-in", + "signin", + "signup" + ] + }, + "unicode": "f2f6", + "label": "Right To Bracket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M217.9 105.9L340.7 228.7c7.2 7.2 11.3 17.1 11.3 27.3s-4.1 20.1-11.3 27.3L217.9 406.1c-6.4 6.4-15 9.9-24 9.9c-18.7 0-33.9-15.2-33.9-33.9l0-62.1L32 320c-17.7 0-32-14.3-32-32l0-64c0-17.7 14.3-32 32-32l128 0 0-62.1c0-18.7 15.2-33.9 33.9-33.9c9 0 17.6 3.6 24 9.9zM352 416l64 0c17.7 0 32-14.3 32-32l0-256c0-17.7-14.3-32-32-32l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l64 0c53 0 96 43 96 96l0 256c0 53-43 96-96 96l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ring": { + "aliases": { + "unicodes": { + "secondary": [ + "10f70b" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "Gollum", + "band", + "binding", + "d&d", + "dnd", + "engagement", + "fantasy", + "gold", + "jewelry", + "marriage", + "precious" + ] + }, + "unicode": "f70b", + "label": "Ring", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 208c0 7.8 4.4 18.7 17.1 30.3C126.5 214.1 188.9 200 256 200s129.5 14.1 174.9 38.3C443.6 226.7 448 215.8 448 208c0-12.3-10.8-32-47.9-50.6C364.9 139.8 314 128 256 128s-108.9 11.8-144.1 29.4C74.8 176 64 195.7 64 208zm192 40c-47 0-89.3 7.6-122.9 19.7C166.3 280.2 208.8 288 256 288s89.7-7.8 122.9-20.3C345.3 255.6 303 248 256 248zM0 208c0-49.6 39.4-85.8 83.3-107.8C129.1 77.3 190.3 64 256 64s126.9 13.3 172.7 36.2c43.9 22 83.3 58.2 83.3 107.8v96c0 49.6-39.4 85.8-83.3 107.8C382.9 434.7 321.7 448 256 448s-126.9-13.3-172.7-36.2C39.4 389.8 0 353.6 0 304V208z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road": { + "aliases": { + "unicodes": { + "composite": [ + "1f6e3" + ], + "secondary": [ + "10f018" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "highway", + "map", + "motorway", + "pavement", + "road", + "route", + "street", + "travel" + ] + }, + "unicode": "f018", + "label": "Road", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M256 32H181.2c-27.1 0-51.3 17.1-60.3 42.6L3.1 407.2C1.1 413 0 419.2 0 425.4C0 455.5 24.5 480 54.6 480H256V416c0-17.7 14.3-32 32-32s32 14.3 32 32v64H521.4c30.2 0 54.6-24.5 54.6-54.6c0-6.2-1.1-12.4-3.1-18.2L455.1 74.6C446 49.1 421.9 32 394.8 32H320V96c0 17.7-14.3 32-32 32s-32-14.3-32-32V32zm64 192v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-barrier": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "border", + "no entry", + "roadblock" + ] + }, + "unicode": "e562", + "label": "Road Barrier", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V266.3L149.2 96H64V64c0-17.7-14.3-32-32-32zM405.2 96H330.8l-5.4 10.7L234.8 288h74.3l5.4-10.7L405.2 96zM362.8 288h74.3l5.4-10.7L533.2 96H458.8l-5.4 10.7L362.8 288zM202.8 96l-5.4 10.7L106.8 288h74.3l5.4-10.7L277.2 96H202.8zm288 192H576V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v53.7L490.8 288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-bridge": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "infrastructure", + "road", + "travel" + ] + }, + "unicode": "e563", + "label": "Road Bridge", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M352 0H608c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V32c0-17.7 14.3-32 32-32zM480 200c-13.3 0-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24V224c0-13.3-10.7-24-24-24zm24 184c0-13.3-10.7-24-24-24s-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24V384zM480 40c-13.3 0-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24V64c0-13.3-10.7-24-24-24zM32 96H288v64H248v64h40v96c-53 0-96 43-96 96v64c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V416c0-53-43-96-96-96V224H72V160H32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm168 64H120v64h80V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "freeway", + "highway", + "not affected", + "ok", + "okay", + "pavement", + "road" + ] + }, + "unicode": "e564", + "label": "Road Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M213.2 32H288V96c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2c-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32c2.3 0 4.6-.3 6.8-.7c-4.5 15.5-6.8 31.8-6.8 48.7c0 5.4 .2 10.7 .7 16l-.7 0c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32zM352 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L480 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "freeway", + "highway", + "pavement", + "road" + ] + }, + "unicode": "e565", + "label": "Road Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M213.2 32H288V96c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2c-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32c2.3 0 4.6-.3 6.8-.7c-4.5 15.5-6.8 31.8-6.8 48.7c0 5.4 .2 10.7 .7 16l-.7 0c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32zM496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destroy", + "freeway", + "highway", + "pavement", + "road" + ] + }, + "unicode": "e566", + "label": "Road Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M213.2 32H288V96c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2c-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32c2.3 0 4.6-.3 6.8-.7c-4.5 15.5-6.8 31.8-6.8 48.7c0 5.4 .2 10.7 .7 16l-.7 0c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32zM496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm22.6 144l36.7-36.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L496 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L473.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L496 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L518.6 368z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "freeway", + "highway", + "lockdown", + "pavement", + "quarantine", + "road" + ] + }, + "unicode": "e567", + "label": "Road Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 32H213.2c-27.1 0-51.3 17.1-60.3 42.6L35.1 407.2c-2.1 5.9-3.1 12-3.1 18.2C32 455.5 56.5 480 86.6 480H288V416c0-17.7 14.3-32 32-32s32 14.3 32 32v64h32V352c0-23.7 12.9-44.4 32-55.4V272c0-58.3 44.6-106.2 101.5-111.5L487.1 74.6C478 49.1 453.9 32 426.8 32H352V96c0 17.7-14.3 32-32 32s-32-14.3-32-32V32zm64 192v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32s32 14.3 32 32zm176 16c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "road-spikes": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barrier", + "roadblock", + "spikes" + ] + }, + "unicode": "e568", + "label": "Road Spikes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 116.8c0-15.8 20.5-22 29.3-8.9L192 256V116.8c0-15.8 20.5-22 29.3-8.9L320 256V116.8c0-15.8 20.5-22 29.3-8.9L448 256V116.8c0-15.8 20.5-22 29.3-8.9L606.8 302.2c14.2 21.3-1.1 49.7-26.6 49.7H512 448 384 320 256 192 64V116.8zM32 384H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "robot": { + "aliases": { + "unicodes": { + "composite": [ + "1f916" + ], + "secondary": [ + "10f544" + ] + } + }, + "changes": [ + "5.0.13", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "android", + "automate", + "computer", + "cyborg", + "face", + "monster", + "robot" + ] + }, + "unicode": "f544", + "label": "Robot", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0c17.7 0 32 14.3 32 32V96H472c39.8 0 72 32.2 72 72V440c0 39.8-32.2 72-72 72H168c-39.8 0-72-32.2-72-72V168c0-39.8 32.2-72 72-72H288V32c0-17.7 14.3-32 32-32zM208 384c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H208zm96 0c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H304zm96 0c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H400zM264 256a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zm152 40a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM48 224H64V416H48c-26.5 0-48-21.5-48-48V272c0-26.5 21.5-48 48-48zm544 0c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H576V224h16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rocket": { + "aliases": { + "unicodes": { + "secondary": [ + "10f135" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.7.0", + "5.12.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aircraft", + "app", + "jet", + "launch", + "nasa", + "space" + ] + }, + "unicode": "f135", + "label": "Rocket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M156.6 384.9L125.7 354c-8.5-8.5-11.5-20.8-7.7-32.2c3-8.9 7-20.5 11.8-33.8L24 288c-8.6 0-16.6-4.6-20.9-12.1s-4.2-16.7 .2-24.1l52.5-88.5c13-21.9 36.5-35.3 61.9-35.3l82.3 0c2.4-4 4.8-7.7 7.2-11.3C289.1-4.1 411.1-8.1 483.9 5.3c11.6 2.1 20.6 11.2 22.8 22.8c13.4 72.9 9.3 194.8-111.4 276.7c-3.5 2.4-7.3 4.8-11.3 7.2v82.3c0 25.4-13.4 49-35.3 61.9l-88.5 52.5c-7.4 4.4-16.6 4.5-24.1 .2s-12.1-12.2-12.1-20.9V380.8c-14.1 4.9-26.4 8.9-35.7 11.9c-11.2 3.6-23.4 .5-31.8-7.8zM384 168a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rocketchat": { + "changes": [ + "5.0.0", + "5.4.2", + "5.8.0", + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e8", + "label": "Rocket.Chat", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M284.046,224.8a34.114,34.114,0,1,0,34.317,34.113A34.217,34.217,0,0,0,284.046,224.8Zm-110.45,0a34.114,34.114,0,1,0,34.317,34.113A34.217,34.217,0,0,0,173.6,224.8Zm220.923,0a34.114,34.114,0,1,0,34.317,34.113A34.215,34.215,0,0,0,394.519,224.8Zm153.807-55.319c-15.535-24.172-37.31-45.57-64.681-63.618-52.886-34.817-122.374-54-195.666-54a405.975,405.975,0,0,0-72.032,6.357,238.524,238.524,0,0,0-49.51-36.588C99.684-11.7,40.859.711,11.135,11.421A14.291,14.291,0,0,0,5.58,34.782C26.542,56.458,61.222,99.3,52.7,138.252c-33.142,33.9-51.112,74.776-51.112,117.337,0,43.372,17.97,84.248,51.112,118.148,8.526,38.956-26.154,81.816-47.116,103.491a14.284,14.284,0,0,0,5.555,23.34c29.724,10.709,88.549,23.147,155.324-10.2a238.679,238.679,0,0,0,49.51-36.589A405.972,405.972,0,0,0,288,460.14c73.313,0,142.8-19.159,195.667-53.975,27.371-18.049,49.145-39.426,64.679-63.619,17.309-26.923,26.07-55.916,26.07-86.125C574.394,225.4,565.634,196.43,548.326,169.485ZM284.987,409.9a345.65,345.65,0,0,1-89.446-11.5l-20.129,19.393a184.366,184.366,0,0,1-37.138,27.585,145.767,145.767,0,0,1-52.522,14.87c.983-1.771,1.881-3.563,2.842-5.356q30.258-55.68,16.325-100.078c-32.992-25.962-52.778-59.2-52.778-95.4,0-83.1,104.254-150.469,232.846-150.469s232.867,67.373,232.867,150.469C517.854,342.525,413.6,409.9,284.987,409.9Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "rockrms": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3e9", + "label": "Rockrms", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "rotate": { + "aliases": { + "names": [ + "sync-alt" + ], + "unicodes": { + "composite": [ + "1f504" + ], + "secondary": [ + "10f2f1" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anticlockwise", + "arrow", + "counterclockwise", + "counterclockwise arrows button", + "exchange", + "refresh", + "reload", + "rotate", + "swap", + "withershins" + ] + }, + "unicode": "f2f1", + "label": "Rotate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M126.9 142.9c62.2-62.2 162.7-62.5 225.3-1L311 183c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8H447.5c0 0 0 0 0 0H456c13.3 0 24-10.7 24-24V72c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2L397.4 96.6c-87.6-86.5-228.7-86.2-315.8 1C57.2 122 39.6 150.7 28.8 181.4c-5.9 16.7 2.9 34.9 19.5 40.8s34.9-2.9 40.8-19.5c7.7-21.8 20.2-42.3 37.8-59.8zM0 312v7.6 .7V440c0 9.7 5.8 18.5 14.8 22.2s19.3 1.7 26.2-5.2l41.6-41.6c87.6 86.5 228.7 86.2 315.8-1c24.4-24.4 42.1-53.1 52.9-83.7c5.9-16.7-2.9-34.9-19.5-40.8s-34.9 2.9-40.8 19.5c-7.7 21.8-20.2 42.3-37.8 59.8c-62.2 62.2-162.7 62.5-225.3 1L169 329c6.9-6.9 8.9-17.2 5.2-26.2s-12.5-14.8-22.2-14.8H32.4h-.7H24c-13.3 0-24 10.7-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rotate-left": { + "aliases": { + "names": [ + "rotate-back", + "rotate-backward", + "undo-alt" + ], + "unicodes": { + "secondary": [ + "10f2ea" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "exchange", + "oops", + "return", + "swap" + ] + }, + "unicode": "f2ea", + "label": "Rotate Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32.5 224H24c-13.3 0-24-10.7-24-24V72c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2L82.6 96.6c87.6-86.5 228.7-86.2 315.8 1c87.5 87.5 87.5 229.3 0 316.8s-229.3 87.5-316.8 0c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0c62.5 62.5 163.8 62.5 226.3 0s62.5-163.8 0-226.3c-62.2-62.2-162.7-62.5-225.3-1L169 183c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8H32.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rotate-right": { + "aliases": { + "names": [ + "redo-alt", + "rotate-forward" + ], + "unicodes": { + "secondary": [ + "10f2f9" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "refresh", + "reload", + "repeat" + ] + }, + "unicode": "f2f9", + "label": "Rotate Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M447.5 224H456c13.3 0 24-10.7 24-24V72c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2L397.4 96.6c-87.6-86.5-228.7-86.2-315.8 1c-87.5 87.5-87.5 229.3 0 316.8s229.3 87.5 316.8 0c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3c62.2-62.2 162.7-62.5 225.3-1L311 183c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8H447.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "route": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4d7" + ] + } + }, + "changes": [ + "5.0.9", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "navigation", + "travel" + ] + }, + "unicode": "f4d7", + "label": "Route", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 96c0 50.2-59.1 125.1-84.6 155c-3.8 4.4-9.4 6.1-14.5 5H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c53 0 96 43 96 96s-43 96-96 96H139.6c8.7-9.9 19.3-22.6 30-36.8c6.3-8.4 12.8-17.6 19-27.2H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-53 0-96-43-96-96s43-96 96-96h39.8c-21-31.5-39.8-67.7-39.8-96c0-53 43-96 96-96s96 43 96 96zM117.1 489.1c-3.8 4.3-7.2 8.1-10.1 11.3l-1.8 2-.2-.2c-6 4.6-14.6 4-20-1.8C59.8 473 0 402.5 0 352c0-53 43-96 96-96s96 43 96 96c0 30-21.1 67-43.5 97.9c-10.7 14.7-21.7 28-30.8 38.5l-.6 .7zM128 352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM416 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rss": { + "aliases": { + "names": [ + "feed" + ], + "unicodes": { + "secondary": [ + "10f09e" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blog", + "feed", + "journal", + "news", + "writing" + ] + }, + "unicode": "f09e", + "label": "Rss", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32c229.8 0 416 186.2 416 416c0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96C14.3 96 0 81.7 0 64zM0 416a64 64 0 1 1 128 0A64 64 0 1 1 0 416zM32 160c159.1 0 288 128.9 288 288c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ruble-sign": { + "aliases": { + "names": [ + "rouble", + "rub", + "ruble" + ], + "unicodes": { + "composite": [ + "20bd" + ], + "secondary": [ + "10f158" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Ruble Sign", + "currency" + ] + }, + "unicode": "f158", + "label": "Ruble Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 32C78.3 32 64 46.3 64 64V256H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v32c0 17.7 14.3 32 32 32s32-14.3 32-32V416H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V320H240c79.5 0 144-64.5 144-144s-64.5-144-144-144H96zM240 256H128V96H240c44.2 0 80 35.8 80 80s-35.8 80-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rug": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blanket", + "carpet", + "rug", + "textile" + ] + }, + "unicode": "e569", + "label": "Rug", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M24 64H56 80V88v88 80 80 88 24H56 24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V360H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V280H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V200H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V112H24C10.7 112 0 101.3 0 88S10.7 64 24 64zm88 0H528V448H112V64zM640 88c0 13.3-10.7 24-24 24h-8v40h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v32h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v32h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v40h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H584 560V424 336 256 176 88 64h24 32c13.3 0 24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ruler": { + "aliases": { + "unicodes": { + "composite": [ + "1f4cf" + ], + "secondary": [ + "10f545" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning", + "ruler", + "straight edge", + "straight ruler" + ] + }, + "unicode": "f545", + "label": "Ruler", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M174.9 494.1c-18.7 18.7-49.1 18.7-67.9 0L14.9 401.9c-18.7-18.7-18.7-49.1 0-67.9l50.7-50.7 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 50.7-50.7c18.7-18.7 49.1-18.7 67.9 0l92.1 92.1c18.7 18.7 18.7 49.1 0 67.9L174.9 494.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ruler-combined": { + "aliases": { + "unicodes": { + "secondary": [ + "10f546" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning" + ] + }, + "unicode": "f546", + "label": "Ruler Combined", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M.2 468.9C2.7 493.1 23.1 512 48 512l96 0 320 0c26.5 0 48-21.5 48-48l0-96c0-26.5-21.5-48-48-48l-48 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-80 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l80 0 0-64-80 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l80 0 0-64-80 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l80 0 0-48c0-26.5-21.5-48-48-48L48 0C21.5 0 0 21.5 0 48L0 368l0 96c0 1.7 .1 3.3 .2 4.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ruler-horizontal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f547" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning" + ] + }, + "unicode": "f547", + "label": "Ruler Horizontal", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 336c0 26.5 21.5 48 48 48l544 0c26.5 0 48-21.5 48-48l0-160c0-26.5-21.5-48-48-48l-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0c-26.5 0-48 21.5-48 48L0 336z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ruler-vertical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f548" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning" + ] + }, + "unicode": "f548", + "label": "Ruler Vertical", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H208c26.5 0 48 21.5 48 48V96H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rupee-sign": { + "aliases": { + "names": [ + "rupee" + ], + "unicodes": { + "composite": [ + "20a8" + ], + "secondary": [ + "10f156" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rupee Sign", + "currency" + ] + }, + "unicode": "f156", + "label": "Rupee Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256zm256.5 16.4c-.9 6 0 8.7 .4 9.8c.4 1.1 1.4 2.6 4.2 4.9c7.2 5.7 18.7 10 37.9 16.8l1.3 .5c16 5.6 38.7 13.6 55.7 28.1c9.5 8.1 17.9 18.6 23.1 32.3c5.1 13.7 6.1 28.5 3.8 44c-4.2 28.1-20.5 49.3-43.8 60.9c-22.1 11-48.1 12.5-73.2 8l-.2 0 0 0c-9.3-1.8-20.5-5.7-29.3-9c-6-2.3-12.6-4.9-17.7-6.9l0 0c-2.5-1-4.6-1.8-6.3-2.5c-16.5-6.4-24.6-25-18.2-41.4s25-24.6 41.4-18.2c2.6 1 5.2 2 7.9 3.1l0 0c4.8 1.9 9.8 3.9 15.4 6c8.8 3.3 15.3 5.4 18.7 6c15.7 2.8 26.7 .8 32.9-2.3c5-2.5 8-6 9.1-13c1-6.9 .2-10.5-.5-12.3c-.6-1.7-1.8-3.6-4.5-5.9c-6.9-5.8-18.2-10.4-36.9-17l-3-1.1c-15.5-5.4-37-13-53.3-25.9c-9.5-7.5-18.3-17.6-23.7-31c-5.4-13.4-6.6-28-4.4-43.2c8.5-57.1 67-78 116.9-68.9c6.9 1.3 27.3 5.8 35.4 8.4c16.9 5.2 26.3 23.2 21.1 40.1s-23.2 26.3-40.1 21.1c-4.7-1.4-22.3-5.5-27.9-6.5c-14.6-2.7-25.8-.4-32.6 3.2c-6.3 3.3-8.9 7.6-9.5 12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rupiah-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency" + ] + }, + "unicode": "e23d", + "label": "Rupiah Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256zm256-96h80c61.9 0 112 50.1 112 112s-50.1 112-112 112H352v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352 192c0-17.7 14.3-32 32-32zm80 160c26.5 0 48-21.5 48-48s-21.5-48-48-48H352v96h48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "rust": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07a", + "label": "Rust", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M508.52,249.75,486.7,236.24c-.17-2-.34-3.93-.55-5.88l18.72-17.5a7.35,7.35,0,0,0-2.44-12.25l-24-9c-.54-1.88-1.08-3.78-1.67-5.64l15-20.83a7.35,7.35,0,0,0-4.79-11.54l-25.42-4.15c-.9-1.73-1.79-3.45-2.73-5.15l10.68-23.42a7.35,7.35,0,0,0-6.95-10.39l-25.82.91q-1.79-2.22-3.61-4.4L439,81.84A7.36,7.36,0,0,0,430.16,73L405,78.93q-2.17-1.83-4.4-3.61l.91-25.82a7.35,7.35,0,0,0-10.39-7L367.7,53.23c-1.7-.94-3.43-1.84-5.15-2.73L358.4,25.08a7.35,7.35,0,0,0-11.54-4.79L326,35.26c-1.86-.59-3.75-1.13-5.64-1.67l-9-24a7.35,7.35,0,0,0-12.25-2.44l-17.5,18.72c-1.95-.21-3.91-.38-5.88-.55L262.25,3.48a7.35,7.35,0,0,0-12.5,0L236.24,25.3c-2,.17-3.93.34-5.88.55L212.86,7.13a7.35,7.35,0,0,0-12.25,2.44l-9,24c-1.89.55-3.79,1.08-5.66,1.68l-20.82-15a7.35,7.35,0,0,0-11.54,4.79l-4.15,25.41c-1.73.9-3.45,1.79-5.16,2.73L120.88,42.55a7.35,7.35,0,0,0-10.39,7l.92,25.81c-1.49,1.19-3,2.39-4.42,3.61L81.84,73A7.36,7.36,0,0,0,73,81.84L78.93,107c-1.23,1.45-2.43,2.93-3.62,4.41l-25.81-.91a7.42,7.42,0,0,0-6.37,3.26,7.35,7.35,0,0,0-.57,7.13l10.66,23.41c-.94,1.7-1.83,3.43-2.73,5.16L25.08,153.6a7.35,7.35,0,0,0-4.79,11.54l15,20.82c-.59,1.87-1.13,3.77-1.68,5.66l-24,9a7.35,7.35,0,0,0-2.44,12.25l18.72,17.5c-.21,1.95-.38,3.91-.55,5.88L3.48,249.75a7.35,7.35,0,0,0,0,12.5L25.3,275.76c.17,2,.34,3.92.55,5.87L7.13,299.13a7.35,7.35,0,0,0,2.44,12.25l24,9c.55,1.89,1.08,3.78,1.68,5.65l-15,20.83a7.35,7.35,0,0,0,4.79,11.54l25.42,4.15c.9,1.72,1.79,3.45,2.73,5.14L42.56,391.12a7.35,7.35,0,0,0,.57,7.13,7.13,7.13,0,0,0,6.37,3.26l25.83-.91q1.77,2.22,3.6,4.4L73,430.16A7.36,7.36,0,0,0,81.84,439L107,433.07q2.18,1.83,4.41,3.61l-.92,25.82a7.35,7.35,0,0,0,10.39,6.95l23.43-10.68c1.69.94,3.42,1.83,5.14,2.73l4.15,25.42a7.34,7.34,0,0,0,11.54,4.78l20.83-15c1.86.6,3.76,1.13,5.65,1.68l9,24a7.36,7.36,0,0,0,12.25,2.44l17.5-18.72c1.95.21,3.92.38,5.88.55l13.51,21.82a7.35,7.35,0,0,0,12.5,0l13.51-21.82c2-.17,3.93-.34,5.88-.56l17.5,18.73a7.36,7.36,0,0,0,12.25-2.44l9-24c1.89-.55,3.78-1.08,5.65-1.68l20.82,15a7.34,7.34,0,0,0,11.54-4.78l4.15-25.42c1.72-.9,3.45-1.79,5.15-2.73l23.42,10.68a7.35,7.35,0,0,0,10.39-6.95l-.91-25.82q2.22-1.79,4.4-3.61L430.16,439a7.36,7.36,0,0,0,8.84-8.84L433.07,405q1.83-2.17,3.61-4.4l25.82.91a7.23,7.23,0,0,0,6.37-3.26,7.35,7.35,0,0,0,.58-7.13L458.77,367.7c.94-1.7,1.83-3.43,2.73-5.15l25.42-4.15a7.35,7.35,0,0,0,4.79-11.54l-15-20.83c.59-1.87,1.13-3.76,1.67-5.65l24-9a7.35,7.35,0,0,0,2.44-12.25l-18.72-17.5c.21-1.95.38-3.91.55-5.87l21.82-13.51a7.35,7.35,0,0,0,0-12.5Zm-151,129.08A13.91,13.91,0,0,0,341,389.51l-7.64,35.67A187.51,187.51,0,0,1,177,424.44l-7.64-35.66a13.87,13.87,0,0,0-16.46-10.68l-31.51,6.76a187.38,187.38,0,0,1-16.26-19.21H258.3c1.72,0,2.89-.29,2.89-1.91V309.55c0-1.57-1.17-1.91-2.89-1.91H213.47l.05-34.35H262c4.41,0,23.66,1.28,29.79,25.87,1.91,7.55,6.17,32.14,9.06,40,2.89,8.82,14.6,26.46,27.1,26.46H407a187.3,187.3,0,0,1-17.34,20.09Zm25.77,34.49A15.24,15.24,0,1,1,368,398.08h.44A15.23,15.23,0,0,1,383.24,413.32Zm-225.62-.68a15.24,15.24,0,1,1-15.25-15.25h.45A15.25,15.25,0,0,1,157.62,412.64ZM69.57,234.15l32.83-14.6a13.88,13.88,0,0,0,7.06-18.33L102.69,186h26.56V305.73H75.65A187.65,187.65,0,0,1,69.57,234.15ZM58.31,198.09a15.24,15.24,0,0,1,15.23-15.25H74a15.24,15.24,0,1,1-15.67,15.24Zm155.16,24.49.05-35.32h63.26c3.28,0,23.07,3.77,23.07,18.62,0,12.29-15.19,16.7-27.68,16.7ZM399,306.71c-9.8,1.13-20.63-4.12-22-10.09-5.78-32.49-15.39-39.4-30.57-51.4,18.86-11.95,38.46-29.64,38.46-53.26,0-25.52-17.49-41.59-29.4-49.48-16.76-11-35.28-13.23-40.27-13.23H116.32A187.49,187.49,0,0,1,221.21,70.06l23.47,24.6a13.82,13.82,0,0,0,19.6.44l26.26-25a187.51,187.51,0,0,1,128.37,91.43l-18,40.57A14,14,0,0,0,408,220.43l34.59,15.33a187.12,187.12,0,0,1,.4,32.54H423.71c-1.91,0-2.69,1.27-2.69,3.13v8.82C421,301,409.31,305.58,399,306.71ZM240,60.21A15.24,15.24,0,0,1,255.21,45h.45A15.24,15.24,0,1,1,240,60.21ZM436.84,214a15.24,15.24,0,1,1,0-30.48h.44a15.24,15.24,0,0,1-.44,30.48Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "s": { + "aliases": { + "unicodes": { + "composite": [ + "73" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter S", + "Latin Small Letter S", + "letter" + ] + }, + "unicode": "53", + "label": "S", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M99.1 105.4C79 114 68.2 127.2 65.2 144.8c-2.4 14.1-.7 23.2 2 29.4c2.8 6.3 7.9 12.4 16.7 18.6c19.2 13.4 48.3 22.1 84.9 32.5c1 .3 1.9 .6 2.9 .8c32.7 9.3 72 20.6 100.9 40.7c15.7 10.9 29.9 25.5 38.6 45.1c8.8 19.8 10.8 42 6.6 66.3c-7.3 42.5-35.3 71.7-71.8 87.3c-35.4 15.2-79.1 17.9-123.7 10.9l-.2 0 0 0c-24-3.9-62.7-17.1-87.6-25.6c-4.8-1.7-9.2-3.1-12.8-4.3C5.1 440.8-3.9 422.7 1.6 405.9s23.7-25.8 40.5-20.3c4.9 1.6 10.2 3.4 15.9 5.4c25.4 8.6 56.4 19.2 74.4 22.1c36.8 5.7 67.5 2.5 88.5-6.5c20.1-8.6 30.8-21.8 33.9-39.4c2.4-14.1 .7-23.2-2-29.4c-2.8-6.3-7.9-12.4-16.7-18.6c-19.2-13.4-48.3-22.1-84.9-32.5c-1-.3-1.9-.6-2.9-.8c-32.7-9.3-72-20.6-100.9-40.7c-15.7-10.9-29.9-25.5-38.6-45.1c-8.8-19.8-10.8-42-6.6-66.3l31.5 5.5L2.1 133.9C9.4 91.4 37.4 62.2 73.9 46.6c35.4-15.2 79.1-17.9 123.7-10.9c13 2 52.4 9.6 66.6 13.4c17.1 4.5 27.2 22.1 22.7 39.2s-22.1 27.2-39.1 22.7c-11.2-3-48.2-10.2-60.1-12l4.9-31.5-4.9 31.5c-36.9-5.8-67.5-2.5-88.6 6.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sack-dollar": { + "aliases": { + "unicodes": { + "composite": [ + "1f4b0" + ], + "secondary": [ + "10f81d" + ] + } + }, + "changes": [ + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "burlap", + "cash", + "dollar", + "money", + "money bag", + "moneybag", + "robber", + "santa", + "usd" + ] + }, + "unicode": "f81d", + "label": "Sack Dollar", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M320 96H192L144.6 24.9C137.5 14.2 145.1 0 157.9 0H354.1c12.8 0 20.4 14.2 13.3 24.9L320 96zM192 128H320c3.8 2.5 8.1 5.3 13 8.4C389.7 172.7 512 250.9 512 416c0 53-43 96-96 96H96c-53 0-96-43-96-96C0 250.9 122.3 172.7 179 136.4l0 0 0 0c4.8-3.1 9.2-5.9 13-8.4zm84 88c0-11-9-20-20-20s-20 9-20 20v14c-7.6 1.7-15.2 4.4-22.2 8.5c-13.9 8.3-25.9 22.8-25.8 43.9c.1 20.3 12 33.1 24.7 40.7c11 6.6 24.7 10.8 35.6 14l1.7 .5c12.6 3.8 21.8 6.8 28 10.7c5.1 3.2 5.8 5.4 5.9 8.2c.1 5-1.8 8-5.9 10.5c-5 3.1-12.9 5-21.4 4.7c-11.1-.4-21.5-3.9-35.1-8.5c-2.3-.8-4.7-1.6-7.2-2.4c-10.5-3.5-21.8 2.2-25.3 12.6s2.2 21.8 12.6 25.3c1.9 .6 4 1.3 6.1 2.1l0 0 0 0c8.3 2.9 17.9 6.2 28.2 8.4V424c0 11 9 20 20 20s20-9 20-20V410.2c8-1.7 16-4.5 23.2-9c14.3-8.9 25.1-24.1 24.8-45c-.3-20.3-11.7-33.4-24.6-41.6c-11.5-7.2-25.9-11.6-37.1-15l0 0-.7-.2c-12.8-3.9-21.9-6.7-28.3-10.5c-5.2-3.1-5.3-4.9-5.3-6.7c0-3.7 1.4-6.5 6.2-9.3c5.4-3.2 13.6-5.1 21.5-5c9.6 .1 20.2 2.2 31.2 5.2c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-6.5-1.7-13.7-3.4-21.1-4.7V216z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sack-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "burlap", + "rations" + ] + }, + "unicode": "e56a", + "label": "Sack Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 96H320l47.4-71.1C374.5 14.2 366.9 0 354.1 0H157.9c-12.8 0-20.4 14.2-13.3 24.9L192 96zm128 32H192c-3.8 2.5-8.1 5.3-13 8.4l0 0 0 0C122.3 172.7 0 250.9 0 416c0 53 43 96 96 96H416c53 0 96-43 96-96c0-165.1-122.3-243.3-179-279.6c-4.8-3.1-9.2-5.9-13-8.4zM289.9 336l47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "safari": { + "changes": [ + "4.4.0", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "unicode": "f267", + "label": "Safari", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M274.69,274.69l-37.38-37.38L166,346ZM256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8ZM411.85,182.79l14.78-6.13A8,8,0,0,1,437.08,181h0a8,8,0,0,1-4.33,10.46L418,197.57a8,8,0,0,1-10.45-4.33h0A8,8,0,0,1,411.85,182.79ZM314.43,94l6.12-14.78A8,8,0,0,1,331,74.92h0a8,8,0,0,1,4.33,10.45l-6.13,14.78a8,8,0,0,1-10.45,4.33h0A8,8,0,0,1,314.43,94ZM256,60h0a8,8,0,0,1,8,8V84a8,8,0,0,1-8,8h0a8,8,0,0,1-8-8V68A8,8,0,0,1,256,60ZM181,74.92a8,8,0,0,1,10.46,4.33L197.57,94a8,8,0,1,1-14.78,6.12l-6.13-14.78A8,8,0,0,1,181,74.92Zm-63.58,42.49h0a8,8,0,0,1,11.31,0L140,128.72A8,8,0,0,1,140,140h0a8,8,0,0,1-11.31,0l-11.31-11.31A8,8,0,0,1,117.41,117.41ZM60,256h0a8,8,0,0,1,8-8H84a8,8,0,0,1,8,8h0a8,8,0,0,1-8,8H68A8,8,0,0,1,60,256Zm40.15,73.21-14.78,6.13A8,8,0,0,1,74.92,331h0a8,8,0,0,1,4.33-10.46L94,314.43a8,8,0,0,1,10.45,4.33h0A8,8,0,0,1,100.15,329.21Zm4.33-136h0A8,8,0,0,1,94,197.57l-14.78-6.12A8,8,0,0,1,74.92,181h0a8,8,0,0,1,10.45-4.33l14.78,6.13A8,8,0,0,1,104.48,193.24ZM197.57,418l-6.12,14.78a8,8,0,0,1-14.79-6.12l6.13-14.78A8,8,0,1,1,197.57,418ZM264,444a8,8,0,0,1-8,8h0a8,8,0,0,1-8-8V428a8,8,0,0,1,8-8h0a8,8,0,0,1,8,8Zm67-6.92h0a8,8,0,0,1-10.46-4.33L314.43,418a8,8,0,0,1,4.33-10.45h0a8,8,0,0,1,10.45,4.33l6.13,14.78A8,8,0,0,1,331,437.08Zm63.58-42.49h0a8,8,0,0,1-11.31,0L372,383.28A8,8,0,0,1,372,372h0a8,8,0,0,1,11.31,0l11.31,11.31A8,8,0,0,1,394.59,394.59ZM286.25,286.25,110.34,401.66,225.75,225.75,401.66,110.34ZM437.08,331h0a8,8,0,0,1-10.45,4.33l-14.78-6.13a8,8,0,0,1-4.33-10.45h0A8,8,0,0,1,418,314.43l14.78,6.12A8,8,0,0,1,437.08,331ZM444,264H428a8,8,0,0,1-8-8h0a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8h0A8,8,0,0,1,444,264Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sailboat": { + "changes": [ + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dinghy", + "mast", + "sailboat", + "sailing", + "yacht" + ] + }, + "unicode": "e445", + "label": "Sailboat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M251 16c0-7 4.5-13.2 11.2-15.3s13.9 .4 17.9 6.1l224 320c3.4 4.9 3.8 11.3 1.1 16.6s-8.2 8.6-14.2 8.6H267c-8.8 0-16-7.2-16-16V16zM207.1 96.5c7 1.9 11.9 8.2 11.9 15.5V336c0 8.8-7.2 16-16 16H75c-5.7 0-11-3-13.8-8s-2.9-11-.1-16l128-224c3.6-6.3 11-9.4 18-7.5zM.7 404.3C-2.2 394.1 5.5 384 16.1 384H549.9c10.6 0 18.3 10.1 15.4 20.3l-4 14.3C545.7 473.9 495.4 512 438 512H128C70.6 512 20.3 473.9 4.7 418.7l-4-14.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "salesforce": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f83b", + "label": "Salesforce", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M248.89 245.64h-26.35c.69-5.16 3.32-14.12 13.64-14.12 6.75 0 11.97 3.82 12.71 14.12zm136.66-13.88c-.47 0-14.11-1.77-14.11 20s13.63 20 14.11 20c13 0 14.11-13.54 14.11-20 0-21.76-13.66-20-14.11-20zm-243.22 23.76a8.63 8.63 0 0 0-3.29 7.29c0 4.78 2.08 6.05 3.29 7.05 4.7 3.7 15.07 2.12 20.93.95v-16.94c-5.32-1.07-16.73-1.96-20.93 1.65zM640 232c0 87.58-80 154.39-165.36 136.43-18.37 33-70.73 70.75-132.2 41.63-41.16 96.05-177.89 92.18-213.81-5.17C8.91 428.78-50.19 266.52 53.36 205.61 18.61 126.18 76 32 167.67 32a124.24 124.24 0 0 1 98.56 48.7c20.7-21.4 49.4-34.81 81.15-34.81 42.34 0 79 23.52 98.8 58.57C539 63.78 640 132.69 640 232zm-519.55 31.8c0-11.76-11.69-15.17-17.87-17.17-5.27-2.11-13.41-3.51-13.41-8.94 0-9.46 17-6.66 25.17-2.12 0 0 1.17.71 1.64-.47.24-.7 2.36-6.58 2.59-7.29a1.13 1.13 0 0 0-.7-1.41c-12.33-7.63-40.7-8.51-40.7 12.7 0 12.46 11.49 15.44 17.88 17.17 4.72 1.58 13.17 3 13.17 8.7 0 4-3.53 7.06-9.17 7.06a31.76 31.76 0 0 1-19-6.35c-.47-.23-1.42-.71-1.65.71l-2.4 7.47c-.47.94.23 1.18.23 1.41 1.75 1.4 10.3 6.59 22.82 6.59 13.17 0 21.4-7.06 21.4-18.11zm32-42.58c-10.13 0-18.66 3.17-21.4 5.18a1 1 0 0 0-.24 1.41l2.59 7.06a1 1 0 0 0 1.18.7c.65 0 6.8-4 16.93-4 4 0 7.06.71 9.18 2.36 3.6 2.8 3.06 8.29 3.06 10.58-4.79-.3-19.11-3.44-29.41 3.76a16.92 16.92 0 0 0-7.34 14.54c0 5.9 1.51 10.4 6.59 14.35 12.24 8.16 36.28 2 38.1 1.41 1.58-.32 3.53-.66 3.53-1.88v-33.88c.04-4.61.32-21.64-22.78-21.64zM199 200.24a1.11 1.11 0 0 0-1.18-1.18H188a1.11 1.11 0 0 0-1.17 1.18v79a1.11 1.11 0 0 0 1.17 1.18h9.88a1.11 1.11 0 0 0 1.18-1.18zm55.75 28.93c-2.1-2.31-6.79-7.53-17.65-7.53-3.51 0-14.16.23-20.7 8.94-6.35 7.63-6.58 18.11-6.58 21.41 0 3.12.15 14.26 7.06 21.17 2.64 2.91 9.06 8.23 22.81 8.23 10.82 0 16.47-2.35 18.58-3.76.47-.24.71-.71.24-1.88l-2.35-6.83a1.26 1.26 0 0 0-1.41-.7c-2.59.94-6.35 2.82-15.29 2.82-17.42 0-16.85-14.74-16.94-16.7h37.17a1.23 1.23 0 0 0 1.17-.94c-.29 0 2.07-14.7-6.09-24.23zm36.69 52.69c13.17 0 21.41-7.06 21.41-18.11 0-11.76-11.7-15.17-17.88-17.17-4.14-1.66-13.41-3.38-13.41-8.94 0-3.76 3.29-6.35 8.47-6.35a38.11 38.11 0 0 1 16.7 4.23s1.18.71 1.65-.47c.23-.7 2.35-6.58 2.58-7.29a1.13 1.13 0 0 0-.7-1.41c-7.91-4.9-16.74-4.94-20.23-4.94-12 0-20.46 7.29-20.46 17.64 0 12.46 11.48 15.44 17.87 17.17 6.11 2 13.17 3.26 13.17 8.7 0 4-3.52 7.06-9.17 7.06a31.8 31.8 0 0 1-19-6.35 1 1 0 0 0-1.65.71l-2.35 7.52c-.47.94.23 1.18.23 1.41 1.72 1.4 10.33 6.59 22.79 6.59zM357.09 224c0-.71-.24-1.18-1.18-1.18h-11.76c0-.14.94-8.94 4.47-12.47 4.16-4.15 11.76-1.64 12-1.64 1.17.47 1.41 0 1.64-.47l2.83-7.77c.7-.94 0-1.17-.24-1.41-5.09-2-17.35-2.87-24.46 4.24-5.48 5.48-7 13.92-8 19.52h-8.47a1.28 1.28 0 0 0-1.17 1.18l-1.42 7.76c0 .7.24 1.17 1.18 1.17h8.23c-8.51 47.9-8.75 50.21-10.35 55.52-1.08 3.62-3.29 6.9-5.88 7.76-.09 0-3.88 1.68-9.64-.24 0 0-.94-.47-1.41.71-.24.71-2.59 6.82-2.83 7.53s0 1.41.47 1.41c5.11 2 13 1.77 17.88 0 6.28-2.28 9.72-7.89 11.53-12.94 2.75-7.71 2.81-9.79 11.76-59.74h12.23a1.29 1.29 0 0 0 1.18-1.18zm53.39 16c-.56-1.68-5.1-18.11-25.17-18.11-15.25 0-23 10-25.16 18.11-1 3-3.18 14 0 23.52.09.3 4.41 18.12 25.16 18.12 14.95 0 22.9-9.61 25.17-18.12 3.21-9.61 1.01-20.52 0-23.52zm45.4-16.7c-5-1.65-16.62-1.9-22.11 5.41v-4.47a1.11 1.11 0 0 0-1.18-1.17h-9.4a1.11 1.11 0 0 0-1.18 1.17v55.28a1.12 1.12 0 0 0 1.18 1.18h9.64a1.12 1.12 0 0 0 1.18-1.18v-27.77c0-2.91.05-11.37 4.46-15.05 4.9-4.9 12-3.36 13.41-3.06a1.57 1.57 0 0 0 1.41-.94 74 74 0 0 0 3.06-8 1.16 1.16 0 0 0-.47-1.41zm46.81 54.1l-2.12-7.29c-.47-1.18-1.41-.71-1.41-.71-4.23 1.82-10.15 1.89-11.29 1.89-4.64 0-17.17-1.13-17.17-19.76 0-6.23 1.85-19.76 16.47-19.76a34.85 34.85 0 0 1 11.52 1.65s.94.47 1.18-.71c.94-2.59 1.64-4.47 2.59-7.53.23-.94-.47-1.17-.71-1.17-11.59-3.87-22.34-2.53-27.76 0-1.59.74-16.23 6.49-16.23 27.52 0 2.9-.58 30.11 28.94 30.11a44.45 44.45 0 0 0 15.52-2.83 1.3 1.3 0 0 0 .47-1.42zm53.87-39.52c-.8-3-5.37-16.23-22.35-16.23-16 0-23.52 10.11-25.64 18.59a38.58 38.58 0 0 0-1.65 11.76c0 25.87 18.84 29.4 29.88 29.4 10.82 0 16.46-2.35 18.58-3.76.47-.24.71-.71.24-1.88l-2.36-6.83a1.26 1.26 0 0 0-1.41-.7c-2.59.94-6.35 2.82-15.29 2.82-17.42 0-16.85-14.74-16.93-16.7h37.16a1.25 1.25 0 0 0 1.18-.94c-.24-.01.94-7.07-1.41-15.54zm-23.29-6.35c-10.33 0-13 9-13.64 14.12H546c-.88-11.92-7.62-14.13-12.73-14.13z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sass": { + "changes": [ + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41e", + "label": "Sass", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M301.84 378.92c-.3.6-.6 1.08 0 0zm249.13-87a131.16 131.16 0 0 0-58 13.5c-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.3-6.7-24 2.5-25.29 5.9a122.83 122.83 0 0 0-5.3 19.1c-2.3 11.7-25.79 53.5-39.09 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.29-6.7-24 2.5-25.3 5.9-2.7 11.4-5.3 19.1-33.89 77.3-42.08 95.4c-4.2 9.2-7.8 16.6-10.4 21.6-.4.8-.7 1.3-.9 1.7.3-.5.5-1 .5-.8-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2s-1.4 2-1.4 2 10.1-42.4-19.39-42.4c-18.4 0-44 20.2-56.58 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.79-38.2-101.87-65.2-99.07-116.5 1-18.7 7.5-67.8 127.07-127.4 98-48.8 176.35-35.4 189.84-5.6 19.4 42.5-41.89 121.6-143.66 133-38.79 4.3-59.18-10.7-64.28-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.79 28.9 18.7 6.1 64.18 9.5 119.17-11.8 61.78-23.8 109.87-90.1 95.77-145.6C386.52 18.32 293-.18 204.57 31.22c-52.69 18.7-109.67 48.1-150.66 86.4-48.69 45.6-56.48 85.3-53.28 101.9 11.39 58.9 92.57 97.3 125.06 125.7-1.6.9-3.1 1.7-4.5 2.5-16.29 8.1-78.18 40.5-93.67 74.7-17.5 38.8 2.9 66.6 16.29 70.4 41.79 11.6 84.58-9.3 107.57-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.29-4.9 16.39-9.4 23.49-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.49 5 15.39 5 13.8 0 20-11.4 26.89-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.39 0 18.79-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.59-46 16.2-31.8 31.69-71.5 31.69-71.5a201.24 201.24 0 0 0 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2a.31.31 0 0 0 .1.2c-3 4-6.4 8.3-9.9 12.5-12.79 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.69 2.5 11.5-.8 19.6-3.6 23.5-5.4a82.2 82.2 0 0 0 20.19-10.6c12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5C434.8 301.72 450.1 270 450.1 270a201.24 201.24 0 0 0 6.2 25.8c2.4 8.1 7.09 17 11.39 25.7-18.59 15.1-30.09 32.6-34.09 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5a79.46 79.46 0 0 0 21.59-11.1c12.5-9.2 24.59-22.1 23.79-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.09-10.2 62.09-7.2 55.68 6.5 66.58 41.3 64.48 55.8s-13.8 22.6-17.7 25-5.1 3.3-4.8 5.1c.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.19-11.8 30.29-38.7 1.6-34-31.09-71.4-89-71.1zm-429.18 144.7c-18.39 20.1-44.19 27.7-55.28 21.3C54.61 451 59.31 421.42 82 400c13.8-13 31.59-25 43.39-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.29 30.4.3 57.2-19.1 78.3zm134.36-91.4c-6.4 15.7-19.89 55.7-28.09 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.09-11.3 21.19-14.9 23.79-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.89-13.9 0 .5.1 1 .1 1.6-.13 17.9-17.32 30-25.12 34.8zm85.58-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.59-15.3 19-24.5a36.18 36.18 0 0 1 1.9 10.8c-.1 22.5-16.2 30.9-25.89 34.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "satellite": { + "aliases": { + "unicodes": { + "composite": [ + "1f6f0" + ], + "secondary": [ + "10f7bf" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "communications", + "hardware", + "orbit", + "satellite", + "space" + ] + }, + "unicode": "f7bf", + "label": "Satellite", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M233 7c-9.4-9.4-24.6-9.4-33.9 0l-96 96c-9.4 9.4-9.4 24.6 0 33.9l89.4 89.4-15.5 15.5C152.3 230.4 124.9 224 96 224c-31.7 0-61.5 7.7-87.8 21.2c-9 4.7-10.3 16.7-3.1 23.8L112.7 376.7 96.3 393.1c-2.6-.7-5.4-1.1-8.3-1.1c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32c0-2.9-.4-5.6-1.1-8.3l16.4-16.4L242.9 506.9c7.2 7.2 19.2 5.9 23.8-3.1C280.3 477.5 288 447.7 288 416c0-28.9-6.4-56.3-17.8-80.9l15.5-15.5L375 409c9.4 9.4 24.6 9.4 33.9 0l96-96c9.4-9.4 9.4-24.6 0-33.9l-89.4-89.4 55-55c12.5-12.5 12.5-32.8 0-45.3l-48-48c-12.5-12.5-32.8-12.5-45.3 0l-55 55L233 7zm159 351l-72.4-72.4 62.1-62.1L454.1 296 392 358.1zM226.3 192.4L153.9 120 216 57.9l72.4 72.4-62.1 62.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "satellite-dish": { + "aliases": { + "unicodes": { + "composite": [ + "1f4e1" + ], + "secondary": [ + "10f7c0" + ] + } + }, + "changes": [ + "5.6.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "SETI", + "antenna", + "communications", + "dish", + "hardware", + "radar", + "receiver", + "satellite", + "satellite antenna", + "saucer", + "signal", + "space" + ] + }, + "unicode": "f7c0", + "label": "Satellite Dish", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 32c0-17.7 14.3-32 32-32C383.1 0 512 128.9 512 288c0 17.7-14.3 32-32 32s-32-14.3-32-32C448 164.3 347.7 64 224 64c-17.7 0-32-14.3-32-32zM60.6 220.6L164.7 324.7l28.4-28.4c-.7-2.6-1.1-5.4-1.1-8.3c0-17.7 14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32c-2.9 0-5.6-.4-8.3-1.1l-28.4 28.4L291.4 451.4c14.5 14.5 11.8 38.8-7.3 46.3C260.5 506.9 234.9 512 208 512C93.1 512 0 418.9 0 304c0-26.9 5.1-52.5 14.4-76.1c7.5-19 31.8-21.8 46.3-7.3zM224 96c106 0 192 86 192 192c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-70.7-57.3-128-128-128c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scale-balanced": { + "aliases": { + "names": [ + "balance-scale" + ], + "unicodes": { + "composite": [ + "2696" + ], + "secondary": [ + "10f24e" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Libra", + "balance", + "balance scale", + "balanced", + "justice", + "law", + "legal", + "measure", + "rule", + "scale", + "weight", + "zodiac" + ] + }, + "unicode": "f24e", + "label": "Scale Balanced", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M384 32H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H398.4c-5.2 25.8-22.9 47.1-46.4 57.3V448H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 128c-17.7 0-32-14.3-32-32s14.3-32 32-32H288V153.3c-23.5-10.3-41.2-31.6-46.4-57.3H128c-17.7 0-32-14.3-32-32s14.3-32 32-32H256c14.6-19.4 37.8-32 64-32s49.4 12.6 64 32zm55.6 288H584.4L512 195.8 439.6 320zM512 416c-62.9 0-115.2-34-126-78.9c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C627.2 382 574.9 416 512 416zM126.8 195.8L54.4 320H199.3L126.8 195.8zM.9 337.1c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C242 382 189.7 416 126.8 416S11.7 382 .9 337.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scale-unbalanced": { + "aliases": { + "names": [ + "balance-scale-left" + ], + "unicodes": { + "secondary": [ + "10f515" + ] + } + }, + "changes": [ + "5.0.13", + "5.9.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "justice", + "legal", + "measure", + "unbalanced", + "weight" + ] + }, + "unicode": "f515", + "label": "Scale Unbalanced", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M521.1 62.4c16.8-5.6 25.8-23.7 20.2-40.5S517.6-3.9 500.9 1.6l-113 37.7C374 15.8 348.3 0 319 0c-44.2 0-80 35.8-80 80c0 3 .2 5.9 .5 8.8L116.9 129.6c-16.8 5.6-25.8 23.7-20.2 40.5s23.7 25.8 40.5 20.2l135.5-45.2c4.5 3.2 9.3 5.9 14.4 8.2V480c0 17.7 14.3 32 32 32H511c17.7 0 32-14.3 32-32s-14.3-32-32-32H351V153.3c21-9.2 37.2-27 44.2-49l125.9-42zM438.6 288L511 163.8 583.4 288H438.6zM511 384c62.9 0 115.2-34 126-78.9c2.6-11-1-22.3-6.7-32.1L535.1 109.8c-5-8.6-14.2-13.8-24.1-13.8s-19.1 5.3-24.1 13.8L391.7 273.1c-5.7 9.8-9.3 21.1-6.7 32.1C395.8 350 448.1 384 511 384zM128.2 291.8L200.6 416H55.7l72.4-124.2zM2.2 433.1C13 478 65.3 512 128.2 512s115.2-34 126-78.9c2.6-11-1-22.3-6.7-32.1L152.2 237.8c-5-8.6-14.2-13.8-24.1-13.8s-19.1 5.3-24.1 13.8L8.9 401.1c-5.7 9.8-9.3 21.1-6.7 32.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scale-unbalanced-flip": { + "aliases": { + "names": [ + "balance-scale-right" + ], + "unicodes": { + "secondary": [ + "10f516" + ] + } + }, + "changes": [ + "5.0.13", + "5.9.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "justice", + "legal", + "measure", + "unbalanced", + "weight" + ] + }, + "unicode": "f516", + "label": "Scale Unbalanced Flip", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M116.9 62.4c-16.8-5.6-25.8-23.7-20.2-40.5s23.7-25.8 40.5-20.2l113 37.7C264 15.8 289.7 0 319 0c44.2 0 80 35.8 80 80c0 3-.2 5.9-.5 8.8l122.6 40.9c16.8 5.6 25.8 23.7 20.2 40.5s-23.7 25.8-40.5 20.2L365.4 145.2c-4.5 3.2-9.3 5.9-14.4 8.2V480c0 17.7-14.3 32-32 32H127c-17.7 0-32-14.3-32-32s14.3-32 32-32H287V153.3c-21-9.2-37.2-27-44.2-49l-125.9-42zM199.4 288L127 163.8 54.6 288H199.4zM127 384C64.1 384 11.8 350 1 305.1c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C242.2 350 189.9 384 127 384zm382.8-92.2L437.4 416H582.3L509.8 291.8zm126 141.3C625 478 572.7 512 509.8 512s-115.2-34-126-78.9c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "schlix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ea", + "label": "SCHLIX", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "school": { + "aliases": { + "unicodes": { + "composite": [ + "1f3eb" + ], + "secondary": [ + "10f549" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "education", + "learn", + "school", + "student", + "teacher" + ] + }, + "unicode": "f549", + "label": "School", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H592c26.5 0 48-21.5 48-48V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM256 416c0-35.3 28.7-64 64-64s64 28.7 64 64v96H256V416zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm400 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H512c-8.8 0-16-7.2-16-16V208zM96 320h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm400 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H512c-8.8 0-16-7.2-16-16V336zM232 176a88 88 0 1 1 176 0 88 88 0 1 1 -176 0zm88-48c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "school-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "not affected", + "ok", + "okay", + "schoolhouse" + ] + }, + "unicode": "e56b", + "label": "School Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H320v0H256V416c0-35.3 28.7-64 64-64l.3 0h.5c3.4-37.7 18.7-72.1 42.2-99.1C350.2 260 335.6 264 320 264c-48.6 0-88-39.4-88-88s39.4-88 88-88s88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4c29-21 64.6-33.4 103.1-33.4c59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM320 128c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-99.3-43.3c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "school-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "schoolhouse" + ] + }, + "unicode": "e56c", + "label": "School Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H320v0H256V416c0-35.3 28.7-64 64-64l.3 0h.5c3.4-37.7 18.7-72.1 42.2-99.1C350.2 260 335.6 264 320 264c-48.6 0-88-39.4-88-88s39.4-88 88-88s88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4c29-21 64.6-33.4 103.1-33.4c59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM320 128c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "school-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destroy", + "schoolhouse" + ] + }, + "unicode": "e56d", + "label": "School Circle Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H320v0H256V416c0-35.3 28.7-64 64-64l.3 0h.5c3.4-37.7 18.7-72.1 42.2-99.1C350.2 260 335.6 264 320 264c-48.6 0-88-39.4-88-88s39.4-88 88-88s88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4c29-21 64.6-33.4 103.1-33.4c59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM320 128c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm22.6-144l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L518.6 368z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "school-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "educate", + "flag", + "school", + "schoolhouse" + ] + }, + "unicode": "e56e", + "label": "School Flag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 0H400c8.8 0 16 7.2 16 16V80c0 8.8-7.2 16-16 16H320.7l89.6 64H512c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H336V400c0-26.5-21.5-48-48-48s-48 21.5-48 48V512H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64H165.7L256 95.5V32c0-17.7 14.3-32 32-32zm48 240a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM80 224c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm368 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H464c-8.8 0-16 7.2-16 16zM80 352c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H80zm384 0c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H464z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "school-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "lockdown", + "quarantine", + "schoolhouse" + ] + }, + "unicode": "e56f", + "label": "School Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M302.2 5.4c10.7-7.2 24.8-7.2 35.5 0L473.7 96H592c26.5 0 48 21.5 48 48V272c0-61.9-50.1-112-112-112s-112 50.1-112 112v24.6c-19.1 11.1-32 31.7-32 55.4H320.3l-.3 0c-35.3 0-64 28.7-64 64v96h64v0H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48H166.3L302.2 5.4zM80 208v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zm0 128v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-8.8-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zm240-72a88 88 0 1 0 0-176 88 88 0 1 0 0 176zm16-120v16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H320c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16s16 7.2 16 16zm192 96c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scissors": { + "aliases": { + "names": [ + "cut" + ], + "unicodes": { + "composite": [ + "2700", + "2702", + "2704" + ], + "secondary": [ + "10f0c4" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Safety Scissors", + "White Scissors", + "clip", + "cutting", + "scissors", + "snip", + "tool" + ] + }, + "unicode": "f0c4", + "label": "Scissors", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 192l-39.5-39.5c4.9-12.6 7.5-26.2 7.5-40.5C224 50.1 173.9 0 112 0S0 50.1 0 112s50.1 112 112 112c14.3 0 27.9-2.7 40.5-7.5L192 256l-39.5 39.5c-12.6-4.9-26.2-7.5-40.5-7.5C50.1 288 0 338.1 0 400s50.1 112 112 112s112-50.1 112-112c0-14.3-2.7-27.9-7.5-40.5L499.2 76.8c7.1-7.1 7.1-18.5 0-25.6c-28.3-28.3-74.1-28.3-102.4 0L256 192zm22.6 150.6L396.8 460.8c28.3 28.3 74.1 28.3 102.4 0c7.1-7.1 7.1-18.5 0-25.6L342.6 278.6l-64 64zM64 112a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm48 240a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "screenpal": { + "changes": [ + "6.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e570", + "label": "Screenpal", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M233.5 22.49C233.5 10.07 243.6 0 256 0C268.4 0 278.5 10.07 278.5 22.49C278.5 34.91 268.4 44.98 256 44.98C243.6 44.98 233.5 34.91 233.5 22.49zM313.4 259C313.4 290.7 287.7 316.4 256 316.4C224.3 316.4 198.6 290.7 198.6 259C198.6 227.3 224.3 201.6 256 201.6C287.7 201.6 313.4 227.3 313.4 259zM337.2 350C359.5 330.1 373.7 302.7 377.1 273H496.6C493.1 334.4 466.2 392.2 421.4 434.4C376.7 476.6 317.5 500.2 256 500.2C194.5 500.2 135.3 476.6 90.56 434.4C45.83 392.2 18.94 334.4 15.39 273H135.1C138.5 302.7 152.7 330.1 175 350C197.3 369.9 226.2 380.9 256.1 380.9C285.1 380.9 314.8 369.9 337.2 350zM73.14 140.3C73.54 152.7 63.81 163.1 51.39 163.5C38.97 163.9 28.59 154.2 28.18 141.8C27.78 129.3 37.52 118.9 49.94 118.5C62.35 118.1 72.74 127.9 73.14 140.3zM438.9 141C438.9 128.6 448.9 118.5 461.4 118.5C473.8 118.5 483.8 128.6 483.8 141C483.8 153.5 473.8 163.5 461.4 163.5C448.9 163.5 438.9 153.5 438.9 141zM317.9 95.27C300.6 109.1 278.7 118.1 256 118.1C233.3 118.1 211.4 109.1 194.1 95.27C176.8 80.55 165.3 60.18 161.7 37.78C176.8 31.37 192.5 26.52 208.6 23.31C208.6 35.88 213.6 47.93 222.5 56.82C231.4 65.7 243.4 70.7 256 70.7C268.6 70.7 280.6 65.7 289.5 56.82C298.4 47.93 303.4 35.88 303.4 23.31C319.5 26.52 335.2 31.37 350.3 37.78C346.7 60.18 335.2 80.55 317.9 95.27H317.9zM82.78 231C61.42 238.6 38.06 238.4 16.86 230.4C18.82 214.1 22.46 198.1 27.71 182.5C33.1 185.6 39.05 187.6 45.22 188.5C51.39 189.3 57.67 188.9 63.68 187.3C69.69 185.6 75.33 182.9 80.27 179.1C85.21 175.3 89.36 170.6 92.47 165.2C95.58 159.8 97.61 153.8 98.42 147.7C99.23 141.5 98.83 135.2 97.22 129.2C95.61 123.2 92.83 117.6 89.04 112.6C85.25 107.7 80.53 103.5 75.14 100.4C85.96 88.11 98.01 76.94 111.1 67.07C128.7 81.42 140.6 101.6 144.7 123.9C148.8 146.2 144.8 169.3 133.5 188.9C122.1 208.5 104.1 223.4 82.78 231V231zM429.2 231.1C407.9 223.5 389.9 208.5 378.5 188.9C367.2 169.3 363.3 146.2 367.4 123.9C371.5 101.7 383.4 81.54 400.9 67.19C414 77.04 426.1 88.21 436.9 100.5C426.2 106.9 418.5 117.2 415.4 129.3C412.2 141.3 413.1 154.1 420.2 164.9C426.4 175.7 436.6 183.6 448.6 186.9C460.6 190.2 473.5 188.6 484.3 182.6C489.6 198.1 493.2 214.2 495.2 230.4C473.1 238.5 450.6 238.7 429.2 231.1L429.2 231.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "screwdriver": { + "aliases": { + "unicodes": { + "composite": [ + "1fa9b" + ], + "secondary": [ + "10f54a" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "fix", + "mechanic", + "repair", + "screw", + "screwdriver", + "settings", + "tool" + ] + }, + "unicode": "f54a", + "label": "Screwdriver", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M465 7c-8.5-8.5-22-9.4-31.6-2.1l-104 80c-5.9 4.5-9.4 11.6-9.4 19v54.1l-85.6 85.6c6.7 4.2 13 9.3 18.8 15.1s10.9 12.2 15.1 18.8L353.9 192H408c7.5 0 14.5-3.5 19-9.4l80-104c7.4-9.6 6.5-23.1-2.1-31.6L465 7zM121.4 281.4l-112 112c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0l112-112c30.2-30.2 30.2-79.1 0-109.3s-79.1-30.2-109.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "screwdriver-wrench": { + "aliases": { + "names": [ + "tools" + ], + "unicodes": { + "secondary": [ + "10f7d9" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "fix", + "repair", + "screwdriver", + "settings", + "tools", + "wrench" + ] + }, + "unicode": "f7d9", + "label": "Screwdriver Wrench", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M78.6 5C69.1-2.4 55.6-1.5 47 7L7 47c-8.5 8.5-9.4 22-2.1 31.6l80 104c4.5 5.9 11.6 9.4 19 9.4h54.1l109 109c-14.7 29-10 65.4 14.3 89.6l112 112c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-112-112c-24.2-24.2-60.6-29-89.6-14.3l-109-109V104c0-7.5-3.5-14.5-9.4-19L78.6 5zM19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L233.7 374.3c-7.8-20.9-9-43.6-3.6-65.1l-61.7-61.7L19.9 396.1zM512 144c0-10.5-1.1-20.7-3.2-30.5c-2.4-11.2-16.1-14.1-24.2-6l-63.9 63.9c-3 3-7.1 4.7-11.3 4.7H352c-8.8 0-16-7.2-16-16V102.6c0-4.2 1.7-8.3 4.7-11.3l63.9-63.9c8.1-8.1 5.2-21.8-6-24.2C388.7 1.1 378.5 0 368 0C288.5 0 224 64.5 224 144l0 .8 85.3 85.3c36-9.1 75.8 .5 104 28.7L429 274.5c49-23 83-72.8 83-130.5zM56 432a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scribd": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f28a", + "label": "Scribd", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "scroll": { + "aliases": { + "unicodes": { + "composite": [ + "1f4dc" + ], + "secondary": [ + "10f70e" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "announcement", + "d&d", + "dnd", + "fantasy", + "paper", + "script", + "scroll" + ] + }, + "unicode": "f70e", + "label": "Scroll", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 80v48c0 17.7 14.3 32 32 32H48 96V80c0-26.5-21.5-48-48-48S0 53.5 0 80zM112 32c10 13.4 16 30 16 48V384c0 35.3 28.7 64 64 64s64-28.7 64-64v-5.3c0-32.4 26.3-58.7 58.7-58.7H480V128c0-53-43-96-96-96H112zM464 480c61.9 0 112-50.1 112-112c0-8.8-7.2-16-16-16H314.7c-14.7 0-26.7 11.9-26.7 26.7V384c0 53-43 96-96 96H368h96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "scroll-torah": { + "aliases": { + "names": [ + "torah" + ], + "unicodes": { + "secondary": [ + "10f6a0" + ] + } + }, + "changes": [ + "5.3.0", + "5.7.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "jewish", + "judaism", + "religion", + "scroll" + ] + }, + "unicode": "f6a0", + "label": "Scroll Torah", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 480V32C96 14.3 74.5 0 48 0S0 14.3 0 32V480c0 17.7 21.5 32 48 32s48-14.3 48-32zM512 32H128V480H512V32zM592 0c-26.5 0-48 14.3-48 32V480c0 17.7 21.5 32 48 32s48-14.3 48-32V32c0-17.7-21.5-32-48-32zM196 313.7c0-3.2 .9-6.4 2.5-9.2L226.7 256l-28.3-48.5c-1.6-2.8-2.5-6-2.5-9.2c0-10.1 8.2-18.3 18.3-18.3H271l31.4-53.9c3.6-6.3 10.3-10.1 17.6-10.1s13.9 3.8 17.6 10.1L369 180h56.7c10.1 0 18.3 8.2 18.3 18.3c0 3.2-.9 6.4-2.5 9.2L413.3 256l28.3 48.5c1.6 2.8 2.5 6 2.5 9.2c0 10.1-8.2 18.3-18.3 18.3H369l-31.4 53.9c-3.6 6.3-10.3 10.1-17.6 10.1s-13.9-3.8-17.6-10.1L271 332H214.3c-10.1 0-18.3-8.2-18.3-18.3zm124 54.7L341.2 332H298.8L320 368.4zM254.5 256l30.3 52h70.4l30.3-52-30.3-52H284.8l-30.3 52zm144.9 23.8L383 308h32.8l-16.4-28.2zM415.8 204H383l16.4 28.2L415.8 204zM320 143.6L298.8 180h42.4L320 143.6zM224.2 204l16.4 28.2L257 204H224.2zM257 308l-16.4-28.2L224.2 308H257z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sd-card": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7c2" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "image", + "memory", + "photo", + "save" + ] + }, + "unicode": "f7c2", + "label": "Sd Card", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 0H141.3C124.3 0 108 6.7 96 18.7L18.7 96C6.7 108 0 124.3 0 141.3V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zM160 88v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24zm80 0v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24zm80 0v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "searchengin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3eb", + "label": "Searchengin", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 460, + 512 + ], + "width": 460, + "height": 512, + "path": "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "section": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Section Sign", + "law", + "legal", + "silcrow" + ] + }, + "unicode": "e447", + "label": "Section", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M64.9 96C67.1 84.4 73.7 76.2 86 70.6c13.8-6.2 34.8-8.9 61.2-4.5c8.8 1.4 36.1 7.1 44.1 9.3c17 4.8 34.7-5.1 39.5-22.2s-5.1-34.7-22.2-39.5c-11.1-3.1-41-9.2-50.9-10.8C123-2.7 88.3-.6 59.7 12.3C29.9 25.8 7.5 50.9 1.6 86.5c-.1 .5-.2 1.1-.2 1.6c-2.2 19.7 .3 37.9 8.1 54.1c7.7 16.1 19.4 28 32 36.9c.6 .5 1.3 .9 2 1.4C22.3 194.2 6.5 215.1 1.7 243c-.1 .6-.2 1.1-.2 1.7c-2.3 19.3 .4 37.1 8.4 53c7.9 15.6 19.8 27 32.3 35.5c22.4 15.2 51.9 24 75.4 31l0 0 3.7 1.1c27.2 8.2 46.9 14.6 59.4 23.8c5.5 4 8.2 7.6 9.5 10.9c1.3 3.2 2.6 8.6 .9 18.1c-1.7 10.1-7.7 18-20.7 23.5c-14 6-35.4 8.5-62 4.4c-12.8-2.1-35.1-9.7-54.1-16.2l0 0c-4.3-1.5-8.5-2.9-12.3-4.2C25.3 420 7.2 429.1 1.6 445.8s3.5 34.9 20.3 40.5c2.6 .8 5.7 1.9 9.2 3.1c18.6 6.3 48.5 16.6 67.3 19.6l0 0 .2 0c34.5 5.4 68.8 3.4 97.2-8.7c29.4-12.6 52.5-36.5 58.5-71.5c3.3-19.3 1.9-37.4-5-53.9c-6.3-15-16.4-26.4-27.6-35.2c16.5-13.9 28.5-33.2 32.6-58.2c3.2-19.8 1.9-38.3-4.8-55.1c-6.7-16.8-17.8-29.4-30.2-39c-22.8-17.6-53.6-27.4-77.7-35l-1.4-.5c-27.4-8.7-47.8-15.3-61.5-25c-6.1-4.4-9.5-8.5-11.4-12.4c-1.8-3.7-3.2-9.3-2.3-18.5zm76.7 208.5c-.2-.1-.4-.1-.6-.2l-1.4-.4c-27.4-8.2-47.9-14.5-61.7-23.8c-6.2-4.2-9.3-7.9-11-11.3c-1.5-3-2.9-7.7-2.1-15.7c1.9-9.7 7.9-17.3 20.5-22.7c14-6 35.4-8.5 62.1-4.3l16.4 2.6c6.3 2.9 11.7 6 16.2 9.5c5.5 4.2 8.4 8.2 10 12.2c1.6 4 2.8 10.4 1.1 20.9c-2.4 14.7-12.8 26.4-37.1 31l-12.4 2.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "seedling": { + "aliases": { + "names": [ + "sprout" + ], + "unicodes": { + "composite": [ + "1f331" + ], + "secondary": [ + "10f4d8" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "environment", + "flora", + "grow", + "plant", + "sapling", + "seedling", + "vegan", + "young" + ] + }, + "unicode": "f4d8", + "label": "Seedling", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 32c0 113.6-84.6 207.5-194.2 222c-7.1-53.4-30.6-101.6-65.3-139.3C290.8 46.3 364 0 448 0h32c17.7 0 32 14.3 32 32zM0 96C0 78.3 14.3 64 32 64H64c123.7 0 224 100.3 224 224v32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V320C100.3 320 0 219.7 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sellcast": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eercast" + ] + }, + "unicode": "f2da", + "label": "Sellcast", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sellsy": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f213", + "label": "Sellsy", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "server": { + "aliases": { + "unicodes": { + "secondary": [ + "10f233" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "database", + "hardware", + "network" + ] + }, + "unicode": "f233", + "label": "Server", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm48 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM64 288c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V352c0-35.3-28.7-64-64-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm56 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "servicestack": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ec", + "label": "Servicestack", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "shapes": { + "aliases": { + "names": [ + "triangle-circle-square" + ], + "unicodes": { + "secondary": [ + "10f61f" + ] + } + }, + "changes": [ + "5.2.0", + "5.12.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "build", + "circle", + "square", + "triangle" + ] + }, + "unicode": "f61f", + "label": "Shapes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M315.4 15.5C309.7 5.9 299.2 0 288 0s-21.7 5.9-27.4 15.5l-96 160c-5.9 9.9-6.1 22.2-.4 32.2s16.3 16.2 27.8 16.2H384c11.5 0 22.2-6.2 27.8-16.2s5.5-22.3-.4-32.2l-96-160zM288 312V456c0 22.1 17.9 40 40 40H472c22.1 0 40-17.9 40-40V312c0-22.1-17.9-40-40-40H328c-22.1 0-40 17.9-40 40zM128 512a128 128 0 1 0 0-256 128 128 0 1 0 0 256z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "share": { + "aliases": { + "names": [ + "arrow-turn-right", + "mail-forward" + ], + "unicodes": { + "secondary": [ + "10f064" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "unicode": "f064", + "label": "Share", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M307 34.8c-11.5 5.1-19 16.6-19 29.2v64H176C78.8 128 0 206.8 0 304C0 417.3 81.5 467.9 100.2 478.1c2.5 1.4 5.3 1.9 8.1 1.9c10.9 0 19.7-8.9 19.7-19.7c0-7.5-4.3-14.4-9.8-19.5C108.8 431.9 96 414.4 96 384c0-53 43-96 96-96h96v64c0 12.6 7.4 24.1 19 29.2s25 3 34.4-5.4l160-144c6.7-6.1 10.6-14.7 10.6-23.8s-3.8-17.7-10.6-23.8l-160-144c-9.4-8.5-22.9-10.6-34.4-5.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "share-from-square": { + "aliases": { + "names": [ + "share-square" + ], + "unicodes": { + "composite": [ + "f045" + ], + "secondary": [ + "10f14d" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "unicode": "f14d", + "label": "Share From Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M352 224H305.5c-45 0-81.5 36.5-81.5 81.5c0 22.3 10.3 34.3 19.2 40.5c6.8 4.7 12.8 12 12.8 20.3c0 9.8-8 17.8-17.8 17.8h-2.5c-2.4 0-4.8-.4-7.1-1.4C210.8 374.8 128 333.4 128 240c0-79.5 64.5-144 144-144h80V34.7C352 15.5 367.5 0 386.7 0c8.6 0 16.8 3.2 23.2 8.9L548.1 133.3c7.6 6.8 11.9 16.5 11.9 26.7s-4.3 19.9-11.9 26.7l-139 125.1c-5.9 5.3-13.5 8.2-21.4 8.2H384c-17.7 0-32-14.3-32-32V224zM80 96c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16H400c8.8 0 16-7.2 16-16V384c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 44.2-35.8 80-80 80H80c-44.2 0-80-35.8-80-80V112C0 67.8 35.8 32 80 32h48c17.7 0 32 14.3 32 32s-14.3 32-32 32H80z" + }, + "regular": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M400 255.4V240 208c0-8.8-7.2-16-16-16H352 336 289.5c-50.9 0-93.9 33.5-108.3 79.6c-3.3-9.4-5.2-19.8-5.2-31.6c0-61.9 50.1-112 112-112h48 16 32c8.8 0 16-7.2 16-16V80 64.6L506 160 400 255.4zM336 240h16v48c0 17.7 14.3 32 32 32h3.7c7.9 0 15.5-2.9 21.4-8.2l139-125.1c7.6-6.8 11.9-16.5 11.9-26.7s-4.3-19.9-11.9-26.7L409.9 8.9C403.5 3.2 395.3 0 386.7 0C367.5 0 352 15.5 352 34.7V80H336 304 288c-88.4 0-160 71.6-160 160c0 60.4 34.6 99.1 63.9 120.9c5.9 4.4 11.5 8.1 16.7 11.2c4.4 2.7 8.5 4.9 11.9 6.6c3.4 1.7 6.2 3 8.2 3.9c2.2 1 4.6 1.4 7.1 1.4h2.5c9.8 0 17.8-8 17.8-17.8c0-7.8-5.3-14.7-11.6-19.5l0 0c-.4-.3-.7-.5-1.1-.8c-1.7-1.1-3.4-2.5-5-4.1c-.8-.8-1.7-1.6-2.5-2.6s-1.6-1.9-2.4-2.9c-1.8-2.5-3.5-5.3-5-8.5c-2.6-6-4.3-13.3-4.3-22.4c0-36.1 29.3-65.5 65.5-65.5H304h32zM72 32C32.2 32 0 64.2 0 104V440c0 39.8 32.2 72 72 72H408c39.8 0 72-32.2 72-72V376c0-13.3-10.7-24-24-24s-24 10.7-24 24v64c0 13.3-10.7 24-24 24H72c-13.3 0-24-10.7-24-24V104c0-13.3 10.7-24 24-24h64c13.3 0 24-10.7 24-24s-10.7-24-24-24H72z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "share-nodes": { + "aliases": { + "names": [ + "share-alt" + ], + "unicodes": { + "secondary": [ + "10f1e0" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "unicode": "f1e0", + "label": "Share Nodes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321862, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 224c53 0 96-43 96-96s-43-96-96-96s-96 43-96 96c0 4 .2 8 .7 11.9l-94.1 47C145.4 170.2 121.9 160 96 160c-53 0-96 43-96 96s43 96 96 96c25.9 0 49.4-10.2 66.6-26.9l94.1 47c-.5 3.9-.7 7.8-.7 11.9c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-25.9 0-49.4 10.2-66.6 26.9l-94.1-47c.5-3.9 .7-7.8 .7-11.9s-.2-8-.7-11.9l94.1-47C302.6 213.8 326.1 224 352 224z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sheet-plastic": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "plastic", + "plastic wrap", + "protect", + "tarp", + "tarpaulin", + "waterproof" + ] + }, + "unicode": "e571", + "label": "Sheet Plastic", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 448c0 35.3 28.7 64 64 64H224V384c0-17.7 14.3-32 32-32H384V64c0-35.3-28.7-64-64-64H64C28.7 0 0 28.7 0 64V448zM171.3 75.3l-96 96c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l96-96c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6zm96 32l-160 160c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l160-160c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6zM384 384H256V512L384 384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shekel-sign": { + "aliases": { + "names": [ + "ils", + "shekel", + "sheqel", + "sheqel-sign" + ], + "unicodes": { + "composite": [ + "20aa" + ], + "secondary": [ + "10f20b" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "New Sheqel Sign", + "currency", + "ils", + "money" + ] + }, + "unicode": "f20b", + "label": "Shekel Sign", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V96H192c35.3 0 64 28.7 64 64V320c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-70.7-57.3-128-128-128H32zM320 480c70.7 0 128-57.3 128-128V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V352c0 35.3-28.7 64-64 64H192V192c0-17.7-14.3-32-32-32s-32 14.3-32 32V448c0 17.7 14.3 32 32 32H320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield": { + "aliases": { + "names": [ + "shield-blank" + ], + "unicodes": { + "composite": [ + "1f6e1" + ], + "secondary": [ + "10f132" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "armor", + "award", + "block", + "cleric", + "defend", + "defense", + "holy", + "paladin", + "protect", + "safety", + "security", + "shield", + "weapon", + "winner" + ] + }, + "unicode": "f132", + "label": "Shield", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M240 0c4.6 0 9.2 1 13.4 2.9L441.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.6 363.2c-16.7 8-36.1 8-52.8 0C41.3 420.7 .5 239.2 0 140c-.1-26.2 16.3-47.9 38.3-57.2L226.7 2.9C230.8 1 235.4 0 240 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield-cat": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "feline", + "pet", + "protect", + "safety", + "veterinary" + ] + }, + "unicode": "e572", + "label": "Shield Cat", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M253.4 2.9C249.2 1 244.7 0 240 0s-9.2 1-13.4 2.9L38.3 82.8C16.3 92.1-.1 113.8 0 140c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C438.7 420.7 479.5 239.2 480 140c.1-26.2-16.3-47.9-38.3-57.2L253.4 2.9zM144 154.4c0-5.8 4.7-10.4 10.4-10.4h.2c3.4 0 6.5 1.6 8.5 4.3l40 53.3c3 4 7.8 6.4 12.8 6.4h48c5 0 9.8-2.4 12.8-6.4l40-53.3c2-2.7 5.2-4.3 8.5-4.3h.2c5.8 0 10.4 4.7 10.4 10.4V272c0 53-43 96-96 96s-96-43-96-96V154.4zM200 288a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm96-16a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield-dog": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "canine", + "pet", + "protect", + "safety", + "veterinary" + ] + }, + "unicode": "e573", + "label": "Shield Dog", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M253.4 2.9C249.2 1 244.7 0 240 0s-9.2 1-13.4 2.9L38.3 82.8C16.3 92.1-.1 113.8 0 140c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C438.7 420.7 479.5 239.2 480 140c.1-26.2-16.3-47.9-38.3-57.2L253.4 2.9zM144.9 286.2c4.8 1.2 9.9 1.8 15.1 1.8c35.3 0 64-28.7 64-64V160h44.2c12.1 0 23.2 6.8 28.6 17.7L304 192h64c8.8 0 16 7.2 16 16v32c0 44.2-35.8 80-80 80H256v50.7c0 7.3-5.9 13.3-13.3 13.3c-1.8 0-3.6-.4-5.2-1.1l-98.7-42.3c-6.6-2.8-10.8-9.3-10.8-16.4c0-2.8 .6-5.5 1.9-8l15-30zM144 160h40 8v32 32c0 17.7-14.3 32-32 32s-32-14.3-32-32V176c0-8.8 7.2-16 16-16zm128 48a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield-halved": { + "aliases": { + "names": [ + "shield-alt" + ], + "unicodes": { + "secondary": [ + "10f3ed" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "armor", + "award", + "block", + "cleric", + "defend", + "defense", + "holy", + "paladin", + "security", + "shield", + "weapon", + "winner" + ] + }, + "unicode": "f3ed", + "label": "Shield Halved", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M240 0c4.6 0 9.2 1 13.4 2.9L441.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.7 363.2c-16.7 8-36.1 8-52.8 0C41.3 420.7 .5 239.2 0 140c-.1-26.2 16.3-47.9 38.3-57.2L226.7 2.9C230.8 1 235.4 0 240 0zm0 66.8V444.8C378 378 415.1 230.1 416 141.4L240 66.8l0 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield-heart": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "love", + "protect", + "safe", + "safety", + "shield" + ] + }, + "unicode": "e574", + "label": "Shield Heart", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M253.4 2.9C249.2 1 244.7 0 240 0s-9.2 1-13.4 2.9L38.3 82.8C16.3 92.1-.1 113.8 0 140c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C438.7 420.7 479.5 239.2 480 140c.1-26.2-16.3-47.9-38.3-57.2L253.4 2.9zM128 221.3c0-33.8 27.4-61.3 61.3-61.3c16.2 0 31.8 6.5 43.3 17.9l7.4 7.4 7.4-7.4c11.5-11.5 27.1-17.9 43.3-17.9c33.8 0 61.3 27.4 61.3 61.3c0 16.2-6.5 31.8-17.9 43.3l-82.7 82.7c-6.2 6.2-16.4 6.2-22.6 0l-82.7-82.7c-11.5-11.5-17.9-27.1-17.9-43.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shield-virus": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06c" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antibodies", + "barrier", + "coronavirus", + "covid-19", + "flu", + "health", + "infection", + "pandemic", + "protect", + "safety", + "vaccine" + ] + }, + "unicode": "e06c", + "label": "Shield Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M253.4 2.9C249.2 1 244.7 0 240 0s-9.2 1-13.4 2.9L38.3 82.8C16.3 92.1-.1 113.8 0 140c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C438.7 420.7 479.5 239.2 480 140c.1-26.2-16.3-47.9-38.3-57.2L253.4 2.9zM240 112c8.8 0 16 7.2 16 16c0 33 39.9 49.5 63.2 26.2c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C318.5 200.1 335 240 368 240c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0C295.9 334.5 256 351 256 384c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C161.5 311.9 145 272 112 272c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C184.1 177.5 224 161 224 128c0-8.8 7.2-16 16-16zM216 256a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm72 32a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ship": { + "aliases": { + "unicodes": { + "composite": [ + "1f6a2" + ], + "secondary": [ + "10f21a" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.10.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boat", + "passenger", + "sea", + "ship", + "water" + ] + }, + "unicode": "f21a", + "label": "Ship", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M192 32c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32V64h48c26.5 0 48 21.5 48 48V240l44.4 14.8c23.1 7.7 29.5 37.5 11.5 53.9l-101 92.6c-16.2 9.4-34.7 15.1-50.9 15.1c-19.6 0-40.8-7.7-59.2-20.3c-22.1-15.5-51.6-15.5-73.7 0c-17.1 11.8-38 20.3-59.2 20.3c-16.2 0-34.7-5.7-50.9-15.1l-101-92.6c-18-16.5-11.6-46.2 11.5-53.9L96 240V112c0-26.5 21.5-48 48-48h48V32zM160 218.7l107.8-35.9c13.1-4.4 27.3-4.4 40.5 0L416 218.7V128H160v90.7zM306.5 421.9C329 437.4 356.5 448 384 448c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 501.7 417 512 384 512c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 437.2 165.1 448 192 448c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shirt": { + "aliases": { + "names": [ + "t-shirt", + "tshirt" + ], + "unicodes": { + "composite": [ + "1f455" + ], + "secondary": [ + "10f553" + ] + } + }, + "changes": [ + "5.0.13", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing", + "fashion", + "garment", + "shirt", + "short sleeve", + "t-shirt", + "tshirt" + ] + }, + "unicode": "f553", + "label": "Shirt", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321863, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M211.8 0c7.8 0 14.3 5.7 16.7 13.2C240.8 51.9 277.1 80 320 80s79.2-28.1 91.5-66.8C413.9 5.7 420.4 0 428.2 0h12.6c22.5 0 44.2 7.9 61.5 22.3L628.5 127.4c6.6 5.5 10.7 13.5 11.4 22.1s-2.1 17.1-7.8 23.6l-56 64c-11.4 13.1-31.2 14.6-44.6 3.5L480 197.7V448c0 35.3-28.7 64-64 64H224c-35.3 0-64-28.7-64-64V197.7l-51.5 42.9c-13.3 11.1-33.1 9.6-44.6-3.5l-56-64c-5.7-6.5-8.5-15-7.8-23.6s4.8-16.6 11.4-22.1L137.7 22.3C155 7.9 176.7 0 199.2 0h12.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shirtsinbulk": { + "changes": [ + "4.3.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f214", + "label": "Shirts in Bulk", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M100 410.3l30.6 13.4 4.4-9.9-30.6-13.4zm39.4 17.5l30.6 13.4 4.4-9.9-30.6-13.4zm172.1-14l4.4 9.9 30.6-13.4-4.4-9.9zM179.1 445l30.3 13.7 4.4-9.9-30.3-13.4zM60.4 392.8L91 406.2l4.4-9.6-30.6-13.7zm211.4 38.5l4.4 9.9 30.6-13.4-4.4-9.9zm-39.3 17.5l4.4 9.9 30.6-13.7-4.4-9.6zm118.4-52.2l4.4 9.6 30.6-13.4-4.4-9.9zM170 46.6h-33.5v10.5H170zm-47.2 0H89.2v10.5h33.5zm-47.3 0H42.3v10.5h33.3zm141.5 0h-33.2v10.5H217zm94.5 0H278v10.5h33.5zm47.3 0h-33.5v10.5h33.5zm-94.6 0H231v10.5h33.2zm141.5 0h-33.3v10.5h33.3zM52.8 351.1H42v33.5h10.8zm70-215.9H89.2v10.5h33.5zm-70 10.6h22.8v-10.5H42v33.5h10.8zm168.9 228.6c50.5 0 91.3-40.8 91.3-91.3 0-50.2-40.8-91.3-91.3-91.3-50.2 0-91.3 41.1-91.3 91.3 0 50.5 41.1 91.3 91.3 91.3zm-48.2-111.1c0-25.4 29.5-31.8 49.6-31.8 16.9 0 29.2 5.8 44.3 12l-8.8 16.9h-.9c-6.4-9.9-24.8-13.1-35.6-13.1-9 0-29.8 1.8-29.8 14.9 0 21.6 78.5-10.2 78.5 37.9 0 25.4-31.5 31.2-51 31.2-18.1 0-32.4-2.9-47.2-12.2l9-18.4h.9c6.1 12.2 23.6 14.9 35.9 14.9 8.7 0 32.7-1.2 32.7-14.3 0-26.1-77.6 6.3-77.6-38zM52.8 178.4H42V212h10.8zm342.4 206.2H406v-33.5h-10.8zM52.8 307.9H42v33.5h10.8zM0 3.7v406l221.7 98.6L448 409.7V3.7zm418.8 387.1L222 476.5 29.2 390.8V120.7h389.7v270.1zm0-299.3H29.2V32.9h389.7v58.6zm-366 130.1H42v33.5h10.8zm0 43.2H42v33.5h10.8zM170 135.2h-33.5v10.5H170zm225.2 163.1H406v-33.5h-10.8zm0-43.2H406v-33.5h-10.8zM217 135.2h-33.2v10.5H217zM395.2 212H406v-33.5h-10.8zm0 129.5H406V308h-10.8zm-131-206.3H231v10.5h33.2zm47.3 0H278v10.5h33.5zm83.7 33.6H406v-33.5h-33.5v10.5h22.8zm-36.4-33.6h-33.5v10.5h33.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "shoe-prints": { + "aliases": { + "unicodes": { + "secondary": [ + "10f54b" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "feet", + "footprints", + "steps", + "walk" + ] + }, + "unicode": "f54b", + "label": "Shoe Prints", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M416 0C352.3 0 256 32 256 32V160c48 0 76 16 104 32s56 32 104 32c56.4 0 176-16 176-96S512 0 416 0zM128 96c0 35.3 28.7 64 64 64h32V32H192c-35.3 0-64 28.7-64 64zM288 512c96 0 224-48 224-128s-119.6-96-176-96c-48 0-76 16-104 32s-56 32-104 32V480s96.3 32 160 32zM0 416c0 35.3 28.7 64 64 64H96V352H64c-35.3 0-64 28.7-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shop": { + "aliases": { + "names": [ + "store-alt" + ], + "unicodes": { + "secondary": [ + "10f54f" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bodega", + "building", + "buy", + "market", + "purchase", + "shopping", + "store" + ] + }, + "unicode": "f54f", + "label": "Shop", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M36.8 192H603.2c20.3 0 36.8-16.5 36.8-36.8c0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4L6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192zM64 224V384v80c0 26.5 21.5 48 48 48H336c26.5 0 48-21.5 48-48V384 224H320V384H128V224H64zm448 0V480c0 17.7 14.3 32 32 32s32-14.3 32-32V224H512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shop-lock": { + "changes": [ + "6.0.0", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bodega", + "building", + "buy", + "closed", + "lock", + "lockdown", + "market", + "purchase", + "quarantine", + "shop", + "shopping", + "store" + ] + }, + "unicode": "e4a5", + "label": "Shop Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M36.8 192H449.6c20.2-19.8 47.9-32 78.4-32c30.5 0 58.1 12.2 78.3 31.9c18.9-1.6 33.7-17.4 33.7-36.7c0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4L6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192zM384 224H320V384H128V224H64V384v80c0 26.5 21.5 48 48 48H336c26.5 0 48-21.5 48-48V384 352 224zm144 16c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shop-slash": { + "aliases": { + "names": [ + "store-alt-slash" + ], + "unicodes": { + "secondary": [ + "10e070" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "buy", + "closed", + "covid-19", + "purchase", + "shopping" + ] + }, + "unicode": "e070", + "label": "Shop Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-54.8-43V224H512V376L384 275.7V224H320v1.5L277.2 192H603.2c20.3 0 36.8-16.5 36.8-36.8c0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4L74.1 32.8 38.8 5.1zM36.8 192h85L21 112.5 6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192zM320 384H128V224H64V384v80c0 26.5 21.5 48 48 48H336c26.5 0 48-21.5 48-48V398.5l-64-50.4V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shopify": { + "changes": [ + "5.12.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e057", + "label": "Shopify", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M388.32,104.1a4.66,4.66,0,0,0-4.4-4c-2,0-37.23-.8-37.23-.8s-21.61-20.82-29.62-28.83V503.2L442.76,472S388.72,106.5,388.32,104.1ZM288.65,70.47a116.67,116.67,0,0,0-7.21-17.61C271,32.85,255.42,22,237,22a15,15,0,0,0-4,.4c-.4-.8-1.2-1.2-1.6-2C223.4,11.63,213,7.63,200.58,8c-24,.8-48,18-67.25,48.83-13.61,21.62-24,48.84-26.82,70.06-27.62,8.4-46.83,14.41-47.23,14.81-14,4.4-14.41,4.8-16,18-1.2,10-38,291.82-38,291.82L307.86,504V65.67a41.66,41.66,0,0,0-4.4.4S297.86,67.67,288.65,70.47ZM233.41,87.69c-16,4.8-33.63,10.4-50.84,15.61,4.8-18.82,14.41-37.63,25.62-50,4.4-4.4,10.41-9.61,17.21-12.81C232.21,54.86,233.81,74.48,233.41,87.69ZM200.58,24.44A27.49,27.49,0,0,1,215,28c-6.4,3.2-12.81,8.41-18.81,14.41-15.21,16.42-26.82,42-31.62,66.45-14.42,4.41-28.83,8.81-42,12.81C131.33,83.28,163.75,25.24,200.58,24.44ZM154.15,244.61c1.6,25.61,69.25,31.22,73.25,91.66,2.8,47.64-25.22,80.06-65.65,82.47-48.83,3.2-75.65-25.62-75.65-25.62l10.4-44s26.82,20.42,48.44,18.82c14-.8,19.22-12.41,18.81-20.42-2-33.62-57.24-31.62-60.84-86.86-3.2-46.44,27.22-93.27,94.47-97.68,26-1.6,39.23,4.81,39.23,4.81L221.4,225.39s-17.21-8-37.63-6.4C154.15,221,153.75,239.8,154.15,244.61ZM249.42,82.88c0-12-1.6-29.22-7.21-43.63,18.42,3.6,27.22,24,31.23,36.43Q262.63,78.68,249.42,82.88Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "shopware": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5b5", + "label": "Shopware", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M403.5 455.41A246.17 246.17 0 0 1 256 504C118.81 504 8 393 8 256 8 118.81 119 8 256 8a247.39 247.39 0 0 1 165.7 63.5 3.57 3.57 0 0 1-2.86 6.18A418.62 418.62 0 0 0 362.13 74c-129.36 0-222.4 53.47-222.4 155.35 0 109 92.13 145.88 176.83 178.73 33.64 13 65.4 25.36 87 41.59a3.58 3.58 0 0 1 0 5.72zM503 233.09a3.64 3.64 0 0 0-1.27-2.44c-51.76-43-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93a3.57 3.57 0 0 0 5-1.82A249 249 0 0 0 503 233.09z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "shower": { + "aliases": { + "unicodes": { + "composite": [ + "1f6bf" + ], + "secondary": [ + "10f2cc" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bath", + "clean", + "faucet", + "shower", + "water" + ] + }, + "unicode": "f2cc", + "label": "Shower", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 131.9C64 112.1 80.1 96 99.9 96c9.5 0 18.6 3.8 25.4 10.5l16.2 16.2c-21 38.9-17.4 87.5 10.9 123L151 247c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0L345 121c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-1.3 1.3c-35.5-28.3-84.1-31.9-123-10.9L170.5 61.3C151.8 42.5 126.4 32 99.9 32C44.7 32 0 76.7 0 131.9V448c0 17.7 14.3 32 32 32s32-14.3 32-32V131.9zM256 352a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm64 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0-128a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm64 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0-128a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm64 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm32-32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shrimp": { + "aliases": { + "unicodes": { + "composite": [ + "1f990" + ] + } + }, + "changes": [ + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "allergy", + "crustacean", + "prawn", + "seafood", + "shellfish", + "shrimp", + "tail" + ] + }, + "unicode": "e448", + "label": "Shrimp", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96s28.7 64 64 64h1c3.7 88.9 77 160 167 160h56V128H264 88.8 64c-17.7 0-32-14.3-32-32s14.3-32 32-32H464c8.8 0 16-7.2 16-16s-7.2-16-16-16H64zM224 456c0 13.3 10.7 24 24 24h72V407.8l-64.1-22.4c-12.5-4.4-26.2 2.2-30.6 14.7s2.2 26.2 14.7 30.6l4.5 1.6C233 433.9 224 443.9 224 456zm128 23.3c36.4-3.3 69.5-17.6 96.1-39.6l-86.5-34.6c-3 1.8-6.2 3.2-9.6 4.3v69.9zM472.6 415c24.6-30.3 39.4-68.9 39.4-111c0-12.3-1.3-24.3-3.7-35.9L382.8 355.1c.8 3.4 1.2 7 1.2 10.6c0 4.6-.7 9-1.9 13.1L472.6 415zM336 128H320V320h18.3c9.9 0 19.1 3.2 26.6 8.5l133.5-92.4C471.8 172.6 409.1 128 336 128zM168 192a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shuffle": { + "aliases": { + "names": [ + "random" + ], + "unicodes": { + "composite": [ + "1f500" + ], + "secondary": [ + "10f074" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "crossed", + "shuffle", + "shuffle tracks button", + "sort", + "swap", + "switch", + "transfer" + ] + }, + "unicode": "f074", + "label": "Shuffle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M403.8 34.4c12-5 25.7-2.2 34.9 6.9l64 64c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-64 64c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V160H352c-10.1 0-19.6 4.7-25.6 12.8L284 229.3 244 176l31.2-41.6C293.3 110.2 321.8 96 352 96h32V64c0-12.9 7.8-24.6 19.8-29.6zM164 282.7L204 336l-31.2 41.6C154.7 401.8 126.2 416 96 416H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96c10.1 0 19.6-4.7 25.6-12.8L164 282.7zm274.6 188c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V416H352c-30.2 0-58.7-14.2-76.8-38.4L121.6 172.8c-6-8.1-15.5-12.8-25.6-12.8H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96c30.2 0 58.7 14.2 76.8 38.4L326.4 339.2c6 8.1 15.5 12.8 25.6 12.8h32V320c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l64 64c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "shuttle-space": { + "aliases": { + "names": [ + "space-shuttle" + ], + "unicodes": { + "secondary": [ + "10f197" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "astronaut", + "machine", + "nasa", + "rocket", + "space", + "transportation" + ] + }, + "unicode": "f197", + "label": "Shuttle Space", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M130 480c40.6 0 80.4-11 115.2-31.9L352 384l-224 0 0 96h2zM352 128L245.2 63.9C210.4 43 170.6 32 130 32h-2v96l224 0zM96 128l0-96H80C53.5 32 32 53.5 32 80v48h8c-22.1 0-40 17.9-40 40v16V328v16c0 22.1 17.9 40 40 40H32v48c0 26.5 21.5 48 48 48H96l0-96h8c26.2 0 49.4-12.6 64-32H456c69.3 0 135-22.7 179.2-81.6c6.4-8.5 6.4-20.3 0-28.8C591 182.7 525.3 160 456 160H168c-14.6-19.4-37.8-32-64-32l-8 0zM512 243.6v24.9c0 19.6-15.9 35.6-35.6 35.6c-2.5 0-4.4-2-4.4-4.4V212.4c0-2.5 2-4.4 4.4-4.4c19.6 0 35.6 15.9 35.6 35.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sign-hanging": { + "aliases": { + "names": [ + "sign" + ], + "unicodes": { + "secondary": [ + "10f4d9" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "real estate", + "signage", + "wayfinding" + ] + }, + "unicode": "f4d9", + "label": "Sign Hanging", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 0c17.7 0 32 14.3 32 32V64l352 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-352 0V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V128H32C14.3 128 0 113.7 0 96S14.3 64 32 64H64V32C64 14.3 78.3 0 96 0zm96 160H448c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "signal": { + "aliases": { + "names": [ + "signal-5", + "signal-perfect" + ], + "unicodes": { + "composite": [ + "1f4f6" + ], + "secondary": [ + "10f012" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antenna", + "antenna bars", + "bar", + "bars", + "cell", + "graph", + "mobile", + "online", + "phone", + "reception", + "status" + ] + }, + "unicode": "f012", + "label": "Signal", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M544 0c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V32c0-17.7 14.3-32 32-32zM416 96c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V128c0-17.7 14.3-32 32-32zM320 224V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32s32 14.3 32 32zM160 288c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V320c0-17.7 14.3-32 32-32zM64 416v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V416c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "signature": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5b7" + ] + } + }, + "changes": [ + "5.1.0", + "5.6.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "John Hancock", + "cursive", + "name", + "writing" + ] + }, + "unicode": "f5b7", + "label": "Signature", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 128c0-17.7 14.3-32 32-32s32 14.3 32 32v7.8c0 27.7-2.4 55.3-7.1 82.5l-84.4 25.3c-40.6 12.2-68.4 49.6-68.4 92v71.9c0 40 32.5 72.5 72.5 72.5c26 0 50-13.9 62.9-36.5l13.9-24.3c26.8-47 46.5-97.7 58.4-150.5l94.4-28.3-12.5 37.5c-3.3 9.8-1.6 20.5 4.4 28.8s15.7 13.3 26 13.3H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H460.4l18-53.9c3.8-11.3 .9-23.8-7.4-32.4s-20.7-11.8-32.2-8.4L316.4 198.1c2.4-20.7 3.6-41.4 3.6-62.3V128c0-53-43-96-96-96s-96 43-96 96v32c0 17.7 14.3 32 32 32s32-14.3 32-32V128zm-9.2 177l49-14.7c-10.4 33.8-24.5 66.4-42.1 97.2l-13.9 24.3c-1.5 2.6-4.3 4.3-7.4 4.3c-4.7 0-8.5-3.8-8.5-8.5V335.6c0-14.1 9.3-26.6 22.8-30.7zM24 368c-13.3 0-24 10.7-24 24s10.7 24 24 24H64.3c-.2-2.8-.3-5.6-.3-8.5V368H24zm592 48c13.3 0 24-10.7 24-24s-10.7-24-24-24H305.9c-6.7 16.3-14.2 32.3-22.3 48H616z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "signs-post": { + "aliases": { + "names": [ + "map-signs" + ], + "unicodes": { + "secondary": [ + "10f277" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "directory", + "map", + "signage", + "wayfinding" + ] + }, + "unicode": "f277", + "label": "Signs Post", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M218 32H58C40.3 32 26 46.3 26 64v64c0 17.7 14.3 32 32 32H435.4c4.2 0 8.3-1.7 11.3-4.7l48-48c6.2-6.2 6.2-16.4 0-22.6l-48-48c-3-3-7.1-4.7-11.3-4.7H282c0-17.7-14.3-32-32-32s-32 14.3-32 32zM474 256c0-17.7-14.3-32-32-32H282V192H218v32H64.6c-4.2 0-8.3 1.7-11.3 4.7l-48 48c-6.2 6.2-6.2 16.4 0 22.6l48 48c3 3 7.1 4.7 11.3 4.7H442c17.7 0 32-14.3 32-32V256zM282 480V384H218v96c0 17.7 14.3 32 32 32s32-14.3 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sim-card": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7c4" + ] + } + }, + "changes": [ + "5.6.0", + "5.8.2", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hard drive", + "hardware", + "portable", + "storage", + "technology", + "tiny" + ] + }, + "unicode": "f7c4", + "label": "Sim Card", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0H242.7c17 0 33.3 6.7 45.3 18.7L365.3 96c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0zM96 192c-17.7 0-32 14.3-32 32v32h64V192H96zM64 352h80 96 80V288H240 144 64v64zM320 224c0-17.7-14.3-32-32-32H256v64h64V224zM160 192v64h64V192H160zM288 448c17.7 0 32-14.3 32-32V384H256v64h32zM160 384v64h64V384H160zM64 416c0 17.7 14.3 32 32 32h32V384H64v32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "simplybuilt": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f215", + "label": "SimplyBuilt", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sink": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06d" + ] + } + }, + "changes": [ + "5.13.0", + "5.13.1", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "covid-19", + "faucet", + "kitchen", + "wash" + ] + }, + "unicode": "e06d", + "label": "Sink", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 96c0-17.7 14.3-32 32-32s32 14.3 32 32s14.3 32 32 32s32-14.3 32-32c0-53-43-96-96-96s-96 43-96 96V288H160V264c0-30.9-25.1-56-56-56H56c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c4.4 0 8 3.6 8 8v24H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H256 480c17.7 0 32-14.3 32-32s-14.3-32-32-32H400V264c0-4.4 3.6-8 8-8h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H408c-30.9 0-56 25.1-56 56v24H288V96zM480 416V384H32v32c0 53 43 96 96 96H384c53 0 96-43 96-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sistrix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3ee", + "label": "SISTRIX", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sitemap": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0e8" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directory", + "hierarchy", + "ia", + "information architecture", + "organization" + ] + }, + "unicode": "f0e8", + "label": "Sitemap", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M208 80c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48h-8v40H464c30.9 0 56 25.1 56 56v32h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H464c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48h8V288c0-4.4-3.6-8-8-8H312v40h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H256c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48h8V280H112c-4.4 0-8 3.6-8 8v32h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48h8V288c0-30.9 25.1-56 56-56H264V192h-8c-26.5 0-48-21.5-48-48V80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sith": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f512", + "label": "Sith", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sitrox": { + "changes": [ + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e44a", + "label": "Sitrox", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M212.439 0.00846128V0H448V128H64C64 57.6008 141.755 0.475338 212.439 0.00846128ZM237.256 192V192.007C307.135 192.475 384 249.6 384 320H210.809V319.995C140.915 319.563 64 262.424 64 192H237.256ZM235.565 511.993C306.251 511.521 384 454.399 384 384H0V512H235.565V511.993Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sketch": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "design", + "interface" + ] + }, + "unicode": "f7c6", + "label": "Sketch", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M27.5 162.2L9 187.1h90.5l6.9-130.7-78.9 105.8zM396.3 45.7L267.7 32l135.7 147.2-7.1-133.5zM112.2 218.3l-11.2-22H9.9L234.8 458zm2-31.2h284l-81.5-88.5L256.3 33zm297.3 9.1L277.6 458l224.8-261.7h-90.9zM415.4 69L406 56.4l.9 17.3 6.1 113.4h90.3zM113.5 93.5l-4.6 85.6L244.7 32 116.1 45.7zm287.7 102.7h-290l42.4 82.9L256.3 480l144.9-283.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "skull": { + "aliases": { + "unicodes": { + "composite": [ + "1f480" + ], + "secondary": [ + "10f54c" + ] + } + }, + "changes": [ + "5.0.13", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bones", + "death", + "face", + "fairy tale", + "monster", + "skeleton", + "skull", + "x-ray", + "yorick" + ] + }, + "unicode": "f54c", + "label": "Skull", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 398.9c58.5-41.1 96-104.1 96-174.9C512 100.3 397.4 0 256 0S0 100.3 0 224c0 70.7 37.5 133.8 96 174.9c0 .4 0 .7 0 1.1v64c0 26.5 21.5 48 48 48h48V464c0-8.8 7.2-16 16-16s16 7.2 16 16v48h64V464c0-8.8 7.2-16 16-16s16 7.2 16 16v48h48c26.5 0 48-21.5 48-48V400c0-.4 0-.7 0-1.1zM96 256a64 64 0 1 1 128 0A64 64 0 1 1 96 256zm256-64a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "skull-crossbones": { + "aliases": { + "unicodes": { + "composite": [ + "1f571", + "2620" + ], + "secondary": [ + "10f714" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Skull and Crossbones", + "Dungeons & Dragons", + "alert", + "bones", + "crossbones", + "d&d", + "danger", + "dangerous area", + "dead", + "deadly", + "death", + "dnd", + "face", + "fantasy", + "halloween", + "holiday", + "jolly-roger", + "monster", + "pirate", + "poison", + "skeleton", + "skull", + "skull and crossbones", + "warning" + ] + }, + "unicode": "f714", + "label": "Skull Crossbones", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M368 128c0 44.4-25.4 83.5-64 106.4V256c0 17.7-14.3 32-32 32H176c-17.7 0-32-14.3-32-32V234.4c-38.6-23-64-62.1-64-106.4C80 57.3 144.5 0 224 0s144 57.3 144 128zM168 176a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm144-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM3.4 273.7c7.9-15.8 27.1-22.2 42.9-14.3L224 348.2l177.7-88.8c15.8-7.9 35-1.5 42.9 14.3s1.5 35-14.3 42.9L295.6 384l134.8 67.4c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3L224 419.8 46.3 508.6c-15.8 7.9-35 1.5-42.9-14.3s-1.5-35 14.3-42.9L152.4 384 17.7 316.6C1.9 308.7-4.5 289.5 3.4 273.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "skyatlas": { + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f216", + "label": "skyatlas", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "skype": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f17e", + "label": "Skype", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "slack": { + "aliases": { + "names": [ + "slack-hash" + ], + "unicodes": { + "composite": [ + "f3ef" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchor", + "hash", + "hashtag" + ] + }, + "unicode": "f198", + "label": "Slack Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1c0-25.9 21.16-47.06 47.06-47.06h47.06v47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V315.1zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06H164.9zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06H164.9zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06h-47.06V196.9zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06V196.9zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06v-47.06h47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06 0-25.9 21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06H283.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f715" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "close", + "mute", + "off", + "stop", + "x" + ] + }, + "unicode": "f715", + "label": "Slash", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321865, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M5.1 9.2C13.3-1.2 28.4-3.1 38.8 5.1l592 464c10.4 8.2 12.3 23.3 4.1 33.7s-23.3 12.3-33.7 4.1L9.2 42.9C-1.2 34.7-3.1 19.6 5.1 9.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sleigh": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7cc" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "christmas", + "claus", + "fly", + "holiday", + "santa", + "sled", + "snow", + "xmas" + ] + }, + "unicode": "f7cc", + "label": "Sleigh", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96V256c0 53 43 96 96 96v32h64V352H384v32h64V352c53 0 96-43 96-96V160c17.7 0 32-14.3 32-32s-14.3-32-32-32H512 480c-17.7 0-32 14.3-32 32v41.3c0 30.2-24.5 54.7-54.7 54.7c-75.5 0-145.6-38.9-185.6-102.9l-4.3-6.9C174.2 67.6 125 37.6 70.7 32.7c-2.2-.5-4.4-.7-6.7-.7H55 32zM640 384c0-17.7-14.3-32-32-32s-32 14.3-32 32v8c0 13.3-10.7 24-24 24H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H552c48.6 0 88-39.4 88-88v-8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sliders": { + "aliases": { + "names": [ + "sliders-h" + ], + "unicodes": { + "secondary": [ + "10f1de" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.0.11", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "adjust", + "settings", + "sliders", + "toggle" + ] + }, + "unicode": "f1de", + "label": "Sliders", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 416c0-17.7 14.3-32 32-32l54.7 0c12.3-28.3 40.5-48 73.3-48s61 19.7 73.3 48L480 384c17.7 0 32 14.3 32 32s-14.3 32-32 32l-246.7 0c-12.3 28.3-40.5 48-73.3 48s-61-19.7-73.3-48L32 448c-17.7 0-32-14.3-32-32zm192 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM384 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm-32-80c32.8 0 61 19.7 73.3 48l54.7 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-54.7 0c-12.3 28.3-40.5 48-73.3 48s-61-19.7-73.3-48L32 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l246.7 0c12.3-28.3 40.5-48 73.3-48zM192 64a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm73.3 0L480 64c17.7 0 32 14.3 32 32s-14.3 32-32 32l-214.7 0c-12.3 28.3-40.5 48-73.3 48s-61-19.7-73.3-48L32 128C14.3 128 0 113.7 0 96S14.3 64 32 64l86.7 0C131 35.7 159.2 16 192 16s61 19.7 73.3 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "slideshare": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1e7", + "label": "Slideshare", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M187.7 153.7c-34 0-61.7 25.7-61.7 57.7 0 31.7 27.7 57.7 61.7 57.7s61.7-26 61.7-57.7c0-32-27.7-57.7-61.7-57.7zm143.4 0c-34 0-61.7 25.7-61.7 57.7 0 31.7 27.7 57.7 61.7 57.7 34.3 0 61.7-26 61.7-57.7.1-32-27.4-57.7-61.7-57.7zm156.6 90l-6 4.3V49.7c0-27.4-20.6-49.7-46-49.7H76.6c-25.4 0-46 22.3-46 49.7V248c-2-1.4-4.3-2.9-6.3-4.3-15.1-10.6-25.1 4-16 17.7 18.3 22.6 53.1 50.3 106.3 72C58.3 525.1 252 555.7 248.9 457.5c0-.7.3-56.6.3-96.6 5.1 1.1 9.4 2.3 13.7 3.1 0 39.7.3 92.8.3 93.5-3.1 98.3 190.6 67.7 134.3-124 53.1-21.7 88-49.4 106.3-72 9.1-13.8-.9-28.3-16.1-17.8zm-30.5 19.2c-68.9 37.4-128.3 31.1-160.6 29.7-23.7-.9-32.6 9.1-33.7 24.9-10.3-7.7-18.6-15.5-20.3-17.1-5.1-5.4-13.7-8-27.1-7.7-31.7 1.1-89.7 7.4-157.4-28V72.3c0-34.9 8.9-45.7 40.6-45.7h317.7c30.3 0 40.9 12.9 40.9 45.7v190.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "smog": { + "aliases": { + "unicodes": { + "secondary": [ + "10f75f" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dragon", + "fog", + "haze", + "pollution", + "smoke", + "weather" + ] + }, + "unicode": "f75f", + "label": "Smog", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 144c0 79.5 64.5 144 144 144H299.3c22.6 19.9 52.2 32 84.7 32s62.1-12.1 84.7-32H496c61.9 0 112-50.1 112-112s-50.1-112-112-112c-10.7 0-21 1.5-30.8 4.3C443.8 27.7 401.1 0 352 0c-32.6 0-62.4 12.2-85.1 32.3C242.1 12.1 210.5 0 176 0C96.5 0 32 64.5 32 144zM616 368H280c-13.3 0-24 10.7-24 24s10.7 24 24 24H616c13.3 0 24-10.7 24-24s-10.7-24-24-24zm-64 96H440c-13.3 0-24 10.7-24 24s10.7 24 24 24H552c13.3 0 24-10.7 24-24s-10.7-24-24-24zm-192 0H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H360c13.3 0 24-10.7 24-24s-10.7-24-24-24zM224 392c0-13.3-10.7-24-24-24H96c-13.3 0-24 10.7-24 24s10.7 24 24 24H200c13.3 0 24-10.7 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "smoking": { + "aliases": { + "unicodes": { + "composite": [ + "1f6ac" + ], + "secondary": [ + "10f48d" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancer", + "cigarette", + "nicotine", + "smoking", + "smoking status", + "tobacco" + ] + }, + "unicode": "f48d", + "label": "Smoking", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M448 32V43c0 38.2 15.2 74.8 42.2 101.8l21 21c21 21 32.8 49.5 32.8 79.2v11c0 17.7-14.3 32-32 32s-32-14.3-32-32V245c0-12.7-5.1-24.9-14.1-33.9l-21-21C405.9 151.1 384 98.1 384 43V32c0-17.7 14.3-32 32-32s32 14.3 32 32zM576 256V245c0-38.2-15.2-74.8-42.2-101.8l-21-21c-21-21-32.8-49.5-32.8-79.2V32c0-17.7 14.3-32 32-32s32 14.3 32 32V43c0 12.7 5.1 24.9 14.1 33.9l21 21c39 39 60.9 91.9 60.9 147.1v11c0 17.7-14.3 32-32 32s-32-14.3-32-32zM0 416c0-35.3 28.7-64 64-64H416c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H64c-35.3 0-64-28.7-64-64V416zm224 0v32H384V416H224zm288-64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "snapchat": { + "aliases": { + "names": [ + "snapchat-ghost" + ], + "unicodes": { + "composite": [ + "f2ac" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2ab", + "label": "Snapchat", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M496.926,366.6c-3.373-9.176-9.8-14.086-17.112-18.153-1.376-.806-2.641-1.451-3.72-1.947-2.182-1.128-4.414-2.22-6.634-3.373-22.8-12.09-40.609-27.341-52.959-45.42a102.889,102.889,0,0,1-9.089-16.12c-1.054-3.013-1-4.724-.248-6.287a10.221,10.221,0,0,1,2.914-3.038c3.918-2.591,7.96-5.22,10.7-6.993,4.885-3.162,8.754-5.667,11.246-7.44,9.362-6.547,15.909-13.5,20-21.278a42.371,42.371,0,0,0,2.1-35.191c-6.2-16.318-21.613-26.449-40.287-26.449a55.543,55.543,0,0,0-11.718,1.24c-1.029.224-2.059.459-3.063.72.174-11.16-.074-22.94-1.066-34.534-3.522-40.758-17.794-62.123-32.674-79.16A130.167,130.167,0,0,0,332.1,36.443C309.515,23.547,283.91,17,256,17S202.6,23.547,180,36.443a129.735,129.735,0,0,0-33.281,26.783c-14.88,17.038-29.152,38.44-32.673,79.161-.992,11.594-1.24,23.435-1.079,34.533-1-.26-2.021-.5-3.051-.719a55.461,55.461,0,0,0-11.717-1.24c-18.687,0-34.125,10.131-40.3,26.449a42.423,42.423,0,0,0,2.046,35.228c4.105,7.774,10.652,14.731,20.014,21.278,2.48,1.736,6.361,4.24,11.246,7.44,2.641,1.711,6.5,4.216,10.28,6.72a11.054,11.054,0,0,1,3.3,3.311c.794,1.624.818,3.373-.36,6.6a102.02,102.02,0,0,1-8.94,15.785c-12.077,17.669-29.363,32.648-51.434,44.639C32.355,348.608,20.2,352.75,15.069,366.7c-3.868,10.528-1.339,22.506,8.494,32.6a49.137,49.137,0,0,0,12.4,9.387,134.337,134.337,0,0,0,30.342,12.139,20.024,20.024,0,0,1,6.126,2.741c3.583,3.137,3.075,7.861,7.849,14.78a34.468,34.468,0,0,0,8.977,9.127c10.019,6.919,21.278,7.353,33.207,7.811,10.776.41,22.989.881,36.939,5.481,5.778,1.91,11.78,5.605,18.736,9.92C194.842,480.951,217.707,495,255.973,495s61.292-14.123,78.118-24.428c6.907-4.24,12.872-7.9,18.489-9.758,13.949-4.613,26.163-5.072,36.939-5.481,11.928-.459,23.187-.893,33.206-7.812a34.584,34.584,0,0,0,10.218-11.16c3.434-5.84,3.348-9.919,6.572-12.771a18.971,18.971,0,0,1,5.753-2.629A134.893,134.893,0,0,0,476.02,408.71a48.344,48.344,0,0,0,13.019-10.193l.124-.149C498.389,388.5,500.708,376.867,496.926,366.6Zm-34.013,18.277c-20.745,11.458-34.533,10.23-45.259,17.137-9.114,5.865-3.72,18.513-10.342,23.076-8.134,5.617-32.177-.4-63.239,9.858-25.618,8.469-41.961,32.822-88.038,32.822s-62.036-24.3-88.076-32.884c-31-10.255-55.092-4.241-63.239-9.858-6.609-4.563-1.24-17.211-10.341-23.076-10.739-6.907-24.527-5.679-45.26-17.075-13.206-7.291-5.716-11.8-1.314-13.937,75.143-36.381,87.133-92.552,87.666-96.719.645-5.046,1.364-9.014-4.191-14.148-5.369-4.96-29.189-19.7-35.8-24.316-10.937-7.638-15.748-15.264-12.2-24.638,2.48-6.485,8.531-8.928,14.879-8.928a27.643,27.643,0,0,1,5.965.67c12,2.6,23.659,8.617,30.392,10.242a10.749,10.749,0,0,0,2.48.335c3.6,0,4.86-1.811,4.612-5.927-.768-13.132-2.628-38.725-.558-62.644,2.84-32.909,13.442-49.215,26.04-63.636,6.051-6.932,34.484-36.976,88.857-36.976s82.88,29.92,88.931,36.827c12.611,14.421,23.225,30.727,26.04,63.636,2.071,23.919.285,49.525-.558,62.644-.285,4.327,1.017,5.927,4.613,5.927a10.648,10.648,0,0,0,2.48-.335c6.745-1.624,18.4-7.638,30.4-10.242a27.641,27.641,0,0,1,5.964-.67c6.386,0,12.4,2.48,14.88,8.928,3.546,9.374-1.24,17-12.189,24.639-6.609,4.612-30.429,19.343-35.8,24.315-5.568,5.134-4.836,9.1-4.191,14.149.533,4.228,12.511,60.4,87.666,96.718C468.629,373.011,476.119,377.524,462.913,384.877Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "snowflake": { + "aliases": { + "unicodes": { + "composite": [ + "2744", + "2746" + ], + "secondary": [ + "10f2dc" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Heavy Chevron Snowflake", + "cold", + "precipitation", + "rain", + "snow", + "snowfall", + "snowflake", + "winter" + ] + }, + "unicode": "f2dc", + "label": "Snowflake", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0c17.7 0 32 14.3 32 32V62.1l15-15c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-49 49v70.3l61.4-35.8 17.7-66.1c3.4-12.8 16.6-20.4 29.4-17s20.4 16.6 17 29.4l-5.2 19.3 23.6-13.8c15.3-8.9 34.9-3.7 43.8 11.5s3.8 34.9-11.5 43.8l-25.3 14.8 21.7 5.8c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17l-67.7-18.1L287.5 256l60.9 35.5 67.7-18.1c12.8-3.4 26 4.2 29.4 17s-4.2 26-17 29.4l-21.7 5.8 25.3 14.8c15.3 8.9 20.4 28.5 11.5 43.8s-28.5 20.4-43.8 11.5l-23.6-13.8 5.2 19.3c3.4 12.8-4.2 26-17 29.4s-26-4.2-29.4-17l-17.7-66.1L256 311.7v70.3l49 49c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-15-15V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V449.9l-15 15c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l49-49V311.7l-61.4 35.8-17.7 66.1c-3.4 12.8-16.6 20.4-29.4 17s-20.4-16.6-17-29.4l5.2-19.3L48.1 395.6c-15.3 8.9-34.9 3.7-43.8-11.5s-3.7-34.9 11.5-43.8l25.3-14.8-21.7-5.8c-12.8-3.4-20.4-16.6-17-29.4s16.6-20.4 29.4-17l67.7 18.1L160.5 256 99.6 220.5 31.9 238.6c-12.8 3.4-26-4.2-29.4-17s4.2-26 17-29.4l21.7-5.8L15.9 171.6C.6 162.7-4.5 143.1 4.4 127.9s28.5-20.4 43.8-11.5l23.6 13.8-5.2-19.3c-3.4-12.8 4.2-26 17-29.4s26 4.2 29.4 17l17.7 66.1L192 200.3V129.9L143 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l15 15V32c0-17.7 14.3-32 32-32z" + }, + "regular": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M223 0c13.3 0 24 10.7 24 24V70.1l23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-57 57v76.5l66.2-38.2 20.9-77.8c3.4-12.8 16.6-20.4 29.4-17s20.4 16.6 17 29.4L372 142.2l37.1-21.4c11.5-6.6 26.2-2.7 32.8 8.8s2.7 26.2-8.8 32.8L396 183.8l31.5 8.4c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17l-77.8-20.9L271 256l66.2 38.2 77.8-20.9c12.8-3.4 26 4.2 29.4 17s-4.2 26-17 29.4L396 328.2l37.1 21.4c11.5 6.6 15.4 21.3 8.8 32.8s-21.3 15.4-32.8 8.8L372 369.8l8.4 31.5c3.4 12.8-4.2 26-17 29.4s-26-4.2-29.4-17l-20.9-77.8L247 297.6v76.5l57 57c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-23-23V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V441.9l-23 23c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l57-57V297.6l-66.2 38.2-20.9 77.8c-3.4 12.8-16.6 20.4-29.4 17s-20.4-16.6-17-29.4L74 369.8 36.9 391.2c-11.5 6.6-26.2 2.7-32.8-8.8s-2.7-26.2 8.8-32.8L50 328.2l-31.5-8.4c-12.8-3.4-20.4-16.6-17-29.4s16.6-20.4 29.4-17l77.8 20.9L175 256l-66.2-38.2L30.9 238.6c-12.8 3.4-26-4.2-29.4-17s4.2-26 17-29.4L50 183.8 12.9 162.4c-11.5-6.6-15.4-21.3-8.8-32.8s21.3-15.4 32.8-8.8L74 142.2l-8.4-31.5c-3.4-12.8 4.2-26 17-29.4s26 4.2 29.4 17l20.9 77.8L199 214.4V137.9L142 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l23 23V24c0-13.3 10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "snowman": { + "aliases": { + "unicodes": { + "composite": [ + "2603", + "26c4" + ], + "secondary": [ + "10f7d0" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "decoration", + "frost", + "frosty", + "holiday", + "snow", + "snowman", + "snowman without snow" + ] + }, + "unicode": "f7d0", + "label": "Snowman", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M341.1 140.6c-2 3.9-1.6 8.6 1.2 12c7 8.5 12.9 18.1 17.2 28.4L408 160.2V120c0-13.3 10.7-24 24-24s24 10.7 24 24v19.6l22.5-9.7c12.2-5.2 26.3 .4 31.5 12.6s-.4 26.3-12.6 31.5l-56 24-73.6 31.5c-.5 9.5-2.1 18.6-4.8 27.3c-1.2 3.8-.1 8 2.8 10.8C396.7 296.9 416 338.2 416 384c0 44.7-18.3 85-47.8 114.1c-9.9 9.7-23.7 13.9-37.5 13.9H181.3c-13.9 0-27.7-4.2-37.5-13.9C114.3 469 96 428.7 96 384c0-45.8 19.3-87.1 50.1-116.3c2.9-2.8 4-6.9 2.8-10.8c-2.7-8.7-4.3-17.9-4.8-27.3L70.5 198.1l-56-24C2.4 168.8-3.3 154.7 1.9 142.5s19.3-17.8 31.5-12.6L56 139.6V120c0-13.3 10.7-24 24-24s24 10.7 24 24v40.2L152.6 181c4.3-10.3 10.1-19.9 17.2-28.4c2.8-3.4 3.3-8.1 1.2-12C164 127.2 160 112.1 160 96c0-53 43-96 96-96s96 43 96 96c0 16.1-4 31.2-10.9 44.6zM224 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm48 128a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm-16 80a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm16 48a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zM288 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm-48 24v3.2c0 3.2 .8 6.3 2.3 9l9 16.9c.9 1.7 2.7 2.8 4.7 2.8s3.8-1.1 4.7-2.8l9-16.9c1.5-2.8 2.3-5.9 2.3-9V120c0-8.8-7.2-16-16-16s-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "snowplow": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7d2" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clean up", + "cold", + "road", + "storm", + "winter" + ] + }, + "unicode": "f7d2", + "label": "Snowplow", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M298.9 64l68.6 160H256l-64-64V64H298.9zM445.1 242.7l-87.4-204C347.6 15.3 324.5 0 298.9 0H176c-26.5 0-48 21.5-48 48V160H96c-17.7 0-32 14.3-32 32V298.8C26.2 316.8 0 355.3 0 400c0 61.9 50.1 112 112 112H368c61.9 0 112-50.1 112-112c0-17.2-3.9-33.5-10.8-48H512v50.7c0 17 6.7 33.3 18.7 45.3l54.6 54.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L576 402.7V320 235.2L633 164c11-13.8 8.8-33.9-5-45s-33.9-8.8-45 5l-57 71.2c-9.1 11.3-14 25.4-14 40V288H448V256.7c.1-2.4-.2-4.8-.6-7.1s-1.2-4.7-2.2-6.8zM368 352c26.5 0 48 21.5 48 48s-21.5 48-48 48H112c-26.5 0-48-21.5-48-48s21.5-48 48-48H368zM144 400a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm216 24a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm-56-24a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM200 424a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "soap": { + "aliases": { + "unicodes": { + "composite": [ + "1f9fc" + ], + "secondary": [ + "10e06e" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bar", + "bathing", + "bubbles", + "clean", + "cleaning", + "covid-19", + "hygiene", + "lather", + "soap", + "soapdish", + "wash" + ] + }, + "unicode": "e06e", + "label": "Soap", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM320 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM416 32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0 160c0 27.6-11.7 52.5-30.4 70.1C422.1 275.7 448 310.8 448 352c0 53-43 96-96 96H160c-53 0-96-43-96-96s43-96 96-96h88.4c-15.2-17-24.4-39.4-24.4-64H96c-53 0-96 43-96 96V416c0 53 43 96 96 96H416c53 0 96-43 96-96V288c0-53-43-96-96-96zM160 288c-35.3 0-64 28.7-64 64s28.7 64 64 64H352c35.3 0 64-28.7 64-64s-28.7-64-64-64H320 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "socks": { + "aliases": { + "unicodes": { + "composite": [ + "1f9e6" + ], + "secondary": [ + "10f696" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "business socks", + "business time", + "clothing", + "feet", + "flight of the conchords", + "socks", + "stocking", + "wednesday" + ] + }, + "unicode": "f696", + "label": "Socks", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M175.2 476.6c-9.7-18-15.2-38.7-15.2-60.6c0-40.3 19-78.2 51.2-102.4l64-48c8.1-6 12.8-15.5 12.8-25.6V96H128V240c0 20.1-9.5 39.1-25.6 51.2l-64 48C14.2 357.3 0 385.8 0 416c0 53 43 96 96 96c20.8 0 41-6.7 57.6-19.2l21.6-16.2zM128 64H288V48c0-14.5 3.9-28.2 10.7-39.9C291 3 281.9 0 272 0H176c-26.5 0-48 21.5-48 48V64zM320 96V240c0 20.1-9.5 39.1-25.6 51.2l-64 48C206.2 357.3 192 385.8 192 416c0 53 43 96 96 96c20.8 0 41-6.7 57.6-19.2l115.2-86.4C493 382.2 512 344.3 512 304V96H320zM512 64V48c0-26.5-21.5-48-48-48H368c-26.5 0-48 21.5-48 48V64H512z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "solar-panel": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5ba" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clean", + "eco-friendly", + "energy", + "green", + "sun" + ] + }, + "unicode": "f5ba", + "label": "Solar Panel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M115.2 0C84.7 0 58.5 21.5 52.5 51.4L1.3 307.4C-6.6 347 23.6 384 64 384H281v64H217c-17.7 0-32 14.3-32 32s14.3 32 32 32H409c17.7 0 32-14.3 32-32s-14.3-32-32-32H345V384H562c40.4 0 70.7-36.9 62.8-76.6l-51.2-256C567.5 21.5 541.3 0 510.8 0H115.2zM253.9 64H372.1l10.4 104h-139L253.9 64zM195.3 168H94.4L115.2 64h90.4L195.3 168zM84.8 216H190.5L180.1 320H64L84.8 216zm153.9 0H387.3l10.4 104-169.4 0 10.4-104zm196.8 0H541.2L562 320h-116L435.5 216zm96-48H430.7L420.3 64h90.4l31.4-6.3L510.8 64l20.8 104z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sort": { + "aliases": { + "names": [ + "unsorted" + ], + "unicodes": { + "secondary": [ + "10f0dc" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "filter", + "order" + ] + }, + "unicode": "f0dc", + "label": "Sort", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M137.4 41.4c12.5-12.5 32.8-12.5 45.3 0l128 128c9.2 9.2 11.9 22.9 6.9 34.9s-16.6 19.8-29.6 19.8H32c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9l128-128zm0 429.3l-128-128c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8H288c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-128 128c-12.5 12.5-32.8 12.5-45.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sort-down": { + "aliases": { + "names": [ + "sort-desc" + ], + "unicodes": { + "secondary": [ + "10f0dd" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "descending", + "filter", + "order", + "sort-desc" + ] + }, + "unicode": "f0dd", + "label": "Sort Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M182.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8H288c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-128 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sort-up": { + "aliases": { + "names": [ + "sort-asc" + ], + "unicodes": { + "secondary": [ + "10f0de" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "ascending", + "filter", + "order", + "sort-asc" + ] + }, + "unicode": "f0de", + "label": "Sort Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M182.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H288c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "soundcloud": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1be", + "label": "SoundCloud", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sourcetree": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f7d3", + "label": "Sourcetree", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M427.2 203c0-112.1-90.9-203-203-203C112.1-.2 21.2 90.6 21 202.6A202.86 202.86 0 0 0 161.5 396v101.7a14.3 14.3 0 0 0 14.3 14.3h96.4a14.3 14.3 0 0 0 14.3-14.3V396.1A203.18 203.18 0 0 0 427.2 203zm-271.6 0c0-90.8 137.3-90.8 137.3 0-.1 89.9-137.3 91-137.3 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "spa": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5bb" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flora", + "massage", + "mindfulness", + "plant", + "wellness" + ] + }, + "unicode": "f5bb", + "label": "Spa", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M183.1 235.3c33.7 20.7 62.9 48.1 85.8 80.5c7 9.9 13.4 20.3 19.1 31c5.7-10.8 12.1-21.1 19.1-31c22.9-32.4 52.1-59.8 85.8-80.5C437.6 207.8 490.1 192 546 192h9.9c11.1 0 20.1 9 20.1 20.1C576 360.1 456.1 480 308.1 480H288 267.9C119.9 480 0 360.1 0 212.1C0 201 9 192 20.1 192H30c55.9 0 108.4 15.8 153.1 43.3zM301.5 37.6c15.7 16.9 61.1 71.8 84.4 164.6c-38 21.6-71.4 50.8-97.9 85.6c-26.5-34.8-59.9-63.9-97.9-85.6c23.2-92.8 68.6-147.7 84.4-164.6C278 33.9 282.9 32 288 32s10 1.9 13.5 5.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "space-awesome": { + "changes": [ + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "adventure", + "rocket", + "ship", + "shuttle" + ] + }, + "unicode": "e5ac", + "label": "Space Awesome", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 256H128V512H0V352H32V320H64V288H96V256zM512 352V512H384V256H416V288H448V320H480V352H512zM320 64H352V448H320V416H192V448H160V64H192V32H224V0H288V32H320V64zM288 128H224V192H288V128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "spaghetti-monster-flying": { + "aliases": { + "names": [ + "pastafarianism" + ], + "unicodes": { + "secondary": [ + "10f67b" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agnosticism", + "atheism", + "flying spaghetti monster", + "fsm" + ] + }, + "unicode": "f67b", + "label": "Spaghetti Monster Flying", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 64a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm48 0c0 16.2-6 31.1-16 42.3l15.6 31.2c18.7-6 39.9-9.5 64.4-9.5s45.8 3.5 64.4 9.5L400 106.3C390 95.1 384 80.2 384 64c0-35.3 28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64c-1.7 0-3.4-.1-5.1-.2L427.8 158c21.1 13.6 37.7 30.2 51.4 46.4c7.1 8.3 13.5 16.6 19.3 24l1.4 1.8c6.3 8.1 11.6 14.8 16.7 20.4C527.3 262.3 532.7 264 536 264c2.5 0 4.3-.6 7.1-3.3c3.7-3.5 7.1-8.8 12.5-17.4l.6-.9c4.6-7.4 11-17.6 19.4-25.7c9.7-9.3 22.9-16.7 40.4-16.7c13.3 0 24 10.7 24 24s-10.7 24-24 24c-2.5 0-4.3 .6-7.1 3.3c-3.7 3.5-7.1 8.8-12.5 17.4l-.6 .9c-4.6 7.4-11 17.6-19.4 25.7c-9.7 9.3-22.9 16.7-40.4 16.7c-18.5 0-32.9-8.5-44.3-18.6c-3.1 4-6.6 8.3-10.5 12.7c1.4 4.3 2.8 8.5 4 12.5c.9 3 1.8 5.8 2.6 8.6c3 9.8 5.5 18.2 8.6 25.9c3.9 9.8 7.4 15.4 10.8 18.5c2.6 2.4 5.9 4.3 12.8 4.3c8.7 0 16.9-4.2 33.7-13.2c15-8 35.7-18.8 62.3-18.8c13.3 0 24 10.7 24 24s-10.7 24-24 24c-13.4 0-24.7 5.2-39.7 13.2c-1 .6-2.1 1.1-3.2 1.7C559.9 414 541.4 424 520 424c-18.4 0-33.6-6.1-45.5-17.2c-11.1-10.3-17.9-23.7-22.7-36c-3.6-9-6.7-19.1-9.5-28.5c-16.4 12.3-36.1 23.6-58.9 31.3c3.6 10.8 8.4 23.5 14.4 36.2c7.5 15.9 16.2 30.4 25.8 40.5C433 460.5 441.2 464 448 464c13.3 0 24 10.7 24 24s-10.7 24-24 24c-25.2 0-45-13.5-59.5-28.8c-14.5-15.4-25.7-34.9-34.2-53c-8-17-14.1-33.8-18.3-46.9c-5.2 .4-10.6 .6-16 .6s-10.8-.2-16-.6c-4.2 13-10.3 29.9-18.3 46.9c-8.5 18.1-19.8 37.6-34.2 53C237 498.5 217.2 512 192 512c-13.3 0-24-10.7-24-24s10.7-24 24-24c6.8 0 15-3.5 24.5-13.7c9.5-10.1 18.3-24.6 25.8-40.5c5.9-12.6 10.7-25.4 14.4-36.2c-22.8-7.7-42.5-19-58.9-31.3c-2.9 9.4-6 19.5-9.5 28.5c-4.8 12.2-11.6 25.6-22.7 36C153.6 417.9 138.4 424 120 424c-21.4 0-39.9-10-53.1-17.1l0 0c-1.1-.6-2.2-1.2-3.2-1.7c-15-8-26.3-13.2-39.7-13.2c-13.3 0-24-10.7-24-24s10.7-24 24-24c26.6 0 47.3 10.8 62.3 18.8c16.8 9 25 13.2 33.7 13.2c6.8 0 10.2-1.9 12.8-4.3c3.4-3.2 7-8.8 10.8-18.5c3-7.7 5.6-16.1 8.6-25.9c.8-2.7 1.7-5.6 2.6-8.6c1.2-4 2.6-8.2 4-12.5c-3.9-4.5-7.4-8.8-10.5-12.7C136.9 303.5 122.5 312 104 312c-17.5 0-30.7-7.4-40.4-16.7c-8.4-8.1-14.8-18.3-19.4-25.7l-.6-.9c-5.4-8.6-8.8-13.9-12.5-17.4c-2.8-2.7-4.6-3.3-7.1-3.3c-13.3 0-24-10.7-24-24s10.7-24 24-24c17.5 0 30.7 7.4 40.4 16.7c8.4 8.1 14.8 18.3 19.4 25.7l.6 .9c5.4 8.6 8.8 13.9 12.5 17.4c2.8 2.7 4.6 3.3 7.1 3.3c3.3 0 8.7-1.7 19.4-13.4c5.1-5.6 10.4-12.3 16.7-20.4l1.4-1.8c5.8-7.4 12.2-15.7 19.3-24c13.8-16.2 30.3-32.8 51.4-46.4l-15.1-30.2c-1.7 .1-3.4 .2-5.1 .2c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zm208 0a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "speakap": { + "changes": [ + "5.0.0", + "5.4.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f3", + "label": "Speakap", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 391.78C-15.41 303.59-8 167.42 80.64 87.64s224.8-73 304.21 15.24 72 224.36-16.64 304.14c-18.74 16.87 64 43.09 42 52.26-82.06 34.21-253.91 35-346.23-67.5zm213.31-211.6l38.5-40.86c-9.61-8.89-32-26.83-76.17-27.6-52.33-.91-95.86 28.3-96.77 80-.2 11.33.29 36.72 29.42 54.83 34.46 21.42 86.52 21.51 86 52.26-.37 21.28-26.42 25.81-38.59 25.6-3-.05-30.23-.46-47.61-24.62l-40 42.61c28.16 27 59 32.62 83.49 33.05 10.23.18 96.42.33 97.84-81 .28-15.81-2.07-39.72-28.86-56.59-34.36-21.64-85-19.45-84.43-49.75.41-23.25 31-25.37 37.53-25.26.43 0 26.62.26 39.62 17.37z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "speaker-deck": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f83c", + "label": "Speaker Deck", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M213.86 296H100a100 100 0 0 1 0-200h132.84a40 40 0 0 1 0 80H98c-26.47 0-26.45 40 0 40h113.82a100 100 0 0 1 0 200H40a40 40 0 0 1 0-80h173.86c26.48 0 26.46-40 0-40zM298 416a120.21 120.21 0 0 0 51.11-80h64.55a19.83 19.83 0 0 0 19.66-20V196a19.83 19.83 0 0 0-19.66-20H296.42a60.77 60.77 0 0 0 0-80h136.93c43.44 0 78.65 35.82 78.65 80v160c0 44.18-35.21 80-78.65 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "spell-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f891" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dictionary", + "edit", + "editor", + "grammar", + "text" + ] + }, + "unicode": "f891", + "label": "Spell Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 0C99.1 0 87.4 7.8 82.5 19.7l-66.7 160-13.3 32c-6.8 16.3 .9 35 17.2 41.8s35-.9 41.8-17.2L66.7 224h90.7l5.1 12.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8l-13.3-32-66.7-160C136.6 7.8 124.9 0 112 0zm18.7 160H93.3L112 115.2 130.7 160zM256 32v96 96c0 17.7 14.3 32 32 32h80c44.2 0 80-35.8 80-80c0-23.1-9.8-43.8-25.4-58.4c6-11.2 9.4-24 9.4-37.6c0-44.2-35.8-80-80-80H288c-17.7 0-32 14.3-32 32zm96 64H320V64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-32 64h32 16c8.8 0 16 7.2 16 16s-7.2 16-16 16H320V160zM566.6 310.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L352 434.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l192-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "spider": { + "aliases": { + "unicodes": { + "composite": [ + "1f577" + ], + "secondary": [ + "10f717" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arachnid", + "bug", + "charlotte", + "crawl", + "eight", + "halloween", + "insect", + "spider" + ] + }, + "unicode": "f717", + "label": "Spider", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M158.4 32.6c4.8-12.4-1.4-26.3-13.8-31s-26.3 1.4-31 13.8L81.1 100c-7.9 20.7-3 44.1 12.7 59.7l57.4 57.4L70.8 190.3c-2.4-.8-4.3-2.7-5.1-5.1L46.8 128.4C42.6 115.8 29 109 16.4 113.2S-3 131 1.2 143.6l18.9 56.8c5.6 16.7 18.7 29.8 35.4 35.4L116.1 256 55.6 276.2c-16.7 5.6-29.8 18.7-35.4 35.4L1.2 368.4C-3 381 3.8 394.6 16.4 398.8s26.2-2.6 30.4-15.2l18.9-56.8c.8-2.4 2.7-4.3 5.1-5.1l80.4-26.8L93.7 352.3C78.1 368 73.1 391.4 81.1 412l32.5 84.6c4.8 12.4 18.6 18.5 31 13.8s18.5-18.6 13.8-31l-32.5-84.6c-1.1-3-.4-6.3 1.8-8.5L160 353.9c1 52.1 43.6 94.1 96 94.1s95-41.9 96-94.1l32.3 32.3c2.2 2.2 2.9 5.6 1.8 8.5l-32.5 84.6c-4.8 12.4 1.4 26.3 13.8 31s26.3-1.4 31-13.8L430.9 412c7.9-20.7 3-44.1-12.7-59.7l-57.4-57.4 80.4 26.8c2.4 .8 4.3 2.7 5.1 5.1l18.9 56.8c4.2 12.6 17.8 19.4 30.4 15.2s19.4-17.8 15.2-30.4l-18.9-56.8c-5.6-16.7-18.7-29.8-35.4-35.4L395.9 256l60.5-20.2c16.7-5.6 29.8-18.7 35.4-35.4l18.9-56.8c4.2-12.6-2.6-26.2-15.2-30.4s-26.2 2.6-30.4 15.2l-18.9 56.8c-.8 2.4-2.7 4.3-5.1 5.1l-80.4 26.8 57.4-57.4c15.6-15.6 20.6-39 12.7-59.7L398.4 15.4C393.6 3 379.8-3.2 367.4 1.6s-18.5 18.6-13.8 31l32.5 84.6c1.1 3 .4 6.3-1.8 8.5L336 174.1V160c0-31.8-18.6-59.3-45.5-72.2c-9.1-4.4-18.5 3.3-18.5 13.4V112c0 8.8-7.2 16-16 16s-16-7.2-16-16V101.2c0-10.1-9.4-17.7-18.5-13.4C194.6 100.7 176 128.2 176 160v14.1l-48.3-48.3c-2.2-2.2-2.9-5.6-1.8-8.5l32.5-84.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "spinner": { + "aliases": { + "unicodes": { + "secondary": [ + "10f110" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "circle", + "loading", + "progress" + ] + }, + "unicode": "f110", + "label": "Spinner", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321866, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M304 48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zm0 416c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM48 304c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm464-48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM142.9 437c18.7-18.7 18.7-49.1 0-67.9s-49.1-18.7-67.9 0s-18.7 49.1 0 67.9s49.1 18.7 67.9 0zm0-294.2c18.7-18.7 18.7-49.1 0-67.9S93.7 56.2 75 75s-18.7 49.1 0 67.9s49.1 18.7 67.9 0zM369.1 437c18.7 18.7 49.1 18.7 67.9 0s18.7-49.1 0-67.9s-49.1-18.7-67.9 0s-18.7 49.1 0 67.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "splotch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5bc" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Ink", + "blob", + "blotch", + "glob", + "stain" + ] + }, + "unicode": "f5bc", + "label": "Splotch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208.5 62.3l28.1-36.9C248.8 9.4 267.8 0 288 0c28.5 0 53.6 18.7 61.8 46l17.8 59.4c10.3 34.4 36.1 62 69.8 74.6l39.8 14.9c20.9 7.9 34.8 27.9 34.8 50.2c0 16.9-7.9 32.8-21.5 42.9l-67.3 50.5c-24.3 18.2-37.2 47.9-33.8 78.1l2.5 22.7c4.3 38.7-26 72.6-65 72.6c-14.8 0-29.3-5.1-40.9-14.3l-55.3-44.3c-4.5-3.6-9.3-6.7-14.5-9.2c-15.8-7.9-33.7-10.4-51-7.3L82.4 451.9C47.8 458.2 16 431.6 16 396.5c0-13.2 4.7-26 13.1-36.2l11.2-13.4c14.6-17.4 22.6-39.4 22.6-62.1c0-18.8-5.5-37.2-15.8-53L8.8 173.5C3.1 164.7 0 154.4 0 143.9c0-33.4 30.1-58.8 63-53.2l51.3 8.7c35.9 6.1 72.2-8.2 94.2-37.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "spoon": { + "aliases": { + "names": [ + "utensil-spoon" + ], + "unicodes": { + "composite": [ + "1f944", + "f1b1" + ], + "secondary": [ + "10f2e5" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cutlery", + "dining", + "scoop", + "silverware", + "spoon", + "tableware" + ] + }, + "unicode": "f2e5", + "label": "Spoon", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M245.8 220.9c-14.5-17.6-21.8-39.2-21.8-60.8C224 80 320 0 416 0c53 0 96 43 96 96c0 96-80 192-160.2 192c-21.6 0-43.2-7.3-60.8-21.8L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L245.8 220.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "spotify": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1bc", + "label": "Spotify", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "spray-can": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5bd" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Paint", + "aerosol", + "design", + "graffiti", + "tag" + ] + }, + "unicode": "f5bd", + "label": "Spray Can", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 0h64c17.7 0 32 14.3 32 32v96H96V32c0-17.7 14.3-32 32-32zM0 256c0-53 43-96 96-96H224c53 0 96 43 96 96V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V256zm240 80A80 80 0 1 0 80 336a80 80 0 1 0 160 0zM256 64a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM384 32a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm64 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm32 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM448 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM384 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "spray-can-sparkles": { + "aliases": { + "names": [ + "air-freshener" + ], + "unicodes": { + "secondary": [ + "10f5d0" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "car", + "clean", + "deodorize", + "fresh", + "pine", + "scent" + ] + }, + "unicode": "f5d0", + "label": "Spray Can Sparkles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 32v96H224V32c0-17.7-14.3-32-32-32H128C110.3 0 96 14.3 96 32zm0 128c-53 0-96 43-96 96V464c0 26.5 21.5 48 48 48H272c26.5 0 48-21.5 48-48V256c0-53-43-96-96-96H96zm64 96a80 80 0 1 1 0 160 80 80 0 1 1 0-160zM384 48c0-1.4-1-3-2.2-3.6L352 32 339.6 2.2C339 1 337.4 0 336 0s-3 1-3.6 2.2L320 32 290.2 44.4C289 45 288 46.6 288 48c0 1.4 1 3 2.2 3.6L320 64l12.4 29.8C333 95 334.6 96 336 96s3-1 3.6-2.2L352 64l29.8-12.4C383 51 384 49.4 384 48zm76.4 45.8C461 95 462.6 96 464 96s3-1 3.6-2.2L480 64l29.8-12.4C511 51 512 49.4 512 48c0-1.4-1-3-2.2-3.6L480 32 467.6 2.2C467 1 465.4 0 464 0s-3 1-3.6 2.2L448 32 418.2 44.4C417 45 416 46.6 416 48c0 1.4 1 3 2.2 3.6L448 64l12.4 29.8zm7.2 100.4c-.6-1.2-2.2-2.2-3.6-2.2s-3 1-3.6 2.2L448 224l-29.8 12.4c-1.2 .6-2.2 2.2-2.2 3.6c0 1.4 1 3 2.2 3.6L448 256l12.4 29.8c.6 1.2 2.2 2.2 3.6 2.2s3-1 3.6-2.2L480 256l29.8-12.4c1.2-.6 2.2-2.2 2.2-3.6c0-1.4-1-3-2.2-3.6L480 224l-12.4-29.8zM448 144c0-1.4-1-3-2.2-3.6L416 128 403.6 98.2C403 97 401.4 96 400 96s-3 1-3.6 2.2L384 128l-29.8 12.4c-1.2 .6-2.2 2.2-2.2 3.6c0 1.4 1 3 2.2 3.6L384 160l12.4 29.8c.6 1.2 2.2 2.2 3.6 2.2s3-1 3.6-2.2L416 160l29.8-12.4c1.2-.6 2.2-2.2 2.2-3.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square": { + "aliases": { + "unicodes": { + "composite": [ + "25a0", + "25fb", + "25fc", + "f096" + ], + "secondary": [ + "10f0c8" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Square", + "black medium square", + "block", + "box", + "geometric", + "shape", + "square", + "white medium square" + ] + }, + "unicode": "f0c8", + "label": "Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321871, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96z" + }, + "regular": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 32C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H384zM384 80H64C55.16 80 48 87.16 48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-arrow-up-right": { + "aliases": { + "names": [ + "external-link-square" + ], + "unicodes": { + "secondary": [ + "10f14c" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "diagonal", + "new", + "open", + "send", + "share" + ] + }, + "unicode": "f14c", + "label": "Square Arrow Up Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384zM160 144c-13.3 0-24 10.7-24 24s10.7 24 24 24h94.1L119 327c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l135-135V328c0 13.3 10.7 24 24 24s24-10.7 24-24V168c0-13.3-10.7-24-24-24H160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-behance": { + "aliases": { + "names": [ + "behance-square" + ] + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.0.3", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1b5", + "label": "Behance Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-caret-down": { + "aliases": { + "names": [ + "caret-square-down" + ], + "unicodes": { + "secondary": [ + "10f150" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "caret-square-o-down", + "dropdown", + "expand", + "menu", + "more", + "triangle" + ] + }, + "unicode": "f150", + "label": "Square Caret Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 480c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0zM224 352c-6.7 0-13-2.8-17.6-7.7l-104-112c-6.5-7-8.2-17.2-4.4-25.9s12.5-14.4 22-14.4l208 0c9.5 0 18.2 5.7 22 14.4s2.1 18.9-4.4 25.9l-104 112c-4.5 4.9-10.9 7.7-17.6 7.7z" + }, + "regular": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 432c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0zm64-16c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320zM224 352c-6.7 0-13-2.8-17.6-7.7l-104-112c-6.5-7-8.2-17.2-4.4-25.9s12.5-14.4 22-14.4l208 0c9.5 0 18.2 5.7 22 14.4s2.1 18.9-4.4 25.9l-104 112c-4.5 4.9-10.9 7.7-17.6 7.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-caret-left": { + "aliases": { + "names": [ + "caret-square-left" + ], + "unicodes": { + "secondary": [ + "10f191" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "caret-square-o-left", + "previous", + "triangle" + ] + }, + "unicode": "f191", + "label": "Square Caret Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416zM128 256c0-6.7 2.8-13 7.7-17.6l112-104c7-6.5 17.2-8.2 25.9-4.4s14.4 12.5 14.4 22l0 208c0 9.5-5.7 18.2-14.4 22s-18.9 2.1-25.9-4.4l-112-104c-4.9-4.5-7.7-10.9-7.7-17.6z" + }, + "regular": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 416c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80c-8.8 0-16 7.2-16 16l0 320zm16 64c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480zm64-224c0-6.7 2.8-13 7.7-17.6l112-104c7-6.5 17.2-8.2 25.9-4.4s14.4 12.5 14.4 22l0 208c0 9.5-5.7 18.2-14.4 22s-18.9 2.1-25.9-4.4l-112-104c-4.9-4.5-7.7-10.9-7.7-17.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-caret-right": { + "aliases": { + "names": [ + "caret-square-right" + ], + "unicodes": { + "secondary": [ + "10f152" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "caret-square-o-right", + "forward", + "next", + "triangle" + ] + }, + "unicode": "f152", + "label": "Square Caret Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 96c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320zM320 256c0 6.7-2.8 13-7.7 17.6l-112 104c-7 6.5-17.2 8.2-25.9 4.4s-14.4-12.5-14.4-22l0-208c0-9.5 5.7-18.2 14.4-22s18.9-2.1 25.9 4.4l112 104c4.9 4.5 7.7 10.9 7.7 17.6z" + }, + "regular": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 96c0-8.8-7.2-16-16-16L64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320zM384 32c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l320 0zM320 256c0 6.7-2.8 13-7.7 17.6l-112 104c-7 6.5-17.2 8.2-25.9 4.4s-14.4-12.5-14.4-22l0-208c0-9.5 5.7-18.2 14.4-22s18.9-2.1 25.9 4.4l112 104c4.9 4.5 7.7 10.9 7.7 17.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-caret-up": { + "aliases": { + "names": [ + "caret-square-up" + ], + "unicodes": { + "secondary": [ + "10f151" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "caret-square-o-up", + "collapse", + "triangle", + "upload" + ] + }, + "unicode": "f151", + "label": "Square Caret Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM224 160c6.7 0 13 2.8 17.6 7.7l104 112c6.5 7 8.2 17.2 4.4 25.9s-12.5 14.4-22 14.4H120c-9.5 0-18.2-5.7-22-14.4s-2.1-18.9 4.4-25.9l104-112c4.5-4.9 10.9-7.7 17.6-7.7z" + }, + "regular": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80zM0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zm224 64c6.7 0 13 2.8 17.6 7.7l104 112c6.5 7 8.2 17.2 4.4 25.9s-12.5 14.4-22 14.4l-208 0c-9.5 0-18.2-5.7-22-14.4s-2.1-18.9 4.4-25.9l104-112c4.5-4.9 10.9-7.7 17.6-7.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-check": { + "aliases": { + "names": [ + "check-square" + ], + "unicodes": { + "composite": [ + "2611", + "2705", + "f046" + ], + "secondary": [ + "10f14a" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "box", + "button", + "check", + "check box with check", + "check mark button", + "checkmark", + "confirm", + "correct", + "done", + "mark", + "ok", + "select", + "success", + "tick", + "todo", + "yes", + "✓" + ] + }, + "unicode": "f14a", + "label": "Square Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321868, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + }, + "regular": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M211.8 339.8C200.9 350.7 183.1 350.7 172.2 339.8L108.2 275.8C97.27 264.9 97.27 247.1 108.2 236.2C119.1 225.3 136.9 225.3 147.8 236.2L192 280.4L300.2 172.2C311.1 161.3 328.9 161.3 339.8 172.2C350.7 183.1 350.7 200.9 339.8 211.8L211.8 339.8zM0 96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80H64C55.16 80 48 87.16 48 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-dribbble": { + "aliases": { + "names": [ + "dribbble-square" + ] + }, + "changes": [ + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f397", + "label": "Dribbble Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-envelope": { + "aliases": { + "names": [ + "envelope-square" + ], + "unicodes": { + "secondary": [ + "10f199" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "unicode": "f199", + "label": "Square Envelope", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM218 271.7L64.2 172.4C66 156.4 79.5 144 96 144H352c16.5 0 30 12.4 31.8 28.4L230 271.7c-1.8 1.2-3.9 1.8-6 1.8s-4.2-.6-6-1.8zm29.4 26.9L384 210.4V336c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V210.4l136.6 88.2c7 4.5 15.1 6.9 23.4 6.9s16.4-2.4 23.4-6.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-facebook": { + "aliases": { + "names": [ + "facebook-square" + ] + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.8.2", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "social network" + ] + }, + "unicode": "f082", + "label": "Facebook Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-font-awesome": { + "changes": [ + "5.0.0", + "5.0.1", + "6.0.0-beta1", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e5ad", + "label": "Font Awesome in Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384.5,32.5h-320c-35.3,0-64,28.7-64,64v320c0,35.3,28.7,64,64,64h320c35.3,0,64-28.7,64-64v-320 C448.5,61.2,419.8,32.5,384.5,32.5z M336.5,312.5c-31.6,11.2-41.2,16-59.8,16c-31.4,0-43.2-16-74.6-16c-10.2,0-18.2,1.6-25.6,4v-32 c7.4-2.2,15.4-4,25.6-4c31.2,0,43.2,16,74.6,16c10.2,0,17.8-1.4,27.8-4.6v-96c-10,3.2-17.6,4.6-27.8,4.6c-31.4,0-43.2-16-74.6-16 c-25.4,0-37.4,10.4-57.6,14.4v153.6c0,8.8-7.2,16-16,16c-8.8,0-16-7.2-16-16v-192c0-8.8,7.2-16,16-16c8.8,0,16,7.2,16,16v6.4 c20.2-4,32.2-14.4,57.6-14.4c31.2,0,43.2,16,74.6,16c18.6,0,28.2-4.8,59.8-16V312.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-font-awesome-stroke": { + "aliases": { + "names": [ + "font-awesome-alt" + ] + }, + "changes": [ + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f35c", + "label": "Font Awesome in Square with Stroke Outline", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M201.6,152c-25.4,0-37.4,10.4-57.6,14.4V160c0-8.8-7.2-16-16-16s-16,7.2-16,16v192c0,0.8,0.1,1.6,0.2,2.4 c0.1,0.4,0.1,0.8,0.2,1.2c1.6,7.1,8,12.4,15.6,12.4s14-5.3,15.6-12.4c0.1-0.4,0.2-0.8,0.2-1.2c0.1-0.8,0.2-1.6,0.2-2.4V198.4 c4-0.8,7.7-1.8,11.2-3c14.3-4.7,26-11.4,46.4-11.4c31.4,0,43.2,16,74.6,16c8.9,0,15.9-1.1,24.2-3.5c1.2-0.3,2.4-0.7,3.6-1.1v96 c-10,3.2-17.6,4.6-27.8,4.6c-31.4,0-43.4-16-74.6-16c-10.2,0-18.2,1.8-25.6,4v32c7.4-2.4,15.4-4,25.6-4c31.4,0,43.2,16,74.6,16 c18.6,0,28.2-4.8,59.8-16V152c-31.6,11.2-41.2,16-59.8,16C244.8,168,232.8,152,201.6,152z M384,32H64C28.7,32,0,60.7,0,96v320 c0,35.3,28.7,64,64,64h320c35.3,0,64-28.7,64-64V96C448,60.7,419.3,32,384,32z M416,416c0,17.6-14.4,32-32,32H64 c-17.6,0-32-14.4-32-32V96c0-17.6,14.4-32,32-32h320c17.6,0,32,14.4,32,32V416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-full": { + "aliases": { + "unicodes": { + "composite": [ + "1f7e5", + "1f7e6", + "1f7e7", + "1f7e8", + "1f7e9", + "1f7ea", + "1f7eb", + "2b1b", + "2b1c" + ], + "secondary": [ + "10f45c" + ] + } + }, + "changes": [ + "5.0.5", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "black large square", + "block", + "blue", + "blue square", + "box", + "brown", + "brown square", + "geometric", + "green", + "green square", + "orange", + "orange square", + "purple", + "purple square", + "red", + "red square", + "shape", + "square", + "white large square", + "yellow", + "yellow square" + ] + }, + "unicode": "f45c", + "label": "Square Full", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660014061, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 0H512V512H0V0z" + }, + "regular": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 0V512H0V0H512zM464 48H48V464H464V48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-git": { + "aliases": { + "names": [ + "git-square" + ] + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.8.2", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d2", + "label": "Git Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M100.59 334.24c48.57 3.31 58.95 2.11 58.95 11.94 0 20-65.55 20.06-65.55 1.52.01-5.09 3.29-9.4 6.6-13.46zm27.95-116.64c-32.29 0-33.75 44.47-.75 44.47 32.51 0 31.71-44.47.75-44.47zM448 80v352a48 48 0 0 1-48 48H48a48 48 0 0 1-48-48V80a48 48 0 0 1 48-48h352a48 48 0 0 1 48 48zm-227 69.31c0 14.49 8.38 22.88 22.86 22.88 14.74 0 23.13-8.39 23.13-22.88S258.62 127 243.88 127c-14.48 0-22.88 7.84-22.88 22.31zM199.18 195h-49.55c-25-6.55-81.56-4.85-81.56 46.75 0 18.8 9.4 32 21.85 38.11C74.23 294.23 66.8 301 66.8 310.6c0 6.87 2.79 13.22 11.18 16.76-8.9 8.4-14 14.48-14 25.92C64 373.35 81.53 385 127.52 385c44.22 0 69.87-16.51 69.87-45.73 0-36.67-28.23-35.32-94.77-39.38l8.38-13.43c17 4.74 74.19 6.23 74.19-42.43 0-11.69-4.83-19.82-9.4-25.67l23.38-1.78zm84.34 109.84l-13-1.78c-3.82-.51-4.07-1-4.07-5.09V192.52h-52.6l-2.79 20.57c15.75 5.55 17 4.86 17 10.17V298c0 5.62-.31 4.58-17 6.87v20.06h72.42zM384 315l-6.87-22.37c-40.93 15.37-37.85-12.41-37.85-16.73v-60.72h37.85v-25.41h-35.82c-2.87 0-2 2.52-2-38.63h-24.18c-2.79 27.7-11.68 38.88-34 41.42v22.62c20.47 0 19.82-.85 19.82 2.54v66.57c0 28.72 11.43 40.91 41.67 40.91 14.45 0 30.45-4.83 41.38-10.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-github": { + "aliases": { + "names": [ + "github-square" + ] + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "unicode": "f092", + "label": "GitHub Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-gitlab": { + "aliases": { + "names": [ + "gitlab-square" + ] + }, + "changes": [ + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e5ae", + "label": "Square Gitlab", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 32H400C426.5 32 448 53.5 448 80V432C448 458.5 426.5 480 400 480H48C21.5 480 0 458.5 0 432V80C0 53.5 21.5 32 48 32zM382.1 224.9L337.5 108.5C336.6 106.2 334.9 104.2 332.9 102.9C331.3 101.9 329.5 101.3 327.7 101.1C325.9 100.9 324 101.2 322.3 101.8C320.6 102.5 319 103.5 317.8 104.9C316.6 106.3 315.7 107.9 315.2 109.7L285 201.9H162.1L132.9 109.7C132.4 107.9 131.4 106.3 130.2 104.9C128.1 103.6 127.4 102.5 125.7 101.9C123.1 101.2 122.1 100.1 120.3 101.1C118.5 101.3 116.7 101.9 115.1 102.9C113.1 104.2 111.5 106.2 110.6 108.5L65.94 224.9L65.47 226.1C59.05 242.9 58.26 261.3 63.22 278.6C68.18 295.9 78.62 311.1 92.97 321.9L93.14 322L93.52 322.3L161.4 373.2L215.6 414.1C217.1 415.1 220.9 416.9 223.9 416.9C226.9 416.9 229.9 415.1 232.3 414.1L286.4 373.2L354.8 322L355 321.9C369.4 311 379.8 295.8 384.8 278.6C389.7 261.3 388.1 242.9 382.5 226.1L382.1 224.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-google-plus": { + "aliases": { + "names": [ + "google-plus-square" + ] + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "social network" + ] + }, + "unicode": "f0d4", + "label": "Google Plus Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-h": { + "aliases": { + "names": [ + "h-square" + ], + "unicodes": { + "secondary": [ + "10f0fd" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "emergency", + "hospital", + "hotel", + "letter", + "map" + ] + }, + "unicode": "f0fd", + "label": "Square H", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM336 152V256 360c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H160l0 80c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-208c0-13.3 10.7-24 24-24s24 10.7 24 24v80H288V152c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-hacker-news": { + "aliases": { + "names": [ + "hacker-news-square" + ] + }, + "changes": [ + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3af", + "label": "Hacker News Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-instagram": { + "aliases": { + "names": [ + "instagram-square" + ] + }, + "changes": [ + "5.12.1", + "5.14.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e055", + "label": "Instagram Square", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224,202.66A53.34,53.34,0,1,0,277.36,256,53.38,53.38,0,0,0,224,202.66Zm124.71-41a54,54,0,0,0-30.41-30.41c-21-8.29-71-6.43-94.3-6.43s-73.25-1.93-94.31,6.43a54,54,0,0,0-30.41,30.41c-8.28,21-6.43,71.05-6.43,94.33S91,329.26,99.32,350.33a54,54,0,0,0,30.41,30.41c21,8.29,71,6.43,94.31,6.43s73.24,1.93,94.3-6.43a54,54,0,0,0,30.41-30.41c8.35-21,6.43-71.05,6.43-94.33S357.1,182.74,348.75,161.67ZM224,338a82,82,0,1,1,82-82A81.9,81.9,0,0,1,224,338Zm85.38-148.3a19.14,19.14,0,1,1,19.13-19.14A19.1,19.1,0,0,1,309.42,189.74ZM400,32H48A48,48,0,0,0,0,80V432a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V80A48,48,0,0,0,400,32ZM382.88,322c-1.29,25.63-7.14,48.34-25.85,67s-41.4,24.63-67,25.85c-26.41,1.49-105.59,1.49-132,0-25.63-1.29-48.26-7.15-67-25.85s-24.63-41.42-25.85-67c-1.49-26.42-1.49-105.61,0-132,1.29-25.63,7.07-48.34,25.85-67s41.47-24.56,67-25.78c26.41-1.49,105.59-1.49,132,0,25.63,1.29,48.33,7.15,67,25.85s24.63,41.42,25.85,67.05C384.37,216.44,384.37,295.56,382.88,322Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-js": { + "aliases": { + "names": [ + "js-square" + ] + }, + "changes": [ + "5.0.0", + "5.0.3", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3b9", + "label": "JavaScript (JS) Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-lastfm": { + "aliases": { + "names": [ + "lastfm-square" + ] + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.0.11", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f203", + "label": "last.fm Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-minus": { + "aliases": { + "names": [ + "minus-square" + ], + "unicodes": { + "composite": [ + "f147" + ], + "secondary": [ + "10f146" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "delete", + "hide", + "minify", + "negative", + "remove", + "shape", + "trash" + ] + }, + "unicode": "f146", + "label": "Square Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321869, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm88 200H296c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + }, + "regular": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M312 232C325.3 232 336 242.7 336 256C336 269.3 325.3 280 312 280H136C122.7 280 112 269.3 112 256C112 242.7 122.7 232 136 232H312zM0 96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80H64C55.16 80 48 87.16 48 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-nfi": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "non-food item", + "supplies" + ] + }, + "unicode": "e576", + "label": "Square Nfi", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm75.7 64.6C68.8 162.5 64 168.8 64 176V336c0 8.8 7.2 16 16 16s16-7.2 16-16V233.8l66.3 110.5c3.7 6.2 11.1 9.1 18 7.2s11.7-8.2 11.7-15.4V176c0-8.8-7.2-16-16-16s-16 7.2-16 16V278.2L93.7 167.8c-3.7-6.2-11.1-9.1-18-7.2zM224 176v64 96c0 8.8 7.2 16 16 16s16-7.2 16-16V256h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H256V192h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H240c-8.8 0-16 7.2-16 16zm160 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V336c0 8.8 7.2 16 16 16s16-7.2 16-16V176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-odnoklassniki": { + "aliases": { + "names": [ + "odnoklassniki-square" + ] + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f264", + "label": "Odnoklassniki Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-parking": { + "aliases": { + "names": [ + "parking" + ], + "unicodes": { + "composite": [ + "1f17f" + ], + "secondary": [ + "10f540" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "car", + "garage", + "meter", + "parking" + ] + }, + "unicode": "f540", + "label": "Square Parking", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM192 256h48c17.7 0 32-14.3 32-32s-14.3-32-32-32H192v64zm48 64H192v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 168c0-22.1 17.9-40 40-40h72c53 0 96 43 96 96s-43 96-96 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-pen": { + "aliases": { + "names": [ + "pen-square", + "pencil-square" + ], + "unicodes": { + "secondary": [ + "10f14b" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "pencil-square", + "update", + "write" + ] + }, + "unicode": "f14b", + "label": "Square Pen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM325.8 139.7l14.4 14.4c15.6 15.6 15.6 40.9 0 56.6l-21.4 21.4-71-71 21.4-21.4c15.6-15.6 40.9-15.6 56.6 0zM119.9 289L225.1 183.8l71 71L190.9 359.9c-4.1 4.1-9.2 7-14.9 8.4l-60.1 15c-5.5 1.4-11.2-.2-15.2-4.2s-5.6-9.7-4.2-15.2l15-60.1c1.4-5.6 4.3-10.8 8.4-14.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-person-confined": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "captivity", + "confined" + ] + }, + "unicode": "e577", + "label": "Square Person Confined", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm96 112a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm80 104c0-30.9 25.1-56 56-56s56 25.1 56 56V350.1c0 36.4-29.5 65.9-65.9 65.9c-17.5 0-34.3-6.9-46.6-19.3L184.8 342l-28.1 56.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l48-96c4.6-9.2 13.3-15.6 23.5-17.3s20.5 1.7 27.8 9L240 306.7V248z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-phone": { + "aliases": { + "names": [ + "phone-square" + ], + "unicodes": { + "secondary": [ + "10f098" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "support", + "telephone", + "voice" + ] + }, + "unicode": "f098", + "label": "Square Phone", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm90.7 96.7c9.7-2.6 19.9 2.3 23.7 11.6l20 48c3.4 8.2 1 17.6-5.8 23.2L168 231.7c16.6 35.2 45.1 63.7 80.3 80.3l20.2-24.7c5.6-6.8 15-9.2 23.2-5.8l48 20c9.3 3.9 14.2 14 11.6 23.7l-12 44C336.9 378 329 384 320 384C196.3 384 96 283.7 96 160c0-9 6-16.9 14.7-19.3l44-12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-phone-flip": { + "aliases": { + "names": [ + "phone-square-alt" + ], + "unicodes": { + "secondary": [ + "10f87b" + ] + } + }, + "changes": [ + "5.9.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "support", + "telephone", + "voice" + ] + }, + "unicode": "f87b", + "label": "Square Phone Flip", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384zm-90.7 96.7c-9.7-2.6-19.9 2.3-23.7 11.6l-20 48c-3.4 8.2-1 17.6 5.8 23.2L280 231.7c-16.6 35.2-45.1 63.7-80.3 80.3l-20.2-24.7c-5.6-6.8-15-9.2-23.2-5.8l-48 20c-9.3 3.9-14.2 14-11.6 23.7l12 44C111.1 378 119 384 128 384c123.7 0 224-100.3 224-224c0-9-6-16.9-14.7-19.3l-44-12z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-pied-piper": { + "aliases": { + "names": [ + "pied-piper-square" + ] + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e01e", + "label": "Pied Piper Square Logo (Old)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-pinterest": { + "aliases": { + "names": [ + "pinterest-square" + ] + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f0d3", + "label": "Pinterest Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-plus": { + "aliases": { + "names": [ + "plus-square" + ], + "unicodes": { + "composite": [ + "f196" + ], + "secondary": [ + "10f0fe" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "expand", + "new", + "positive", + "shape" + ] + }, + "unicode": "f0fe", + "label": "Square Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321869, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM200 344V280H136c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V168c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H248v64c0 13.3-10.7 24-24 24s-24-10.7-24-24z" + }, + "regular": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M200 344V280H136C122.7 280 112 269.3 112 256C112 242.7 122.7 232 136 232H200V168C200 154.7 210.7 144 224 144C237.3 144 248 154.7 248 168V232H312C325.3 232 336 242.7 336 256C336 269.3 325.3 280 312 280H248V344C248 357.3 237.3 368 224 368C210.7 368 200 357.3 200 344zM0 96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80H64C55.16 80 48 87.16 48 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "square-poll-horizontal": { + "aliases": { + "names": [ + "poll-h" + ], + "unicodes": { + "secondary": [ + "10f682" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "graph", + "results", + "survey", + "trend", + "vote", + "voting" + ] + }, + "unicode": "f682", + "label": "Square Poll Horizontal", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 96c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320zM256 160c0 17.7-14.3 32-32 32l-96 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l96 0c17.7 0 32 14.3 32 32zm64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l192 0zM192 352c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l32 0c17.7 0 32 14.3 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-poll-vertical": { + "aliases": { + "names": [ + "poll" + ], + "unicodes": { + "secondary": [ + "10f681" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "graph", + "results", + "survey", + "trend", + "vote", + "voting" + ] + }, + "unicode": "f681", + "label": "Square Poll Vertical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 192c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V256c0-17.7 14.3-32 32-32zm64-64c0-17.7 14.3-32 32-32s32 14.3 32 32V352c0 17.7-14.3 32-32 32s-32-14.3-32-32V160zM320 288c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V320c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-reddit": { + "aliases": { + "names": [ + "reddit-square" + ] + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a2", + "label": "reddit Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-root-variable": { + "aliases": { + "names": [ + "square-root-alt" + ], + "unicodes": { + "secondary": [ + "10f698" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "calculus", + "division", + "math" + ] + }, + "unicode": "f698", + "label": "Square Root Variable", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M282.6 78.1c8-27.3 33-46.1 61.4-46.1H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H344L238.7 457c-3.6 12.3-14.1 21.2-26.8 22.8s-25.1-4.6-31.5-15.6L77.6 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H77.6c22.8 0 43.8 12.1 55.3 31.8l65.2 111.8L282.6 78.1zM393.4 233.4c12.5-12.5 32.8-12.5 45.3 0L480 274.7l41.4-41.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L525.3 320l41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L480 365.3l-41.4 41.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L434.7 320l-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-rss": { + "aliases": { + "names": [ + "rss-square" + ], + "unicodes": { + "secondary": [ + "10f143" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blog", + "feed", + "journal", + "news", + "writing" + ] + }, + "unicode": "f143", + "label": "Square Rss", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM96 136c0-13.3 10.7-24 24-24c137 0 248 111 248 248c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-110.5-89.5-200-200-200c-13.3 0-24-10.7-24-24zm0 96c0-13.3 10.7-24 24-24c83.9 0 152 68.1 152 152c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-57.4-46.6-104-104-104c-13.3 0-24-10.7-24-24zm0 120a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-share-nodes": { + "aliases": { + "names": [ + "share-alt-square" + ], + "unicodes": { + "secondary": [ + "10f1e1" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "unicode": "f1e1", + "label": "Square Share Nodes", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321870, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM384 160c0 35.3-28.7 64-64 64c-15.4 0-29.5-5.4-40.6-14.5L194.1 256l85.3 46.5c11-9.1 25.2-14.5 40.6-14.5c35.3 0 64 28.7 64 64s-28.7 64-64 64s-64-28.7-64-64c0-2.5 .1-4.9 .4-7.3L174.5 300c-11.7 12.3-28.2 20-46.5 20c-35.3 0-64-28.7-64-64s28.7-64 64-64c18.3 0 34.8 7.7 46.5 20l81.9-44.7c-.3-2.4-.4-4.9-.4-7.3c0-35.3 28.7-64 64-64s64 28.7 64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-snapchat": { + "aliases": { + "names": [ + "snapchat-square" + ] + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2ad", + "label": "Snapchat Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384,32H64A64,64,0,0,0,0,96V416a64,64,0,0,0,64,64H384a64,64,0,0,0,64-64V96A64,64,0,0,0,384,32Zm-3.907,319.309-.083.1a32.364,32.364,0,0,1-8.717,6.823,90.26,90.26,0,0,1-20.586,8.2,12.694,12.694,0,0,0-3.852,1.76c-2.158,1.909-2.1,4.64-4.4,8.55a23.137,23.137,0,0,1-6.84,7.471c-6.707,4.632-14.244,4.923-22.23,5.23-7.214.274-15.39.581-24.729,3.669-3.761,1.245-7.753,3.694-12.377,6.533-11.265,6.9-26.68,16.353-52.3,16.353s-40.925-9.4-52.106-16.279c-4.657-2.888-8.675-5.362-12.543-6.64-9.339-3.08-17.516-3.4-24.729-3.67-7.986-.307-15.523-.6-22.231-5.229a23.085,23.085,0,0,1-6.01-6.11c-3.2-4.632-2.855-7.8-5.254-9.895a13.428,13.428,0,0,0-4.1-1.834,89.986,89.986,0,0,1-20.313-8.127,32.905,32.905,0,0,1-8.3-6.284c-6.583-6.757-8.276-14.776-5.686-21.824,3.436-9.338,11.571-12.111,19.4-16.262,14.776-8.027,26.348-18.055,34.433-29.884a68.236,68.236,0,0,0,5.985-10.567c.789-2.158.772-3.329.241-4.416a7.386,7.386,0,0,0-2.208-2.217c-2.532-1.676-5.113-3.353-6.882-4.5-3.27-2.141-5.868-3.818-7.529-4.98-6.267-4.383-10.65-9.04-13.4-14.245a28.4,28.4,0,0,1-1.369-23.584c4.134-10.924,14.469-17.706,26.978-17.706a37.141,37.141,0,0,1,7.845.83c.689.15,1.37.307,2.042.482-.108-7.43.058-15.357.722-23.119,2.358-27.261,11.912-41.589,21.874-52.994a86.836,86.836,0,0,1,22.28-17.931C188.254,100.383,205.312,96,224,96s35.828,4.383,50.944,13.016a87.169,87.169,0,0,1,22.239,17.9c9.961,11.406,19.516,25.709,21.874,52.995a231.194,231.194,0,0,1,.713,23.118c.673-.174,1.362-.332,2.051-.481a37.131,37.131,0,0,1,7.844-.83c12.5,0,22.82,6.782,26.971,17.706a28.37,28.37,0,0,1-1.4,23.559c-2.74,5.2-7.123,9.861-13.39,14.244-1.668,1.187-4.258,2.864-7.529,4.981-1.835,1.187-4.541,2.947-7.164,4.682a6.856,6.856,0,0,0-1.951,2.034c-.506,1.046-.539,2.191.166,4.208a69.015,69.015,0,0,0,6.085,10.792c8.268,12.1,20.188,22.313,35.454,30.407,1.486.772,2.98,1.5,4.441,2.258.722.332,1.569.763,2.491,1.3,4.9,2.723,9.2,6.01,11.455,12.153C387.821,336.915,386.269,344.7,380.093,351.309Zm-16.719-18.461c-50.313-24.314-58.332-61.918-58.689-64.749-.431-3.379-.921-6.035,2.806-9.472,3.594-3.328,19.541-13.19,23.965-16.278,7.33-5.114,10.534-10.219,8.16-16.495-1.66-4.316-5.686-5.976-9.961-5.976a18.5,18.5,0,0,0-3.993.448c-8.035,1.743-15.838,5.769-20.354,6.857a7.1,7.1,0,0,1-1.66.224c-2.408,0-3.279-1.071-3.088-3.968.564-8.783,1.759-25.925.373-41.937-1.884-22.032-8.99-32.948-17.432-42.6-4.051-4.624-23.135-24.654-59.536-24.654S168.53,134.359,164.479,139c-8.434,9.654-15.531,20.57-17.432,42.6-1.386,16.013-.141,33.147.373,41.937.166,2.756-.68,3.968-3.088,3.968a7.1,7.1,0,0,1-1.66-.224c-4.507-1.087-12.31-5.113-20.346-6.856a18.494,18.494,0,0,0-3.993-.449c-4.25,0-8.3,1.636-9.961,5.977-2.374,6.276.847,11.381,8.168,16.494,4.425,3.088,20.371,12.958,23.966,16.279,3.719,3.437,3.237,6.093,2.805,9.471-.356,2.79-8.384,40.394-58.689,64.749-2.946,1.428-7.96,4.45.88,9.331,13.88,7.628,23.111,6.807,30.3,11.43,6.093,3.927,2.5,12.394,6.923,15.449,5.454,3.76,21.583-.266,42.335,6.6,17.433,5.744,28.116,22.015,58.963,22.015s41.788-16.3,58.938-21.973c20.795-6.865,36.89-2.839,42.336-6.6,4.433-3.055.822-11.522,6.923-15.448,7.181-4.624,16.411-3.8,30.3-11.472C371.36,337.355,366.346,334.333,363.374,332.848Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-steam": { + "aliases": { + "names": [ + "steam-square" + ] + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1b7", + "label": "Steam Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-tumblr": { + "aliases": { + "names": [ + "tumblr-square" + ] + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f174", + "label": "Tumblr Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-twitter": { + "aliases": { + "names": [ + "twitter-square" + ] + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "social network", + "tweet" + ] + }, + "unicode": "f081", + "label": "Twitter Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-up-right": { + "aliases": { + "names": [ + "external-link-square-alt" + ], + "unicodes": { + "composite": [ + "2197" + ], + "secondary": [ + "10f360" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "diagonal", + "direction", + "external-link-square", + "intercardinal", + "new", + "northeast", + "open", + "share", + "up-right arrow" + ] + }, + "unicode": "f360", + "label": "Square Up Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384zM320 313.4V176c0-8.8-7.2-16-16-16H166.6c-12.5 0-22.6 10.1-22.6 22.6c0 6 2.4 11.8 6.6 16L184 232l-66.3 66.3C114 302 112 306.9 112 312s2 10 5.7 13.7l36.7 36.7c3.6 3.6 8.5 5.7 13.7 5.7s10-2 13.7-5.7L248 296l33.4 33.4c4.2 4.2 10 6.6 16 6.6c12.5 0 22.6-10.1 22.6-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-viadeo": { + "aliases": { + "names": [ + "viadeo-square" + ] + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.7.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2aa", + "label": "Viadeo Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-vimeo": { + "aliases": { + "names": [ + "vimeo-square" + ] + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f194", + "label": "Vimeo Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-virus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "coronavirus", + "covid-19", + "disease", + "flu", + "infection", + "pandemic" + ] + }, + "unicode": "e578", + "label": "Square Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM223.8 93.7c13.3 0 24 10.7 24 24c0 29.3 35.4 43.9 56.1 23.2c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9c-20.7 20.7-6 56.1 23.2 56.1c13.3 0 24 10.7 24 24s-10.7 24-24 24c-29.3 0-43.9 35.4-23.2 56.1c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0c-20.7-20.7-56.1-6-56.1 23.2c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-29.3-35.4-43.9-56.1-23.2c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9c20.7-20.7 6-56.1-23.2-56.1c-13.3 0-24-10.7-24-24s10.7-24 24-24c29.3 0 43.9-35.4 23.2-56.1c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0c20.7 20.7 56.1 6 56.1-23.2c0-13.3 10.7-24 24-24zM192 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm88 32a24 24 0 1 0 -48 0 24 24 0 1 0 48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-whatsapp": { + "aliases": { + "names": [ + "whatsapp-square" + ] + }, + "changes": [ + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f40c", + "label": "What's App Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-xing": { + "aliases": { + "names": [ + "xing-square" + ] + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f169", + "label": "Xing Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "square-xmark": { + "aliases": { + "names": [ + "times-square", + "xmark-square" + ], + "unicodes": { + "composite": [ + "274e" + ], + "secondary": [ + "10f2d3" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "close", + "cross", + "cross mark button", + "incorrect", + "mark", + "notice", + "notification", + "notify", + "problem", + "square", + "window", + "wrong", + "x", + "×" + ] + }, + "unicode": "f2d3", + "label": "Square Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321870, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm79 143c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "square-youtube": { + "aliases": { + "names": [ + "youtube-square" + ], + "unicodes": { + "composite": [ + "f166" + ] + } + }, + "changes": [ + "5.0.3", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f431", + "label": "YouTube Square", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "squarespace": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5be", + "label": "Squarespace", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M186.12 343.34c-9.65 9.65-9.65 25.29 0 34.94 9.65 9.65 25.29 9.65 34.94 0L378.24 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.95 445.1c19.27 19.29 50.53 19.31 69.82.04l.04-.04 119.25-119.24c38.59-38.59 38.59-101.14 0-139.72-38.59-38.59-101.15-38.59-139.72 0l-157.22 157.2zm244.53-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.18c-19.27 19.29-50.53 19.31-69.82.05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01.01c-9.65 9.64-9.66 25.28-.02 34.93l.02.02c38.58 38.57 101.14 38.57 139.72 0l157.2-157.2c9.65-9.65 9.65-25.29.01-34.93zm-261.99 87.33l157.18-157.18c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.72 290.93c-19.28 19.29-50.56 19.3-69.85.01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218.03 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02.02L28.93 186.14c-38.58 38.59-38.58 101.14 0 139.72 38.6 38.59 101.13 38.59 139.73.01zm-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.21-157.19c19.28-19.29 50.55-19.3 69.84-.02l.02.02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.13-38.59-139.72 0L81.33 238.54c-9.65 9.64-9.65 25.28-.01 34.93h.01z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stack-exchange": { + "changes": [ + "4.0.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f18d", + "label": "Stack Exchange", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stack-overflow": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f16c", + "label": "Stack Overflow", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M290.7 311L95 269.7 86.8 309l195.7 41zm51-87L188.2 95.7l-25.5 30.8 153.5 128.3zm-31.2 39.7L129.2 179l-16.7 36.5L293.7 300zM262 32l-32 24 119.3 160.3 32-24zm20.5 328h-200v39.7h200zm39.7 80H42.7V320h-40v160h359.5V320h-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stackpath": { + "changes": [ + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f842", + "label": "Stackpath", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M244.6 232.4c0 8.5-4.26 20.49-21.34 20.49h-19.61v-41.47h19.61c17.13 0 21.34 12.36 21.34 20.98zM448 32v448H0V32zM151.3 287.84c0-21.24-12.12-34.54-46.72-44.85-20.57-7.41-26-10.91-26-18.63s7-14.61 20.41-14.61c14.09 0 20.79 8.45 20.79 18.35h30.7l.19-.57c.5-19.57-15.06-41.65-51.12-41.65-23.37 0-52.55 10.75-52.55 38.29 0 19.4 9.25 31.29 50.74 44.37 17.26 6.15 21.91 10.4 21.91 19.48 0 15.2-19.13 14.23-19.47 14.23-20.4 0-25.65-9.1-25.65-21.9h-30.8l-.18.56c-.68 31.32 28.38 45.22 56.63 45.22 29.98 0 51.12-13.55 51.12-38.29zm125.38-55.63c0-25.3-18.43-45.46-53.42-45.46h-51.78v138.18h32.17v-47.36h19.61c30.25 0 53.42-15.95 53.42-45.36zM297.94 325L347 186.78h-31.09L268 325zm106.52-138.22h-31.09L325.46 325h29.94z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "staff-snake": { + "aliases": { + "names": [ + "rod-asclepius", + "rod-snake", + "staff-aesculapius" + ] + }, + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "asclepius", + "asklepian", + "health", + "serpent", + "wellness" + ] + }, + "unicode": "e579", + "label": "Staff Snake", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M222.6 43.2l-.2 4.8H288c53 0 96 43 96 96s-43 96-96 96H248V160h40c8.8 0 16-7.2 16-16s-7.2-16-16-16H248 220l-4.5 144H256c53 0 96 43 96 96s-43 96-96 96H240V384h16c8.8 0 16-7.2 16-16s-7.2-16-16-16H213l-3.1 99.5L208.5 495l0 1c-.3 8.9-7.6 16-16.5 16s-16.2-7.1-16.5-16l0-1-1-31H136c-22.1 0-40-17.9-40-40s17.9-40 40-40h36l-1-32H152c-53 0-96-43-96-96c0-47.6 34.6-87.1 80-94.7V256c0 8.8 7.2 16 16 16h16.5L164 128H136 122.6c-9 18.9-28.3 32-50.6 32H56c-30.9 0-56-25.1-56-56S25.1 48 56 48h8 8 89.5l-.1-4.8L161 32c0-.7 0-1.3 0-1.9c.5-16.6 14.1-30 31-30s30.5 13.4 31 30c0 .6 0 1.3 0 1.9l-.4 11.2zM64 112a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stairs": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exit", + "steps", + "up" + ] + }, + "unicode": "e289", + "label": "Stairs", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 64c0-17.7 14.3-32 32-32H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H448v96c0 17.7-14.3 32-32 32H320v96c0 17.7-14.3 32-32 32H192v96c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h96V320c0-17.7 14.3-32 32-32h96V192c0-17.7 14.3-32 32-32h96V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stamp": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5bf" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "certificate", + "imprint", + "rubber", + "seal" + ] + }, + "unicode": "f5bf", + "label": "Stamp", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M312 201.8c0-17.4 9.2-33.2 19.9-47C344.5 138.5 352 118.1 352 96c0-53-43-96-96-96s-96 43-96 96c0 22.1 7.5 42.5 20.1 58.8c10.7 13.8 19.9 29.6 19.9 47c0 29.9-24.3 54.2-54.2 54.2H112C50.1 256 0 306.1 0 368c0 20.9 13.4 38.7 32 45.3V464c0 26.5 21.5 48 48 48H432c26.5 0 48-21.5 48-48V413.3c18.6-6.6 32-24.4 32-45.3c0-61.9-50.1-112-112-112H366.2c-29.9 0-54.2-24.3-54.2-54.2zM416 416v32H96V416H416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stapler": { + "changes": [ + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "desktop", + "milton", + "office", + "paperclip", + "staple" + ] + }, + "unicode": "e5af", + "label": "Stapler", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 299.3V304 432c0 26.5-21.5 48-48 48H512 448 64c-17.7 0-32-14.3-32-32s14.3-32 32-32H448V368H96c-17.7 0-32-14.3-32-32V219.4L33.8 214C14.2 210.5 0 193.5 0 173.7c0-8.9 2.9-17.5 8.2-24.6l35.6-47.5C76.7 57.8 128.2 32 182.9 32c27 0 53.6 6.3 77.8 18.4L586.9 213.5C619.5 229.7 640 263 640 299.3zM448 304V288L128 230.9V304H448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "star": { + "aliases": { + "unicodes": { + "composite": [ + "2b50", + "f006" + ], + "secondary": [ + "10f005" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "favorite", + "important", + "night", + "rating", + "score", + "star" + ] + }, + "unicode": "f005", + "label": "Star", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321871, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z" + }, + "regular": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M287.9 0C297.1 0 305.5 5.25 309.5 13.52L378.1 154.8L531.4 177.5C540.4 178.8 547.8 185.1 550.7 193.7C553.5 202.4 551.2 211.9 544.8 218.2L433.6 328.4L459.9 483.9C461.4 492.9 457.7 502.1 450.2 507.4C442.8 512.7 432.1 513.4 424.9 509.1L287.9 435.9L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.9 115.1 483.9L142.2 328.4L31.11 218.2C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C270.4 5.249 278.7 0 287.9 0L287.9 0zM287.9 78.95L235.4 187.2C231.9 194.3 225.1 199.3 217.3 200.5L98.98 217.9L184.9 303C190.4 308.5 192.9 316.4 191.6 324.1L171.4 443.7L276.6 387.5C283.7 383.7 292.2 383.7 299.2 387.5L404.4 443.7L384.2 324.1C382.9 316.4 385.5 308.5 391 303L476.9 217.9L358.6 200.5C350.7 199.3 343.9 194.3 340.5 187.2L287.9 78.95z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "star-and-crescent": { + "aliases": { + "unicodes": { + "composite": [ + "262a" + ], + "secondary": [ + "10f699" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Muslim", + "islam", + "muslim", + "religion", + "star and crescent" + ] + }, + "unicode": "f699", + "label": "Star And Crescent", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256C0 114.6 114.6 0 256 0c33 0 64.6 6.3 93.6 17.7c7.4 2.9 11.5 10.7 9.8 18.4s-8.8 13-16.7 12.4c-4.8-.3-9.7-.5-14.6-.5c-114.9 0-208 93.1-208 208s93.1 208 208 208c4.9 0 9.8-.2 14.6-.5c7.9-.5 15 4.7 16.7 12.4s-2.4 15.5-9.8 18.4C320.6 505.7 289 512 256 512C114.6 512 0 397.4 0 256zM375.4 137.4c3.5-7.1 13.7-7.1 17.2 0l31.5 63.8c1.4 2.8 4.1 4.8 7.2 5.3l70.4 10.2c7.9 1.1 11 10.8 5.3 16.4l-50.9 49.6c-2.3 2.2-3.3 5.4-2.8 8.5l12 70.1c1.3 7.8-6.9 13.8-13.9 10.1l-63-33.1c-2.8-1.5-6.1-1.5-8.9 0l-63 33.1c-7 3.7-15.3-2.3-13.9-10.1l12-70.1c.5-3.1-.5-6.3-2.8-8.5L261 233.1c-5.7-5.6-2.6-15.2 5.3-16.4l70.4-10.2c3.1-.5 5.8-2.4 7.2-5.3l31.5-63.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "star-half": { + "aliases": { + "unicodes": { + "composite": [ + "f123" + ], + "secondary": [ + "10f089" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "rating", + "score", + "star-half-empty", + "star-half-full" + ] + }, + "unicode": "f089", + "label": "Star Half", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321871, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 0c-12.2 .1-23.3 7-28.6 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3L288 439.8V0zM429.9 512c1.1 .1 2.1 .1 3.2 0h-3.2z" + }, + "regular": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M293.3 .6123C304.2 3.118 311.9 12.82 311.9 24V408.7C311.9 417.5 307.1 425.7 299.2 429.8L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.1 115.1 483.9L142.2 328.4L31.11 218.3C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C271.2 3.46 282.4-1.893 293.3 .6127L293.3 .6123zM263.9 128.4L235.4 187.2C231.9 194.3 225.1 199.3 217.3 200.5L98.98 217.9L184.9 303C190.4 308.5 192.9 316.4 191.6 324.1L171.4 443.7L263.9 394.3L263.9 128.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "star-half-stroke": { + "aliases": { + "names": [ + "star-half-alt" + ], + "unicodes": { + "secondary": [ + "10f5c0" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "rating", + "score", + "star-half-empty", + "star-half-full" + ] + }, + "unicode": "f5c0", + "label": "Star Half Stroke", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321871, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 376.4l.1-.1 26.4 14.1 85.2 45.5-16.5-97.6-4.8-28.7 20.7-20.5 70.1-69.3-96.1-14.2-29.3-4.3-12.9-26.6L288.1 86.9l-.1 .3V376.4zm175.1 98.3c2 12-3 24.2-12.9 31.3s-23 8-33.8 2.3L288.1 439.8 159.8 508.3C149 514 135.9 513.1 126 506s-14.9-19.3-12.9-31.3L137.8 329 33.6 225.9c-8.6-8.5-11.7-21.2-7.9-32.7s13.7-19.9 25.7-21.7L195 150.3 259.4 18c5.4-11 16.5-18 28.8-18s23.4 7 28.8 18l64.3 132.3 143.6 21.2c12 1.8 22 10.2 25.7 21.7s.7 24.2-7.9 32.7L438.5 329l24.6 145.7z" + }, + "regular": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M378.1 154.8L531.4 177.5C540.4 178.8 547.8 185.1 550.7 193.7C553.5 202.4 551.2 211.9 544.8 218.2L433.6 328.4L459.9 483.9C461.4 492.9 457.7 502.1 450.2 507.4C442.8 512.7 432.1 513.4 424.9 509.1L287.9 435.9L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.9 115.1 483.9L142.2 328.4L31.11 218.2C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C270.4 5.249 278.7 0 287.9 0C297.1 0 305.5 5.25 309.5 13.52L378.1 154.8zM287.1 384.7C291.9 384.7 295.7 385.6 299.2 387.5L404.4 443.7L384.2 324.1C382.9 316.4 385.5 308.5 391 303L476.9 217.9L358.6 200.5C350.7 199.3 343.9 194.3 340.5 187.2L287.1 79.09L287.1 384.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "star-of-david": { + "aliases": { + "unicodes": { + "composite": [ + "2721" + ], + "secondary": [ + "10f69a" + ] + } + }, + "changes": [ + "5.3.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "David", + "Jew", + "Jewish", + "jewish", + "judaism", + "religion", + "star", + "star of David" + ] + }, + "unicode": "f69a", + "label": "Star Of David", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M388.2 309.5L367.1 344h42.3l-21.1-34.5zM355.4 256l-54-88H178.6l-54 88 54 88H301.4l54-88zm65.7 0l53.4 87c3.6 5.9 5.5 12.7 5.5 19.6c0 20.7-16.8 37.4-37.4 37.4H332.7l-56.2 91.5C268.8 504.3 254.9 512 240 512s-28.8-7.7-36.6-20.5L147.3 400H37.4C16.8 400 0 383.2 0 362.6c0-6.9 1.9-13.7 5.5-19.6l53.4-87L5.5 169C1.9 163.1 0 156.3 0 149.4C0 128.8 16.8 112 37.4 112H147.3l56.2-91.5C211.2 7.7 225.1 0 240 0s28.8 7.7 36.6 20.5L332.7 112H442.6c20.7 0 37.4 16.8 37.4 37.4c0 6.9-1.9 13.7-5.5 19.6l-53.4 87zm-54-88l21.1 34.5L409.4 168H367.1zM267 112L240 68l-27 44h54zM112.9 168H70.6l21.1 34.5L112.9 168zM91.8 309.5L70.6 344h42.3L91.8 309.5zM213 400l27 44 27-44H213z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "star-of-life": { + "aliases": { + "unicodes": { + "secondary": [ + "10f621" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "doctor", + "emt", + "first aid", + "health", + "medical" + ] + }, + "unicode": "f621", + "label": "Star Of Life", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M186 32c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V172.9l122-70.4c15.3-8.8 34.9-3.6 43.7 11.7l16 27.7c8.8 15.3 3.6 34.9-11.7 43.7L330 256l122 70.4c15.3 8.8 20.5 28.4 11.7 43.7l-16 27.7c-8.8 15.3-28.4 20.6-43.7 11.7L282 339.1V480c0 17.7-14.3 32-32 32H218c-17.7 0-32-14.3-32-32V339.1L64 409.6c-15.3 8.8-34.9 3.6-43.7-11.7l-16-27.7C-4.5 354.8 .7 335.3 16 326.4L138 256 16 185.6C.7 176.7-4.5 157.2 4.3 141.9l16-27.7C29.1 98.8 48.7 93.6 64 102.4l122 70.4V32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "staylinked": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f5", + "label": "StayLinked", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 440, + 512 + ], + "width": 440, + "height": 512, + "path": "M382.7 292.5l2.7 2.7-170-167.3c-3.5-3.5-9.7-3.7-13.8-.5L144.3 171c-4.2 3.2-4.6 8.7-1.1 12.2l68.1 64.3c3.6 3.5 9.9 3.7 14 .5l.1-.1c4.1-3.2 10.4-3 14 .5l84 81.3c3.6 3.5 3.2 9-.9 12.2l-93.2 74c-4.2 3.3-10.5 3.1-14.2-.4L63.2 268c-3.5-3.5-9.7-3.7-13.9-.5L3.5 302.4c-4.2 3.2-4.7 8.7-1.2 12.2L211 510.7s7.4 6.8 17.3-.8l198-163.9c4-3.2 4.4-8.7.7-12.2zm54.5-83.4L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7 171.7 165.1c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "steam": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1b6", + "label": "Steam", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "steam-symbol": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f6", + "label": "Steam Symbol", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "sterling-sign": { + "aliases": { + "names": [ + "gbp", + "pound-sign" + ], + "unicodes": { + "composite": [ + "a3" + ], + "secondary": [ + "10f154" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pound Sign", + "currency" + ] + }, + "unicode": "f154", + "label": "Sterling Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M112 160.4c0-35.5 28.8-64.4 64.4-64.4c6.9 0 13.8 1.1 20.4 3.3l81.2 27.1c16.8 5.6 34.9-3.5 40.5-20.2s-3.5-34.9-20.2-40.5L217 38.6c-13.1-4.4-26.8-6.6-40.6-6.6C105.5 32 48 89.5 48 160.4V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v44.5c0 17.4-4.7 34.5-13.7 49.4L4.6 431.5c-5.9 9.9-6.1 22.2-.4 32.2S20.5 480 32 480H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H88.5l.7-1.1C104.1 390 112 361.5 112 332.5V288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V160.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stethoscope": { + "aliases": { + "unicodes": { + "composite": [ + "1fa7a" + ], + "secondary": [ + "10f0f1" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "diagnosis", + "doctor", + "general practitioner", + "heart", + "hospital", + "infirmary", + "medicine", + "office", + "outpatient", + "stethoscope" + ] + }, + "unicode": "f0f1", + "label": "Stethoscope", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M126.4 21.9c5.6 16.8-3.5 34.9-20.2 40.5L80 71.1V192c0 53 43 96 96 96s96-43 96-96V71.1l-26.1-8.7c-16.8-5.6-25.8-23.7-20.2-40.5s23.7-25.8 40.5-20.2l26.1 8.7C318.4 19.1 336 43.5 336 71.1V192c0 77.2-54.6 141.6-127.3 156.7C215 404.6 262.4 448 320 448c61.9 0 112-50.1 112-112V265.3c-28.3-12.3-48-40.5-48-73.3c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V336c0 97.2-78.8 176-176 176c-92.9 0-168.9-71.9-175.5-163.1C71.2 334.2 16 269.6 16 192V71.1c0-27.5 17.6-52 43.8-60.7L85.9 1.6c16.8-5.6 34.9 3.5 40.5 20.2zM464 224a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sticker-mule": { + "changes": [ + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f7", + "label": "Sticker Mule", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M561.7 199.6c-1.3.3.3 0 0 0zm-6.2-77.4c-7.7-22.3-5.1-7.2-13.4-36.9-1.6-6.5-3.6-14.5-6.2-20-4.4-8.7-4.6-7.5-4.6-9.5 0-5.3 30.7-45.3 19-46.9-5.7-.6-12.2 11.6-20.6 17-8.6 4.2-8 5-10.3 5-2.6 0-5.7-3-6.2-5-2-5.7 1.9-25.9-3.6-25.9-3.6 0-12.3 24.8-17 25.8-5.2 1.3-27.9-11.4-75.1 18-25.3 13.2-86.9 65.2-87 65.3-6.7 4.7-20 4.7-35.5 16-44.4 30.1-109.6 9.4-110.7 9-110.6-26.8-128-15.2-159 11.5-20.8 17.9-23.7 36.5-24.2 38.9-4.2 20.4 5.2 48.3 6.7 64.3 1.8 19.3-2.7 17.7 7.7 98.3.5 1 4.1 0 5.1 1.5 0 8.4-3.8 12.1-4.1 13-1.5 4.5-1.5 10.5 0 16 2.3 8.2 8.2 37.2 8.2 46.9 0 41.8.4 44 2.6 49.4 3.9 10 12.5 9.1 17 12 3.1 3.5-.5 8.5 1 12.5.5 2 3.6 4 6.2 5 9.2 3.6 27 .3 29.9-2.5 1.6-1.5.5-4.5 3.1-5 5.1 0 10.8-.5 14.4-2.5 5.1-2.5 4.1-6 1.5-10.5-.4-.8-7-13.3-9.8-16-2.1-2-5.1-3-7.2-4.5-5.8-4.9-10.3-19.4-10.3-19.5-4.6-19.4-10.3-46.3-4.1-66.8 4.6-17.2 39.5-87.7 39.6-87.8 4.1-6.5 17-11.5 27.3-7 6 1.9 19.3 22 65.4 30.9 47.9 8.7 97.4-2 112.2-2 2.8 2-1.9 13-.5 38.9 0 26.4-.4 13.7-4.1 29.9-2.2 9.7 3.4 23.2-1.5 46.9-1.4 9.8-9.9 32.7-8.2 43.4.5 1 1 2 1.5 3.5.5 4.5 1.5 8.5 4.6 10 7.3 3.6 12-3.5 9.8 11.5-.7 3.1-2.6 12 1.5 15 4.4 3.7 30.6 3.4 36.5.5 2.6-1.5 1.6-4.5 6.4-7.4 1.9-.9 11.3-.4 11.3-6.5.3-1.8-9.2-19.9-9.3-20-2.6-3.5-9.2-4.5-11.3-8-6.9-10.1-1.7-52.6.5-59.4 3-11 5.6-22.4 8.7-32.4 11-42.5 10.3-50.6 16.5-68.3.8-1.8 6.4-23.1 10.3-29.9 9.3-17 21.7-32.4 33.5-47.4 18-22.9 34-46.9 52-69.8 6.1-7 8.2-13.7 18-8 10.8 5.7 21.6 7 31.9 17 14.6 12.8 10.2 18.2 11.8 22.9 1.5 5 7.7 10.5 14.9 9.5 10.4-2 13-2.5 13.4-2.5 2.6-.5 5.7-5 7.2-8 3.1-5.5 7.2-9 7.2-16.5 0-7.7-.4-2.8-20.6-52.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stop": { + "aliases": { + "unicodes": { + "composite": [ + "23f9" + ], + "secondary": [ + "10f04d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "box", + "square", + "stop", + "stop button" + ] + }, + "unicode": "f04d", + "label": "Stop", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H320c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stopwatch": { + "aliases": { + "unicodes": { + "composite": [ + "23f1" + ], + "secondary": [ + "10f2f2" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clock", + "reminder", + "stopwatch", + "time" + ] + }, + "unicode": "f2f2", + "label": "Stopwatch", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h16V98.4C76.3 113.8 0 200 0 304C0 418.9 93.1 512 208 512s208-93.1 208-208c0-41.8-12.3-80.7-33.5-113.2l24.1-24.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L339.7 143c-28.1-23-62.2-38.8-99.7-44.6V64h16c17.7 0 32-14.3 32-32s-14.3-32-32-32H208 160zm72 192V320c0 13.3-10.7 24-24 24s-24-10.7-24-24V192c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stopwatch-20": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06f" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ABCs", + "countdown", + "covid-19", + "happy birthday", + "i will survive", + "reminder", + "seconds", + "time", + "timer" + ] + }, + "unicode": "e06f", + "label": "Stopwatch 20", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h16V98.4C76.3 113.8 0 200 0 304C0 418.9 93.1 512 208 512s208-93.1 208-208c0-41.8-12.3-80.7-33.5-113.2l24.1-24.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L339.7 143c-28.1-23-62.2-38.8-99.7-44.6V64h16c17.7 0 32-14.3 32-32s-14.3-32-32-32H160zM272 204c28.7 0 52 23.3 52 52v96c0 28.7-23.3 52-52 52s-52-23.3-52-52V256c0-28.7 23.3-52 52-52zm-12 52v96c0 6.6 5.4 12 12 12s12-5.4 12-12V256c0-6.6-5.4-12-12-12s-12 5.4-12 12zM143.5 244c-5.4 0-10.2 3.5-11.9 8.6l-.6 1.7c-3.5 10.5-14.8 16.1-25.3 12.6s-16.1-14.8-12.6-25.3l.6-1.7c7.2-21.5 27.2-35.9 49.8-35.9c29 0 52.5 23.5 52.5 52.5v2.2c0 13.4-4.9 26.4-13.8 36.4l-39 43.9c-6.2 7-10 15.7-10.9 24.9H176c11 0 20 9 20 20s-9 20-20 20H112c-11 0-20-9-20-20V368.3c0-20.6 7.5-40.4 21.2-55.8l39-43.9c2.4-2.7 3.7-6.2 3.7-9.8v-2.2c0-6.9-5.6-12.5-12.5-12.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "store": { + "aliases": { + "unicodes": { + "secondary": [ + "10f54e" + ] + } + }, + "changes": [ + "5.0.13", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bodega", + "building", + "buy", + "market", + "purchase", + "shopping", + "store" + ] + }, + "unicode": "f54e", + "label": "Store", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M531.6 103.8L474.3 13.1C469.2 5 460.1 0 450.4 0H93.6C83.9 0 74.8 5 69.7 13.1L12.3 103.8c-29.6 46.8-3.4 111.9 51.9 119.4c4 .5 8.1 .8 12.1 .8c26.1 0 49.3-11.4 65.2-29c15.9 17.6 39.1 29 65.2 29c26.1 0 49.3-11.4 65.2-29c15.9 17.6 39.1 29 65.2 29c26.2 0 49.3-11.4 65.2-29c16 17.6 39.1 29 65.2 29c4.1 0 8.1-.3 12.1-.8c55.5-7.4 81.8-72.5 52.1-119.4zM483.7 254.9l-.1 0c-5.3 .7-10.7 1.1-16.2 1.1c-12.4 0-24.3-1.9-35.4-5.3V384H112V250.6c-11.2 3.5-23.2 5.4-35.6 5.4c-5.5 0-11-.4-16.3-1.1l-.1 0c-4.1-.6-8.1-1.3-12-2.3V384v64c0 35.3 28.7 64 64 64H432c35.3 0 64-28.7 64-64V384 252.6c-4 1-8 1.8-12.3 2.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "store-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e071" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "buy", + "closed", + "covid-19", + "purchase", + "shopping" + ] + }, + "unicode": "e071", + "label": "Store Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-86.8-68V384 252.6c-4 1-8 1.8-12.3 2.3l-.1 0c-5.3 .7-10.7 1.1-16.2 1.1c-12.4 0-24.3-1.9-35.4-5.3V350.9L301.2 210.7c7-4.4 13.3-9.7 18.8-15.7c15.9 17.6 39.1 29 65.2 29c26.2 0 49.3-11.4 65.2-29c16 17.6 39.1 29 65.2 29c4.1 0 8.1-.3 12.1-.8c55.5-7.4 81.8-72.5 52.1-119.4L522.3 13.1C517.2 5 508.1 0 498.4 0H141.6c-9.7 0-18.8 5-23.9 13.1l-22.7 36L38.8 5.1zm73.4 218.1c4 .5 8.1 .8 12.1 .8c11 0 21.4-2 31-5.6L48.9 134.5c-6.1 40.6 19.5 82.8 63.3 88.7zM160 384V250.6c-11.2 3.5-23.2 5.4-35.6 5.4c-5.5 0-11-.4-16.3-1.1l-.1 0c-4.1-.6-8.1-1.3-12-2.3V384v64c0 35.3 28.7 64 64 64H480c12.9 0 24.8-3.8 34.9-10.3L365.5 384H160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "strava": { + "changes": [ + "5.0.0", + "5.0.1", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f428", + "label": "Strava", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M158.4 0L7 292h89.2l62.2-116.1L220.1 292h88.5zm150.2 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "street-view": { + "aliases": { + "unicodes": { + "secondary": [ + "10f21d" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "location", + "map", + "navigation" + ] + }, + "unicode": "f21d", + "label": "Street View", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M320 64A64 64 0 1 0 192 64a64 64 0 1 0 128 0zm-96 96c-35.3 0-64 28.7-64 64v48c0 17.7 14.3 32 32 32h1.8l11.1 99.5c1.8 16.2 15.5 28.5 31.8 28.5h38.7c16.3 0 30-12.3 31.8-28.5L318.2 304H320c17.7 0 32-14.3 32-32V224c0-35.3-28.7-64-64-64H224zM132.3 394.2c13-2.4 21.7-14.9 19.3-27.9s-14.9-21.7-27.9-19.3c-32.4 5.9-60.9 14.2-82 24.8c-10.5 5.3-20.3 11.7-27.8 19.6C6.4 399.5 0 410.5 0 424c0 21.4 15.5 36.1 29.1 45c14.7 9.6 34.3 17.3 56.4 23.4C130.2 504.7 190.4 512 256 512s125.8-7.3 170.4-19.6c22.1-6.1 41.8-13.8 56.4-23.4c13.7-8.9 29.1-23.6 29.1-45c0-13.5-6.4-24.5-14-32.6c-7.5-7.9-17.3-14.3-27.8-19.6c-21-10.6-49.5-18.9-82-24.8c-13-2.4-25.5 6.3-27.9 19.3s6.3 25.5 19.3 27.9c30.2 5.5 53.7 12.8 69 20.5c3.2 1.6 5.8 3.1 7.9 4.5c3.6 2.4 3.6 7.2 0 9.6c-8.8 5.7-23.1 11.8-43 17.3C374.3 457 318.5 464 256 464s-118.3-7-157.7-17.9c-19.9-5.5-34.2-11.6-43-17.3c-3.6-2.4-3.6-7.2 0-9.6c2.1-1.4 4.8-2.9 7.9-4.5c15.3-7.7 38.8-14.9 69-20.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "strikethrough": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0cc" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "edit", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f0cc", + "label": "Strikethrough", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M161.3 144c3.2-17.2 14-30.1 33.7-38.6c21.1-9 51.8-12.3 88.6-6.5c11.9 1.9 48.8 9.1 60.1 12c17.1 4.5 34.6-5.6 39.2-22.7s-5.6-34.6-22.7-39.2c-14.3-3.8-53.6-11.4-66.6-13.4c-44.7-7-88.3-4.2-123.7 10.9c-36.5 15.6-64.4 44.8-71.8 87.3c-.1 .6-.2 1.1-.2 1.7c-2.8 23.9 .5 45.6 10.1 64.6c4.5 9 10.2 16.9 16.7 23.9H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H270.1c-.1 0-.3-.1-.4-.1l-1.1-.3c-36-10.8-65.2-19.6-85.2-33.1c-9.3-6.3-15-12.6-18.2-19.1c-3.1-6.1-5.2-14.6-3.8-27.4zM348.9 337.2c2.7 6.5 4.4 15.8 1.9 30.1c-3 17.6-13.8 30.8-33.9 39.4c-21.1 9-51.7 12.3-88.5 6.5c-18-2.9-49.1-13.5-74.4-22.1c-5.6-1.9-11-3.7-15.9-5.4c-16.8-5.6-34.9 3.5-40.5 20.3s3.5 34.9 20.3 40.5c3.6 1.2 7.9 2.7 12.7 4.3l0 0 0 0c24.9 8.5 63.6 21.7 87.6 25.6l0 0 .2 0c44.7 7 88.3 4.2 123.7-10.9c36.5-15.6 64.4-44.8 71.8-87.3c3.6-21 2.7-40.4-3.1-58.1H335.1c7 5.6 11.4 11.2 13.9 17.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stripe": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f429", + "label": "Stripe", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M165 144.7l-43.3 9.2-.2 142.4c0 26.3 19.8 43.3 46.1 43.3 14.6 0 25.3-2.7 31.2-5.9v-33.8c-5.7 2.3-33.7 10.5-33.7-15.7V221h33.7v-37.8h-33.7zm89.1 51.6l-2.7-13.1H213v153.2h44.3V233.3c10.5-13.8 28.2-11.1 33.9-9.3v-40.8c-6-2.1-26.7-6-37.1 13.1zm92.3-72.3l-44.6 9.5v36.2l44.6-9.5zM44.9 228.3c0-6.9 5.8-9.6 15.1-9.7 13.5 0 30.7 4.1 44.2 11.4v-41.8c-14.7-5.8-29.4-8.1-44.1-8.1-36 0-60 18.8-60 50.2 0 49.2 67.5 41.2 67.5 62.4 0 8.2-7.1 10.9-17 10.9-14.7 0-33.7-6.1-48.6-14.2v40c16.5 7.1 33.2 10.1 48.5 10.1 36.9 0 62.3-15.8 62.3-47.8 0-52.9-67.9-43.4-67.9-63.4zM640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9zm-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7zm-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8zm-126.7 33.7h44.6V183.2h-44.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stripe-s": { + "changes": [ + "5.0.1", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42a", + "label": "Stripe S", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M155.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C298.3 7.2 251.1 0 203.8 0 88.1 0 11 60.4 11 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5a396.09 396.09 0 0 0 156 32.4c118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stroopwafel": { + "aliases": { + "unicodes": { + "secondary": [ + "10f551" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caramel", + "cookie", + "dessert", + "sweets", + "waffle" + ] + }, + "unicode": "f551", + "label": "Stroopwafel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM312.6 63.7c-6.2-6.2-16.4-6.2-22.6 0L256 97.6 222.1 63.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l33.9 33.9-45.3 45.3-56.6-56.6c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l56.6 56.6-45.3 45.3L86.3 199.4c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L97.6 256 63.7 289.9c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l33.9-33.9 45.3 45.3-56.6 56.6c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l56.6-56.6 45.3 45.3-33.9 33.9c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L256 414.4l33.9 33.9c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-33.9-33.9 45.3-45.3 56.6 56.6c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-56.6-56.6 45.3-45.3 33.9 33.9c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L414.4 256l33.9-33.9c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0l-33.9 33.9-45.3-45.3 56.6-56.6c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0l-56.6 56.6-45.3-45.3 33.9-33.9c6.2-6.2 6.2-16.4 0-22.6zM142.9 256l45.3-45.3L233.4 256l-45.3 45.3L142.9 256zm67.9 67.9L256 278.6l45.3 45.3L256 369.1l-45.3-45.3zM278.6 256l45.3-45.3L369.1 256l-45.3 45.3L278.6 256zm22.6-67.9L256 233.4l-45.3-45.3L256 142.9l45.3 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "stubber": { + "changes": [ + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e5c7", + "label": "Stubber", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1667828915, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M136.5 294.2l58.8 22.9c9.1-36.8 25.4-61.1 55-61.1c49.4 0 71.4 63.6 142.4 63.6c15.6 0 35.9-2.8 55.3-13.3V368c0 61.8-50.4 112-112.3 112H0l41.8-56L0 368l41.7-56L0 256.1l41.8-56L0 144.1 41.8 88 0 32H335.7C397.6 32 448 82.3 448 144.1v51.3c-9.2 36.3-25.9 60.6-55 60.6c-49.6 0-71.6-63.5-142.4-63.5c-35.9 0-95.2 14.6-114.1 101.6h0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "studiovinari": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f8", + "label": "Studio Vinari", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stumbleupon": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a4", + "label": "StumbleUpon Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "stumbleupon-circle": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1a3", + "label": "StumbleUpon Circle", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "subscript": { + "aliases": { + "unicodes": { + "secondary": [ + "10f12c" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f12c", + "label": "Subscript", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 64C14.3 64 0 78.3 0 96s14.3 32 32 32H47.3l89.6 128L47.3 384H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64c10.4 0 20.2-5.1 26.2-13.6L176 311.8l85.8 122.6c6 8.6 15.8 13.6 26.2 13.6h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H304.7L215.1 256l89.6-128H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H288c-10.4 0-20.2 5.1-26.2 13.6L176 200.2 90.2 77.6C84.2 69.1 74.4 64 64 64H32zM480 320c0-11.1-5.7-21.4-15.2-27.2s-21.2-6.4-31.1-1.4l-32 16c-15.8 7.9-22.2 27.1-14.3 42.9C393 361.5 404.3 368 416 368v80c-17.7 0-32 14.3-32 32s14.3 32 32 32h32 32c17.7 0 32-14.3 32-32s-14.3-32-32-32V320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "suitcase": { + "aliases": { + "unicodes": { + "composite": [ + "1f9f3" + ], + "secondary": [ + "10f0f2" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baggage", + "luggage", + "move", + "packing", + "suitcase", + "travel", + "trip" + ] + }, + "unicode": "f0f2", + "label": "Suitcase", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 56V96H336V56c0-4.4-3.6-8-8-8H184c-4.4 0-8 3.6-8 8zM128 96V56c0-30.9 25.1-56 56-56H328c30.9 0 56 25.1 56 56V96v32V480H128V128 96zM64 96H96V480H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64zM448 480H416V96h32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "suitcase-medical": { + "aliases": { + "names": [ + "medkit" + ], + "unicodes": { + "secondary": [ + "10f0fa" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "first aid", + "firstaid", + "health", + "help", + "medical", + "supply", + "support" + ] + }, + "unicode": "f0fa", + "label": "Suitcase Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96v32V480H384V128 96 56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zM96 96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H96V96zM416 480h32c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H416V480zM224 208c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H288v48c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V320H176c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h48V208z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "suitcase-rolling": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5c1" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baggage", + "luggage", + "move", + "suitcase", + "travel", + "trip" + ] + }, + "unicode": "f5c1", + "label": "Suitcase Rolling", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M144 56c0-4.4 3.6-8 8-8h80c4.4 0 8 3.6 8 8v72H144V56zm176 72H288V56c0-30.9-25.1-56-56-56H152C121.1 0 96 25.1 96 56v72H64c-35.3 0-64 28.7-64 64V416c0 35.3 28.7 64 64 64c0 17.7 14.3 32 32 32s32-14.3 32-32H256c0 17.7 14.3 32 32 32s32-14.3 32-32c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64zM112 224H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 128H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "sun": { + "aliases": { + "unicodes": { + "composite": [ + "2600" + ], + "secondary": [ + "10f185" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bright", + "brighten", + "contrast", + "day", + "lighter", + "rays", + "sol", + "solar", + "star", + "sun", + "sunny", + "weather" + ] + }, + "unicode": "f185", + "label": "Sun", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M361.5 1.2c5 2.1 8.6 6.6 9.6 11.9L391 121l107.9 19.8c5.3 1 9.8 4.6 11.9 9.6s1.5 10.7-1.6 15.2L446.9 256l62.3 90.3c3.1 4.5 3.7 10.2 1.6 15.2s-6.6 8.6-11.9 9.6L391 391 371.1 498.9c-1 5.3-4.6 9.8-9.6 11.9s-10.7 1.5-15.2-1.6L256 446.9l-90.3 62.3c-4.5 3.1-10.2 3.7-15.2 1.6s-8.6-6.6-9.6-11.9L121 391 13.1 371.1c-5.3-1-9.8-4.6-11.9-9.6s-1.5-10.7 1.6-15.2L65.1 256 2.8 165.7c-3.1-4.5-3.7-10.2-1.6-15.2s6.6-8.6 11.9-9.6L121 121 140.9 13.1c1-5.3 4.6-9.8 9.6-11.9s10.7-1.5 15.2 1.6L256 65.1 346.3 2.8c4.5-3.1 10.2-3.7 15.2-1.6zM160 256a96 96 0 1 1 192 0 96 96 0 1 1 -192 0zm224 0a128 128 0 1 0 -256 0 128 128 0 1 0 256 0z" + }, + "regular": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M375.7 19.7c-1.5-8-6.9-14.7-14.4-17.8s-16.1-2.2-22.8 2.4L256 61.1 173.5 4.2c-6.7-4.6-15.3-5.5-22.8-2.4s-12.9 9.8-14.4 17.8l-18.1 98.5L19.7 136.3c-8 1.5-14.7 6.9-17.8 14.4s-2.2 16.1 2.4 22.8L61.1 256 4.2 338.5c-4.6 6.7-5.5 15.3-2.4 22.8s9.8 13 17.8 14.4l98.5 18.1 18.1 98.5c1.5 8 6.9 14.7 14.4 17.8s16.1 2.2 22.8-2.4L256 450.9l82.5 56.9c6.7 4.6 15.3 5.5 22.8 2.4s12.9-9.8 14.4-17.8l18.1-98.5 98.5-18.1c8-1.5 14.7-6.9 17.8-14.4s2.2-16.1-2.4-22.8L450.9 256l56.9-82.5c4.6-6.7 5.5-15.3 2.4-22.8s-9.8-12.9-17.8-14.4l-98.5-18.1L375.7 19.7zM269.6 110l65.6-45.2 14.4 78.3c1.8 9.8 9.5 17.5 19.3 19.3l78.3 14.4L402 242.4c-5.7 8.2-5.7 19 0 27.2l45.2 65.6-78.3 14.4c-9.8 1.8-17.5 9.5-19.3 19.3l-14.4 78.3L269.6 402c-8.2-5.7-19-5.7-27.2 0l-65.6 45.2-14.4-78.3c-1.8-9.8-9.5-17.5-19.3-19.3L64.8 335.2 110 269.6c5.7-8.2 5.7-19 0-27.2L64.8 176.8l78.3-14.4c9.8-1.8 17.5-9.5 19.3-19.3l14.4-78.3L242.4 110c8.2 5.7 19 5.7 27.2 0zM256 368a112 112 0 1 0 0-224 112 112 0 1 0 0 224zM192 256a64 64 0 1 1 128 0 64 64 0 1 1 -128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "sun-plant-wilt": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arid", + "droop", + "drought" + ] + }, + "unicode": "e57a", + "label": "Sun Plant Wilt", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M160 0c-6.3 0-12 3.7-14.6 9.5L120.6 64.9 63.9 43.2c-5.9-2.3-12.6-.8-17 3.6s-5.9 11.1-3.6 17l21.7 56.7L9.5 145.4C3.7 148 0 153.7 0 160s3.7 12 9.5 14.6l55.4 24.8L43.2 256.1c-2.3 5.9-.8 12.6 3.6 17s11.1 5.9 17 3.6l56.7-21.7 24.8 55.4c2.6 5.8 8.3 9.5 14.6 9.5s12-3.7 14.6-9.5l24.8-55.4 56.7 21.7c5.9 2.3 12.6 .8 17-3.6s5.9-11.1 3.6-17l-21.7-56.7 55.4-24.8c5.8-2.6 9.5-8.3 9.5-14.6s-3.7-12-9.5-14.6l-55.4-24.8 21.7-56.7c2.3-5.9 .8-12.6-3.6-17s-11.1-5.9-17-3.6L199.4 64.9 174.6 9.5C172 3.7 166.3 0 160 0zm0 96a64 64 0 1 1 0 128 64 64 0 1 1 0-128zm32 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm312 16c0-17.7 14.3-32 32-32s32 14.3 32 32v53.4c-14.8 7.7-24 23.1-24 44.6c0 16.8 16 44 37.4 67.2c5.8 6.2 15.5 6.2 21.2 0C624 318 640 290.7 640 274c0-21.5-9.2-37-24-44.6V176c0-44.2-35.8-80-80-80s-80 35.8-80 80v22.7c-9.8-4.3-20.6-6.7-32-6.7c-44.2 0-80 35.8-80 80v21.4c-14.8 7.7-24 23.1-24 44.6c0 16.8 16 44 37.4 67.2c5.8 6.2 15.5 6.2 21.2 0C400 382 416 354.7 416 338c0-21.5-9.2-37-24-44.6V272c0-17.7 14.3-32 32-32s32 14.3 32 32v8V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H504V280v-8V176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "superpowers": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2dd", + "label": "Superpowers", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "superscript": { + "aliases": { + "unicodes": { + "secondary": [ + "10f12b" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "exponential", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f12b", + "label": "Superscript", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480 32c0-11.1-5.7-21.4-15.2-27.2s-21.2-6.4-31.1-1.4l-32 16c-15.8 7.9-22.2 27.1-14.3 42.9C393 73.5 404.3 80 416 80v80c-17.7 0-32 14.3-32 32s14.3 32 32 32h32 32c17.7 0 32-14.3 32-32s-14.3-32-32-32V32zM32 64C14.3 64 0 78.3 0 96s14.3 32 32 32H47.3l89.6 128L47.3 384H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64c10.4 0 20.2-5.1 26.2-13.6L176 311.8l85.8 122.6c6 8.6 15.8 13.6 26.2 13.6h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H304.7L215.1 256l89.6-128H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H288c-10.4 0-20.2 5.1-26.2 13.6L176 200.2 90.2 77.6C84.2 69.1 74.4 64 64 64H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "supple": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f3f9", + "label": "Supple", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "suse": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "unicode": "f7d6", + "label": "Suse", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M471.08 102.66s-.3 18.3-.3 20.3c-9.1-3-74.4-24.1-135.7-26.3-51.9-1.8-122.8-4.3-223 57.3-19.4 12.4-73.9 46.1-99.6 109.7C7 277-.12 307 7 335.06a111 111 0 0 0 16.5 35.7c17.4 25 46.6 41.6 78.1 44.4 44.4 3.9 78.1-16 90-53.3 8.2-25.8 0-63.6-31.5-82.9-25.6-15.7-53.3-12.1-69.2-1.6-13.9 9.2-21.8 23.5-21.6 39.2.3 27.8 24.3 42.6 41.5 42.6a49 49 0 0 0 15.8-2.7c6.5-1.8 13.3-6.5 13.3-14.9 0-12.1-11.6-14.8-16.8-13.9-2.9.5-4.5 2-11.8 2.4-2-.2-12-3.1-12-14V316c.2-12.3 13.2-18 25.5-16.9 32.3 2.8 47.7 40.7 28.5 65.7-18.3 23.7-76.6 23.2-99.7-20.4-26-49.2 12.7-111.2 87-98.4 33.2 5.7 83.6 35.5 102.4 104.3h45.9c-5.7-17.6-8.9-68.3 42.7-68.3 56.7 0 63.9 39.9 79.8 68.3H460c-12.8-18.3-21.7-38.7-18.9-55.8 5.6-33.8 39.7-18.4 82.4-17.4 66.5.4 102.1-27 103.1-28 3.7-3.1 6.5-15.8 7-17.7 1.3-5.1-3.2-2.4-3.2-2.4-8.7 5.2-30.5 15.2-50.9 15.6-25.3.5-76.2-25.4-81.6-28.2-.3-.4.1 1.2-11-25.5 88.4 58.3 118.3 40.5 145.2 21.7.8-.6 4.3-2.9 3.6-5.7-13.8-48.1-22.4-62.7-34.5-69.6-37-21.6-125-34.7-129.2-35.3.1-.1-.9-.3-.9.7zm60.4 72.8a37.54 37.54 0 0 1 38.9-36.3c33.4 1.2 48.8 42.3 24.4 65.2-24.2 22.7-64.4 4.6-63.3-28.9zm38.6-25.3a26.27 26.27 0 1 0 25.4 27.2 26.19 26.19 0 0 0-25.4-27.2zm4.3 28.8c-15.4 0-15.4-15.6 0-15.6s15.4 15.64 0 15.64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "swatchbook": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5c3" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pantone", + "color", + "design", + "hue", + "palette" + ] + }, + "unicode": "f5c3", + "label": "Swatchbook", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H160c17.7 0 32 14.3 32 32V416c0 53-43 96-96 96s-96-43-96-96V32zM223.6 425.9c.3-3.3 .4-6.6 .4-9.9V154l75.4-75.4c12.5-12.5 32.8-12.5 45.3 0l90.5 90.5c12.5 12.5 12.5 32.8 0 45.3L223.6 425.9zM182.8 512l192-192H480c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H182.8zM128 64H64v64h64V64zM64 192v64h64V192H64zM96 440a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "swift": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f8e1", + "label": "Swift", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 156.09c0-4.51-.08-9-.2-13.52a196.31 196.31 0 0 0-2.58-29.42 99.62 99.62 0 0 0-9.22-28A94.08 94.08 0 0 0 394.84 44a99.17 99.17 0 0 0-28-9.22 195 195 0 0 0-29.43-2.59c-4.51-.12-9-.17-13.52-.2H124.14c-4.51 0-9 .08-13.52.2-2.45.07-4.91.15-7.37.27a171.68 171.68 0 0 0-22.06 2.32 103.06 103.06 0 0 0-21.21 6.1q-3.46 1.45-6.81 3.12a94.66 94.66 0 0 0-18.39 12.32c-1.88 1.61-3.69 3.28-5.43 5A93.86 93.86 0 0 0 12 85.17a99.45 99.45 0 0 0-9.22 28 196.31 196.31 0 0 0-2.54 29.4c-.13 4.51-.18 9-.21 13.52v199.83c0 4.51.08 9 .21 13.51a196.08 196.08 0 0 0 2.58 29.42 99.3 99.3 0 0 0 9.22 28A94.31 94.31 0 0 0 53.17 468a99.47 99.47 0 0 0 28 9.21 195 195 0 0 0 29.43 2.59c4.5.12 9 .17 13.52.2H323.91c4.51 0 9-.08 13.52-.2a196.59 196.59 0 0 0 29.44-2.59 99.57 99.57 0 0 0 28-9.21A94.22 94.22 0 0 0 436 426.84a99.3 99.3 0 0 0 9.22-28 194.79 194.79 0 0 0 2.59-29.42c.12-4.5.17-9 .2-13.51V172.14c-.01-5.35-.01-10.7-.01-16.05zm-69.88 241c-20-38.93-57.23-29.27-76.31-19.47-1.72 1-3.48 2-5.25 3l-.42.25c-39.5 21-92.53 22.54-145.85-.38A234.64 234.64 0 0 1 45 290.12a230.63 230.63 0 0 0 39.17 23.37c56.36 26.4 113 24.49 153 0-57-43.85-104.6-101-141.09-147.22a197.09 197.09 0 0 1-18.78-25.9c43.7 40 112.7 90.22 137.48 104.12-52.57-55.49-98.89-123.94-96.72-121.74 82.79 83.42 159.18 130.59 159.18 130.59 2.88 1.58 5 2.85 6.73 4a127.44 127.44 0 0 0 4.16-12.47c13.22-48.33-1.66-103.58-35.31-149.2C329.61 141.75 375 229.34 356.4 303.42c-.44 1.73-.95 3.4-1.44 5.09 38.52 47.4 28.04 98.17 23.13 88.59z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "symfony": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f83d", + "label": "Symfony", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm133.74 143.54c-11.47.41-19.4-6.45-19.77-16.87-.27-9.18 6.68-13.44 6.53-18.85-.23-6.55-10.16-6.82-12.87-6.67-39.78 1.29-48.59 57-58.89 113.85 21.43 3.15 36.65-.72 45.14-6.22 12-7.75-3.34-15.72-1.42-24.56 4-18.16 32.55-19 32 5.3-.36 17.86-25.92 41.81-77.6 35.7-10.76 59.52-18.35 115-58.2 161.72-29 34.46-58.4 39.82-71.58 40.26-24.65.85-41-12.31-41.58-29.84-.56-17 14.45-26.26 24.31-26.59 21.89-.75 30.12 25.67 14.88 34-12.09 9.71.11 12.61 2.05 12.55 10.42-.36 17.34-5.51 22.18-9 24-20 33.24-54.86 45.35-118.35 8.19-49.66 17-78 18.23-82-16.93-12.75-27.08-28.55-49.85-34.72-15.61-4.23-25.12-.63-31.81 7.83-7.92 10-5.29 23 2.37 30.7l12.63 14c15.51 17.93 24 31.87 20.8 50.62-5.06 29.93-40.72 52.9-82.88 39.94-36-11.11-42.7-36.56-38.38-50.62 7.51-24.15 42.36-11.72 34.62 13.6-2.79 8.6-4.92 8.68-6.28 13.07-4.56 14.77 41.85 28.4 51-1.39 4.47-14.52-5.3-21.71-22.25-39.85-28.47-31.75-16-65.49 2.95-79.67C204.23 140.13 251.94 197 262 205.29c37.17-109 100.53-105.46 102.43-105.53 25.16-.81 44.19 10.59 44.83 28.65.25 7.69-4.17 22.59-19.52 23.13z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "synagogue": { + "aliases": { + "unicodes": { + "composite": [ + "1f54d" + ], + "secondary": [ + "10f69b" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Jew", + "Jewish", + "building", + "jewish", + "judaism", + "religion", + "star of david", + "synagogue", + "temple" + ] + }, + "unicode": "f69b", + "label": "Synagogue", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M309.8 3.7c5.9-4.9 14.6-4.9 20.5 0l121 100.8C469.5 119.7 480 142.2 480 166V280.1 512H464 352V416c0-17.7-14.3-32-32-32s-32 14.3-32 32v96H176 160V280.1 166c0-23.7 10.5-46.3 28.8-61.5L309.8 3.7zM512 512V244.5l28.1-31.2c3-3.4 7.4-5.3 11.9-5.3s8.9 1.9 11.9 5.3l63.8 70.9c7.9 8.8 12.3 20.3 12.3 32.1V448c0 35.3-28.7 64-64 64H512zM128 244.5V512H64c-35.3 0-64-28.7-64-64V316.3c0-11.9 4.4-23.3 12.3-32.1l63.8-70.9c3-3.4 7.4-5.3 11.9-5.3s8.9 1.9 11.9 5.3L128 244.5zM327 124.3c-3.1-5.4-10.9-5.4-13.9 0l-15.9 28.1-32.3-.3c-6.2-.1-10.1 6.7-7 12.1L274.3 192l-16.4 27.8c-3.2 5.4 .7 12.1 7 12.1l32.3-.3L313 259.7c3.1 5.4 10.9 5.4 13.9 0l15.9-28.1 32.3 .3c6.2 .1 10.1-6.7 7-12.1L365.7 192l16.4-27.8c3.2-5.4-.7-12.1-7-12.1l-32.3 .3L327 124.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "syringe": { + "aliases": { + "unicodes": { + "composite": [ + "1f489" + ], + "secondary": [ + "10f48e" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "immunizations", + "medical", + "medicine", + "needle", + "shot", + "sick", + "syringe", + "vaccinate", + "vaccine" + ] + }, + "unicode": "f48e", + "label": "Syringe", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M441 7l32 32 32 32c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-15-15L417.9 128l55 55c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-72-72L295 73c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l55 55L422.1 56 407 41c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0zM210.3 155.7l61.1-61.1c.3 .3 .6 .7 1 1l16 16 56 56 56 56 16 16c.3 .3 .6 .6 1 1l-191 191c-10.5 10.5-24.7 16.4-39.6 16.4H97.9L41 505c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l57-57V325.3c0-14.9 5.9-29.1 16.4-39.6l43.3-43.3 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "t": { + "aliases": { + "unicodes": { + "composite": [ + "74" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter T", + "Latin Small Letter T", + "letter" + ] + }, + "unicode": "54", + "label": "T", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H160V448c0 17.7 14.3 32 32 32s32-14.3 32-32V96H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H192 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0ce" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "data", + "excel", + "spreadsheet" + ] + }, + "unicode": "f0ce", + "label": "Table", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 256V160H224v96H64zm0 64H224v96H64V320zm224 96V320H448v96H288zM448 256H288V160H448v96zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table-cells": { + "aliases": { + "names": [ + "th" + ], + "unicodes": { + "secondary": [ + "10f00a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "boxes", + "grid", + "squares" + ] + }, + "unicode": "f00a", + "label": "Table Cells", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm88 64v64H64V96h88zm56 0h88v64H208V96zm240 0v64H360V96h88zM64 224h88v64H64V224zm232 0v64H208V224h88zm64 0h88v64H360V224zM152 352v64H64V352h88zm56 0h88v64H208V352zm240 0v64H360V352h88z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table-cells-large": { + "aliases": { + "names": [ + "th-large" + ], + "unicodes": { + "secondary": [ + "10f009" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "boxes", + "grid", + "squares" + ] + }, + "unicode": "f009", + "label": "Table Cells Large", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 96V224H288V96H448zm0 192V416H288V288H448zM224 224H64V96H224V224zM64 288H224V416H64V288zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table-columns": { + "aliases": { + "names": [ + "columns" + ], + "unicodes": { + "secondary": [ + "10f0db" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "dashboard", + "organize", + "panes", + "split" + ] + }, + "unicode": "f0db", + "label": "Table Columns", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm64 64V416H224V160H64zm384 0H288V416H448V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table-list": { + "aliases": { + "names": [ + "th-list" + ], + "unicodes": { + "secondary": [ + "10f00b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "unicode": "f00b", + "label": "Table List", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm64 0v64h64V96H64zm384 0H192v64H448V96zM64 224v64h64V224H64zm384 0H192v64H448V224zM64 352v64h64V352H64zm384 0H192v64H448V352z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "table-tennis-paddle-ball": { + "aliases": { + "names": [ + "ping-pong-paddle-ball", + "table-tennis" + ], + "unicodes": { + "composite": [ + "1f3d3" + ], + "secondary": [ + "10f45d" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "bat", + "game", + "paddle", + "ping pong", + "table tennis" + ] + }, + "unicode": "f45d", + "label": "Table Tennis Paddle Ball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 288c-50.1 0-93.6 28.8-114.6 70.8L68.9 126.3l.6-.6 60.1-60.1c87.5-87.5 229.3-87.5 316.8 0c67.1 67.1 82.7 166.3 46.8 248.3C471.8 297.6 445 288 416 288zM49.3 151.9L290.1 392.7c-1.4 7.5-2.1 15.3-2.1 23.3c0 23.2 6.2 44.9 16.9 63.7c-3 .2-6.1 .3-9.2 .3H293c-33.9 0-66.5-13.5-90.5-37.5l-9.8-9.8c-13.1-13.1-34.6-12.4-46.8 1.7L88.2 501c-5.8 6.7-14.2 10.7-23 11s-17.5-3.1-23.8-9.4l-32-32C3.1 464.3-.3 455.7 0 446.9s4.3-17.2 11-23l66.6-57.7c14-12.2 14.8-33.7 1.7-46.8l-9.8-9.8C45.5 285.5 32 252.9 32 219v-2.7c0-22.8 6.1-44.9 17.3-64.3zM416 320a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tablet": { + "aliases": { + "names": [ + "tablet-android" + ], + "unicodes": { + "secondary": [ + "10f3fb" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "device", + "kindle", + "screen" + ] + }, + "unicode": "f3fb", + "label": "Tablet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM176 432h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tablet-button": { + "aliases": { + "unicodes": { + "secondary": [ + "10f10a" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "device", + "ipad", + "kindle", + "screen" + ] + }, + "unicode": "f10a", + "label": "Tablet Button", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM224 400a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tablet-screen-button": { + "aliases": { + "names": [ + "tablet-alt" + ], + "unicodes": { + "secondary": [ + "10f3fa" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "device", + "ipad", + "kindle", + "screen" + ] + }, + "unicode": "f3fa", + "label": "Tablet Screen Button", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM256 448a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM384 64H64V384H384V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tablets": { + "aliases": { + "unicodes": { + "secondary": [ + "10f490" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine", + "pills", + "prescription" + ] + }, + "unicode": "f490", + "label": "Tablets", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M614.3 247c16.3-25 25.7-54.9 25.7-87C640 71.6 568.4 0 480 0c-32.1 0-61.9 9.4-87 25.7c-7.9 5.2-8.5 16.2-1.8 22.9L591.4 248.8c6.7 6.7 17.8 6.2 22.9-1.8zM567 294.3c7.9-5.2 8.5-16.2 1.8-22.9L368.6 71.2c-6.7-6.7-17.8-6.2-22.9 1.8c-16.3 25-25.7 54.9-25.7 87c0 88.4 71.6 160 160 160c32.1 0 61.9-9.4 87-25.7zM301.5 368H18.5c-9.5 0-16.9 8.2-15 17.5C18.9 457.8 83.1 512 160 512s141.1-54.2 156.5-126.5c2-9.3-5.5-17.5-15-17.5zm0-32c9.5 0 16.9-8.2 15-17.5C301.1 246.2 236.9 192 160 192S18.9 246.2 3.5 318.5c-2 9.3 5.5 17.5 15 17.5H301.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tachograph-digital": { + "aliases": { + "names": [ + "digital-tachograph" + ], + "unicodes": { + "secondary": [ + "10f566" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "data", + "distance", + "speed", + "tachometer" + ] + }, + "unicode": "f566", + "label": "Tachograph Digital", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H576c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm32 64H320c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32zM64 368c0-8.8 7.2-16 16-16H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm320 0c0-8.8 7.2-16 16-16H560c8.8 0 16 7.2 16 16s-7.2 16-16 16H400c-8.8 0-16-7.2-16-16zM80 288a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm48 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm80-16a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm48 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm80-16a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tag": { + "aliases": { + "unicodes": { + "composite": [ + "1f3f7" + ], + "secondary": [ + "10f02b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "discount", + "labe", + "label", + "price", + "shopping" + ] + }, + "unicode": "f02b", + "label": "Tag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 80V229.5c0 17 6.7 33.3 18.7 45.3l176 176c25 25 65.5 25 90.5 0L418.7 317.3c25-25 25-65.5 0-90.5l-176-176c-12-12-28.3-18.7-45.3-18.7H48C21.5 32 0 53.5 0 80zm112 32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tags": { + "aliases": { + "unicodes": { + "secondary": [ + "10f02c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "discount", + "label", + "price", + "shopping" + ] + }, + "unicode": "f02c", + "label": "Tags", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M345 39.1L472.8 168.4c52.4 53 52.4 138.2 0 191.2L360.8 472.9c-9.3 9.4-24.5 9.5-33.9 .2s-9.5-24.5-.2-33.9L438.6 325.9c33.9-34.3 33.9-89.4 0-123.7L310.9 72.9c-9.3-9.4-9.2-24.6 .2-33.9s24.6-9.2 33.9 .2zM0 229.5V80C0 53.5 21.5 32 48 32H197.5c17 0 33.3 6.7 45.3 18.7l168 168c25 25 25 65.5 0 90.5L277.3 442.7c-25 25-65.5 25-90.5 0l-168-168C6.7 262.7 0 246.5 0 229.5zM144 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tape": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4db" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "package", + "sticky" + ] + }, + "unicode": "f4db", + "label": "Tape", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M380.8 416c41.5-40.7 67.2-97.3 67.2-160C448 132.3 347.7 32 224 32S0 132.3 0 256S100.3 480 224 480H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H380.8zM224 160a96 96 0 1 1 0 192 96 96 0 1 1 0-192zm64 96a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tarp": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protection", + "tarp", + "tent", + "waterproof" + ] + }, + "unicode": "e57b", + "label": "Tarp", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M576 128c0-35.3-28.7-64-64-64H64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64l352 0 0-128c0-17.7 14.3-32 32-32H576V128zM448 448L576 320H448l0 128zM96 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tarp-droplet": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protection", + "tarp", + "tent", + "waterproof" + ] + }, + "unicode": "e57c", + "label": "Tarp Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 160c-35.3 0-64-26.9-64-60c0-24 33.7-70.1 52.2-93.5c6.1-7.7 17.5-7.7 23.6 0C318.3 29.9 352 76 352 100c0 33.1-28.7 60-64 60zM64 128H197.5c13.2 37.3 48.7 64 90.5 64s77.4-26.7 90.5-64H512c35.3 0 64 28.7 64 64V352H448c-17.7 0-32 14.3-32 32l0 128L64 512c-35.3 0-64-28.7-64-64V192c0-35.3 28.7-64 64-64zM448 512l0-128H576L448 512zM96 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "taxi": { + "aliases": { + "names": [ + "cab" + ], + "unicodes": { + "composite": [ + "1f696" + ], + "secondary": [ + "10f1ba" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cab", + "cabbie", + "car", + "car service", + "lyft", + "machine", + "oncoming", + "oncoming taxi", + "taxi", + "transportation", + "travel", + "uber", + "vehicle" + ] + }, + "unicode": "f1ba", + "label": "Taxi", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 0c-17.7 0-32 14.3-32 32V64c0 .1 0 .1 0 .2c-38.6 2.2-72.3 27.3-85.2 64.1L39.6 228.8C16.4 238.4 0 261.3 0 288V432v48c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V432H416v48c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V432 288c0-26.7-16.4-49.6-39.6-59.2L437.2 128.3c-12.9-36.8-46.6-62-85.2-64.1c0-.1 0-.1 0-.2V32c0-17.7-14.3-32-32-32H192zM165.4 128H346.6c13.6 0 25.7 8.6 30.2 21.4L402.9 224H109.1l26.1-74.6c4.5-12.8 16.6-21.4 30.2-21.4zM96 288a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm288 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "teamspeak": { + "changes": [ + "5.0.11", + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f4f9", + "label": "TeamSpeak", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M244.2 346.79c2.4-12.3-12-30-32.4-48.7-20.9-19.2-48.2-39.1-63.4-46.6-21.7-12-41.7-1.8-46.3 22.7-5 26.2 0 51.4 14.5 73.9 10.2 15.5 25.4 22.7 43.4 24 11.6.6 52.5 2.2 61.7-1 11.9-4.3 20.1-11.8 22.5-24.3zm205 20.8a5.22 5.22 0 0 0-8.3 2.4c-8 25.4-44.7 112.5-172.1 121.5-149.7 10.5 80.3 43.6 145.4-6.4 22.7-17.4 47.6-35 46.6-85.4-.4-10.1-4.9-26.69-11.6-32.1zm62-122.4c-.3-18.9-8.6-33.4-26-42.2-2.9-1.3-5-2.7-5.9-6.4A222.64 222.64 0 0 0 438.9 103c-1.1-1.5-3.5-3.2-2.2-5 8.5-11.5-.3-18-7-24.4Q321.4-31.11 177.4 13.09c-40.1 12.3-73.9 35.6-102 67.4-4 4.3-6.7 9.1-3 14.5 3 4 1.3 6.2-1 9.3C51.6 132 38.2 162.59 32.1 196c-.7 4.3-2.9 6-6.4 7.8-14.2 7-22.5 18.5-24.9 34L0 264.29v20.9c0 30.8 21 50.4 51.8 49 7.7-.3 11.7-4.3 12-11.5 2-77.5-2.4-95.4 3.7-125.8C92.1 72.39 234.3 5 345.3 65.39 411.4 102 445.7 159 447.6 234.79c.8 28.2 0 56.5 0 84.6 0 7 2.2 12.5 9.4 14.2 24.1 5 49.2-12 53.2-36.7 2.9-17.1 1-34.5 1-51.7zm-159.6 131.5c36.5 2.8 59.3-28.5 58.4-60.5-2.1-45.2-66.2-16.5-87.8-8-73.2 28.1-45 54.9-22.2 60.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "teeth": { + "aliases": { + "unicodes": { + "secondary": [ + "10f62e" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bite", + "dental", + "dentist", + "gums", + "mouth", + "smile", + "tooth" + ] + }, + "unicode": "f62e", + "label": "Teeth", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 128C0 75 43 32 96 32H480c53 0 96 43 96 96V384c0 53-43 96-96 96H96c-53 0-96-43-96-96V128zm176 48v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V176c0-26.5-21.5-48-48-48s-48 21.5-48 48zm176-48c-26.5 0-48 21.5-48 48v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V176c0-26.5-21.5-48-48-48zM48 208v24c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V208c0-26.5-21.5-48-48-48s-48 21.5-48 48zM96 384c26.5 0 48-21.5 48-48V312c0-13.3-10.7-24-24-24H72c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48zm80-48c0 26.5 21.5 48 48 48s48-21.5 48-48V312c0-13.3-10.7-24-24-24H200c-13.3 0-24 10.7-24 24v24zm176 48c26.5 0 48-21.5 48-48V312c0-13.3-10.7-24-24-24H328c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48zm80-176v24c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V208c0-26.5-21.5-48-48-48s-48 21.5-48 48zm48 176c26.5 0 48-21.5 48-48V312c0-13.3-10.7-24-24-24H456c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "teeth-open": { + "aliases": { + "unicodes": { + "secondary": [ + "10f62f" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dental", + "dentist", + "gums bite", + "mouth", + "smile", + "tooth" + ] + }, + "unicode": "f62f", + "label": "Teeth Open", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 32C43 32 0 75 0 128v64c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-53-43-96-96-96H96zM224 96c26.5 0 48 21.5 48 48v56c0 13.3-10.7 24-24 24H200c-13.3 0-24-10.7-24-24V144c0-26.5 21.5-48 48-48zm80 48c0-26.5 21.5-48 48-48s48 21.5 48 48v56c0 13.3-10.7 24-24 24H328c-13.3 0-24-10.7-24-24V144zM96 128c26.5 0 48 21.5 48 48v24c0 13.3-10.7 24-24 24H72c-13.3 0-24-10.7-24-24V176c0-26.5 21.5-48 48-48zm336 48c0-26.5 21.5-48 48-48s48 21.5 48 48v24c0 13.3-10.7 24-24 24H456c-13.3 0-24-10.7-24-24V176zM96 480H480c53 0 96-43 96-96V352c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v32c0 53 43 96 96 96zm0-64c-26.5 0-48-21.5-48-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48zm80-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48s-48-21.5-48-48zm176 48c-26.5 0-48-21.5-48-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48zm80-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48s-48-21.5-48-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "telegram": { + "aliases": { + "names": [ + "telegram-plane" + ], + "unicodes": { + "composite": [ + "f3fe" + ], + "secondary": [ + "10f3fe" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2c6", + "label": "Telegram", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248,8C111.033,8,0,119.033,0,256S111.033,504,248,504,496,392.967,496,256,384.967,8,248,8ZM362.952,176.66c-3.732,39.215-19.881,134.378-28.1,178.3-3.476,18.584-10.322,24.816-16.948,25.425-14.4,1.326-25.338-9.517-39.287-18.661-21.827-14.308-34.158-23.215-55.346-37.177-24.485-16.135-8.612-25,5.342-39.5,3.652-3.793,67.107-61.51,68.335-66.746.153-.655.3-3.1-1.154-4.384s-3.59-.849-5.135-.5q-3.283.746-104.608,69.142-14.845,10.194-26.894,9.934c-8.855-.191-25.888-5.006-38.551-9.123-15.531-5.048-27.875-7.717-26.8-16.291q.84-6.7,18.45-13.7,108.446-47.248,144.628-62.3c68.872-28.647,83.183-33.623,92.511-33.789,2.052-.034,6.639.474,9.61,2.885a10.452,10.452,0,0,1,3.53,6.716A43.765,43.765,0,0,1,362.952,176.66Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "temperature-arrow-down": { + "aliases": { + "names": [ + "temperature-down" + ], + "unicodes": { + "secondary": [ + "10e03f" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air conditioner", + "cold", + "heater", + "mercury", + "thermometer", + "winter" + ] + }, + "unicode": "e03f", + "label": "Temperature Arrow Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C217.8 332.6 224 349.5 224 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9C88.9 308.4 96 293.8 96 276.5V112zM144 0C82.1 0 32 50.1 32 112V276.4c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C11.2 304.2 0 334.8 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.3-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256 50.1 205.9 0 144 0zm0 416c26.5 0 48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V272c0-8.8-7.2-16-16-16s-16 7.2-16 16v50.7c-18.6 6.6-32 24.4-32 45.3c0 26.5 21.5 48 48 48zm336-64H448V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V352H352c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c6 6 14.1 9.4 22.6 9.4s16.6-3.4 22.6-9.4l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-arrow-up": { + "aliases": { + "names": [ + "temperature-up" + ], + "unicodes": { + "secondary": [ + "10e040" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air conditioner", + "cold", + "heater", + "mercury", + "thermometer", + "winter" + ] + }, + "unicode": "e040", + "label": "Temperature Arrow Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C217.8 332.6 224 349.5 224 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9C88.9 308.4 96 293.8 96 276.5V112zM144 0C82.1 0 32 50.1 32 112V276.4c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C11.2 304.2 0 334.8 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.3-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256 50.1 205.9 0 144 0zm0 416c26.5 0 48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V112c0-8.8-7.2-16-16-16s-16 7.2-16 16V322.7c-18.6 6.6-32 24.4-32 45.3c0 26.5 21.5 48 48 48zM448 160h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32V448c0 17.7 14.3 32 32 32s32-14.3 32-32V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-empty": { + "aliases": { + "names": [ + "temperature-0", + "thermometer-0", + "thermometer-empty" + ], + "unicodes": { + "secondary": [ + "10f2cb" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "mercury", + "status", + "temperature" + ] + }, + "unicode": "f2cb", + "label": "Temperature Empty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M96 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C217.8 332.6 224 349.5 224 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9C88.9 308.4 96 293.8 96 276.5V112zM144 0C82.1 0 32 50.2 32 112V276.5c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C11.2 304.2 0 334.8 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.3-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256 50.2 205.9 0 144 0zm0 416a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-full": { + "aliases": { + "names": [ + "temperature-4", + "thermometer-4", + "thermometer-full" + ], + "unicodes": { + "secondary": [ + "10f2c7" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fever", + "hot", + "mercury", + "status", + "temperature" + ] + }, + "unicode": "f2c7", + "label": "Temperature Full", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M144 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM32 112C32 50.2 82.1 0 144 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM192 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V112c0-8.8 7.2-16 16-16s16 7.2 16 16V322.7c18.6 6.6 32 24.4 32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-half": { + "aliases": { + "names": [ + "temperature-2", + "thermometer-2", + "thermometer-half" + ], + "unicodes": { + "composite": [ + "1f321" + ], + "secondary": [ + "10f2c9" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mercury", + "status", + "temperature", + "thermometer", + "weather" + ] + }, + "unicode": "f2c9", + "label": "Temperature Half", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M144 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM32 112C32 50.2 82.1 0 144 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM192 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V208c0-8.8 7.2-16 16-16s16 7.2 16 16V322.7c18.6 6.6 32 24.4 32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-high": { + "aliases": { + "unicodes": { + "secondary": [ + "10f769" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cook", + "covid-19", + "mercury", + "summer", + "thermometer", + "warm" + ] + }, + "unicode": "f769", + "label": "Temperature High", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm0 128A96 96 0 1 0 416 0a96 96 0 1 0 0 192zM96 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C217.8 332.6 224 349.5 224 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9C88.9 308.4 96 293.8 96 276.5V112zM144 0C82.1 0 32 50.2 32 112V276.5c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C11.2 304.2 0 334.8 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.3-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256 50.2 205.9 0 144 0zm0 416c26.5 0 48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V112c0-8.8-7.2-16-16-16s-16 7.2-16 16V322.7c-18.6 6.6-32 24.4-32 45.3c0 26.5 21.5 48 48 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-low": { + "aliases": { + "unicodes": { + "secondary": [ + "10f76b" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "cool", + "covid-19", + "mercury", + "thermometer", + "winter" + ] + }, + "unicode": "f76b", + "label": "Temperature Low", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM320 96a96 96 0 1 1 192 0A96 96 0 1 1 320 96zM144 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM32 112C32 50.2 82.1 0 144 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM192 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V272c0-8.8 7.2-16 16-16s16 7.2 16 16v50.7c18.6 6.6 32 24.4 32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-quarter": { + "aliases": { + "names": [ + "temperature-1", + "thermometer-1", + "thermometer-quarter" + ], + "unicodes": { + "secondary": [ + "10f2ca" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mercury", + "status", + "temperature" + ] + }, + "unicode": "f2ca", + "label": "Temperature Quarter", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M144 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM32 112C32 50.2 82.1 0 144 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM192 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V272c0-8.8 7.2-16 16-16s16 7.2 16 16v50.7c18.6 6.6 32 24.4 32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "temperature-three-quarters": { + "aliases": { + "names": [ + "temperature-3", + "thermometer-3", + "thermometer-three-quarters" + ], + "unicodes": { + "secondary": [ + "10f2c8" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mercury", + "status", + "temperature" + ] + }, + "unicode": "f2c8", + "label": "Temperature Three Quarters", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M144 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM32 112C32 50.2 82.1 0 144 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM192 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V144c0-8.8 7.2-16 16-16s16 7.2 16 16V322.7c18.6 6.6 32 24.4 32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tencent-weibo": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d5", + "label": "Tencent Weibo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "tenge-sign": { + "aliases": { + "names": [ + "tenge" + ], + "unicodes": { + "composite": [ + "20b8" + ], + "secondary": [ + "10f7d7" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Tenge Sign", + "currency" + ] + }, + "unicode": "f7d7", + "label": "Tenge Sign", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64zM0 192c0-17.7 14.3-32 32-32H192 352c17.7 0 32 14.3 32 32s-14.3 32-32 32H224V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V224H32c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tent": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bivouac", + "campground", + "refugee", + "shelter", + "tent" + ] + }, + "unicode": "e57d", + "label": "Tent", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M269.4 6C280.5-2 295.5-2 306.6 6l224 160c7.4 5.3 12.2 13.5 13.2 22.5l32 288c1 9-1.9 18.1-8 24.9s-14.7 10.7-23.8 10.7H416L288 288V512H32c-9.1 0-17.8-3.9-23.8-10.7s-9-15.8-8-24.9l32-288c1-9 5.8-17.2 13.2-22.5L269.4 6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tent-arrow-down-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "permanent", + "refugee", + "shelter" + ] + }, + "unicode": "e57e", + "label": "Tent Arrow Down To Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M241.8 111.9c8.9 9.9 8.1 25-1.8 33.9l-80 72c-9.1 8.2-23 8.2-32.1 0l-80-72c-9.9-8.9-10.7-24-1.8-33.9s24-10.7 33.9-1.8l39.9 36L120 24c0-13.3 10.7-24 24-24s24 10.7 24 24l0 122.1 39.9-36c9.9-8.9 25-8.1 33.9 1.8zm122.8 22.6c11.5-8.7 27.3-8.7 38.8 0l168 128c6.6 5 11 12.5 12.3 20.7l24 160 .7 4.7c17.5 .2 31.6 14.4 31.6 32c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H159.6l.7-4.7 24-160c1.2-8.2 5.6-15.7 12.3-20.7l168-128zM384 448h76.8L384 320V448z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tent-arrow-left-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refugee", + "shelter", + "transition" + ] + }, + "unicode": "e57f", + "label": "Tent Arrow Left Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M488.1 6.2c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9L489.5 72 86.5 72l33.5-30.2c9.9-8.9 10.7-24 1.8-33.9S97.8-2.7 87.9 6.2l-80 72C2.9 82.7 0 89.2 0 96s2.9 13.3 7.9 17.8l80 72c9.9 8.9 25 8.1 33.9-1.8s8.1-25-1.8-33.9L86.5 120l402.9 0-33.5 30.2c-9.9 8.9-10.7 24-1.8 33.9s24 10.7 33.9 1.8l80-72c5.1-4.6 7.9-11 7.9-17.8s-2.9-13.3-7.9-17.8l-80-72zM307.4 166.5c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S86.7 512 96 512H288V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tent-arrow-turn-left": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refugee", + "shelter", + "temporary" + ] + }, + "unicode": "e580", + "label": "Tent Arrow Turn Left", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M120.1 41.8c9.9-8.9 10.7-24 1.8-33.9S97.8-2.7 87.9 6.2l-80 72C2.9 82.7 0 89.2 0 96s2.9 13.3 7.9 17.8l80 72c9.9 8.9 25 8.1 33.9-1.8s8.1-25-1.8-33.9L86.5 120 456 120c39.8 0 72 32.2 72 72v40c0 13.3 10.7 24 24 24s24-10.7 24-24V192c0-66.3-53.7-120-120-120L86.5 72l33.5-30.2zM307.4 166.5c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S86.7 512 96 512H288V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tent-arrows-down": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refugee", + "shelter", + "spontaneous" + ] + }, + "unicode": "e581", + "label": "Tent Arrows Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M201.8 111.9c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36L128 24c0-13.3-10.7-24-24-24S80 10.7 80 24l0 122.1-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zm352 0c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V146.1l-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zM299.4 166.5c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S78.7 512 88 512H280V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tents": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bivouac", + "campground", + "refugee", + "shelter", + "tent" + ] + }, + "unicode": "e582", + "label": "Tents", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M396.6 6.5L235.8 129.1c9.6 1.8 18.9 5.8 27 12l168 128c13.2 10.1 22 24.9 24.5 41.4l6.2 41.5H608c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128c-11.5-8.7-27.3-8.7-38.8 0zm-153.2 160c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S22.7 512 32 512H224V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "terminal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f120" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "code", + "coding", + "command", + "console", + "development", + "prompt", + "terminal" + ] + }, + "unicode": "f120", + "label": "Terminal", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321875, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M41.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 41.4 86.6zM288 416H576c17.7 0 32 14.3 32 32s-14.3 32-32 32H288c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "text-height": { + "aliases": { + "unicodes": { + "secondary": [ + "10f034" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f034", + "label": "Text Height", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 128V96h64l0 320H96c-17.7 0-32 14.3-32 32s14.3 32 32 32H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H192l0-320h64v32c0 17.7 14.3 32 32 32s32-14.3 32-32V80c0-26.5-21.5-48-48-48H160 48C21.5 32 0 53.5 0 80v48c0 17.7 14.3 32 32 32s32-14.3 32-32zM502.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32V352H416c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H512V160h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "text-slash": { + "aliases": { + "names": [ + "remove-format" + ], + "unicodes": { + "secondary": [ + "10f87d" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "font", + "format", + "remove", + "style", + "text" + ] + }, + "unicode": "f87d", + "label": "Text Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L355.7 253.5 400.2 96H503L497 120.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l11-44.1C577.6 61.3 554.7 32 523.5 32H376.1h-.3H204.5c-22 0-41.2 15-46.6 36.4l-6.3 25.2L38.8 5.1zm168 131.7c.1-.3 .2-.7 .3-1L217 96H333.7L301.3 210.8l-94.5-74.1zM243.3 416H192c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H309.8l17.6-62.1L272.9 311 243.3 416z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "text-width": { + "aliases": { + "unicodes": { + "secondary": [ + "10f035" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "font", + "format", + "text", + "type" + ] + }, + "unicode": "f035", + "label": "Text Width", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 128V96H192l0 128H176c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H256l0-128H384v32c0 17.7 14.3 32 32 32s32-14.3 32-32V80c0-26.5-21.5-48-48-48H224 48C21.5 32 0 53.5 0 80v48c0 17.7 14.3 32 32 32s32-14.3 32-32zM9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V416H320v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6v32H128V320c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "the-red-yeti": { + "changes": [ + "5.3.0", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f69d", + "label": "The Red Yeti", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M488.23 241.7l20.7 7.1c-9.6-23.9-23.9-37-31.7-44.8l7.1-18.2c.2 0 12.3-27.8-2.5-30.7-.6-11.3-6.6-27-18.4-27-7.6-10.6-17.7-12.3-30.7-5.9a122.2 122.2 0 0 0-25.3 16.5c-5.3-6.4-3 .4-3-29.8-37.1-24.3-45.4-11.7-74.8 3l.5.5a239.36 239.36 0 0 0-68.4-13.3c-5.5-8.7-18.6-19.1-25.1-25.1l24.8 7.1c-5.5-5.5-26.8-12.9-34.2-15.2 18.2-4.1 29.8-20.8 42.5-33-34.9-10.1-67.9-5.9-97.9 11.8l12-44.2L182 0c-31.6 24.2-33 41.9-33.7 45.5-.9-2.4-6.3-19.6-15.2-27a35.12 35.12 0 0 0-.5 25.3c3 8.4 5.9 14.8 8.4 18.9-16-3.3-28.3-4.9-49.2 0h-3.7l33 14.3a194.26 194.26 0 0 0-46.7 67.4l-1.7 8.4 1.7 1.7 7.6-4.7c-3.3 11.6-5.3 19.4-6.6 25.8a200.18 200.18 0 0 0-27.8 40.3c-15 1-31.8 10.8-40.3 14.3l3 3.4 28.8 1c-.5 1-.7 2.2-1.2 3.2-7.3 6.4-39.8 37.7-33 80.7l20.2-22.4c.5 1.7.7 3.4 1.2 5.2 0 25.5.4 89.6 64.9 150.5 43.6 40 96 60.2 157.5 60.2 121.7 0 223-87.3 223-211.5 6.8-9.7-1.2 3 16.7-25.1l13 14.3 2.5-.5A181.84 181.84 0 0 0 495 255a44.74 44.74 0 0 0-6.8-13.3zM398 111.2l-.5 21.9c5.5 18.1 16.9 17.2 22.4 17.2l-3.4-4.7 22.4-5.4a242.44 242.44 0 0 1-27 0c12.8-2.1 33.3-29 43-11.3 3.4 7.6 6.4 17.2 9.3 27.8l1.7-5.9a56.38 56.38 0 0 1-1.7-15.2c5.4.5 8.8 3.4 9.3 10.1.5 6.4 1.7 14.8 3.4 25.3l4.7-11.3c4.6 0 4.5-3.6-2.5 20.7-20.9-8.7-35.1-8.4-46.5-8.4l18.2-16c-25.3 8.2-33 10.8-54.8 20.9-1.1-5.4-5-13.5-16-19.9-3.2 3.8-2.8.9-.7 14.8h-2.5a62.32 62.32 0 0 0-8.4-23.1l4.2-3.4c8.4-7.1 11.8-14.3 10.6-21.9-.5-6.4-5.4-13.5-13.5-20.7 5.6-3.4 15.2-.4 28.3 8.5zm-39.6-10.1c2.7 1.9 11.4 5.4 18.9 17.2 4.2 8.4 4 9.8 3.4 11.1-.5 2.4-.5 4.3-3 7.1-1.7 2.5-5.4 4.7-11.8 7.6-7.6-13-16.5-23.6-27.8-31.2zM91 143.1l1.2-1.7c1.2-2.9 4.2-7.6 9.3-15.2l2.5-3.4-13 12.3 5.4-4.7-10.1 9.3-4.2 1.2c12.3-24.1 23.1-41.3 32.5-50.2 9.3-9.3 16-16 20.2-19.4l-6.4 1.2c-11.3-4.2-19.4-7.1-24.8-8.4 2.5-.5 3.7-.5 3.2-.5 10.3 0 17.5.5 20.9 1.2a52.35 52.35 0 0 0 16 2.5l.5-1.7-8.4-35.8 13.5 29a42.89 42.89 0 0 0 5.9-14.3c1.7-6.4 5.4-13 10.1-19.4s7.6-10.6 9.3-11.3a234.68 234.68 0 0 0-6.4 25.3l-1.7 7.1-.5 4.7 2.5 2.5C190.4 39.9 214 34 239.8 34.5l21.1.5c-11.8 13.5-27.8 21.9-48.5 24.8a201.26 201.26 0 0 1-23.4 2.9l-.2-.5-2.5-1.2a20.75 20.75 0 0 0-14 2c-2.5-.2-4.9-.5-7.1-.7l-2.5 1.7.5 1.2c2 .2 3.9.5 6.2.7l-2 3.4 3.4-.5-10.6 11.3c-4.2 3-5.4 6.4-4.2 9.3l5.4-3.4h1.2a39.4 39.4 0 0 1 25.3-15.2v-3c6.4.5 13 1 19.4 1.2 6.4 0 8.4.5 5.4 1.2a189.6 189.6 0 0 1 20.7 13.5c13.5 10.1 23.6 21.9 30 35.4 8.8 18.2 13.5 37.1 13.5 56.6a141.13 141.13 0 0 1-3 28.3 209.91 209.91 0 0 1-16 46l2.5.5c18.2-19.7 41.9-16 49.2-16l-6.4 5.9 22.4 17.7-1.7 30.7c-5.4-12.3-16.5-21.1-33-27.8 16.5 14.8 23.6 21.1 21.9 20.2-4.8-2.8-3.5-1.9-10.8-3.7 4.1 4.1 17.5 18.8 18.2 20.7l.2.2-.2.2c0 1.8 1.6-1.2-14 22.9-75.2-15.3-106.27-42.7-141.2-63.2l11.8 1.2c-11.8-18.5-15.6-17.7-38.4-26.1L149 225c-8.8-3-18.2-3-28.3.5l7.6-10.6-1.2-1.7c-14.9 4.3-19.8 9.2-22.6 11.3-1.1-5.5-2.8-12.4-12.3-28.8l-1.2 27-13.2-5c1.5-25.2 5.4-50.5 13.2-74.6zm276.5 330c-49.9 25-56.1 22.4-59 23.9-29.8-11.8-50.9-31.7-63.5-58.8l30 16.5c-9.8-9.3-18.3-16.5-38.4-44.3l11.8 23.1-17.7-7.6c14.2 21.1 23.5 51.7 66.6 73.5-120.8 24.2-199-72.1-200.9-74.3a262.57 262.57 0 0 0 35.4 24.8c3.4 1.7 7.1 2.5 10.1 1.2l-16-20.7c9.2 4.2 9.5 4.5 69.1 29-42.5-20.7-73.8-40.8-93.2-60.2-.5 6.4-1.2 10.1-1.2 10.1a80.25 80.25 0 0 1 20.7 26.6c-39-18.9-57.6-47.6-71.3-82.6 49.9 55.1 118.9 37.5 120.5 37.1 34.8 16.4 69.9 23.6 113.9 10.6 3.3 0 20.3 17 25.3 39.1l4.2-3-2.5-23.6c9 9 24.9 22.6 34.4 13-15.6-5.3-23.5-9.5-29.5-31.7 4.6 4.2 7.6 9 27.8 15l1.2-1.2-10.5-14.2c11.7-4.8-3.5 1 32-10.8 4.3 34.3 9 49.2.7 89.5zm115.3-214.4l-2.5.5 3 9.3c-3.5 5.9-23.7 44.3-71.6 79.7-39.5 29.8-76.6 39.1-80.9 40.3l-7.6-7.1-1.2 3 14.3 16-7.1-4.7 3.4 4.2h-1.2l-21.9-13.5 9.3 26.6-19-27.9-1.2 2.5 7.6 29c-6.1-8.2-21-32.6-56.8-39.6l32.5 21.2a214.82 214.82 0 0 1-93.2-6.4c-4.2-1.2-8.9-2.5-13.5-4.2l1.2-3-44.8-22.4 26.1 22.4c-57.7 9.1-113-25.4-126.4-83.4l-2.5-16.4-22.27 22.3c19.5-57.5 25.6-57.9 51.4-70.1-9.1-5.3-1.6-3.3-38.4-9.3 15.8-5.8 33-15.4 73 5.2a18.5 18.5 0 0 1 3.7-1.7c.6-3.2.4-.8 1-11.8 3.9 10 3.6 8.7 3 9.3l1.7.5c12.7-6.5 8.9-4.5 17-8.9l-5.4 13.5 22.3-5.8-8.4 8.4 2.5 2.5c4.5-1.8 30.3 3.4 40.8 16l-23.6-2.5c39.4 23 51.5 54 55.8 69.6l1.7-1.2c-2.8-22.3-12.4-33.9-16-40.1 4.2 5 39.2 34.6 110.4 46-11.3-.5-23.1 5.4-34.9 18.9l46.7-20.2-9.3 21.9c7.6-10.1 14.8-23.6 21.2-39.6v-.5l1.2-3-1.2 16c13.5-41.8 25.3-78.5 35.4-109.7l13.5-27.8v-2l-5.4-4.2h10.1l5.9 4.2 2.5-1.2-3.4-16 12.3 18.9 41.8-20.2-14.8 13 .5 2.9 17.7-.5a184 184 0 0 1 33 4.2l-23.6 2.5-1.2 3 26.6 23.1a254.21 254.21 0 0 1 27 32c-11.2-3.3-10.3-3.4-21.2-3.4l12.3 32.5zm-6.1-71.3l-3.9 13-14.3-11.8zm-254.8 7.1c1.7 10.6 4.7 17.7 8.8 21.9-9.3 6.6-27.5 13.9-46.5 16l.5 1.2a50.22 50.22 0 0 0 24.8-2.5l-7.1 13c4.2-1.7 10.1-7.1 17.7-14.8 11.9-5.5 12.7-5.1 20.2-16-12.7-6.4-15.7-13.7-18.4-18.8zm3.7-102.3c-6.4-3.4-10.6 3-12.3 18.9s2.5 29.5 11.8 39.6 18.2 10.6 26.1 3 3.4-23.6-11.3-47.7a39.57 39.57 0 0 0-14.27-13.8zm-4.7 46.3c5.4 2.2 10.5 1.9 12.3-10.6v-4.7l-1.2.5c-4.3-3.1-2.5-4.5-1.7-6.2l.5-.5c-.9-1.2-5-8.1-12.5 4.7-.5-13.5.5-21.9 3-24.8 1.2-2.5 4.7-1.2 11.3 4.2 6.4 5.4 11.3 16 15.2 32.5 6.5 28-19.8 26.2-26.9 4.9zm-45-5.5c1.6.3 9.3-1.1 9.3-14.8h-.5c-5.4-1.1-2.2-5.5-.7-5.9-1.7-3-3.4-4.2-5.4-4.7-8.1 0-11.6 12.7-8.1 21.2a7.51 7.51 0 0 0 5.43 4.2zM216 82.9l-2.5.5.5 3a48.94 48.94 0 0 1 26.1 5.9c-2.5-5.5-10-14.3-28.3-14.3l.5 2.5zm-71.8 49.4c21.7 16.8 16.5 21.4 46.5 23.6l-2.9-4.7a42.67 42.67 0 0 0 14.8-28.3c1.7-16-1.2-29.5-8.8-41.3l13-7.6a2.26 2.26 0 0 0-.5-1.7 14.21 14.21 0 0 0-13.5 1.7c-12.7 6.7-28 20.9-29 22.4-1.7 1.7-3.4 5.9-5.4 13.5a99.61 99.61 0 0 0-2.9 23.6c-4.7-8-10.5-6.4-19.9-5.9l7.1 7.6c-16.5 0-23.3 15.4-23.6 16 6.8 0 4.6-7.6 30-12.3-4.3-6.3-3.3-5-4.9-6.6zm18.7-18.7c1.2-7.6 3.4-13 6.4-17.2 5.4-6.4 10.6-10.1 16-11.8 4.2-1.7 7.1 1.2 10.1 9.3a72.14 72.14 0 0 1 3 25.3c-.5 9.3-3.4 17.2-8.4 23.1-2.9 3.4-5.4 5.9-6.4 7.6a39.21 39.21 0 0 1-11.3-.5l-7.1-3.4-5.4-6.4c.8-10 1.3-18.8 3.1-26zm42 56.1c-34.8 14.4-34.7 14-36.1 14.3-20.8 4.7-19-24.4-18.9-24.8l5.9-1.2-.5-2.5c-20.2-2.6-31 4.2-32.5 4.9.5.5 3 3.4 5.9 9.3 4.2-6.4 8.8-10.1 15.2-10.6a83.47 83.47 0 0 0 1.7 33.7c.1.5 2.6 17.4 27.5 24.1 11.3 3 27 1.2 48.9-5.4l-9.2.5c-4.2-14.8-6.4-24.8-5.9-29.5 11.3-8.8 21.9-11.3 30.7-7.6h2.5l-11.8-7.6-7.1.5c-5.9 1.2-12.3 4.2-19.4 8.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "themeco": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5c6", + "label": "Themeco", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M202.9 8.43c9.9-5.73 26-5.82 35.95-.21L430 115.85c10 5.6 18 19.44 18 30.86V364c0 11.44-8.06 25.29-18 31L238.81 503.74c-9.93 5.66-26 5.57-35.85-.21L17.86 395.12C8 389.34 0 375.38 0 364V146.71c0-11.44 8-25.36 17.91-31.08zm-77.4 199.83c-15.94 0-31.89.14-47.83.14v101.45H96.8V280h28.7c49.71 0 49.56-71.74 0-71.74zm140.14 100.29l-30.73-34.64c37-7.51 34.8-65.23-10.87-65.51-16.09 0-32.17-.14-48.26-.14v101.59h19.13v-33.91h18.41l29.56 33.91h22.76zm-41.59-82.32c23.34 0 23.26 32.46 0 32.46h-29.13v-32.46zm-95.56-1.6c21.18 0 21.11 38.85 0 38.85H96.18v-38.84zm192.65-18.25c-68.46 0-71 105.8 0 105.8 69.48-.01 69.41-105.8 0-105.8zm0 17.39c44.12 0 44.8 70.86 0 70.86s-44.43-70.86 0-70.86z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "themeisle": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2b2", + "label": "ThemeIsle", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "thermometer": { + "aliases": { + "unicodes": { + "secondary": [ + "10f491" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "mercury", + "status", + "temperature" + ] + }, + "unicode": "f491", + "label": "Thermometer", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 382.1V293.3c0-14.9 5.9-29.1 16.4-39.6l27.3-27.3 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 45.5-45.5C355.2 10.9 381.4 0 408.8 0C465.8 0 512 46.2 512 103.2c0 27.4-10.9 53.6-30.2 73L258.3 399.6c-10.5 10.5-24.7 16.4-39.6 16.4H129.9L41 505c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l89-89z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "think-peaks": { + "changes": [ + "5.4.2", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f731", + "label": "Think Peaks", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M465.4 409.4l87.1-150.2-32-.3-55.1 95L259.2 0 23 407.4l32 .3L259.2 55.6zm-355.3-44.1h32.1l117.4-202.5L463 511.9l32.5.1-235.8-404.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "thumbs-down": { + "aliases": { + "unicodes": { + "composite": [ + "1f44e", + "f088" + ], + "secondary": [ + "10f165" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "-1", + "disagree", + "disapprove", + "dislike", + "down", + "hand", + "social", + "thumb", + "thumbs down", + "thumbs-o-down" + ] + }, + "unicode": "f165", + "label": "Thumbs Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M313.4 479.1c26-5.2 42.9-30.5 37.7-56.5l-2.3-11.4c-5.3-26.7-15.1-52.1-28.8-75.2H464c26.5 0 48-21.5 48-48c0-18.5-10.5-34.6-25.9-42.6C497 236.6 504 223.1 504 208c0-23.4-16.8-42.9-38.9-47.1c4.4-7.3 6.9-15.8 6.9-24.9c0-21.3-13.9-39.4-33.1-45.6c.7-3.3 1.1-6.8 1.1-10.4c0-26.5-21.5-48-48-48H294.5c-19 0-37.5 5.6-53.3 16.1L202.7 73.8C176 91.6 160 121.6 160 153.7V192v48 24.9c0 29.2 13.3 56.7 36 75l7.4 5.9c26.5 21.2 44.6 51 51.2 84.2l2.3 11.4c5.2 26 30.5 42.9 56.5 37.7zM32 384H96c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H32C14.3 96 0 110.3 0 128V352c0 17.7 14.3 32 32 32z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M323.8 477.2c-38.2 10.9-78.1-11.2-89-49.4l-5.7-20c-3.7-13-10.4-25-19.5-35l-51.3-56.4c-8.9-9.8-8.2-25 1.6-33.9s25-8.2 33.9 1.6l51.3 56.4c14.1 15.5 24.4 34 30.1 54.1l5.7 20c3.6 12.7 16.9 20.1 29.7 16.5s20.1-16.9 16.5-29.7l-5.7-20c-5.7-19.9-14.7-38.7-26.6-55.5c-5.2-7.3-5.8-16.9-1.7-24.9s12.3-13 21.3-13L448 288c8.8 0 16-7.2 16-16c0-6.8-4.3-12.7-10.4-15c-7.4-2.8-13-9-14.9-16.7s.1-15.8 5.3-21.7c2.5-2.8 4-6.5 4-10.6c0-7.8-5.6-14.3-13-15.7c-8.2-1.6-15.1-7.3-18-15.2s-1.6-16.7 3.6-23.3c2.1-2.7 3.4-6.1 3.4-9.9c0-6.7-4.2-12.6-10.2-14.9c-11.5-4.5-17.7-16.9-14.4-28.8c.4-1.3 .6-2.8 .6-4.3c0-8.8-7.2-16-16-16H286.5c-12.6 0-25 3.7-35.5 10.7l-61.7 41.1c-11 7.4-25.9 4.4-33.3-6.7s-4.4-25.9 6.7-33.3l61.7-41.1c18.4-12.3 40-18.8 62.1-18.8H384c34.7 0 62.9 27.6 64 62c14.6 11.7 24 29.7 24 50c0 4.5-.5 8.8-1.3 13c15.4 11.7 25.3 30.2 25.3 51c0 6.5-1 12.8-2.8 18.7C504.8 238.3 512 254.3 512 272c0 35.3-28.6 64-64 64l-92.3 0c4.7 10.4 8.7 21.2 11.8 32.2l5.7 20c10.9 38.2-11.2 78.1-49.4 89zM32 384c-17.7 0-32-14.3-32-32V128c0-17.7 14.3-32 32-32H96c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "thumbs-up": { + "aliases": { + "unicodes": { + "composite": [ + "1f44d", + "f087" + ], + "secondary": [ + "10f164" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "+1", + "agree", + "approve", + "favorite", + "hand", + "like", + "ok", + "okay", + "social", + "success", + "thumb", + "thumbs up", + "thumbs-o-up", + "up", + "yes", + "you got it dude" + ] + }, + "unicode": "f164", + "label": "Thumbs Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M313.4 32.9c26 5.2 42.9 30.5 37.7 56.5l-2.3 11.4c-5.3 26.7-15.1 52.1-28.8 75.2H464c26.5 0 48 21.5 48 48c0 18.5-10.5 34.6-25.9 42.6C497 275.4 504 288.9 504 304c0 23.4-16.8 42.9-38.9 47.1c4.4 7.3 6.9 15.8 6.9 24.9c0 21.3-13.9 39.4-33.1 45.6c.7 3.3 1.1 6.8 1.1 10.4c0 26.5-21.5 48-48 48H294.5c-19 0-37.5-5.6-53.3-16.1l-38.5-25.7C176 420.4 160 390.4 160 358.3V320 272 247.1c0-29.2 13.3-56.7 36-75l7.4-5.9c26.5-21.2 44.6-51 51.2-84.2l2.3-11.4c5.2-26 30.5-42.9 56.5-37.7zM32 192H96c17.7 0 32 14.3 32 32V448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32z" + }, + "regular": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M323.8 34.8c-38.2-10.9-78.1 11.2-89 49.4l-5.7 20c-3.7 13-10.4 25-19.5 35l-51.3 56.4c-8.9 9.8-8.2 25 1.6 33.9s25 8.2 33.9-1.6l51.3-56.4c14.1-15.5 24.4-34 30.1-54.1l5.7-20c3.6-12.7 16.9-20.1 29.7-16.5s20.1 16.9 16.5 29.7l-5.7 20c-5.7 19.9-14.7 38.7-26.6 55.5c-5.2 7.3-5.8 16.9-1.7 24.9s12.3 13 21.3 13L448 224c8.8 0 16 7.2 16 16c0 6.8-4.3 12.7-10.4 15c-7.4 2.8-13 9-14.9 16.7s.1 15.8 5.3 21.7c2.5 2.8 4 6.5 4 10.6c0 7.8-5.6 14.3-13 15.7c-8.2 1.6-15.1 7.3-18 15.2s-1.6 16.7 3.6 23.3c2.1 2.7 3.4 6.1 3.4 9.9c0 6.7-4.2 12.6-10.2 14.9c-11.5 4.5-17.7 16.9-14.4 28.8c.4 1.3 .6 2.8 .6 4.3c0 8.8-7.2 16-16 16H286.5c-12.6 0-25-3.7-35.5-10.7l-61.7-41.1c-11-7.4-25.9-4.4-33.3 6.7s-4.4 25.9 6.7 33.3l61.7 41.1c18.4 12.3 40 18.8 62.1 18.8H384c34.7 0 62.9-27.6 64-62c14.6-11.7 24-29.7 24-50c0-4.5-.5-8.8-1.3-13c15.4-11.7 25.3-30.2 25.3-51c0-6.5-1-12.8-2.8-18.7C504.8 273.7 512 257.7 512 240c0-35.3-28.6-64-64-64l-92.3 0c4.7-10.4 8.7-21.2 11.8-32.2l5.7-20c10.9-38.2-11.2-78.1-49.4-89zM32 192c-17.7 0-32 14.3-32 32V448c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "thumbtack": { + "aliases": { + "names": [ + "thumb-tack" + ], + "unicodes": { + "composite": [ + "1f4cc", + "1f588" + ], + "secondary": [ + "10f08d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Pushpin", + "coordinates", + "location", + "marker", + "pin", + "pushpin", + "thumb-tack" + ] + }, + "unicode": "f08d", + "label": "Thumbtack", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 32C32 14.3 46.3 0 64 0H320c17.7 0 32 14.3 32 32s-14.3 32-32 32H290.5l11.4 148.2c36.7 19.9 65.7 53.2 79.5 94.7l1 3c3.3 9.8 1.6 20.5-4.4 28.8s-15.7 13.3-26 13.3H32c-10.3 0-19.9-4.9-26-13.3s-7.7-19.1-4.4-28.8l1-3c13.8-41.5 42.8-74.8 79.5-94.7L93.5 64H64C46.3 64 32 49.7 32 32zM160 384h64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ticket": { + "aliases": { + "unicodes": { + "composite": [ + "1f39f" + ], + "secondary": [ + "10f145" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admission", + "admission tickets", + "movie", + "pass", + "support", + "ticket" + ] + }, + "unicode": "f145", + "label": "Ticket", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128v64c0 8.8 7.4 15.7 15.7 18.6C34.5 217.1 48 235 48 256s-13.5 38.9-32.3 45.4C7.4 304.3 0 311.2 0 320v64c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V320c0-8.8-7.4-15.7-15.7-18.6C541.5 294.9 528 277 528 256s13.5-38.9 32.3-45.4c8.3-2.9 15.7-9.8 15.7-18.6V128c0-35.3-28.7-64-64-64H64zm64 112l0 160c0 8.8 7.2 16 16 16H432c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H144c-8.8 0-16 7.2-16 16zM96 160c0-17.7 14.3-32 32-32H448c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ticket-simple": { + "aliases": { + "names": [ + "ticket-alt" + ], + "unicodes": { + "secondary": [ + "10f3ff" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "movie", + "pass", + "support", + "ticket" + ] + }, + "unicode": "f3ff", + "label": "Ticket Simple", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H512c35.3 0 64 28.7 64 64v64c0 8.8-7.4 15.7-15.7 18.6C541.5 217.1 528 235 528 256s13.5 38.9 32.3 45.4c8.3 2.9 15.7 9.8 15.7 18.6v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320c0-8.8 7.4-15.7 15.7-18.6C34.5 294.9 48 277 48 256s-13.5-38.9-32.3-45.4C7.4 207.7 0 200.8 0 192V128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tiktok": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07b", + "label": "TikTok", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "timeline": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chronological", + "deadline", + "history", + "linear" + ] + }, + "unicode": "e29c", + "label": "Timeline", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm32 97.3c28.3-12.3 48-40.5 48-73.3c0-44.2-35.8-80-80-80S48 51.8 48 96c0 32.8 19.7 61 48 73.3V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H288v54.7c-28.3 12.3-48 40.5-48 73.3c0 44.2 35.8 80 80 80s80-35.8 80-80c0-32.8-19.7-61-48-73.3V288H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H544V169.3c28.3-12.3 48-40.5 48-73.3c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 32.8 19.7 61 48 73.3V224H160V169.3zM488 96a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM320 392a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toggle-off": { + "aliases": { + "unicodes": { + "secondary": [ + "10f204" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "button", + "off", + "on", + "switch" + ] + }, + "unicode": "f204", + "label": "Toggle Off", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 128c70.7 0 128 57.3 128 128s-57.3 128-128 128H192c-70.7 0-128-57.3-128-128s57.3-128 128-128H384zM576 256c0-106-86-192-192-192H192C86 64 0 150 0 256S86 448 192 448H384c106 0 192-86 192-192zM192 352a96 96 0 1 0 0-192 96 96 0 1 0 0 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toggle-on": { + "aliases": { + "unicodes": { + "secondary": [ + "10f205" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "button", + "off", + "on", + "switch" + ] + }, + "unicode": "f205", + "label": "Toggle On", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M192 64C86 64 0 150 0 256S86 448 192 448H384c106 0 192-86 192-192s-86-192-192-192H192zm192 96a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toilet": { + "aliases": { + "unicodes": { + "composite": [ + "1f6bd" + ], + "secondary": [ + "10f7d8" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "flush", + "john", + "loo", + "pee", + "plumbing", + "poop", + "porcelain", + "potty", + "restroom", + "throne", + "toile", + "toilet", + "washroom", + "waste", + "wc" + ] + }, + "unicode": "f7d8", + "label": "Toilet", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M24 0C10.7 0 0 10.7 0 24S10.7 48 24 48h8V196.9c-1.9 1.4-3.8 2.9-5.6 4.4C10.9 214.5 0 232.9 0 256c0 46.9 14.3 84.1 37 112.5c14.2 17.7 31.1 31.3 48.5 41.8L65.6 469.9c-3.3 9.8-1.6 20.5 4.4 28.8s15.7 13.3 26 13.3H352c10.3 0 19.9-4.9 26-13.3s7.7-19.1 4.4-28.8l-19.8-59.5c17.4-10.5 34.3-24.1 48.5-41.8c22.7-28.4 37-65.5 37-112.5c0-23.1-10.9-41.5-26.4-54.6c-1.8-1.5-3.7-3-5.6-4.4V48h8c13.3 0 24-10.7 24-24s-10.7-24-24-24H24zM384 256.3c0 1-.3 2.6-3.8 5.6c-4.8 4.1-14 9-29.3 13.4C320.5 284 276.1 288 224 288s-96.5-4-126.9-12.8c-15.3-4.4-24.5-9.3-29.3-13.4c-3.5-3-3.8-4.6-3.8-5.6l0-.3 0-.1c0-1 0-2.5 3.8-5.8c4.8-4.1 14-9 29.3-13.4C127.5 228 171.9 224 224 224s96.5 4 126.9 12.8c15.3 4.4 24.5 9.3 29.3 13.4c3.8 3.2 3.8 4.8 3.8 5.8l0 .1 0 .3zM328.2 384l-.2 .5 0-.5h.2zM112 64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toilet-paper": { + "aliases": { + "unicodes": { + "composite": [ + "1f9fb" + ], + "secondary": [ + "10f71e" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "covid-19", + "halloween", + "holiday", + "lavatory", + "paper towels", + "prank", + "privy", + "restroom", + "roll", + "roll of paper", + "toilet", + "toilet paper", + "wipe" + ] + }, + "unicode": "f71e", + "label": "Toilet Paper", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M428.2 0C381.2 49.6 368 126.5 368 192c0 158.8-27.3 247-42.7 283.9c-10 24-33.2 36.1-55.4 36.1H32c-11.5 0-22.2-6.2-27.8-16.2s-5.6-22.3 .4-32.2c9.8-17.7 15.4-38.2 20.5-57.7C36.3 362.8 48 293.5 48 192C48 86 91 0 144 0H428.2zM496 384c-53 0-96-86-96-192S443 0 496 0s96 86 96 192s-43 192-96 192zm0-128c17.7 0 32-28.7 32-64s-14.3-64-32-64s-32 28.7-32 64s14.3 64 32 64zM128 208a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm64 0a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm48 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm80-16a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toilet-paper-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e072" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "covid-19", + "halloween", + "holiday", + "lavatory", + "leaves", + "prank", + "privy", + "restroom", + "roll", + "toilet", + "trouble", + "ut oh", + "wipe" + ] + }, + "unicode": "e072", + "label": "Toilet Paper Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-109.7-86C569.9 374 608 291.9 608 192C608 86 565 0 512 0s-96 86-96 192c0 49.1 9.2 93.9 24.4 127.9l-59-46.2c1.6-24.8 2.6-52 2.6-81.6c0-65.5 13.2-142.4 60.2-192H160c-24.8 0-47.4 18.8-64.4 49.6L38.8 5.1zM66.5 148.4C64.9 162.4 64 177 64 192c0 101.5-11.7 170.8-23 213.9c-5.1 19.4-10.7 39.9-20.5 57.7c-5.9 9.9-6.1 22.1-.4 32.2S36.5 512 48 512H285.9c22.3 0 45.4-12.1 55.4-36.1c7.4-17.7 17.5-47.2 26-90.6L66.5 148.4zM544 192c0 35.3-14.3 64-32 64s-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toilet-portable": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "outhouse", + "toilet" + ] + }, + "unicode": "e583", + "label": "Toilet Portable", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 32V64H320V32c0-17.7-14.3-32-32-32H32C14.3 0 0 14.3 0 32zM24 96H0v24V488c0 13.3 10.7 24 24 24s24-10.7 24-24v-8H272v8c0 13.3 10.7 24 24 24s24-10.7 24-24V120 96H296 24zM256 240v64c0 8.8-7.2 16-16 16s-16-7.2-16-16V240c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toilets-portable": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "outhouse", + "toilet" + ] + }, + "unicode": "e584", + "label": "Toilets Portable", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M32 0H224c17.7 0 32 14.3 32 32V64H0V32C0 14.3 14.3 0 32 0zM0 96H24 232h24v24V488c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H48v8c0 13.3-10.7 24-24 24s-24-10.7-24-24V120 96zM192 224c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V240c0-8.8-7.2-16-16-16zM352 0H544c17.7 0 32 14.3 32 32V64H320V32c0-17.7 14.3-32 32-32zM320 96h24H552h24v24V488c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H368v8c0 13.3-10.7 24-24 24s-24-10.7-24-24V120 96zM512 224c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V240c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "toolbox": { + "aliases": { + "unicodes": { + "composite": [ + "1f9f0" + ], + "secondary": [ + "10f552" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "chest", + "container", + "fix", + "mechanic", + "repair", + "settings", + "tool", + "toolbox", + "tools" + ] + }, + "unicode": "f552", + "label": "Toolbox", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 88v40H336V88c0-4.4-3.6-8-8-8H184c-4.4 0-8 3.6-8 8zm-48 40V88c0-30.9 25.1-56 56-56H328c30.9 0 56 25.1 56 56v40h28.1c12.7 0 24.9 5.1 33.9 14.1l51.9 51.9c9 9 14.1 21.2 14.1 33.9V304H384V288c0-17.7-14.3-32-32-32s-32 14.3-32 32v16H192V288c0-17.7-14.3-32-32-32s-32 14.3-32 32v16H0V227.9c0-12.7 5.1-24.9 14.1-33.9l51.9-51.9c9-9 21.2-14.1 33.9-14.1H128zM0 416V336H128v16c0 17.7 14.3 32 32 32s32-14.3 32-32V336H320v16c0 17.7 14.3 32 32 32s32-14.3 32-32V336H512v80c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tooth": { + "aliases": { + "unicodes": { + "composite": [ + "1f9b7" + ], + "secondary": [ + "10f5c9" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bicuspid", + "dental", + "dentist", + "molar", + "mouth", + "teeth", + "tooth" + ] + }, + "unicode": "f5c9", + "label": "Tooth", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M154.1 52.1C137.3 39.1 116.7 32 95.5 32C42.7 32 0 74.7 0 127.5v6.2c0 15.8 3.7 31.3 10.7 45.5l23.5 47.1c4.5 8.9 7.6 18.4 9.4 28.2L80.4 460.2c2 11.2 11.6 19.4 22.9 19.8s21.4-7.4 24-18.4l28.9-121.3C160.2 323.7 175 312 192 312s31.8 11.7 35.8 28.3l28.9 121.3c2.6 11.1 12.7 18.8 24 18.4s20.9-8.6 22.9-19.8l36.7-205.8c1.8-9.8 4.9-19.3 9.4-28.2l23.5-47.1c7.1-14.1 10.7-29.7 10.7-45.5v-2.1c0-55-44.6-99.6-99.6-99.6c-24.1 0-47.4 8.8-65.6 24.6l-3.2 2.8 19.5 15.2c7 5.4 8.2 15.5 2.8 22.5s-15.5 8.2-22.5 2.8l-24.4-19-37-28.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "torii-gate": { + "aliases": { + "unicodes": { + "composite": [ + "26e9" + ], + "secondary": [ + "10f6a1" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "religion", + "shinto", + "shinto shrine", + "shintoism", + "shrine" + ] + }, + "unicode": "f6a1", + "label": "Torii Gate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 80c0 26.5 21.5 48 48 48H64v64h64V128h96v64h64V128h96v64h64V128h16c26.5 0 48-21.5 48-48V13.4C512 6 506 0 498.6 0c-1.7 0-3.4 .3-5 1l-49 19.6C425.7 28.1 405.5 32 385.2 32H126.8c-20.4 0-40.5-3.9-59.4-11.4L18.4 1c-1.6-.6-3.3-1-5-1C6 0 0 6 0 13.4V80zM64 288V480c0 17.7 14.3 32 32 32s32-14.3 32-32V288H384V480c0 17.7 14.3 32 32 32s32-14.3 32-32V288h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tornado": { + "aliases": { + "unicodes": { + "composite": [ + "1f32a" + ], + "secondary": [ + "10f76f" + ] + } + }, + "changes": [ + "5.5.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cloud", + "cyclone", + "dorothy", + "landspout", + "tornado", + "toto", + "twister", + "vortext", + "waterspout", + "weather", + "whirlwind" + ] + }, + "unicode": "f76f", + "label": "Tornado", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32V45.6C0 62.7 1.7 79.6 5 96H357.8c3.2-6.9 7.5-13.3 13-18.8l38.6-38.6c4.2-4.2 6.6-10 6.6-16C416 10.1 405.9 0 393.4 0H32C14.3 0 0 14.3 0 32zm352.2 96H13.6c12.2 35.9 32.3 68.7 58.8 96H412l-47.2-62.9c-7.3-9.7-11.6-21.2-12.6-33.1zm-226 138.2l116.4 68.5c8.2 4.8 15.8 10.7 22.5 17.3H445c2-9.8 3-19.9 3-30.1c0-23-5.3-45.5-15.3-65.9H110.2c5.2 3.6 10.5 7 16 10.2zM288 384c10.3 21.4 13.8 45.5 9.9 69l-5.9 35.7c-2 12.2 7.4 23.4 19.8 23.4c5.3 0 10.4-2.1 14.2-5.9l78.2-78.2c12.8-12.8 23.1-27.7 30.4-43.9H288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tower-broadcast": { + "aliases": { + "names": [ + "broadcast-tower" + ], + "unicodes": { + "secondary": [ + "10f519" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airwaves", + "antenna", + "communication", + "emergency", + "radio", + "reception", + "waves" + ] + }, + "unicode": "f519", + "label": "Tower Broadcast", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M80.3 44C69.8 69.9 64 98.2 64 128s5.8 58.1 16.3 84c6.6 16.4-1.3 35-17.7 41.7s-35-1.3-41.7-17.7C7.4 202.6 0 166.1 0 128S7.4 53.4 20.9 20C27.6 3.6 46.2-4.3 62.6 2.3S86.9 27.6 80.3 44zM555.1 20C568.6 53.4 576 89.9 576 128s-7.4 74.6-20.9 108c-6.6 16.4-25.3 24.3-41.7 17.7S489.1 228.4 495.7 212c10.5-25.9 16.3-54.2 16.3-84s-5.8-58.1-16.3-84C489.1 27.6 497 9 513.4 2.3s35 1.3 41.7 17.7zM352 128c0 23.7-12.9 44.4-32 55.4V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V183.4c-19.1-11.1-32-31.7-32-55.4c0-35.3 28.7-64 64-64s64 28.7 64 64zM170.6 76.8C163.8 92.4 160 109.7 160 128s3.8 35.6 10.6 51.2c7.1 16.2-.3 35.1-16.5 42.1s-35.1-.3-42.1-16.5c-10.3-23.6-16-49.6-16-76.8s5.7-53.2 16-76.8c7.1-16.2 25.9-23.6 42.1-16.5s23.6 25.9 16.5 42.1zM464 51.2c10.3 23.6 16 49.6 16 76.8s-5.7 53.2-16 76.8c-7.1 16.2-25.9 23.6-42.1 16.5s-23.6-25.9-16.5-42.1c6.8-15.6 10.6-32.9 10.6-51.2s-3.8-35.6-10.6-51.2c-7.1-16.2 .3-35.1 16.5-42.1s35.1 .3 42.1 16.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tower-cell": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airwaves", + "antenna", + "communication", + "radio", + "reception", + "waves" + ] + }, + "unicode": "e585", + "label": "Tower Cell", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M62.6 2.3C46.2-4.3 27.6 3.6 20.9 20C7.4 53.4 0 89.9 0 128s7.4 74.6 20.9 108c6.6 16.4 25.3 24.3 41.7 17.7S86.9 228.4 80.3 212C69.8 186.1 64 157.8 64 128s5.8-58.1 16.3-84C86.9 27.6 79 9 62.6 2.3zm450.8 0C497 9 489.1 27.6 495.7 44C506.2 69.9 512 98.2 512 128s-5.8 58.1-16.3 84c-6.6 16.4 1.3 35 17.7 41.7s35-1.3 41.7-17.7c13.5-33.4 20.9-69.9 20.9-108s-7.4-74.6-20.9-108C548.4 3.6 529.8-4.3 513.4 2.3zM340.1 165.2c7.5-10.5 11.9-23.3 11.9-37.2c0-35.3-28.7-64-64-64s-64 28.7-64 64c0 13.9 4.4 26.7 11.9 37.2L98.9 466.8c-7.3 16.1-.2 35.1 15.9 42.4s35.1 .2 42.4-15.9L177.7 448H398.3l20.6 45.2c7.3 16.1 26.3 23.2 42.4 15.9s23.2-26.3 15.9-42.4L340.1 165.2zM369.2 384H206.8l14.5-32H354.7l14.5 32zM288 205.3L325.6 288H250.4L288 205.3zM163.3 73.6c5.3-12.1-.2-26.3-12.4-31.6s-26.3 .2-31.6 12.4C109.5 77 104 101.9 104 128s5.5 51 15.3 73.6c5.3 12.1 19.5 17.7 31.6 12.4s17.7-19.5 12.4-31.6C156 165.8 152 147.4 152 128s4-37.8 11.3-54.4zM456.7 54.4c-5.3-12.1-19.5-17.7-31.6-12.4s-17.7 19.5-12.4 31.6C420 90.2 424 108.6 424 128s-4 37.8-11.3 54.4c-5.3 12.1 .2 26.3 12.4 31.6s26.3-.2 31.6-12.4C466.5 179 472 154.1 472 128s-5.5-51-15.3-73.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tower-observation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fire tower", + "view" + ] + }, + "unicode": "e586", + "label": "Tower Observation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M241.7 3.4c9-4.5 19.6-4.5 28.6 0l160 80c15.8 7.9 22.2 27.1 14.3 42.9C439 137.5 427.7 144 416 144v80c0 17.7-14.3 32-32 32h-4.9l32 192H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H384.5c-.4 0-.8 0-1.1 0H128.6c-.4 0-.8 0-1.1 0H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l32-192H128c-17.7 0-32-14.3-32-32V144c-11.7 0-23-6.5-28.6-17.7c-7.9-15.8-1.5-35 14.3-42.9l160-80zM314.5 448L256 399.2 197.5 448h117zM197.8 256l-4.7 28.3L256 336.8l62.9-52.5L314.2 256H197.8zm-13.9 83.2l-11.2 67L218.5 368l-34.6-28.8zM293.5 368l45.8 38.1-11.2-67L293.5 368zM176 128c-8.8 0-16 7.2-16 16s7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H176z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tractor": { + "aliases": { + "unicodes": { + "composite": [ + "1f69c" + ], + "secondary": [ + "10f722" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agriculture", + "farm", + "tractor", + "vehicle" + ] + }, + "unicode": "f722", + "label": "Tractor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 64c0-35.3 28.7-64 64-64H266.3c26.2 0 49.7 15.9 59.4 40.2L373.7 160H480V126.2c0-24.8 5.8-49.3 16.9-71.6l2.5-5c7.9-15.8 27.1-22.2 42.9-14.3s22.2 27.1 14.3 42.9l-2.5 5c-6.7 13.3-10.1 28-10.1 42.9V160h56c22.1 0 40 17.9 40 40v45.4c0 16.5-8.5 31.9-22.6 40.7l-43.3 27.1c-14.2-5.9-29.8-9.2-46.1-9.2c-39.3 0-74.1 18.9-96 48H352c0 17.7-14.3 32-32 32h-8.2c-1.7 4.8-3.7 9.5-5.8 14.1l5.8 5.8c12.5 12.5 12.5 32.8 0 45.3l-22.6 22.6c-12.5 12.5-32.8 12.5-45.3 0l-5.8-5.8c-4.6 2.2-9.3 4.1-14.1 5.8V480c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32v-8.2c-4.8-1.7-9.5-3.7-14.1-5.8l-5.8 5.8c-12.5 12.5-32.8 12.5-45.3 0L40.2 449.1c-12.5-12.5-12.5-32.8 0-45.3l5.8-5.8c-2.2-4.6-4.1-9.3-5.8-14.1H32c-17.7 0-32-14.3-32-32V320c0-17.7 14.3-32 32-32h8.2c1.7-4.8 3.7-9.5 5.8-14.1l-5.8-5.8c-12.5-12.5-12.5-32.8 0-45.3l22.6-22.6c9-9 21.9-11.5 33.1-7.6V192 160 64zm170.3 0H160v96h32H304.7L266.3 64zM176 256a80 80 0 1 0 0 160 80 80 0 1 0 0-160zM528 448a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0 64c-48.6 0-88-39.4-88-88c0-29.8 14.8-56.1 37.4-72c14.3-10.1 31.8-16 50.6-16c2.7 0 5.3 .1 7.9 .3c44.9 4 80.1 41.7 80.1 87.7c0 48.6-39.4 88-88 88z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trade-federation": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f513", + "label": "Trade Federation", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8.8c-137 0-248 111-248 248s111 248 248 248 248-111 248-248-111-248-248-248zm0 482.8c-129.7 0-234.8-105.1-234.8-234.8S118.3 22 248 22s234.8 105.1 234.8 234.8S377.7 491.6 248 491.6zm155.1-328.5v-46.8H209.3V198H54.2l36.7 46h117.7v196.8h48.8V245h83.3v-47h-83.3v-34.8h145.7zm-73.3 45.1v23.9h-82.9v197.4h-26.8V232.1H96.3l-20.1-23.9h143.9v-80.6h171.8V152h-145v56.2zm-161.3-69l-12.4-20.7 2.1 23.8-23.5 5.4 23.3 5.4-2.1 24 12.3-20.5 22.2 9.5-15.7-18.1 15.8-18.1zm-29.6-19.7l9.3-11.5-12.7 5.9-8-12.4 1.7 13.9-14.3 3.8 13.7 2.7-.8 14.7 6.8-12.2 13.8 5.3zm165.4 145.2l-13.1 5.6-7.3-12.2 1.3 14.2-13.9 3.2 13.9 3.2-1.2 14.2 7.3-12.2 13.1 5.5-9.4-10.7zm106.9-77.2l-20.9 9.1-12-19.6 2.2 22.7-22.3 5.4 22.2 4.9-1.8 22.9 11.5-19.6 21.2 8.8-15.1-17zM248 29.9c-125.3 0-226.9 101.6-226.9 226.9S122.7 483.7 248 483.7s226.9-101.6 226.9-226.9S373.3 29.9 248 29.9zM342.6 196v51h-83.3v195.7h-52.7V245.9H89.9l-40-49.9h157.4v-81.6h197.8v50.7H259.4V196zM248 43.2c60.3 0 114.8 25 153.6 65.2H202.5V190H45.1C73.1 104.8 153.4 43.2 248 43.2zm0 427.1c-117.9 0-213.6-95.6-213.6-213.5 0-21.2 3.1-41.8 8.9-61.1L87.1 252h114.7v196.8h64.6V253h83.3v-62.7h-83.2v-19.2h145.6v-50.8c30.8 37 49.3 84.6 49.3 136.5.1 117.9-95.5 213.5-213.4 213.5zM178.8 275l-11-21.4 1.7 24.5-23.7 3.9 23.8 5.9-3.7 23.8 13-20.9 21.5 10.8-15.8-18.8 16.9-17.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "trademark": { + "aliases": { + "unicodes": { + "composite": [ + "2122" + ], + "secondary": [ + "10f25c" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copyright", + "mark", + "register", + "symbol", + "tm", + "trade mark", + "trademark" + ] + }, + "unicode": "f25c", + "label": "Trademark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M345.6 108.8c-8.3-11-22.7-15.5-35.7-11.2S288 114.2 288 128V384c0 17.7 14.3 32 32 32s32-14.3 32-32V224l86.4 115.2c6 8.1 15.5 12.8 25.6 12.8s19.6-4.7 25.6-12.8L576 224V384c0 17.7 14.3 32 32 32s32-14.3 32-32V128c0-13.8-8.8-26-21.9-30.4s-27.5 .1-35.7 11.2L464 266.7 345.6 108.8zM0 128c0 17.7 14.3 32 32 32H96V384c0 17.7 14.3 32 32 32s32-14.3 32-32V160h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32C14.3 96 0 110.3 0 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "traffic-light": { + "aliases": { + "unicodes": { + "composite": [ + "1f6a6" + ], + "secondary": [ + "10f637" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "direction", + "light", + "road", + "signal", + "traffic", + "travel", + "vertical traffic light" + ] + }, + "unicode": "f637", + "label": "Traffic Light", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V352c0 88.4 71.6 160 160 160s160-71.6 160-160V64c0-35.3-28.7-64-64-64H64zm96 416a48 48 0 1 1 0-96 48 48 0 1 1 0 96zm48-176a48 48 0 1 1 -96 0 48 48 0 1 1 96 0zm-48-80a48 48 0 1 1 0-96 48 48 0 1 1 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trailer": { + "aliases": { + "unicodes": { + "secondary": [ + "10e041" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "haul", + "moving", + "travel" + ] + }, + "unicode": "e041", + "label": "Trailer", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 32C21.5 32 0 53.5 0 80V336c0 26.5 21.5 48 48 48H65.1c7.8-54.3 54.4-96 110.9-96s103.1 41.7 110.9 96H488h8H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H544V80c0-26.5-21.5-48-48-48H48zM80 96c8.8 0 16 7.2 16 16l0 131.2c-11.4 5.9-22.2 12.9-32 21V112c0-8.8 7.2-16 16-16zm96 128c-5.4 0-10.7 .2-16 .7L160 112c0-8.8 7.2-16 16-16s16 7.2 16 16l0 112.7c-5.3-.5-10.6-.7-16-.7zm80 19.2L256 112c0-8.8 7.2-16 16-16s16 7.2 16 16l0 152.2c-9.8-8.1-20.6-15.2-32-21zM368 96c8.8 0 16 7.2 16 16l0 192c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-192c0-8.8 7.2-16 16-16zm112 16l0 192c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-192c0-8.8 7.2-16 16-16s16 7.2 16 16zM176 480a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm0-112a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "train": { + "aliases": { + "unicodes": { + "composite": [ + "1f686" + ], + "secondary": [ + "10f238" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bullet", + "commute", + "locomotive", + "railway", + "subway", + "train" + ] + }, + "unicode": "f238", + "label": "Train", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V352c0 48 35.2 87.7 81.1 94.9l-46 46C28.1 499.9 33.1 512 43 512H82.7c8.5 0 16.6-3.4 22.6-9.4L160 448H288l54.6 54.6c6 6 14.1 9.4 22.6 9.4H405c10 0 15-12.1 7.9-19.1l-46-46c46-7.1 81.1-46.9 81.1-94.9V96c0-53-43-96-96-96H96zM64 96c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96zM224 288a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "train-subway": { + "aliases": { + "names": [ + "subway" + ], + "unicodes": { + "secondary": [ + "10f239" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "machine", + "railway", + "train", + "transportation", + "vehicle" + ] + }, + "unicode": "f239", + "label": "Train Subway", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V352c0 48 35.2 87.7 81.1 94.9l-46 46C28.1 499.9 33.1 512 43 512H82.7c8.5 0 16.6-3.4 22.6-9.4L160 448H288l54.6 54.6c6 6 14.1 9.4 22.6 9.4H405c10 0 15-12.1 7.9-19.1l-46-46c46-7.1 81.1-46.9 81.1-94.9V96c0-53-43-96-96-96H96zM64 128c0-17.7 14.3-32 32-32h80c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V128zM272 96h80c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H272c-17.7 0-32-14.3-32-32V128c0-17.7 14.3-32 32-32zM64 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm288-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "train-tram": { + "aliases": { + "unicodes": { + "composite": [ + "1f68a" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crossing", + "machine", + "mountains", + "seasonal", + "tram", + "transportation", + "trolleybus" + ] + }, + "unicode": "e5b4", + "label": "Train Tram", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M86.8 48c-12.2 0-23.6 5.5-31.2 15L42.7 79C34.5 89.3 19.4 91 9 82.7S-3 59.4 5.3 49L18 33C34.7 12.2 60 0 86.8 0H361.2c26.7 0 52 12.2 68.7 33l12.8 16c8.3 10.4 6.6 25.5-3.7 33.7s-25.5 6.6-33.7-3.7L392.5 63c-7.6-9.5-19.1-15-31.2-15H248V96h40c53 0 96 43 96 96V352c0 30.6-14.3 57.8-36.6 75.4l65.5 65.5c7.1 7.1 2.1 19.1-7.9 19.1H365.3c-8.5 0-16.6-3.4-22.6-9.4L288 448H160l-54.6 54.6c-6 6-14.1 9.4-22.6 9.4H43c-10 0-15-12.1-7.9-19.1l65.5-65.5C78.3 409.8 64 382.6 64 352V192c0-53 43-96 96-96h40V48H86.8zM160 160c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32H160zm32 192a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm96 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "transgender": { + "aliases": { + "names": [ + "transgender-alt" + ], + "unicodes": { + "composite": [ + "26a7" + ], + "secondary": [ + "10f225" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "female", + "gender", + "intersex", + "male", + "transgender", + "transgender symbol" + ] + }, + "unicode": "f225", + "label": "Transgender", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M112 0c6.5 0 12.3 3.9 14.8 9.9s1.1 12.9-3.5 17.4l-31 31L112 78.1l7-7c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-7 7 15.2 15.2C187.7 107.6 220.5 96 256 96s68.3 11.6 94.9 31.2l68.8-68.8-31-31c-4.6-4.6-5.9-11.5-3.5-17.4s8.3-9.9 14.8-9.9h96c8.8 0 16 7.2 16 16v96c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5l-31-31-68.8 68.8C404.4 187.7 416 220.5 416 256c0 80.2-59 146.6-136 158.2V432h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H280v8c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h16V414.2C155 402.6 96 336.2 96 256c0-35.5 11.6-68.3 31.2-94.9L112 145.9l-7 7c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l7-7L58.3 92.3l-31 31c-4.6 4.6-11.5 5.9-17.4 3.5S0 118.5 0 112V16C0 7.2 7.2 0 16 0h96zM352 256a96 96 0 1 0 -192 0 96 96 0 1 0 192 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1f8" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "garbage", + "hide", + "remove" + ] + }, + "unicode": "f1f8", + "label": "Trash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M135.2 17.7L128 32H32C14.3 32 0 46.3 0 64S14.3 96 32 96H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H320l-7.2-14.3C307.4 6.8 296.3 0 284.2 0H163.8c-12.1 0-23.2 6.8-28.6 17.7zM416 128H32L53.2 467c1.6 25.3 22.6 45 47.9 45H346.9c25.3 0 46.3-19.7 47.9-45L416 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trash-arrow-up": { + "aliases": { + "names": [ + "trash-restore" + ], + "unicodes": { + "secondary": [ + "10f829" + ] + } + }, + "changes": [ + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "delete", + "garbage", + "hide", + "oops", + "remove", + "undo" + ] + }, + "unicode": "f829", + "label": "Trash Arrow Up", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M163.8 0H284.2c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32h96l7.2-14.3C140.6 6.8 151.7 0 163.8 0zM32 128H416L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32 128zm192 64c-6.4 0-12.5 2.5-17 7l-80 80c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39V408c0 13.3 10.7 24 24 24s24-10.7 24-24V273.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-4.5-4.5-10.6-7-17-7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trash-can": { + "aliases": { + "names": [ + "trash-alt" + ], + "unicodes": { + "composite": [ + "f014" + ], + "secondary": [ + "10f2ed" + ] + } + }, + "changes": [ + "5.0.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "garbage", + "hide", + "remove", + "trash-o" + ] + }, + "unicode": "f2ed", + "label": "Trash Can", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M135.2 17.7C140.6 6.8 151.7 0 163.8 0H284.2c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32h96l7.2-14.3zM32 128H416V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V128zm96 64c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16z" + }, + "regular": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M170.5 51.6L151.5 80h145l-19-28.4c-1.5-2.2-4-3.6-6.7-3.6H177.1c-2.7 0-5.2 1.3-6.7 3.6zm147-26.6L354.2 80H368h48 8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8V432c0 44.2-35.8 80-80 80H112c-44.2 0-80-35.8-80-80V128H24c-13.3 0-24-10.7-24-24S10.7 80 24 80h8H80 93.8l36.7-55.1C140.9 9.4 158.4 0 177.1 0h93.7c18.7 0 36.2 9.4 46.6 24.9zM80 128V432c0 17.7 14.3 32 32 32H336c17.7 0 32-14.3 32-32V128H80zm80 64V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "trash-can-arrow-up": { + "aliases": { + "names": [ + "trash-restore-alt" + ], + "unicodes": { + "secondary": [ + "10f82a" + ] + } + }, + "changes": [ + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "delete", + "garbage", + "hide", + "oops", + "remove", + "undo" + ] + }, + "unicode": "f82a", + "label": "Trash Can Arrow Up", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M163.8 0H284.2c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32h96l7.2-14.3C140.6 6.8 151.7 0 163.8 0zM32 128H416V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V128zm192 64c-6.4 0-12.5 2.5-17 7l-80 80c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39V408c0 13.3 10.7 24 24 24s24-10.7 24-24V273.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-4.5-4.5-10.6-7-17-7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tree": { + "aliases": { + "unicodes": { + "composite": [ + "1f332" + ], + "secondary": [ + "10f1bb" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bark", + "evergreen tree", + "fall", + "flora", + "forest", + "nature", + "plant", + "seasonal", + "tree" + ] + }, + "unicode": "f1bb", + "label": "Tree", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M210.6 5.9L62 169.4c-3.9 4.2-6 9.8-6 15.5C56 197.7 66.3 208 79.1 208H104L30.6 281.4c-4.2 4.2-6.6 10-6.6 16C24 309.9 34.1 320 46.6 320H80L5.4 409.5C1.9 413.7 0 419 0 424.5c0 13 10.5 23.5 23.5 23.5H192v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448H424.5c13 0 23.5-10.5 23.5-23.5c0-5.5-1.9-10.8-5.4-15L368 320h33.4c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16L344 208h24.9c12.7 0 23.1-10.3 23.1-23.1c0-5.7-2.1-11.3-6-15.5L237.4 5.9C234 2.1 229.1 0 224 0s-10 2.1-13.4 5.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tree-city": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "urban" + ] + }, + "unicode": "e587", + "label": "Tree City", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 48c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48V192h40V120c0-13.3 10.7-24 24-24s24 10.7 24 24v72h24c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H432 336c-26.5 0-48-21.5-48-48V48zm64 32v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm16 80c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H368zM352 272v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm176-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H528zM512 368v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H528c-8.8 0-16 7.2-16 16zM224 160c0 6-1 11-2 16c20 14 34 38 34 64c0 45-36 80-80 80H160V480c0 18-15 32-32 32c-18 0-32-14-32-32V320H80c-45 0-80-35-80-80c0-26 13-50 33-64c-1-5-1-10-1-16c0-53 42-96 96-96c53 0 96 43 96 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trello": { + "changes": [ + "3.2.0", + "5.0.0", + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian" + ] + }, + "unicode": "f181", + "label": "Trello", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M392.3 32H56.1C25.1 32 0 57.1 0 88c-.1 0 0-4 0 336 0 30.9 25.1 56 56 56h336.2c30.8-.2 55.7-25.2 55.7-56V88c.1-30.8-24.8-55.8-55.6-56zM197 371.3c-.2 14.7-12.1 26.6-26.9 26.6H87.4c-14.8.1-26.9-11.8-27-26.6V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v254.2zm193.1-112c0 14.8-12 26.9-26.9 26.9h-81c-14.8 0-26.9-12-26.9-26.9V117.2c0-14.8 12-26.9 26.8-26.9h81.1c14.8 0 26.9 12 26.9 26.9v142.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "triangle-exclamation": { + "aliases": { + "names": [ + "exclamation-triangle", + "warning" + ], + "unicodes": { + "composite": [ + "26a0" + ], + "secondary": [ + "10f071" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.6.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alert", + "danger", + "error", + "important", + "notice", + "notification", + "notify", + "problem", + "warnin", + "warning" + ] + }, + "unicode": "f071", + "label": "Triangle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trophy": { + "aliases": { + "unicodes": { + "composite": [ + "1f3c6" + ], + "secondary": [ + "10f091" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "cup", + "game", + "prize", + "trophy", + "winner" + ] + }, + "unicode": "f091", + "label": "Trophy", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M400 0H176c-26.5 0-48.1 21.8-47.1 48.2c.2 5.3 .4 10.6 .7 15.8H24C10.7 64 0 74.7 0 88c0 92.6 33.5 157 78.5 200.7c44.3 43.1 98.3 64.8 138.1 75.8c23.4 6.5 39.4 26 39.4 45.6c0 20.9-17 37.9-37.9 37.9H192c-17.7 0-32 14.3-32 32s14.3 32 32 32H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H357.9C337 448 320 431 320 410.1c0-19.6 15.9-39.2 39.4-45.6c39.9-11 93.9-32.7 138.2-75.8C542.5 245 576 180.6 576 88c0-13.3-10.7-24-24-24H446.4c.3-5.2 .5-10.4 .7-15.8C448.1 21.8 426.5 0 400 0zM48.9 112h84.4c9.1 90.1 29.2 150.3 51.9 190.6c-24.9-11-50.8-26.5-73.2-48.3c-32-31.1-58-76-63-142.3zM464.1 254.3c-22.4 21.8-48.3 37.3-73.2 48.3c22.7-40.3 42.8-100.5 51.9-190.6h84.4c-5.1 66.3-31.1 111.2-63 142.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trowel": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "build", + "construction", + "tool" + ] + }, + "unicode": "e589", + "label": "Trowel", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M343.9 213.4L245.3 312l65.4 65.4c7.9 7.9 11.1 19.4 8.4 30.3s-10.8 19.6-21.5 22.9l-256 80c-11.4 3.5-23.8 .5-32.2-7.9S-2.1 481.8 1.5 470.5l80-256c3.3-10.7 12-18.9 22.9-21.5s22.4 .5 30.3 8.4L200 266.7l98.6-98.6c-14.3-14.6-14.2-38 .3-52.5l95.4-95.4c26.9-26.9 70.5-26.9 97.5 0s26.9 70.5 0 97.5l-95.4 95.4c-14.5 14.5-37.9 14.6-52.5 .3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "trowel-bricks": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "build", + "construction", + "reconstruction", + "tool" + ] + }, + "unicode": "e58a", + "label": "Trowel Bricks", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M240.8 4.8C250.3 10.6 256 20.9 256 32v72h89c3.6-13.8 16.1-24 31-24h88c26.5 0 48 21.5 48 48s-21.5 48-48 48H376c-14.9 0-27.4-10.2-31-24H256v72c0 11.1-5.7 21.4-15.2 27.2s-21.2 6.4-31.1 1.4l-192-96C6.8 151.2 0 140.1 0 128s6.8-23.2 17.7-28.6l192-96c9.9-5 21.7-4.4 31.1 1.4zM288 256c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H320c-17.7 0-32-14.3-32-32V256zM32 384h96c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32zm192 0H480c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck": { + "aliases": { + "unicodes": { + "composite": [ + "1f69a", + "26df" + ], + "secondary": [ + "10f0d1" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Truck", + "cargo", + "delivery", + "delivery truck", + "shipping", + "truck", + "vehicle" + ] + }, + "unicode": "f0d1", + "label": "Truck", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V368c0 26.5 21.5 48 48 48H64c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V288 256 237.3c0-17-6.7-33.3-18.7-45.3L512 114.7c-12-12-28.3-18.7-45.3-18.7H416V48c0-26.5-21.5-48-48-48H48zM416 160h50.7L544 237.3V256H416V160zM112 416a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm368-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "access", + "fast", + "shipping", + "transport" + ] + }, + "unicode": "e58b", + "label": "Truck Arrow Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H368c26.5 0 48 21.5 48 48V96h50.7c17 0 33.3 6.7 45.3 18.7L589.3 192c12 12 18.7 28.3 18.7 45.3V256v32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V48zM416 256H544V237.3L466.7 160H416v96zM160 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm368-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM257 95c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l39 39H96c-13.3 0-24 10.7-24 24s10.7 24 24 24H262.1l-39 39c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9L257 95z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-droplet": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "thirst", + "truck", + "water", + "water supply" + ] + }, + "unicode": "e58c", + "label": "Truck Droplet", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H368c26.5 0 48 21.5 48 48V96h50.7c17 0 33.3 6.7 45.3 18.7L589.3 192c12 12 18.7 28.3 18.7 45.3V256v32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V48zM416 256H544V237.3L466.7 160H416v96zM160 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm368-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM208 272c39.8 0 72-29.6 72-66c0-27-39.4-82.9-59.9-110.3c-6.1-8.2-18.1-8.2-24.2 0C175.4 123 136 179 136 206c0 36.5 32.2 66 72 66z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-fast": { + "aliases": { + "names": [ + "shipping-fast" + ], + "unicodes": { + "secondary": [ + "10f48b" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "express", + "fedex", + "mail", + "overnight", + "package", + "ups" + ] + }, + "unicode": "f48b", + "label": "Truck Fast", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M112 0C85.5 0 64 21.5 64 48V96H16c-8.8 0-16 7.2-16 16s7.2 16 16 16H64 272c8.8 0 16 7.2 16 16s-7.2 16-16 16H64 48c-8.8 0-16 7.2-16 16s7.2 16 16 16H64 240c8.8 0 16 7.2 16 16s-7.2 16-16 16H64 16c-8.8 0-16 7.2-16 16s7.2 16 16 16H64 208c8.8 0 16 7.2 16 16s-7.2 16-16 16H64V416c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V288 256 237.3c0-17-6.7-33.3-18.7-45.3L512 114.7c-12-12-28.3-18.7-45.3-18.7H416V48c0-26.5-21.5-48-48-48H112zM544 237.3V256H416V160h50.7L544 237.3zM160 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm272 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-field": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "supplies", + "truck" + ] + }, + "unicode": "e58d", + "label": "Truck Field", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 96c0-35.3 28.7-64 64-64H320c23.7 0 44.4 12.9 55.4 32h51.8c25.3 0 48.2 14.9 58.5 38l52.8 118.8c.5 1.1 .9 2.1 1.3 3.2H544c35.3 0 64 28.7 64 64v32c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V288c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32V96zM384 224h85.9l-42.7-96H384v96zM160 432a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm368-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-field-un": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "supplies", + "truck", + "united nations" + ] + }, + "unicode": "e58e", + "label": "Truck Field Un", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 32C60.7 32 32 60.7 32 96v32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32v32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V288c0-35.3-28.7-64-64-64h-4.2c-.4-1.1-.9-2.1-1.3-3.2L485.7 102c-10.3-23.1-33.2-38-58.5-38H375.4C364.4 44.9 343.7 32 320 32H96zm288 96h43.2l42.7 96H384V128zM112 384a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm368-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM253.3 135.1l34.7 52V144c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V144c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4zM128 144v64c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48V144c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-front": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "shuttle", + "truck", + "van" + ] + }, + "unicode": "e2b7", + "label": "Truck Front", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 80C0 35.8 35.8 0 80 0H432c44.2 0 80 35.8 80 80V368c0 26.2-12.6 49.4-32 64v48c0 17.7-14.3 32-32 32H416c-17.7 0-32-14.3-32-32V448H128v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V432C12.6 417.4 0 394.2 0 368V80zm129.9 72.2L112 224H400l-17.9-71.8C378.5 138 365.7 128 351 128H161c-14.7 0-27.5 10-31 24.2zM128 320a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-medical": { + "aliases": { + "names": [ + "ambulance" + ], + "unicodes": { + "composite": [ + "1f691" + ], + "secondary": [ + "10f0f9" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ambulance", + "clinic", + "covid-19", + "emergency", + "emt", + "er", + "help", + "hospital", + "mobile", + "support", + "vehicle" + ] + }, + "unicode": "f0f9", + "label": "Truck Medical", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H368c26.5 0 48 21.5 48 48V96h50.7c17 0 33.3 6.7 45.3 18.7L589.3 192c12 12 18.7 28.3 18.7 45.3V256v32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V48zM416 256H544V237.3L466.7 160H416v96zM160 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm368-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM176 80v48l-48 0c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V192h48c8.8 0 16-7.2 16-16V144c0-8.8-7.2-16-16-16H240V80c0-8.8-7.2-16-16-16H192c-8.8 0-16 7.2-16 16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-monster": { + "aliases": { + "unicodes": { + "secondary": [ + "10f63b" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "offroad", + "vehicle", + "wheel" + ] + }, + "unicode": "f63b", + "label": "Truck Monster", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 64v64H416L368 64H288zM419.2 25.6L496 128h80c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32c-29.2-38.9-75.7-64-128-64s-98.8 25.1-128 64H288c-29.2-38.9-75.7-64-128-64s-98.8 25.1-128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32H224V48c0-26.5 21.5-48 48-48h96c20.1 0 39.1 9.5 51.2 25.6zM152 256h16c12.1 0 22.1 8.9 23.8 20.6c7.6 2.2 14.9 5.3 21.7 9c9.4-7 22.8-6.3 31.3 2.3l11.3 11.3c8.6 8.6 9.3 21.9 2.3 31.3c3.7 6.8 6.8 14.1 9 21.7c11.6 1.7 20.6 11.7 20.6 23.8v16c0 12.1-8.9 22.1-20.6 23.8c-2.2 7.6-5.3 14.9-9 21.7c7 9.4 6.3 22.8-2.3 31.3l-11.3 11.3c-8.6 8.6-21.9 9.3-31.3 2.2c-6.8 3.7-14.1 6.8-21.7 9C190.1 503.1 180.1 512 168 512H152c-12.1 0-22.1-8.9-23.8-20.6c-7.6-2.2-14.9-5.3-21.7-9c-9.4 7.1-22.8 6.3-31.3-2.2L63.8 468.9c-8.6-8.6-9.3-21.9-2.3-31.3c-3.7-6.9-6.8-14.1-9-21.8C40.9 414.1 32 404.1 32 392V376c0-12.1 8.9-22.1 20.6-23.8c2.2-7.6 5.3-14.9 9-21.8c-7-9.4-6.3-22.8 2.3-31.3l11.3-11.3c8.6-8.6 21.9-9.3 31.3-2.3c6.8-3.7 14.1-6.8 21.7-9c1.7-11.6 11.7-20.6 23.8-20.6zm8 176a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM448.2 276.6c1.7-11.6 11.7-20.6 23.8-20.6h16c12.1 0 22.1 8.9 23.8 20.6c7.6 2.2 14.9 5.3 21.8 9c9.4-7 22.8-6.3 31.3 2.3l11.3 11.3c8.6 8.6 9.3 21.9 2.2 31.3c3.7 6.8 6.8 14.1 9 21.7c11.6 1.7 20.6 11.7 20.6 23.8v16c0 12.1-8.9 22.1-20.6 23.8c-2.2 7.6-5.3 14.9-9 21.7c7 9.4 6.3 22.8-2.2 31.3l-11.3 11.3c-8.6 8.6-21.9 9.3-31.3 2.2c-6.9 3.7-14.1 6.8-21.8 9C510.1 503.1 500.1 512 488 512H472c-12.1 0-22.1-8.9-23.8-20.6c-7.6-2.2-14.9-5.3-21.7-9c-9.4 7.1-22.8 6.3-31.3-2.2l-11.3-11.3c-8.6-8.6-9.3-21.9-2.2-31.3c-3.7-6.9-6.8-14.1-9-21.8C360.9 414.1 352 404.1 352 392V376c0-12.1 8.9-22.1 20.6-23.8c2.2-7.6 5.3-14.9 9-21.8c-7-9.4-6.3-22.8 2.2-31.3l11.3-11.3c8.6-8.6 21.9-9.3 31.3-2.3c6.8-3.7 14.1-6.8 21.7-9zM528 384a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-moving": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4df" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cargo", + "inventory", + "rental", + "vehicle" + ] + }, + "unicode": "f4df", + "label": "Truck Moving", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V304v80 16c0 44.2 35.8 80 80 80c26.2 0 49.4-12.6 64-32c14.6 19.4 37.8 32 64 32c44.2 0 80-35.8 80-80c0-5.5-.6-10.8-1.6-16H416h33.6c-1 5.2-1.6 10.5-1.6 16c0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H608c17.7 0 32-14.3 32-32V288 272 261.7c0-9.2-3.2-18.2-9-25.3l-58.8-71.8c-10.6-13-26.5-20.5-43.3-20.5H480V96c0-35.3-28.7-64-64-64H64zM585 256H480V192h48.8c2.4 0 4.7 1.1 6.2 2.9L585 256zM528 368a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM176 400a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM80 368a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-pickup": { + "aliases": { + "unicodes": { + "composite": [ + "1f6fb" + ], + "secondary": [ + "10f63c" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cargo", + "pick-up", + "pickup", + "pickup truck", + "truck", + "vehicle" + ] + }, + "unicode": "f63c", + "label": "Truck Pickup", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M368.6 96l76.8 96H288V96h80.6zM224 80V192H64c-17.7 0-32 14.3-32 32v64c-17.7 0-32 14.3-32 32s14.3 32 32 32H65.1c-.7 5.2-1.1 10.6-1.1 16c0 61.9 50.1 112 112 112s112-50.1 112-112c0-5.4-.4-10.8-1.1-16h66.3c-.7 5.2-1.1 10.6-1.1 16c0 61.9 50.1 112 112 112s112-50.1 112-112c0-5.4-.4-10.8-1.1-16H608c17.7 0 32-14.3 32-32s-14.3-32-32-32V224c0-17.7-14.3-32-32-32H527.4L418.6 56c-12.1-15.2-30.5-24-50-24H272c-26.5 0-48 21.5-48 48zm0 288a48 48 0 1 1 -96 0 48 48 0 1 1 96 0zm288 0a48 48 0 1 1 -96 0 48 48 0 1 1 96 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-plane": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "plane", + "transportation", + "truck", + "vehicle" + ] + }, + "unicode": "e58f", + "label": "Truck Plane", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M200 0c-30.6 0-56 54.7-56 86.1V192.5L7.8 274.3C2.9 277.2 0 282.4 0 288v64c0 5.1 2.4 9.8 6.4 12.8s9.3 3.9 14.1 2.5l123.4-37v81.2l-50 40c-3.8 3-6 7.6-6 12.5v32c0 5.1 2.5 10 6.6 13s9.5 3.8 14.4 2.2L200 480.9 290.4 511c-1.6-4.7-2.4-9.8-2.4-15V463.4c-18.2-10.5-30.7-29.7-31.9-51.8l-.1-.1V408 325.5 184l0-1.1 0 0V86.1C256 54.7 231.5 0 200 0zm88 176V400c0 20.9 13.4 38.7 32 45.3V488c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V448H544v40c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V445.3c18.6-6.6 32-24.4 32-45.3V176c0-26.5-21.5-48-48-48H336c-26.5 0-48 21.5-48 48zm79.8 78.7c3.3-8.7 11.2-14.7 20.5-14.7H539.7c9.2 0 17.2 6 20.5 14.7L576 304H352l15.8-49.3zM568 352a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM336 376a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "truck-ramp-box": { + "aliases": { + "names": [ + "truck-loading" + ], + "unicodes": { + "secondary": [ + "10f4de" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "box", + "cargo", + "delivery", + "inventory", + "moving", + "rental", + "vehicle" + ] + }, + "unicode": "f4de", + "label": "Truck Ramp Box", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 0V400c0 61.9-50.1 112-112 112c-61 0-110.5-48.7-112-109.3L48.4 502.9c-17.1 4.6-34.6-5.4-39.3-22.5s5.4-34.6 22.5-39.3L352 353.8V64c0-35.3 28.7-64 64-64H640zM576 400a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM23.1 207.7c-4.6-17.1 5.6-34.6 22.6-39.2l46.4-12.4 20.7 77.3c2.3 8.5 11.1 13.6 19.6 11.3l30.9-8.3c8.5-2.3 13.6-11.1 11.3-19.6l-20.7-77.3 46.4-12.4c17.1-4.6 34.6 5.6 39.2 22.6l41.4 154.5c4.6 17.1-5.6 34.6-22.6 39.2L103.7 384.9c-17.1 4.6-34.6-5.6-39.2-22.6L23.1 207.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tty": { + "aliases": { + "names": [ + "teletype" + ], + "unicodes": { + "secondary": [ + "10f1e4" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "communication", + "deaf", + "telephone", + "teletypewriter", + "text" + ] + }, + "unicode": "f1e4", + "label": "Tty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M29.3 241.3L6.1 200.6c-9.2-16.2-8.4-36.5 4.5-50C52.4 106.8 135.7 48 247 48s194.6 58.8 236.4 102.6c12.9 13.5 13.7 33.8 4.5 50l-23.1 40.7c-7.5 13.2-23.3 19.3-37.8 14.6l-81.1-26.6c-13.1-4.3-22-16.6-22-30.4V144c-49.6-18.1-104-18.1-153.6 0v54.8c0 13.8-8.9 26.1-22 30.4L67.1 255.8c-14.5 4.7-30.3-1.4-37.8-14.6zM23 336c0-8.8 7.2-16 16-16H71c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H39c-8.8 0-16-7.2-16-16V336zm0 96c0-8.8 7.2-16 16-16H71c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H39c-8.8 0-16-7.2-16-16V432zM135 320h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H135c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H231c-8.8 0-16-7.2-16-16V336zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H327c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H423c-8.8 0-16-7.2-16-16V336zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H423c-8.8 0-16-7.2-16-16V432c0-8.8 7.2-16 16-16zM119 432c0-8.8 7.2-16 16-16H359c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H135c-8.8 0-16-7.2-16-16V432z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tumblr": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f173", + "label": "Tumblr", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "turkish-lira-sign": { + "aliases": { + "names": [ + "try", + "turkish-lira" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Turkish Lira Sign", + "currency" + ] + }, + "unicode": "e2bb", + "label": "Turkish Lira Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 32c17.7 0 32 14.3 32 32V99.3L247.2 65.2c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 165.9v29.4l119.2-34.1c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 261.9V416h63.8c68.2 0 124.4-53.5 127.8-121.6l.4-8c.9-17.7 15.9-31.2 33.6-30.4s31.2 15.9 30.4 33.6l-.4 8C378.5 399.8 294.1 480 191.8 480H96c-17.7 0-32-14.3-32-32V280.1l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 213.6V184.1l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 117.6V64c0-17.7 14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "turn-down": { + "aliases": { + "names": [ + "level-down-alt" + ], + "unicodes": { + "composite": [ + "2935" + ], + "secondary": [ + "10f3be" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "down", + "level-down", + "right arrow curving down" + ] + }, + "unicode": "f3be", + "label": "Turn Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M350 334.5c3.8 8.8 2 19-4.6 26l-136 144c-4.5 4.8-10.8 7.5-17.4 7.5s-12.9-2.7-17.4-7.5l-136-144c-6.6-7-8.4-17.2-4.6-26s12.5-14.5 22-14.5h88l0-192c0-17.7-14.3-32-32-32H32C14.3 96 0 81.7 0 64V32C0 14.3 14.3 0 32 0l80 0c70.7 0 128 57.3 128 128l0 192h88c9.6 0 18.2 5.7 22 14.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "turn-up": { + "aliases": { + "names": [ + "level-up-alt" + ], + "unicodes": { + "composite": [ + "2934" + ], + "secondary": [ + "10f3bf" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "level-up", + "right arrow curving up" + ] + }, + "unicode": "f3bf", + "label": "Turn Up", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M350 177.5c3.8-8.8 2-19-4.6-26l-136-144C204.9 2.7 198.6 0 192 0s-12.9 2.7-17.4 7.5l-136 144c-6.6 7-8.4 17.2-4.6 26s12.5 14.5 22 14.5h88l0 192c0 17.7-14.3 32-32 32H32c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32l80 0c70.7 0 128-57.3 128-128l0-192h88c9.6 0 18.2-5.7 22-14.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "tv": { + "aliases": { + "names": [ + "television", + "tv-alt" + ], + "unicodes": { + "composite": [ + "f8e5" + ], + "primary": [ + "f8e5" + ], + "secondary": [ + "10f26c", + "10f8e5" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "display", + "monitor", + "television" + ] + }, + "unicode": "f26c", + "label": "Tv", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 64V352H576V64H64zM0 64C0 28.7 28.7 0 64 0H576c35.3 0 64 28.7 64 64V352c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM128 448H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "twitch": { + "changes": [ + "4.2.0", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1e8", + "label": "Twitch", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M391.17,103.47H352.54v109.7h38.63ZM285,103H246.37V212.75H285ZM120.83,0,24.31,91.42V420.58H140.14V512l96.53-91.42h77.25L487.69,256V0ZM449.07,237.75l-77.22,73.12H294.61l-67.6,64v-64H140.14V36.58H449.07Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "twitter": { + "changes": [ + "2.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "social network", + "tweet" + ] + }, + "unicode": "f099", + "label": "Twitter", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "typo3": { + "changes": [ + "5.0.1", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f42b", + "label": "Typo3", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M178.7 78.4c0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C7 246 113.8 480 191.1 480c36.3 0 97.3-59.5 146.7-139-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9zM301.5 32c-30.1 0-41.7 5.4-41.7 36.3 0 66.4 53.8 198.5 101.7 198.5 26.3 0 78.8-99.7 78.8-182.3 0-40.9-67-52.5-138.8-52.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "u": { + "aliases": { + "unicodes": { + "composite": [ + "75" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter U", + "Latin Small Letter U", + "letter" + ] + }, + "unicode": "55", + "label": "U", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V288c0 70.7 57.3 128 128 128s128-57.3 128-128V64c0-17.7 14.3-32 32-32s32 14.3 32 32V288c0 106-86 192-192 192S0 394 0 288V64C0 46.3 14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "uber": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f402", + "label": "Uber", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ubuntu": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "unicode": "f7df", + "label": "Ubuntu", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm52.7 93c8.8-15.2 28.3-20.5 43.5-11.7 15.3 8.8 20.5 28.3 11.7 43.6-8.8 15.2-28.3 20.5-43.5 11.7-15.3-8.9-20.5-28.4-11.7-43.6zM87.4 287.9c-17.6 0-31.9-14.3-31.9-31.9 0-17.6 14.3-31.9 31.9-31.9 17.6 0 31.9 14.3 31.9 31.9 0 17.6-14.3 31.9-31.9 31.9zm28.1 3.1c22.3-17.9 22.4-51.9 0-69.9 8.6-32.8 29.1-60.7 56.5-79.1l23.7 39.6c-51.5 36.3-51.5 112.5 0 148.8L172 370c-27.4-18.3-47.8-46.3-56.5-79zm228.7 131.7c-15.3 8.8-34.7 3.6-43.5-11.7-8.8-15.3-3.6-34.8 11.7-43.6 15.2-8.8 34.7-3.6 43.5 11.7 8.8 15.3 3.6 34.8-11.7 43.6zm.3-69.5c-26.7-10.3-56.1 6.6-60.5 35-5.2 1.4-48.9 14.3-96.7-9.4l22.5-40.3c57 26.5 123.4-11.7 128.9-74.4l46.1.7c-2.3 34.5-17.3 65.5-40.3 88.4zm-5.9-105.3c-5.4-62-71.3-101.2-128.9-74.4l-22.5-40.3c47.9-23.7 91.5-10.8 96.7-9.4 4.4 28.3 33.8 45.3 60.5 35 23.1 22.9 38 53.9 40.2 88.5l-46 .6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "uikit": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f403", + "label": "UIkit", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "umbraco": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f8e8", + "label": "Umbraco", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 510, + 512 + ], + "width": 510, + "height": 512, + "path": "M255.35 8C118.36 7.83 7.14 118.72 7 255.68c-.07 137 111 248.2 248 248.27 136.85 0 247.82-110.7 248-247.67S392.34 8.17 255.35 8zm145 266q-1.14 40.68-14 65t-43.51 35q-30.61 10.7-85.45 10.47h-4.6q-54.78.22-85.44-10.47t-43.52-35q-12.85-24.36-14-65a224.81 224.81 0 0 1 0-30.71 418.37 418.37 0 0 1 3.6-43.88c1.88-13.39 3.57-22.58 5.4-32 1-4.88 1.28-6.42 1.82-8.45a5.09 5.09 0 0 1 4.9-3.89h.69l32 5a5.07 5.07 0 0 1 4.16 5 5 5 0 0 1 0 .77l-1.7 8.78q-2.41 13.25-4.84 33.68a380.62 380.62 0 0 0-2.64 42.15q-.28 40.43 8.13 59.83a43.87 43.87 0 0 0 31.31 25.18A243 243 0 0 0 250 340.6h10.25a242.64 242.64 0 0 0 57.27-5.16 43.86 43.86 0 0 0 31.15-25.23q8.53-19.42 8.13-59.78a388 388 0 0 0-2.6-42.15q-2.48-20.38-4.89-33.68l-1.69-8.78a5 5 0 0 1 0-.77 5 5 0 0 1 4.2-5l32-5h.82a5 5 0 0 1 4.9 3.89c.55 2.05.81 3.57 1.83 8.45 1.82 9.62 3.52 18.78 5.39 32a415.71 415.71 0 0 1 3.61 43.88 228.06 228.06 0 0 1-.04 30.73z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "umbrella": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0e9" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protection", + "rain", + "storm", + "wet" + ] + }, + "unicode": "f0e9", + "label": "Umbrella", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M286 0c17.7 0 32 14.3 32 32V49.7C449.8 63.4 555.7 161 571.9 285.9c2 15.6-17.3 24.4-27.8 12.7C530.1 283 502.8 272 478 272c-38.7 0-71 27.5-78.4 64.1c-1.7 8.7-8.7 15.9-17.6 15.9s-15.8-7.2-17.6-15.9C357 299.5 324.7 272 286 272s-71 27.5-78.4 64.1c-1.7 8.7-8.7 15.9-17.6 15.9s-15.8-7.2-17.6-15.9C165 299.5 132.7 272 94 272c-24.8 0-52.1 11-66.1 26.7C17.4 310.4-1.9 301.5 .1 285.9C16.3 161 122.2 63.4 254 49.7V32c0-17.7 14.3-32 32-32zm0 304c12.3 0 23.5 4.6 32 12.2V430.6c0 45-36.5 81.4-81.4 81.4c-30.8 0-59-17.4-72.8-45l-2.3-4.7c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l2.3 4.7c3 5.9 9 9.6 15.6 9.6c9.6 0 17.4-7.8 17.4-17.4V316.2c8.5-7.6 19.7-12.2 32-12.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "umbrella-beach": { + "aliases": { + "unicodes": { + "composite": [ + "1f3d6" + ], + "secondary": [ + "10f5ca" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beach", + "beach with umbrella", + "protection", + "recreation", + "sand", + "shade", + "summer", + "sun", + "umbrella" + ] + }, + "unicode": "f5ca", + "label": "Umbrella Beach", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M346.3 271.8l-60.1-21.9L214 448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H282.1l64.1-176.2zm121.1-.2l-3.3 9.1 67.7 24.6c18.1 6.6 38-4.2 39.6-23.4c6.5-78.5-23.9-155.5-80.8-208.5c2 8 3.2 16.3 3.4 24.8l.2 6c1.8 57-7.3 113.8-26.8 167.4zM462 99.1c-1.1-34.4-22.5-64.8-54.4-77.4c-.9-.4-1.9-.7-2.8-1.1c-33-11.7-69.8-2.4-93.1 23.8l-4 4.5C272.4 88.3 245 134.2 226.8 184l-3.3 9.1L434 269.7l3.3-9.1c18.1-49.8 26.6-102.5 24.9-155.5l-.2-6zM107.2 112.9c-11.1 15.7-2.8 36.8 15.3 43.4l71 25.8 3.3-9.1c19.5-53.6 49.1-103 87.1-145.5l4-4.5c6.2-6.9 13.1-13 20.5-18.2c-79.6 2.5-154.7 42.2-201.2 108z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "uncharted": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e084", + "label": "Uncharted Software", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M171.73,232.813A5.381,5.381,0,0,0,176.7,229.5,48.081,48.081,0,0,1,191.6,204.244c1.243-.828,1.657-2.484,1.657-4.141a4.22,4.22,0,0,0-2.071-3.312L74.429,128.473,148.958,85a9.941,9.941,0,0,0,4.968-8.281,9.108,9.108,0,0,0-4.968-8.281L126.6,55.6a9.748,9.748,0,0,0-9.523,0l-100.2,57.966a9.943,9.943,0,0,0-4.969,8.281V236.954a9.109,9.109,0,0,0,4.969,8.281L39.235,258.07a8.829,8.829,0,0,0,4.968,1.242,9.4,9.4,0,0,0,6.625-2.484,10.8,10.8,0,0,0,2.9-7.039V164.5L169.66,232.4A4.5,4.5,0,0,0,171.73,232.813ZM323.272,377.73a12.478,12.478,0,0,0-4.969,1.242l-74.528,43.062V287.882c0-2.9-2.9-5.8-6.211-4.555a53.036,53.036,0,0,1-28.984.414,4.86,4.86,0,0,0-6.21,4.555V421.619l-74.529-43.061a8.83,8.83,0,0,0-4.969-1.242,9.631,9.631,0,0,0-9.523,9.523v26.085a9.107,9.107,0,0,0,4.969,8.281l100.2,57.553A8.829,8.829,0,0,0,223.486,480a11.027,11.027,0,0,0,4.969-1.242l100.2-57.553a9.941,9.941,0,0,0,4.968-8.281V386.839C332.8,382.285,328.24,377.73,323.272,377.73ZM286.007,78a23,23,0,1,0-23-23A23,23,0,0,0,286.007,78Zm63.627-10.086a23,23,0,1,0,23,23A23,23,0,0,0,349.634,67.914ZM412.816,151.6a23,23,0,1,0-23-23A23,23,0,0,0,412.816,151.6Zm-63.182-9.2a23,23,0,1,0,23,23A23,23,0,0,0,349.634,142.4Zm-63.627,83.244a23,23,0,1,0-23-23A23,23,0,0,0,286.007,225.648Zm-62.074,36.358a23,23,0,1,0-23-23A23,23,0,0,0,223.933,262.006Zm188.883-82.358a23,23,0,1,0,23,23A23,23,0,0,0,412.816,179.648Zm0,72.272a23,23,0,1,0,23,23A23,23,0,0,0,412.816,251.92Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "underline": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0cd" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "emphasis", + "format", + "text", + "writing" + ] + }, + "unicode": "f0cd", + "label": "Underline", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M16 64c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H128V224c0 53 43 96 96 96s96-43 96-96V96H304c-17.7 0-32-14.3-32-32s14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H384V224c0 88.4-71.6 160-160 160s-160-71.6-160-160V96H48C30.3 96 16 81.7 16 64zM0 448c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "uniregistry": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f404", + "label": "Uniregistry", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480zm-89.1-193.1v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4zm20.5 57H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8zm-17.7-34.7H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3zm-2.8-69.3H0v17.3h102.9zm0-173.2H0v4.9h102.9zm0-34.7H0v2.5h102.9zm0 69.3H0v7.4h102.9zm0 104H0v14.8h102.9zm0-69.3H0v9.9h102.9zm0 34.6H0V183h102.9zm166.2 160.9h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3zm12-185.7H384V136H281.1zm0 37.2H384v-12.4H281.1zm0-74.3H384v-7.4H281.1zm0-76.7v2.5H384V32zm-203 410.9h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7zm203-371.3H384v-4.9H281.1zm0 148.5H384v-14.8H281.1zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2zm188.8-37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8zm53.5-81.7c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1zm0-29.7H384v-17.3H281.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "unity": { + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e049", + "label": "Unity 3D", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M243.583 91.6027L323.695 138.384C326.575 140.026 326.68 144.583 323.695 146.225L228.503 201.854C225.623 203.55 222.22 203.444 219.549 201.854L124.357 146.225C121.425 144.636 121.373 139.973 124.357 138.384L204.417 91.6027V0L0 119.417V358.252L78.3843 312.477V218.914C78.3319 215.576 82.2066 213.192 85.0865 214.993L180.279 270.622C183.159 272.318 184.782 275.338 184.782 278.464V389.669C184.834 393.007 180.959 395.391 178.079 393.589L97.9673 346.808L19.583 392.583L224 512L428.417 392.583L350.033 346.808L269.921 393.589C267.093 395.338 263.114 393.06 263.218 389.669V278.464C263.218 275.126 265.051 272.159 267.721 270.622L362.914 214.993C365.741 213.245 369.72 215.47 369.616 218.914V312.477L448 358.252V119.417L243.583 0V91.6027Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "universal-access": { + "aliases": { + "unicodes": { + "secondary": [ + "10f29a" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f29a", + "label": "Universal Access", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm161.5-86.1c-12.2-5.2-26.3 .4-31.5 12.6s.4 26.3 12.6 31.5l11.9 5.1c17.3 7.4 35.2 12.9 53.6 16.3v50.1c0 4.3-.7 8.6-2.1 12.6l-28.7 86.1c-4.2 12.6 2.6 26.2 15.2 30.4s26.2-2.6 30.4-15.2l24.4-73.2c1.3-3.8 4.8-6.4 8.8-6.4s7.6 2.6 8.8 6.4l24.4 73.2c4.2 12.6 17.8 19.4 30.4 15.2s19.4-17.8 15.2-30.4l-28.7-86.1c-1.4-4.1-2.1-8.3-2.1-12.6V235.5c18.4-3.5 36.3-8.9 53.6-16.3l11.9-5.1c12.2-5.2 17.8-19.3 12.6-31.5s-19.3-17.8-31.5-12.6L338.7 175c-26.1 11.2-54.2 17-82.7 17s-56.5-5.8-82.7-17l-11.9-5.1zM256 160a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "unlock": { + "aliases": { + "unicodes": { + "composite": [ + "1f513" + ], + "secondary": [ + "10f09c" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "open", + "password", + "private", + "protect", + "unlock", + "unlocked" + ] + }, + "unicode": "f09c", + "label": "Unlock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M144 144c0-44.2 35.8-80 80-80c31.9 0 59.4 18.6 72.3 45.7c7.6 16 26.7 22.8 42.6 15.2s22.8-26.7 15.2-42.6C331 33.7 281.5 0 224 0C144.5 0 80 64.5 80 144v48H64c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V256c0-35.3-28.7-64-64-64H144V144z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "unlock-keyhole": { + "aliases": { + "names": [ + "unlock-alt" + ], + "unicodes": { + "secondary": [ + "10f13e" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "password", + "private", + "protect" + ] + }, + "unicode": "f13e", + "label": "Unlock Keyhole", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 64c-44.2 0-80 35.8-80 80v48H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80V144C80 64.5 144.5 0 224 0c57.5 0 107 33.7 130.1 82.3c7.6 16 .8 35.1-15.2 42.6s-35.1 .8-42.6-15.2C283.4 82.6 255.9 64 224 64zm32 320c17.7 0 32-14.3 32-32s-14.3-32-32-32H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "unsplash": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e07c", + "label": "Unsplash", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448,230.17V480H0V230.17H141.13V355.09H306.87V230.17ZM306.87,32H141.13V156.91H306.87Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "untappd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f405", + "label": "Untappd", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "up-down": { + "aliases": { + "names": [ + "arrows-alt-v" + ], + "unicodes": { + "composite": [ + "2195", + "2b0d" + ], + "secondary": [ + "10f338" + ] + } + }, + "changes": [ + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Up Down Black Arrow", + "arrow", + "arrows-v", + "expand", + "portrait", + "resize", + "tall", + "up-down arrow", + "vertical" + ] + }, + "unicode": "f338", + "label": "Up Down", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M145.6 7.7C141 2.8 134.7 0 128 0s-13 2.8-17.6 7.7l-104 112c-6.5 7-8.2 17.2-4.4 25.9S14.5 160 24 160H80V352H24c-9.5 0-18.2 5.7-22 14.4s-2.1 18.9 4.4 25.9l104 112c4.5 4.9 10.9 7.7 17.6 7.7s13-2.8 17.6-7.7l104-112c6.5-7 8.2-17.2 4.4-25.9s-12.5-14.4-22-14.4H176V160h56c9.5 0 18.2-5.7 22-14.4s2.1-18.9-4.4-25.9l-104-112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "up-down-left-right": { + "aliases": { + "names": [ + "arrows-alt" + ], + "unicodes": { + "secondary": [ + "10f0b2" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "bigger", + "enlarge", + "expand", + "fullscreen", + "move", + "position", + "reorder", + "resize" + ] + }, + "unicode": "f0b2", + "label": "Up Down Left Right", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M278.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32v96H128V192c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V288h96v96H192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H288V288h96v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6v32H288V128h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "up-long": { + "aliases": { + "names": [ + "long-arrow-alt-up" + ], + "unicodes": { + "secondary": [ + "10f30c" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "long-arrow-up", + "upload" + ] + }, + "unicode": "f30c", + "label": "Up Long", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M318 177.5c3.8-8.8 2-19-4.6-26l-136-144C172.9 2.7 166.6 0 160 0s-12.9 2.7-17.4 7.5l-136 144c-6.6 7-8.4 17.2-4.6 26S14.4 192 24 192H96l0 288c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32l0-288h72c9.6 0 18.2-5.7 22-14.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "up-right-and-down-left-from-center": { + "aliases": { + "names": [ + "expand-alt" + ], + "unicodes": { + "secondary": [ + "10f424" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "bigger", + "enlarge", + "fullscreen", + "resize" + ] + }, + "unicode": "f424", + "label": "Up Right And Down Left From Center", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M344 0H488c13.3 0 24 10.7 24 24V168c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39-87 87c-9.4 9.4-24.6 9.4-33.9 0l-32-32c-9.4-9.4-9.4-24.6 0-33.9l87-87L327 41c-6.9-6.9-8.9-17.2-5.2-26.2S334.3 0 344 0zM168 512H24c-13.3 0-24-10.7-24-24V344c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l39 39 87-87c9.4-9.4 24.6-9.4 33.9 0l32 32c9.4 9.4 9.4 24.6 0 33.9l-87 87 39 39c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "up-right-from-square": { + "aliases": { + "names": [ + "external-link-alt" + ], + "unicodes": { + "secondary": [ + "10f35d" + ] + } + }, + "changes": [ + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "external-link", + "new", + "open", + "share" + ] + }, + "unicode": "f35d", + "label": "Up Right From Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9L370.7 96 201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 141.3l41.4 41.4c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V32c0-17.7-14.3-32-32-32H352zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "upload": { + "aliases": { + "unicodes": { + "secondary": [ + "10f093" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hard drive", + "import", + "publish" + ] + }, + "unicode": "f093", + "label": "Upload", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 109.3V352c0 17.7-14.3 32-32 32s-32-14.3-32-32V109.3l-73.4 73.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l128-128c12.5-12.5 32.8-12.5 45.3 0l128 128c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L288 109.3zM64 352H192c0 35.3 28.7 64 64 64s64-28.7 64-64H448c35.3 0 64 28.7 64 64v32c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V416c0-35.3 28.7-64 64-64zM432 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "ups": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "United Parcel Service", + "package", + "shipping" + ] + }, + "unicode": "f7e0", + "label": "UPS", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M103.2 303c-5.2 3.6-32.6 13.1-32.6-19V180H37.9v102.6c0 74.9 80.2 51.1 97.9 39V180h-32.6zM4 74.82v220.9c0 103.7 74.9 135.2 187.7 184.1 112.4-48.9 187.7-80.2 187.7-184.1V74.82c-116.3-61.6-281.8-49.6-375.4 0zm358.1 220.9c0 86.6-53.2 113.6-170.4 165.3-117.5-51.8-170.5-78.7-170.5-165.3v-126.4c102.3-93.8 231.6-100 340.9-89.8zm-209.6-107.4v212.8h32.7v-68.7c24.4 7.3 71.7-2.6 71.7-78.5 0-97.4-80.7-80.92-104.4-65.6zm32.7 117.3v-100.3c8.4-4.2 38.4-12.7 38.4 49.3 0 67.9-36.4 51.8-38.4 51zm79.1-86.4c.1 47.3 51.6 42.5 52.2 70.4.6 23.5-30.4 23-50.8 4.9v30.1c36.2 21.5 81.9 8.1 83.2-33.5 1.7-51.5-54.1-46.6-53.4-73.2.6-20.3 30.6-20.5 48.5-2.2v-28.4c-28.5-22-79.9-9.2-79.7 31.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "usb": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f287", + "label": "USB", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "user": { + "aliases": { + "unicodes": { + "composite": [ + "1f464", + "f2c0" + ], + "secondary": [ + "10f007" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "adult", + "bust", + "bust in silhouette", + "gender-neutral", + "person", + "profile", + "silhouette", + "unspecified gender", + "users-people" + ] + }, + "unicode": "f007", + "label": "User", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3z" + }, + "regular": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M304 128a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM49.3 464H398.7c-8.9-63.3-63.3-112-129-112H178.3c-65.7 0-120.1 48.7-129 112zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "user-astronaut": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4fb" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "avatar", + "clothing", + "cosmonaut", + "nasa", + "space", + "suit" + ] + }, + "unicode": "f4fb", + "label": "User Astronaut", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M370.7 96.1C346.1 39.5 289.7 0 224 0S101.9 39.5 77.3 96.1C60.9 97.5 48 111.2 48 128v64c0 16.8 12.9 30.5 29.3 31.9C101.9 280.5 158.3 320 224 320s122.1-39.5 146.7-96.1c16.4-1.4 29.3-15.1 29.3-31.9V128c0-16.8-12.9-30.5-29.3-31.9zM336 144v16c0 53-43 96-96 96H208c-53 0-96-43-96-96V144c0-26.5 21.5-48 48-48H288c26.5 0 48 21.5 48 48zM189.3 162.7l-6-21.2c-.9-3.3-3.9-5.5-7.3-5.5s-6.4 2.2-7.3 5.5l-6 21.2-21.2 6c-3.3 .9-5.5 3.9-5.5 7.3s2.2 6.4 5.5 7.3l21.2 6 6 21.2c.9 3.3 3.9 5.5 7.3 5.5s6.4-2.2 7.3-5.5l6-21.2 21.2-6c3.3-.9 5.5-3.9 5.5-7.3s-2.2-6.4-5.5-7.3l-21.2-6zM112.7 316.5C46.7 342.6 0 407 0 482.3C0 498.7 13.3 512 29.7 512H128V448c0-17.7 14.3-32 32-32H288c17.7 0 32 14.3 32 32v64l98.3 0c16.4 0 29.7-13.3 29.7-29.7c0-75.3-46.7-139.7-112.7-165.8C303.9 338.8 265.5 352 224 352s-79.9-13.2-111.3-35.5zM176 448c-8.8 0-16 7.2-16 16v48h32V464c0-8.8-7.2-16-16-16zm96 32a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4fc" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4fc", + "label": "User Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM625 177L497 305c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L591 143c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-clock": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4fd" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4fd", + "label": "User Clock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304h91.4c20.6 0 40.4 3.5 58.8 9.9C323 331 320 349.1 320 368c0 59.5 29.5 112.1 74.8 144H29.7C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM352 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-80c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H512V304c0-8.8-7.2-16-16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-doctor": { + "aliases": { + "names": [ + "user-md" + ], + "unicodes": { + "secondary": [ + "10f0f0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.3", + "5.0.7", + "5.0.11", + "6.0.0-beta1", + "6.0.0-beta2", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "health", + "job", + "medical", + "nurse", + "occupation", + "physician", + "profile", + "surgeon", + "worker" + ] + }, + "unicode": "f0f0", + "label": "User Doctor", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-96 55.2C54 332.9 0 401.3 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7c0-81-54-149.4-128-171.1V362c27.6 7.1 48 32.2 48 62v40c0 8.8-7.2 16-16 16H336c-8.8 0-16-7.2-16-16s7.2-16 16-16V424c0-17.7-14.3-32-32-32s-32 14.3-32 32v24c8.8 0 16 7.2 16 16s-7.2 16-16 16H256c-8.8 0-16-7.2-16-16V424c0-29.8 20.4-54.9 48-62V304.9c-6-.6-12.1-.9-18.3-.9H178.3c-6.2 0-12.3 .3-18.3 .9v65.4c23.1 6.9 40 28.3 40 53.7c0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.4 16.9-46.8 40-53.7V311.2zM144 448a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-gear": { + "aliases": { + "names": [ + "user-cog" + ], + "unicodes": { + "secondary": [ + "10f4fe" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4fe", + "label": "User Gear", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304h91.4c11.8 0 23.4 1.2 34.5 3.3c-2.1 18.5 7.4 35.6 21.8 44.8c-16.6 10.6-26.7 31.6-20 53.3c4 12.9 9.4 25.5 16.4 37.6s15.2 23.1 24.4 33c15.7 16.9 39.6 18.4 57.2 8.7v.9c0 9.2 2.7 18.5 7.9 26.3H29.7C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM436 218.2c0-7 4.5-13.3 11.3-14.8c10.5-2.4 21.5-3.7 32.7-3.7s22.2 1.3 32.7 3.7c6.8 1.5 11.3 7.8 11.3 14.8v30.6c7.9 3.4 15.4 7.7 22.3 12.8l24.9-14.3c6.1-3.5 13.7-2.7 18.5 2.4c7.6 8.1 14.3 17.2 20.1 27.2s10.3 20.4 13.5 31c2.1 6.7-1.1 13.7-7.2 17.2l-25 14.4c.4 4 .7 8.1 .7 12.3s-.2 8.2-.7 12.3l25 14.4c6.1 3.5 9.2 10.5 7.2 17.2c-3.3 10.6-7.8 21-13.5 31s-12.5 19.1-20.1 27.2c-4.8 5.1-12.5 5.9-18.5 2.4l-24.9-14.3c-6.9 5.1-14.3 9.4-22.3 12.8l0 30.6c0 7-4.5 13.3-11.3 14.8c-10.5 2.4-21.5 3.7-32.7 3.7s-22.2-1.3-32.7-3.7c-6.8-1.5-11.3-7.8-11.3-14.8V454.8c-8-3.4-15.6-7.7-22.5-12.9l-24.7 14.3c-6.1 3.5-13.7 2.7-18.5-2.4c-7.6-8.1-14.3-17.2-20.1-27.2s-10.3-20.4-13.5-31c-2.1-6.7 1.1-13.7 7.2-17.2l24.8-14.3c-.4-4.1-.7-8.2-.7-12.4s.2-8.3 .7-12.4L343.8 325c-6.1-3.5-9.2-10.5-7.2-17.2c3.3-10.6 7.7-21 13.5-31s12.5-19.1 20.1-27.2c4.8-5.1 12.4-5.9 18.5-2.4l24.8 14.3c6.9-5.1 14.5-9.4 22.5-12.9V218.2zm92.1 133.5a48.1 48.1 0 1 0 -96.1 0 48.1 48.1 0 1 0 96.1 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-graduate": { + "aliases": { + "unicodes": { + "secondary": [ + "10f501" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f501", + "label": "User Graduate", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M219.3 .5c3.1-.6 6.3-.6 9.4 0l200 40C439.9 42.7 448 52.6 448 64s-8.1 21.3-19.3 23.5L352 102.9V160c0 70.7-57.3 128-128 128s-128-57.3-128-128V102.9L48 93.3v65.1l15.7 78.4c.9 4.7-.3 9.6-3.3 13.3s-7.6 5.9-12.4 5.9H16c-4.8 0-9.3-2.1-12.4-5.9s-4.3-8.6-3.3-13.3L16 158.4V86.6C6.5 83.3 0 74.3 0 64C0 52.6 8.1 42.7 19.3 40.5l200-40zM111.9 327.7c10.5-3.4 21.8 .4 29.4 8.5l71 75.5c6.3 6.7 17 6.7 23.3 0l71-75.5c7.6-8.1 18.9-11.9 29.4-8.5C401 348.6 448 409.4 448 481.3c0 17-13.8 30.7-30.7 30.7H30.7C13.8 512 0 498.2 0 481.3c0-71.9 47-132.7 111.9-153.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-group": { + "aliases": { + "names": [ + "user-friends" + ], + "unicodes": { + "composite": [ + "1f465" + ], + "secondary": [ + "10f500" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bust", + "busts in silhouette", + "silhouette", + "users-people" + ] + }, + "unicode": "f500", + "label": "User Group", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM609.3 512H471.4c5.4-9.4 8.6-20.3 8.6-32v-8c0-60.7-27.1-115.2-69.8-151.8c2.4-.1 4.7-.2 7.1-.2h61.4C567.8 320 640 392.2 640 481.3c0 17-13.8 30.7-30.7 30.7zM432 256c-31 0-59-12.6-79.3-32.9C372.4 196.5 384 163.6 384 128c0-26.8-6.6-52.1-18.3-74.3C384.3 40.1 407.2 32 432 32c61.9 0 112 50.1 112 112s-50.1 112-112 112z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-injured": { + "aliases": { + "unicodes": { + "secondary": [ + "10f728" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f728", + "label": "User Injured", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M240 80H342.7c-7.9-19.5-20.4-36.5-36.2-49.9L240 80zm37.7-68.2C261.3 4.2 243.2 0 224 0c-53.7 0-99.7 33.1-118.7 80h81.4l91-68.2zM224 256c70.7 0 128-57.3 128-128c0-5.4-.3-10.8-1-16H97c-.7 5.2-1 10.6-1 16c0 70.7 57.3 128 128 128zM124 312.4c-9.7 3.1-19.1 7-28 11.7V512H243.7L181.5 408.2 124 312.4zm33-7.2L204.3 384H272c44.2 0 80 35.8 80 80c0 18-6 34.6-16 48h82.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3c-7.2 0-14.3 .4-21.3 1.3zM0 482.3C0 498.7 13.3 512 29.7 512H64V345.4C24.9 378.1 0 427.3 0 482.3zM320 464c0-26.5-21.5-48-48-48H223.5l57.1 95.2C303 507.2 320 487.6 320 464z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-large": { + "aliases": { + "names": [ + "user-alt" + ], + "unicodes": { + "secondary": [ + "10f406" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f406", + "label": "User Large", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 288A144 144 0 1 0 256 0a144 144 0 1 0 0 288zm-94.7 32C72.2 320 0 392.2 0 481.3c0 17 13.8 30.7 30.7 30.7H481.3c17 0 30.7-13.8 30.7-30.7C512 392.2 439.8 320 350.7 320H161.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-large-slash": { + "aliases": { + "names": [ + "user-alt-slash" + ], + "unicodes": { + "secondary": [ + "10f4fa" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4fa", + "label": "User Large Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L381.9 274c48.5-23.2 82.1-72.7 82.1-130C464 64.5 399.5 0 320 0C250.4 0 192.4 49.3 178.9 114.9L38.8 5.1zM284.3 320h-59C136.2 320 64 392.2 64 481.3c0 17 13.8 30.7 30.7 30.7H528L284.3 320z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-lock": { + "aliases": { + "unicodes": { + "secondary": [ + "10f502" + ] + } + }, + "changes": [ + "5.0.11", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f502", + "label": "User Lock", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H392.6c-5.4-9.4-8.6-20.3-8.6-32V352c0-2.1 .1-4.2 .3-6.3c-31-26-71-41.7-114.6-41.7H178.3zM528 240c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-minus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f503" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "negative", + "remove" + ] + }, + "unicode": "f503", + "label": "User Minus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM472 200H616c13.3 0 24 10.7 24 24s-10.7 24-24 24H472c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-ninja": { + "aliases": { + "unicodes": { + "composite": [ + "1f977" + ], + "secondary": [ + "10f504" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "assassin", + "avatar", + "dangerous", + "deadly", + "fighter", + "hidden", + "ninja", + "sneaky", + "stealth" + ] + }, + "unicode": "f504", + "label": "User Ninja", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 256c-57.2 0-105.6-37.5-122-89.3c-1.1 1.3-2.2 2.6-3.5 3.8c-15.8 15.8-38.8 20.7-53.6 22.1c-8.1 .8-14.6-5.7-13.8-13.8c1.4-14.7 6.3-37.8 22.1-53.6c5.8-5.8 12.6-10.1 19.6-13.4c-7-3.2-13.8-7.6-19.6-13.4C37.4 82.7 32.6 59.7 31.1 44.9c-.8-8.1 5.7-14.6 13.8-13.8c14.7 1.4 37.8 6.3 53.6 22.1c4.8 4.8 8.7 10.4 11.7 16.1C131.4 28.2 174.4 0 224 0c70.7 0 128 57.3 128 128s-57.3 128-128 128zM0 482.3C0 399.5 56.4 330 132.8 309.9c6-1.6 12.2 .9 15.9 5.8l62.5 83.3c6.4 8.5 19.2 8.5 25.6 0l62.5-83.3c3.7-4.9 9.9-7.4 15.9-5.8C391.6 330 448 399.5 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM160 96c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-nurse": { + "aliases": { + "unicodes": { + "secondary": [ + "10f82f" + ] + } + }, + "changes": [ + "5.7.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "health", + "md", + "medical", + "midwife", + "physician", + "practitioner", + "surgeon", + "worker" + ] + }, + "unicode": "f82f", + "label": "User Nurse", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 128V70.2c0-13.3 8.3-25.3 20.8-30l96-36c7.2-2.7 15.2-2.7 22.5 0l96 36c12.5 4.7 20.8 16.6 20.8 30V128h-.3c.2 2.6 .3 5.3 .3 8v40c0 70.7-57.3 128-128 128s-128-57.3-128-128V136c0-2.7 .1-5.4 .3-8H96zm48 48c0 44.2 35.8 80 80 80s80-35.8 80-80V160H144v16zM111.9 327.7c10.5-3.4 21.8 .4 29.4 8.5l71 75.5c6.3 6.7 17 6.7 23.3 0l71-75.5c7.6-8.1 18.9-11.9 29.4-8.5C401 348.6 448 409.4 448 481.3c0 17-13.8 30.7-30.7 30.7H30.7C13.8 512 0 498.2 0 481.3c0-71.9 47-132.7 111.9-153.6zM208 48V64H192c-4.4 0-8 3.6-8 8V88c0 4.4 3.6 8 8 8h16v16c0 4.4 3.6 8 8 8h16c4.4 0 8-3.6 8-8V96h16c4.4 0 8-3.6 8-8V72c0-4.4-3.6-8-8-8H240V48c0-4.4-3.6-8-8-8H216c-4.4 0-8 3.6-8 8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-pen": { + "aliases": { + "names": [ + "user-edit" + ], + "unicodes": { + "secondary": [ + "10f4ff" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f4ff", + "label": "User Pen", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H322.8c-3.1-8.8-3.7-18.4-1.4-27.8l15-60.1c2.8-11.3 8.6-21.5 16.8-29.7l40.3-40.3c-32.1-31-75.7-50.1-123.9-50.1H178.3zm435.5-68.3c-15.6-15.6-40.9-15.6-56.6 0l-29.4 29.4 71 71 29.4-29.4c15.6-15.6 15.6-40.9 0-56.6l-14.4-14.4zM375.9 417c-4.1 4.1-7 9.2-8.4 14.9l-15 60.1c-1.4 5.5 .2 11.2 4.2 15.2s9.7 5.6 15.2 4.2l60.1-15c5.6-1.4 10.8-4.3 14.9-8.4L576.1 358.7l-71-71L375.9 417z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-plus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f234" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "avatar", + "positive", + "sign up", + "signup", + "team" + ] + }, + "unicode": "f234", + "label": "User Plus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM504 312V248H440c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V136c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H552v64c0 13.3-10.7 24-24 24s-24-10.7-24-24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-secret": { + "aliases": { + "unicodes": { + "composite": [ + "1f575" + ], + "secondary": [ + "10f21b" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "detective", + "sleuth", + "spy", + "users-people" + ] + }, + "unicode": "f21b", + "label": "User Secret", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 16c-6.7 0-10.8-2.8-15.5-6.1C201.9 5.4 194 0 176 0c-30.5 0-52 43.7-66 89.4C62.7 98.1 32 112.2 32 128c0 14.3 25 27.1 64.6 35.9c-.4 4-.6 8-.6 12.1c0 17 3.3 33.2 9.3 48H45.4C38 224 32 230 32 237.4c0 1.7 .3 3.4 1 5l38.8 96.9C28.2 371.8 0 423.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7c0-58.5-28.2-110.4-71.7-143L415 242.4c.6-1.6 1-3.3 1-5c0-7.4-6-13.4-13.4-13.4H342.7c6-14.8 9.3-31 9.3-48c0-4.1-.2-8.1-.6-12.1C391 155.1 416 142.3 416 128c0-15.8-30.7-29.9-78-38.6C324 43.7 302.5 0 272 0c-18 0-25.9 5.4-32.5 9.9c-4.7 3.3-8.8 6.1-15.5 6.1zm56 208H267.6c-16.5 0-31.1-10.6-36.3-26.2c-2.3-7-12.2-7-14.5 0c-5.2 15.6-19.9 26.2-36.3 26.2H168c-22.1 0-40-17.9-40-40V169.6c28.2 4.1 61 6.4 96 6.4s67.8-2.3 96-6.4V184c0 22.1-17.9 40-40 40zm-88 96l16 32L176 480 128 288l64 32zm128-32L272 480 240 352l16-32 64-32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-shield": { + "aliases": { + "unicodes": { + "secondary": [ + "10f505" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protect", + "safety" + ] + }, + "unicode": "f505", + "label": "User Shield", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c1.8 0 3.5-.2 5.3-.5c-76.3-55.1-99.8-141-103.1-200.2c-16.1-4.8-33.1-7.3-50.7-7.3H178.3zm308.8-78.3l-120 48C358 277.4 352 286.2 352 296c0 63.3 25.9 168.8 134.8 214.2c5.9 2.5 12.6 2.5 18.5 0C614.1 464.8 640 359.3 640 296c0-9.8-6-18.6-15.1-22.3l-120-48c-5.7-2.3-12.1-2.3-17.8 0zM591.4 312c-3.9 50.7-27.2 116.7-95.4 149.7V273.8L591.4 312z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f506" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ban", + "delete", + "remove" + ] + }, + "unicode": "f506", + "label": "User Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L353.3 251.6C407.9 237 448 187.2 448 128C448 57.3 390.7 0 320 0C250.2 0 193.5 55.8 192 125.2L38.8 5.1zM264.3 304.3C170.5 309.4 96 387.2 96 482.3c0 16.4 13.3 29.7 29.7 29.7H514.3c3.9 0 7.6-.7 11-2.1l-261-205.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-tag": { + "aliases": { + "unicodes": { + "secondary": [ + "10f507" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f507", + "label": "User Tag", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c10 0 18.8-4.9 24.2-12.5l-99.2-99.2c-14.9-14.9-23.3-35.1-23.3-56.1v-33c-15.9-4.7-32.8-7.2-50.3-7.2H178.3zM384 224c-17.7 0-32 14.3-32 32v82.7c0 17 6.7 33.3 18.7 45.3L478.1 491.3c18.7 18.7 49.1 18.7 67.9 0l73.4-73.4c18.7-18.7 18.7-49.1 0-67.9L512 242.7c-12-12-28.3-18.7-45.3-18.7H384zm24 80a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-tie": { + "aliases": { + "unicodes": { + "secondary": [ + "10f508" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "avatar", + "business", + "clothing", + "formal", + "professional", + "suit" + ] + }, + "unicode": "f508", + "label": "User Tie", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 256A128 128 0 1 1 224 0a128 128 0 1 1 0 256zM209.1 359.2l-18.6-31c-6.4-10.7 1.3-24.2 13.7-24.2H224h19.7c12.4 0 20.1 13.6 13.7 24.2l-18.6 31 33.4 123.9 36-146.9c2-8.1 9.8-13.4 17.9-11.3c70.1 17.6 121.9 81 121.9 156.4c0 17-13.8 30.7-30.7 30.7H285.5c-2.1 0-4-.4-5.8-1.1l.3 1.1H168l.3-1.1c-1.8 .7-3.8 1.1-5.8 1.1H30.7C13.8 512 0 498.2 0 481.3c0-75.5 51.9-138.9 121.9-156.4c8.1-2 15.9 3.3 17.9 11.3l36 146.9 33.4-123.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "user-xmark": { + "aliases": { + "names": [ + "user-times" + ], + "unicodes": { + "secondary": [ + "10f235" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "delete", + "remove", + "x" + ] + }, + "unicode": "f235", + "label": "User Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM471 143c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0c0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f0c0", + "label": "Users", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 0a80 80 0 1 1 0 160A80 80 0 1 1 144 0zM512 0a80 80 0 1 1 0 160A80 80 0 1 1 512 0zM0 298.7C0 239.8 47.8 192 106.7 192h42.7c15.9 0 31 3.5 44.6 9.7c-1.3 7.2-1.9 14.7-1.9 22.3c0 38.2 16.8 72.5 43.3 96c-.2 0-.4 0-.7 0H21.3C9.6 320 0 310.4 0 298.7zM405.3 320c-.2 0-.4 0-.7 0c26.6-23.5 43.3-57.8 43.3-96c0-7.6-.7-15-1.9-22.3c13.6-6.3 28.7-9.7 44.6-9.7h42.7C592.2 192 640 239.8 640 298.7c0 11.8-9.6 21.3-21.3 21.3H405.3zM224 224a96 96 0 1 1 192 0 96 96 0 1 1 -192 0zM128 485.3C128 411.7 187.7 352 261.3 352H378.7C452.3 352 512 411.7 512 485.3c0 14.7-11.9 26.7-26.7 26.7H154.7c-14.7 0-26.7-11.9-26.7-26.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-between-lines": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covered", + "group", + "people" + ] + }, + "unicode": "e591", + "label": "Users Between Lines", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 24C0 10.7 10.7 0 24 0H616c13.3 0 24 10.7 24 24s-10.7 24-24 24H24C10.7 48 0 37.3 0 24zM0 488c0-13.3 10.7-24 24-24H616c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24zM83.2 160a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM32 320c0-35.3 28.7-64 64-64h96c12.2 0 23.7 3.4 33.4 9.4c-37.2 15.1-65.6 47.2-75.8 86.6H64c-17.7 0-32-14.3-32-32zm461.6 32c-10.3-40.1-39.6-72.6-77.7-87.4c9.4-5.5 20.4-8.6 32.1-8.6h96c35.3 0 64 28.7 64 64c0 17.7-14.3 32-32 32H493.6zM391.2 290.4c32.1 7.4 58.1 30.9 68.9 61.6c3.5 10 5.5 20.8 5.5 32c0 17.7-14.3 32-32 32h-224c-17.7 0-32-14.3-32-32c0-11.2 1.9-22 5.5-32c10.5-29.7 35.3-52.8 66.1-60.9c7.8-2.1 16-3.1 24.5-3.1h96c7.4 0 14.7 .8 21.6 2.4zm44-130.4a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM321.6 96a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-gear": { + "aliases": { + "names": [ + "users-cog" + ], + "unicodes": { + "secondary": [ + "10f509" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f509", + "label": "Users Gear", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 160A80 80 0 1 0 144 0a80 80 0 1 0 0 160zm368 0A80 80 0 1 0 512 0a80 80 0 1 0 0 160zM0 298.7C0 310.4 9.6 320 21.3 320H234.7c.2 0 .4 0 .7 0c-26.6-23.5-43.3-57.8-43.3-96c0-7.6 .7-15 1.9-22.3c-13.6-6.3-28.7-9.7-44.6-9.7H106.7C47.8 192 0 239.8 0 298.7zM320 320c24 0 45.9-8.8 62.7-23.3c2.5-3.7 5.2-7.3 8-10.7c2.7-3.3 5.7-6.1 9-8.3C410 262.3 416 243.9 416 224c0-53-43-96-96-96s-96 43-96 96s43 96 96 96zm65.4 60.2c-10.3-5.9-18.1-16.2-20.8-28.2H261.3C187.7 352 128 411.7 128 485.3c0 14.7 11.9 26.7 26.7 26.7H455.2c-2.1-5.2-3.2-10.9-3.2-16.4v-3c-1.3-.7-2.7-1.5-4-2.3l-2.6 1.5c-16.8 9.7-40.5 8-54.7-9.7c-4.5-5.6-8.6-11.5-12.4-17.6l-.1-.2-.1-.2-2.4-4.1-.1-.2-.1-.2c-3.4-6.2-6.4-12.6-9-19.3c-8.2-21.2 2.2-42.6 19-52.3l2.7-1.5c0-.8 0-1.5 0-2.3s0-1.5 0-2.3l-2.7-1.5zM533.3 192H490.7c-15.9 0-31 3.5-44.6 9.7c1.3 7.2 1.9 14.7 1.9 22.3c0 17.4-3.5 33.9-9.7 49c2.5 .9 4.9 2 7.1 3.3l2.6 1.5c1.3-.8 2.6-1.6 4-2.3v-3c0-19.4 13.3-39.1 35.8-42.6c7.9-1.2 16-1.9 24.2-1.9s16.3 .6 24.2 1.9c22.5 3.5 35.8 23.2 35.8 42.6v3c1.3 .7 2.7 1.5 4 2.3l2.6-1.5c16.8-9.7 40.5-8 54.7 9.7c2.3 2.8 4.5 5.8 6.6 8.7c-2.1-57.1-49-102.7-106.6-102.7zm91.3 163.9c6.3-3.6 9.5-11.1 6.8-18c-2.1-5.5-4.6-10.8-7.4-15.9l-2.3-4c-3.1-5.1-6.5-9.9-10.2-14.5c-4.6-5.7-12.7-6.7-19-3L574.4 311c-8.9-7.6-19.1-13.6-30.4-17.6v-21c0-7.3-4.9-13.8-12.1-14.9c-6.5-1-13.1-1.5-19.9-1.5s-13.4 .5-19.9 1.5c-7.2 1.1-12.1 7.6-12.1 14.9v21c-11.2 4-21.5 10-30.4 17.6l-18.2-10.5c-6.3-3.6-14.4-2.6-19 3c-3.7 4.6-7.1 9.5-10.2 14.6l-2.3 3.9c-2.8 5.1-5.3 10.4-7.4 15.9c-2.6 6.8 .5 14.3 6.8 17.9l18.2 10.5c-1 5.7-1.6 11.6-1.6 17.6s.6 11.9 1.6 17.5l-18.2 10.5c-6.3 3.6-9.5 11.1-6.8 17.9c2.1 5.5 4.6 10.7 7.4 15.8l2.4 4.1c3 5.1 6.4 9.9 10.1 14.5c4.6 5.7 12.7 6.7 19 3L449.6 457c8.9 7.6 19.2 13.6 30.4 17.6v21c0 7.3 4.9 13.8 12.1 14.9c6.5 1 13.1 1.5 19.9 1.5s13.4-.5 19.9-1.5c7.2-1.1 12.1-7.6 12.1-14.9v-21c11.2-4 21.5-10 30.4-17.6l18.2 10.5c6.3 3.6 14.4 2.6 19-3c3.7-4.6 7.1-9.4 10.1-14.5l2.4-4.2c2.8-5.1 5.3-10.3 7.4-15.8c2.6-6.8-.5-14.3-6.8-17.9l-18.2-10.5c1-5.7 1.6-11.6 1.6-17.5s-.6-11.9-1.6-17.6l18.2-10.5zM472 384a40 40 0 1 1 80 0 40 40 0 1 1 -80 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "group", + "need", + "people" + ] + }, + "unicode": "e592", + "label": "Users Line", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M211.2 96a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zM32 256c0 17.7 14.3 32 32 32h85.6c10.1-39.4 38.6-71.5 75.8-86.6c-9.7-6-21.2-9.4-33.4-9.4H96c-35.3 0-64 28.7-64 64zm461.6 32H576c17.7 0 32-14.3 32-32c0-35.3-28.7-64-64-64H448c-11.7 0-22.7 3.1-32.1 8.6c38.1 14.8 67.4 47.3 77.7 87.4zM391.2 226.4c-6.9-1.6-14.2-2.4-21.6-2.4h-96c-8.5 0-16.7 1.1-24.5 3.1c-30.8 8.1-55.6 31.1-66.1 60.9c-3.5 10-5.5 20.8-5.5 32c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32c0-11.2-1.9-22-5.5-32c-10.8-30.7-36.8-54.2-68.9-61.6zM563.2 96a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zM321.6 192a80 80 0 1 0 0-160 80 80 0 1 0 0 160zM32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-rays": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "focused", + "group", + "people" + ] + }, + "unicode": "e593", + "label": "Users Rays", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M41 7C31.6-2.3 16.4-2.3 7 7S-2.3 31.6 7 41l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L41 7zM599 7L527 79c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0zM7 505c9.4 9.4 24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L7 471c-9.4 9.4-9.4 24.6 0 33.9zm592 0c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-72-72c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l72 72zM320 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM212.1 336c-2.7 7.5-4.1 15.6-4.1 24c0 13.3 10.7 24 24 24H408c13.3 0 24-10.7 24-24c0-8.4-1.4-16.5-4.1-24c-.5-1.4-1-2.7-1.6-4c-9.4-22.3-29.8-38.9-54.3-43c-3.9-.7-7.9-1-12-1H280c-4.1 0-8.1 .3-12 1c-.8 .1-1.7 .3-2.5 .5c-24.9 5.1-45.1 23-53.4 46.5zM175.8 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-26.5 32C119.9 256 96 279.9 96 309.3c0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6c-7.5-4.1-16.2-6.4-25.3-6.4H149.3zm368 80c14.7 0 26.7-11.9 26.7-26.7c0-29.5-23.9-53.3-53.3-53.3H421.3c-9.2 0-17.8 2.3-25.3 6.4c32.4 11.9 57.2 39.5 65.2 73.6h56.1zM464 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-rectangle": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "focus", + "group", + "people", + "reached" + ] + }, + "unicode": "e594", + "label": "Users Rectangle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H544c53 0 96-43 96-96V96c0-53-43-96-96-96H96zM64 96c0-17.7 14.3-32 32-32H544c17.7 0 32 14.3 32 32V416c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96zm159.8 80a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM96 309.3c0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6c-7.5-4.1-16.2-6.4-25.3-6.4H149.3C119.9 256 96 279.9 96 309.3zM461.2 336h56.1c14.7 0 26.7-11.9 26.7-26.7c0-29.5-23.9-53.3-53.3-53.3H421.3c-9.2 0-17.8 2.3-25.3 6.4c32.4 11.9 57.2 39.5 65.2 73.6zM372 289c-3.9-.7-7.9-1-12-1H280c-4.1 0-8.1 .3-12 1c-26 4.4-47.3 22.7-55.9 47c-2.7 7.5-4.1 15.6-4.1 24c0 13.3 10.7 24 24 24H408c13.3 0 24-10.7 24-24c0-8.4-1.4-16.5-4.1-24c-8.6-24.3-29.9-42.6-55.9-47zM512 176a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM320 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e073" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "e073", + "label": "Users Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L440.6 320H618.7c11.8 0 21.3-9.6 21.3-21.3C640 239.8 592.2 192 533.3 192H490.7c-15.9 0-31 3.5-44.6 9.7c1.3 7.2 1.9 14.7 1.9 22.3c0 30.2-10.5 58-28 79.9l-25.2-19.7C408.1 267.7 416 246.8 416 224c0-53-43-96-96-96c-31.1 0-58.7 14.8-76.3 37.7l-40.6-31.8c13-14.2 20.9-33.1 20.9-53.9c0-44.2-35.8-80-80-80C116.3 0 91.9 14.1 77.5 35.5L38.8 5.1zM106.7 192C47.8 192 0 239.8 0 298.7C0 310.4 9.6 320 21.3 320H234.7c.2 0 .4 0 .7 0c-20.6-18.2-35.2-42.8-40.8-70.8L121.8 192H106.7zM261.3 352C187.7 352 128 411.7 128 485.3c0 14.7 11.9 26.7 26.7 26.7H485.3c10.5 0 19.5-6 23.9-14.8L324.9 352H261.3zM512 160A80 80 0 1 0 512 0a80 80 0 1 0 0 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "users-viewfinder": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "focus", + "group", + "people", + "targeted" + ] + }, + "unicode": "e595", + "label": "Users Viewfinder", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 48h88c13.3 0 24-10.7 24-24s-10.7-24-24-24H32C14.3 0 0 14.3 0 32V136c0 13.3 10.7 24 24 24s24-10.7 24-24V48zM175.8 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-26.5 32C119.9 256 96 279.9 96 309.3c0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6c-7.5-4.1-16.2-6.4-25.3-6.4H149.3zm368 80c14.7 0 26.7-11.9 26.7-26.7c0-29.5-23.9-53.3-53.3-53.3H421.3c-9.2 0-17.8 2.3-25.3 6.4c32.4 11.9 57.2 39.5 65.2 73.6h56.1zm-89.4 0c-8.6-24.3-29.9-42.6-55.9-47c-3.9-.7-7.9-1-12-1H280c-4.1 0-8.1 .3-12 1c-26 4.4-47.3 22.7-55.9 47c-2.7 7.5-4.1 15.6-4.1 24c0 13.3 10.7 24 24 24H408c13.3 0 24-10.7 24-24c0-8.4-1.4-16.5-4.1-24zM464 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-80-32a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zM504 48h88v88c0 13.3 10.7 24 24 24s24-10.7 24-24V32c0-17.7-14.3-32-32-32H504c-13.3 0-24 10.7-24 24s10.7 24 24 24zM48 464V376c0-13.3-10.7-24-24-24s-24 10.7-24 24V480c0 17.7 14.3 32 32 32H136c13.3 0 24-10.7 24-24s-10.7-24-24-24H48zm456 0c-13.3 0-24 10.7-24 24s10.7 24 24 24H608c17.7 0 32-14.3 32-32V376c0-13.3-10.7-24-24-24s-24 10.7-24 24v88H504z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "usps": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "package", + "shipping", + "usa" + ] + }, + "unicode": "f7e1", + "label": "United States Postal Service", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M460.3 241.7c25.8-41.3 15.2-48.8-11.7-48.8h-27c-.1 0-1.5-1.4-10.9 8-11.2 5.6-37.9 6.3-37.9 8.7 0 4.5 70.3-3.1 88.1 0 9.5 1.5-1.5 20.4-4.4 32-.5 4.5 2.4 2.3 3.8.1zm-112.1 22.6c64-21.3 97.3-23.9 102-26.2 4.4-2.9-4.4-6.6-26.2-5.8-51.7 2.2-137.6 37.1-172.6 53.9l-30.7-93.3h196.6c-2.7-28.2-152.9-22.6-337.9-22.6L27 415.8c196.4-97.3 258.9-130.3 321.2-151.5zM94.7 96c253.3 53.7 330 65.7 332.1 85.2 36.4 0 45.9 0 52.4 6.6 21.1 19.7-14.6 67.7-14.6 67.7-4.4 2.9-406.4 160.2-406.4 160.2h423.1L549 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "ussunnah": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f407", + "label": "us-Sunnah Foundation", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "utensils": { + "aliases": { + "names": [ + "cutlery" + ], + "unicodes": { + "composite": [ + "1f374", + "f0f5" + ], + "secondary": [ + "10f2e7" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cooking", + "cutlery", + "dining", + "dinner", + "eat", + "food", + "fork", + "fork and knife", + "knife", + "restaurant" + ] + }, + "unicode": "f2e7", + "label": "Utensils", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M416 0C400 0 288 32 288 176V288c0 35.3 28.7 64 64 64h32V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352 240 32c0-17.7-14.3-32-32-32zM64 16C64 7.8 57.9 1 49.7 .1S34.2 4.6 32.4 12.5L2.1 148.8C.7 155.1 0 161.5 0 167.9c0 45.9 35.1 83.6 80 87.7V480c0 17.7 14.3 32 32 32s32-14.3 32-32V255.6c44.9-4.1 80-41.8 80-87.7c0-6.4-.7-12.8-2.1-19.1L191.6 12.5c-1.8-8-9.3-13.3-17.4-12.4S160 7.8 160 16V150.2c0 5.4-4.4 9.8-9.8 9.8c-5.1 0-9.3-3.9-9.8-9L127.9 14.6C127.2 6.3 120.3 0 112 0s-15.2 6.3-15.9 14.6L83.7 151c-.5 5.1-4.7 9-9.8 9c-5.4 0-9.8-4.4-9.8-9.8V16zm48.3 152l-.3 0-.3 0 .3-.7 .3 .7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "v": { + "aliases": { + "unicodes": { + "composite": [ + "76" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter V", + "Latin Small Letter V", + "letter" + ] + }, + "unicode": "56", + "label": "V", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M19.7 34.5c16.3-6.8 35 .9 41.8 17.2L192 364.8 322.5 51.7c6.8-16.3 25.5-24 41.8-17.2s24 25.5 17.2 41.8l-160 384c-5 11.9-16.6 19.7-29.5 19.7s-24.6-7.8-29.5-19.7L2.5 76.3c-6.8-16.3 .9-35 17.2-41.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vaadin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f408", + "label": "Vaadin", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "van-shuttle": { + "aliases": { + "names": [ + "shuttle-van" + ], + "unicodes": { + "composite": [ + "1f690" + ], + "secondary": [ + "10f5b6" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airport", + "bus", + "machine", + "minibus", + "public-transportation", + "transportation", + "travel", + "vehicle" + ] + }, + "unicode": "f5b6", + "label": "Van Shuttle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 104v88h96V96H72c-4.4 0-8 3.6-8 8zm482 88L465.1 96H384v96H546zm-226 0V96H224v96h96zM592 384H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V104C0 64.2 32.2 32 72 32H192 352 465.1c18.9 0 36.8 8.3 49 22.8L625 186.5c9.7 11.5 15 26.1 15 41.2V336c0 26.5-21.5 48-48 48zm-64 0a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM160 432a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vault": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "important", + "lock", + "money", + "safe" + ] + }, + "unicode": "e2c5", + "label": "Vault", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V416c0 35.3 28.7 64 64 64H80l16 32h64l16-32H400l16 32h64l16-32h16c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM224 320a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm0-240a160 160 0 1 1 0 320 160 160 0 1 1 0-320zM480 221.3V336c0 8.8-7.2 16-16 16s-16-7.2-16-16V221.3c-18.6-6.6-32-24.4-32-45.3c0-26.5 21.5-48 48-48s48 21.5 48 48c0 20.9-13.4 38.7-32 45.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vector-square": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5cb" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchors", + "lines", + "object", + "render", + "shape" + ] + }, + "unicode": "f5cb", + "label": "Vector Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M368 80h32v32H368V80zM352 32c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v64c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32V160c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H352zM96 160c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32V160zM48 400H80v32H48V400zm320 32V400h32v32H368zM48 112V80H80v32H48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "venus": { + "aliases": { + "unicodes": { + "composite": [ + "2640" + ], + "secondary": [ + "10f221" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "female", + "female sign", + "gender", + "woman" + ] + }, + "unicode": "f221", + "label": "Venus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 176a112 112 0 1 1 224 0A112 112 0 1 1 64 176zM208 349.1c81.9-15 144-86.8 144-173.1C352 78.8 273.2 0 176 0S0 78.8 0 176c0 86.3 62.1 158.1 144 173.1V384H112c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H208V349.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "venus-double": { + "aliases": { + "unicodes": { + "composite": [ + "26a2" + ], + "secondary": [ + "10f226" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Doubled Female Sign", + "female", + "gender", + "lesbian" + ] + }, + "unicode": "f226", + "label": "Venus Double", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M176 288a112 112 0 1 0 0-224 112 112 0 1 0 0 224zM352 176c0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H208v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H112c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V349.1C62.1 334.1 0 262.3 0 176C0 78.8 78.8 0 176 0s176 78.8 176 176zM328 318c14.6-15.6 26.8-33.4 36-53c18.8 14.4 42.4 23 68 23c61.9 0 112-50.1 112-112s-50.1-112-112-112c-25.6 0-49.1 8.6-68 23c-9.3-19.5-21.5-37.4-36-53C357.1 12.6 393.1 0 432 0c97.2 0 176 78.8 176 176c0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H464v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H368c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V349.1c-26.6-4.9-51.1-15.7-72-31.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "venus-mars": { + "aliases": { + "unicodes": { + "composite": [ + "26a4" + ], + "secondary": [ + "10f228" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Interlocked Female and Male Sign", + "female", + "gender", + "heterosexual", + "male" + ] + }, + "unicode": "f228", + "label": "Venus Mars", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M176 288a112 112 0 1 0 0-224 112 112 0 1 0 0 224zM352 176c0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H208v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H112c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V349.1C62.1 334.1 0 262.3 0 176C0 78.8 78.8 0 176 0s176 78.8 176 176zM271.9 360.6c19.3-10.1 36.9-23.1 52.1-38.4c20 18.5 46.7 29.8 76.1 29.8c61.9 0 112-50.1 112-112s-50.1-112-112-112c-7.2 0-14.3 .7-21.1 2c-4.9-21.5-13-41.7-24-60.2C369.3 66 384.4 64 400 64c37 0 71.4 11.4 99.8 31l20.6-20.6L487 41c-6.9-6.9-8.9-17.2-5.2-26.2S494.3 0 504 0H616c13.3 0 24 10.7 24 24V136c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-33.4-33.4L545 140.2c19.5 28.4 31 62.7 31 99.8c0 97.2-78.8 176-176 176c-50.5 0-96-21.3-128.1-55.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vest": { + "aliases": { + "unicodes": { + "secondary": [ + "10e085" + ] + } + }, + "changes": [ + "5.15.0", + "5.15.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "biker", + "fashion", + "style" + ] + }, + "unicode": "e085", + "label": "Vest", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M207.1 237.4L151.2 69.7C168.6 79.7 192.6 88 224 88s55.4-8.3 72.8-18.3L226.5 280.6c-1.6 4.9-2.5 10-2.5 15.2V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V270.5c0-9.5-2.8-18.7-8.1-26.6l-47.9-71.8c-5.3-7.9-8.1-17.1-8.1-26.6V128 54.3 48c0-26.5-21.5-48-48-48h-4.5c-.2 0-.4 0-.6 0c-.4 0-.8 0-1.2 0C311 0 295.7 9.7 285.7 18.8C276.4 27.2 257.2 40 224 40s-52.4-12.8-61.7-21.2C152.3 9.7 137 0 118.3 0c-.4 0-.8 0-1.2 0c-.2 0-.4 0-.6 0H112C85.5 0 64 21.5 64 48v6.3V128v17.5c0 9.5-2.8 18.7-8.1 26.6L8.1 243.9C2.8 251.8 0 261.1 0 270.5V464c0 26.5 21.5 48 48 48H176c9.9 0 19-3 26.7-8.1C195.9 492.2 192 478.5 192 464V295.8c0-8.6 1.4-17.1 4.1-25.3l11-33.1zM347.3 356.7l48 48c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-48-48c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0zm-294.6 48l48-48c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6l-48 48c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vest-patches": { + "aliases": { + "unicodes": { + "secondary": [ + "10e086" + ] + } + }, + "changes": [ + "5.15.0", + "5.15.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "biker", + "fashion", + "style" + ] + }, + "unicode": "e086", + "label": "Vest Patches", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M151.2 69.7l55.9 167.7-11 33.1c-2.7 8.2-4.1 16.7-4.1 25.3V464c0 14.5 3.9 28.2 10.7 39.9C195 509 185.9 512 176 512H48c-26.5 0-48-21.5-48-48V270.5c0-9.5 2.8-18.7 8.1-26.6l47.9-71.8c5.3-7.9 8.1-17.1 8.1-26.6V128 54.3 48C64 21.5 85.5 0 112 0h4.5c.2 0 .4 0 .6 0c.4 0 .8 0 1.2 0c18.8 0 34.1 9.7 44.1 18.8C171.6 27.2 190.8 40 224 40s52.4-12.8 61.7-21.2C295.7 9.7 311 0 329.7 0c.4 0 .8 0 1.2 0c.2 0 .4 0 .6 0H336c26.5 0 48 21.5 48 48v6.3V128v17.5c0 9.5 2.8 18.7 8.1 26.6l47.9 71.8c5.3 7.9 8.1 17.1 8.1 26.6V464c0 26.5-21.5 48-48 48H272c-26.5 0-48-21.5-48-48V295.8c0-5.2 .8-10.3 2.5-15.2L296.8 69.7C279.4 79.7 255.4 88 224 88s-55.4-8.3-72.8-18.3zM96 456a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM63.5 255.5c-4.7 4.7-4.7 12.3 0 17L79 288 63.5 303.5c-4.7 4.7-4.7 12.3 0 17s12.3 4.7 17 0L96 305l15.5 15.5c4.7 4.7 12.3 4.7 17 0s4.7-12.3 0-17L113 288l15.5-15.5c4.7-4.7 4.7-12.3 0-17s-12.3-4.7-17 0L96 271 80.5 255.5c-4.7-4.7-12.3-4.7-17 0zM304 280v8 32c0 8.8 7.2 16 16 16h32 8c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8v-8c0-13.3-10.7-24-24-24s-24 10.7-24 24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "viacoin": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f237", + "label": "Viacoin", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "viadeo": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2a9", + "label": "Viadeo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "vial": { + "aliases": { + "unicodes": { + "composite": [ + "1f9ea" + ], + "secondary": [ + "10f492" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "chemist", + "chemistry", + "experiment", + "lab", + "sample", + "science", + "test", + "test tube" + ] + }, + "unicode": "f492", + "label": "Vial", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M342.6 9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l9.4 9.4L28.1 342.6C10.1 360.6 0 385 0 410.5V416c0 53 43 96 96 96h5.5c25.5 0 49.9-10.1 67.9-28.1L448 205.3l9.4 9.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-32-32-96-96-32-32zM205.3 256L352 109.3 402.7 160l-96 96H205.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vial-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "chemist", + "chemistry", + "not affected", + "ok", + "okay", + "success", + "test tube", + "tube", + "vaccine" + ] + }, + "unicode": "e596", + "label": "Vial Circle Check", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H96h64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32V266.8c-20.2 28.6-32 63.5-32 101.2c0 25.2 5.3 49.1 14.8 70.8C189.5 463.7 160.6 480 128 480c-53 0-96-43-96-96V96C14.3 96 0 81.7 0 64zM96 96v96h64V96H96zM224 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L352 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vial-virus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "coronavirus", + "covid-19", + "flue", + "infection", + "lab", + "laboratory", + "pandemic", + "test", + "test tube", + "vaccine" + ] + }, + "unicode": "e597", + "label": "Vial Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96V384c0 53 43 96 96 96c28.6 0 54.2-12.5 71.8-32.3c.1-14.2 5.6-28.3 16.4-39.1c.2-.2 .1-.6-.2-.6c-30.9 0-56-25.1-56-56s25.1-56 56-56c.3 0 .4-.4 .2-.6c-21.9-21.9-21.9-57.3 0-79.2c2.4-2.4 5-4.6 7.8-6.5V96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160 96 32zM96 192V96h64v96H96zM216 376c28.8 0 43.2 34.8 22.9 55.2c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0c20.4-20.4 55.2-5.9 55.2 22.9c0 13.3 10.7 24 24 24s24-10.7 24-24c0-28.8 34.8-43.2 55.2-22.9c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9C444.8 410.8 459.2 376 488 376c13.3 0 24-10.7 24-24s-10.7-24-24-24c-28.8 0-43.2-34.8-22.9-55.2c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0C410.8 259.2 376 244.8 376 216c0-13.3-10.7-24-24-24s-24 10.7-24 24c0 28.8-34.8 43.2-55.2 22.9c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9c20.4 20.4 5.9 55.2-22.9 55.2c-13.3 0-24 10.7-24 24s10.7 24 24 24zm104-88a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm40 96a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vials": { + "aliases": { + "unicodes": { + "secondary": [ + "10f493" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "experiment", + "lab", + "sample", + "science", + "test", + "test tube" + ] + }, + "unicode": "f493", + "label": "Vials", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H88h48 56c17.7 0 32 14.3 32 32s-14.3 32-32 32V400c0 44.2-35.8 80-80 80s-80-35.8-80-80V96C14.3 96 0 81.7 0 64zM136 96H88V256h48V96zM288 64c0-17.7 14.3-32 32-32h56 48 56c17.7 0 32 14.3 32 32s-14.3 32-32 32V400c0 44.2-35.8 80-80 80s-80-35.8-80-80V96c-17.7 0-32-14.3-32-32zM424 96H376V256h48V96z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "viber": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f409", + "label": "Viber", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "video": { + "aliases": { + "names": [ + "video-camera" + ], + "unicodes": { + "secondary": [ + "10f03d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camera", + "film", + "movie", + "record", + "video-camera" + ] + }, + "unicode": "f03d", + "label": "Video", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H320c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM559.1 99.8c10.4 5.6 16.9 16.4 16.9 28.2V384c0 11.8-6.5 22.6-16.9 28.2s-23 5-32.9-1.6l-96-64L416 337.1V320 192 174.9l14.2-9.5 96-64c9.8-6.5 22.4-7.2 32.9-1.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "video-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4e2" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "film", + "new", + "positive", + "record", + "video" + ] + }, + "unicode": "f4e2", + "label": "Video Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-86.4-67.7 13.8 9.2c9.8 6.5 22.4 7.2 32.9 1.6s16.9-16.4 16.9-28.2V128c0-11.8-6.5-22.6-16.9-28.2s-23-5-32.9 1.6l-96 64L448 174.9V192 320v5.8l-32-25.1V128c0-35.3-28.7-64-64-64H113.9L38.8 5.1zM32 128V384c0 35.3 28.7 64 64 64H352c23.4 0 43.9-12.6 55-31.3L32.3 121.5c-.2 2.1-.3 4.3-.3 6.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vihara": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6a7" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buddhism", + "buddhist", + "building", + "monastery" + ] + }, + "unicode": "f6a7", + "label": "Vihara", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M281 22L305.8 4.7c1.3-.9 2.7-1.8 4.1-2.4C313.1 .7 316.6 0 320 0s6.9 .7 10.1 2.2c1.4 .7 2.8 1.5 4.1 2.4L359 22C393 45.8 430.8 63.5 470.8 74.4l23 6.3c1.8 .5 3.6 1.1 5.2 2c3.2 1.7 5.9 4 8.1 6.8c3.8 4.9 5.6 11.3 4.7 17.8c-.4 2.8-1.2 5.4-2.5 7.8c-1.7 3.2-4 5.9-6.8 8.1c-4.3 3.2-9.6 5.1-15.1 4.9H480v56.1l6.4 5.1 5.2 4.1c21.1 16.7 45 29.6 70.5 38.1l28.9 9.6c1.6 .5 3.2 1.2 4.6 2c3.1 1.7 5.8 4.1 7.8 6.9s3.5 6.1 4.1 9.6c.5 2.7 .6 5.5 .1 8.3s-1.4 5.4-2.7 7.8c-1.7 3.1-4.1 5.8-6.9 7.8s-6.1 3.5-9.6 4.1c-1.6 .3-3.3 .4-5 .4H544v65.9c20.5 22.8 47.4 39.2 77.4 46.7C632 403 640 412.6 640 424c0 13.3-10.7 24-24 24H576v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H352v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H128v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H24c-13.3 0-24-10.7-24-24c0-11.4 8-21 18.6-23.4c30-7.6 56.9-23.9 77.4-46.7V288H56.6c-1.7 0-3.4-.1-5-.4c-3.5-.7-6.8-2.1-9.6-4.1s-5.2-4.7-7-7.8c-1.3-2.4-2.3-5-2.7-7.8s-.4-5.6 .1-8.3c.7-3.5 2.1-6.8 4.1-9.6s4.7-5.2 7.8-6.9c1.4-.8 3-1.5 4.6-2l28.9-9.6c25.5-8.5 49.4-21.4 70.5-38.1l5.2-4.1 6.4-5.1V176 128h-7.5c-5.5 .1-10.8-1.7-15.1-4.9c-2.8-2.1-5.1-4.8-6.8-8.1c-1.2-2.4-2.1-5-2.5-7.8c-.9-6.5 .9-12.8 4.7-17.8c2.1-2.8 4.8-5.1 8.1-6.8c1.6-.8 3.4-1.5 5.2-2l23-6.3C209.2 63.5 247 45.8 281 22zM416 128H320 224v64h72 48 72V128zM160 288v64H296h24 24H480V288H344 320h0H296 160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vimeo": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f40a", + "label": "Vimeo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "vimeo-v": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "vimeo" + ] + }, + "unicode": "f27d", + "label": "Vimeo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "vine": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1ca", + "label": "Vine", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "virus": { + "aliases": { + "unicodes": { + "secondary": [ + "10e074" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "coronavirus", + "covid-19", + "flu", + "health", + "infection", + "pandemic", + "sick", + "vaccine", + "viral" + ] + }, + "unicode": "e074", + "label": "Virus", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43.5c0 49.9-60.3 74.9-95.6 39.6L120.2 75C107.7 62.5 87.5 62.5 75 75s-12.5 32.8 0 45.3l8.2 8.2C118.4 163.7 93.4 224 43.5 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H43.5c49.9 0 74.9 60.3 39.6 95.6L75 391.8c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l8.2-8.2c35.3-35.3 95.6-10.3 95.6 39.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V468.5c0-49.9 60.3-74.9 95.6-39.6l8.2 8.2c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-8.2-8.2c-35.3-35.3-10.3-95.6 39.6-95.6H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H468.5c-49.9 0-74.9-60.3-39.6-95.6l8.2-8.2c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-8.2 8.2C348.3 118.4 288 93.4 288 43.5V32zM176 224a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm128 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "virus-covid": { + "changes": [ + "6.0.0", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "covid-19", + "flu", + "health", + "infection", + "pandemic", + "vaccine", + "viral", + "virus" + ] + }, + "unicode": "e4a8", + "label": "Virus Covid", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 24c0-13.3 10.7-24 24-24h80c13.3 0 24 10.7 24 24s-10.7 24-24 24H280V81.6c30.7 4.2 58.8 16.3 82.3 34.1L386.1 92 374.8 80.6c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l56.6 56.6c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L420 125.9l-23.8 23.8c17.9 23.5 29.9 51.7 34.1 82.3H464V216c0-13.3 10.7-24 24-24s24 10.7 24 24v80c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H430.4c-4.2 30.7-16.3 58.8-34.1 82.3L420 386.1l11.3-11.3c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-56.6 56.6c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L386.1 420l-23.8-23.8c-23.5 17.9-51.7 29.9-82.3 34.1V464h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h16V430.4c-30.7-4.2-58.8-16.3-82.3-34.1L125.9 420l11.3 11.3c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L46.7 408.7c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L92 386.1l23.8-23.8C97.9 338.8 85.8 310.7 81.6 280H48v16c0 13.3-10.7 24-24 24s-24-10.7-24-24V216c0-13.3 10.7-24 24-24s24 10.7 24 24v16H81.6c4.2-30.7 16.3-58.8 34.1-82.3L92 125.9 80.6 137.2c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l56.6-56.6c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L125.9 92l23.8 23.8c23.5-17.9 51.7-29.9 82.3-34.1V48H216c-13.3 0-24-10.7-24-24zm48 200a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm64 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "virus-covid-slash": { + "changes": [ + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "covid-19", + "flu", + "health", + "infection", + "pandemic", + "vaccine", + "viral", + "virus" + ] + }, + "unicode": "e4a9", + "label": "Virus Covid Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c11.4-19.5 19.1-41.4 22.3-64.7H528v16c0 13.3 10.7 24 24 24s24-10.7 24-24V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v16H494.4c-4.2-30.7-16.3-58.8-34.1-82.3L484 125.9l11.3 11.3c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L472.7 46.7c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L450.1 92l-23.8 23.8C402.8 97.9 374.7 85.8 344 81.6V48h16c13.3 0 24-10.7 24-24s-10.7-24-24-24H280c-13.3 0-24 10.7-24 24s10.7 24 24 24h16V81.6c-30.7 4.2-58.8 16.3-82.3 34.1L189.9 92l11.3-11.3c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L134.1 79.8 38.8 5.1zM149.2 213.5c-1.5 6-2.7 12.2-3.5 18.5H112V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v80c0 13.3 10.7 24 24 24s24-10.7 24-24V280h33.6c4.2 30.7 16.3 58.8 34.1 82.3L156 386.1l-11.3-11.3c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l56.6 56.6c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L189.9 420l23.8-23.8c23.5 17.9 51.7 29.9 82.3 34.1V464H280c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V430.4c20.4-2.8 39.7-9.1 57.3-18.2L149.2 213.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "virus-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e075" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "coronavirus", + "covid-19", + "cure", + "eliminate", + "flu", + "health", + "infection", + "pandemic", + "sick", + "vaccine", + "viral" + ] + }, + "unicode": "e075", + "label": "Virus Slash", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-154.3-121c-2-30.1 20.8-60.1 56-60.1H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H532.5c-49.9 0-74.9-60.3-39.6-95.6l8.2-8.2c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-8.2 8.2C412.3 118.4 352 93.4 352 43.5V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43.5c0 49.9-60.3 74.9-95.6 39.6L184.2 75c-12.5-12.5-32.8-12.5-45.3 0c-1.6 1.6-3.1 3.4-4.3 5.3L38.8 5.1zm225.8 177c6.9-3.9 14.9-6.1 23.4-6.1c26.5 0 48 21.5 48 48c0 4.4-.6 8.7-1.7 12.7l-69.7-54.6zM107.5 224H96c-17.7 0-32 14.3-32 32s14.3 32 32 32h11.5c49.9 0 74.9 60.3 39.6 95.6l-8.2 8.2c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l8.2-8.2c35.3-35.3 95.6-10.3 95.6 39.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V468.5c0-31.2 23.6-52.7 50-55.7L144.7 210c-9.5 8.5-22.2 14-37.2 14z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "viruses": { + "aliases": { + "unicodes": { + "secondary": [ + "10e076" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bugs", + "coronavirus", + "covid-19", + "flu", + "health", + "infection", + "multiply", + "pandemic", + "sick", + "spread", + "vaccine", + "viral" + ] + }, + "unicode": "e076", + "label": "Viruses", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 0c13.3 0 24 10.7 24 24V37.5c0 35.6 43.1 53.5 68.3 28.3l9.5-9.5c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-9.5 9.5C293 124.9 310.9 168 346.5 168H360c13.3 0 24 10.7 24 24s-10.7 24-24 24H346.5c-35.6 0-53.5 43.1-28.3 68.3l9.5 9.5c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-9.5-9.5C259.1 293 216 310.9 216 346.5V360c0 13.3-10.7 24-24 24s-24-10.7-24-24V346.5c0-35.6-43.1-53.5-68.3-28.3l-9.5 9.5c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l9.5-9.5C91 259.1 73.1 216 37.5 216H24c-13.3 0-24-10.7-24-24s10.7-24 24-24H37.5c35.6 0 53.5-43.1 28.3-68.3l-9.5-9.5c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l9.5 9.5C124.9 91 168 73.1 168 37.5V24c0-13.3 10.7-24 24-24zm48 224a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm-48-64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm320 80c0 33 39.9 49.5 63.2 26.2c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C574.5 312.1 591 352 624 352c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0C551.9 446.5 512 463 512 496c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C417.5 423.9 401 384 368 384c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C440.1 289.5 480 273 480 240c0-8.8 7.2-16 16-16s16 7.2 16 16zm0 112a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vk": { + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f189", + "label": "VK", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M31.4907 63.4907C0 94.9813 0 145.671 0 247.04V264.96C0 366.329 0 417.019 31.4907 448.509C62.9813 480 113.671 480 215.04 480H232.96C334.329 480 385.019 480 416.509 448.509C448 417.019 448 366.329 448 264.96V247.04C448 145.671 448 94.9813 416.509 63.4907C385.019 32 334.329 32 232.96 32H215.04C113.671 32 62.9813 32 31.4907 63.4907ZM75.6 168.267H126.747C128.427 253.76 166.133 289.973 196 297.44V168.267H244.16V242C273.653 238.827 304.64 205.227 315.093 168.267H363.253C359.313 187.435 351.46 205.583 340.186 221.579C328.913 237.574 314.461 251.071 297.733 261.227C316.41 270.499 332.907 283.63 346.132 299.751C359.357 315.873 369.01 334.618 374.453 354.747H321.44C316.555 337.262 306.614 321.61 292.865 309.754C279.117 297.899 262.173 290.368 244.16 288.107V354.747H238.373C136.267 354.747 78.0267 284.747 75.6 168.267Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "vnv": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f40b", + "label": "VNV", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "voicemail": { + "aliases": { + "unicodes": { + "secondary": [ + "10f897" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "answer", + "inbox", + "message", + "phone" + ] + }, + "unicode": "f897", + "label": "Voicemail", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 320a80 80 0 1 1 0-160 80 80 0 1 1 0 160zm119.8 0c15.3-22.9 24.2-50.4 24.2-80c0-79.5-64.5-144-144-144S0 160.5 0 240s64.5 144 144 144H496c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144c0 29.6 8.9 57.1 24.2 80H263.8zM496 160a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volcano": { + "aliases": { + "unicodes": { + "composite": [ + "1f30b" + ], + "secondary": [ + "10f770" + ] + } + }, + "changes": [ + "5.5.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caldera", + "eruption", + "lava", + "magma", + "mountain", + "smoke", + "volcano" + ] + }, + "unicode": "f770", + "label": "Volcano", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 144c-35.3 0-64-28.7-64-64s28.7-64 64-64c15.7 0 30 5.6 41.2 15C212.4 12.4 232.7 0 256 0s43.6 12.4 54.8 31C322 21.6 336.3 16 352 16c35.3 0 64 28.7 64 64s-28.7 64-64 64c-14.7 0-28.3-5-39.1-13.3l-32 48C275.3 187 266 192 256 192s-19.3-5-24.9-13.3l-32-48C188.3 139 174.7 144 160 144zM144 352l48.4-24.2c10.2-5.1 21.6-7.8 33-7.8c19.6 0 38.4 7.8 52.2 21.6l32.5 32.5c6.3 6.3 14.9 9.9 23.8 9.9c11.3 0 21.8-5.6 28-15l9.7-14.6-59-66.3c-9.1-10.2-22.2-16.1-35.9-16.1H235.1c-13.7 0-26.8 5.9-35.9 16.1l-59.9 67.4L144 352zm19.4-95.8c18.2-20.5 44.3-32.2 71.8-32.2h41.8c27.4 0 53.5 11.7 71.8 32.2l150.2 169c8.5 9.5 13.2 21.9 13.2 34.7c0 28.8-23.4 52.2-52.2 52.2H52.2C23.4 512 0 488.6 0 459.8c0-12.8 4.7-25.1 13.2-34.7l150.2-169z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volleyball": { + "aliases": { + "names": [ + "volleyball-ball" + ], + "unicodes": { + "composite": [ + "1f3d0" + ], + "secondary": [ + "10f45f" + ] + } + }, + "changes": [ + "5.0.5", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "beach", + "game", + "olympics", + "sport", + "volleyball" + ] + }, + "unicode": "f45f", + "label": "Volleyball", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321886, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M511.8 267.4c-26.1 8.7-53.4 13.8-81 15.1c9.2-105.3-31.5-204.2-103.2-272.4C434.1 41.1 512 139.5 512 256c0 3.8-.1 7.6-.2 11.4zm-3.9 34.7c-5.8 32-17.6 62-34.2 88.7c-97.5 48.5-217.7 42.6-311.9-24.5c23.7-36.2 55.4-67.7 94.5-91.8c79.9 43.2 170.1 50.8 251.6 27.6zm-236-55.5c-2.5-90.9-41.1-172.7-101.9-231.7C196.8 5.2 225.8 0 256 0c2.7 0 5.3 0 7.9 .1c90.8 60.2 145.7 167.2 134.7 282.3c-43.1-2.4-86.4-14.1-126.8-35.9zM138 28.8c20.6 18.3 38.7 39.4 53.7 62.6C95.9 136.1 30.6 220.8 7.3 316.9C2.5 297.4 0 277 0 256C0 157.2 56 71.5 138 28.8zm69.6 90.5c19.5 38.6 31 81.9 32.3 127.7C162.5 294.6 110.9 368.9 90.2 451C66 430.4 45.6 405.4 30.4 377.2c6.7-108.7 71.9-209.9 177.1-257.9zM256 512c-50.7 0-98-14.7-137.8-40.2c5.6-27 14.8-53.1 27.4-77.7C232.2 454.6 338.1 468.8 433 441c-46 44-108.3 71-177 71z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volume-high": { + "aliases": { + "names": [ + "volume-up" + ], + "unicodes": { + "composite": [ + "1f50a" + ], + "secondary": [ + "10f028" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "higher", + "loud", + "louder", + "music", + "sound", + "speaker", + "speaker high volume" + ] + }, + "unicode": "f028", + "label": "Volume High", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M533.6 32.5C598.5 85.3 640 165.8 640 256s-41.5 170.8-106.4 223.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C557.5 398.2 592 331.2 592 256s-34.5-142.2-88.7-186.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zM473.1 107c43.2 35.2 70.9 88.9 70.9 149s-27.7 113.8-70.9 149c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C475.3 341.3 496 301.1 496 256s-20.7-85.3-53.2-111.8c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zm-60.5 74.5C434.1 199.1 448 225.9 448 256s-13.9 56.9-35.4 74.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C393.1 284.4 400 271 400 256s-6.9-28.4-17.7-37.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zM301.1 34.8C312.6 40 320 51.4 320 64V448c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volume-low": { + "aliases": { + "names": [ + "volume-down" + ], + "unicodes": { + "composite": [ + "1f508" + ], + "secondary": [ + "10f027" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "lower", + "music", + "quieter", + "soft", + "sound", + "speaker", + "speaker low volume" + ] + }, + "unicode": "f027", + "label": "Volume Low", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M301.1 34.8C312.6 40 320 51.4 320 64V448c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3zM412.6 181.5C434.1 199.1 448 225.9 448 256s-13.9 56.9-35.4 74.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C393.1 284.4 400 271 400 256s-6.9-28.4-17.7-37.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volume-off": { + "aliases": { + "unicodes": { + "secondary": [ + "10f026" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "ban", + "music", + "mute", + "quiet", + "silent", + "sound" + ] + }, + "unicode": "f026", + "label": "Volume Off", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M320 64c0-12.6-7.4-24-18.9-29.2s-25-3.1-34.4 5.3L131.8 160H64c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64h67.8L266.7 471.9c9.4 8.4 22.9 10.4 34.4 5.3S320 460.6 320 448V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "volume-xmark": { + "aliases": { + "names": [ + "volume-mute", + "volume-times" + ], + "unicodes": { + "secondary": [ + "10f6a9" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "music", + "quiet", + "sound", + "speaker" + ] + }, + "unicode": "f6a9", + "label": "Volume Xmark", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M301.1 34.8C312.6 40 320 51.4 320 64V448c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3zM425 167l55 55 55-55c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-55 55 55 55c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-55-55-55 55c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l55-55-55-55c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vr-cardboard": { + "aliases": { + "unicodes": { + "secondary": [ + "10f729" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "3d", + "augment", + "google", + "reality", + "virtual" + ] + }, + "unicode": "f729", + "label": "Vr Cardboard", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M576 64H64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H184.4c24.2 0 46.4-13.7 57.2-35.4l32-64c8.8-17.5 26.7-28.6 46.3-28.6s37.5 11.1 46.3 28.6l32 64c10.8 21.7 33 35.4 57.2 35.4H576c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zM96 240a64 64 0 1 1 128 0A64 64 0 1 1 96 240zm384-64a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "vuejs": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f41f", + "label": "Vue.js", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "w": { + "aliases": { + "unicodes": { + "composite": [ + "77" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter W", + "Latin Small Letter W", + "letter" + ] + }, + "unicode": "57", + "label": "W", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M20.8 34c16.5-6.2 35 2.2 41.2 18.7l110.2 294L257.3 55c4-13.7 16.5-23 30.7-23s26.7 9.4 30.7 23l85.1 291.7L514 52.8c6.2-16.5 24.6-24.9 41.2-18.7s24.9 24.7 18.7 41.2l-144 384c-4.8 12.9-17.4 21.3-31.2 20.7s-25.7-9.8-29.5-23L288 178.3 206.7 457c-3.9 13.2-15.8 22.5-29.5 23s-26.3-7.8-31.2-20.7L2 75.2C-4.2 58.7 4.2 40.2 20.8 34z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "walkie-talkie": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8ef" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "communication", + "copy", + "intercom", + "over", + "portable", + "radio", + "two way radio" + ] + }, + "unicode": "f8ef", + "label": "Walkie Talkie", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M112 24c0-13.3-10.7-24-24-24S64 10.7 64 24V96H48C21.5 96 0 117.5 0 144V300.1c0 12.7 5.1 24.9 14.1 33.9l3.9 3.9c9 9 14.1 21.2 14.1 33.9V464c0 26.5 21.5 48 48 48H304c26.5 0 48-21.5 48-48V371.9c0-12.7 5.1-24.9 14.1-33.9l3.9-3.9c9-9 14.1-21.2 14.1-33.9V144c0-26.5-21.5-48-48-48H320c0-17.7-14.3-32-32-32s-32 14.3-32 32H224c0-17.7-14.3-32-32-32s-32 14.3-32 32H112V24zm0 136H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wallet": { + "aliases": { + "unicodes": { + "secondary": [ + "10f555" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "billfold", + "cash", + "currency", + "money" + ] + }, + "unicode": "f555", + "label": "Wallet", + "voted": true, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H80c-8.8 0-16-7.2-16-16s7.2-16 16-16H448c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM416 272a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wand-magic": { + "aliases": { + "names": [ + "magic" + ], + "unicodes": { + "secondary": [ + "10f0d0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "autocomplete", + "automatic", + "mage", + "magic", + "spell", + "wand", + "witch", + "wizard" + ] + }, + "unicode": "f0d0", + "label": "Wand Magic", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M14.1 463.3c-18.7-18.7-18.7-49.1 0-67.9L395.4 14.1c18.7-18.7 49.1-18.7 67.9 0l34.6 34.6c18.7 18.7 18.7 49.1 0 67.9L116.5 497.9c-18.7 18.7-49.1 18.7-67.9 0L14.1 463.3zM347.6 187.6l105-105L429.4 59.3l-105 105 23.3 23.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wand-magic-sparkles": { + "aliases": { + "names": [ + "magic-wand-sparkles" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "magic", + "magic wand", + "trick", + "witch", + "wizard" + ] + }, + "unicode": "e2ca", + "label": "Wand Magic Sparkles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M234.7 42.7L197 56.8c-3 1.1-5 4-5 7.2s2 6.1 5 7.2l37.7 14.1L248.8 123c1.1 3 4 5 7.2 5s6.1-2 7.2-5l14.1-37.7L315 71.2c3-1.1 5-4 5-7.2s-2-6.1-5-7.2L277.3 42.7 263.2 5c-1.1-3-4-5-7.2-5s-6.1 2-7.2 5L234.7 42.7zM46.1 395.4c-18.7 18.7-18.7 49.1 0 67.9l34.6 34.6c18.7 18.7 49.1 18.7 67.9 0L529.9 116.5c18.7-18.7 18.7-49.1 0-67.9L495.3 14.1c-18.7-18.7-49.1-18.7-67.9 0L46.1 395.4zM484.6 82.6l-105 105-23.3-23.3 105-105 23.3 23.3zM7.5 117.2C3 118.9 0 123.2 0 128s3 9.1 7.5 10.8L64 160l21.2 56.5c1.7 4.5 6 7.5 10.8 7.5s9.1-3 10.8-7.5L128 160l56.5-21.2c4.5-1.7 7.5-6 7.5-10.8s-3-9.1-7.5-10.8L128 96 106.8 39.5C105.1 35 100.8 32 96 32s-9.1 3-10.8 7.5L64 96 7.5 117.2zm352 256c-4.5 1.7-7.5 6-7.5 10.8s3 9.1 7.5 10.8L416 416l21.2 56.5c1.7 4.5 6 7.5 10.8 7.5s9.1-3 10.8-7.5L480 416l56.5-21.2c4.5-1.7 7.5-6 7.5-10.8s-3-9.1-7.5-10.8L480 352l-21.2-56.5c-1.7-4.5-6-7.5-10.8-7.5s-9.1 3-10.8 7.5L416 352l-56.5 21.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wand-sparkles": { + "aliases": { + "unicodes": { + "secondary": [ + "10f72b" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "autocomplete", + "automatic", + "fantasy", + "halloween", + "holiday", + "magic", + "weapon", + "witch", + "wizard" + ] + }, + "unicode": "f72b", + "label": "Wand Sparkles", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 6.1c9.5-8.5 24-8.1 33 .9l8 8c9 9 9.4 23.5 .9 33l-85.8 95.9c-2.6 2.9-4.1 6.7-4.1 10.7V176c0 8.8-7.2 16-16 16H384.2c-4.6 0-8.9 1.9-11.9 5.3L100.7 500.9C94.3 508 85.3 512 75.8 512c-8.8 0-17.3-3.5-23.5-9.8L9.7 459.7C3.5 453.4 0 445 0 436.2c0-9.5 4-18.5 11.1-24.8l111.6-99.8c3.4-3 5.3-7.4 5.3-11.9V272c0-8.8 7.2-16 16-16h34.6c3.9 0 7.7-1.5 10.7-4.1L464 6.1zM432 288c3.6 0 6.7 2.4 7.7 5.8l14.8 51.7 51.7 14.8c3.4 1 5.8 4.1 5.8 7.7s-2.4 6.7-5.8 7.7l-51.7 14.8-14.8 51.7c-1 3.4-4.1 5.8-7.7 5.8s-6.7-2.4-7.7-5.8l-14.8-51.7-51.7-14.8c-3.4-1-5.8-4.1-5.8-7.7s2.4-6.7 5.8-7.7l51.7-14.8 14.8-51.7c1-3.4 4.1-5.8 7.7-5.8zM87.7 69.8l14.8 51.7 51.7 14.8c3.4 1 5.8 4.1 5.8 7.7s-2.4 6.7-5.8 7.7l-51.7 14.8L87.7 218.2c-1 3.4-4.1 5.8-7.7 5.8s-6.7-2.4-7.7-5.8L57.5 166.5 5.8 151.7c-3.4-1-5.8-4.1-5.8-7.7s2.4-6.7 5.8-7.7l51.7-14.8L72.3 69.8c1-3.4 4.1-5.8 7.7-5.8s6.7 2.4 7.7 5.8zM208 0c3.7 0 6.9 2.5 7.8 6.1l6.8 27.3 27.3 6.8c3.6 .9 6.1 4.1 6.1 7.8s-2.5 6.9-6.1 7.8l-27.3 6.8-6.8 27.3c-.9 3.6-4.1 6.1-7.8 6.1s-6.9-2.5-7.8-6.1l-6.8-27.3-27.3-6.8c-3.6-.9-6.1-4.1-6.1-7.8s2.5-6.9 6.1-7.8l27.3-6.8 6.8-27.3c.9-3.6 4.1-6.1 7.8-6.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "warehouse": { + "aliases": { + "unicodes": { + "secondary": [ + "10f494" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "capacity", + "garage", + "inventory", + "storage" + ] + }, + "unicode": "f494", + "label": "Warehouse", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 488V171.3c0-26.2 15.9-49.7 40.2-59.4L308.1 4.8c7.6-3.1 16.1-3.1 23.8 0L599.8 111.9c24.3 9.7 40.2 33.3 40.2 59.4V488c0 13.3-10.7 24-24 24H568c-13.3 0-24-10.7-24-24V224c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32V488c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24zm488 24l-336 0c-13.3 0-24-10.7-24-24V432H512l0 56c0 13.3-10.7 24-24 24zM128 400V336H512v64H128zm0-96V224H512l0 80H128z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "watchman-monitoring": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e087", + "label": "Watchman Monitoring", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256,16C123.452,16,16,123.452,16,256S123.452,496,256,496,496,388.548,496,256,388.548,16,256,16ZM121.69,429.122C70.056,388.972,36.741,326.322,36.741,256a218.519,218.519,0,0,1,9.587-64.122l102.9-17.895-.121,10.967-13.943,2.013s-.144,12.5-.144,19.549a12.778,12.778,0,0,0,4.887,10.349l9.468,7.4Zm105.692-283.27,8.48-7.618s6.934-5.38-.143-9.344c-7.188-4.024-39.53-34.5-39.53-34.5-5.348-5.477-8.257-7.347-15.46,0,0,0-32.342,30.474-39.529,34.5-7.078,3.964-.144,9.344-.144,9.344l8.481,7.618-.048,4.369L75.982,131.045c39.644-56.938,105.532-94.3,180.018-94.3A218.754,218.754,0,0,1,420.934,111.77l-193.512,37.7Zm34.063,329.269-33.9-250.857,9.467-7.4a12.778,12.778,0,0,0,4.888-10.349c0-7.044-.144-19.549-.144-19.549l-13.943-2.013-.116-10.474,241.711,31.391A218.872,218.872,0,0,1,475.259,256C475.259,375.074,379.831,472.212,261.445,475.121Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "water": { + "aliases": { + "unicodes": { + "secondary": [ + "10f773" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "lake", + "liquid", + "ocean", + "sea", + "swim", + "wet" + ] + }, + "unicode": "f773", + "label": "Water", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M269.5 69.9c11.1-7.9 25.9-7.9 37 0C329 85.4 356.5 96 384 96c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 149.7 417 160 384 160c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4C42.8 92.6 61 83.5 75.3 71.6c11.1-9.5 27.3-10.1 39.2-1.7l0 0C136.7 85.2 165.1 96 192 96c27.5 0 55-10.6 77.5-26.1zm37 288C329 373.4 356.5 384 384 384c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 437.7 417 448 384 448c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 373.2 165.1 384 192 384c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0zm0-144C329 229.4 356.5 240 384 240c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 293.7 417 304 384 304c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.5 27.3-10.1 39.2-1.7l0 0C136.7 229.2 165.1 240 192 240c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "water-ladder": { + "aliases": { + "names": [ + "ladder-water", + "swimming-pool" + ], + "unicodes": { + "secondary": [ + "10f5c5" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ladder", + "recreation", + "swim", + "water" + ] + }, + "unicode": "f5c5", + "label": "Water Ladder", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1660321887, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M128 127.7C128 74.9 170.9 32 223.7 32c48.3 0 89 36 95 83.9l1 8.2c2.2 17.5-10.2 33.5-27.8 35.7s-33.5-10.2-35.7-27.8l-1-8.2c-2-15.9-15.5-27.8-31.5-27.8c-17.5 0-31.7 14.2-31.7 31.7V224H384V127.7C384 74.9 426.9 32 479.7 32c48.3 0 89 36 95 83.9l1 8.2c2.2 17.5-10.2 33.5-27.8 35.7s-33.5-10.2-35.7-27.8l-1-8.2c-2-15.9-15.5-27.8-31.5-27.8c-17.5 0-31.7 14.2-31.7 31.7V361c-1.6 1-3.3 2-4.8 3.1c-18 12.4-40.1 20.3-59.2 20.3h0V288H192v96.5c-19 0-41.2-7.9-59.1-20.3c-1.6-1.1-3.2-2.2-4.9-3.1V127.7zM306.5 389.9C329 405.4 356.5 416 384 416c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 469.7 417 480 384 480c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 405.2 165.1 416 192 416c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wave-square": { + "aliases": { + "unicodes": { + "secondary": [ + "10f83e" + ] + } + }, + "changes": [ + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "frequency", + "pulse", + "signal" + ] + }, + "unicode": "f83e", + "label": "Wave Square", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 64c0-17.7 14.3-32 32-32H320c17.7 0 32 14.3 32 32V416h96V256c0-17.7 14.3-32 32-32H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H512V448c0 17.7-14.3 32-32 32H320c-17.7 0-32-14.3-32-32V96H192V256c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h96V64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "waze": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f83f", + "label": "Waze", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.17 201.67C516.69 287.53 471.23 369.59 389 409.8c13 34.1-12.4 70.2-48.32 70.2a51.68 51.68 0 0 1-51.57-49c-6.44.19-64.2 0-76.33-.64A51.69 51.69 0 0 1 159 479.92c-33.86-1.36-57.95-34.84-47-67.92-37.21-13.11-72.54-34.87-99.62-70.8-13-17.28-.48-41.8 20.84-41.8 46.31 0 32.22-54.17 43.15-110.26C94.8 95.2 193.12 32 288.09 32c102.48 0 197.15 70.67 214.08 169.67zM373.51 388.28c42-19.18 81.33-56.71 96.29-102.14 40.48-123.09-64.15-228-181.71-228-83.45 0-170.32 55.42-186.07 136-9.53 48.91 5 131.35-68.75 131.35C58.21 358.6 91.6 378.11 127 389.54c24.66-21.8 63.87-15.47 79.83 14.34 14.22 1 79.19 1.18 87.9.82a51.69 51.69 0 0 1 78.78-16.42zM205.12 187.13c0-34.74 50.84-34.75 50.84 0s-50.84 34.74-50.84 0zm116.57 0c0-34.74 50.86-34.75 50.86 0s-50.86 34.75-50.86 0zm-122.61 70.69c-3.44-16.94 22.18-22.18 25.62-5.21l.06.28c4.14 21.42 29.85 44 64.12 43.07 35.68-.94 59.25-22.21 64.11-42.77 4.46-16.05 28.6-10.36 25.47 6-5.23 22.18-31.21 62-91.46 62.9-42.55 0-80.88-27.84-87.9-64.25z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "weebly": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5cc", + "label": "Weebly", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M425.09 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143.03c0 28.96 4.18 33.27 77.17 233.48 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.65 77.5-205.58 77.5-227.2.63-48.32-36.01-83.47-86.92-83.47zm26.34 114.81l-65.57 176.44c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.42h-.95L216.08 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.55c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.82h.95l44.66-136.79c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.79h.95l44.03-139.82c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "weibo": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f18a", + "label": "Weibo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "weight-hanging": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5cd" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anvil", + "heavy", + "measurement" + ] + }, + "unicode": "f5cd", + "label": "Weight Hanging", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 96a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm122.5 32c3.5-10 5.5-20.8 5.5-32c0-53-43-96-96-96s-96 43-96 96c0 11.2 1.9 22 5.5 32H120c-22 0-41.2 15-46.6 36.4l-72 288c-3.6 14.3-.4 29.5 8.7 41.2S33.2 512 48 512H464c14.8 0 28.7-6.8 37.8-18.5s12.3-26.8 8.7-41.2l-72-288C433.2 143 414 128 392 128H346.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "weight-scale": { + "aliases": { + "names": [ + "weight" + ], + "unicodes": { + "secondary": [ + "10f496" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "health", + "measurement", + "scale", + "weight" + ] + }, + "unicode": "f496", + "label": "Weight Scale", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 176a128 128 0 1 1 256 0 128 128 0 1 1 -256 0zM391.8 64C359.5 24.9 310.7 0 256 0S152.5 24.9 120.2 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H391.8zM296 224c0-10.6-4.1-20.2-10.9-27.4l33.6-78.3c3.5-8.1-.3-17.5-8.4-21s-17.5 .3-21 8.4L255.7 184c-22 .1-39.7 18-39.7 40c0 22.1 17.9 40 40 40s40-17.9 40-40z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "weixin": { + "changes": [ + "4.1.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1d7", + "label": "Weixin (WeChat)", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "whatsapp": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f232", + "label": "What's App", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wheat-awn": { + "aliases": { + "names": [ + "wheat-alt" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agriculture", + "autumn", + "fall", + "farming", + "grain" + ] + }, + "unicode": "e2cd", + "label": "Wheat Awn", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M505 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L383 95c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l88-88zM305.5 27.3c-6.2-6.2-16.4-6.2-22.6 0L271.5 38.6c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8l-11.3-11.3c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8L101.8 231c-6.2-6.2-16.4-6.2-22.6 0L67.9 242.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4L9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l68.9-68.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0L486.5 231c6.2-6.2 6.2-16.4 0-22.6L475.2 197c-5.2-5.2-10.6-9.8-16.4-13.9L505 137c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-59.4 59.4c-20.6-4.4-42-3.7-62.3 2.1c6.1-21.3 6.6-43.8 1.4-65.3L409 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L329.1 52.9c-3.7-5-7.8-9.8-12.4-14.3L305.5 27.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wheat-awn-circle-exclamation": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "famine", + "food", + "gluten", + "hunger", + "starve", + "straw" + ] + }, + "unicode": "e598", + "label": "Wheat Awn Circle Exclamation", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M505 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L383 95c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l88-88zM305.5 27.3c-6.2-6.2-16.4-6.2-22.6 0L271.5 38.6c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8l-11.3-11.3c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8L101.8 231c-6.2-6.2-16.4-6.2-22.6 0L67.9 242.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4L9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l68.9-68.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c22.5 22.5 53.3 31.5 82.4 27c0-1 0-2.1 0-3.1c0-33.1 9.1-64.1 25-90.6c-15.5-8.7-32.5-13.8-49.8-15.5l31.9-31.9 12.2 12.2c6 6 12.6 11.1 19.7 15.2c27.5-34 67.3-57.5 112.6-63.8c-4.1-3.8-8.4-7.3-12.9-10.5L505 137c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-59.4 59.4c-20.6-4.4-42-3.7-62.3 2.1c6.1-21.3 6.6-43.8 1.4-65.3L409 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L329.1 52.9c-3.7-5-7.8-9.8-12.4-14.3L305.5 27.3zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wheelchair": { + "aliases": { + "unicodes": { + "secondary": [ + "10f193" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "unicode": "f193", + "label": "Wheelchair", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM120.5 247.2c12.4-4.7 18.7-18.5 14-30.9s-18.5-18.7-30.9-14C43.1 225.1 0 283.5 0 352c0 88.4 71.6 160 160 160c61.2 0 114.3-34.3 141.2-84.7c6.2-11.7 1.8-26.2-9.9-32.5s-26.2-1.8-32.5 9.9C240 440 202.8 464 160 464C98.1 464 48 413.9 48 352c0-47.9 30.1-88.8 72.5-104.8zM259.8 176l-1.9-9.7c-4.5-22.3-24-38.3-46.8-38.3c-30.1 0-52.7 27.5-46.8 57l23.1 115.5c6 29.9 32.2 51.4 62.8 51.4h5.1c.4 0 .8 0 1.3 0h94.1c6.7 0 12.6 4.1 15 10.4L402 459.2c6 16.1 23.8 24.6 40.1 19.1l48-16c16.8-5.6 25.8-23.7 20.2-40.5s-23.7-25.8-40.5-20.2l-18.7 6.2-25.5-68c-11.7-31.2-41.6-51.9-74.9-51.9H282.2l-9.6-48H336c17.7 0 32-14.3 32-32s-14.3-32-32-32H259.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wheelchair-move": { + "aliases": { + "names": [ + "wheelchair-alt" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "access", + "handicap", + "impairment", + "physical", + "wheelchair symbol" + ] + }, + "unicode": "e2ce", + "label": "Wheelchair Move", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M320 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM204.5 121.3c-5.4-2.5-11.7-1.9-16.4 1.7l-40.9 30.7c-14.1 10.6-34.2 7.7-44.8-6.4s-7.7-34.2 6.4-44.8l40.9-30.7c23.7-17.8 55.3-21 82.1-8.4l90.4 42.5c29.1 13.7 36.8 51.6 15.2 75.5L299.1 224h97.4c30.3 0 53 27.7 47.1 57.4L415.4 422.3c-3.5 17.3-20.3 28.6-37.7 25.1s-28.6-20.3-25.1-37.7L377 288H306.7c8.6 19.6 13.3 41.2 13.3 64c0 88.4-71.6 160-160 160S0 440.4 0 352s71.6-160 160-160c11.1 0 22 1.1 32.4 3.3l54.2-54.2-42.1-19.8zM160 448a96 96 0 1 0 0-192 96 96 0 1 0 0 192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "whiskey-glass": { + "aliases": { + "names": [ + "glass-whiskey" + ], + "unicodes": { + "composite": [ + "1f943" + ], + "secondary": [ + "10f7a0" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "bourbon", + "drink", + "glass", + "liquor", + "neat", + "rye", + "scotch", + "shot", + "tumbler", + "tumbler glass", + "whisky" + ] + }, + "unicode": "f7a0", + "label": "Whiskey Glass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32c-9.3 0-18.1 4-24.2 11.1S-1 59.4 .3 68.6l50 342.9c5.7 39.3 39.4 68.5 79.2 68.5h253c39.7 0 73.4-29.1 79.2-68.5l50-342.9c1.3-9.2-1.4-18.5-7.5-25.5S489.3 32 480 32H32zM87.7 224L69 96H443L424.3 224H87.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "whmcs": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f40d", + "label": "WHMCS", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wifi": { + "aliases": { + "names": [ + "wifi-3", + "wifi-strong" + ], + "unicodes": { + "secondary": [ + "10f1eb" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.3.0", + "5.10.1", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connection", + "hotspot", + "internet", + "network", + "wireless" + ] + }, + "unicode": "f1eb", + "label": "Wifi", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M54.2 202.9C123.2 136.7 216.8 96 320 96s196.8 40.7 265.8 106.9c12.8 12.2 33 11.8 45.2-.9s11.8-33-.9-45.2C549.7 79.5 440.4 32 320 32S90.3 79.5 9.8 156.7C-2.9 169-3.3 189.2 8.9 202s32.5 13.2 45.2 .9zM320 256c56.8 0 108.6 21.1 148.2 56c13.3 11.7 33.5 10.4 45.2-2.8s10.4-33.5-2.8-45.2C459.8 219.2 393 192 320 192s-139.8 27.2-190.5 72c-13.3 11.7-14.5 31.9-2.8 45.2s31.9 14.5 45.2 2.8c39.5-34.9 91.3-56 148.2-56zm64 160a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wikipedia-w": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f266", + "label": "Wikipedia W", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wind": { + "aliases": { + "unicodes": { + "secondary": [ + "10f72e" + ] + } + }, + "changes": [ + "5.4.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air", + "blow", + "breeze", + "fall", + "seasonal", + "weather" + ] + }, + "unicode": "f72e", + "label": "Wind", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0 17.7 14.3 32 32 32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c53 0 96-43 96-96s-43-96-96-96H320c-17.7 0-32 14.3-32 32zm64 352c0 17.7 14.3 32 32 32h32c53 0 96-43 96-96s-43-96-96-96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H384c-17.7 0-32 14.3-32 32zM128 512h32c53 0 96-43 96-96s-43-96-96-96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H160c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32 14.3-32 32s14.3 32 32 32z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "window-maximize": { + "aliases": { + "unicodes": { + "composite": [ + "1f5d6" + ], + "secondary": [ + "10f2d0" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Maximize", + "browser", + "computer", + "development", + "expand" + ] + }, + "unicode": "f2d0", + "label": "Window Maximize", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM96 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + }, + "regular": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M.3 89.5C.1 91.6 0 93.8 0 96V224 416c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64V224 96c0-35.3-28.7-64-64-64H64c-2.2 0-4.4 .1-6.5 .3c-9.2 .9-17.8 3.8-25.5 8.2C21.8 46.5 13.4 55.1 7.7 65.5c-3.9 7.3-6.5 15.4-7.4 24zM48 224H464l0 192c0 8.8-7.2 16-16 16L64 432c-8.8 0-16-7.2-16-16l0-192z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "window-minimize": { + "aliases": { + "unicodes": { + "composite": [ + "1f5d5" + ], + "secondary": [ + "10f2d1" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Minimize", + "browser", + "collapse", + "computer", + "development" + ] + }, + "unicode": "f2d1", + "label": "Window Minimize", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + }, + "regular": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M24 432c-13.3 0-24 10.7-24 24s10.7 24 24 24H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H24z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "window-restore": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2d2" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "computer", + "development" + ] + }, + "unicode": "f2d2", + "label": "Window Restore", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M432 64H208c-8.8 0-16 7.2-16 16V96H128V80c0-44.2 35.8-80 80-80H432c44.2 0 80 35.8 80 80V304c0 44.2-35.8 80-80 80H416V320h16c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM0 192c0-35.3 28.7-64 64-64H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192zm64 32c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H96c-17.7 0-32 14.3-32 32z" + }, + "regular": { + "lastModified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M432 48H208c-17.7 0-32 14.3-32 32V96H128V80c0-44.2 35.8-80 80-80H432c44.2 0 80 35.8 80 80V304c0 44.2-35.8 80-80 80H416V336h16c17.7 0 32-14.3 32-32V80c0-17.7-14.3-32-32-32zM48 448c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16V256H48V448zM64 128H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192c0-35.3 28.7-64 64-64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "regular" + }, + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + }, + { + "family": "classic", + "style": "regular" + } + ] + } + }, + "windows": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "microsoft", + "operating system", + "os" + ] + }, + "unicode": "f17a", + "label": "Windows", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wine-bottle": { + "aliases": { + "unicodes": { + "secondary": [ + "10f72f" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "beverage", + "cabernet", + "drink", + "glass", + "grapes", + "merlot", + "sauvignon" + ] + }, + "unicode": "f72f", + "label": "Wine Bottle", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M393.4 9.4c12.5-12.5 32.8-12.5 45.3 0l64 64c12.5 12.5 12.5 32.8 0 45.3c-11.8 11.8-30.7 12.5-43.2 1.9l-9.5 9.5-48.8 48.8c-9.2 9.2-11.5 22.9-8.6 35.6c9.4 40.9-1.9 85.6-33.8 117.5L197.3 493.3c-25 25-65.5 25-90.5 0l-88-88c-25-25-25-65.5 0-90.5L180.2 153.3c31.9-31.9 76.6-43.1 117.5-33.8c12.6 2.9 26.4 .5 35.5-8.6l48.8-48.8 9.5-9.5c-10.6-12.6-10-31.4 1.9-43.2zM99.3 347.3l65.4 65.4c6.2 6.2 16.4 6.2 22.6 0l97.4-97.4c6.2-6.2 6.2-16.4 0-22.6l-65.4-65.4c-6.2-6.2-16.4-6.2-22.6 0L99.3 324.7c-6.2 6.2-6.2 16.4 0 22.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wine-glass": { + "aliases": { + "unicodes": { + "composite": [ + "1f377" + ], + "secondary": [ + "10f4e3" + ] + } + }, + "changes": [ + "5.0.9", + "5.1.0", + "5.10.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "cabernet", + "drink", + "glass", + "grapes", + "merlot", + "sauvignon", + "wine", + "wine glass" + ] + }, + "unicode": "f4e3", + "label": "Wine Glass", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M47 0C30.4 0 16.5 12.8 15.1 29.3L1.1 197.8c-6 72 42.5 135.2 109.9 150.6V448H63c-17.7 0-32 14.3-32 32s14.3 32 32 32h80 80c17.7 0 32-14.3 32-32s-14.3-32-32-32H175V348.4c67.4-15.4 115.9-78.6 109.9-150.6l-14-168.4C269.5 12.8 255.6 0 239 0H47zM71.1 128l5.3-64H209.6l5.3 64H71.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wine-glass-empty": { + "aliases": { + "names": [ + "wine-glass-alt" + ], + "unicodes": { + "secondary": [ + "10f5ce" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "beverage", + "cabernet", + "drink", + "grapes", + "merlot", + "sauvignon" + ] + }, + "unicode": "f5ce", + "label": "Wine Glass Empty", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M47 0C30.4 0 16.5 12.8 15.1 29.3L1.1 197.8c-6 72 42.5 135.2 109.9 150.6V448H63c-17.7 0-32 14.3-32 32s14.3 32 32 32h80 80c17.7 0 32-14.3 32-32s-14.3-32-32-32H175V348.4c67.4-15.4 115.9-78.6 109.9-150.6l-14-168.4C269.5 12.8 255.6 0 239 0H47zM64.9 203.1L76.4 64H209.6l11.6 139.1C225 248.8 188.9 288 143 288s-82-39.2-78.1-84.9z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wirsindhandwerk": { + "aliases": { + "names": [ + "wsh" + ] + }, + "changes": [ + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e2d0", + "label": "wirsindhandwerk", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M50.77161,479.81213h83.36071V367.84741l-83.36071,47.009Zm329.04675,0h82.35022V414.85645l-82.35022-47.009Zm.00568-448V251.568L256.1759,179.1861,134.50378,251.568V31.81213H50.77161V392.60565L256.1759,270.31909,462.16858,392.60565V31.81213Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wix": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f5cf", + "label": "Wix", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M393.38 131.69c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63zm-115.8 35.54l-34.24 132.66-28.48-108.57c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.89 55.28 167.23C49.73 140.51 23.86 128.96 0 131.96l65.57 247.93s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.41 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.93c-24.42-3.07-49.82 8.93-55.3 35.27zm115.78 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.07s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.41l-.02.01v-8.98zm163.44 84.08L640 132.78s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47.73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.74-82.97 123.36s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21L556.8 256.52z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wizards-of-the-coast": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "game", + "gaming", + "tabletop" + ] + }, + "unicode": "f730", + "label": "Wizards of the Coast", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M219.19 345.69c-1.9 1.38-11.07 8.44-.26 23.57 4.64 6.42 14.11 12.79 21.73 6.55 6.5-4.88 7.35-12.92.26-23.04-5.47-7.76-14.28-12.88-21.73-7.08zm336.75 75.94c-.34 1.7-.55 1.67.79 0 2.09-4.19 4.19-10.21 4.98-19.9 3.14-38.49-40.33-71.49-101.34-78.03-54.73-6.02-124.38 9.17-188.8 60.49l-.26 1.57c2.62 4.98 4.98 10.74 3.4 21.21l.79.26c63.89-58.4 131.19-77.25 184.35-73.85 58.4 3.67 100.03 34.04 100.03 68.08-.01 9.96-2.63 15.72-3.94 20.17zM392.28 240.42c.79 7.07 4.19 10.21 9.17 10.47 5.5.26 9.43-2.62 10.47-6.55.79-3.4 2.09-29.85 2.09-29.85s-11.26 6.55-14.93 10.47c-3.66 3.68-7.33 8.39-6.8 15.46zm-50.02-151.1C137.75 89.32 13.1 226.8.79 241.2c-1.05.52-1.31.79.79 1.31 60.49 16.5 155.81 81.18 196.13 202.16l1.05.26c55.25-69.92 140.88-128.05 236.99-128.05 80.92 0 130.15 42.16 130.15 80.39 0 18.33-6.55 33.52-22.26 46.35 0 .96-.2.79.79.79 14.66-10.74 27.5-28.8 27.5-48.18 0-22.78-12.05-38.23-12.05-38.23 7.07 7.07 10.74 16.24 10.74 16.24 5.76-40.85 26.97-62.32 26.97-62.32-2.36-9.69-6.81-17.81-6.81-17.81 7.59 8.12 14.4 27.5 14.4 41.37 0 10.47-3.4 22.78-12.57 31.95l.26.52c8.12-4.98 16.5-16.76 16.5-37.97 0-15.71-4.71-25.92-4.71-25.92 5.76-5.24 11.26-9.17 15.97-11.78.79 3.4 2.09 9.69 2.36 14.93 0 1.05.79 1.83 1.05 0 .79-5.76-.26-16.24-.26-16.5 6.02-3.14 9.69-4.45 9.69-4.45C617.74 176 489.43 89.32 342.26 89.32zm-99.24 289.62c-11.06 8.99-24.2 4.08-30.64-4.19-7.45-9.58-6.76-24.09 4.19-32.47 14.85-11.35 27.08-.49 31.16 5.5.28.39 12.13 16.57-4.71 31.16zm2.09-136.43l9.43-17.81 11.78 70.96-12.57 6.02-24.62-28.8 14.14-26.71 3.67 4.45-1.83-8.11zm18.59 117.58l-.26-.26c2.05-4.1-2.5-6.61-17.54-31.69-1.31-2.36-3.14-2.88-4.45-2.62l-.26-.52c7.86-5.76 15.45-10.21 25.4-15.71l.52.26c1.31 1.83 2.09 2.88 3.4 4.71l-.26.52c-1.05-.26-2.36-.79-5.24.26-2.09.79-7.86 3.67-12.31 7.59v1.31c1.57 2.36 3.93 6.55 5.76 9.69h.26c10.05-6.28 7.56-4.55 11.52-7.86h.26c.52 1.83.52 1.83 1.83 5.5l-.26.26c-3.06.61-4.65.34-11.52 5.5v.26c9.46 17.02 11.01 16.75 12.57 15.97l.26.26c-2.34 1.59-6.27 4.21-9.68 6.57zm55.26-32.47c-3.14 1.57-6.02 2.88-9.95 4.98l-.26-.26c1.29-2.59 1.16-2.71-11.78-32.47l-.26-.26c-.15 0-8.9 3.65-9.95 7.33h-.52l-1.05-5.76.26-.52c7.29-4.56 25.53-11.64 27.76-12.57l.52.26 3.14 4.98-.26.52c-3.53-1.76-7.35.76-12.31 2.62v.26c12.31 32.01 12.67 30.64 14.66 30.64v.25zm44.77-16.5c-4.19 1.05-5.24 1.31-9.69 2.88l-.26-.26.52-4.45c-1.05-3.4-3.14-11.52-3.67-13.62l-.26-.26c-3.4.79-8.9 2.62-12.83 3.93l-.26.26c.79 2.62 3.14 9.95 4.19 13.88.79 2.36 1.83 2.88 2.88 3.14v.52c-3.67 1.05-7.07 2.62-10.21 3.93l-.26-.26c1.05-1.31 1.05-2.88.26-4.98-1.05-3.14-8.12-23.83-9.17-27.23-.52-1.83-1.57-3.14-2.62-3.14v-.52c3.14-1.05 6.02-2.09 10.74-3.4l.26.26-.26 4.71c1.31 3.93 2.36 7.59 3.14 9.69h.26c3.93-1.31 9.43-2.88 12.83-3.93l.26-.26-2.62-9.43c-.52-1.83-1.05-3.4-2.62-3.93v-.26c4.45-1.05 7.33-1.83 10.74-2.36l.26.26c-1.05 1.31-1.05 2.88-.52 4.45 1.57 6.28 4.71 20.43 6.28 26.45.54 2.62 1.85 3.41 2.63 3.93zm32.21-6.81l-.26.26c-4.71.52-14.14 2.36-22.52 4.19l-.26-.26.79-4.19c-1.57-7.86-3.4-18.59-4.98-26.19-.26-1.83-.79-2.88-2.62-3.67l.79-.52c9.17-1.57 20.16-2.36 24.88-2.62l.26.26c.52 2.36.79 3.14 1.57 5.5l-.26.26c-1.14-1.14-3.34-3.2-16.24-.79l-.26.26c.26 1.57 1.05 6.55 1.57 9.95l.26.26c9.52-1.68 4.76-.06 10.74-2.36h.26c0 1.57-.26 1.83-.26 5.24h-.26c-4.81-1.03-2.15-.9-10.21 0l-.26.26c.26 2.09 1.57 9.43 2.09 12.57l.26.26c1.15.38 14.21-.65 16.24-4.71h.26c-.53 2.38-1.05 4.21-1.58 6.04zm10.74-44.51c-4.45 2.36-8.12 2.88-11 2.88-.25.02-11.41 1.09-17.54-9.95-6.74-10.79-.98-25.2 5.5-31.69 8.8-8.12 23.35-10.1 28.54-17.02 8.03-10.33-13.04-22.31-29.59-5.76l-2.62-2.88 5.24-16.24c25.59-1.57 45.2-3.04 50.02 16.24.79 3.14 0 9.43-.26 12.05 0 2.62-1.83 18.85-2.09 23.04-.52 4.19-.79 18.33-.79 20.69.26 2.36.52 4.19 1.57 5.5 1.57 1.83 5.76 1.83 5.76 1.83l-.79 4.71c-11.82-1.07-10.28-.59-20.43-1.05-3.22-5.15-2.23-3.28-4.19-7.86 0 .01-4.19 3.94-7.33 5.51zm37.18 21.21c-6.35-10.58-19.82-7.16-21.73 5.5-2.63 17.08 14.3 19.79 20.69 10.21l.26.26c-.52 1.83-1.83 6.02-1.83 6.28l-.52.52c-10.3 6.87-28.5-2.5-25.66-18.59 1.94-10.87 14.44-18.93 28.8-9.95l.26.52c0 1.06-.27 3.41-.27 5.25zm5.77-87.73v-6.55c.69 0 19.65 3.28 27.76 7.33l-1.57 17.54s10.21-9.43 15.45-10.74c5.24-1.57 14.93 7.33 14.93 7.33l-11.26 11.26c-12.07-6.35-19.59-.08-20.69.79-5.29 38.72-8.6 42.17 4.45 46.09l-.52 4.71c-17.55-4.29-18.53-4.5-36.92-7.33l.79-4.71c7.25 0 7.48-5.32 7.59-6.81 0 0 4.98-53.16 4.98-55.25-.02-2.87-4.99-3.66-4.99-3.66zm10.99 114.44c-8.12-2.09-14.14-11-10.74-20.69 3.14-9.43 12.31-12.31 18.85-10.21 9.17 2.62 12.83 11.78 10.74 19.38-2.61 8.9-9.42 13.87-18.85 11.52zm42.16 9.69c-2.36-.52-7.07-2.36-8.64-2.88v-.26l1.57-1.83c.59-8.24.59-7.27.26-7.59-4.82-1.81-6.66-2.36-7.07-2.36-1.31 1.83-2.88 4.45-3.67 5.5l-.79 3.4v.26c-1.31-.26-3.93-1.31-6.02-1.57v-.26l2.62-1.83c3.4-4.71 9.95-14.14 13.88-20.16v-2.09l.52-.26c2.09.79 5.5 2.09 7.59 2.88.48.48.18-1.87-1.05 25.14-.24 1.81.02 2.6.8 3.91zm-4.71-89.82c11.25-18.27 30.76-16.19 34.04-3.4L539.7 198c2.34-6.25-2.82-9.9-4.45-11.26l1.83-3.67c12.22 10.37 16.38 13.97 22.52 20.43-25.91 73.07-30.76 80.81-24.62 84.32l-1.83 4.45c-6.37-3.35-8.9-4.42-17.81-8.64l2.09-6.81c-.26-.26-3.93 3.93-9.69 3.67-19.06-1.3-22.89-31.75-9.67-52.9zm29.33 79.34c0-5.71-6.34-7.89-7.86-5.24-1.31 2.09 1.05 4.98 2.88 8.38 1.57 2.62 2.62 6.28 1.05 9.43-2.64 6.34-12.4 5.31-15.45-.79 0-.7-.27.09 1.83-4.71l.79-.26c-.57 5.66 6.06 9.61 8.38 4.98 1.05-2.09-.52-5.5-2.09-8.38-1.57-2.62-3.67-6.28-1.83-9.69 2.72-5.06 11.25-4.47 14.66 2.36v.52l-2.36 3.4zm21.21 13.36c-1.96-3.27-.91-2.14-4.45-4.71h-.26c-2.36 4.19-5.76 10.47-8.64 16.24-1.31 2.36-1.05 3.4-.79 3.93l-.26.26-5.76-4.45.26-.26 2.09-1.31c3.14-5.76 6.55-12.05 9.17-17.02v-.26c-2.64-1.98-1.22-1.51-6.02-1.83v-.26l3.14-3.4h.26c3.67 2.36 9.95 6.81 12.31 8.9l.26.26-1.31 3.91zm27.23-44.26l-2.88-2.88c.79-2.36 1.83-4.98 2.09-7.59.75-9.74-11.52-11.84-11.52-4.98 0 4.98 7.86 19.38 7.86 27.76 0 10.21-5.76 15.71-13.88 16.5-8.38.79-20.16-10.47-20.16-10.47l4.98-14.4 2.88 2.09c-2.97 17.8 17.68 20.37 13.35 5.24-1.06-4.02-18.75-34.2 2.09-38.23 13.62-2.36 23.04 16.5 23.04 16.5l-7.85 10.46zm35.62-10.21c-11-30.38-60.49-127.53-191.95-129.62-53.42-1.05-94.27 15.45-132.76 37.97l85.63-9.17-91.39 20.69 25.14 19.64-3.93-16.5c7.5-1.71 39.15-8.45 66.77-8.9l-22.26 80.39c13.61-.7 18.97-8.98 19.64-22.78l4.98-1.05.26 26.71c-22.46 3.21-37.3 6.69-49.49 9.95l13.09-43.21-61.54-36.66 2.36 8.12 10.21 4.98c6.28 18.59 19.38 56.56 20.43 58.66 1.95 4.28 3.16 5.78 12.05 4.45l1.05 4.98c-16.08 4.86-23.66 7.61-39.02 14.4l-2.36-4.71c4.4-2.94 8.73-3.94 5.5-12.83-23.7-62.5-21.48-58.14-22.78-59.44l2.36-4.45 33.52 67.3c-3.84-11.87 1.68 1.69-32.99-78.82l-41.9 88.51 4.71-13.88-35.88-42.16 27.76 93.48-11.78 8.38C95 228.58 101.05 231.87 93.23 231.52c-5.5-.26-13.62 5.5-13.62 5.5L74.63 231c30.56-23.53 31.62-24.33 58.4-42.68l4.19 7.07s-5.76 4.19-7.86 7.07c-5.9 9.28 1.67 13.28 61.8 75.68l-18.85-58.92 39.8-10.21 25.66 30.64 4.45-12.31-4.98-24.62 13.09-3.4.52 3.14 3.67-10.47-94.27 29.33 11.26-4.98-13.62-42.42 17.28-9.17 30.11 36.14 28.54-13.09c-1.41-7.47-2.47-14.5-4.71-19.64l17.28 13.88 4.71-2.09-59.18-42.68 23.08 11.5c18.98-6.07 25.23-7.47 32.21-9.69l2.62 11c-12.55 12.55 1.43 16.82 6.55 19.38l-13.62-61.01 12.05 28.28c4.19-1.31 7.33-2.09 7.33-2.09l2.62 8.64s-3.14 1.05-6.28 2.09l8.9 20.95 33.78-65.73-20.69 61.01c42.42-24.09 81.44-36.66 131.98-35.88 67.04 1.05 167.33 40.85 199.8 139.83.78 2.1-.01 2.63-.79.27zM203.48 152.43s1.83-.52 4.19-1.31l9.43 7.59c-.4 0-3.44-.25-11.26 2.36l-2.36-8.64zm143.76 38.5c-1.57-.6-26.46-4.81-33.26 20.69l21.73 17.02 11.53-37.71zM318.43 67.07c-58.4 0-106.05 12.05-114.96 14.4v.79c8.38 2.09 14.4 4.19 21.21 11.78l1.57.26c6.55-1.83 48.97-13.88 110.24-13.88 180.16 0 301.67 116.79 301.67 223.37v9.95c0 1.31.79 2.62 1.05.52.52-2.09.79-8.64.79-19.64.26-83.79-96.63-227.55-321.57-227.55zm211.06 169.68c1.31-5.76 0-12.31-7.33-13.09-9.62-1.13-16.14 23.79-17.02 33.52-.79 5.5-1.31 14.93 6.02 14.93 4.68-.01 9.72-.91 18.33-35.36zm-61.53 42.95c-2.62-.79-9.43-.79-12.57 10.47-1.83 6.81.52 13.35 6.02 14.66 3.67 1.05 8.9.52 11.78-10.74 2.62-9.94-1.83-13.61-5.23-14.39zM491 300.65c1.83.52 3.14 1.05 5.76 1.83 0-1.83.52-8.38.79-12.05-1.05 1.31-5.5 8.12-6.55 9.95v.27z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wodu": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "e088", + "label": "Wodu", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M178.414 339.706H141.1L112.166 223.475h-.478L83.228 339.706H45.2L0 168.946H37.548L64.574 285.177h.478L94.707 168.946h35.157l29.178 117.667h.479L187.5 168.946h36.831zM271.4 212.713c38.984 0 64.1 25.828 64.1 65.291 0 39.222-25.111 65.05-64.1 65.05-38.743 0-63.855-25.828-63.855-65.05C207.547 238.541 232.659 212.713 271.4 212.713zm0 104.753c23.2 0 30.133-19.852 30.133-39.462 0-19.852-6.934-39.7-30.133-39.7-27.7 0-29.894 19.85-29.894 39.7C241.508 297.614 248.443 317.466 271.4 317.466zM435.084 323.922h-.478c-7.893 13.392-21.765 19.132-37.548 19.132-37.31 0-55.485-32.045-55.485-66.246 0-33.243 18.415-64.095 54.767-64.095 14.589 0 28.938 6.218 36.831 18.416h.24V168.946h33.96v170.76H435.084zM405.428 238.3c-22.24 0-29.894 19.134-29.894 39.463 0 19.371 8.848 39.7 29.894 39.7 22.482 0 29.178-19.613 29.178-39.94C434.606 257.436 427.432 238.3 405.428 238.3zM592.96 339.706H560.673V322.487h-.718c-8.609 13.87-23.436 20.567-37.786 20.567-36.113 0-45.2-20.328-45.2-50.941V216.061h33.959V285.9c0 20.329 5.979 30.372 21.765 30.372 18.415 0 26.306-10.283 26.306-35.393V216.061H592.96zM602.453 302.876H640v36.83H602.453z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wolf-pack-battalion": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f514", + "label": "Wolf Pack Battalion", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M267.73 471.53l10.56 15.84 5.28-12.32 5.28 7V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05C421 189 447 196.21 456.43 239.73l-30.35 8.36c11.15 23 17 46.76 13.2 72.14L412 313.18l-6.16 33.43-18.47-7-8.8 33.39-19.35-7 26.39 21.11 8.8-28.15L419 364.2l7-35.63 26.39 14.52c.25-20 7-58.06-8.8-84.45l26.39 5.28c4-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 2-19.87 17.45-42.62 43.11-49.7-44 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.39 22.87-89.65 65.1-93.2 147.79l-58 38.71-3.52 93.25L369.78 220l7 7-17.59 3.52-44 38.71-15.84-5.28-28.1 49.25-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-44-38.71-17.58-3.51 7-7 107.33 59.82-3.52-93.25-58.06-38.71C185 65.1 135.77 22.87 95.3 0c-17.54 61.12-4.4 118.76 0 130.2 15-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9-31.65 1.72-61.15 33.44-61.59 58.51l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7 35.63 24.63-5.28 8.8 28.15L153.35 366 134 373l-8.8-33.43-18.47 7-6.16-33.43-27.27 7c-3.82-25.38 2-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.83l5.28-7 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95L331.06 366c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.22-.27 13.84-3.51 22.84zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7 8.24-7.94 15.55-16.32 22.87-24.68zm24.63 5.28c0-13.43-2.05-24.21-5.28-33.43a235 235 0 0 1-18.47 27.27zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-12 6.65-28.14 7-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 44-14.08-10.61-18.96-27.2-25.53-45.76-28.16zM165.68 376.52L181.52 366c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7-8.24-7.93-15.55-16.31-22.87-24.67zm-24.64 5.28c0-13.43 2-24.21 5.28-33.43a235 235 0 0 0 18.47 27.27zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 37-10.56-5-12-6.65-28.14-7-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-44-14.08 10.63-18.95 27.23-25.52 45.76-28.15z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "won-sign": { + "aliases": { + "names": [ + "krw", + "won" + ], + "unicodes": { + "composite": [ + "20a9" + ], + "secondary": [ + "10f159" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Won Sign", + "currency" + ] + }, + "unicode": "f159", + "label": "Won Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M62.4 53.9C56.8 37.1 38.6 28.1 21.9 33.6S-3.9 57.4 1.6 74.1L51.6 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H72.9l56.7 170.1c4.5 13.5 17.4 22.4 31.6 21.9s26.4-10.4 29.8-24.2L233 288h46L321 455.8c3.4 13.8 15.6 23.7 29.8 24.2s27.1-8.4 31.6-21.9L439.1 288H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H460.4l50-149.9c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2L392.9 224H329L287 56.2C283.5 42 270.7 32 256 32s-27.5 10-31 24.2L183 224h-64L62.4 53.9zm78 234.1H167l-11.4 45.6L140.4 288zM249 224l7-28.1 7 28.1H249zm96 64h26.6l-15.2 45.6L345 288z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wordpress": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f19a", + "label": "WordPress Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wordpress-simple": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f411", + "label": "Wordpress Simple", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "worm": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dirt", + "garden", + "worm", + "wriggle" + ] + }, + "unicode": "e599", + "label": "Worm", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 96c0-53 43-96 96-96h38.4C407.9 0 448 40.1 448 89.6V176v16V376c0 75.1-60.9 136-136 136s-136-60.9-136-136V296c0-22.1-17.9-40-40-40s-40 17.9-40 40V464c0 26.5-21.5 48-48 48s-48-21.5-48-48V296c0-75.1 60.9-136 136-136s136 60.9 136 136v80c0 22.1 17.9 40 40 40s40-17.9 40-40V192H320c-53 0-96-43-96-96zm144-8a24 24 0 1 0 -48 0 24 24 0 1 0 48 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "wpbeginner": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f297", + "label": "WPBeginner", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wpexplorer": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2de", + "label": "WPExplorer", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wpforms": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f298", + "label": "WPForms", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wpressr": { + "aliases": { + "names": [ + "rendact" + ] + }, + "changes": [ + "5.4.2" + ], + "ligatures": [], + "search": { + "terms": [ + "rendact" + ] + }, + "unicode": "f3e4", + "label": "wpressr", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm171.33 158.6c-15.18 34.51-30.37 69.02-45.63 103.5-2.44 5.51-6.89 8.24-12.97 8.24-23.02-.01-46.03.06-69.05-.05-5.12-.03-8.25 1.89-10.34 6.72-10.19 23.56-20.63 47-30.95 70.5-1.54 3.51-4.06 5.29-7.92 5.29-45.94-.01-91.87-.02-137.81 0-3.13 0-5.63-1.15-7.72-3.45-11.21-12.33-22.46-24.63-33.68-36.94-2.69-2.95-2.79-6.18-1.21-9.73 8.66-19.54 17.27-39.1 25.89-58.66 12.93-29.35 25.89-58.69 38.75-88.08 1.7-3.88 4.28-5.68 8.54-5.65 14.24.1 28.48.02 42.72.05 6.24.01 9.2 4.84 6.66 10.59-13.6 30.77-27.17 61.55-40.74 92.33-5.72 12.99-11.42 25.99-17.09 39-3.91 8.95 7.08 11.97 10.95 5.6.23-.37-1.42 4.18 30.01-67.69 1.36-3.1 3.41-4.4 6.77-4.39 15.21.08 30.43.02 45.64.04 5.56.01 7.91 3.64 5.66 8.75-8.33 18.96-16.71 37.9-24.98 56.89-4.98 11.43 8.08 12.49 11.28 5.33.04-.08 27.89-63.33 32.19-73.16 2.02-4.61 5.44-6.51 10.35-6.5 26.43.05 52.86 0 79.29.05 12.44.02 13.93-13.65 3.9-13.64-25.26.03-50.52.02-75.78.02-6.27 0-7.84-2.47-5.27-8.27 5.78-13.06 11.59-26.11 17.3-39.21 1.73-3.96 4.52-5.79 8.84-5.78 23.09.06 25.98.02 130.78.03 6.08-.01 8.03 2.79 5.62 8.27z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "wrench": { + "aliases": { + "unicodes": { + "composite": [ + "1f527" + ], + "secondary": [ + "10f0ad" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "construction", + "fix", + "mechanic", + "plumbing", + "settings", + "spanner", + "tool", + "update", + "wrench" + ] + }, + "unicode": "f0ad", + "label": "Wrench", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 320c88.4 0 160-71.6 160-160c0-15.3-2.2-30.1-6.2-44.2c-3.1-10.8-16.4-13.2-24.3-5.3l-76.8 76.8c-3 3-7.1 4.7-11.3 4.7H336c-8.8 0-16-7.2-16-16V118.6c0-4.2 1.7-8.3 4.7-11.3l76.8-76.8c7.9-7.9 5.4-21.2-5.3-24.3C382.1 2.2 367.3 0 352 0C263.6 0 192 71.6 192 160c0 19.1 3.4 37.5 9.5 54.5L19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L297.5 310.5c17 6.2 35.4 9.5 54.5 9.5zM80 408a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "x": { + "aliases": { + "unicodes": { + "composite": [ + "78" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter X", + "Latin Small Letter X", + "letter" + ] + }, + "unicode": "58", + "label": "X", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M376.6 84.5c11.3-13.6 9.5-33.8-4.1-45.1s-33.8-9.5-45.1 4.1L192 206 56.6 43.5C45.3 29.9 25.1 28.1 11.5 39.4S-3.9 70.9 7.4 84.5L150.3 256 7.4 427.5c-11.3 13.6-9.5 33.8 4.1 45.1s33.8 9.5 45.1-4.1L192 306 327.4 468.5c11.3 13.6 31.5 15.4 45.1 4.1s15.4-31.5 4.1-45.1L233.7 256 376.6 84.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "x-ray": { + "aliases": { + "unicodes": { + "secondary": [ + "10f497" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "health", + "medical", + "radiological images", + "radiology", + "skeleton" + ] + }, + "unicode": "f497", + "label": "X Ray", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32V416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V96C14.3 96 0 81.7 0 64zM256 96c-8.8 0-16 7.2-16 16v32H160c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v48H128c-8.8 0-16 7.2-16 16s7.2 16 16 16H240v70.6L189.1 307c-5.2-2-10.6-3-16.2-3h-2.1c-23.6 0-42.8 19.2-42.8 42.8c0 9.6 3.2 18.9 9.1 26.4l18.2 23.2c9.7 12.4 24.6 19.6 40.3 19.6H316.4c15.7 0 30.6-7.2 40.3-19.6l18.2-23.2c5.9-7.5 9.1-16.8 9.1-26.4c0-23.6-19.2-42.8-42.8-42.8H339c-5.5 0-11 1-16.2 3L272 326.6V256H384c8.8 0 16-7.2 16-16s-7.2-16-16-16H272V176h80c8.8 0 16-7.2 16-16s-7.2-16-16-16H272V112c0-8.8-7.2-16-16-16zM208 352a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm80 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "xbox": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f412", + "label": "Xbox", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "xing": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f168", + "label": "Xing", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "xmark": { + "aliases": { + "names": [ + "close", + "multiply", + "remove", + "times" + ], + "unicodes": { + "composite": [ + "1f5d9", + "2715", + "2716", + "274c", + "d7" + ], + "secondary": [ + "10f00d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.13", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Cancellation X", + "Multiplication Sign", + "Multiplication X", + "cancel", + "close", + "cross", + "cross mark", + "error", + "exit", + "incorrect", + "mark", + "multiplication", + "multiply", + "notice", + "notification", + "notify", + "problem", + "sign", + "wrong", + "x", + "×" + ] + }, + "unicode": "f00d", + "label": "Xmark", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M310.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 210.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L114.7 256 9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 301.3 265.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L205.3 256 310.6 150.6z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "xmarks-lines": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barricade", + "barrier", + "fence", + "poison", + "roadblock" + ] + }, + "unicode": "e59a", + "label": "Xmarks Lines", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zm0 384c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM7 167c-9.4 9.4-9.4 24.6 0 33.9l55 55L7 311c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55L41 167c-9.4-9.4-24.6-9.4-33.9 0zM265 167c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l55 55-55 55c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55-55-55zM455 167c-9.4 9.4-9.4 24.6 0 33.9l55 55-55 55c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55-55-55c-9.4-9.4-24.6-9.4-33.9 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "y": { + "aliases": { + "unicodes": { + "composite": [ + "79" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter Y", + "Latin Small Letter Y", + "letter", + "yay", + "yes" + ] + }, + "unicode": "59", + "label": "Y", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M58 45.4C47.8 31 27.8 27.7 13.4 38S-4.3 68.2 6 82.6L160 298.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V298.3L378 82.6c10.3-14.4 6.9-34.4-7.4-44.6S336.2 31 326 45.4L192 232.9 58 45.4z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "y-combinator": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f23b", + "label": "Y Combinator", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yahoo": { + "changes": [ + "4.1.0", + "5.0.0", + "5.0.3", + "5.13.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f19e", + "label": "Yahoo Logo", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M223.69,141.06,167,284.23,111,141.06H14.93L120.76,390.19,82.19,480h94.17L317.27,141.06Zm105.4,135.79a58.22,58.22,0,1,0,58.22,58.22A58.22,58.22,0,0,0,329.09,276.85ZM394.65,32l-93,223.47H406.44L499.07,32Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yammer": { + "changes": [ + "5.8.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f840", + "label": "Yammer", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M500.676,159.486a12.779,12.779,0,0,0-6.4-8.282,13.954,13.954,0,0,0-10.078-1.125L457.8,156.7l-.043-.2-22.3,5.785-1.243.333-.608-2.17A369.037,369.037,0,0,0,347.538,4.289a14.1,14.1,0,0,0-19.784-.463l-102.9,102.747H24.947A24.9,24.9,0,0,0,0,131.417V380.38a24.963,24.963,0,0,0,24.918,24.9H224.986L328.072,508a13.667,13.667,0,0,0,19.327,0c.126-.126.249-.255.37-.385a368.025,368.025,0,0,0,69.577-107.374,403.45,403.45,0,0,0,17.3-50.8v-.028l20.406,5.336.029-.073L483.345,362a20.253,20.253,0,0,0,2.619.5,13.359,13.359,0,0,0,4.139-.072,13.5,13.5,0,0,0,10.515-9.924,415.855,415.855,0,0,0,.058-193.013ZM337.125,24.65l.013.014h-.013Zm-110.2,165.161L174.311,281.1a11.338,11.338,0,0,0-1.489,5.655v46.189a22.04,22.04,0,0,1-22.041,22h-3.4A22.068,22.068,0,0,1,125.3,332.962V287.294a11.532,11.532,0,0,0-1.388-5.51l-51.6-92.2a21.988,21.988,0,0,1,19.264-32.726h3.268a22.059,22.059,0,0,1,19.611,11.916l36.357,70.281,37.515-70.512a22.066,22.066,0,0,1,38.556-.695,21.7,21.7,0,0,1,0,21.967ZM337.145,24.673a348.147,348.147,0,0,1,75.8,141.335l.564,1.952-114.134,29.6V131.417a25.006,25.006,0,0,0-24.947-24.9H255.067Zm60.5,367.305v-.043l-.014.014a347.19,347.19,0,0,1-60.177,95.227l-82.2-81.893h19.177a24.978,24.978,0,0,0,24.947-24.9v-66.2l114.6,29.862A385.191,385.191,0,0,1,397.648,391.978Zm84-52.45.015.014-50.618-13.131L299.379,292.1V219.572l119.746-30.99,4.468-1.157,39.54-10.253,18.511-4.816A393,393,0,0,1,481.644,339.528Z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yandex": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f413", + "label": "Yandex", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yandex-international": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f414", + "label": "Yandex International", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yarn": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f7e3", + "label": "Yarn", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M393.9 345.2c-39 9.3-48.4 32.1-104 47.4 0 0-2.7 4-10.4 5.8-13.4 3.3-63.9 6-68.5 6.1-12.4.1-19.9-3.2-22-8.2-6.4-15.3 9.2-22 9.2-22-8.1-5-9-9.9-9.8-8.1-2.4 5.8-3.6 20.1-10.1 26.5-8.8 8.9-25.5 5.9-35.3.8-10.8-5.7.8-19.2.8-19.2s-5.8 3.4-10.5-3.6c-6-9.3-17.1-37.3 11.5-62-1.3-10.1-4.6-53.7 40.6-85.6 0 0-20.6-22.8-12.9-43.3 5-13.4 7-13.3 8.6-13.9 5.7-2.2 11.3-4.6 15.4-9.1 20.6-22.2 46.8-18 46.8-18s12.4-37.8 23.9-30.4c3.5 2.3 16.3 30.6 16.3 30.6s13.6-7.9 15.1-5c8.2 16 9.2 46.5 5.6 65.1-6.1 30.6-21.4 47.1-27.6 57.5-1.4 2.4 16.5 10 27.8 41.3 10.4 28.6 1.1 52.7 2.8 55.3.8 1.4 13.7.8 36.4-13.2 12.8-7.9 28.1-16.9 45.4-17 16.7-.5 17.6 19.2 4.9 22.2zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-79.3 75.2c-1.7-13.6-13.2-23-28-22.8-22 .3-40.5 11.7-52.8 19.2-4.8 3-8.9 5.2-12.4 6.8 3.1-44.5-22.5-73.1-28.7-79.4 7.8-11.3 18.4-27.8 23.4-53.2 4.3-21.7 3-55.5-6.9-74.5-1.6-3.1-7.4-11.2-21-7.4-9.7-20-13-22.1-15.6-23.8-1.1-.7-23.6-16.4-41.4 28-12.2.9-31.3 5.3-47.5 22.8-2 2.2-5.9 3.8-10.1 5.4h.1c-8.4 3-12.3 9.9-16.9 22.3-6.5 17.4.2 34.6 6.8 45.7-17.8 15.9-37 39.8-35.7 82.5-34 36-11.8 73-5.6 79.6-1.6 11.1 3.7 19.4 12 23.8 12.6 6.7 30.3 9.6 43.9 2.8 4.9 5.2 13.8 10.1 30 10.1 6.8 0 58-2.9 72.6-6.5 6.8-1.6 11.5-4.5 14.6-7.1 9.8-3.1 36.8-12.3 62.2-28.7 18-11.7 24.2-14.2 37.6-17.4 12.9-3.2 21-15.1 19.4-28.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yelp": { + "changes": [ + "4.2.0", + "5.0.0", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f1e9", + "label": "Yelp", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M42.9 240.32l99.62 48.61c19.2 9.4 16.2 37.51-4.5 42.71L30.5 358.45a22.79 22.79 0 0 1-28.21-19.6 197.16 197.16 0 0 1 9-85.32 22.8 22.8 0 0 1 31.61-13.21zm44 239.25a199.45 199.45 0 0 0 79.42 32.11A22.78 22.78 0 0 0 192.94 490l3.9-110.82c.7-21.3-25.5-31.91-39.81-16.1l-74.21 82.4a22.82 22.82 0 0 0 4.09 34.09zm145.34-109.92l58.81 94a22.93 22.93 0 0 0 34 5.5 198.36 198.36 0 0 0 52.71-67.61A23 23 0 0 0 364.17 370l-105.42-34.26c-20.31-6.5-37.81 15.8-26.51 33.91zm148.33-132.23a197.44 197.44 0 0 0-50.41-69.31 22.85 22.85 0 0 0-34 4.4l-62 91.92c-11.9 17.7 4.7 40.61 25.2 34.71L366 268.63a23 23 0 0 0 14.61-31.21zM62.11 30.18a22.86 22.86 0 0 0-9.9 32l104.12 180.44c11.7 20.2 42.61 11.9 42.61-11.4V22.88a22.67 22.67 0 0 0-24.5-22.8 320.37 320.37 0 0 0-112.33 30.1z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "yen-sign": { + "aliases": { + "names": [ + "cny", + "jpy", + "rmb", + "yen" + ], + "unicodes": { + "composite": [ + "a5" + ], + "secondary": [ + "10f157" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Yen Sign", + "currency" + ] + }, + "unicode": "f157", + "label": "Yen Sign", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M58.6 46.2C48.8 31.5 29 27.6 14.2 37.4S-4.4 67 5.4 81.7L100.2 224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v32H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v64c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H192V288h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H219.8L314.6 81.7c9.8-14.7 5.8-34.6-8.9-44.4s-34.6-5.8-44.4 8.9L160 198.3 58.6 46.2z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "yin-yang": { + "aliases": { + "unicodes": { + "composite": [ + "262f" + ], + "secondary": [ + "10f6ad" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "daoism", + "opposites", + "religion", + "tao", + "taoism", + "taoist", + "yang", + "yin", + "yin yang" + ] + }, + "unicode": "f6ad", + "label": "Yin Yang", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 64c53 0 96 43 96 96s-43 96-96 96s-96 43-96 96s43 96 96 96C150 448 64 362 64 256S150 64 256 64zm0 448A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm32-352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "yoast": { + "changes": [ + "4.6.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f2b1", + "label": "Yoast", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "youtube": { + "aliases": { + "unicodes": { + "composite": [ + "f16a" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "film", + "video", + "youtube-play", + "youtube-square" + ] + }, + "unicode": "f167", + "label": "YouTube", + "voted": false, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + }, + "z": { + "aliases": { + "unicodes": { + "composite": [ + "7a" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter Z", + "Latin Small Letter Z", + "letter" + ] + }, + "unicode": "5a", + "label": "Z", + "voted": false, + "svgs": { + "classic": { + "solid": { + "lastModified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H352c12.4 0 23.7 7.2 29 18.4s3.6 24.5-4.4 34.1L100.3 416H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-12.4 0-23.7-7.2-29-18.4s-3.6-24.5 4.4-34.1L283.7 96H32C14.3 96 0 81.7 0 64z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "solid" + } + ], + "pro": [ + { + "family": "classic", + "style": "solid" + } + ] + } + }, + "zhihu": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "unicode": "f63f", + "label": "Zhihu", + "voted": true, + "svgs": { + "classic": { + "brands": { + "lastModified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M170.54 148.13v217.54l23.43.01 7.71 26.37 42.01-26.37h49.53V148.13H170.54zm97.75 193.93h-27.94l-27.9 17.51-5.08-17.47-11.9-.04V171.75h72.82v170.31zm-118.46-94.39H97.5c1.74-27.1 2.2-51.59 2.2-73.46h51.16s1.97-22.56-8.58-22.31h-88.5c3.49-13.12 7.87-26.66 13.12-40.67 0 0-24.07 0-32.27 21.57-3.39 8.9-13.21 43.14-30.7 78.12 5.89-.64 25.37-1.18 36.84-22.21 2.11-5.89 2.51-6.66 5.14-14.53h28.87c0 10.5-1.2 66.88-1.68 73.44H20.83c-11.74 0-15.56 23.62-15.56 23.62h65.58C66.45 321.1 42.83 363.12 0 396.34c20.49 5.85 40.91-.93 51-9.9 0 0 22.98-20.9 35.59-69.25l53.96 64.94s7.91-26.89-1.24-39.99c-7.58-8.92-28.06-33.06-36.79-41.81L87.9 311.95c4.36-13.98 6.99-27.55 7.87-40.67h61.65s-.09-23.62-7.59-23.62v.01zm412.02-1.6c20.83-25.64 44.98-58.57 44.98-58.57s-18.65-14.8-27.38-4.06c-6 8.15-36.83 48.2-36.83 48.2l19.23 14.43zm-150.09-59.09c-9.01-8.25-25.91 2.13-25.91 2.13s39.52 55.04 41.12 57.45l19.46-13.73s-25.67-37.61-34.66-45.86h-.01zM640 258.35c-19.78 0-130.91.93-131.06.93v-101c4.81 0 12.42-.4 22.85-1.2 40.88-2.41 70.13-4 87.77-4.81 0 0 12.22-27.19-.59-33.44-3.07-1.18-23.17 4.58-23.17 4.58s-165.22 16.49-232.36 18.05c1.6 8.82 7.62 17.08 15.78 19.55 13.31 3.48 22.69 1.7 49.15.89 24.83-1.6 43.68-2.43 56.51-2.43v99.81H351.41s2.82 22.31 25.51 22.85h107.94v70.92c0 13.97-11.19 21.99-24.48 21.12-14.08.11-26.08-1.15-41.69-1.81 1.99 3.97 6.33 14.39 19.31 21.84 9.88 4.81 16.17 6.57 26.02 6.57 29.56 0 45.67-17.28 44.89-45.31v-73.32h122.36c9.68 0 8.7-23.78 8.7-23.78l.03-.01z" + } + } + }, + "familyStylesByLicense": { + "free": [ + { + "family": "classic", + "style": "brands" + } + ], + "pro": [ + { + "family": "classic", + "style": "brands" + } + ] + } + } +} \ No newline at end of file diff --git a/vendor/fortawesome/font-awesome/metadata/icons.json b/vendor/fortawesome/font-awesome/metadata/icons.json new file mode 100644 index 00000000..43b60773 --- /dev/null +++ b/vendor/fortawesome/font-awesome/metadata/icons.json @@ -0,0 +1,90542 @@ +{ + "0": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Zero", + "nada", + "none", + "zero", + "zilch" + ] + }, + "styles": [ + "solid" + ], + "unicode": "30", + "label": "0", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 192C0 103.6 71.6 32 160 32s160 71.6 160 160V320c0 88.4-71.6 160-160 160S0 408.4 0 320V192zM160 96c-53 0-96 43-96 96V320c0 53 43 96 96 96s96-43 96-96V192c0-53-43-96-96-96z" + } + }, + "free": [ + "solid" + ] + }, + "1": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit One", + "one" + ] + }, + "styles": [ + "solid" + ], + "unicode": "31", + "label": "1", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M160 64c0-11.8-6.5-22.6-16.9-28.2s-23-5-32.9 1.6l-96 64C-.5 111.2-4.4 131 5.4 145.8s29.7 18.7 44.4 8.9L96 123.8V416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96 96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160V64z" + } + }, + "free": [ + "solid" + ] + }, + "2": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Two", + "two" + ] + }, + "styles": [ + "solid" + ], + "unicode": "32", + "label": "2", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M142.9 96c-21.5 0-42.2 8.5-57.4 23.8L54.6 150.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L40.2 74.5C67.5 47.3 104.4 32 142.9 32C223 32 288 97 288 177.1c0 38.5-15.3 75.4-42.5 102.6L109.3 416H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9L200.2 234.5c15.2-15.2 23.8-35.9 23.8-57.4c0-44.8-36.3-81.1-81.1-81.1z" + } + }, + "free": [ + "solid" + ] + }, + "3": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Three", + "three" + ] + }, + "styles": [ + "solid" + ], + "unicode": "33", + "label": "3", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H272c13.2 0 25 8.1 29.8 20.4s1.5 26.3-8.2 35.2L162.3 208H184c75.1 0 136 60.9 136 136s-60.9 136-136 136H105.4C63 480 24.2 456 5.3 418.1l-1.9-3.8c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l1.9 3.8c8.1 16.3 24.8 26.5 42.9 26.5H184c39.8 0 72-32.2 72-72s-32.2-72-72-72H80c-13.2 0-25-8.1-29.8-20.4s-1.5-26.3 8.2-35.2L189.7 96H32C14.3 96 0 81.7 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "4": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Four", + "four" + ] + }, + "styles": [ + "solid" + ], + "unicode": "34", + "label": "4", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M189 77.6c7.5-16 .7-35.1-15.3-42.6s-35.1-.7-42.6 15.3L3 322.4c-4.7 9.9-3.9 21.5 1.9 30.8S21 368 32 368H256v80c0 17.7 14.3 32 32 32s32-14.3 32-32V368h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H320V160c0-17.7-14.3-32-32-32s-32 14.3-32 32V304H82.4L189 77.6z" + } + }, + "free": [ + "solid" + ] + }, + "5": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Five", + "five" + ] + }, + "styles": [ + "solid" + ], + "unicode": "35", + "label": "5", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32.5 58.3C35.3 43.1 48.5 32 64 32H256c17.7 0 32 14.3 32 32s-14.3 32-32 32H90.7L70.3 208H184c75.1 0 136 60.9 136 136s-60.9 136-136 136H100.5c-39.4 0-75.4-22.3-93-57.5l-4.1-8.2c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l4.1 8.2c6.8 13.6 20.6 22.1 35.8 22.1H184c39.8 0 72-32.2 72-72s-32.2-72-72-72H32c-9.5 0-18.5-4.2-24.6-11.5s-8.6-16.9-6.9-26.2l32-176z" + } + }, + "free": [ + "solid" + ] + }, + "6": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Six", + "six" + ] + }, + "styles": [ + "solid" + ], + "unicode": "36", + "label": "6", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M232.4 84.7c11.4-13.5 9.7-33.7-3.8-45.1s-33.7-9.7-45.1 3.8L38.6 214.7C14.7 242.9 1.1 278.4 .1 315.2c0 1.4-.1 2.9-.1 4.3c0 .2 0 .3 0 .5c0 88.4 71.6 160 160 160s160-71.6 160-160c0-85.5-67.1-155.4-151.5-159.8l63.9-75.6zM256 320A96 96 0 1 1 64 320a96 96 0 1 1 192 0z" + } + }, + "free": [ + "solid" + ] + }, + "7": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Seven", + "seven" + ] + }, + "styles": [ + "solid" + ], + "unicode": "37", + "label": "7", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H288c11.5 0 22 6.1 27.7 16.1s5.7 22.2-.1 32.1l-224 384c-8.9 15.3-28.5 20.4-43.8 11.5s-20.4-28.5-11.5-43.8L232.3 96H32C14.3 96 0 81.7 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "8": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Eight", + "eight" + ] + }, + "styles": [ + "solid" + ], + "unicode": "38", + "label": "8", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M304 160c0-70.7-57.3-128-128-128H144C73.3 32 16 89.3 16 160c0 34.6 13.7 66 36 89C20.5 272.3 0 309.8 0 352c0 70.7 57.3 128 128 128h64c70.7 0 128-57.3 128-128c0-42.2-20.5-79.7-52-103c22.3-23 36-54.4 36-89zM176.1 288H192c35.3 0 64 28.7 64 64s-28.7 64-64 64H128c-35.3 0-64-28.7-64-64s28.7-64 64-64h15.9c0 0 .1 0 .1 0h32c0 0 .1 0 .1 0zm0-64c0 0 0 0 0 0H144c0 0 0 0 0 0c-35.3 0-64-28.7-64-64c0-35.3 28.7-64 64-64h32c35.3 0 64 28.7 64 64c0 35.3-28.6 64-64 64z" + } + }, + "free": [ + "solid" + ] + }, + "9": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Digit Nine", + "nine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "39", + "label": "9", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 192a96 96 0 1 0 192 0A96 96 0 1 0 64 192zm87.5 159.8C67.1 347.4 0 277.5 0 192C0 103.6 71.6 32 160 32s160 71.6 160 160c0 2.6-.1 5.3-.2 7.9c-1.7 35.7-15.2 70-38.4 97.4l-145 171.4c-11.4 13.5-31.6 15.2-45.1 3.8s-15.2-31.6-3.8-45.1l63.9-75.6z" + } + }, + "free": [ + "solid" + ] + }, + "42-group": { + "aliases": { + "names": [ + "innosoft" + ] + }, + "changes": [ + "5.15.0", + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e080", + "label": "42.group", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96V416C341.011 416 361.818 411.861 381.23 403.821C400.641 395.78 418.28 383.995 433.138 369.138C447.995 354.28 459.78 336.641 467.821 317.23C475.861 297.818 480 277.011 480 256C480 234.989 475.861 214.182 467.821 194.771C459.78 175.359 447.995 157.72 433.138 142.863C418.28 128.005 400.641 116.22 381.23 108.179C361.818 100.139 341.011 96 320 96ZM0 256L160.002 416L320.003 256L160.002 96L0 256ZM480 256C480 277.011 484.138 297.818 492.179 317.23C500.219 336.643 512.005 354.28 526.862 369.138C541.72 383.995 559.357 395.781 578.77 403.821C598.182 411.862 618.989 416 640 416V96C597.565 96 556.869 112.858 526.862 142.863C496.857 172.869 480 213.565 480 256Z" + } + }, + "free": [ + "brands" + ] + }, + "500px": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f26e", + "label": "500px", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z" + } + }, + "free": [ + "brands" + ] + }, + "a": { + "aliases": { + "unicodes": { + "composite": [ + "61" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter A", + "Latin Small Letter A", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "41", + "label": "A", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M221.5 51.7C216.6 39.8 204.9 32 192 32s-24.6 7.8-29.5 19.7l-120 288-40 96c-6.8 16.3 .9 35 17.2 41.8s35-.9 41.8-17.2L93.3 384H290.7l31.8 76.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8l-40-96-120-288zM264 320H120l72-172.8L264 320z" + } + }, + "free": [ + "solid" + ] + }, + "accessible-icon": { + "aliases": { + "unicodes": { + "composite": [ + "f29b" + ] + } + }, + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accessibility", + "handicap", + "person", + "wheelchair", + "wheelchair-alt" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f368", + "label": "Accessible Icon", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z" + } + }, + "free": [ + "brands" + ] + }, + "accusoft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f369", + "label": "Accusoft", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M322.1 252v-1l-51.2-65.8s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3zm160.1 120.1c13.3 16.1 20.7 13.3 30.8 9.3 3.2-1.2 115.4-47.6 117.8-48.9 8-4.3-1.7-16.7-7.2-23.4-2.1-2.5-205.1-245.6-207.2-248.3-9.7-12.2-14.3-12.9-38.4-12.8-10.2 0-106.8.5-116.5.6-19.2.1-32.9-.3-19.2 16.9C250 75 476.5 365.2 482.2 372.1zm152.7 1.6c-2.3-.3-24.6-4.7-38-7.2 0 0-115 50.4-117.5 51.6-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2z" + } + }, + "free": [ + "brands" + ] + }, + "address-book": { + "aliases": { + "names": [ + "contact-book" + ], + "unicodes": { + "composite": [ + "f2ba" + ], + "secondary": [ + "10f2b9" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contact", + "directory", + "index", + "little black book", + "rolodex" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2b9", + "label": "Address Book", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 0C60.7 0 32 28.7 32 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H96zM208 288h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H144c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-32-96a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM512 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V80zM496 192c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm16 144c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V336z" + }, + "regular": { + "last_modified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M384 48c8.8 0 16 7.2 16 16V448c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H384zM96 0C60.7 0 32 28.7 32 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H96zM240 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zm-32 32c-44.2 0-80 35.8-80 80c0 8.8 7.2 16 16 16H336c8.8 0 16-7.2 16-16c0-44.2-35.8-80-80-80H208zM512 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V80zM496 192c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm16 144c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V336z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "address-card": { + "aliases": { + "names": [ + "contact-card", + "vcard" + ], + "unicodes": { + "composite": [ + "f2bc" + ], + "secondary": [ + "10f2bb" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "about", + "contact", + "id", + "identification", + "postcard", + "profile", + "registration" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2bb", + "label": "Address Card", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm80 256h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-32-96a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zm256-32H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M512 80c8.8 0 16 7.2 16 16V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16H512zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM208 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zm-32 32c-44.2 0-80 35.8-80 80c0 8.8 7.2 16 16 16H304c8.8 0 16-7.2 16-16c0-44.2-35.8-80-80-80H176zM376 144c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H376zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H376z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "adn": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f170", + "label": "App.net", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z" + } + }, + "free": [ + "brands" + ] + }, + "adversal": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36a", + "label": "Adversal", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z" + } + }, + "free": [ + "brands" + ] + }, + "affiliatetheme": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36b", + "label": "affiliatetheme", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z" + } + }, + "free": [ + "brands" + ] + }, + "airbnb": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f834", + "label": "Airbnb", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 373.12c-25.24-31.67-40.08-59.43-45-83.18-22.55-88 112.61-88 90.06 0-5.45 24.25-20.29 52-45 83.18zm138.15 73.23c-42.06 18.31-83.67-10.88-119.3-50.47 103.9-130.07 46.11-200-18.85-200-54.92 0-85.16 46.51-73.28 100.5 6.93 29.19 25.23 62.39 54.43 99.5-32.53 36.05-60.55 52.69-85.15 54.92-50 7.43-89.11-41.06-71.3-91.09 15.1-39.16 111.72-231.18 115.87-241.56 15.75-30.07 25.56-57.4 59.38-57.4 32.34 0 43.4 25.94 60.37 59.87 36 70.62 89.35 177.48 114.84 239.09 13.17 33.07-1.37 71.29-37.01 86.64zm47-136.12C280.27 35.93 273.13 32 224 32c-45.52 0-64.87 31.67-84.66 72.79C33.18 317.1 22.89 347.19 22 349.81-3.22 419.14 48.74 480 111.63 480c21.71 0 60.61-6.06 112.37-62.4 58.68 63.78 101.26 62.4 112.37 62.4 62.89.05 114.85-60.86 89.61-130.19.02-3.89-16.82-38.9-16.82-39.58z" + } + }, + "free": [ + "brands" + ] + }, + "algolia": { + "changes": [ + "5.0.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36c", + "label": "Algolia", + "voted": false, + "svg": { + "brands": { + "last_modified": 1675090779, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0C116.1 0 2 112.7 0 252.1C-2 393.6 112.9 510.8 254.5 511.6c43.7 .3 85.9-10.4 123.3-30.7c3.6-2 4.2-7 1.1-9.7l-24-21.2c-4.9-4.3-11.8-5.5-17.8-3c-26.1 11.1-54.5 16.8-83.7 16.4C139 461.9 46.5 366.8 48.3 252.4C50.1 139.5 142.6 48.2 256 48.2H463.7V417.2L345.9 312.5c-3.8-3.4-9.7-2.7-12.7 1.3c-18.9 25-49.7 40.6-83.9 38.2c-47.5-3.3-85.9-41.5-89.5-88.9c-4.2-56.6 40.6-103.9 96.3-103.9c50.4 0 91.9 38.8 96.2 88c.4 4.4 2.4 8.5 5.7 11.4l30.7 27.2c3.5 3.1 9 1.2 9.9-3.4c2.2-11.8 3-24.2 2.1-36.8c-4.9-72-63.3-130-135.4-134.4c-82.7-5.1-151.8 59.5-154 140.6c-2.1 78.9 62.6 147 141.6 148.7c33 .7 63.6-9.6 88.3-27.6L495 509.4c6.6 5.8 17 1.2 17-7.7V9.7c0-5.4-4.4-9.7-9.7-9.7H256z" + } + }, + "free": [ + "brands" + ] + }, + "align-center": { + "aliases": { + "unicodes": { + "secondary": [ + "10f037" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "middle", + "paragraph", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f037", + "label": "Align Center", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 64c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32s14.3 32 32 32H320c17.7 0 32-14.3 32-32zm96 128c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32zM0 448c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32zM352 320c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32s14.3 32 32 32H320c17.7 0 32-14.3 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "align-justify": { + "aliases": { + "unicodes": { + "secondary": [ + "10f039" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "paragraph", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f039", + "label": "Align Justify", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64S14.3 96 32 96H416c17.7 0 32-14.3 32-32zm0 256c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32zM0 192c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32zM448 448c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "align-left": { + "aliases": { + "unicodes": { + "secondary": [ + "10f036" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "paragraph", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f036", + "label": "Align Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M288 64c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32H256c17.7 0 32 14.3 32 32zm0 256c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H256c17.7 0 32 14.3 32 32zM0 192c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "align-right": { + "aliases": { + "unicodes": { + "secondary": [ + "10f038" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "paragraph", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f038", + "label": "Align Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 64c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32zm0 256c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32zM0 192c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "alipay": { + "changes": [ + "5.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f642", + "label": "Alipay", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M377.74 32H70.26C31.41 32 0 63.41 0 102.26v307.48C0 448.59 31.41 480 70.26 480h307.48c38.52 0 69.76-31.08 70.26-69.6-45.96-25.62-110.59-60.34-171.6-88.44-32.07 43.97-84.14 81-148.62 81-70.59 0-93.73-45.3-97.04-76.37-3.97-39.01 14.88-81.5 99.52-81.5 35.38 0 79.35 10.25 127.13 24.96 16.53-30.09 26.45-60.34 26.45-60.34h-178.2v-16.7h92.08v-31.24H88.28v-19.01h109.44V92.34h50.92v50.42h109.44v19.01H248.63v31.24h88.77s-15.21 46.62-38.35 90.92c48.93 16.7 100.01 36.04 148.62 52.74V102.26C447.83 63.57 416.43 32 377.74 32zM47.28 322.95c.99 20.17 10.25 53.73 69.93 53.73 52.07 0 92.58-39.68 117.87-72.9-44.63-18.68-84.48-31.41-109.44-31.41-67.45 0-79.35 33.06-78.36 50.58z" + } + }, + "free": [ + "brands" + ] + }, + "amazon": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f270", + "label": "Amazon", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z" + } + }, + "free": [ + "brands" + ] + }, + "amazon-pay": { + "changes": [ + "5.0.2", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42c", + "label": "Amazon Pay", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M14 325.3c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7a595.88 595.88 0 0 0 127.4 46.3 616.61 616.61 0 0 0 63.2 11.8 603.33 603.33 0 0 0 95 5.2c17.4-.4 34.8-1.8 52.1-3.8a603.66 603.66 0 0 0 163.3-42.8c2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9a70 70 0 0 1-9.6 7.4c-30.7 21.1-64.2 36.4-99.6 47.9a473.31 473.31 0 0 1-75.1 17.6 431 431 0 0 1-53.2 4.8 21.3 21.3 0 0 0-2.5.3H308a21.3 21.3 0 0 0-2.5-.3c-3.6-.2-7.2-.3-10.7-.4a426.3 426.3 0 0 1-50.4-5.3A448.4 448.4 0 0 1 164 420a443.33 443.33 0 0 1-145.6-87c-1.8-1.6-3-3.8-4.4-5.7zM172 65.1l-4.3.6a80.92 80.92 0 0 0-38 15.1c-2.4 1.7-4.6 3.5-7.1 5.4a4.29 4.29 0 0 1-.4-1.4c-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6h-11.5c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3v-72.4c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zM124.6 107a3.48 3.48 0 0 1 1.7-3.3c13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9a3.57 3.57 0 0 1-1.7-3.3c.1-14.1 0-28.1 0-42.2s.1-28 0-42.1zm205.7-41.9c-1 .1-2 .3-2.9.4a148 148 0 0 0-28.9 4.1c-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9a7.84 7.84 0 0 1-.2 1.4c-.5-.1-.9 0-1.3-.1a180.56 180.56 0 0 0-32-4.9c-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4a7.36 7.36 0 0 1 1.6-1.1c.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0a4.84 4.84 0 0 0 4.8-4.7 26.2 26.2 0 0 0 .1-2.8v-106a80 80 0 0 0-.9-12.9c-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7a3.33 3.33 0 0 1-1.5 3c-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8a20.08 20.08 0 0 1-12.4-13.3 32.9 32.9 0 0 1-.1-19.4c2.5-8.3 8.4-13 16.4-15.6a61.33 61.33 0 0 1 24.8-2.2c8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3s-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3a88.42 88.42 0 0 0-21-3.9 147.32 147.32 0 0 0-39.2 1.9c-14.3 2.7-27.9 7.3-40 15.6a13.75 13.75 0 0 0-3.7 3.5 5.11 5.11 0 0 0-.5 4c.4 1.5 2.1 1.9 3.6 1.8a16.2 16.2 0 0 0 2.2-.1c7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9a71.64 71.64 0 0 1 14.4 2.7c5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1a17.6 17.6 0 0 0-1 3c-.5 2.9 1.2 4.8 4.1 4.1a10.56 10.56 0 0 0 4.8-2.5 145.91 145.91 0 0 0 12.7-13.4c12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM493.1 199q-19.35-53.55-38.7-107.2c-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5a43.1 43.1 0 0 0 1.9 6.1q29.4 72.75 59.1 145.5c1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3a42.13 42.13 0 0 1-15.4 1.1c-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8q-.15 5 0 9.9c.1 5.5 2 8 7.4 8.9a108.18 108.18 0 0 0 16.9 2c17.1.4 30.7-6.5 39.5-21.4a131.63 131.63 0 0 0 9.2-18.4q35.55-89.7 70.6-179.6a26.62 26.62 0 0 0 1.6-5.5c.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0a7.54 7.54 0 0 0-7.7 5.2c-.5 1.4-1.1 2.7-1.6 4.1l-34.8 100c-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z" + } + }, + "free": [ + "brands" + ] + }, + "amilia": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36d", + "label": "Amilia", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm50.2 348c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7 0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5z" + } + }, + "free": [ + "brands" + ] + }, + "anchor": { + "aliases": { + "unicodes": { + "composite": [ + "2693" + ], + "secondary": [ + "10f13d" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchor", + "berth", + "boat", + "dock", + "embed", + "link", + "maritime", + "moor", + "port", + "secure", + "ship", + "tool" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f13d", + "label": "Anchor", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c88.4 0 160-71.6 160-160v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-56-56c-9.4-9.4-24.6-9.4-33.9 0l-56 56c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 53-43 96-96 96H320V240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1z" + } + }, + "free": [ + "solid" + ] + }, + "anchor-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "marina", + "not affected", + "ok", + "okay", + "port" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4aa", + "label": "Anchor Circle Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8.2 0 16.3-.6 24.2-1.8c-22.2-16.2-40.4-37.5-53-62.2H320V368 240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + }, + "free": [ + "solid" + ] + }, + "anchor-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "marina", + "port" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4ab", + "label": "Anchor Circle Exclamation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8.2 0 16.3-.6 24.2-1.8c-22.2-16.2-40.4-37.5-53-62.2H320V368 240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "anchor-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destroy", + "marina", + "port" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4ac", + "label": "Anchor Circle Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8.2 0 16.3-.6 24.2-1.8c-22.2-16.2-40.4-37.5-53-62.2H320V368 240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + }, + "free": [ + "solid" + ] + }, + "anchor-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "lockdown", + "marina", + "port", + "quarantine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4ad", + "label": "Anchor Lock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm21.1 80C367 158.8 384 129.4 384 96c0-53-43-96-96-96s-96 43-96 96c0 33.4 17 62.8 42.9 80H224c-17.7 0-32 14.3-32 32s14.3 32 32 32h32V448H208c-53 0-96-43-96-96v-6.1l7 7c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L97 263c-9.4-9.4-24.6-9.4-33.9 0L7 319c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l7-7V352c0 88.4 71.6 160 160 160h80 80c8 0 15.9-.6 23.6-1.7c-4.8-9-7.6-19.3-7.6-30.3V446.7c-5.2 .9-10.5 1.3-16 1.3H320V240h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H341.1zM528 240c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "android": { + "changes": [ + "3.2.0", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "robot" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f17b", + "label": "Android", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M420.55,301.93a24,24,0,1,1,24-24,24,24,0,0,1-24,24m-265.1,0a24,24,0,1,1,24-24,24,24,0,0,1-24,24m273.7-144.48,47.94-83a10,10,0,1,0-17.27-10h0l-48.54,84.07a301.25,301.25,0,0,0-246.56,0L116.18,64.45a10,10,0,1,0-17.27,10h0l47.94,83C64.53,202.22,8.24,285.55,0,384H576c-8.24-98.45-64.54-181.78-146.85-226.55" + } + }, + "free": [ + "brands" + ] + }, + "angellist": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f209", + "label": "AngelList", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z" + } + }, + "free": [ + "brands" + ] + }, + "angle-down": { + "aliases": { + "unicodes": { + "composite": [ + "2304" + ], + "secondary": [ + "10f107" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Down Arrowhead", + "arrow", + "caret", + "download", + "expand" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f107", + "label": "Angle Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M169.4 342.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 274.7 54.6 137.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z" + } + }, + "free": [ + "solid" + ] + }, + "angle-left": { + "aliases": { + "unicodes": { + "composite": [ + "2039" + ], + "secondary": [ + "10f104" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Single Left-Pointing Angle Quotation Mark", + "arrow", + "back", + "caret", + "less", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f104", + "label": "Angle Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z" + } + }, + "free": [ + "solid" + ] + }, + "angle-right": { + "aliases": { + "unicodes": { + "composite": [ + "203a" + ], + "secondary": [ + "10f105" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Single Right-Pointing Angle Quotation Mark", + "arrow", + "care", + "forward", + "more", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f105", + "label": "Angle Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M246.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L178.7 256 41.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z" + } + }, + "free": [ + "solid" + ] + }, + "angle-up": { + "aliases": { + "unicodes": { + "composite": [ + "2303" + ], + "secondary": [ + "10f106" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Up Arrowhead", + "arrow", + "caret", + "collapse", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f106", + "label": "Angle Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M169.4 137.4c12.5-12.5 32.8-12.5 45.3 0l160 160c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L192 205.3 54.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l160-160z" + } + }, + "free": [ + "solid" + ] + }, + "angles-down": { + "aliases": { + "names": [ + "angle-double-down" + ], + "unicodes": { + "secondary": [ + "10f103" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "caret", + "download", + "expand" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f103", + "label": "Angles Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M214.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 402.7 329.4 265.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-160 160zm160-352l-160 160c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 210.7 329.4 73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3z" + } + }, + "free": [ + "solid" + ] + }, + "angles-left": { + "aliases": { + "names": [ + "angle-double-left" + ], + "unicodes": { + "composite": [ + "ab" + ], + "secondary": [ + "10f100" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Left-Pointing Double Angle Quotation Mark", + "arrows", + "back", + "caret", + "laquo", + "previous", + "quote" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f100", + "label": "Angles Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160zm352-160l-160 160c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L269.3 256 406.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0z" + } + }, + "free": [ + "solid" + ] + }, + "angles-right": { + "aliases": { + "names": [ + "angle-double-right" + ], + "unicodes": { + "composite": [ + "bb" + ], + "secondary": [ + "10f101" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right-Pointing Double Angle Quotation Mark", + "arrows", + "caret", + "forward", + "more", + "next", + "quote", + "raquo" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f101", + "label": "Angles Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L370.7 256 233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L178.7 256 41.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z" + } + }, + "free": [ + "solid" + ] + }, + "angles-up": { + "aliases": { + "names": [ + "angle-double-up" + ], + "unicodes": { + "secondary": [ + "10f102" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "caret", + "collapse", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f102", + "label": "Angles Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M214.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 109.3 329.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160zm160 352l-160-160c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 329.4 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z" + } + }, + "free": [ + "solid" + ] + }, + "angrycreative": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36e", + "label": "Angry Creative", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z" + } + }, + "free": [ + "brands" + ] + }, + "angular": { + "changes": [ + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f420", + "label": "Angular", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M185.7 268.1h76.2l-38.1-91.6-38.1 91.6zM223.8 32L16 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7zM354 373.8h-48.6l-26.2-65.4H168.6l-26.2 65.4H93.7L223.8 81.5z" + } + }, + "free": [ + "brands" + ] + }, + "ankh": { + "aliases": { + "unicodes": { + "composite": [ + "2625" + ], + "secondary": [ + "10f644" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Ankh", + "amulet", + "copper", + "coptic christianity", + "copts", + "crux ansata", + "egypt", + "venus" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f644", + "label": "Ankh", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M96 128c0-35.3 28.7-64 64-64s64 28.7 64 64c0 41.6-20.7 76.6-46.6 104.1c-5.9 6.2-11.8 11.8-17.4 16.7c-5.6-4.9-11.5-10.5-17.4-16.7C116.7 204.6 96 169.6 96 128zM160 0C89.3 0 32 57.3 32 128c0 52.4 21.5 95.5 46.8 128H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96V480c0 17.7 14.3 32 32 32s32-14.3 32-32V320h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H241.2c25.4-32.5 46.8-75.6 46.8-128C288 57.3 230.7 0 160 0z" + } + }, + "free": [ + "solid" + ] + }, + "app-store": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f36f", + "label": "App Store", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z" + } + }, + "free": [ + "brands" + ] + }, + "app-store-ios": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f370", + "label": "iOS App Store", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z" + } + }, + "free": [ + "brands" + ] + }, + "apper": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f371", + "label": "Apper Systems AB", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8.3-3.3.3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z" + } + }, + "free": [ + "brands" + ] + }, + "apple": { + "changes": [ + "3.2.0", + "5.0.0", + "5.0.7", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fruit", + "ios", + "mac", + "operating system", + "os", + "osx" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f179", + "label": "Apple", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z" + } + }, + "free": [ + "brands" + ] + }, + "apple-pay": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f415", + "label": "Apple Pay", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9.3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5.1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8.4 9.3.7 11.6.7z" + } + }, + "free": [ + "brands" + ] + }, + "apple-whole": { + "aliases": { + "names": [ + "apple-alt" + ], + "unicodes": { + "composite": [ + "1f34e", + "1f34f" + ], + "secondary": [ + "10f5d1" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "fall", + "fruit", + "fuji", + "green", + "green apple", + "macintosh", + "orchard", + "red", + "red apple", + "seasonal", + "vegan" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5d1", + "label": "Apple Whole", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 112c-8.8 0-16-7.2-16-16V80c0-44.2 35.8-80 80-80h16c8.8 0 16 7.2 16 16V32c0 44.2-35.8 80-80 80H224zM0 288c0-76.3 35.7-160 112-160c27.3 0 59.7 10.3 82.7 19.3c18.8 7.3 39.9 7.3 58.7 0c22.9-8.9 55.4-19.3 82.7-19.3c76.3 0 112 83.7 112 160c0 128-80 224-160 224c-16.5 0-38.1-6.6-51.5-11.3c-8.1-2.8-16.9-2.8-25 0c-13.4 4.7-35 11.3-51.5 11.3C80 512 0 416 0 288z" + } + }, + "free": [ + "solid" + ] + }, + "archway": { + "aliases": { + "unicodes": { + "secondary": [ + "10f557" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arc", + "monument", + "road", + "street", + "tunnel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f557", + "label": "Archway", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zm0 384c-17.7 0-32 14.3-32 32s14.3 32 32 32H96h64V352c0-53 43-96 96-96s96 43 96 96V480h64 64c17.7 0 32-14.3 32-32s-14.3-32-32-32V128H32V416z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-down": { + "aliases": { + "unicodes": { + "composite": [ + "2193" + ], + "secondary": [ + "10f063" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Downwards Arrow", + "download" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f063", + "label": "Arrow Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M169.4 470.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 370.8 224 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 306.7L54.6 265.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-down-1-9": { + "aliases": { + "names": [ + "sort-numeric-asc", + "sort-numeric-down" + ], + "unicodes": { + "secondary": [ + "10f162" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f162", + "label": "Arrow Down 1 9", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M410.7 38c-8.3-6-19.1-7.7-28.8-4.4l-48 16c-16.8 5.6-25.8 23.7-20.2 40.5s23.7 25.8 40.5 20.2l5.9-2V160H344c-17.7 0-32 14.3-32 32s14.3 32 32 32h48 48c17.7 0 32-14.3 32-32s-14.3-32-32-32H424V64c0-10.3-4.9-19.9-13.3-26zM120 480c9 0 17.5-3.8 23.6-10.4l88-96c11.9-13 11.1-33.3-2-45.2s-33.3-11.1-45.2 2L152 365.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V365.7L55.6 330.4c-11.9-13-32.2-13.9-45.2-2s-13.9 32.2-2 45.2l88 96C102.5 476.2 111 480 120 480zM378.3 307a32 32 0 1 1 27.4 57.9A32 32 0 1 1 378.3 307zM365.1 419.8l-6.8 9.2c-10.5 14.2-7.5 34.2 6.7 44.8s34.2 7.5 44.8-6.7l48.8-65.8c14-18.9 21.5-41.7 21.5-65.2c0-48.6-39.4-88-88-88s-88 39.4-88 88c0 39.2 25.6 72.4 61.1 83.8z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-down-9-1": { + "aliases": { + "names": [ + "sort-numeric-desc", + "sort-numeric-down-alt" + ], + "unicodes": { + "secondary": [ + "10f886" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f886", + "label": "Arrow Down 9 1", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M120 480c9 0 17.5-3.8 23.6-10.4l88-96c11.9-13 11.1-33.3-2-45.2s-33.3-11.1-45.2 2L152 365.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V365.7L55.6 330.4c-11.9-13-32.2-13.9-45.2-2s-13.9 32.2-2 45.2l88 96C102.5 476.2 111 480 120 480zM410.7 294c-8.3-6-19.1-7.7-28.8-4.4l-48 16c-16.8 5.6-25.8 23.7-20.2 40.5s23.7 25.8 40.5 20.2l5.9-2V416H344c-17.7 0-32 14.3-32 32s14.3 32 32 32h48 48c17.7 0 32-14.3 32-32s-14.3-32-32-32H424V320c0-10.3-4.9-19.9-13.3-26zM378.3 91a32 32 0 1 1 27.4 57.9A32 32 0 1 1 378.3 91zM365.1 203.8l-6.8 9.2c-10.5 14.2-7.5 34.2 6.7 44.8s34.2 7.5 44.8-6.7l48.8-65.8c14-18.9 21.5-41.7 21.5-65.2c0-48.6-39.4-88-88-88s-88 39.4-88 88c0 39.2 25.6 72.4 61.1 83.8z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-down-a-z": { + "aliases": { + "names": [ + "sort-alpha-asc", + "sort-alpha-down" + ], + "unicodes": { + "secondary": [ + "10f15d" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f15d", + "label": "Arrow Down A Z", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M143.6 469.6C137.5 476.2 129 480 120 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L88 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM280 320c0-17.7 14.3-32 32-32H440c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9L389.3 416H440c17.7 0 32 14.3 32 32s-14.3 32-32 32H312c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9L362.7 352H312c-17.7 0-32-14.3-32-32zM376 32c12.1 0 23.2 6.8 28.6 17.7l64 128 16 32c7.9 15.8 1.5 35-14.3 42.9s-35 1.5-42.9-14.3L420.2 224H331.8l-7.2 14.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l16-32 64-128C352.8 38.8 363.9 32 376 32zM355.8 176h40.4L376 135.6 355.8 176z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-down-long": { + "aliases": { + "names": [ + "long-arrow-down" + ], + "unicodes": { + "secondary": [ + "10f175" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "long-arrow-down" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f175", + "label": "Arrow Down Long", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M137.4 502.6c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 402.7 192 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 370.7L54.6 329.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-down-short-wide": { + "aliases": { + "names": [ + "sort-amount-desc", + "sort-amount-down-alt" + ], + "unicodes": { + "secondary": [ + "10f884" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "order", + "sort-amount-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f884", + "label": "Arrow Down Short Wide", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M151.6 469.6C145.5 476.2 137 480 128 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L96 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 128h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 128H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 128H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H320c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-down-up-across-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "border", + "crossing", + "transfer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4af", + "label": "Arrow Down Up Across Line", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M137.4 502.6c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 402.7V288H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H448V109.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L384 109.3V224H192 128 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96V402.7L86.6 361.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96zM128 192h64V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V192zM448 320H384V448c0 17.7 14.3 32 32 32s32-14.3 32-32V320z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-down-up-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "border", + "closed", + "crossing", + "lockdown", + "quarantine", + "transfer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4b0", + "label": "Arrow Down Up Lock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M150.6 502.6l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 402.7V288H416V272c0-17.2 3.9-33.5 10.8-48H352V109.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-6-6-14.1-9.4-22.6-9.4s-16.6 3.4-22.6 9.4l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L288 109.3V224l-128 0H96l-64 0c-17.7 0-32 14.3-32 32s14.3 32 32 32H96V402.7L54.6 361.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0zM160 192V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V192h64zM288 320V448c0 17.7 14.3 32 32 32s32-14.3 32-32V320H288zm240-80c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-down-wide-short": { + "aliases": { + "names": [ + "sort-amount-asc", + "sort-amount-down" + ], + "unicodes": { + "secondary": [ + "10f160" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "number", + "order", + "sort-amount-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f160", + "label": "Arrow Down Wide Short", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M151.6 469.6C145.5 476.2 137 480 128 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L96 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM320 480c-17.7 0-32-14.3-32-32s14.3-32 32-32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320zm0-128c-17.7 0-32-14.3-32-32s14.3-32 32-32H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H320z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-down-z-a": { + "aliases": { + "names": [ + "sort-alpha-desc", + "sort-alpha-down-alt" + ], + "unicodes": { + "secondary": [ + "10f881" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f881", + "label": "Arrow Down Z A", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M143.6 469.6C137.5 476.2 129 480 120 480s-17.5-3.8-23.6-10.4l-88-96c-11.9-13-11.1-33.3 2-45.2s33.3-11.1 45.2 2L88 365.7V64c0-17.7 14.3-32 32-32s32 14.3 32 32V365.7l32.4-35.4c11.9-13 32.2-13.9 45.2-2s13.9 32.2 2 45.2l-88 96zM280 64c0-17.7 14.3-32 32-32H440c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9L389.3 160H440c17.7 0 32 14.3 32 32s-14.3 32-32 32H312c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9L362.7 96H312c-17.7 0-32-14.3-32-32zm96 192c12.1 0 23.2 6.8 28.6 17.7l64 128 16 32c7.9 15.8 1.5 35-14.3 42.9s-35 1.5-42.9-14.3L420.2 448H331.8l-7.2 14.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l16-32 64-128c5.4-10.8 16.5-17.7 28.6-17.7zM355.8 400h40.4L376 359.6 355.8 400z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-left": { + "aliases": { + "unicodes": { + "composite": [ + "2190" + ], + "secondary": [ + "10f060" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Leftwards Arrow", + "back", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f060", + "label": "Arrow Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288 416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0L214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-left-long": { + "aliases": { + "names": [ + "long-arrow-left" + ], + "unicodes": { + "secondary": [ + "10f177" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "long-arrow-left", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f177", + "label": "Arrow Left Long", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 288 480 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-370.7 0 73.4-73.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-128 128z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-pointer": { + "aliases": { + "names": [ + "mouse-pointer" + ], + "unicodes": { + "secondary": [ + "10f245" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "cursor", + "select" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f245", + "label": "Arrow Pointer", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 55.2V426c0 12.2 9.9 22 22 22c6.3 0 12.4-2.7 16.6-7.5L121.2 346l58.1 116.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9L179.8 320H297.9c12.2 0 22.1-9.9 22.1-22.1c0-6.3-2.7-12.3-7.4-16.5L38.6 37.9C34.3 34.1 28.9 32 23.2 32C10.4 32 0 42.4 0 55.2z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-right": { + "aliases": { + "unicodes": { + "composite": [ + "2192" + ], + "secondary": [ + "10f061" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rightwards Arrow", + "forward", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f061", + "label": "Arrow Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-right-arrow-left": { + "aliases": { + "names": [ + "exchange" + ], + "unicodes": { + "composite": [ + "21c4" + ], + "secondary": [ + "10f0ec" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rightwards Arrow Over Leftwards Arrow", + "arrow", + "arrows", + "reciprocate", + "return", + "swap", + "transfer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ec", + "label": "Arrow Right Arrow Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M438.6 150.6c12.5-12.5 12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.7 96 32 96C14.3 96 0 110.3 0 128s14.3 32 32 32l306.7 0-41.4 41.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l96-96zm-333.3 352c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 416 416 416c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0 41.4-41.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3l96 96z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-right-from-bracket": { + "aliases": { + "names": [ + "sign-out" + ], + "unicodes": { + "secondary": [ + "10f08b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "exit", + "leave", + "log out", + "logout" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f08b", + "label": "Arrow Right From Bracket", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224 192 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l210.7 0-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128zM160 96c17.7 0 32-14.3 32-32s-14.3-32-32-32L96 32C43 32 0 75 0 128L0 384c0 53 43 96 96 96l64 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-64 0c-17.7 0-32-14.3-32-32l0-256c0-17.7 14.3-32 32-32l64 0z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-right-long": { + "aliases": { + "names": [ + "long-arrow-right" + ], + "unicodes": { + "secondary": [ + "10f178" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "long-arrow-right", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f178", + "label": "Arrow Right Long", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l370.7 0-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-right-to-bracket": { + "aliases": { + "names": [ + "sign-in" + ], + "unicodes": { + "secondary": [ + "10f090" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "enter", + "join", + "log in", + "login", + "sign in", + "sign up", + "sign-in", + "signin", + "signup" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f090", + "label": "Arrow Right To Bracket", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 96l64 0c17.7 0 32 14.3 32 32l0 256c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l64 0c53 0 96-43 96-96l0-256c0-53-43-96-96-96l-64 0c-17.7 0-32 14.3-32 32s14.3 32 32 32zm-9.4 182.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L242.7 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l210.7 0-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l128-128z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-right-to-city": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "exodus", + "rural", + "urban" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4b3", + "label": "Arrow Right To City", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 48c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48V192h40V120c0-13.3 10.7-24 24-24s24 10.7 24 24v72h24c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H432 336c-26.5 0-48-21.5-48-48V48zm64 32v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm16 80c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H368zM352 272v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm176-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H528zM512 368v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H528c-8.8 0-16 7.2-16 16zM166.6 153.4l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L146.7 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H146.7l-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-rotate-left": { + "aliases": { + "names": [ + "arrow-left-rotate", + "arrow-rotate-back", + "arrow-rotate-backward", + "undo" + ], + "unicodes": { + "composite": [ + "21ba" + ], + "secondary": [ + "10f0e2" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Anticlockwise Open Circle Arrow", + "back", + "control z", + "exchange", + "oops", + "return", + "rotate", + "swap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0e2", + "label": "Arrow Rotate Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M109.7 160H160c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V64C0 46.3 14.3 32 32 32s32 14.3 32 32v51.2L81.6 97.6c87.5-87.5 229.3-87.5 316.8 0s87.5 229.3 0 316.8s-229.3 87.5-316.8 0c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0c62.5 62.5 163.8 62.5 226.3 0s62.5-163.8 0-226.3s-163.8-62.5-226.3 0L109.7 160z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-rotate-right": { + "aliases": { + "names": [ + "arrow-right-rotate", + "arrow-rotate-forward", + "redo" + ], + "unicodes": { + "composite": [ + "21bb" + ], + "secondary": [ + "10f01e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Clockwise Open Circle Arrow", + "forward", + "refresh", + "reload", + "repeat" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f01e", + "label": "Arrow Rotate Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M370.3 160H320c-17.7 0-32 14.3-32 32s14.3 32 32 32H448c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v51.2L398.4 97.6c-87.5-87.5-229.3-87.5-316.8 0s-87.5 229.3 0 316.8s229.3 87.5 316.8 0c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3s163.8-62.5 226.3 0L370.3 160z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-trend-down": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "line", + "stocks", + "trend" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e097", + "label": "Arrow Trend Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 352c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v82.7L342.6 137.4c-12.5-12.5-32.8-12.5-45.3 0L192 242.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0L320 205.3 466.7 352H384z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-trend-up": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "line", + "stocks", + "trend" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e098", + "label": "Arrow Trend Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 160c-17.7 0-32-14.3-32-32s14.3-32 32-32H544c17.7 0 32 14.3 32 32V288c0 17.7-14.3 32-32 32s-32-14.3-32-32V205.3L342.6 374.6c-12.5 12.5-32.8 12.5-45.3 0L192 269.3 54.6 406.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l160-160c12.5-12.5 32.8-12.5 45.3 0L320 306.7 466.7 160H384z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-turn-down": { + "aliases": { + "names": [ + "level-down" + ], + "unicodes": { + "secondary": [ + "10f149" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f149", + "label": "Arrow Turn Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 64C14.3 64 0 49.7 0 32S14.3 0 32 0l96 0c53 0 96 43 96 96l0 306.7 73.4-73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-128 128c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 402.7 160 96c0-17.7-14.3-32-32-32L32 64z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-turn-up": { + "aliases": { + "names": [ + "level-up" + ], + "unicodes": { + "secondary": [ + "10f148" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f148", + "label": "Arrow Turn Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 448c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0c53 0 96-43 96-96l0-306.7 73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 109.3 160 416c0 17.7-14.3 32-32 32l-96 0z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-up": { + "aliases": { + "unicodes": { + "composite": [ + "2191" + ], + "secondary": [ + "10f062" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Upwards Arrow", + "forward", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f062", + "label": "Arrow Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M214.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 141.2V448c0 17.7 14.3 32 32 32s32-14.3 32-32V141.2L329.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-up-1-9": { + "aliases": { + "names": [ + "sort-numeric-up" + ], + "unicodes": { + "secondary": [ + "10f163" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f163", + "label": "Arrow Up 1 9", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M410.7 38c8.3 6 13.3 15.7 13.3 26v96h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H392 344c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V108.4l-5.9 2c-16.8 5.6-34.9-3.5-40.5-20.2s3.5-34.9 20.2-40.5l48-16c9.8-3.3 20.5-1.6 28.8 4.4zM120 32c9 0 17.5 3.8 23.6 10.4l88 96c11.9 13 11.1 33.3-2 45.2s-33.3 11.1-45.2-2L152 146.3V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V146.3L55.6 181.6c-11.9 13-32.2 13.9-45.2 2s-13.9-32.2-2-45.2l88-96C102.5 35.8 111 32 120 32zM405.7 364.9A32 32 0 1 0 378.3 307a32 32 0 1 0 27.4 57.9zm-40.7 54.9C329.6 408.4 304 375.2 304 336c0-48.6 39.4-88 88-88s88 39.4 88 88c0 23.5-7.5 46.3-21.5 65.2L409.7 467c-10.5 14.2-30.6 17.2-44.8 6.7s-17.2-30.6-6.7-44.8l6.8-9.2z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-up-9-1": { + "aliases": { + "names": [ + "sort-numeric-up-alt" + ], + "unicodes": { + "secondary": [ + "10f887" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "numbers", + "order", + "sort-numeric-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f887", + "label": "Arrow Up 9 1", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M120 32c9 0 17.5 3.8 23.6 10.4l88 96c11.9 13 11.1 33.3-2 45.2s-33.3 11.1-45.2-2L152 146.3V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V146.3L55.6 181.6c-11.9 13-32.2 13.9-45.2 2s-13.9-32.2-2-45.2l88-96C102.5 35.8 111 32 120 32zM410.7 294c8.3 6 13.3 15.7 13.3 26v96h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H392 344c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V364.4l-5.9 2c-16.8 5.6-34.9-3.5-40.5-20.2s3.5-34.9 20.2-40.5l48-16c9.8-3.3 20.5-1.6 28.8 4.4zm-5-145.1A32 32 0 1 0 378.3 91a32 32 0 1 0 27.4 57.9zm-40.7 54.9C329.6 192.4 304 159.2 304 120c0-48.6 39.4-88 88-88s88 39.4 88 88c0 23.5-7.5 46.3-21.5 65.2L409.7 251c-10.5 14.2-30.6 17.2-44.8 6.7s-17.2-30.6-6.7-44.8l6.8-9.2z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-up-a-z": { + "aliases": { + "names": [ + "sort-alpha-up" + ], + "unicodes": { + "secondary": [ + "10f15e" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f15e", + "label": "Arrow Up A Z", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M143.6 42.4C137.5 35.8 129 32 120 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L88 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM280 320c0 17.7 14.3 32 32 32h50.7l-73.4 73.4c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H440c17.7 0 32-14.3 32-32s-14.3-32-32-32H389.3l73.4-73.4c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H312c-17.7 0-32 14.3-32 32zM376 32c-12.1 0-23.2 6.8-28.6 17.7l-64 128-16 32c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l7.2-14.3h88.4l7.2 14.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9l-16-32-64-128C399.2 38.8 388.1 32 376 32zM355.8 176L376 135.6 396.2 176H355.8z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-up-from-bracket": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "share", + "transfer", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e09a", + "label": "Arrow Up From Bracket", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M246.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 109.3V320c0 17.7 14.3 32 32 32s32-14.3 32-32V109.3l73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128zM64 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 53 43 96 96 96H352c53 0 96-43 96-96V352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V352z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-up-from-ground-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "groundwater", + "spring", + "water supply", + "water table" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4b5", + "label": "Arrow Up From Ground Water", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 352c17.7 0 32-14.3 32-32V109.3l25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L256 109.3V320c0 17.7 14.3 32 32 32zm-18.5 69.9C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0zM192 192H48c-26.5 0-48 21.5-48 48V425c5.3-3.1 11.2-5.4 17.5-6.9c13.1-3.1 26.7-9.8 37.3-18.6c22.2-18.7 54.3-20.1 78.1-3.4c18 12.4 40.1 20.3 59.1 20.3V192zm384 48c0-26.5-21.5-48-48-48H384V416.5h0c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.3 78.1 3.4c10.6 8.8 24.2 15.6 37.3 18.6c6.3 1.5 12.1 3.8 17.5 6.9V240z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-up-from-water-pump": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flood", + "groundwater", + "pump", + "submersible", + "sump pump" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4b6", + "label": "Arrow Up From Water Pump", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 0C85.5 0 64 21.5 64 48V256H48c-26.5 0-48 21.5-48 48v96c0 8 2 15.6 5.4 22.2c3.8-1.7 7.8-3.1 12-4.1c13.1-3.1 26.7-9.8 37.3-18.6c22.2-18.7 54.3-20.1 78.1-3.4c18 12.4 40.1 20.3 59.2 20.3c21.1 0 42-8.5 59.2-20.3c22.1-15.5 51.6-15.5 73.7 0c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.3 78.1 3.4c10.6 8.8 24.2 15.6 37.3 18.6c4.2 1 8.2 2.4 12 4.1C574 415.6 576 408 576 400V304c0-26.5-21.5-48-48-48H480l0-146.7 25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 109.3 416 256H288V48c0-26.5-21.5-48-48-48H112zM306.5 421.9c-11.1-7.9-25.9-7.9-37 0C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448c-27.5 0-55-10.6-77.5-26.1z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-up-long": { + "aliases": { + "names": [ + "long-arrow-up" + ], + "unicodes": { + "secondary": [ + "10f176" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "long-arrow-up", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f176", + "label": "Arrow Up Long", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M182.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L128 109.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V109.3l73.4 73.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-128-128z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-up-right-dots": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "growth", + "increase", + "population" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4b7", + "label": "Arrow Up Right Dots", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h50.7L9.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L256 109.3V160c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H160zM576 80a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM448 208a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM400 384a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm48 80a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm128 0a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM272 384a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm48 80a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM144 512a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM576 336a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm-48-80a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-up-right-from-square": { + "aliases": { + "names": [ + "external-link" + ], + "unicodes": { + "secondary": [ + "10f08e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "new", + "open", + "send", + "share" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f08e", + "label": "Arrow Up Right From Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h82.7L201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3V192c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H320zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-up-short-wide": { + "aliases": { + "names": [ + "sort-amount-up-alt" + ], + "unicodes": { + "secondary": [ + "10f885" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "order", + "sort-amount-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f885", + "label": "Arrow Up Short Wide", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M151.6 42.4C145.5 35.8 137 32 128 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L96 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H320zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H320zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H320zm0 128c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H320z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-up-wide-short": { + "aliases": { + "names": [ + "sort-amount-up" + ], + "unicodes": { + "secondary": [ + "10f161" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "filter", + "order", + "sort-amount-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f161", + "label": "Arrow Up Wide Short", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M151.6 42.4C145.5 35.8 137 32 128 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L96 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM320 480h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32zm0-128h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32zm0-128H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32zm0-128H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-17.7 0-32 14.3-32 32s14.3 32 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "arrow-up-z-a": { + "aliases": { + "names": [ + "sort-alpha-up-alt" + ], + "unicodes": { + "secondary": [ + "10f882" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabetical", + "arrange", + "filter", + "order", + "sort-alpha-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f882", + "label": "Arrow Up Z A", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M143.6 42.4C137.5 35.8 129 32 120 32s-17.5 3.8-23.6 10.4l-88 96c-11.9 13-11.1 33.3 2 45.2s33.3 11.1 45.2-2L88 146.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V146.3l32.4 35.4c11.9 13 32.2 13.9 45.2 2s13.9-32.2 2-45.2l-88-96zM280 64c0 17.7 14.3 32 32 32h50.7l-73.4 73.4c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H440c17.7 0 32-14.3 32-32s-14.3-32-32-32H389.3l73.4-73.4c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H312c-17.7 0-32 14.3-32 32zm96 192c-12.1 0-23.2 6.8-28.6 17.7l-64 128-16 32c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l7.2-14.3h88.4l7.2 14.3c7.9 15.8 27.1 22.2 42.9 14.3s22.2-27.1 14.3-42.9l-16-32-64-128C399.2 262.8 388.1 256 376 256zM355.8 400L376 359.6 396.2 400H355.8z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-down-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "scale down", + "sink" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4b8", + "label": "Arrows Down To Line", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M544 416L32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32l512 0c17.7 0 32-14.3 32-32s-14.3-32-32-32zm22.6-137.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L480 274.7 480 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 210.7-41.4-41.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96zm-320-45.3c-12.5-12.5-32.8-12.5-45.3 0L160 274.7 160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 210.7L54.6 233.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-down-to-people": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "focus", + "targeted" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4b9", + "label": "Arrows Down To People", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 0c-13.3 0-24 10.7-24 24V142.1L81 119c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0l64-64c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-23 23V24c0-13.3-10.7-24-24-24zM344 200a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zM168 296a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zm312 40a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM184 441.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-36.3-67.5c1.7-1.7 3.2-3.6 4.3-5.8L248 345.5V400c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V345.5l26.9 49.9c1.2 2.2 2.6 4.1 4.3 5.8l-36.3 67.5c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L424 441.5V480c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V441.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3H470.2c-16.3 0-31.9 4.5-45.4 12.6l-33.6-62.3c-15.3-28.5-45.1-46.3-77.5-46.3H294.2c-32.4 0-62.1 17.8-77.5 46.3l-33.6 62.3c-13.5-8.1-29.1-12.6-45.4-12.6H118.2c-32.4 0-62.1 17.8-77.5 46.3L2.9 468.6c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L72 441.5V480c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V441.5zM399 153l64 64c9.4 9.4 24.6 9.4 33.9 0l64-64c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-23 23V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V142.1l-23-23c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-left-right": { + "aliases": { + "names": [ + "arrows-h" + ], + "unicodes": { + "secondary": [ + "10f07e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "expand", + "horizontal", + "landscape", + "resize", + "wide" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f07e", + "label": "Arrows Left Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M406.6 374.6l96-96c12.5-12.5 12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224l-293.5 0 41.4-41.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 288l293.5 0-41.4 41.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-left-right-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analysis", + "expand", + "gap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4ba", + "label": "Arrows Left Right To Line", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 64c17.7 0 32 14.3 32 32l0 320c0 17.7-14.3 32-32 32s-32-14.3-32-32V96C0 78.3 14.3 64 32 64zm214.6 73.4c12.5 12.5 12.5 32.8 0 45.3L205.3 224l229.5 0-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L434.7 288l-229.5 0 41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-96-96c-12.5-12.5-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0zM640 96V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V96c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-rotate": { + "aliases": { + "names": [ + "refresh", + "sync" + ], + "unicodes": { + "composite": [ + "1f5d8" + ], + "secondary": [ + "10f021" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Clockwise Right and Left Semicircle Arrows", + "exchange", + "refresh", + "reload", + "rotate", + "swap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f021", + "label": "Arrows Rotate", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M89.1 202.6c7.7-21.8 20.2-42.3 37.8-59.8c62.5-62.5 163.8-62.5 226.3 0L370.3 160H320c-17.7 0-32 14.3-32 32s14.3 32 32 32H447.5c0 0 0 0 0 0h.4c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v51.2L398.4 97.6c-87.5-87.5-229.3-87.5-316.8 0C57.2 122 39.6 150.7 28.8 181.4c-5.9 16.7 2.9 34.9 19.5 40.8s34.9-2.9 40.8-19.5zM23 289.3c-5 1.5-9.8 4.2-13.7 8.2c-4 4-6.7 8.8-8.1 14c-.3 1.2-.6 2.5-.8 3.8c-.3 1.7-.4 3.4-.4 5.1V448c0 17.7 14.3 32 32 32s32-14.3 32-32V396.9l17.6 17.5 0 0c87.5 87.4 229.3 87.4 316.7 0c24.4-24.4 42.1-53.1 52.9-83.7c5.9-16.7-2.9-34.9-19.5-40.8s-34.9 2.9-40.8 19.5c-7.7 21.8-20.2 42.3-37.8 59.8c-62.5 62.5-163.8 62.5-226.3 0l-.1-.1L109.6 352H160c17.7 0 32-14.3 32-32s-14.3-32-32-32H32.4c-1.6 0-3.2 .1-4.8 .3s-3.1 .5-4.6 1z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-spin": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cycle", + "rotate", + "spin", + "whirl" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4bb", + "label": "Arrows Spin", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 96c38.4 0 73.7 13.5 101.3 36.1l-32.6 32.6c-4.6 4.6-5.9 11.5-3.5 17.4s8.3 9.9 14.8 9.9H416c8.8 0 16-7.2 16-16V64c0-6.5-3.9-12.3-9.9-14.8s-12.9-1.1-17.4 3.5l-34 34C331.4 52.6 280.1 32 224 32c-10.9 0-21.5 .8-32 2.3V99.2c10.3-2.1 21-3.2 32-3.2zM100.1 154.7l32.6 32.6c4.6 4.6 11.5 5.9 17.4 3.5s9.9-8.3 9.9-14.8V64c0-8.8-7.2-16-16-16H32c-6.5 0-12.3 3.9-14.8 9.9s-1.1 12.9 3.5 17.4l34 34C20.6 148.6 0 199.9 0 256c0 10.9 .8 21.5 2.3 32H67.2c-2.1-10.3-3.2-21-3.2-32c0-38.4 13.5-73.7 36.1-101.3zM445.7 224H380.8c2.1 10.3 3.2 21 3.2 32c0 38.4-13.5 73.7-36.1 101.3l-32.6-32.6c-4.6-4.6-11.5-5.9-17.4-3.5s-9.9 8.3-9.9 14.8V448c0 8.8 7.2 16 16 16H416c6.5 0 12.3-3.9 14.8-9.9s1.1-12.9-3.5-17.4l-34-34C427.4 363.4 448 312.1 448 256c0-10.9-.8-21.5-2.3-32zM224 416c-38.4 0-73.7-13.5-101.3-36.1l32.6-32.6c4.6-4.6 5.9-11.5 3.5-17.4s-8.3-9.9-14.8-9.9H32c-8.8 0-16 7.2-16 16l0 112c0 6.5 3.9 12.3 9.9 14.8s12.9 1.1 17.4-3.5l34-34C116.6 459.4 167.9 480 224 480c10.9 0 21.5-.8 32-2.3V412.8c-10.3 2.1-21 3.2-32 3.2z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-split-up-and-left": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agile", + "split" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4bc", + "label": "Arrows Split Up And Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M246.6 150.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L352 109.3V384c0 35.3 28.7 64 64 64h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H416c-70.7 0-128-57.3-128-128c0-35.3-28.7-64-64-64H109.3l41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-96-96c-12.5-12.5-12.5-32.8 0-45.3l96-96c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L109.3 256H224c23.3 0 45.2 6.2 64 17.1V109.3l-41.4 41.4z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-to-circle": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "center", + "concentrate", + "coordinate", + "coordination", + "focal point", + "focus" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4bd", + "label": "Arrows To Circle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M9.4 9.4C21.9-3.1 42.1-3.1 54.6 9.4L160 114.7V96c0-17.7 14.3-32 32-32s32 14.3 32 32v96c0 4.3-.9 8.5-2.4 12.2c-1.6 3.7-3.8 7.3-6.9 10.3l-.1 .1c-3.1 3-6.6 5.3-10.3 6.9c-3.8 1.6-7.9 2.4-12.2 2.4H96c-17.7 0-32-14.3-32-32s14.3-32 32-32h18.7L9.4 54.6C-3.1 42.1-3.1 21.9 9.4 9.4zM256 256a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM114.7 352H96c-17.7 0-32-14.3-32-32s14.3-32 32-32h96 0l.1 0c8.8 0 16.7 3.6 22.5 9.3l.1 .1c3 3.1 5.3 6.6 6.9 10.3c1.6 3.8 2.4 7.9 2.4 12.2v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V397.3L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L114.7 352zM416 96c0-17.7 14.3-32 32-32s32 14.3 32 32v18.7L585.4 9.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L525.3 160H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H448c-8.8 0-16.8-3.6-22.6-9.3l-.1-.1c-3-3.1-5.3-6.6-6.9-10.3s-2.4-7.8-2.4-12.2l0-.1v0V96zM525.3 352L630.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L480 397.3V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V320v0c0 0 0-.1 0-.1c0-4.3 .9-8.4 2.4-12.2c1.6-3.8 3.9-7.3 6.9-10.4c5.8-5.8 13.7-9.3 22.5-9.4c0 0 .1 0 .1 0h0 96c17.7 0 32 14.3 32 32s-14.3 32-32 32H525.3z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-to-dot": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "assembly point", + "center", + "condense", + "focus", + "minimize" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4be", + "label": "Arrows To Dot", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c17.7 0 32 14.3 32 32V64h32c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-64 64c-12.5 12.5-32.8 12.5-45.3 0l-64-64c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8h32V32c0-17.7 14.3-32 32-32zM169.4 393.4l64-64c12.5-12.5 32.8-12.5 45.3 0l64 64c9.2 9.2 11.9 22.9 6.9 34.9s-16.6 19.8-29.6 19.8H288v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H192c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9zM32 224H64V192c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l64 64c12.5 12.5 12.5 32.8 0 45.3l-64 64c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm297.4 54.6c-12.5-12.5-12.5-32.8 0-45.3l64-64c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6v32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H448v32c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-64-64zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-to-eye": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "center", + "coordinated assessment", + "focus" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4bf", + "label": "Arrows To Eye", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M7 15C16.4 5.7 31.6 5.7 41 15l63 63V40c0-13.3 10.7-24 24-24s24 10.7 24 24v96c0 13.3-10.7 24-24 24H32c-13.3 0-24-10.7-24-24s10.7-24 24-24H70.1L7 49C-2.3 39.6-2.3 24.4 7 15zM125.5 243.9C150.6 193.6 214.7 112 312 112s161.4 81.6 186.5 131.9c3.8 7.6 3.8 16.5 0 24.2C473.4 318.4 409.3 400 312 400s-161.4-81.6-186.5-131.9c-3.8-7.6-3.8-16.5 0-24.2zM312 320a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM583 15c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-63 63H592c13.3 0 24 10.7 24 24s-10.7 24-24 24H496c-13.3 0-24-10.7-24-24V40c0-13.3 10.7-24 24-24s24 10.7 24 24V78.1l63-63zM7 497c-9.4-9.4-9.4-24.6 0-33.9l63-63H32c-13.3 0-24-10.7-24-24s10.7-24 24-24h96c13.3 0 24 10.7 24 24v96c0 13.3-10.7 24-24 24s-24-10.7-24-24V433.9L41 497c-9.4 9.4-24.6 9.4-33.9 0zm576 0l-63-63V472c0 13.3-10.7 24-24 24s-24-10.7-24-24V376c0-13.3 10.7-24 24-24h96c13.3 0 24 10.7 24 24s-10.7 24-24 24H553.9l63 63c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-turn-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4c0", + "label": "Arrows Turn Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M297.4 9.4c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L338.7 160H128c-35.3 0-64 28.7-64 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V224C0 153.3 57.3 96 128 96H338.7L297.4 54.6c-12.5-12.5-12.5-32.8 0-45.3zm-96 256c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 416H96c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96H242.7l-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-turn-to-dots": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destination", + "nexus" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4c1", + "label": "Arrows Turn To Dots", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M249.4 25.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L269.3 96 416 96c53 0 96 43 96 96v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7-14.3-32-32-32l-146.7 0 25.4 25.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-80-80c-12.5-12.5-12.5-32.8 0-45.3l80-80zm13.3 256l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 416 96 416c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96l146.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0zM384 384a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM64 192A64 64 0 1 1 64 64a64 64 0 1 1 0 128z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-up-down": { + "aliases": { + "names": [ + "arrows-v" + ], + "unicodes": { + "secondary": [ + "10f07d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "expand", + "portrait", + "resize", + "tall", + "vertical" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f07d", + "label": "Arrows Up Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M150.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L96 109.3V402.7L54.6 361.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 402.7V109.3l41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-up-down-left-right": { + "aliases": { + "names": [ + "arrows" + ], + "unicodes": { + "secondary": [ + "10f047" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "bigger", + "enlarge", + "expand", + "fullscreen", + "move", + "position", + "reorder", + "resize" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f047", + "label": "Arrows Up Down Left Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M278.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l9.4-9.4V224H109.3l9.4-9.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-9.4-9.4H224V402.7l-9.4-9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-9.4 9.4V288H402.7l-9.4 9.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l9.4 9.4H288V109.3l9.4 9.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-64-64z" + } + }, + "free": [ + "solid" + ] + }, + "arrows-up-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "rise", + "scale up" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4c2", + "label": "Arrows Up To Line", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M32 96l512 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 32C14.3 32 0 46.3 0 64S14.3 96 32 96zM9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L96 237.3 96 448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-210.7 41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0l-96 96zm320 45.3c12.5 12.5 32.8 12.5 45.3 0L416 237.3 416 448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-210.7 41.4 41.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3z" + } + }, + "free": [ + "solid" + ] + }, + "artstation": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f77a", + "label": "Artstation", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M2 377.4l43 74.3A51.35 51.35 0 0 0 90.9 480h285.4l-59.2-102.6zM501.8 350L335.6 59.3A51.38 51.38 0 0 0 290.2 32h-88.4l257.3 447.6 40.7-70.5c1.9-3.2 21-29.7 2-59.1zM275 304.5l-115.5-200L44 304.5z" + } + }, + "free": [ + "brands" + ] + }, + "asterisk": { + "aliases": { + "unicodes": { + "composite": [ + "2731", + "f069" + ], + "primary": [ + "f069" + ], + "secondary": [ + "102a", + "10f069" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Asterisk", + "Heavy Asterisk", + "annotation", + "details", + "reference", + "star" + ] + }, + "styles": [ + "solid" + ], + "unicode": "2a", + "label": "Asterisk", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 32c17.7 0 32 14.3 32 32V199.5l111.5-66.9c15.2-9.1 34.8-4.2 43.9 11s4.2 34.8-11 43.9L254.2 256l114.3 68.6c15.2 9.1 20.1 28.7 11 43.9s-28.7 20.1-43.9 11L224 312.5V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V312.5L48.5 379.4c-15.2 9.1-34.8 4.2-43.9-11s-4.2-34.8 11-43.9L129.8 256 15.5 187.4c-15.2-9.1-20.1-28.7-11-43.9s28.7-20.1 43.9-11L160 199.5V64c0-17.7 14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "asymmetrik": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f372", + "label": "Asymmetrik, Ltd.", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M517.5 309.2c38.8-40 58.1-80 58.5-116.1.8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z" + } + }, + "free": [ + "brands" + ] + }, + "at": { + "aliases": { + "unicodes": { + "composite": [ + "f1fa" + ], + "primary": [ + "f1fa" + ], + "secondary": [ + "10f1fa" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Commercial At", + "address", + "author", + "e-mail", + "email", + "fluctuate", + "handle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "40", + "label": "At", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 64C150 64 64 150 64 256s86 192 192 192c17.7 0 32 14.3 32 32s-14.3 32-32 32C114.6 512 0 397.4 0 256S114.6 0 256 0S512 114.6 512 256v32c0 53-43 96-96 96c-29.3 0-55.6-13.2-73.2-33.9C320 371.1 289.5 384 256 384c-70.7 0-128-57.3-128-128s57.3-128 128-128c27.9 0 53.7 8.9 74.7 24.1c5.7-5 13.1-8.1 21.3-8.1c17.7 0 32 14.3 32 32v80 32c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-106-86-192-192-192zm64 192a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + }, + "free": [ + "solid" + ] + }, + "atlassian": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f77b", + "label": "Atlassian", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M152.2 236.4c-7.7-8.2-19.7-7.7-24.8 2.8L1.6 490.2c-5 10 2.4 21.7 13.4 21.7h175c5.8.1 11-3.2 13.4-8.4 37.9-77.8 15.1-196.3-51.2-267.1zM244.4 8.1c-122.3 193.4-8.5 348.6 65 495.5 2.5 5.1 7.7 8.4 13.4 8.4H497c11.2 0 18.4-11.8 13.4-21.7 0 0-234.5-470.6-240.4-482.3-5.3-10.6-18.8-10.8-25.6.1z" + } + }, + "free": [ + "brands" + ] + }, + "atom": { + "aliases": { + "unicodes": { + "composite": [ + "269b" + ], + "secondary": [ + "10f5d2" + ] + } + }, + "changes": [ + "5.2.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atheism", + "atheist", + "atom", + "atom symbol", + "chemistry", + "electron", + "ion", + "isotope", + "neutron", + "nuclear", + "proton", + "science" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5d2", + "label": "Atom", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 398.8c-11.8 5.1-23.4 9.7-34.9 13.5c16.7 33.8 31 35.7 34.9 35.7s18.1-1.9 34.9-35.7c-11.4-3.9-23.1-8.4-34.9-13.5zM414 256c33 45.2 44.3 90.9 23.6 128c-20.2 36.3-62.5 49.3-115.2 43.2c-22 52.1-55.7 84.8-98.4 84.8s-76.4-32.7-98.4-84.8c-52.7 6.1-95-6.8-115.2-43.2C-10.3 346.9 1 301.2 34 256C1 210.8-10.3 165.1 10.4 128C30.6 91.7 72.9 78.7 125.6 84.8C147.6 32.7 181.2 0 224 0s76.4 32.7 98.4 84.8c52.7-6.1 95 6.8 115.2 43.2c20.7 37.1 9.4 82.8-23.6 128zm-65.8 67.4c-1.7 14.2-3.9 28-6.7 41.2c31.8 1.4 38.6-8.7 40.2-11.7c2.3-4.2 7-17.9-11.9-48.1c-6.8 6.3-14 12.5-21.6 18.6zm-6.7-175.9c2.8 13.1 5 26.9 6.7 41.2c7.6 6.1 14.8 12.3 21.6 18.6c18.9-30.2 14.2-44 11.9-48.1c-1.6-2.9-8.4-13-40.2-11.7zM258.9 99.7C242.1 65.9 227.9 64 224 64s-18.1 1.9-34.9 35.7c11.4 3.9 23.1 8.4 34.9 13.5c11.8-5.1 23.4-9.7 34.9-13.5zm-159 88.9c1.7-14.3 3.9-28 6.7-41.2c-31.8-1.4-38.6 8.7-40.2 11.7c-2.3 4.2-7 17.9 11.9 48.1c6.8-6.3 14-12.5 21.6-18.6zM78.2 304.8C59.4 335 64 348.7 66.3 352.9c1.6 2.9 8.4 13 40.2 11.7c-2.8-13.1-5-26.9-6.7-41.2c-7.6-6.1-14.8-12.3-21.6-18.6zM304 256a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zm-80-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "audible": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f373", + "label": "Audible", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z" + } + }, + "free": [ + "brands" + ] + }, + "audio-description": { + "aliases": { + "unicodes": { + "secondary": [ + "10f29e" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "narration", + "video", + "visual" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f29e", + "label": "Audio Description", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM213.5 173.3l72 144c5.9 11.9 1.1 26.3-10.7 32.2s-26.3 1.1-32.2-10.7l-9.4-18.9H150.9l-9.4 18.9c-5.9 11.9-20.3 16.7-32.2 10.7s-16.7-20.3-10.7-32.2l72-144c4.1-8.1 12.4-13.3 21.5-13.3s17.4 5.1 21.5 13.3zm-.4 106.6L192 237.7l-21.1 42.2h42.2zM304 184c0-13.3 10.7-24 24-24h56c53 0 96 43 96 96s-43 96-96 96H328c-13.3 0-24-10.7-24-24V184zm48 24v96h32c26.5 0 48-21.5 48-48s-21.5-48-48-48H352z" + } + }, + "free": [ + "solid" + ] + }, + "austral-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Austral Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e0a9", + "label": "Austral Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M253.5 51.7C248.6 39.8 236.9 32 224 32s-24.6 7.8-29.5 19.7L122.7 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H96L82.7 320H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H56L34.5 435.7c-6.8 16.3 .9 35 17.2 41.8s35-.9 41.8-17.2L125.3 384H322.7l31.8 76.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8L392 384h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H365.3L352 288h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H325.3L253.5 51.7zM256 224H192l32-76.8L256 224zm-90.7 64H282.7L296 320H152l13.3-32z" + } + }, + "free": [ + "solid" + ] + }, + "autoprefixer": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41c", + "label": "Autoprefixer", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z" + } + }, + "free": [ + "brands" + ] + }, + "avianex": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f374", + "label": "avianex", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z" + } + }, + "free": [ + "brands" + ] + }, + "aviato": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f421", + "label": "Aviato", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2.3-2 .5-4.2.6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1.3-.1.7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3.3 4.4.6 6.5.3 2.6.8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1.2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9.9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z" + } + }, + "free": [ + "brands" + ] + }, + "award": { + "aliases": { + "unicodes": { + "secondary": [ + "10f559" + ] + } + }, + "changes": [ + "5.1.0", + "5.2.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "honor", + "praise", + "prize", + "recognition", + "ribbon", + "trophy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f559", + "label": "Award", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M173.8 5.5c11-7.3 25.4-7.3 36.4 0L228 17.2c6 3.9 13 5.8 20.1 5.4l21.3-1.3c13.2-.8 25.6 6.4 31.5 18.2l9.6 19.1c3.2 6.4 8.4 11.5 14.7 14.7L344.5 83c11.8 5.9 19 18.3 18.2 31.5l-1.3 21.3c-.4 7.1 1.5 14.2 5.4 20.1l11.8 17.8c7.3 11 7.3 25.4 0 36.4L366.8 228c-3.9 6-5.8 13-5.4 20.1l1.3 21.3c.8 13.2-6.4 25.6-18.2 31.5l-19.1 9.6c-6.4 3.2-11.5 8.4-14.7 14.7L301 344.5c-5.9 11.8-18.3 19-31.5 18.2l-21.3-1.3c-7.1-.4-14.2 1.5-20.1 5.4l-17.8 11.8c-11 7.3-25.4 7.3-36.4 0L156 366.8c-6-3.9-13-5.8-20.1-5.4l-21.3 1.3c-13.2 .8-25.6-6.4-31.5-18.2l-9.6-19.1c-3.2-6.4-8.4-11.5-14.7-14.7L39.5 301c-11.8-5.9-19-18.3-18.2-31.5l1.3-21.3c.4-7.1-1.5-14.2-5.4-20.1L5.5 210.2c-7.3-11-7.3-25.4 0-36.4L17.2 156c3.9-6 5.8-13 5.4-20.1l-1.3-21.3c-.8-13.2 6.4-25.6 18.2-31.5l19.1-9.6C65 70.2 70.2 65 73.4 58.6L83 39.5c5.9-11.8 18.3-19 31.5-18.2l21.3 1.3c7.1 .4 14.2-1.5 20.1-5.4L173.8 5.5zM272 192a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM1.3 441.8L44.4 339.3c.2 .1 .3 .2 .4 .4l9.6 19.1c11.7 23.2 36 37.3 62 35.8l21.3-1.3c.2 0 .5 0 .7 .2l17.8 11.8c5.1 3.3 10.5 5.9 16.1 7.7l-37.6 89.3c-2.3 5.5-7.4 9.2-13.3 9.7s-11.6-2.2-14.8-7.2L74.4 455.5l-56.1 8.3c-5.7 .8-11.4-1.5-15-6s-4.3-10.7-2.1-16zm248 60.4L211.7 413c5.6-1.8 11-4.3 16.1-7.7l17.8-11.8c.2-.1 .4-.2 .7-.2l21.3 1.3c26 1.5 50.3-12.6 62-35.8l9.6-19.1c.1-.2 .2-.3 .4-.4l43.2 102.5c2.2 5.3 1.4 11.4-2.1 16s-9.3 6.9-15 6l-56.1-8.3-32.2 49.2c-3.2 5-8.9 7.7-14.8 7.2s-11-4.3-13.3-9.7z" + } + }, + "free": [ + "solid" + ] + }, + "aws": { + "changes": [ + "5.0.0", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f375", + "label": "Amazon Web Services (AWS)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M180.41 203.01c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1-4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1-5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.608 78.608 0 0 1-62.61 29.45c-16.28.89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1.02 21.6.37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4.01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.857 76.857 0 0 1 55.69 17.28 70.285 70.285 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.92 23.05c-7.86.72-11.52-4.86-12.68-10.37l-49.8-164.65c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.83 33.16-140.83c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.63L420.98 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.67 110.7l-32.78 136.99c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.48 5.63c-5.88.01-33.92-.3-57.36-12.29a12.802 12.802 0 0 1-7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89.91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.86c-70.03 51.72-171.69 79.25-258.49 79.25A469.127 469.127 0 0 1 2.83 327.46c-6.53-5.89-.77-13.96 7.17-9.47a637.37 637.37 0 0 0 316.88 84.12 630.22 630.22 0 0 0 241.59-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79.77-7.94-5.12-1.79-9.47 40.07-28.17 105.88-20.1 113.44-10.63 7.55 9.47-2.05 75.41-39.56 106.91-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z" + } + }, + "free": [ + "brands" + ] + }, + "b": { + "aliases": { + "unicodes": { + "composite": [ + "62" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter B", + "Latin Small Letter B", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "42", + "label": "B", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V256 416c0 35.3 28.7 64 64 64H192c70.7 0 128-57.3 128-128c0-46.5-24.8-87.3-62-109.7c18.7-22.3 30-51 30-82.3c0-70.7-57.3-128-128-128H64zm96 192H64V96h96c35.3 0 64 28.7 64 64s-28.7 64-64 64zM64 288h96 32c35.3 0 64 28.7 64 64s-28.7 64-64 64H64V288z" + } + }, + "free": [ + "solid" + ] + }, + "baby": { + "aliases": { + "unicodes": { + "secondary": [ + "10f77c" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f77c", + "label": "Baby", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M120 88a72 72 0 1 1 144 0A72 72 0 1 1 120 88zM7.7 144.5c13-17.9 38-21.8 55.9-8.8L99.8 162c26.8 19.5 59.1 30 92.2 30s65.4-10.5 92.2-30l36.2-26.4c17.9-13 42.9-9 55.9 8.8s9 42.9-8.8 55.9l-36.2 26.4c-13.6 9.9-28.1 18.2-43.3 25V288H96V251.7c-15.2-6.7-29.7-15.1-43.3-25L16.5 200.3c-17.9-13-21.8-38-8.8-55.9zM97.5 329.3l60.6 53-26 37.2 24.3 24.3c15.6 15.6 15.6 40.9 0 56.6s-40.9 15.6-56.6 0l-48-48C38 438.6 36.1 417 47.2 401.1l50.2-71.8zm128.5 53l60.6-53 50.2 71.8c11.1 15.9 9.2 37.5-4.5 51.2l-48 48c-15.6 15.6-40.9 15.6-56.6 0s-15.6-40.9 0-56.6L252 419.4l-26-37.2z" + } + }, + "free": [ + "solid" + ] + }, + "baby-carriage": { + "aliases": { + "names": [ + "carriage-baby" + ], + "unicodes": { + "secondary": [ + "10f77d" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buggy", + "carrier", + "infant", + "push", + "stroller", + "transportation", + "walk", + "wheels" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f77d", + "label": "Baby Carriage", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 192H.1C2.7 117.9 41.3 52.9 99 14.1c13.3-8.9 30.8-4.3 39.9 8.8L256 192zm128-32c0-35.3 28.7-64 64-64h32c17.7 0 32 14.3 32 32s-14.3 32-32 32l-32 0v64c0 25.2-5.8 50.2-17 73.5s-27.8 44.5-48.6 62.3s-45.5 32-72.7 41.6S253.4 416 224 416s-58.5-5-85.7-14.6s-51.9-23.8-72.7-41.6s-37.3-39-48.6-62.3S0 249.2 0 224l224 0 160 0V160zM80 416a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm240 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z" + } + }, + "free": [ + "solid" + ] + }, + "backward": { + "aliases": { + "unicodes": { + "composite": [ + "23ea" + ], + "secondary": [ + "10f04a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "double", + "fast reverse button", + "previous", + "rewind" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f04a", + "label": "Backward", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M459.5 440.6c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4L288 214.3V256v41.7L459.5 440.6zM256 352V256 128 96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4l-192 160C4.2 237.5 0 246.5 0 256s4.2 18.5 11.5 24.6l192 160c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V352z" + } + }, + "free": [ + "solid" + ] + }, + "backward-fast": { + "aliases": { + "names": [ + "fast-backward" + ], + "unicodes": { + "composite": [ + "23ee" + ], + "secondary": [ + "10f049" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "beginning", + "first", + "last track button", + "previous", + "previous scene", + "previous track", + "rewind", + "start", + "triangle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f049", + "label": "Backward Fast", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M493.6 445c-11.2 5.3-24.5 3.6-34.1-4.4L288 297.7V416c0 12.4-7.2 23.7-18.4 29s-24.5 3.6-34.1-4.4L64 297.7V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V96C0 78.3 14.3 64 32 64s32 14.3 32 32V214.3L235.5 71.4c9.5-7.9 22.8-9.7 34.1-4.4S288 83.6 288 96V214.3L459.5 71.4c9.5-7.9 22.8-9.7 34.1-4.4S512 83.6 512 96V416c0 12.4-7.2 23.7-18.4 29z" + } + }, + "free": [ + "solid" + ] + }, + "backward-step": { + "aliases": { + "names": [ + "step-backward" + ], + "unicodes": { + "secondary": [ + "10f048" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beginning", + "first", + "previous", + "rewind", + "start" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f048", + "label": "Backward Step", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M267.5 440.6c9.5 7.9 22.8 9.7 34.1 4.4s18.4-16.6 18.4-29V96c0-12.4-7.2-23.7-18.4-29s-24.5-3.6-34.1 4.4l-192 160L64 241V96c0-17.7-14.3-32-32-32S0 78.3 0 96V416c0 17.7 14.3 32 32 32s32-14.3 32-32V271l11.5 9.6 192 160z" + } + }, + "free": [ + "solid" + ] + }, + "bacon": { + "aliases": { + "unicodes": { + "composite": [ + "1f953" + ], + "secondary": [ + "10f7e5" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bacon", + "blt", + "breakfast", + "food", + "ham", + "lard", + "meat", + "pancetta", + "pork", + "rasher" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7e5", + "label": "Bacon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M439.2 1.2c11.2-3.2 23.2-.1 31.4 8.1L518 56.7l-26.5 7.9c-58 16.6-98.1 39.6-129.6 67.4c-31.2 27.5-53.2 59.1-75.1 90.9l-2.3 3.3C241.6 288.7 195 356.6 72.8 417.7L37.9 435.2 9.4 406.6c-7.3-7.3-10.6-17.6-9-27.8s8.1-18.9 17.3-23.5C136.1 296.2 180.9 231 223.3 169.3l2.3-3.4c21.8-31.8 44.9-64.9 77.7-93.9c33.4-29.5 75.8-53.6 135.9-70.8zM61.8 459l25.4-12.7c129.5-64.7 179.9-138.1 223.8-202l2.2-3.3c22.1-32.1 42.1-60.5 69.9-85.1c27.5-24.3 63.4-45.2 117.3-60.6l0 0 .2-.1 43.1-12.9 23 23c8 8 11.2 19.7 8.3 30.7s-11.3 19.6-22.2 22.7c-51.9 14.8-85.6 34.7-111.1 57.2c-26.1 23-45.1 49.9-67.3 82.1l-2.2 3.2C327.8 365.9 275.5 442 142.3 508.6c-12.3 6.2-27.2 3.7-36.9-6L61.8 459z" + } + }, + "free": [ + "solid" + ] + }, + "bacteria": { + "aliases": { + "unicodes": { + "secondary": [ + "10e059" + ] + } + }, + "changes": [ + "5.13.0", + "5.13.1", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antibiotic", + "antibody", + "covid-19", + "health", + "organism", + "sick" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e059", + "label": "Bacteria", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M304.9 .7c-9.6-2.7-19.5 2.8-22.3 12.4l-3.1 11c-7.4-.3-14.9 .4-22.4 2.1c-9 2.1-17.8 4.4-26.2 7l-4.4-10.3c-3.9-9.1-14.5-13.4-23.6-9.5s-13.4 14.5-9.5 23.6l3.6 8.5c-16.5 7.1-31.5 15.1-45.2 23.9L147 62c-5.5-8.3-16.7-10.5-25-5s-10.5 16.7-5 25l5.8 8.7c-13.5 11.2-25.3 23.1-35.5 35.3l-10.1-8.1c-7.8-6.2-19.1-5-25.3 2.8s-5 19.1 2.8 25.3L66 155c-1.6 2.4-3.1 4.8-4.5 7.3c-7.1 11.8-12.8 23.2-17.4 34l-7.4-3c-9.2-3.7-19.7 .8-23.4 10s.8 19.7 10 23.4l8.7 3.5c-.2 .8-.4 1.6-.7 2.3c-2.6 9.4-4.2 17.4-5.3 23.5c-.5 3.1-.9 5.7-1.2 7.7c-.1 1-.2 2-.3 2.7l-.1 1.1 0 .5 0 .2 0 .1c0 0 0 .1 29.4 2.8l0 0-29.4-2.7c-.3 3.8-.4 7.5-.3 11.2l-11 3.1C3.5 285.4-2 295.4 .7 304.9s12.7 15.1 22.3 12.4l10.3-2.9c8 15.5 20.7 28.3 36.4 36.4L66.7 361c-2.7 9.6 2.8 19.5 12.4 22.3s19.5-2.8 22.3-12.4l3.1-11c17.8 .8 34.7-4.1 48.8-13.2l8 8c7 7 18.4 7 25.5 0s7-18.4 0-25.5l-8-8c6.8-10.6 11.3-22.9 12.7-36.2l.1-.6c.2-1.3 .7-3.8 1.7-7.4l.2-.6 9.4 4c9.1 3.9 19.7-.3 23.6-9.5s-.3-19.7-9.5-23.6l-8.5-3.6c7.5-11.1 18.7-23.7 36.5-34.5l1.6 5.6c2.7 9.6 12.7 15.1 22.3 12.4s15.1-12.7 12.4-22.3l-3-10.6c5.2-1.7 10.7-3.2 16.6-4.6c9.7-2.2 18.5-6 26.4-11.1l8 8c7 7 18.4 7 25.5 0s7-18.4 0-25.5l-8-8c9.1-14.3 14-31.2 13.2-48.8l11-3.1c9.6-2.7 15.1-12.7 12.4-22.3S370.6 64 361 66.7l-10.3 2.9c-8.1-15.9-21-28.5-36.4-36.4l2.9-10.3c2.7-9.6-2.8-19.5-12.4-22.3zM106.2 275.8l-37.1-3.4 0 0 37.1 3.4zM128 192a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm64-48a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM322.7 489c-2.7 9.6 2.8 19.5 12.4 22.3s19.5-2.8 22.2-12.4l3.1-11c7.4 .3 14.9-.4 22.4-2.1c9-2.1 17.8-4.4 26.2-7l4.4 10.3c3.9 9.1 14.5 13.4 23.6 9.5s13.4-14.5 9.5-23.6l-3.6-8.5c16.5-7.1 31.5-15.1 45.2-23.9L493 450c5.5 8.3 16.7 10.5 25 5s10.5-16.7 5-25l-5.8-8.7c13.5-11.2 25.3-23.1 35.5-35.3l10.1 8.1c7.8 6.2 19.1 5 25.3-2.8s5-19.1-2.8-25.3L574 357c1.6-2.4 3.1-4.8 4.5-7.3c7.1-11.8 12.8-23.2 17.4-34l7.4 3c9.2 3.7 19.7-.8 23.4-10s-.8-19.7-10-23.4l-8.7-3.5c.2-.8 .4-1.6 .7-2.3c2.6-9.4 4.2-17.4 5.3-23.5c.5-3.1 .9-5.7 1.2-7.7c.1-1 .2-2 .3-2.7l.1-1.1 0-.5 0-.2 0-.1c0 0 0-.1-29.4-2.8l0 0 29.4 2.7c.3-3.8 .4-7.5 .3-11.2l11-3.1c9.6-2.7 15.1-12.7 12.4-22.3s-12.7-15.1-22.3-12.4l-10.3 2.9c-8-15.5-20.7-28.3-36.4-36.4l2.9-10.3c2.7-9.6-2.8-19.5-12.4-22.3s-19.5 2.8-22.2 12.4l-3.1 11c-17.8-.8-34.7 4.1-48.8 13.2l-8-8c-7-7-18.4-7-25.5 0s-7 18.4 0 25.5l8 8c-6.8 10.6-11.3 22.9-12.7 36.2l-.1 .6c-.2 1.3-.7 3.8-1.7 7.4l-.2 .6-9.4-4c-9.1-3.9-19.7 .3-23.6 9.5s.3 19.7 9.5 23.6l8.5 3.6c-7.5 11.1-18.7 23.7-36.5 34.5l-1.6-5.6c-2.7-9.6-12.7-15.1-22.3-12.4s-15.1 12.7-12.4 22.3l3 10.6c-5.2 1.7-10.7 3.2-16.6 4.6c-9.7 2.2-18.5 6-26.4 11.1l-8-8c-7-7-18.4-7-25.5 0s-7 18.4 0 25.5l8 8c-9.1 14.2-14 31.2-13.2 48.8l-11 3.1c-9.6 2.7-15.1 12.7-12.4 22.2s12.7 15.1 22.3 12.4l10.3-2.9c8.1 15.9 21 28.5 36.4 36.4l-3 10.3zM570.9 239.5l0 0-37.1-3.4 37.1 3.4zM448 384a32 32 0 1 1 -64 0 32 32 0 1 1 64 0z" + } + }, + "free": [ + "solid" + ] + }, + "bacterium": { + "aliases": { + "unicodes": { + "secondary": [ + "10e05a" + ] + } + }, + "changes": [ + "5.13.0", + "5.13.1", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antibiotic", + "antibody", + "covid-19", + "health", + "organism", + "sick" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e05a", + "label": "Bacterium", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M423.1 30.6c3.6-12.7-3.7-26-16.5-29.7s-26 3.7-29.7 16.5l-4.2 14.7c-9.8-.4-19.9 .5-29.9 2.8c-12.1 2.8-23.7 5.9-34.9 9.4l-5.9-13.7c-5.2-12.2-19.3-17.8-31.5-12.6s-17.8 19.3-12.6 31.5l4.9 11.3c-22 9.4-42 20.1-60.2 31.8L196 82.7c-7.4-11-22.3-14-33.3-6.7s-14 22.3-6.7 33.3l7.8 11.6c-18 15-33.7 30.8-47.3 47.1L103 157.3c-10.4-8.3-25.5-6.6-33.7 3.7s-6.6 25.5 3.7 33.7l15 12c-2.1 3.2-4.1 6.5-6 9.7c-9.4 15.7-17 31-23.2 45.3l-9.9-3.9c-12.3-4.9-26.3 1.1-31.2 13.4s1.1 26.3 13.4 31.2l11.6 4.6c-.3 1.1-.6 2.1-.9 3.1c-3.5 12.5-5.7 23.2-7.1 31.3c-.7 4.1-1.2 7.5-1.6 10.3c-.2 1.4-.3 2.6-.4 3.6l-.1 1.4-.1 .6 0 .3 0 .1c0 0 0 .1 39.2 3.7l0 0-39.2-3.6c-.5 5-.6 10-.4 14.9l-14.7 4.2C4.7 380.6-2.7 393.8 .9 406.6s16.9 20.1 29.7 16.5l13.8-3.9c10.6 20.7 27.6 37.8 48.5 48.5l-3.9 13.7c-3.6 12.7 3.7 26 16.5 29.7s26-3.7 29.7-16.5l4.2-14.7c23.8 1 46.3-5.5 65.1-17.6L215 473c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-10.6-10.6c9.1-14.1 15.1-30.5 17-48.3l.1-.8c.3-1.7 1-5.1 2.3-9.8l.2-.8 12.6 5.4c12.2 5.2 26.3-.4 31.5-12.6s-.4-26.3-12.6-31.5l-11.3-4.8c9.9-14.9 24.9-31.6 48.6-46l2.1 7.5c3.6 12.7 16.9 20.1 29.7 16.5s20.1-16.9 16.5-29.7L371 259.2c6.9-2.2 14.3-4.3 22.2-6.1c12.9-3 24.7-8 35.2-14.8L439 249c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-10.6-10.6c12.2-19 18.6-41.6 17.6-65.1l14.7-4.2c12.7-3.6 20.1-16.9 16.5-29.7s-16.9-20.1-29.7-16.5l-13.7 3.9c-10.8-21.2-28-38-48.5-48.5l3.9-13.8zM92.1 363.3l0 0L144 368l-51.9-4.7zM112 320a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM240 184a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + }, + "free": [ + "solid" + ] + }, + "bag-shopping": { + "aliases": { + "names": [ + "shopping-bag" + ], + "unicodes": { + "secondary": [ + "10f290" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "checkout", + "grocery", + "payment", + "purchase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f290", + "label": "Bag Shopping", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 112c0-35.3 28.7-64 64-64s64 28.7 64 64v48H160V112zm-48 48H48c-26.5 0-48 21.5-48 48V416c0 53 43 96 96 96H352c53 0 96-43 96-96V208c0-26.5-21.5-48-48-48H336V112C336 50.1 285.9 0 224 0S112 50.1 112 112v48zm24 48a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm152 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + }, + "free": [ + "solid" + ] + }, + "bahai": { + "aliases": { + "names": [ + "haykal" + ], + "unicodes": { + "secondary": [ + "10f666" + ] + } + }, + "changes": [ + "5.3.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bahai", + "bahá'í", + "star" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f666", + "label": "Bahai", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M245.2 0c13.6 0 25.6 9.2 29.1 22.4l22.5 84.4 71.5-50.2c11.2-7.8 26.2-7.2 36.7 1.6s13.7 23.5 7.9 35.8l-37 79.1 87 7.5c13.6 1.2 24.7 11.3 27.1 24.8s-4.6 26.8-17 32.5l-79.2 36.8 61.8 61.7c9.7 9.6 11.6 24.6 4.8 36.4s-20.7 17.6-33.9 14L342.1 364l7.7 87c1.2 13.6-6.9 26.3-19.7 31s-27.2 .1-35-11.1l-50-71.6-50 71.6c-7.8 11.2-22.2 15.7-35 11.1s-20.9-17.4-19.7-31l7.7-87L63.9 386.7c-13.2 3.5-27.1-2.2-33.9-14s-4.8-26.7 4.8-36.4l61.8-61.7L17.4 237.9c-12.4-5.8-19.3-19.1-17-32.5s13.5-23.6 27.1-24.8l87-7.5L77.5 94C71.8 81.6 75 66.9 85.5 58.1s25.5-9.4 36.7-1.6l71.5 50.2 22.5-84.4C219.6 9.2 231.5 0 245.2 0zm0 147l-4.5 16.9c-2.5 9.5-9.6 17.2-18.8 20.5s-19.6 2-27.6-3.7l-14.3-10 7.4 15.8c4.2 8.9 3.7 19.3-1.2 27.8s-13.7 14.1-23.5 14.9l-17.4 1.5 15.9 7.4c8.9 4.1 15.3 12.4 17 22.1s-1.4 19.6-8.4 26.6l-12.4 12.4 16.9-4.5c9.5-2.6 19.7-.3 27.2 6s11.5 15.9 10.6 25.7l-1.5 17.4 10-14.3c5.6-8.1 14.9-12.9 24.7-12.9s19.1 4.8 24.7 12.9l10 14.3-1.5-17.4c-.9-9.8 3.1-19.4 10.6-25.7s17.7-8.6 27.2-6l16.9 4.5-12.4-12.4c-7-6.9-10.1-16.9-8.4-26.6s8-17.9 17-22.1l15.9-7.4-17.4-1.5c-9.8-.8-18.6-6.4-23.5-14.9s-5.4-18.9-1.2-27.8l7.4-15.8-14.3 10c-8.1 5.7-18.4 7-27.6 3.7s-16.3-11-18.8-20.5L245.2 147z" + } + }, + "free": [ + "solid" + ] + }, + "baht-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e0ac", + "label": "Baht Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M144 0c-17.7 0-32 14.3-32 32V64H37.6C16.8 64 0 80.8 0 101.6V224v41.7V288 406.3c0 23 18.7 41.7 41.7 41.7H112v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c61.9 0 112-50.1 112-112c0-40.1-21.1-75.3-52.7-95.1C280.3 222.6 288 200.2 288 176c0-61.9-50.1-112-112-112V32c0-17.7-14.3-32-32-32zM112 128v96H64V128h48zm64 96V128c26.5 0 48 21.5 48 48s-21.5 48-48 48zm-64 64v96H64V288h48zm64 96V288h32c26.5 0 48 21.5 48 48s-21.5 48-48 48H176z" + } + }, + "free": [ + "solid" + ] + }, + "ban": { + "aliases": { + "names": [ + "cancel" + ], + "unicodes": { + "composite": [ + "1f6ab" + ], + "secondary": [ + "10f05e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abort", + "ban", + "block", + "cancel", + "delete", + "entry", + "forbidden", + "hide", + "no", + "not", + "prohibit", + "prohibited", + "remove", + "stop", + "trash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f05e", + "label": "Ban", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M367.2 412.5L99.5 144.8C77.1 176.1 64 214.5 64 256c0 106 86 192 192 192c41.5 0 79.9-13.1 111.2-35.5zm45.3-45.3C434.9 335.9 448 297.5 448 256c0-106-86-192-192-192c-41.5 0-79.9 13.1-111.2 35.5L412.5 367.2zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + }, + "free": [ + "solid" + ] + }, + "ban-smoking": { + "aliases": { + "names": [ + "smoking-ban" + ], + "unicodes": { + "composite": [ + "1f6ad" + ], + "secondary": [ + "10f54d" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ban", + "cancel", + "forbidden", + "no", + "no smoking", + "non-smoking", + "not", + "prohibited", + "smoking" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f54d", + "label": "Ban Smoking", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M99.5 144.8L178.7 224l96 96 92.5 92.5C335.9 434.9 297.5 448 256 448C150 448 64 362 64 256c0-41.5 13.1-79.9 35.5-111.2zM333.3 288l-32-32H384v32H333.3zm32 32H400c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H269.3L144.8 99.5C176.1 77.1 214.5 64 256 64c106 0 192 86 192 192c0 41.5-13.1 79.9-35.5 111.2L365.3 320zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM272 96c-8.8 0-16 7.2-16 16c0 26.5 21.5 48 48 48h32c8.8 0 16 7.2 16 16s7.2 16 16 16s16-7.2 16-16c0-26.5-21.5-48-48-48H304c-8.8 0-16-7.2-16-16s-7.2-16-16-16zM229.5 320l-96-96H112c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16H229.5z" + } + }, + "free": [ + "solid" + ] + }, + "bandage": { + "aliases": { + "names": [ + "band-aid" + ], + "unicodes": { + "composite": [ + "1fa79" + ], + "secondary": [ + "10f462" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "adhesive bandage", + "bandage", + "boo boo", + "first aid", + "ouch" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f462", + "label": "Bandage", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 416h96c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H480V416zM448 96H192V416H448V96zM64 96C28.7 96 0 124.7 0 160V352c0 35.3 28.7 64 64 64h96V96H64zM248 208a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm120-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM248 304a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm120-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + }, + "free": [ + "solid" + ] + }, + "bandcamp": { + "changes": [ + "4.7.0", + "5.0.0", + "5.13.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2d5", + "label": "Bandcamp", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8Zm48.2,326.1h-181L207.9,178h181Z" + } + }, + "free": [ + "brands" + ] + }, + "bangladeshi-taka-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bdt", + "currency", + "tk" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e2e6", + "label": "Bangladeshi Taka Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M36 32.2C18.4 30.1 2.4 42.5 .2 60S10.5 93.6 28 95.8l7.9 1c16 2 28 15.6 28 31.8V160H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64V384c0 53 43 96 96 96h32c106 0 192-86 192-192V256c0-53-43-96-96-96H272c-17.7 0-32 14.3-32 32s14.3 32 32 32h16c17.7 0 32 14.3 32 32v32c0 70.7-57.3 128-128 128H160c-17.7 0-32-14.3-32-32V224h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V128.5c0-48.4-36.1-89.3-84.1-95.3l-7.9-1z" + } + }, + "free": [ + "solid" + ] + }, + "barcode": { + "aliases": { + "unicodes": { + "secondary": [ + "10f02a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "info", + "laser", + "price", + "scan", + "upc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f02a", + "label": "Barcode", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M24 32C10.7 32 0 42.7 0 56V456c0 13.3 10.7 24 24 24H40c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H24zm88 0c-8.8 0-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V48c0-8.8-7.2-16-16-16zm72 0c-13.3 0-24 10.7-24 24V456c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H184zm96 0c-13.3 0-24 10.7-24 24V456c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H280zM448 56V456c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24H472c-13.3 0-24 10.7-24 24zm-64-8V464c0 8.8 7.2 16 16 16s16-7.2 16-16V48c0-8.8-7.2-16-16-16s-16 7.2-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "bars": { + "aliases": { + "names": [ + "navicon" + ], + "unicodes": { + "secondary": [ + "10f0c9" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "drag", + "hamburger", + "list", + "menu", + "nav", + "navigation", + "ol", + "reorder", + "settings", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c9", + "label": "Bars", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "bars-progress": { + "aliases": { + "names": [ + "tasks-alt" + ], + "unicodes": { + "secondary": [ + "10f828" + ] + } + }, + "changes": [ + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "downloading", + "downloads", + "loading", + "poll", + "progress", + "project management", + "settings", + "to do" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f828", + "label": "Bars Progress", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 160H320V128H448v32zM48 64C21.5 64 0 85.5 0 112v64c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H48zM448 352v32H192V352H448zM48 288c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V336c0-26.5-21.5-48-48-48H48z" + } + }, + "free": [ + "solid" + ] + }, + "bars-staggered": { + "aliases": { + "names": [ + "reorder", + "stream" + ], + "unicodes": { + "secondary": [ + "10f550" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flow", + "list", + "timeline" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f550", + "label": "Bars Staggered", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM64 256c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "baseball": { + "aliases": { + "names": [ + "baseball-ball" + ], + "unicodes": { + "composite": [ + "1f94e", + "26be" + ], + "secondary": [ + "10f433" + ] + } + }, + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "baseball", + "foul", + "glove", + "hardball", + "league", + "leather", + "mlb", + "softball", + "sport", + "underarm" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f433", + "label": "Baseball", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321784, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M62.7 223.4c-4.8 .4-9.7 .6-14.7 .6c-15.6 0-30.8-2-45.2-5.9C19.2 107.1 107.1 19.2 218.1 2.8C222 17.2 224 32.4 224 48c0 4.9-.2 9.8-.6 14.7c-.7 8.8 5.8 16.5 14.6 17.3s16.5-5.8 17.3-14.6c.5-5.7 .7-11.5 .7-17.3c0-16.5-1.9-32.6-5.6-47.9c1.8 0 3.7-.1 5.6-.1C397.4 0 512 114.6 512 256c0 1.9 0 3.7-.1 5.6c-15.4-3.6-31.4-5.6-47.9-5.6c-5.8 0-11.6 .2-17.3 .7c-8.8 .7-15.4 8.5-14.6 17.3s8.5 15.4 17.3 14.6c4.8-.4 9.7-.6 14.7-.6c15.6 0 30.8 2 45.2 5.9C492.8 404.9 404.9 492.8 293.9 509.2C290 494.8 288 479.6 288 464c0-4.9 .2-9.8 .6-14.7c.7-8.8-5.8-16.5-14.6-17.3s-16.5 5.8-17.3 14.6c-.5 5.7-.7 11.5-.7 17.3c0 16.5 1.9 32.6 5.6 47.9c-1.8 0-3.7 .1-5.6 .1C114.6 512 0 397.4 0 256c0-1.9 0-3.7 .1-5.6C15.4 254.1 31.5 256 48 256c5.8 0 11.6-.2 17.3-.7c8.8-.7 15.4-8.5 14.6-17.3s-8.5-15.4-17.3-14.6zM121.3 208c-8 3.7-11.6 13.2-7.9 21.2s13.2 11.6 21.2 7.9c45.2-20.8 81.7-57.2 102.5-102.5c3.7-8 .2-17.5-7.9-21.2s-17.5-.2-21.2 7.9c-17.6 38.3-48.5 69.2-86.7 86.7zm277.2 74.7c-3.7-8-13.2-11.6-21.2-7.9c-45.2 20.8-81.7 57.2-102.5 102.5c-3.7 8-.2 17.5 7.9 21.2s17.5 .2 21.2-7.9c17.6-38.3 48.5-69.2 86.7-86.7c8-3.7 11.6-13.2 7.9-21.2z" + } + }, + "free": [ + "solid" + ] + }, + "baseball-bat-ball": { + "aliases": { + "unicodes": { + "secondary": [ + "10f432" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bat", + "league", + "mlb", + "slugger", + "softball", + "sport" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f432", + "label": "Baseball Bat Ball", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M424 0c-12.4 0-24.2 4.9-33 13.7L233.5 171.2c-10.5 10.5-19.8 22.1-27.7 34.6L132.7 321.6c-7.3 11.5-15.8 22.2-25.5 31.9L69.9 390.7l51.3 51.3 37.3-37.3c9.6-9.6 20.3-18.2 31.9-25.5l115.8-73.1c12.5-7.9 24.1-17.2 34.6-27.7L498.3 121c8.7-8.7 13.7-20.6 13.7-33s-4.9-24.2-13.7-33L457 13.7C448.2 4.9 436.4 0 424 0zm88 432a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM15 399c-9.4 9.4-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L49 399c-9.4-9.4-24.6-9.4-33.9 0z" + } + }, + "free": [ + "solid" + ] + }, + "basket-shopping": { + "aliases": { + "names": [ + "shopping-basket" + ], + "unicodes": { + "secondary": [ + "10f291" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "checkout", + "grocery", + "payment", + "purchase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f291", + "label": "Basket Shopping", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M253.3 35.1c6.1-11.8 1.5-26.3-10.2-32.4s-26.3-1.5-32.4 10.2L117.6 192H32c-17.7 0-32 14.3-32 32s14.3 32 32 32L83.9 463.5C91 492 116.6 512 146 512H430c29.4 0 55-20 62.1-48.5L544 256c17.7 0 32-14.3 32-32s-14.3-32-32-32H458.4L365.3 12.9C359.2 1.2 344.7-3.4 332.9 2.7s-16.3 20.6-10.2 32.4L404.3 192H171.7L253.3 35.1zM192 304v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V304c0-8.8 7.2-16 16-16s16 7.2 16 16zm96-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V304c0-8.8 7.2-16 16-16zm128 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V304c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "basketball": { + "aliases": { + "names": [ + "basketball-ball" + ], + "unicodes": { + "composite": [ + "1f3c0" + ], + "secondary": [ + "10f434" + ] + } + }, + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "basketball", + "dribble", + "dunk", + "hoop", + "nba" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f434", + "label": "Basketball", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321784, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M86.6 64C119 35.5 158.6 15 202.3 5.6C206 19.1 208 33.3 208 48c0 38.4-13.5 73.7-36.1 101.3L86.6 64zM64 86.6l85.2 85.2C121.7 194.5 86.4 208 48 208c-14.7 0-28.9-2-42.4-5.7C15 158.6 35.5 119 64 86.6zM256 0c64.9 0 124.2 24.2 169.4 64L256 233.4 194.6 172C222.9 138.5 240 95.3 240 48c0-16.2-2-32-5.8-47.1C241.4 .3 248.7 0 256 0zM48 240c47.3 0 90.5-17.1 124-45.4L233.4 256 64 425.4C24.2 380.2 0 320.9 0 256c0-7.3 .3-14.6 .9-21.8C16 238 31.8 240 48 240zm463.1 37.8C496 274 480.2 272 464 272c-47.3 0-90.5 17.1-124 45.4L278.6 256 448 86.6c39.8 45.1 64 104.4 64 169.4c0 7.3-.3 14.6-.9 21.8zm-4.7 31.9C497 353.4 476.5 393 448 425.4l-85.2-85.2C390.3 317.5 425.6 304 464 304c14.7 0 28.9 2 42.4 5.7zM340.1 362.7L425.4 448C393 476.5 353.4 497 309.7 506.4C306 492.9 304 478.7 304 464c0-38.4 13.5-73.7 36.1-101.3zM317.4 340C289.1 373.5 272 416.7 272 464c0 16.2 2 32 5.8 47.1c-7.2 .6-14.5 .9-21.8 .9c-64.9 0-124.2-24.2-169.4-64L256 278.6 317.4 340z" + } + }, + "free": [ + "solid" + ] + }, + "bath": { + "aliases": { + "names": [ + "bathtub" + ], + "unicodes": { + "composite": [ + "1f6c1" + ], + "secondary": [ + "10f2cd" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bath", + "bathtub", + "clean", + "shower", + "tub", + "wash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2cd", + "label": "Bath", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 77.3c0-7.3 5.9-13.3 13.3-13.3c3.5 0 6.9 1.4 9.4 3.9l14.9 14.9C130 91.8 128 101.7 128 112c0 19.9 7.2 38 19.2 52c-5.3 9.2-4 21.1 3.8 29c9.4 9.4 24.6 9.4 33.9 0L289 89c9.4-9.4 9.4-24.6 0-33.9c-7.8-7.9-19.8-9.1-29-3.8C246 39.2 227.9 32 208 32c-10.3 0-20.2 2-29.2 5.5L163.9 22.6C149.4 8.1 129.7 0 109.3 0C66.6 0 32 34.6 32 77.3V256c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H96V77.3zM32 352v16c0 28.4 12.4 54 32 71.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V464H384v16c0 17.7 14.3 32 32 32s32-14.3 32-32V439.6c19.6-17.6 32-43.1 32-71.6V352H32z" + } + }, + "free": [ + "solid" + ] + }, + "battery-empty": { + "aliases": { + "names": [ + "battery-0" + ], + "unicodes": { + "secondary": [ + "10f244" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "dead", + "power", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f244", + "label": "Battery Empty", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M80 160c-8.8 0-16 7.2-16 16V336c0 8.8 7.2 16 16 16H464c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H80zM0 176c0-44.2 35.8-80 80-80H464c44.2 0 80 35.8 80 80v16c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32v16c0 44.2-35.8 80-80 80H80c-44.2 0-80-35.8-80-80V176z" + } + }, + "free": [ + "solid" + ] + }, + "battery-full": { + "aliases": { + "names": [ + "battery", + "battery-5" + ], + "unicodes": { + "composite": [ + "1f50b" + ], + "secondary": [ + "10f240" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "batter", + "battery", + "charge", + "power", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f240", + "label": "Battery Full", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M464 160c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16H464zM80 96C35.8 96 0 131.8 0 176V336c0 44.2 35.8 80 80 80H464c44.2 0 80-35.8 80-80V320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32V176c0-44.2-35.8-80-80-80H80zm368 96H96V320H448V192z" + } + }, + "free": [ + "solid" + ] + }, + "battery-half": { + "aliases": { + "names": [ + "battery-3" + ], + "unicodes": { + "secondary": [ + "10f242" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "power", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f242", + "label": "Battery Half", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M464 160c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16H464zM80 96C35.8 96 0 131.8 0 176V336c0 44.2 35.8 80 80 80H464c44.2 0 80-35.8 80-80V320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32V176c0-44.2-35.8-80-80-80H80zm208 96H96V320H288V192z" + } + }, + "free": [ + "solid" + ] + }, + "battery-quarter": { + "aliases": { + "names": [ + "battery-2" + ], + "unicodes": { + "secondary": [ + "10f243" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "low", + "power", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f243", + "label": "Battery Quarter", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M464 160c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16H464zM80 96C35.8 96 0 131.8 0 176V336c0 44.2 35.8 80 80 80H464c44.2 0 80-35.8 80-80V320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32V176c0-44.2-35.8-80-80-80H80zm112 96H96V320h96V192z" + } + }, + "free": [ + "solid" + ] + }, + "battery-three-quarters": { + "aliases": { + "names": [ + "battery-4" + ], + "unicodes": { + "secondary": [ + "10f241" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "power", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f241", + "label": "Battery Three Quarters", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M464 160c8.8 0 16 7.2 16 16V336c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16H464zM80 96C35.8 96 0 131.8 0 176V336c0 44.2 35.8 80 80 80H464c44.2 0 80-35.8 80-80V320c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32V176c0-44.2-35.8-80-80-80H80zm272 96H96V320H352V192z" + } + }, + "free": [ + "solid" + ] + }, + "battle-net": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f835", + "label": "Battle.net", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448.61 225.62c26.87.18 35.57-7.43 38.92-12.37 12.47-16.32-7.06-47.6-52.85-71.33 17.76-33.58 30.11-63.68 36.34-85.3 3.38-11.83 1.09-19 .45-20.25-1.72 10.52-15.85 48.46-48.2 100.05-25-11.22-56.52-20.1-93.77-23.8-8.94-16.94-34.88-63.86-60.48-88.93C252.18 7.14 238.7 1.07 228.18.22h-.05c-13.83-1.55-22.67 5.85-27.4 11-17.2 18.53-24.33 48.87-25 84.07-7.24-12.35-17.17-24.63-28.5-25.93h-.18c-20.66-3.48-38.39 29.22-36 81.29-38.36 1.38-71 5.75-93 11.23-9.9 2.45-16.22 7.27-17.76 9.72 1-.38 22.4-9.22 111.56-9.22 5.22 53 29.75 101.82 26 93.19-9.73 15.4-38.24 62.36-47.31 97.7-5.87 22.88-4.37 37.61.15 47.14 5.57 12.75 16.41 16.72 23.2 18.26 25 5.71 55.38-3.63 86.7-21.14-7.53 12.84-13.9 28.51-9.06 39.34 7.31 19.65 44.49 18.66 88.44-9.45 20.18 32.18 40.07 57.94 55.7 74.12a39.79 39.79 0 0 0 8.75 7.09c5.14 3.21 8.58 3.37 8.58 3.37-8.24-6.75-34-38-62.54-91.78 22.22-16 45.65-38.87 67.47-69.27 122.82 4.6 143.29-24.76 148-31.64 14.67-19.88 3.43-57.44-57.32-93.69zm-77.85 106.22c23.81-37.71 30.34-67.77 29.45-92.33 27.86 17.57 47.18 37.58 49.06 58.83 1.14 12.93-8.1 29.12-78.51 33.5zM216.9 387.69c9.76-6.23 19.53-13.12 29.2-20.49 6.68 13.33 13.6 26.1 20.6 38.19-40.6 21.86-68.84 12.76-49.8-17.7zm215-171.35c-10.29-5.34-21.16-10.34-32.38-15.05a722.459 722.459 0 0 0 22.74-36.9c39.06 24.1 45.9 53.18 9.64 51.95zM279.18 398c-5.51-11.35-11-23.5-16.5-36.44 43.25 1.27 62.42-18.73 63.28-20.41 0 .07-25 15.64-62.53 12.25a718.78 718.78 0 0 0 85.06-84q13.06-15.31 24.93-31.11c-.36-.29-1.54-3-16.51-12-51.7 60.27-102.34 98-132.75 115.92-20.59-11.18-40.84-31.78-55.71-61.49-20-39.92-30-82.39-31.57-116.07 12.3.91 25.27 2.17 38.85 3.88-22.29 36.8-14.39 63-13.47 64.23 0-.07-.95-29.17 20.14-59.57a695.23 695.23 0 0 0 44.67 152.84c.93-.38 1.84.88 18.67-8.25-26.33-74.47-33.76-138.17-34-173.43 20-12.42 48.18-19.8 81.63-17.81 44.57 2.67 86.36 15.25 116.32 30.71q-10.69 15.66-23.33 32.47C365.63 152 339.1 145.84 337.5 146c.11 0 25.9 14.07 41.52 47.22a717.63 717.63 0 0 0-115.34-31.71 646.608 646.608 0 0 0-39.39-6.05c-.07.45-1.81 1.85-2.16 20.33C300 190.28 358.78 215.68 389.36 233c.74 23.55-6.95 51.61-25.41 79.57-24.6 37.31-56.39 67.23-84.77 85.43zm27.4-287c-44.56-1.66-73.58 7.43-94.69 20.67 2-52.3 21.31-76.38 38.21-75.28C267 52.15 305 108.55 306.58 111zm-130.65 3.1c.48 12.11 1.59 24.62 3.21 37.28-14.55-.85-28.74-1.25-42.4-1.26-.08 3.24-.12-51 24.67-49.59h.09c5.76 1.09 10.63 6.88 14.43 13.57zm-28.06 162c20.76 39.7 43.3 60.57 65.25 72.31-46.79 24.76-77.53 20-84.92 4.51-.2-.21-11.13-15.3 19.67-76.81zm210.06 74.8" + } + }, + "free": [ + "brands" + ] + }, + "bed": { + "aliases": { + "unicodes": { + "composite": [ + "1f6cc" + ], + "secondary": [ + "10f236" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hospital", + "hotel", + "lodging", + "mattress", + "patient", + "person in bed", + "rest", + "sleep", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f236", + "label": "Bed", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V320H288V160c0-17.7 14.3-32 32-32H544c53 0 96 43 96 96V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V416H352 320 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 46.3 14.3 32 32 32zm144 96a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + }, + "free": [ + "solid" + ] + }, + "bed-pulse": { + "aliases": { + "names": [ + "procedures" + ], + "unicodes": { + "secondary": [ + "10f487" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "EKG", + "bed", + "electrocardiogram", + "health", + "hospital", + "life", + "patient", + "vital" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f487", + "label": "Bed Pulse", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M483.2 9.6L524 64h92c13.3 0 24 10.7 24 24s-10.7 24-24 24H512c-7.6 0-14.7-3.6-19.2-9.6L468.7 70.3l-47 99.9c-3.7 7.8-11.3 13.1-19.9 13.7s-16.9-3.4-21.7-10.6L339.2 112H216c-13.3 0-24-10.7-24-24s10.7-24 24-24H352c8 0 15.5 4 20 10.7l24.4 36.6 45.9-97.5C445.9 6.2 453.2 1 461.6 .1s16.6 2.7 21.6 9.5zM320 160h12.7l20.7 31.1c11.2 16.8 30.6 26.3 50.7 24.8s37.9-13.7 46.5-32L461.9 160H544c53 0 96 43 96 96V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H352 320 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V96C0 78.3 14.3 64 32 64s32 14.3 32 32V352H288V192c0-17.7 14.3-32 32-32zm-144 0a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + }, + "free": [ + "solid" + ] + }, + "beer-mug-empty": { + "aliases": { + "names": [ + "beer" + ], + "unicodes": { + "secondary": [ + "10f0fc" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "ale", + "bar", + "beverage", + "brew", + "brewery", + "drink", + "foam", + "lager", + "liquor", + "mug", + "stein" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0fc", + "label": "Beer Mug Empty", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 64c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32V96h51.2c42.4 0 76.8 34.4 76.8 76.8V274.9c0 30.4-17.9 57.9-45.6 70.2L384 381.7V416c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V64zM384 311.6l56.4-25.1c4.6-2.1 7.6-6.6 7.6-11.7V172.8c0-7.1-5.7-12.8-12.8-12.8H384V311.6zM160 144c0-8.8-7.2-16-16-16s-16 7.2-16 16V368c0 8.8 7.2 16 16 16s16-7.2 16-16V144zm64 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V368c0 8.8 7.2 16 16 16s16-7.2 16-16V144zm64 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V368c0 8.8 7.2 16 16 16s16-7.2 16-16V144z" + } + }, + "free": [ + "solid" + ] + }, + "behance": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1b4", + "label": "Behance", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2.6-8.7.6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z" + } + }, + "free": [ + "brands" + ] + }, + "bell": { + "aliases": { + "unicodes": { + "composite": [ + "1f514", + "f0a2" + ], + "secondary": [ + "10f0f3" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.2.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alarm", + "alert", + "bel", + "bell", + "chime", + "notification", + "reminder" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0f3", + "label": "Bell", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0c-17.7 0-32 14.3-32 32V51.2C119 66 64 130.6 64 208v18.8c0 47-17.3 92.4-48.5 127.6l-7.4 8.3c-8.4 9.4-10.4 22.9-5.3 34.4S19.4 416 32 416H416c12.6 0 24-7.4 29.2-18.9s3.1-25-5.3-34.4l-7.4-8.3C401.3 319.2 384 273.9 384 226.8V208c0-77.4-55-142-128-156.8V32c0-17.7-14.3-32-32-32zm45.3 493.3c12-12 18.7-28.3 18.7-45.3H224 160c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7z" + }, + "regular": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0c-17.7 0-32 14.3-32 32V49.9C119.5 61.4 64 124.2 64 200v33.4c0 45.4-15.5 89.5-43.8 124.9L5.3 377c-5.8 7.2-6.9 17.1-2.9 25.4S14.8 416 24 416H424c9.2 0 17.6-5.3 21.6-13.6s2.9-18.2-2.9-25.4l-14.9-18.6C399.5 322.9 384 278.8 384 233.4V200c0-75.8-55.5-138.6-128-150.1V32c0-17.7-14.3-32-32-32zm0 96h8c57.4 0 104 46.6 104 104v33.4c0 47.9 13.9 94.6 39.7 134.6H72.3C98.1 328 112 281.3 112 233.4V200c0-57.4 46.6-104 104-104h8zm64 352H224 160c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "bell-concierge": { + "aliases": { + "names": [ + "concierge-bell" + ], + "unicodes": { + "composite": [ + "1f6ce" + ], + "secondary": [ + "10f562" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attention", + "bell", + "bellhop", + "bellhop bell", + "hotel", + "receptionist", + "service", + "support" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f562", + "label": "Bell Concierge", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M216 64c-13.3 0-24 10.7-24 24s10.7 24 24 24h16v33.3C119.6 157.2 32 252.4 32 368H480c0-115.6-87.6-210.8-200-222.7V112h16c13.3 0 24-10.7 24-24s-10.7-24-24-24H256 216zM24 400c-13.3 0-24 10.7-24 24s10.7 24 24 24H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H24z" + } + }, + "free": [ + "solid" + ] + }, + "bell-slash": { + "aliases": { + "unicodes": { + "composite": [ + "1f515", + "f1f7" + ], + "secondary": [ + "10f1f6" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alert", + "bell", + "bell with slash", + "cancel", + "disabled", + "forbidden", + "mute", + "notification", + "off", + "quiet", + "reminder", + "silent" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1f6", + "label": "Bell Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-87.5-68.6c.5-1.7 .7-3.5 .7-5.4c0-27.6-11-54.1-30.5-73.7L512 320c-20.5-20.5-32-48.3-32-77.3V208c0-77.4-55-142-128-156.8V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V51.2c-42.6 8.6-79 34.2-102 69.3L38.8 5.1zM160 242.7c0 29-11.5 56.8-32 77.3l-1.5 1.5C107 341 96 367.5 96 395.2c0 11.5 9.3 20.8 20.8 20.8H406.2L160 222.1v20.7zM384 448H320 256c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z" + }, + "regular": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L542.6 400c2.7-7.8 1.3-16.5-3.9-23l-14.9-18.6C495.5 322.9 480 278.8 480 233.4V200c0-75.8-55.5-138.6-128-150.1V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V49.9c-43.9 7-81.5 32.7-104.4 68.7L38.8 5.1zM221.7 148.4C239.6 117.1 273.3 96 312 96h8 8c57.4 0 104 46.6 104 104v33.4c0 32.7 6.4 64.8 18.7 94.5L221.7 148.4zm-61.7 85c0 45.4-15.5 89.5-43.8 124.9L101.3 377c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6H406.2l-60.9-48H168.3c21.2-32.8 34.4-70.3 38.4-109.1L160 222.1v11.4zM384 448H320 256c0 17 6.7 33.3 18.7 45.3s28.3 18.7 45.3 18.7s33.3-6.7 45.3-18.7s18.7-28.3 18.7-45.3z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "bezier-curve": { + "aliases": { + "unicodes": { + "secondary": [ + "10f55b" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "curves", + "illustrator", + "lines", + "path", + "vector" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55b", + "label": "Bezier Curve", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M296 136V88h48v48H296zM288 32c-26.5 0-48 21.5-48 48v4H121.6C111.2 62.7 89.3 48 64 48C28.7 48 0 76.7 0 112s28.7 64 64 64c25.3 0 47.2-14.7 57.6-36h66.9c-58.9 39.6-98.9 105-104 180H80c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48h-3.3c5.9-67 48.5-123.4 107.5-149.1c8.6 12.7 23.2 21.1 39.8 21.1h64c16.6 0 31.1-8.4 39.8-21.1c59 25.7 101.6 82.1 107.5 149.1H496c-26.5 0-48 21.5-48 48v64c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48h-4.5c-5-75-45.1-140.4-104-180h66.9c10.4 21.3 32.3 36 57.6 36c35.3 0 64-28.7 64-64s-28.7-64-64-64c-25.3 0-47.2 14.7-57.6 36H400V80c0-26.5-21.5-48-48-48H288zM88 376h48v48H88V376zm416 48V376h48v48H504z" + } + }, + "free": [ + "solid" + ] + }, + "bicycle": { + "aliases": { + "unicodes": { + "composite": [ + "1f6b2" + ], + "secondary": [ + "10f206" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bicycle", + "bike", + "gears", + "pedal", + "transportation", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f206", + "label": "Bicycle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M312 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h25.7l34.6 64H222.9l-27.4-38C191 99.7 183.7 96 176 96H120c-13.3 0-24 10.7-24 24s10.7 24 24 24h43.7l22.1 30.7-26.6 53.1c-10-2.5-20.5-3.8-31.2-3.8C57.3 224 0 281.3 0 352s57.3 128 128 128c65.3 0 119.1-48.9 127-112h49c8.5 0 16.3-4.5 20.7-11.8l84.8-143.5 21.7 40.1C402.4 276.3 384 312 384 352c0 70.7 57.3 128 128 128s128-57.3 128-128s-57.3-128-128-128c-13.5 0-26.5 2.1-38.7 6L375.4 48.8C369.8 38.4 359 32 347.2 32H312zM458.6 303.7l32.3 59.7c6.3 11.7 20.9 16 32.5 9.7s16-20.9 9.7-32.5l-32.3-59.7c3.6-.6 7.4-.9 11.2-.9c39.8 0 72 32.2 72 72s-32.2 72-72 72s-72-32.2-72-72c0-18.6 7-35.5 18.6-48.3zM133.2 368h65c-7.3 32.1-36 56-70.2 56c-39.8 0-72-32.2-72-72s32.2-72 72-72c1.7 0 3.4 .1 5.1 .2l-24.2 48.5c-9 18.1 4.1 39.4 24.3 39.4zm33.7-48l50.7-101.3 72.9 101.2-.1 .1H166.8zm90.6-128H365.9L317 274.8 257.4 192z" + } + }, + "free": [ + "solid" + ] + }, + "bilibili": { + "changes": [ + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e3d9", + "label": "Bilibili", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M488.6 104.1C505.3 122.2 513 143.8 511.9 169.8V372.2C511.5 398.6 502.7 420.3 485.4 437.3C468.2 454.3 446.3 463.2 419.9 464H92.02C65.57 463.2 43.81 454.2 26.74 436.8C9.682 419.4 .7667 396.5 0 368.2V169.8C.7667 143.8 9.682 122.2 26.74 104.1C43.81 87.75 65.57 78.77 92.02 78H121.4L96.05 52.19C90.3 46.46 87.42 39.19 87.42 30.4C87.42 21.6 90.3 14.34 96.05 8.603C101.8 2.868 109.1 0 117.9 0C126.7 0 134 2.868 139.8 8.603L213.1 78H301.1L375.6 8.603C381.7 2.868 389.2 0 398 0C406.8 0 414.1 2.868 419.9 8.603C425.6 14.34 428.5 21.6 428.5 30.4C428.5 39.19 425.6 46.46 419.9 52.19L394.6 78L423.9 78C450.3 78.77 471.9 87.75 488.6 104.1H488.6zM449.8 173.8C449.4 164.2 446.1 156.4 439.1 150.3C433.9 144.2 425.1 140.9 416.4 140.5H96.05C86.46 140.9 78.6 144.2 72.47 150.3C66.33 156.4 63.07 164.2 62.69 173.8V368.2C62.69 377.4 65.95 385.2 72.47 391.7C78.99 398.2 86.85 401.5 96.05 401.5H416.4C425.6 401.5 433.4 398.2 439.7 391.7C446 385.2 449.4 377.4 449.8 368.2L449.8 173.8zM185.5 216.5C191.8 222.8 195.2 230.6 195.6 239.7V273C195.2 282.2 191.9 289.9 185.8 296.2C179.6 302.5 171.8 305.7 162.2 305.7C152.6 305.7 144.7 302.5 138.6 296.2C132.5 289.9 129.2 282.2 128.8 273V239.7C129.2 230.6 132.6 222.8 138.9 216.5C145.2 210.2 152.1 206.9 162.2 206.5C171.4 206.9 179.2 210.2 185.5 216.5H185.5zM377 216.5C383.3 222.8 386.7 230.6 387.1 239.7V273C386.7 282.2 383.4 289.9 377.3 296.2C371.2 302.5 363.3 305.7 353.7 305.7C344.1 305.7 336.3 302.5 330.1 296.2C323.1 289.9 320.7 282.2 320.4 273V239.7C320.7 230.6 324.1 222.8 330.4 216.5C336.7 210.2 344.5 206.9 353.7 206.5C362.9 206.9 370.7 210.2 377 216.5H377z" + } + }, + "free": [ + "brands" + ] + }, + "bimobject": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f378", + "label": "BIMobject", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z" + } + }, + "free": [ + "brands" + ] + }, + "binoculars": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1e5" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "glasses", + "magnify", + "scenic", + "spyglass", + "view" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1e5", + "label": "Binoculars", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 32h32c17.7 0 32 14.3 32 32V96H96V64c0-17.7 14.3-32 32-32zm64 96V448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V388.9c0-34.6 9.4-68.6 27.2-98.3C40.9 267.8 49.7 242.4 53 216L60.5 156c2-16 15.6-28 31.8-28H192zm227.8 0c16.1 0 29.8 12 31.8 28L459 216c3.3 26.4 12.1 51.8 25.8 74.6c17.8 29.7 27.2 63.7 27.2 98.3V448c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V128h99.8zM320 64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V96H320V64zm-32 64V288H224V128h64z" + } + }, + "free": [ + "solid" + ] + }, + "biohazard": { + "aliases": { + "unicodes": { + "composite": [ + "2623" + ], + "secondary": [ + "10f780" + ] + } + }, + "changes": [ + "5.6.0", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "biohazard", + "covid-19", + "danger", + "dangerous", + "epidemic", + "hazmat", + "medical", + "pandemic", + "radioactive", + "sign", + "toxic", + "waste", + "zombie" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f780", + "label": "Biohazard", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M163.2 0c-1.7 0-3.3 .7-4.5 1.9c-28.2 28.6-45.6 67.8-45.6 111.1c0 24.6 5.6 47.9 15.7 68.7c-20.7 2.2-41.2 8.5-60.4 19.3C35.8 219.1 12.7 247 .5 278.6c-.6 1.6-.4 3.4 .4 4.9c2.1 3.5 7 4 10 1.3C60.6 239.3 148.8 230.6 193 305s-7.6 144.1-73 163c-4 1.1-5.9 5.6-3.9 9c.9 1.5 2.4 2.6 4.2 2.8c34.3 5.6 70.8 .1 103.3-18.1c19.2-10.8 35.2-24.9 47.6-41.3c12.4 16.3 28.3 30.5 47.6 41.3c32.5 18.2 69 23.7 103.3 18.1c1.8-.3 3.3-1.3 4.2-2.8c2.1-3.5 .1-7.9-3.9-9c-65.4-19-117.3-88.7-73-163s132.5-65.6 182.1-20.2c3 2.7 7.9 2.2 10-1.3c.9-1.5 1.1-3.3 .4-4.9c-12.2-31.6-35.3-59.5-67.8-77.7c-19.2-10.7-39.7-17.1-60.4-19.3c10-20.8 15.7-44.1 15.7-68.7c0-43.3-17.4-82.5-45.6-111.1C382.5 .7 380.9 0 379.2 0c-4.7 0-7.9 4.9-6.3 9.4c24.1 66.4-9.9 156.3-101.8 156.3s-125.8-89.9-101.8-156.3C171 4.9 167.9 0 163.2 0zM226 256a45.2 45.2 0 1 1 90.4 0A45.2 45.2 0 1 1 226 256zM171.1 393c5.9-11.1 9.2-23.7 8.1-37.5c-18.3-17-32-39-38.8-63.8c-11.8-7.6-24.7-11.1-37.7-11.7c-8.4-.4-17.1 .5-25.5 2.6c7.3 53.7 36.4 100.5 78.1 131.2c6.4-6.3 11.8-13.3 15.8-20.8zM271.2 60.2c-27.1 0-53 5.5-76.4 15.5c1.9 7.8 4.7 15.3 8.5 22.1c6.4 11.6 15.7 21.7 28.3 28.5c12.6-3.8 25.9-5.9 39.7-5.9s27.1 2.1 39.7 5.9c12.6-6.8 21.9-16.9 28.3-28.5c3.8-6.8 6.6-14.3 8.5-22.1c-23.5-10-49.3-15.5-76.4-15.5zM401.9 291.7c-6.8 24.8-20.4 46.8-38.8 63.8c-1.2 13.8 2.1 26.4 8.1 37.5c4 7.5 9.4 14.5 15.8 20.8c41.7-30.7 70.8-77.4 78.1-131.2c-8.5-2-17.1-2.9-25.5-2.6c-13 .6-25.9 4.1-37.7 11.7z" + } + }, + "free": [ + "solid" + ] + }, + "bitbucket": { + "aliases": { + "unicodes": { + "composite": [ + "f172" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian", + "bitbucket-square", + "git" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f171", + "label": "Bitbucket", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M22.2 32A16 16 0 0 0 6 47.8a26.35 26.35 0 0 0 .2 2.8l67.9 412.1a21.77 21.77 0 0 0 21.3 18.2h325.7a16 16 0 0 0 16-13.4L505 50.7a16 16 0 0 0-13.2-18.3 24.58 24.58 0 0 0-2.8-.2L22.2 32zm285.9 297.8h-104l-28.1-147h157.3l-25.2 147z" + } + }, + "free": [ + "brands" + ] + }, + "bitcoin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f379", + "label": "Bitcoin", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z" + } + }, + "free": [ + "brands" + ] + }, + "bitcoin-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Bitcoin Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e0b4", + "label": "Bitcoin Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M48 32C48 14.3 62.3 0 80 0s32 14.3 32 32V64h32V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64c0 1.5-.1 3.1-.3 4.5C254.1 82.2 288 125.1 288 176c0 24.2-7.7 46.6-20.7 64.9c31.7 19.8 52.7 55 52.7 95.1c0 61.9-50.1 112-112 112v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H112v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H41.7C18.7 448 0 429.3 0 406.3V288 265.7 224 101.6C0 80.8 16.8 64 37.6 64H48V32zM64 224H176c26.5 0 48-21.5 48-48s-21.5-48-48-48H64v96zm112 64H64v96H208c26.5 0 48-21.5 48-48s-21.5-48-48-48H176z" + } + }, + "free": [ + "solid" + ] + }, + "bity": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f37a", + "label": "Bity", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3.8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z" + } + }, + "free": [ + "brands" + ] + }, + "black-tie": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f27e", + "label": "Font Awesome Black Tie", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z" + } + }, + "free": [ + "brands" + ] + }, + "blackberry": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f37b", + "label": "BlackBerry", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1.1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1.1-16.3-11.6-39.7-53.7-39.7z" + } + }, + "free": [ + "brands" + ] + }, + "blender": { + "aliases": { + "unicodes": { + "secondary": [ + "10f517" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cocktail", + "milkshake", + "mixer", + "puree", + "smoothie" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f517", + "label": "Blender", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0h64 32H470.1c21.1 0 36.4 20.1 30.9 40.4L494.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H485.8l-17.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H459.6l-17.5 64H336c-8.8 0-16 7.2-16 16s7.2 16 16 16h97.5L416 352H160l-8.7-96H64c-35.3 0-64-28.7-64-64V64zM145.5 192L133.8 64H64V192h81.5zM144 384H432c26.5 0 48 21.5 48 48v32c0 26.5-21.5 48-48 48H144c-26.5 0-48-21.5-48-48V432c0-26.5 21.5-48 48-48zm144 96a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "blender-phone": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6b6" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "appliance", + "cocktail", + "fantasy", + "milkshake", + "mixer", + "puree", + "silly", + "smoothie" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6b6", + "label": "Blender Phone", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M224 352L196.8 52.3C194.2 24.2 216.3 0 244.6 0H534.1c21.1 0 36.4 20.1 30.9 40.4L558.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16H549.8l-17.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16H523.6l-17.5 64H400c-8.8 0-16 7.2-16 16s7.2 16 16 16h97.5L480 352H224zm-16 32H496c26.5 0 48 21.5 48 48v32c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48V432c0-26.5 21.5-48 48-48zm144 96a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM147.5 30.7c10.8 6.7 15.3 21 10.6 33.4l-22 57.8c-4.2 10.9-14.5 17.6-25.3 16.4l-33.3-3.6c-13.6 42.2-13.6 88.4 0 130.7l33.3-3.6c10.9-1.2 21.2 5.5 25.3 16.4l22 57.8c4.7 12.4 .2 26.7-10.6 33.4l-44 27.2c-9.7 6-21.9 4.2-29.8-4.3C-24.6 286-24.6 114 73.7 7.8C81.6-.7 93.8-2.5 103.5 3.5l44 27.2z" + } + }, + "free": [ + "solid" + ] + }, + "blog": { + "aliases": { + "unicodes": { + "secondary": [ + "10f781" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "journal", + "log", + "online", + "personal", + "post", + "web 2.0", + "wordpress", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f781", + "label": "Blog", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 32c0 17.7 14.3 32 32 32c123.7 0 224 100.3 224 224c0 17.7 14.3 32 32 32s32-14.3 32-32C512 128.9 383.1 0 224 0c-17.7 0-32 14.3-32 32zm0 96c0 17.7 14.3 32 32 32c70.7 0 128 57.3 128 128c0 17.7 14.3 32 32 32s32-14.3 32-32c0-106-86-192-192-192c-17.7 0-32 14.3-32 32zM96 144c0-26.5-21.5-48-48-48S0 117.5 0 144V368c0 79.5 64.5 144 144 144s144-64.5 144-144s-64.5-144-144-144H128v96h16c26.5 0 48 21.5 48 48s-21.5 48-48 48s-48-21.5-48-48V144z" + } + }, + "free": [ + "solid" + ] + }, + "blogger": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f37c", + "label": "Blogger", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1.1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4.1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8.2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9.7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6.2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5.4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7.5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z" + } + }, + "free": [ + "brands" + ] + }, + "blogger-b": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f37d", + "label": "Blogger B", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8.6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7.7 165.8.2 246.8c-.6 101.5.1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4.1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5.2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5.9c-68.1.8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z" + } + }, + "free": [ + "brands" + ] + }, + "bluetooth": { + "aliases": { + "unicodes": { + "secondary": [ + "10f293" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "signal" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f293", + "label": "Bluetooth", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z" + } + }, + "free": [ + "brands" + ] + }, + "bluetooth-b": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f294", + "label": "Bluetooth", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M196.48 260.023l92.626-103.333L143.125 0v206.33l-86.111-86.111-31.406 31.405 108.061 108.399L25.608 368.422l31.406 31.405 86.111-86.111L145.84 512l148.552-148.644-97.912-103.333zm40.86-102.996l-49.977 49.978-.338-100.295 50.315 50.317zM187.363 313.04l49.977 49.978-50.315 50.316.338-100.294z" + } + }, + "free": [ + "brands" + ] + }, + "bold": { + "aliases": { + "unicodes": { + "secondary": [ + "10f032" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emphasis", + "format", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f032", + "label": "Bold", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H80 96 224c70.7 0 128 57.3 128 128c0 31.3-11.3 60.1-30 82.3c37.1 22.4 62 63.1 62 109.7c0 70.7-57.3 128-128 128H96 80 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48V256 96H32C14.3 96 0 81.7 0 64zM224 224c35.3 0 64-28.7 64-64s-28.7-64-64-64H112V224H224zM112 288V416H256c35.3 0 64-28.7 64-64s-28.7-64-64-64H224 112z" + } + }, + "free": [ + "solid" + ] + }, + "bolt": { + "aliases": { + "names": [ + "zap" + ], + "unicodes": { + "composite": [ + "26a1" + ], + "secondary": [ + "10f0e7" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.5.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "charge", + "danger", + "electric", + "electricity", + "flash", + "high voltage", + "lightning", + "voltage", + "weather", + "zap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0e7", + "label": "Bolt", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M317.4 44.6c5.9-13.7 1.5-29.7-10.6-38.5s-28.6-8-39.9 1.8l-256 224C.9 240.7-2.6 254.8 2 267.3S18.7 288 32 288H143.5L66.6 467.4c-5.9 13.7-1.5 29.7 10.6 38.5s28.6 8 39.9-1.8l256-224c10-8.8 13.6-22.9 8.9-35.3s-16.6-20.7-30-20.7H240.5L317.4 44.6z" + } + }, + "free": [ + "solid" + ] + }, + "bolt-lightning": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electricity", + "flash", + "lightning", + "weather", + "zap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e0b7", + "label": "Bolt Lightning", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 256L28.5 28c2-16 15.6-28 31.8-28H228.9c15 0 27.1 12.1 27.1 27.1c0 3.2-.6 6.5-1.7 9.5L208 160H347.3c20.2 0 36.7 16.4 36.7 36.7c0 7.4-2.2 14.6-6.4 20.7l-192.2 281c-5.9 8.6-15.6 13.7-25.9 13.7h-2.9c-15.7 0-28.5-12.8-28.5-28.5c0-2.3 .3-4.6 .9-6.9L176 288H32c-17.7 0-32-14.3-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "bomb": { + "aliases": { + "unicodes": { + "composite": [ + "1f4a3" + ], + "secondary": [ + "10f1e2" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bomb", + "comic", + "error", + "explode", + "fuse", + "grenade", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1e2", + "label": "Bomb", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M459.1 52.4L442.6 6.5C440.7 2.6 436.5 0 432.1 0s-8.5 2.6-10.4 6.5L405.2 52.4l-46 16.8c-4.3 1.6-7.3 5.9-7.2 10.4c0 4.5 3 8.7 7.2 10.2l45.7 16.8 16.8 45.8c1.5 4.4 5.8 7.5 10.4 7.5s8.9-3.1 10.4-7.5l16.5-45.8 45.7-16.8c4.2-1.5 7.2-5.7 7.2-10.2c0-4.6-3-8.9-7.2-10.4L459.1 52.4zm-132.4 53c-12.5-12.5-32.8-12.5-45.3 0l-2.9 2.9C256.5 100.3 232.7 96 208 96C93.1 96 0 189.1 0 304S93.1 512 208 512s208-93.1 208-208c0-24.7-4.3-48.5-12.2-70.5l2.9-2.9c12.5-12.5 12.5-32.8 0-45.3l-80-80zM200 192c-57.4 0-104 46.6-104 104v8c0 8.8-7.2 16-16 16s-16-7.2-16-16v-8c0-75.1 60.9-136 136-136h8c8.8 0 16 7.2 16 16s-7.2 16-16 16h-8z" + } + }, + "free": [ + "solid" + ] + }, + "bone": { + "aliases": { + "unicodes": { + "composite": [ + "1f9b4" + ], + "secondary": [ + "10f5d7" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bone", + "calcium", + "dog", + "skeletal", + "skeleton", + "tibia" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5d7", + "label": "Bone", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M153.7 144.8c6.9 16.3 20.6 31.2 38.3 31.2H384c17.7 0 31.4-14.9 38.3-31.2C434.4 116.1 462.9 96 496 96c44.2 0 80 35.8 80 80c0 30.4-17 56.9-42 70.4c-3.6 1.9-6 5.5-6 9.6s2.4 7.7 6 9.6c25 13.5 42 40 42 70.4c0 44.2-35.8 80-80 80c-33.1 0-61.6-20.1-73.7-48.8C415.4 350.9 401.7 336 384 336H192c-17.7 0-31.4 14.9-38.3 31.2C141.6 395.9 113.1 416 80 416c-44.2 0-80-35.8-80-80c0-30.4 17-56.9 42-70.4c3.6-1.9 6-5.5 6-9.6s-2.4-7.7-6-9.6C17 232.9 0 206.4 0 176c0-44.2 35.8-80 80-80c33.1 0 61.6 20.1 73.7 48.8z" + } + }, + "free": [ + "solid" + ] + }, + "bong": { + "aliases": { + "unicodes": { + "secondary": [ + "10f55c" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aparatus", + "cannabis", + "marijuana", + "pipe", + "smoke", + "smoking" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55c", + "label": "Bong", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 208.5c0 29.1-15.6 53.9-37.2 67.8c-17.2 11.1-31.5 26.1-41.7 43.7H302.9c-10.2-17.6-24.5-32.6-41.7-43.7c-21.6-13.9-37.2-38.7-37.2-67.8V64H160V208.5zM288 64V208.5c0 5.7 3.1 10.9 7.9 14c11.2 7.2 21.5 15.5 30.9 24.8L366.1 208l-7-7c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l24 24 24 24c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-7-7-43.3 43.3C374 314.1 384 347.9 384 384c0 39.4-11.9 76.1-32.2 106.5c-9.6 14.4-26.5 21.5-43.8 21.5H76.1c-17.3 0-34.2-7.1-43.8-21.5C11.9 460.1 0 423.4 0 384c0-67.8 35.1-127.3 88.1-161.5c4.8-3.1 7.9-8.3 7.9-14V64C78.3 64 64 49.7 64 32S78.3 0 96 0h16H272h16c17.7 0 32 14.3 32 32s-14.3 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "book": { + "aliases": { + "unicodes": { + "composite": [ + "1f4d4" + ], + "secondary": [ + "10f02d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "cover", + "decorated", + "diary", + "documentation", + "journal", + "library", + "notebook", + "notebook with decorative cover", + "read", + "research" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f02d", + "label": "Book", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H384 96zm0 384H352v64H96c-17.7 0-32-14.3-32-32s14.3-32 32-32zm32-240c0-8.8 7.2-16 16-16H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16zm16 48H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "book-atlas": { + "aliases": { + "names": [ + "atlas" + ], + "unicodes": { + "secondary": [ + "10f558" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "directions", + "geography", + "globe", + "library", + "map", + "research", + "travel", + "wayfinding" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f558", + "label": "Book Atlas", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zM247.4 283.8c-3.7 3.7-6.2 4.2-7.4 4.2s-3.7-.5-7.4-4.2c-3.8-3.7-8-10-11.8-18.9c-6.2-14.5-10.8-34.3-12.2-56.9h63c-1.5 22.6-6 42.4-12.2 56.9c-3.8 8.9-8 15.2-11.8 18.9zm42.7-9.9c7.3-18.3 12-41.1 13.4-65.9h31.1c-4.7 27.9-21.4 51.7-44.5 65.9zm0-163.8c23.2 14.2 39.9 38 44.5 65.9H303.5c-1.4-24.7-6.1-47.5-13.4-65.9zM368 192a128 128 0 1 0 -256 0 128 128 0 1 0 256 0zM145.3 208h31.1c1.4 24.7 6.1 47.5 13.4 65.9c-23.2-14.2-39.9-38-44.5-65.9zm31.1-32H145.3c4.7-27.9 21.4-51.7 44.5-65.9c-7.3 18.3-12 41.1-13.4 65.9zm56.1-75.8c3.7-3.7 6.2-4.2 7.4-4.2s3.7 .5 7.4 4.2c3.8 3.7 8 10 11.8 18.9c6.2 14.5 10.8 34.3 12.2 56.9h-63c1.5-22.6 6-42.4 12.2-56.9c3.8-8.9 8-15.2 11.8-18.9z" + } + }, + "free": [ + "solid" + ] + }, + "book-bible": { + "aliases": { + "names": [ + "bible" + ], + "unicodes": { + "secondary": [ + "10f647" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "catholicism", + "christianity", + "god", + "holy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f647", + "label": "Book Bible", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V384c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H384 96zm0 384H352v64H96c-17.7 0-32-14.3-32-32s14.3-32 32-32zM208 80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272V304c0 8.8-7.2 16-16 16H224c-8.8 0-16-7.2-16-16V192H160c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16h48V80z" + } + }, + "free": [ + "solid" + ] + }, + "book-bookmark": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "library", + "research" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e0bb", + "label": "Book Bookmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0h96V190.7c0 13.4 15.5 20.9 26 12.5L272 160l54 43.2c10.5 8.4 26 .9 26-12.5V0h32 32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "book-journal-whills": { + "aliases": { + "names": [ + "journal-whills" + ], + "unicodes": { + "secondary": [ + "10f66a" + ] + } + }, + "changes": [ + "5.3.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "force", + "jedi", + "sith", + "star wars", + "yoda" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f66a", + "label": "Book Journal Whills", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zm90.4-234.4l-21.2-21.2c-3 10.1-5.1 20.6-5.1 31.6c0 .2 0 .5 .1 .8s.1 .5 .1 .8L165.2 226c2.5 2.1 3.4 5.8 2.3 8.9c-1.3 3-4.1 5.1-7.5 5.1c-1.9-.1-3.8-.8-5.2-2l-23.6-20.6C142.8 267 186.9 304 240 304s97.3-37 108.9-86.6L325.3 238c-1.4 1.2-3.3 2-5.3 2c-2.2-.1-4.4-1.1-6-2.8c-1.3-1.5-1.9-3.4-2-5.2c.1-2.2 1.1-4.4 2.7-6l37.1-32.5c0-.3 0-.5 .1-.8s.1-.5 .1-.8c0-11-2.1-21.5-5.1-31.6l-21.2 21.2c-3.1 3.1-8.1 3.1-11.3 0s-3.1-8.1 0-11.2l26.4-26.5c-8.2-17-20.5-31.7-35.9-42.6c-2.7-1.9-6.2 1.4-5 4.5c8.5 22.4 3.6 48-13 65.6c-3.3 3.4-3.6 8.9-.9 12.7c9.8 14 12.7 31.9 7.5 48.5c-5.9 19.4-22 34.1-41.9 38.3l-1.4-34.3 12.6 8.6c.6 .4 1.5 .6 2.3 .6c1.5 0 2.7-.8 3.5-2s.6-2.8-.1-4L260 225.4l18-3.6c1.8-.4 3.1-2.1 3.1-4s-1.4-3.5-3.1-3.9l-18-3.7 8.5-14.3c.8-1.2 .9-2.9 .1-4.1s-2-2-3.5-2l-.1 0c-.7 .1-1.5 .3-2.1 .7l-14.1 9.6L244 87.9c-.1-2.2-1.9-3.9-4-3.9s-3.9 1.6-4 3.9l-4.6 110.8-12-8.1c-1.5-1.1-3.6-.9-5 .4s-1.6 3.4-.8 5l8.6 14.3-18 3.7c-1.8 .4-3.1 2-3.1 3.9s1.4 3.6 3.1 4l18 3.8-8.6 14.2c-.2 .6-.5 1.4-.5 2c0 1.1 .5 2.1 1.2 3c.8 .6 1.8 1 2.8 1c.7 0 1.6-.2 2.2-.6l10.4-7.1-1.4 32.8c-19.9-4.1-36-18.9-41.9-38.3c-5.1-16.6-2.2-34.4 7.6-48.5c2.7-3.9 2.3-9.3-.9-12.7c-16.6-17.5-21.6-43.1-13.1-65.5c1.2-3.1-2.3-6.4-5-4.5c-15.3 10.9-27.6 25.6-35.8 42.6l26.4 26.5c3.1 3.1 3.1 8.1 0 11.2s-8.1 3.1-11.2 0z" + } + }, + "free": [ + "solid" + ] + }, + "book-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7e6" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "diary", + "documentation", + "health", + "history", + "journal", + "library", + "read", + "record", + "research" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7e6", + "label": "Book Medical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zM208 112v48H160c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V224h48c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H272V112c0-8.8-7.2-16-16-16H224c-8.8 0-16 7.2-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "book-open": { + "aliases": { + "unicodes": { + "composite": [ + "1f4d6", + "1f56e" + ], + "secondary": [ + "10f518" + ] + } + }, + "changes": [ + "5.0.13", + "5.1.0", + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Book", + "book", + "flyer", + "library", + "notebook", + "open", + "open book", + "pamphlet", + "reading", + "research" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f518", + "label": "Book Open", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M249.6 471.5c10.8 3.8 22.4-4.1 22.4-15.5V78.6c0-4.2-1.6-8.4-5-11C247.4 52 202.4 32 144 32C93.5 32 46.3 45.3 18.1 56.1C6.8 60.5 0 71.7 0 83.8V454.1c0 11.9 12.8 20.2 24.1 16.5C55.6 460.1 105.5 448 144 448c33.9 0 79 14 105.6 23.5zm76.8 0C353 462 398.1 448 432 448c38.5 0 88.4 12.1 119.9 22.6c11.3 3.8 24.1-4.6 24.1-16.5V83.8c0-12.1-6.8-23.3-18.1-27.6C529.7 45.3 482.5 32 432 32c-58.4 0-103.4 20-123 35.6c-3.3 2.6-5 6.8-5 11V456c0 11.4 11.7 19.3 22.4 15.5z" + } + }, + "free": [ + "solid" + ] + }, + "book-open-reader": { + "aliases": { + "names": [ + "book-reader" + ], + "unicodes": { + "secondary": [ + "10f5da" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flyer", + "library", + "notebook", + "open book", + "pamphlet", + "reading", + "research" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5da", + "label": "Book Open Reader", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 96a96 96 0 1 1 192 0A96 96 0 1 1 160 96zm80 152V512l-48.4-24.2c-20.9-10.4-43.5-17-66.8-19.3l-96-9.6C12.5 457.2 0 443.5 0 427V224c0-17.7 14.3-32 32-32H62.3c63.6 0 125.6 19.6 177.7 56zm32 264V248c52.1-36.4 114.1-56 177.7-56H480c17.7 0 32 14.3 32 32V427c0 16.4-12.5 30.2-28.8 31.8l-96 9.6c-23.2 2.3-45.9 8.9-66.8 19.3L272 512z" + } + }, + "free": [ + "solid" + ] + }, + "book-quran": { + "aliases": { + "names": [ + "quran" + ], + "unicodes": { + "secondary": [ + "10f687" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "islam", + "muslim", + "religion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f687", + "label": "Book Quran", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 0c53 0 96 43 96 96V416c0 53-43 96-96 96H64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32V384c-17.7 0-32-14.3-32-32V32C0 14.3 14.3 0 32 0H64 352zm0 384H96v64H352c17.7 0 32-14.3 32-32s-14.3-32-32-32zM274.1 150.2l-8.9 21.4-23.1 1.9c-5.7 .5-8 7.5-3.7 11.2L256 199.8l-5.4 22.6c-1.3 5.5 4.7 9.9 9.6 6.9L280 217.2l19.8 12.1c4.9 3 10.9-1.4 9.6-6.9L304 199.8l17.6-15.1c4.3-3.7 2-10.8-3.7-11.2l-23.1-1.9-8.9-21.4c-2.2-5.3-9.6-5.3-11.8 0zM96 192c0 70.7 57.3 128 128 128c25.6 0 49.5-7.5 69.5-20.5c3.2-2.1 4.5-6.2 3.1-9.7s-5.2-5.6-9-4.8c-6.1 1.2-12.5 1.9-19 1.9c-52.4 0-94.9-42.5-94.9-94.9s42.5-94.9 94.9-94.9c6.5 0 12.8 .7 19 1.9c3.8 .8 7.5-1.3 9-4.8s.2-7.6-3.1-9.7C273.5 71.5 249.6 64 224 64C153.3 64 96 121.3 96 192z" + } + }, + "free": [ + "solid" + ] + }, + "book-skull": { + "aliases": { + "names": [ + "book-dead" + ], + "unicodes": { + "secondary": [ + "10f6b7" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "crossbones", + "d&d", + "dark arts", + "death", + "dnd", + "documentation", + "evil", + "fantasy", + "halloween", + "holiday", + "library", + "necronomicon", + "read", + "research", + "skull", + "spell" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6b7", + "label": "Book Skull", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 43 43 0 96 0H384h32c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384 96c-53 0-96-43-96-96V96zM64 416c0 17.7 14.3 32 32 32H352V384H96c-17.7 0-32 14.3-32 32zM320 112c0-35.3-35.8-64-80-64s-80 28.7-80 64c0 20.9 12.6 39.5 32 51.2V176c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V163.2c19.4-11.7 32-30.3 32-51.2zM208 96a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm48 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM134.3 209.3c-8.1-3.5-17.5 .3-21 8.4s.3 17.5 8.4 21L199.4 272l-77.7 33.3c-8.1 3.5-11.9 12.9-8.4 21s12.9 11.9 21 8.4L240 289.4l105.7 45.3c8.1 3.5 17.5-.3 21-8.4s-.3-17.5-8.4-21L280.6 272l77.7-33.3c8.1-3.5 11.9-12.9 8.4-21s-12.9-11.9-21-8.4L240 254.6 134.3 209.3z" + } + }, + "free": [ + "solid" + ] + }, + "book-tanakh": { + "aliases": { + "names": [ + "tanakh" + ], + "unicodes": { + "secondary": [ + "10f827" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "jewish", + "judaism", + "religion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f827", + "label": "Book Tanakh", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 0c53 0 96 43 96 96V416c0 53-43 96-96 96H64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32V384c-17.7 0-32-14.3-32-32V32C0 14.3 14.3 0 32 0H64 352zm0 384H96v64H352c17.7 0 32-14.3 32-32s-14.3-32-32-32zM138.7 208l13.9 24H124.9l13.9-24zm-13.9-24L97.1 232c-6.2 10.7 1.5 24 13.9 24h55.4l27.7 48c6.2 10.7 21.6 10.7 27.7 0l27.7-48H305c12.3 0 20-13.3 13.9-24l-27.7-48 27.7-48c6.2-10.7-1.5-24-13.9-24H249.6L221.9 64c-6.2-10.7-21.6-10.7-27.7 0l-27.7 48H111c-12.3 0-20 13.3-13.9 24l27.7 48zm27.7 0l27.7-48h55.4l27.7 48-27.7 48H180.3l-27.7-48zm0-48l-13.9 24-13.9-24h27.7zm41.6-24L208 88l13.9 24H194.1zm69.3 24h27.7l-13.9 24-13.9-24zm13.9 72l13.9 24H263.4l13.9-24zm-55.4 48L208 280l-13.9-24h27.7z" + } + }, + "free": [ + "solid" + ] + }, + "bookmark": { + "aliases": { + "unicodes": { + "composite": [ + "1f516", + "f097" + ], + "secondary": [ + "10f02e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bookmark", + "favorite", + "library", + "mark", + "marker", + "read", + "remember", + "research", + "save" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f02e", + "label": "Bookmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 48V487.7C0 501.1 10.9 512 24.3 512c5 0 9.9-1.5 14-4.4L192 400 345.7 507.6c4.1 2.9 9 4.4 14 4.4c13.4 0 24.3-10.9 24.3-24.3V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0l0 48V441.4l130.1-92.9c8.3-6 19.6-6 27.9 0L336 441.4V48H48V0H336c26.5 0 48 21.5 48 48V488c0 9-5 17.2-13 21.3s-17.6 3.4-24.9-1.8L192 397.5 37.9 507.5c-7.3 5.2-16.9 5.9-24.9 1.8S0 497 0 488V48z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "bootstrap": { + "changes": [ + "5.8.0", + "5.15.4", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f836", + "label": "Bootstrap", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M333.5,201.4c0-22.1-15.6-34.3-43-34.3h-50.4v71.2h42.5C315.4,238.2,333.5,225,333.5,201.4z M517,188.6 c-9.5-30.9-10.9-68.8-9.8-98.1c1.1-30.5-22.7-58.5-54.7-58.5H123.7c-32.1,0-55.8,28.1-54.7,58.5c1,29.3-0.3,67.2-9.8,98.1 c-9.6,31-25.7,50.6-52.2,53.1v28.5c26.4,2.5,42.6,22.1,52.2,53.1c9.5,30.9,10.9,68.8,9.8,98.1c-1.1,30.5,22.7,58.5,54.7,58.5h328.7 c32.1,0,55.8-28.1,54.7-58.5c-1-29.3,0.3-67.2,9.8-98.1c9.6-31,25.7-50.6,52.1-53.1v-28.5C542.7,239.2,526.5,219.6,517,188.6z M300.2,375.1h-97.9V136.8h97.4c43.3,0,71.7,23.4,71.7,59.4c0,25.3-19.1,47.9-43.5,51.8v1.3c33.2,3.6,55.5,26.6,55.5,58.3 C383.4,349.7,352.1,375.1,300.2,375.1z M290.2,266.4h-50.1v78.4h52.3c34.2,0,52.3-13.7,52.3-39.5 C344.7,279.6,326.1,266.4,290.2,266.4z" + } + }, + "free": [ + "brands" + ] + }, + "border-all": { + "aliases": { + "unicodes": { + "secondary": [ + "10f84c" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cell", + "grid", + "outline", + "stroke", + "table" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f84c", + "label": "Border All", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 96V224H256V96H384zm0 192V416H256V288H384zM192 224H64V96H192V224zM64 288H192V416H64V288zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" + } + }, + "free": [ + "solid" + ] + }, + "border-none": { + "aliases": { + "unicodes": { + "secondary": [ + "10f850" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cell", + "grid", + "outline", + "stroke", + "table" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f850", + "label": "Border None", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 416a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm96 64a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0-384a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0 128a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM320 480a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0-448a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm0 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM224 416a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm0-320a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0 128a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM416 480a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0-384a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM32 32a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM416 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM32 224a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM224 384a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm192-64a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM32 384a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM416 128a32 32 0 1 0 0 64 32 32 0 1 0 0-64zM32 192a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm192-64a32 32 0 1 0 0 64 32 32 0 1 0 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "border-top-left": { + "aliases": { + "names": [ + "border-style" + ], + "unicodes": { + "secondary": [ + "10f853" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cell", + "outline", + "stroke", + "table" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f853", + "label": "Border Top Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-336c0-8.8 7.2-16 16-16l336 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32C35.8 32 0 67.8 0 112L0 448zm160 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm192 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm-96 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm192 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM416 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm0 32a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm0-128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "bore-hole": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bore", + "bury", + "drill", + "hole" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4c3", + "label": "Bore Hole", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c-17.7 0-32 14.3-32 32V296.6c-19.1 11.1-32 31.7-32 55.4c0 35.3 28.7 64 64 64s64-28.7 64-64c0-23.7-12.9-44.4-32-55.4V32c0-17.7-14.3-32-32-32zM48 128c-26.5 0-48 21.5-48 48V464c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H384c-17.7 0-32 14.3-32 32V352c0 53-43 96-96 96s-96-43-96-96V160c0-17.7-14.3-32-32-32H48z" + } + }, + "free": [ + "solid" + ] + }, + "bots": { + "changes": [ + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e340", + "label": "Bots", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M86.344,197.834a51.767,51.767,0,0,0-41.57,20.058V156.018a8.19,8.19,0,0,0-8.19-8.19H8.19A8.19,8.19,0,0,0,0,156.018V333.551a8.189,8.189,0,0,0,8.19,8.189H36.584a8.189,8.189,0,0,0,8.19-8.189v-8.088c11.628,13.373,25.874,19.769,41.573,19.769,34.6,0,61.922-26.164,61.922-73.843C148.266,225.452,121.229,197.834,86.344,197.834ZM71.516,305.691c-9.593,0-21.221-4.942-26.745-12.5V250.164c5.528-7.558,17.152-12.791,26.745-12.791,17.734,0,31.107,13.082,31.107,34.013C102.623,292.609,89.25,305.691,71.516,305.691Zm156.372-59.032a17.4,17.4,0,1,0,17.4,17.4A17.4,17.4,0,0,0,227.888,246.659ZM273.956,156.7V112.039a13.308,13.308,0,1,0-10.237,0V156.7a107.49,107.49,0,1,0,10.237,0Zm85.993,107.367c0,30.531-40.792,55.281-91.112,55.281s-91.111-24.75-91.111-55.281,40.792-55.281,91.111-55.281S359.949,233.532,359.949,264.062Zm-50.163,17.4a17.4,17.4,0,1,0-17.4-17.4h0A17.4,17.4,0,0,0,309.786,281.466ZM580.7,250.455c-14.828-2.617-22.387-3.78-22.387-9.885,0-5.523,7.268-9.884,17.735-9.884a65.56,65.56,0,0,1,34.484,10.1,8.171,8.171,0,0,0,11.288-2.468c.07-.11.138-.221.2-.333l8.611-14.886a8.2,8.2,0,0,0-2.867-11.123,99.863,99.863,0,0,0-52.014-14.138c-38.956,0-60.179,21.514-60.179,46.225,0,36.342,33.725,41.864,57.563,45.642,13.373,2.326,24.13,4.361,24.13,11.048,0,6.4-5.523,10.757-18.9,10.757-13.552,0-30.994-6.222-42.623-13.579a8.206,8.206,0,0,0-11.335,2.491c-.035.054-.069.108-.1.164l-10.2,16.891a8.222,8.222,0,0,0,2.491,11.066c15.224,10.3,37.663,16.692,59.441,16.692,40.409,0,63.957-19.769,63.957-46.515C640,260.63,604.537,254.816,580.7,250.455Zm-95.928,60.787a8.211,8.211,0,0,0-9.521-5.938,23.168,23.168,0,0,1-4.155.387c-7.849,0-12.5-6.106-12.5-14.245V240.28h20.349a8.143,8.143,0,0,0,8.141-8.143V209.466a8.143,8.143,0,0,0-8.141-8.143H458.594V171.091a8.143,8.143,0,0,0-8.143-8.143H422.257a8.143,8.143,0,0,0-8.143,8.143h0v30.232H399a8.143,8.143,0,0,0-8.143,8.143h0v22.671A8.143,8.143,0,0,0,399,240.28h15.115v63.667c0,27.037,15.408,41.282,43.9,41.282,12.183,0,21.383-2.2,27.6-5.446a8.161,8.161,0,0,0,4.145-9.278Z" + } + }, + "free": [ + "brands" + ] + }, + "bottle-droplet": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "drink", + "oil", + "olive oil", + "wine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4c4", + "label": "Bottle Droplet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M64 0C50.7 0 40 10.7 40 24s10.7 24 24 24c4.4 0 8 3.6 8 8v64.9c0 12.2-7.2 23.1-17.2 30.1C21.7 174.1 0 212.5 0 256V448c0 35.3 28.7 64 64 64H192c35.3 0 64-28.7 64-64V256c0-43.5-21.7-81.9-54.8-105c-10-7-17.2-17.9-17.2-30.1V56c0-4.4 3.6-8 8-8c13.3 0 24-10.7 24-24s-10.7-24-24-24l-8 0 0 0 0 0H72l0 0 0 0L64 0zm64 382c-26.5 0-48-20.1-48-45c0-16.8 22.1-48.1 36.3-66.4c6-7.8 17.5-7.8 23.5 0C153.9 288.9 176 320.2 176 337c0 24.9-21.5 45-48 45z" + } + }, + "free": [ + "solid" + ] + }, + "bottle-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "h2o", + "plastic", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4c5", + "label": "Bottle Water", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M88 0h80c13.3 0 24 10.7 24 24V64H64V24C64 10.7 74.7 0 88 0zM0 151.7c0-15.6 9-29.8 23.2-36.5l24.4-11.4c11-5.1 23-7.8 35.1-7.8h90.6c12.1 0 24.1 2.7 35.1 7.8l24.4 11.4c14.2 6.6 23.2 20.8 23.2 36.5c0 14.4-7.5 27-18.9 34.1c11.5 8.8 18.9 22.6 18.9 38.2c0 16.7-8.5 31.4-21.5 40c12.9 8.6 21.5 23.3 21.5 40s-8.5 31.4-21.5 40c12.9 8.6 21.5 23.3 21.5 40s-8.5 31.4-21.5 40c12.9 8.6 21.5 23.3 21.5 40c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48c0-16.7 8.5-31.4 21.5-40C8.5 415.4 0 400.7 0 384s8.5-31.4 21.5-40C8.5 335.4 0 320.7 0 304s8.5-31.4 21.5-40C8.5 255.4 0 240.7 0 224c0-15.6 7.4-29.4 18.9-38.2C7.5 178.7 0 166.1 0 151.7zM64 240c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM80 352c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H80z" + } + }, + "free": [ + "solid" + ] + }, + "bowl-food": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "catfood", + "dogfood", + "food", + "rice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4c6", + "label": "Bowl Food", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 192c0-35.3 28.7-64 64-64c.5 0 1.1 0 1.6 0C73 91.5 105.3 64 144 64c15 0 29 4.1 40.9 11.2C198.2 49.6 225.1 32 256 32s57.8 17.6 71.1 43.2C339 68.1 353 64 368 64c38.7 0 71 27.5 78.4 64c.5 0 1.1 0 1.6 0c35.3 0 64 28.7 64 64c0 11.7-3.1 22.6-8.6 32H8.6C3.1 214.6 0 203.7 0 192zm0 91.4C0 268.3 12.3 256 27.4 256H484.6c15.1 0 27.4 12.3 27.4 27.4c0 70.5-44.4 130.7-106.7 154.1L403.5 452c-2 16-15.6 28-31.8 28H140.2c-16.1 0-29.8-12-31.8-28l-1.8-14.4C44.4 414.1 0 353.9 0 283.4z" + } + }, + "free": [ + "solid" + ] + }, + "bowl-rice": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boiled", + "cooked", + "cooked rice", + "rice", + "steamed" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e2eb", + "label": "Bowl Rice", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 56c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24zm24 48h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24s10.7-24 24-24zM56 176H72c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24s10.7-24 24-24zM0 283.4C0 268.3 12.3 256 27.4 256H484.6c15.1 0 27.4 12.3 27.4 27.4c0 70.5-44.4 130.7-106.7 154.1L403.5 452c-2 16-15.6 28-31.8 28H140.2c-16.1 0-29.8-12-31.8-28l-1.8-14.4C44.4 414.1 0 353.9 0 283.4zM224 200c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H248c-13.3 0-24-10.7-24-24zm-96 0c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24zm-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H104c-13.3 0-24-10.7-24-24s10.7-24 24-24zm216 96c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H344c-13.3 0-24-10.7-24-24zm-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H296c-13.3 0-24-10.7-24-24s10.7-24 24-24zm120 96c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H440c-13.3 0-24-10.7-24-24zm-24-96h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H392c-13.3 0-24-10.7-24-24s10.7-24 24-24zM296 32h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H296c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "bowling-ball": { + "aliases": { + "unicodes": { + "secondary": [ + "10f436" + ] + } + }, + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alley", + "candlepin", + "gutter", + "lane", + "strike", + "tenpin" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f436", + "label": "Bowling Ball", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321787, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM240 144c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm32 64c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm-128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "box": { + "aliases": { + "unicodes": { + "composite": [ + "1f4e6" + ], + "secondary": [ + "10f466" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "box", + "container", + "package", + "parcel", + "storage" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f466", + "label": "Box", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M50.7 58.5L0 160H208V32H93.7C75.5 32 58.9 42.3 50.7 58.5zM240 160H448L397.3 58.5C389.1 42.3 372.5 32 354.3 32H240V160zm208 32H0V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192z" + } + }, + "free": [ + "solid" + ] + }, + "box-archive": { + "aliases": { + "names": [ + "archive" + ], + "unicodes": { + "secondary": [ + "10f187" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "box", + "package", + "save", + "storage" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f187", + "label": "Box Archive", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32H480c17.7 0 32 14.3 32 32V96c0 17.7-14.3 32-32 32H32C14.3 128 0 113.7 0 96V64C0 46.3 14.3 32 32 32zm0 128H480V416c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V160zm128 80c0 8.8 7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "box-open": { + "aliases": { + "unicodes": { + "secondary": [ + "10f49e" + ] + } + }, + "changes": [ + "5.0.9", + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "container", + "package", + "storage", + "unpack" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f49e", + "label": "Box Open", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M45.9 42.1c3-6.1 9.6-9.6 16.3-8.7L307 64 551.8 33.4c6.7-.8 13.3 2.7 16.3 8.7l41.7 83.4c9 17.9-.6 39.6-19.8 45.1L426.6 217.3c-13.9 4-28.8-1.9-36.2-14.3L307 64 223.6 203c-7.4 12.4-22.3 18.3-36.2 14.3L24.1 170.6C4.8 165.1-4.7 143.4 4.2 125.5L45.9 42.1zM308.1 128l54.9 91.4c14.9 24.8 44.6 36.6 72.5 28.6L563 211.6v167c0 22-15 41.2-36.4 46.6l-204.1 51c-10.2 2.6-20.9 2.6-31 0l-204.1-51C66 419.7 51 400.5 51 378.5v-167L178.6 248c27.8 8 57.6-3.8 72.5-28.6L305.9 128h2.2z" + } + }, + "free": [ + "solid" + ] + }, + "box-tissue": { + "aliases": { + "unicodes": { + "secondary": [ + "10e05b" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cough", + "covid-19", + "kleenex", + "mucus", + "nose", + "sneeze", + "snot" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e05b", + "label": "Box Tissue", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M92.5 0H208c40 0 52 24 64 48s24 48 64 48h85.2C436 96 448 108 448 122.8c0 3.4-.7 6.8-1.9 10L409.6 224 384 288H128l-16-64L64.9 35.4c-.6-2.3-.9-4.6-.9-6.9C64 12.8 76.8 0 92.5 0zM79 224l16 64H80c-8.8 0-16 7.2-16 16s7.2 16 16 16h48H384h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H418.5l25.6-64H464c26.5 0 48 21.5 48 48V384H0V272c0-26.5 21.5-48 48-48H79zM0 416H512v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V416z" + } + }, + "free": [ + "solid" + ] + }, + "boxes-packing": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "box", + "package", + "storage", + "supplies" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4c7", + "label": "Boxes Packing", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 48c0-26.5 21.5-48 48-48H592c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H381.3c1.8-5 2.7-10.4 2.7-16V253.3c18.6-6.6 32-24.4 32-45.3V176c0-26.5-21.5-48-48-48H256V48zM571.3 347.3c6.2-6.2 6.2-16.4 0-22.6l-64-64c-6.2-6.2-16.4-6.2-22.6 0l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L480 310.6V432c0 8.8 7.2 16 16 16s16-7.2 16-16V310.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0zM0 176c0-8.8 7.2-16 16-16H368c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H16c-8.8 0-16-7.2-16-16V176zm352 80V480c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V256H352zM144 320c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H144z" + } + }, + "free": [ + "solid" + ] + }, + "boxes-stacked": { + "aliases": { + "names": [ + "boxes", + "boxes-alt" + ], + "unicodes": { + "composite": [ + "f4a1" + ], + "primary": [ + "f4a1" + ], + "secondary": [ + "10f468", + "10f4a1" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archives", + "inventory", + "storage", + "warehouse" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f468", + "label": "Boxes Stacked", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M248 0H208c-26.5 0-48 21.5-48 48V160c0 35.3 28.7 64 64 64H352c35.3 0 64-28.7 64-64V48c0-26.5-21.5-48-48-48H328V80c0 8.8-7.2 16-16 16H264c-8.8 0-16-7.2-16-16V0zM64 256c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H224c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64H184v80c0 8.8-7.2 16-16 16H120c-8.8 0-16-7.2-16-16V256H64zM352 512H512c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64H472v80c0 8.8-7.2 16-16 16H408c-8.8 0-16-7.2-16-16V256H352c-15 0-28.8 5.1-39.7 13.8c4.9 10.4 7.7 22 7.7 34.2V464c0 12.2-2.8 23.8-7.7 34.2C323.2 506.9 337 512 352 512z" + } + }, + "free": [ + "solid" + ] + }, + "braille": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2a1" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabet", + "blind", + "dots", + "raised", + "vision" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2a1", + "label": "Braille", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321788, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 96c0 35.3-28.7 64-64 64S0 131.3 0 96S28.7 32 64 32s64 28.7 64 64zm96 176c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm0 48c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zM80 416c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zm112 0c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM64 320c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zM224 160c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zM480 96c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zm112 0c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM576 272c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm0 48c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zm16 96c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zM416 272c8.8 0 16-7.2 16-16s-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16zm0 48c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64zm16 96c0-8.8-7.2-16-16-16s-16 7.2-16 16s7.2 16 16 16s16-7.2 16-16zm48 0c0 35.3-28.7 64-64 64s-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64z" + } + }, + "free": [ + "solid" + ] + }, + "brain": { + "aliases": { + "unicodes": { + "composite": [ + "1f9e0" + ], + "secondary": [ + "10f5dc" + ] + } + }, + "changes": [ + "5.2.0", + "5.9.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brain", + "cerebellum", + "gray matter", + "intellect", + "intelligent", + "medulla oblongata", + "mind", + "noodle", + "wit" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5dc", + "label": "Brain", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M184 0c30.9 0 56 25.1 56 56V456c0 30.9-25.1 56-56 56c-28.9 0-52.7-21.9-55.7-50.1c-5.2 1.4-10.7 2.1-16.3 2.1c-35.3 0-64-28.7-64-64c0-7.4 1.3-14.6 3.6-21.2C21.4 367.4 0 338.2 0 304c0-31.9 18.7-59.5 45.8-72.3C37.1 220.8 32 207 32 192c0-30.7 21.6-56.3 50.4-62.6C80.8 123.9 80 118 80 112c0-29.9 20.6-55.1 48.3-62.1C131.3 21.9 155.1 0 184 0zM328 0c28.9 0 52.6 21.9 55.7 49.9c27.8 7 48.3 32.1 48.3 62.1c0 6-.8 11.9-2.4 17.4c28.8 6.2 50.4 31.9 50.4 62.6c0 15-5.1 28.8-13.8 39.7C493.3 244.5 512 272.1 512 304c0 34.2-21.4 63.4-51.6 74.8c2.3 6.6 3.6 13.8 3.6 21.2c0 35.3-28.7 64-64 64c-5.6 0-11.1-.7-16.3-2.1c-3 28.2-26.8 50.1-55.7 50.1c-30.9 0-56-25.1-56-56V56c0-30.9 25.1-56 56-56z" + } + }, + "free": [ + "solid" + ] + }, + "brazilian-real-sign": { + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brazilian real sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e46c", + "label": "Brazilian Real Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M400 0c17.7 0 32 14.3 32 32V50.2c12.5 2.3 24.7 6.4 36.2 12.1l10.1 5.1c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-10.2-5.1c-9.9-5-20.9-7.5-32-7.5h-1.7c-29.8 0-53.9 24.1-53.9 53.9c0 22 13.4 41.8 33.9 50l52 20.8c44.7 17.9 74.1 61.2 74.1 109.4v3.4c0 51.2-33.6 94.6-80 109.2V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V460.6c-15-3.5-29.4-9.7-42.3-18.3l-23.4-15.6c-14.7-9.8-18.7-29.7-8.9-44.4s29.7-18.7 44.4-8.9L361.2 389c10.8 7.2 23.4 11 36.3 11c27.9 0 50.5-22.6 50.5-50.5v-3.4c0-22-13.4-41.8-33.9-50l-52-20.8C317.3 257.4 288 214.1 288 165.9C288 114 321.5 70 368 54.2V32c0-17.7 14.3-32 32-32zM0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256z" + } + }, + "free": [ + "solid" + ] + }, + "bread-slice": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ec" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bake", + "bakery", + "baking", + "dough", + "flour", + "gluten", + "grain", + "sandwich", + "sourdough", + "toast", + "wheat", + "yeast" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7ec", + "label": "Bread Slice", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 32C192 32 0 64 0 192c0 35.3 28.7 64 64 64V432c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V256c35.3 0 64-28.7 64-64C512 64 320 32 256 32z" + } + }, + "free": [ + "solid" + ] + }, + "bridge": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "road" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4c8", + "label": "Bridge", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H72v64H0V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96s96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96V160H504V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM456 96v64H376V96h80zM328 96v64H248V96h80zM200 96v64H120V96h80z" + } + }, + "free": [ + "solid" + ] + }, + "bridge-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "not affected", + "ok", + "okay", + "road" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4c9", + "label": "Bridge Circle Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64s14.3 32 32 32h40v64H32V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96c6.3 0 12.4 .6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160H536V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM488 96v64H408V96h80zM360 96v64H280V96h80zM232 96v64H152V96h80zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + }, + "free": [ + "solid" + ] + }, + "bridge-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "bridge", + "road" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4ca", + "label": "Bridge Circle Exclamation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64s14.3 32 32 32h40v64H32V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96c6.3 0 12.4 .6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160H536V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM488 96v64H408V96h80zM360 96v64H280V96h80zM232 96v64H152V96h80zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "bridge-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "destroy", + "road" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4cb", + "label": "Bridge Circle Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64s14.3 32 32 32h40v64H32V288c53 0 96 43 96 96v64c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V384c0-53 43-96 96-96c6.3 0 12.4 .6 18.3 1.7C367.1 231.8 426.9 192 496 192c42.5 0 81.6 15.1 112 40.2V160H536V96h40c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM488 96v64H408V96h80zM360 96v64H280V96h80zM232 96v64H152V96h80zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + }, + "free": [ + "solid" + ] + }, + "bridge-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "closed", + "lockdown", + "quarantine", + "road" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4cc", + "label": "Bridge Lock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 64c0-17.7 14.3-32 32-32H576c17.7 0 32 14.3 32 32s-14.3 32-32 32H536v64h-8c-61.9 0-112 50.1-112 112v24.6c-9.9 5.8-18.2 14.1-23.8 24.1c-17.6-20-43.4-32.7-72.2-32.7c-53 0-96 43-96 96v64c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V384c0-53-43-96-96-96V160h72V96H64C46.3 96 32 81.7 32 64zM408 96v64h80V96H408zm-48 64V96H280v64h80zM152 96v64h80V96H152zM528 240c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z" + } + }, + "free": [ + "solid" + ] + }, + "bridge-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "road" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4ce", + "label": "Bridge Water", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 96C0 78.3 14.3 64 32 64H544c17.7 0 32 14.3 32 32v35.6c0 15.7-12.7 28.4-28.4 28.4c-37.3 0-67.6 30.2-67.6 67.6V352.5c-12.9 0-25.8 3.9-36.8 11.7c-18 12.4-40.1 20.3-59.2 20.3h0l0-.5V256c0-53-43-96-96-96s-96 43-96 96V384l0 .5c-19 0-41.2-7.9-59.1-20.3c-11.1-7.8-24-11.7-36.9-11.7V227.6C96 190.2 65.8 160 28.4 160C12.7 160 0 147.3 0 131.6V96zM306.5 389.9C329 405.4 356.5 416 384 416c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 469.7 417 480 384 480c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 405.2 165.1 416 192 416c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + }, + "free": [ + "solid" + ] + }, + "briefcase": { + "aliases": { + "unicodes": { + "composite": [ + "1f4bc" + ], + "secondary": [ + "10f0b1" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "briefcas", + "briefcase", + "business", + "luggage", + "office", + "work" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0b1", + "label": "Briefcase", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96H64C28.7 96 0 124.7 0 160v96H192 320 512V160c0-35.3-28.7-64-64-64H384V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zM512 288H320v32c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32V288H0V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V288z" + } + }, + "free": [ + "solid" + ] + }, + "briefcase-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f469" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "doctor", + "emt", + "first aid", + "health" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f469", + "label": "Briefcase Medical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H384V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zm96 152c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H288v48c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V320H176c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h48V208z" + } + }, + "free": [ + "solid" + ] + }, + "broom": { + "aliases": { + "unicodes": { + "composite": [ + "1f9f9" + ], + "secondary": [ + "10f51a" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "broom", + "clean", + "cleaning", + "firebolt", + "fly", + "halloween", + "nimbus 2000", + "quidditch", + "sweep", + "sweeping", + "witch" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f51a", + "label": "Broom", + "voted": true, + "svg": { + "solid": { + "last_modified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M566.6 54.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192-34.7-34.7c-4.2-4.2-10-6.6-16-6.6c-12.5 0-22.6 10.1-22.6 22.6v29.1L364.3 320h29.1c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16l-34.7-34.7 192-192zM341.1 353.4L222.6 234.9c-42.7-3.7-85.2 11.7-115.8 42.3l-8 8C76.5 307.5 64 337.7 64 369.2c0 6.8 7.1 11.2 13.2 8.2l51.1-25.5c5-2.5 9.5 4.1 5.4 7.9L7.3 473.4C2.7 477.6 0 483.6 0 489.9C0 502.1 9.9 512 22.1 512l173.3 0c38.8 0 75.9-15.4 103.4-42.8c30.6-30.6 45.9-73.1 42.3-115.8z" + } + }, + "free": [ + "solid" + ] + }, + "broom-ball": { + "aliases": { + "names": [ + "quidditch", + "quidditch-broom-ball" + ], + "unicodes": { + "secondary": [ + "10f458" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "bludger", + "broom", + "golden snitch", + "harry potter", + "hogwarts", + "quaffle", + "sport", + "wizard" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f458", + "label": "Broom Ball", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M566.6 9.4c12.5 12.5 12.5 32.8 0 45.3l-192 192 34.7 34.7c4.2 4.2 6.6 10 6.6 16c0 12.5-10.1 22.6-22.6 22.6H364.3L256 211.7V182.6c0-12.5 10.1-22.6 22.6-22.6c6 0 11.8 2.4 16 6.6l34.7 34.7 192-192c12.5-12.5 32.8-12.5 45.3 0zm-344 225.5L341.1 353.4c3.7 42.7-11.7 85.2-42.3 115.8C271.4 496.6 234.2 512 195.5 512L22.1 512C9.9 512 0 502.1 0 489.9c0-6.3 2.7-12.3 7.3-16.5L133.7 359.7c4.2-3.7-.4-10.4-5.4-7.9L77.2 377.4c-6.1 3-13.2-1.4-13.2-8.2c0-31.5 12.5-61.7 34.8-84l8-8c30.6-30.6 73.1-45.9 115.8-42.3zM464 352a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + }, + "free": [ + "solid" + ] + }, + "brush": { + "aliases": { + "unicodes": { + "secondary": [ + "10f55d" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "bristles", + "color", + "handle", + "paint" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55d", + "label": "Brush", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 64L160 0H128L96 64 64 0H48C21.5 0 0 21.5 0 48V256H384V48c0-26.5-21.5-48-48-48H224L192 64zM0 288v32c0 35.3 28.7 64 64 64h64v64c0 35.3 28.7 64 64 64s64-28.7 64-64V384h64c35.3 0 64-28.7 64-64V288H0zM192 432a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + }, + "free": [ + "solid" + ] + }, + "btc": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f15a", + "label": "BTC", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M310.204 242.638c27.73-14.18 45.377-39.39 41.28-81.3-5.358-57.351-52.458-76.573-114.85-81.929V0h-48.528v77.203c-12.605 0-25.525.315-38.444.63V0h-48.528v79.409c-17.842.539-38.622.276-97.37 0v51.678c38.314-.678 58.417-3.14 63.023 21.427v217.429c-2.925 19.492-18.524 16.685-53.255 16.071L3.765 443.68c88.481 0 97.37.315 97.37.315V512h48.528v-67.06c13.234.315 26.154.315 38.444.315V512h48.528v-68.005c81.299-4.412 135.647-24.894 142.895-101.467 5.671-61.446-23.32-88.862-69.326-99.89zM150.608 134.553c27.415 0 113.126-8.507 113.126 48.528 0 54.515-85.71 48.212-113.126 48.212v-96.74zm0 251.776V279.821c32.772 0 133.127-9.138 133.127 53.255-.001 60.186-100.355 53.253-133.127 53.253z" + } + }, + "free": [ + "brands" + ] + }, + "bucket": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bucket", + "pail", + "sandcastle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4cf", + "label": "Bucket", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321789, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 152v8H48v-8C48 68.1 116.1 0 200 0h48c83.9 0 152 68.1 152 152v8H352v-8c0-57.4-46.6-104-104-104H200C142.6 48 96 94.6 96 152zM0 224c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32h-5.1L388.5 469c-2.6 24.4-23.2 43-47.7 43H107.2c-24.6 0-45.2-18.5-47.7-43L37.1 256H32c-17.7 0-32-14.3-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "buffer": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f837", + "label": "Buffer", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M427.84 380.67l-196.5 97.82a18.6 18.6 0 0 1-14.67 0L20.16 380.67c-4-2-4-5.28 0-7.29L67.22 350a18.65 18.65 0 0 1 14.69 0l134.76 67a18.51 18.51 0 0 0 14.67 0l134.76-67a18.62 18.62 0 0 1 14.68 0l47.06 23.43c4.05 1.96 4.05 5.24 0 7.24zm0-136.53l-47.06-23.43a18.62 18.62 0 0 0-14.68 0l-134.76 67.08a18.68 18.68 0 0 1-14.67 0L81.91 220.71a18.65 18.65 0 0 0-14.69 0l-47.06 23.43c-4 2-4 5.29 0 7.31l196.51 97.8a18.6 18.6 0 0 0 14.67 0l196.5-97.8c4.05-2.02 4.05-5.3 0-7.31zM20.16 130.42l196.5 90.29a20.08 20.08 0 0 0 14.67 0l196.51-90.29c4-1.86 4-4.89 0-6.74L231.33 33.4a19.88 19.88 0 0 0-14.67 0l-196.5 90.28c-4.05 1.85-4.05 4.88 0 6.74z" + } + }, + "free": [ + "brands" + ] + }, + "bug": { + "aliases": { + "unicodes": { + "secondary": [ + "10f188" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.15.4", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beetle", + "error", + "glitch", + "insect", + "repair", + "report" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f188", + "label": "Bug", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c53 0 96 43 96 96v3.6c0 15.7-12.7 28.4-28.4 28.4H188.4c-15.7 0-28.4-12.7-28.4-28.4V96c0-53 43-96 96-96zM41.4 105.4c12.5-12.5 32.8-12.5 45.3 0l64 64c.7 .7 1.3 1.4 1.9 2.1c14.2-7.3 30.4-11.4 47.5-11.4H312c17.1 0 33.2 4.1 47.5 11.4c.6-.7 1.2-1.4 1.9-2.1l64-64c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-64 64c-.7 .7-1.4 1.3-2.1 1.9c6.2 12 10.1 25.3 11.1 39.5H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H416c0 24.6-5.5 47.8-15.4 68.6c2.2 1.3 4.2 2.9 6 4.8l64 64c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-63.1-63.1c-24.5 21.8-55.8 36.2-90.3 39.6V240c0-8.8-7.2-16-16-16s-16 7.2-16 16V479.2c-34.5-3.4-65.8-17.8-90.3-39.6L86.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l64-64c1.9-1.9 3.9-3.4 6-4.8C101.5 367.8 96 344.6 96 320H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96.3c1.1-14.1 5-27.5 11.1-39.5c-.7-.6-1.4-1.2-2.1-1.9l-64-64c-12.5-12.5-12.5-32.8 0-45.3z" + } + }, + "free": [ + "solid" + ] + }, + "bug-slash": { + "changes": [ + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beetle", + "fix", + "glitch", + "insect", + "optimize", + "repair", + "report", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e490", + "label": "Bug Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L477.4 348.9c1.7-9.4 2.6-19 2.6-28.9h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H479.7c-1.1-14.1-5-27.5-11.1-39.5c.7-.6 1.4-1.2 2.1-1.9l64-64c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-64 64c-.7 .7-1.3 1.4-1.9 2.1C409.2 164.1 393.1 160 376 160H264c-8.3 0-16.3 1-24 2.8L38.8 5.1zM320 0c-53 0-96 43-96 96v3.6c0 15.7 12.7 28.4 28.4 28.4H387.6c15.7 0 28.4-12.7 28.4-28.4V96c0-53-43-96-96-96zM160.3 256H96c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c0 24.6 5.5 47.8 15.4 68.6c-2.2 1.3-4.2 2.9-6 4.8l-64 64c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l63.1-63.1c24.5 21.8 55.8 36.2 90.3 39.6V335.5L166.7 227.3c-3.4 9-5.6 18.7-6.4 28.7zM336 479.2c36.6-3.6 69.7-19.6 94.8-43.8L336 360.7V479.2z" + } + }, + "free": [ + "solid" + ] + }, + "bugs": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bedbug", + "infestation", + "lice", + "plague", + "ticks" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4d0", + "label": "Bugs", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M164.5 107.4l33.4-73.5c5.5-12.1 .1-26.3-11.9-31.8s-26.3-.1-31.8 11.9L128 71.7 101.9 14.1C96.4 2 82.1-3.3 70.1 2.1S52.7 21.9 58.1 33.9l33.4 73.5c-10.2 7.1-18.2 17-22.9 28.6h-17l-4.1-20.7c-2.6-13-15.2-21.4-28.2-18.8S-2.1 111.7 .5 124.7l8 40C10.7 175.9 20.6 184 32 184H64v23.3l-37.8 9.5c-9.5 2.4-16.6 10.2-17.9 19.9l-8 56c-1.9 13.1 7.2 25.3 20.4 27.2s25.3-7.2 27.2-20.4l5.7-40 18.4-4.6C82.7 274.6 103.8 288 128 288s45.3-13.4 56.1-33.2l18.4 4.6 5.7 40c1.9 13.1 14 22.2 27.2 20.4s22.2-14 20.4-27.2l-8-56c-1.4-9.7-8.5-17.5-17.9-19.9L192 207.3V184h32c11.4 0 21.3-8.1 23.5-19.3l8-40c2.6-13-5.8-25.6-18.8-28.2s-25.6 5.8-28.2 18.8L204.3 136h-17c-4.7-11.6-12.7-21.5-22.9-28.6zM496 286.5l65.6-47c10.8-7.7 13.3-22.7 5.6-33.5s-22.7-13.3-33.5-5.6l-51.4 36.8 6.1-62.9c1.3-13.2-8.4-24.9-21.6-26.2s-24.9 8.4-26.2 21.6L432.8 250c-12.3 1-24.2 5.6-34.1 13.3L384 254.8l6.8-20c4.2-12.6-2.5-26.2-15-30.4s-26.2 2.5-30.4 15l-13.1 38.6c-3.7 10.8 .8 22.8 10.7 28.5l27.7 16L359 322.7 321.5 312c-9.4-2.7-19.5 .6-25.5 8.3l-34.9 44.5c-8.2 10.4-6.4 25.5 4.1 33.7s25.5 6.4 33.7-4.1l25-31.8 18.2 5.2c-.5 22.6 11 44.7 32 56.8s45.9 11 65.2-.7l13.6 13.2-15.1 37.5c-4.9 12.3 1 26.3 13.3 31.2s26.3-1 31.2-13.3L503.5 440c3.6-9.1 1.4-19.4-5.6-26.2l-28-27.1 11.6-20.1 27.7 16c9.9 5.7 22.5 3.7 30-4.9L566.2 347c8.7-10 7.8-25.1-2.2-33.9s-25.1-7.8-33.9 2.2l-13.9 15.9-14.7-8.5c1.7-12.4-.2-25-5.5-36.2z" + } + }, + "free": [ + "solid" + ] + }, + "building": { + "aliases": { + "unicodes": { + "composite": [ + "1f3e2", + "f0f7" + ], + "secondary": [ + "10f1ad" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apartment", + "building", + "business", + "city", + "company", + "office", + "office building", + "urban", + "work" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1ad", + "label": "Building", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16z" + }, + "regular": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 48c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16h80V400c0-26.5 21.5-48 48-48s48 21.5 48 48v64h80c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H64zM0 64C0 28.7 28.7 0 64 0H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm88 40c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16H104c-8.8 0-16-7.2-16-16V104zM232 88h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16H232c-8.8 0-16-7.2-16-16V104c0-8.8 7.2-16 16-16zM88 232c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16H104c-8.8 0-16-7.2-16-16V232zm144-16h48c8.8 0 16 7.2 16 16v48c0 8.8-7.2 16-16 16H232c-8.8 0-16-7.2-16-16V232c0-8.8 7.2-16 16-16z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "building-circle-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "distribution center", + "office" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4d1", + "label": "Building Circle Arrow Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V232.2c-39.1 32.3-64 81.1-64 135.8c0 49.5 20.4 94.2 53.3 126.2C364.5 505.1 351.1 512 336 512H240V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48V48zM80 224c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm112-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H272zM64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM176 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H176zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16zm96 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm140.7-67.3c-6.2 6.2-6.2 16.4 0 22.6L521.4 352H432c-8.8 0-16 7.2-16 16s7.2 16 16 16h89.4l-28.7 28.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l56-56c6.2-6.2 6.2-16.4 0-22.6l-56-56c-6.2-6.2-16.4-6.2-22.6 0z" + } + }, + "free": [ + "solid" + ] + }, + "building-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "not affected", + "office", + "ok", + "okay" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4d2", + "label": "Building Circle Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8C340.4 462.2 320 417.5 320 368c0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + }, + "free": [ + "solid" + ] + }, + "building-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "building", + "city", + "office" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4d3", + "label": "Building Circle Exclamation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8C340.4 462.2 320 417.5 320 368c0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "building-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "destroy", + "office" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4d4", + "label": "Building Circle Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c15.1 0 28.5-6.9 37.3-17.8C340.4 462.2 320 417.5 320 368c0-54.7 24.9-103.5 64-135.8V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + }, + "free": [ + "solid" + ] + }, + "building-columns": { + "aliases": { + "names": [ + "bank", + "institution", + "museum", + "university" + ], + "unicodes": { + "secondary": [ + "10f19c" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.0.3", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "building", + "college", + "education", + "institution", + "museum", + "students" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f19c", + "label": "Building Columns", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M243.4 2.6l-224 96c-14 6-21.8 21-18.7 35.8S16.8 160 32 160v8c0 13.3 10.7 24 24 24H456c13.3 0 24-10.7 24-24v-8c15.2 0 28.3-10.7 31.3-25.6s-4.8-29.9-18.7-35.8l-224-96c-8.1-3.4-17.2-3.4-25.2 0zM128 224H64V420.3c-.6 .3-1.2 .7-1.8 1.1l-48 32c-11.7 7.8-17 22.4-12.9 35.9S17.9 512 32 512H480c14.1 0 26.5-9.2 30.6-22.7s-1.1-28.1-12.9-35.9l-48-32c-.6-.4-1.2-.7-1.8-1.1V224H384V416H344V224H280V416H232V224H168V416H128V224zM256 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "building-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + " city", + "building", + "diplomat", + "embassy", + "flag", + "headquarters", + "united nations" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4d5", + "label": "Building Flag", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM448 0c-17.7 0-32 14.3-32 32V512h64V192H624c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H480c0-17.7-14.3-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "building-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "closed", + "lock", + "lockdown", + "quarantine", + "secure" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4d6", + "label": "Building Lock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h88.6c-5.4-9.4-8.6-20.3-8.6-32V352c0-23.7 12.9-44.4 32-55.4V272c0-30.5 12.2-58.2 32-78.4V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM464 240c17.7 0 32 14.3 32 32v48H432V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H544c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "building-ngo": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + " city", + "building", + "non governmental organization", + "office" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4d7", + "label": "Building Ngo", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM168 64h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H184v64h16V144c0-8.8 7.2-16 16-16s16 7.2 16 16v24c0 13.3-10.7 24-24 24H176c-13.3 0-24-10.7-24-24V80c0-8.8 7.2-16 16-16zM304 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16s16-7.2 16-16V112c0-8.8-7.2-16-16-16zm-48 16c0-26.5 21.5-48 48-48s48 21.5 48 48v32c0 26.5-21.5 48-48 48s-48-21.5-48-48V112zM61.3 71.1l34.7 52V80c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4L64 132.8V176c0 8.8-7.2 16-16 16s-16-7.2-16-16V80c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4z" + } + }, + "free": [ + "solid" + ] + }, + "building-shield": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "police", + "protect", + "safety" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4d8", + "label": "Building Shield", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V207l-42.4 17H304 272c-8.8 0-16 7.2-16 16v32 24.2V304c0 .9 .1 1.7 .2 2.6c2.3 58.1 24.1 144.8 98.7 201.5c-5.8 2.5-12.2 3.9-18.9 3.9H240V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48V48zM80 224c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zM64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM176 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H176zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16zM423.1 225.7c5.7-2.3 12.1-2.3 17.8 0l120 48C570 277.4 576 286.2 576 296c0 63.3-25.9 168.8-134.8 214.2c-5.9 2.5-12.6 2.5-18.5 0C313.9 464.8 288 359.3 288 296c0-9.8 6-18.6 15.1-22.3l120-48zM527.4 312L432 273.8V461.7c68.2-33 91.5-99 95.4-149.7z" + } + }, + "free": [ + "solid" + ] + }, + "building-un": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "office", + "united nations" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4d9", + "label": "Building Un", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h96c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM237.3 71.1l34.7 52V80c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52V176c0 8.8-7.2 16-16 16s-16-7.2-16-16V80c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4zM112 80v64c0 8.8 7.2 16 16 16s16-7.2 16-16V80c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48V80c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "building-user": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apartment", + "building", + "city" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4da", + "label": "Building User", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V464c0 26.5 21.5 48 48 48h96V432c0-26.5 21.5-48 48-48s48 21.5 48 48v80h89.9c-6.3-10.2-9.9-22.2-9.9-35.1c0-46.9 25.8-87.8 64-109.2V271.8 48c0-26.5-21.5-48-48-48H48zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM80 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V112zM272 96h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16zM576 272a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM352 477.1c0 19.3 15.6 34.9 34.9 34.9H605.1c19.3 0 34.9-15.6 34.9-34.9c0-51.4-41.7-93.1-93.1-93.1H445.1c-51.4 0-93.1 41.7-93.1 93.1z" + } + }, + "free": [ + "solid" + ] + }, + "building-wheat": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agriculture", + "building", + "city", + "usda" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4db", + "label": "Building Wheat", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H240V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H48c-26.5 0-48-21.5-48-48V48zM80 224c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm112-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H272zM64 112v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zM176 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H176zm80 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16zm384 80v16c0 44.2-35.8 80-80 80H544V272c0-44.2 35.8-80 80-80h16zm0 128c0 44.2-35.8 80-80 80H544V384c0-44.2 35.8-80 80-80h16v16zm0 112c0 44.2-35.8 80-80 80H544V496c0-44.2 35.8-80 80-80h16v16zM512 496v16H496c-44.2 0-80-35.8-80-80V416h16c44.2 0 80 35.8 80 80zm0-96H496c-44.2 0-80-35.8-80-80V304h16c44.2 0 80 35.8 80 80v16zm0-128v16H496c-44.2 0-80-35.8-80-80V192h16c44.2 0 80 35.8 80 80zM528 32c13.3 0 24 10.7 24 24V160c0 13.3-10.7 24-24 24s-24-10.7-24-24V56c0-13.3 10.7-24 24-24zm96 64v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V96c0-13.3 10.7-24 24-24s24 10.7 24 24zM456 72c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V96c0-13.3 10.7-24 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "bullhorn": { + "aliases": { + "unicodes": { + "composite": [ + "1f4e2", + "1f56b" + ], + "secondary": [ + "10f0a1" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Bullhorn", + "announcement", + "broadcast", + "loud", + "louder", + "loudspeaker", + "megaphone", + "public address", + "share" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0a1", + "label": "Bullhorn", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480 32c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9L381.7 53c-48 48-113.1 75-181 75H192 160 64c-35.3 0-64 28.7-64 64v96c0 35.3 28.7 64 64 64l0 128c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V352l8.7 0c67.9 0 133 27 181 75l43.6 43.6c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V300.4c18.6-8.8 32-32.5 32-60.4s-13.4-51.6-32-60.4V32zm-64 76.7V240 371.3C357.2 317.8 280.5 288 200.7 288H192V192h8.7c79.8 0 156.5-29.8 215.3-83.3z" + } + }, + "free": [ + "solid" + ] + }, + "bullseye": { + "aliases": { + "unicodes": { + "secondary": [ + "10f140" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.3.0", + "5.10.1", + "5.15.4", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archery", + "goal", + "objective", + "target" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f140", + "label": "Bullseye", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 256A192 192 0 1 0 64 256a192 192 0 1 0 384 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 80a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm0-224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zM224 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + }, + "free": [ + "solid" + ] + }, + "burger": { + "aliases": { + "names": [ + "hamburger" + ], + "unicodes": { + "secondary": [ + "10f805" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bacon", + "beef", + "burger", + "burger king", + "cheeseburger", + "fast food", + "grill", + "ground beef", + "mcdonalds", + "sandwich" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f805", + "label": "Burger", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M45.1 224C29 224 16 211 16 194.9c0-1.9 .2-3.7 .6-5.6C21.9 168.3 62.8 32 240 32s218.1 136.3 223.4 157.3c.5 1.9 .6 3.7 .6 5.6c0 16.1-13 29.1-29.1 29.1H45.1zM128 128a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm240 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32zM256 96a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zM0 304c0-26.5 21.5-48 48-48H432c26.5 0 48 21.5 48 48s-21.5 48-48 48H48c-26.5 0-48-21.5-48-48zm16 96c0-8.8 7.2-16 16-16H448c8.8 0 16 7.2 16 16v16c0 35.3-28.7 64-64 64H80c-35.3 0-64-28.7-64-64V400z" + } + }, + "free": [ + "solid" + ] + }, + "buromobelexperte": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f37f", + "label": "Büromöbel-Experte GmbH & Co. KG.", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z" + } + }, + "free": [ + "brands" + ] + }, + "burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boom", + "crash", + "explosion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4dc", + "label": "Burst", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M37.6 4.2C28-2.3 15.2-1.1 7 7s-9.4 21-2.8 30.5l112 163.3L16.6 233.2C6.7 236.4 0 245.6 0 256s6.7 19.6 16.6 22.8l103.1 33.4L66.8 412.8c-4.9 9.3-3.2 20.7 4.3 28.1s18.8 9.2 28.1 4.3l100.6-52.9 33.4 103.1c3.2 9.9 12.4 16.6 22.8 16.6s19.6-6.7 22.8-16.6l33.4-103.1 100.6 52.9c9.3 4.9 20.7 3.2 28.1-4.3s9.2-18.8 4.3-28.1L392.3 312.2l103.1-33.4c9.9-3.2 16.6-12.4 16.6-22.8s-6.7-19.6-16.6-22.8L388.9 198.7l25.7-70.4c3.2-8.8 1-18.6-5.6-25.2s-16.4-8.8-25.2-5.6l-70.4 25.7L278.8 16.6C275.6 6.7 266.4 0 256 0s-19.6 6.7-22.8 16.6l-32.3 99.6L37.6 4.2z" + } + }, + "free": [ + "solid" + ] + }, + "bus": { + "aliases": { + "unicodes": { + "composite": [ + "1f68d" + ], + "secondary": [ + "10f207" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bus", + "oncoming", + "oncoming bus", + "public transportation", + "transportation", + "travel", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f207", + "label": "Bus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0C390.4 0 480 35.2 480 80V96l0 32c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32l0 160c0 17.7-14.3 32-32 32v32c0 17.7-14.3 32-32 32H384c-17.7 0-32-14.3-32-32V448H160v32c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32l0-32c-17.7 0-32-14.3-32-32l0-160c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h0V96h0V80C32 35.2 121.6 0 256 0zM96 160v96c0 17.7 14.3 32 32 32H240V128H128c-17.7 0-32 14.3-32 32zM272 288H384c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H272V288zM112 400a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm288 0a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM352 80c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16s7.2 16 16 16H336c8.8 0 16-7.2 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "bus-simple": { + "aliases": { + "names": [ + "bus-alt" + ], + "unicodes": { + "secondary": [ + "10f55e" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mta", + "public transportation", + "transportation", + "travel", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55e", + "label": "Bus Simple", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0C348.8 0 448 35.2 448 80V96 416c0 17.7-14.3 32-32 32v32c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V448H128v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32l0-32c-17.7 0-32-14.3-32-32V96 80C0 35.2 99.2 0 224 0zM64 128V256c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32zM80 400a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm288 0a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "business-time": { + "aliases": { + "names": [ + "briefcase-clock" + ], + "unicodes": { + "secondary": [ + "10f64a" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alarm", + "briefcase", + "business socks", + "clock", + "flight of the conchords", + "reminder", + "wednesday" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f64a", + "label": "Business Time", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96H64C28.7 96 0 124.7 0 160v96H192 352h8.2c32.3-39.1 81.1-64 135.8-64c5.4 0 10.7 .2 16 .7V160c0-35.3-28.7-64-64-64H384V56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zM320 352H224c-17.7 0-32-14.3-32-32V288H0V416c0 35.3 28.7 64 64 64H360.2C335.1 449.6 320 410.5 320 368c0-5.4 .2-10.7 .7-16l-.7 0zm320 16a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zM496 288c8.8 0 16 7.2 16 16v48h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H496c-8.8 0-16-7.2-16-16V304c0-8.8 7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "buy-n-large": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f8a6", + "label": "Buy n Large", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 32C133.27 32 7.79 132.32 7.79 256S133.27 480 288 480s280.21-100.32 280.21-224S442.73 32 288 32zm-85.39 357.19L64.1 390.55l77.25-290.74h133.44c63.15 0 84.93 28.65 78 72.84a60.24 60.24 0 0 1-1.5 6.85 77.39 77.39 0 0 0-17.21-1.93c-42.35 0-76.69 33.88-76.69 75.65 0 37.14 27.14 68 62.93 74.45-18.24 37.16-56.16 60.92-117.71 61.52zM358 207.11h32l-22.16 90.31h-35.41l-11.19-35.63-7.83 35.63h-37.83l26.63-90.31h31.34l15 36.75zm145.86 182.08H306.79L322.63 328a78.8 78.8 0 0 0 11.47.83c42.34 0 76.69-33.87 76.69-75.65 0-32.65-21-60.46-50.38-71.06l21.33-82.35h92.5l-53.05 205.36h103.87zM211.7 269.39H187l-13.8 56.47h24.7c16.14 0 32.11-3.18 37.94-26.65 5.56-22.31-7.99-29.82-24.14-29.82zM233 170h-21.34L200 217.71h21.37c18 0 35.38-14.64 39.21-30.14C265.23 168.71 251.07 170 233 170z" + } + }, + "free": [ + "brands" + ] + }, + "buysellads": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f20d", + "label": "BuySellAds", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z" + } + }, + "free": [ + "brands" + ] + }, + "c": { + "aliases": { + "unicodes": { + "composite": [ + "63" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter C", + "Latin Small Letter C", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "43", + "label": "C", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M329.1 142.9c-62.5-62.5-155.8-62.5-218.3 0s-62.5 163.8 0 226.3s155.8 62.5 218.3 0c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3c-87.5 87.5-221.3 87.5-308.8 0s-87.5-229.3 0-316.8s221.3-87.5 308.8 0c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0z" + } + }, + "free": [ + "solid" + ] + }, + "cable-car": { + "aliases": { + "names": [ + "tram" + ], + "unicodes": { + "composite": [ + "1f6a1", + "e0cf" + ], + "secondary": [ + "10f7da" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aerial tramway", + "cable", + "gondola", + "lift", + "mountain", + "mountain cableway", + "tram", + "tramway", + "trolley" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7da", + "label": "Cable Car", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 0a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM160 56a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM32 288c0-35.3 28.7-64 64-64H232V157.5l-203.1 42c-13 2.7-25.7-5.7-28.4-18.6s5.7-25.7 18.6-28.4l232-48 232-48c13-2.7 25.7 5.7 28.4 18.6s-5.7 25.7-18.6 28.4L280 147.5V224H416c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V288zm64 0c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H96zm112 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H224c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H352z" + } + }, + "free": [ + "solid" + ] + }, + "cake-candles": { + "aliases": { + "names": [ + "birthday-cake", + "cake" + ], + "unicodes": { + "composite": [ + "1f382" + ], + "secondary": [ + "10f1fd" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anniversary", + "bakery", + "birthday", + "birthday cake", + "cake", + "candles", + "celebration", + "dessert", + "frosting", + "holiday", + "party", + "pastry", + "sweet" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1fd", + "label": "Cake Candles", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M86.4 5.5L61.8 47.6C58 54.1 56 61.6 56 69.2V72c0 22.1 17.9 40 40 40s40-17.9 40-40V69.2c0-7.6-2-15-5.8-21.6L105.6 5.5C103.6 2.1 100 0 96 0s-7.6 2.1-9.6 5.5zm128 0L189.8 47.6c-3.8 6.5-5.8 14-5.8 21.6V72c0 22.1 17.9 40 40 40s40-17.9 40-40V69.2c0-7.6-2-15-5.8-21.6L233.6 5.5C231.6 2.1 228 0 224 0s-7.6 2.1-9.6 5.5zM317.8 47.6c-3.8 6.5-5.8 14-5.8 21.6V72c0 22.1 17.9 40 40 40s40-17.9 40-40V69.2c0-7.6-2-15-5.8-21.6L361.6 5.5C359.6 2.1 356 0 352 0s-7.6 2.1-9.6 5.5L317.8 47.6zM128 176c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c-35.3 0-64 28.7-64 64v71c8.3 5.2 18.1 9 28.8 9c13.5 0 27.2-6.1 38.4-13.4c5.4-3.5 9.9-7.1 13-9.7c1.5-1.3 2.7-2.4 3.5-3.1c.4-.4 .7-.6 .8-.8l.1-.1 0 0 0 0s0 0 0 0s0 0 0 0c3.1-3.2 7.4-4.9 11.9-4.8s8.6 2.1 11.6 5.4l0 0 0 0 .1 .1c.1 .1 .4 .4 .7 .7c.7 .7 1.7 1.7 3.1 3c2.8 2.6 6.8 6.1 11.8 9.5c10.2 7.1 23 13.1 36.3 13.1s26.1-6 36.3-13.1c5-3.5 9-6.9 11.8-9.5c1.4-1.3 2.4-2.3 3.1-3c.3-.3 .6-.6 .7-.7l.1-.1c3-3.5 7.4-5.4 12-5.4s9 2 12 5.4l.1 .1c.1 .1 .4 .4 .7 .7c.7 .7 1.7 1.7 3.1 3c2.8 2.6 6.8 6.1 11.8 9.5c10.2 7.1 23 13.1 36.3 13.1s26.1-6 36.3-13.1c5-3.5 9-6.9 11.8-9.5c1.4-1.3 2.4-2.3 3.1-3c.3-.3 .6-.6 .7-.7l.1-.1c2.9-3.4 7.1-5.3 11.6-5.4s8.7 1.6 11.9 4.8l0 0 0 0 0 0 .1 .1c.2 .2 .4 .4 .8 .8c.8 .7 1.9 1.8 3.5 3.1c3.1 2.6 7.5 6.2 13 9.7c11.2 7.3 24.9 13.4 38.4 13.4c10.7 0 20.5-3.9 28.8-9V288c0-35.3-28.7-64-64-64V176c0-17.7-14.3-32-32-32s-32 14.3-32 32v48H256V176c0-17.7-14.3-32-32-32s-32 14.3-32 32v48H128V176zM448 394.6c-8.5 3.3-18.2 5.4-28.8 5.4c-22.5 0-42.4-9.9-55.8-18.6c-4.1-2.7-7.8-5.4-10.9-7.8c-2.8 2.4-6.1 5-9.8 7.5C329.8 390 310.6 400 288 400s-41.8-10-54.6-18.9c-3.5-2.4-6.7-4.9-9.4-7.2c-2.7 2.3-5.9 4.7-9.4 7.2C201.8 390 182.6 400 160 400s-41.8-10-54.6-18.9c-3.7-2.6-7-5.2-9.8-7.5c-3.1 2.4-6.8 5.1-10.9 7.8C71.2 390.1 51.3 400 28.8 400c-10.6 0-20.3-2.2-28.8-5.4V480c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32V394.6z" + } + }, + "free": [ + "solid" + ] + }, + "calculator": { + "aliases": { + "unicodes": { + "composite": [ + "1f5a9" + ], + "secondary": [ + "10f1ec" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.3.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pocket Calculator", + "abacus", + "addition", + "arithmetic", + "counting", + "math", + "multiplication", + "subtraction" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1ec", + "label": "Calculator", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM96 64H288c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32zm32 160a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zM96 352a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM64 416c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zM192 256a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm32 64a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm64-64a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm32 64a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zM288 448a32 32 0 1 1 0-64 32 32 0 1 1 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "calendar": { + "aliases": { + "unicodes": { + "composite": [ + "1f4c5", + "1f4c6" + ], + "secondary": [ + "10f133" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calendar", + "calendar-o", + "date", + "day", + "event", + "month", + "schedule", + "tear-off calendar", + "time", + "when", + "year" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f133", + "label": "Calendar", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 32V64H48C21.5 64 0 85.5 0 112v48H448V112c0-26.5-21.5-48-48-48H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V64H160V32c0-17.7-14.3-32-32-32S96 14.3 96 32zM448 192H0V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V192z" + }, + "regular": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H64C28.7 64 0 92.7 0 128v16 48V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H344V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H152V24zM48 192H400V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "calendar-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f274" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "appointment", + "confirm", + "correct", + "date", + "day", + "done", + "event", + "month", + "ok", + "schedule", + "select", + "success", + "tick", + "time", + "todo", + "when", + "year" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f274", + "label": "Calendar Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zM329 305c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-95 95-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L329 305z" + }, + "regular": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c13.3 0 24 10.7 24 24V64H296V24c0-13.3 10.7-24 24-24s24 10.7 24 24V64h40c35.3 0 64 28.7 64 64v16 48V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192 144 128C0 92.7 28.7 64 64 64h40V24c0-13.3 10.7-24 24-24zM400 192H48V448c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V192zM329 297L217 409c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47 95-95c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "calendar-day": { + "aliases": { + "unicodes": { + "secondary": [ + "10f783" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "date", + "day", + "detail", + "event", + "focus", + "month", + "schedule", + "single day", + "time", + "today", + "when", + "year" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f783", + "label": "Calendar Day", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm80 64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80z" + } + }, + "free": [ + "solid" + ] + }, + "calendar-days": { + "aliases": { + "names": [ + "calendar-alt" + ], + "unicodes": { + "secondary": [ + "10f073" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.6.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calendar", + "date", + "day", + "event", + "month", + "schedule", + "time", + "when", + "year" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f073", + "label": "Calendar Days", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm64 80v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm128 0v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H336zM64 400v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H208zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16H336c-8.8 0-16 7.2-16 16z" + }, + "regular": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H64C28.7 64 0 92.7 0 128v16 48V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H344V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H152V24zM48 192h80v56H48V192zm0 104h80v64H48V296zm128 0h96v64H176V296zm144 0h80v64H320V296zm80-48H320V192h80v56zm0 160v40c0 8.8-7.2 16-16 16H320V408h80zm-128 0v56H176V408h96zm-144 0v56H64c-8.8 0-16-7.2-16-16V408h80zM272 248H176V192h96v56z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "calendar-minus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f272" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calendar", + "date", + "day", + "delete", + "event", + "month", + "negative", + "remove", + "schedule", + "time", + "when", + "year" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f272", + "label": "Calendar Minus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zM312 376c13.3 0 24-10.7 24-24s-10.7-24-24-24H136c-13.3 0-24 10.7-24 24s10.7 24 24 24H312z" + }, + "regular": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c13.3 0 24 10.7 24 24V64H296V24c0-13.3 10.7-24 24-24s24 10.7 24 24V64h40c35.3 0 64 28.7 64 64v16 48V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192 144 128C0 92.7 28.7 64 64 64h40V24c0-13.3 10.7-24 24-24zM400 192H48V448c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V192zM296 352H152c-13.3 0-24-10.7-24-24s10.7-24 24-24H296c13.3 0 24 10.7 24 24s-10.7 24-24 24z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "calendar-plus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f271" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "calendar", + "create", + "date", + "day", + "event", + "month", + "new", + "positive", + "schedule", + "time", + "when", + "year" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f271", + "label": "Calendar Plus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 32V64H48C21.5 64 0 85.5 0 112v48H448V112c0-26.5-21.5-48-48-48H352V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V64H160V32c0-17.7-14.3-32-32-32S96 14.3 96 32zM448 192H0V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V192zM224 248c13.3 0 24 10.7 24 24v56h56c13.3 0 24 10.7 24 24s-10.7 24-24 24H248v56c0 13.3-10.7 24-24 24s-24-10.7-24-24V376H144c-13.3 0-24-10.7-24-24s10.7-24 24-24h56V272c0-13.3 10.7-24 24-24z" + }, + "regular": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H64C28.7 64 0 92.7 0 128v16 48V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H344V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H152V24zM48 192H400V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192zm176 40c-13.3 0-24 10.7-24 24v48H152c-13.3 0-24 10.7-24 24s10.7 24 24 24h48v48c0 13.3 10.7 24 24 24s24-10.7 24-24V352h48c13.3 0 24-10.7 24-24s-10.7-24-24-24H248V256c0-13.3-10.7-24-24-24z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "calendar-week": { + "aliases": { + "unicodes": { + "secondary": [ + "10f784" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "date", + "day", + "detail", + "event", + "focus", + "month", + "schedule", + "single week", + "time", + "today", + "when", + "year" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f784", + "label": "Calendar Week", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zm80 64c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16H368c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H80z" + } + }, + "free": [ + "solid" + ] + }, + "calendar-xmark": { + "aliases": { + "names": [ + "calendar-times" + ], + "unicodes": { + "secondary": [ + "10f273" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "calendar", + "date", + "day", + "delete", + "event", + "month", + "remove", + "schedule", + "time", + "when", + "x", + "year" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f273", + "label": "Calendar Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c17.7 0 32 14.3 32 32V64H288V32c0-17.7 14.3-32 32-32s32 14.3 32 32V64h48c26.5 0 48 21.5 48 48v48H0V112C0 85.5 21.5 64 48 64H96V32c0-17.7 14.3-32 32-32zM0 192H448V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V192zM305 305c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47z" + }, + "regular": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0c13.3 0 24 10.7 24 24V64H296V24c0-13.3 10.7-24 24-24s24 10.7 24 24V64h40c35.3 0 64 28.7 64 64v16 48V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192 144 128C0 92.7 28.7 64 64 64h40V24c0-13.3 10.7-24 24-24zM400 192H48V448c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V192zm-95 89l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "camera": { + "aliases": { + "names": [ + "camera-alt" + ], + "unicodes": { + "composite": [ + "f332" + ], + "primary": [ + "f332" + ], + "secondary": [ + "10f030", + "10f332" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "image", + "lens", + "photo", + "picture", + "record", + "shutter", + "video" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f030", + "label": "Camera", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M149.1 64.8L138.7 96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H373.3L362.9 64.8C356.4 45.2 338.1 32 317.4 32H194.6c-20.7 0-39 13.2-45.5 32.8zM256 192a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + } + }, + "free": [ + "solid" + ] + }, + "camera-retro": { + "aliases": { + "unicodes": { + "composite": [ + "1f4f7" + ], + "secondary": [ + "10f083" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camera", + "image", + "lens", + "photo", + "picture", + "record", + "shutter", + "video" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f083", + "label": "Camera Retro", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M220.6 121.2L271.1 96 448 96v96H333.2c-21.9-15.1-48.5-24-77.2-24s-55.2 8.9-77.2 24H64V128H192c9.9 0 19.7-2.3 28.6-6.8zM0 128V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H271.1c-9.9 0-19.7 2.3-28.6 6.8L192 64H160V48c0-8.8-7.2-16-16-16H80c-8.8 0-16 7.2-16 16l0 16C28.7 64 0 92.7 0 128zM168 304a88 88 0 1 1 176 0 88 88 0 1 1 -176 0z" + } + }, + "free": [ + "solid" + ] + }, + "camera-rotate": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flip", + "front-facing", + "photo", + "selfie" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e0d8", + "label": "Camera Rotate", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M149.1 64.8L138.7 96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H373.3L362.9 64.8C356.4 45.2 338.1 32 317.4 32H194.6c-20.7 0-39 13.2-45.5 32.8zM384 256c0 8.8-7.2 16-16 16H291.3c-6.2 0-11.3-5.1-11.3-11.3c0-3 1.2-5.9 3.3-8L307 229c-13.6-13.4-31.9-21-51-21c-19.2 0-37.7 7.6-51.3 21.3L185 249c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l19.7-19.7C193.4 172.7 224 160 256 160c31.8 0 62.4 12.6 85 35l23.7-23.7c2.1-2.1 5-3.3 8-3.3c6.2 0 11.3 5.1 11.3 11.3V256zM128 320c0-8.8 7.2-16 16-16h76.7c6.2 0 11.3 5.1 11.3 11.3c0 3-1.2 5.9-3.3 8L205 347c13.6 13.4 31.9 21 51 21c19.2 0 37.7-7.6 51.3-21.3L327 327c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-19.7 19.7C318.6 403.3 288 416 256 416c-31.8 0-62.4-12.6-85-35l-23.7 23.7c-2.1 2.1-5 3.3-8 3.3c-6.2 0-11.3-5.1-11.3-11.3V320z" + } + }, + "free": [ + "solid" + ] + }, + "campground": { + "aliases": { + "unicodes": { + "composite": [ + "26fa" + ], + "secondary": [ + "10f6bb" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camping", + "fall", + "outdoors", + "teepee", + "tent", + "tipi" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6bb", + "label": "Campground", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M377 52c11-13.8 8.8-33.9-5-45s-33.9-8.8-45 5L288 60.8 249 12c-11-13.8-31.2-16-45-5s-16 31.2-5 45l48 60L12.3 405.4C4.3 415.4 0 427.7 0 440.4V464c0 26.5 21.5 48 48 48H288 528c26.5 0 48-21.5 48-48V440.4c0-12.7-4.3-25.1-12.3-35L329 112l48-60zM288 448H168.5L288 291.7 407.5 448H288z" + } + }, + "free": [ + "solid" + ] + }, + "canadian-maple-leaf": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "canada", + "flag", + "flora", + "nature", + "plant" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f785", + "label": "Canadian Maple Leaf", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M383.8 351.7c2.5-2.5 105.2-92.4 105.2-92.4l-17.5-7.5c-10-4.9-7.4-11.5-5-17.4 2.4-7.6 20.1-67.3 20.1-67.3s-47.7 10-57.7 12.5c-7.5 2.4-10-2.5-12.5-7.5s-15-32.4-15-32.4-52.6 59.9-55.1 62.3c-10 7.5-20.1 0-17.6-10 0-10 27.6-129.6 27.6-129.6s-30.1 17.4-40.1 22.4c-7.5 5-12.6 5-17.6-5C293.5 72.3 255.9 0 255.9 0s-37.5 72.3-42.5 79.8c-5 10-10 10-17.6 5-10-5-40.1-22.4-40.1-22.4S183.3 182 183.3 192c2.5 10-7.5 17.5-17.6 10-2.5-2.5-55.1-62.3-55.1-62.3S98.1 167 95.6 172s-5 9.9-12.5 7.5C73 177 25.4 167 25.4 167s17.6 59.7 20.1 67.3c2.4 6 5 12.5-5 17.4L23 259.3s102.6 89.9 105.2 92.4c5.1 5 10 7.5 5.1 22.5-5.1 15-10.1 35.1-10.1 35.1s95.2-20.1 105.3-22.6c8.7-.9 18.3 2.5 18.3 12.5S241 512 241 512h30s-5.8-102.7-5.8-112.8 9.5-13.4 18.4-12.5c10 2.5 105.2 22.6 105.2 22.6s-5-20.1-10-35.1 0-17.5 5-22.5z" + } + }, + "free": [ + "brands" + ] + }, + "candy-cane": { + "aliases": { + "unicodes": { + "secondary": [ + "10f786" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "candy", + "christmas", + "holiday", + "mint", + "peppermint", + "striped", + "xmas" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f786", + "label": "Candy Cane", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M348.8 131.5c3.7-2.3 7.9-3.5 12.2-3.5c12.7 0 23 10.3 23 23v5.6c0 9.9-5.1 19.1-13.5 24.3L30.1 393.7C.1 412.5-9 451.9 9.7 481.9s58.2 39.1 88.2 20.4L438.4 289.5c45.8-28.6 73.6-78.8 73.6-132.8V151C512 67.6 444.4 0 361 0c-28.3 0-56 8-80.1 23L254.1 39.7c-30 18.7-39.1 58.2-20.4 88.2s58.2 39.1 88.2 20.4l26.8-16.8zM298.4 49.8c9.2-5.7 19.1-10.1 29.4-13.1L348 97.5c-5.7 1.4-11.2 3.7-16.3 6.8l-12.6 7.9L298.4 49.8zm88.5 52.7l46.2-46.2c8.5 6.5 16.1 14.1 22.6 22.6l-46.2 46.2c-5.1-9.6-13-17.5-22.6-22.6zm28.9 59.3l61.6 20.5c-2.2 10.5-5.8 20.7-10.5 30.2l-62-20.7c6.2-8.8 10.1-19.1 11-30.1zm-86.1 82.5l60.4 37.7-30.2 18.9-60.4-37.7 30.2-18.9zm-107.2 67l60.4 37.7-30.2 18.9-60.4-37.7 30.2-18.9zM119.3 375.7l60.4 37.7-30.2 18.9L89.1 394.6l30.2-18.9z" + } + }, + "free": [ + "solid" + ] + }, + "cannabis": { + "aliases": { + "unicodes": { + "secondary": [ + "10f55f" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bud", + "chronic", + "drugs", + "endica", + "endo", + "ganja", + "marijuana", + "mary jane", + "pot", + "reefer", + "sativa", + "spliff", + "weed", + "whacky-tabacky" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55f", + "label": "Cannabis", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M240 0c5.3 0 10.3 2.7 13.3 7.1c15.8 23.5 36.7 63.7 49.2 109c7.2 26.4 11.8 55.2 10.4 84c11.5-8.8 23.7-16.7 35.8-23.6c41-23.3 84.4-36.9 112.2-42.5c5.2-1 10.7 .6 14.4 4.4s5.4 9.2 4.4 14.5c-5.6 27.7-19.3 70.9-42.7 111.7c-9.1 15.9-19.9 31.7-32.4 46.3c27.8 6.6 52.4 17.3 67.2 25.5c5.1 2.8 8.2 8.2 8.2 14s-3.2 11.2-8.2 14c-15.2 8.4-40.9 19.5-69.8 26.1c-20.2 4.6-42.9 7.2-65.2 4.6l8.3 33.1c1.5 6.1-.6 12.4-5.5 16.4s-11.6 4.6-17.2 1.9L264 417.2V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V417.2l-58.5 29.1c-5.6 2.8-12.3 2.1-17.2-1.9s-7-10.3-5.5-16.4l8.3-33.1c-22.2 2.6-45 0-65.2-4.6c-28.9-6.6-54.6-17.6-69.8-26.1c-5.1-2.8-8.2-8.2-8.2-14s3.2-11.2 8.2-14c14.8-8.2 39.4-18.8 67.2-25.5C62.9 296.3 52.1 280.5 43 264.6C19.6 223.8 5.9 180.6 .3 152.9c-1.1-5.2 .6-10.7 4.4-14.5s9.2-5.4 14.4-4.4c27.9 5.5 71.2 19.2 112.2 42.5c12.1 6.9 24.3 14.7 35.8 23.6c-1.4-28.7 3.1-57.6 10.4-84c12.5-45.3 33.4-85.5 49.2-109c3-4.4 8-7.1 13.3-7.1z" + } + }, + "free": [ + "solid" + ] + }, + "capsules": { + "aliases": { + "unicodes": { + "secondary": [ + "10f46b" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine", + "pills", + "prescription" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f46b", + "label": "Capsules", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 144c0-26.5 21.5-48 48-48s48 21.5 48 48V256H64V144zM0 144V368c0 61.9 50.1 112 112 112s112-50.1 112-112V189.6c1.8 19.1 8.2 38 19.8 54.8L372.3 431.7c35.5 51.7 105.3 64.3 156 28.1s63-107.5 27.5-159.2L427.3 113.3C391.8 61.5 321.9 49 271.3 85.2c-28 20-44.3 50.8-47.3 83V144c0-61.9-50.1-112-112-112S0 82.1 0 144zm296.6 64.2c-16-23.3-10-55.3 11.9-71c21.2-15.1 50.5-10.3 66 12.2l67 97.6L361.6 303l-65-94.8zM491 407.7c-.8 .6-1.6 1.1-2.4 1.6l4-2.8c-.5 .4-1 .8-1.6 1.2z" + } + }, + "free": [ + "solid" + ] + }, + "car": { + "aliases": { + "names": [ + "automobile" + ], + "unicodes": { + "composite": [ + "1f698" + ], + "secondary": [ + "10f1b9" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "automobile", + "car", + "oncoming", + "oncoming automobile", + "sedan", + "transportation", + "travel", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1b9", + "label": "Car", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M135.2 117.4L109.1 192H402.9l-26.1-74.6C372.3 104.6 360.2 96 346.6 96H165.4c-13.6 0-25.7 8.6-30.2 21.4zM39.6 196.8L74.8 96.3C88.3 57.8 124.6 32 165.4 32H346.6c40.8 0 77.1 25.8 90.6 64.3l35.2 100.5c23.2 9.6 39.6 32.5 39.6 59.2V400v48c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V400H96v48c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V400 256c0-26.7 16.4-49.6 39.6-59.2zM128 288a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "car-battery": { + "aliases": { + "names": [ + "battery-car" + ], + "unicodes": { + "secondary": [ + "10f5df" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "electric", + "mechanic", + "power" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5df", + "label": "Car Battery", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M80 96c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32l96 0c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32h16c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64l16 0zm304 96c0-8.8-7.2-16-16-16s-16 7.2-16 16v32H320c-8.8 0-16 7.2-16 16s7.2 16 16 16h32v32c0 8.8 7.2 16 16 16s16-7.2 16-16V256h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H384V192zM80 240c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H96c-8.8 0-16 7.2-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "car-burst": { + "aliases": { + "names": [ + "car-crash" + ], + "unicodes": { + "secondary": [ + "10f5e1" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accident", + "auto", + "automobile", + "insurance", + "sedan", + "transportation", + "vehicle", + "wreck" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5e1", + "label": "Car Burst", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M172 8c-6.6 0-12.4 4-14.9 10.1l-29.4 74L51.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L6.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L86.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6l35.3-32.5 9.5-35.4 10.4-38.6c8-29.9 30.5-52.1 57.9-60.9l41-59.2c11.3-16.3 26.4-28.9 43.5-37.2c-.4-.6-.8-1.2-1.3-1.8c-4.1-5.1-10.9-7.2-17.2-5.3L216.3 92.1l-29.4-74C184.4 12 178.6 8 172 8zM363.7 161.5l135.6 36.3c6.5 1.8 11.3 7.4 11.8 14.2l4.6 56.5-201.5-54 32.2-46.6c3.8-5.6 10.8-8.1 17.3-6.4zm-69.9-30l-47.9 69.3c-21.6 3-40.3 18.6-46.3 41l-10.4 38.6-16.6 61.8-8.3 30.9c-4.6 17.1 5.6 34.6 22.6 39.2l15.5 4.1c17.1 4.6 34.6-5.6 39.2-22.6l8.3-30.9 247.3 66.3-8.3 30.9c-4.6 17.1 5.6 34.6 22.6 39.2l15.5 4.1c17.1 4.6 34.6-5.6 39.2-22.6l8.3-30.9L591 388l10.4-38.6c6-22.4-2.5-45.2-19.6-58.7l-6.8-84c-2.7-33.7-26.4-62-59-70.8L380.2 99.7c-32.7-8.8-67.3 4-86.5 31.8zm-17 131a24 24 0 1 1 -12.4 46.4 24 24 0 1 1 12.4-46.4zm217.9 83.2A24 24 0 1 1 541 358.1a24 24 0 1 1 -46.4-12.4z" + } + }, + "free": [ + "solid" + ] + }, + "car-on": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alarm", + "car", + "carjack", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4dd", + "label": "Car On", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M248 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v80c0 13.3 10.7 24 24 24s24-10.7 24-24V24zM153.8 224H294.2c6.8 0 12.8 4.3 15.1 10.6L328.3 288H119.7l19.1-53.4c2.3-6.4 8.3-10.6 15.1-10.6zM78.5 213.1L50.2 292.4C30.1 300.9 16 320.8 16 344v40 64 32c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V448H352v32c0 17.7 14.3 32 32 32h16c17.7 0 32-14.3 32-32V448 384 344c0-23.2-14.1-43.1-34.2-51.6l-28.3-79.3C358.1 181.3 328 160 294.2 160H153.8c-33.8 0-64 21.3-75.3 53.1zM96 344a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm232 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM7 39C-2.3 48.4-2.3 63.6 7 73l48 48c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L41 39C31.6 29.7 16.4 29.7 7 39zm400 0L359 87c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l48-48c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0z" + } + }, + "free": [ + "solid" + ] + }, + "car-rear": { + "aliases": { + "names": [ + "car-alt" + ], + "unicodes": { + "secondary": [ + "10f5de" + ] + } + }, + "changes": [ + "5.2.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "automobile", + "sedan", + "transportation", + "travel", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5de", + "label": "Car Rear", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M165.4 96H346.6c13.6 0 25.7 8.6 30.2 21.4L402.9 192H109.1l26.1-74.6c4.5-12.8 16.6-21.4 30.2-21.4zm-90.6 .3L39.6 196.8C16.4 206.4 0 229.3 0 256v80c0 23.7 12.9 44.4 32 55.4V448c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32V400H384v48c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V391.4c19.1-11.1 32-31.7 32-55.4V256c0-26.7-16.4-49.6-39.6-59.2L437.2 96.3C423.7 57.8 387.4 32 346.6 32H165.4c-40.8 0-77.1 25.8-90.6 64.3zM208 272h96c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H208c-8.8 0-16-7.2-16-16V288c0-8.8 7.2-16 16-16zM48 280c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H72c-13.3 0-24-10.7-24-24zm360-24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H408c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "car-side": { + "aliases": { + "unicodes": { + "composite": [ + "1f697" + ], + "secondary": [ + "10f5e4" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "automobile", + "car", + "sedan", + "transportation", + "travel", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5e4", + "label": "Car Side", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M171.3 96H224v96H111.3l30.4-75.9C146.5 104 158.2 96 171.3 96zM272 192V96h81.2c9.7 0 18.9 4.4 25 12l67.2 84H272zm256.2 1L428.2 68c-18.2-22.8-45.8-36-75-36H171.3c-39.3 0-74.6 23.9-89.1 60.3L40.6 196.4C16.8 205.8 0 228.9 0 256V368c0 17.7 14.3 32 32 32H65.3c7.6 45.4 47.1 80 94.7 80s87.1-34.6 94.7-80H385.3c7.6 45.4 47.1 80 94.7 80s87.1-34.6 94.7-80H608c17.7 0 32-14.3 32-32V320c0-65.2-48.8-119-111.8-127zM434.7 368a48 48 0 1 1 90.5 32 48 48 0 1 1 -90.5-32zM160 336a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + }, + "free": [ + "solid" + ] + }, + "car-tunnel": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "road", + "tunnel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4de", + "label": "Car Tunnel", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0C114.6 0 0 114.6 0 256V448c0 35.3 28.7 64 64 64h64H384h64c35.3 0 64-28.7 64-64V256C512 114.6 397.4 0 256 0zM384 512c-17.7 0-32-14.3-32-32V448H160v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V376c0-20.8 11.3-38.9 28.1-48.6l21-64.7c7.5-23.1 29-38.7 53.3-38.7H313.6c24.3 0 45.8 15.6 53.3 38.7l21 64.7c16.8 9.7 28.2 27.8 28.2 48.6V480c0 17.7-14.3 32-32 32zM190.8 277.5L177 320H335l-13.8-42.5c-1.1-3.3-4.1-5.5-7.6-5.5H198.4c-3.5 0-6.5 2.2-7.6 5.5zM168 408a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm200-24a24 24 0 1 0 -48 0 24 24 0 1 0 48 0z" + } + }, + "free": [ + "solid" + ] + }, + "caravan": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8ff" + ] + } + }, + "changes": [ + "5.12.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camper", + "motor home", + "rv", + "trailer", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f8ff", + "label": "Caravan", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 112C0 67.8 35.8 32 80 32H416c88.4 0 160 71.6 160 160V352h32c17.7 0 32 14.3 32 32s-14.3 32-32 32l-32 0H288c0 53-43 96-96 96s-96-43-96-96H80c-44.2 0-80-35.8-80-80V112zM320 352H448V256H416c-8.8 0-16-7.2-16-16s7.2-16 16-16h32V160c0-17.7-14.3-32-32-32H352c-17.7 0-32 14.3-32 32V352zM96 128c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H224c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H96zm96 336a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + }, + "free": [ + "solid" + ] + }, + "caret-down": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0d7" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "dropdown", + "expand", + "menu", + "more", + "triangle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d7", + "label": "Caret Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z" + } + }, + "free": [ + "solid" + ] + }, + "caret-left": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0d9" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "previous", + "triangle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d9", + "label": "Caret Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M9.4 278.6c-12.5-12.5-12.5-32.8 0-45.3l128-128c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 256c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-128-128z" + } + }, + "free": [ + "solid" + ] + }, + "caret-right": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0da" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "forward", + "next", + "triangle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0da", + "label": "Caret Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M246.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-128-128c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6l0 256c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l128-128z" + } + }, + "free": [ + "solid" + ] + }, + "caret-up": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0d8" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "collapse", + "triangle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d8", + "label": "Caret Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M182.6 137.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H288c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z" + } + }, + "free": [ + "solid" + ] + }, + "carrot": { + "aliases": { + "unicodes": { + "composite": [ + "1f955" + ], + "secondary": [ + "10f787" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bugs bunny", + "carrot", + "food", + "orange", + "vegan", + "vegetable" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f787", + "label": "Carrot", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M346.7 6C337.6 17 320 42.3 320 72c0 40 15.3 55.3 40 80s40 40 80 40c29.7 0 55-17.6 66-26.7c4-3.3 6-8.2 6-13.3s-2-10-6-13.2c-11.4-9.1-38.3-26.8-74-26.8c-32 0-40 8-40 8s8-8 8-40c0-35.7-17.7-62.6-26.8-74C370 2 365.1 0 360 0s-10 2-13.3 6zM244.6 136c-40 0-77.1 18.1-101.7 48.2l60.5 60.5c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-55.3-55.3 0 .1L2.2 477.9C-2 487-.1 497.8 7 505s17.9 9 27.1 4.8l134.7-62.4-52.1-52.1c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L199.7 433l100.2-46.4c46.4-21.5 76.2-68 76.2-119.2C376 194.8 317.2 136 244.6 136z" + } + }, + "free": [ + "solid" + ] + }, + "cart-arrow-down": { + "aliases": { + "unicodes": { + "secondary": [ + "10f218" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "save", + "shopping" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f218", + "label": "Cart Arrow Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M24 0C10.7 0 0 10.7 0 24S10.7 48 24 48H69.5c3.8 0 7.1 2.7 7.9 6.5l51.6 271c6.5 34 36.2 58.5 70.7 58.5H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H199.7c-11.5 0-21.4-8.2-23.6-19.5L170.7 288H459.2c32.6 0 61.1-21.8 69.5-53.3l41-152.3C576.6 57 557.4 32 531.1 32H360V134.1l23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-64 64c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l23 23V32H120.1C111 12.8 91.6 0 69.5 0H24zM176 512a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm336-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + }, + "free": [ + "solid" + ] + }, + "cart-flatbed": { + "aliases": { + "names": [ + "dolly-flatbed" + ], + "unicodes": { + "secondary": [ + "10f474" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "inventory", + "shipping", + "transport" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f474", + "label": "Cart Flatbed", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64H48c8.8 0 16 7.2 16 16V368c0 44.2 35.8 80 80 80h18.7c-1.8 5-2.7 10.4-2.7 16c0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1-11-2.7-16H450.7c-1.8 5-2.7 10.4-2.7 16c0 26.5 21.5 48 48 48s48-21.5 48-48c0-5.6-1-11-2.7-16H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H144c-8.8 0-16-7.2-16-16V80C128 35.8 92.2 0 48 0H32zM192 80V272c0 26.5 21.5 48 48 48H560c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H464V176c0 5.9-3.2 11.3-8.5 14.1s-11.5 2.5-16.4-.8L400 163.2l-39.1 26.1c-4.9 3.3-11.2 3.6-16.4 .8s-8.5-8.2-8.5-14.1V32H240c-26.5 0-48 21.5-48 48z" + } + }, + "free": [ + "solid" + ] + }, + "cart-flatbed-suitcase": { + "aliases": { + "names": [ + "luggage-cart" + ], + "unicodes": { + "secondary": [ + "10f59d" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airport", + "bag", + "baggage", + "suitcase", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f59d", + "label": "Cart Flatbed Suitcase", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H48c44.2 0 80 35.8 80 80V368c0 8.8 7.2 16 16 16H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H541.3c1.8 5 2.7 10.4 2.7 16c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-5.6 1-11 2.7-16H253.3c1.8 5 2.7 10.4 2.7 16c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-5.6 1-11 2.7-16H144c-44.2 0-80-35.8-80-80V80c0-8.8-7.2-16-16-16H32C14.3 64 0 49.7 0 32zM432 96V56c0-4.4-3.6-8-8-8H344c-4.4 0-8 3.6-8 8V96h96zM288 96V56c0-30.9 25.1-56 56-56h80c30.9 0 56 25.1 56 56V96 320H288V96zM512 320V96h16c26.5 0 48 21.5 48 48V272c0 26.5-21.5 48-48 48H512zM240 96h16V320H240c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48z" + } + }, + "free": [ + "solid" + ] + }, + "cart-plus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f217" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "new", + "positive", + "shopping" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f217", + "label": "Cart Plus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 24C0 10.7 10.7 0 24 0H69.5c22 0 41.5 12.8 50.6 32h411c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3H170.7l5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H199.7c-34.6 0-64.3-24.6-70.7-58.5L77.4 54.5c-.7-3.8-4-6.5-7.9-6.5H24C10.7 48 0 37.3 0 24zM128 464a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm336-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM252 160c0 11 9 20 20 20h44v44c0 11 9 20 20 20s20-9 20-20V180h44c11 0 20-9 20-20s-9-20-20-20H356V96c0-11-9-20-20-20s-20 9-20 20v44H272c-11 0-20 9-20 20z" + } + }, + "free": [ + "solid" + ] + }, + "cart-shopping": { + "aliases": { + "names": [ + "shopping-cart" + ], + "unicodes": { + "composite": [ + "1f6d2" + ], + "secondary": [ + "10f07a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cart", + "checkout", + "grocery", + "payment", + "purchase", + "shopping", + "shopping cart", + "trolley" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f07a", + "label": "Cart Shopping", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 24C0 10.7 10.7 0 24 0H69.5c22 0 41.5 12.8 50.6 32h411c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3H170.7l5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H199.7c-34.6 0-64.3-24.6-70.7-58.5L77.4 54.5c-.7-3.8-4-6.5-7.9-6.5H24C10.7 48 0 37.3 0 24zM128 464a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm336-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + }, + "free": [ + "solid" + ] + }, + "cash-register": { + "aliases": { + "unicodes": { + "secondary": [ + "10f788" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cha-ching", + "change", + "checkout", + "commerce", + "leaerboard", + "machine", + "pay", + "payment", + "purchase", + "store" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f788", + "label": "Cash Register", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 0C46.3 0 32 14.3 32 32V96c0 17.7 14.3 32 32 32h80v32H87c-31.6 0-58.5 23.1-63.3 54.4L1.1 364.1C.4 368.8 0 373.6 0 378.4V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V378.4c0-4.8-.4-9.6-1.1-14.4L488.2 214.4C483.5 183.1 456.6 160 425 160H208V128h80c17.7 0 32-14.3 32-32V32c0-17.7-14.3-32-32-32H64zM96 48H256c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16s7.2-16 16-16zM64 432c0-8.8 7.2-16 16-16H432c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm48-168a24 24 0 1 1 0-48 24 24 0 1 1 0 48zm120-24a24 24 0 1 1 -48 0 24 24 0 1 1 48 0zM160 344a24 24 0 1 1 0-48 24 24 0 1 1 0 48zM328 240a24 24 0 1 1 -48 0 24 24 0 1 1 48 0zM256 344a24 24 0 1 1 0-48 24 24 0 1 1 0 48zM424 240a24 24 0 1 1 -48 0 24 24 0 1 1 48 0zM352 344a24 24 0 1 1 0-48 24 24 0 1 1 0 48z" + } + }, + "free": [ + "solid" + ] + }, + "cat": { + "aliases": { + "unicodes": { + "composite": [ + "1f408" + ], + "secondary": [ + "10f6be" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cat", + "feline", + "halloween", + "holiday", + "kitten", + "kitty", + "meow", + "pet" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6be", + "label": "Cat", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669918857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 192h17.1c22.1 38.3 63.5 64 110.9 64c11 0 21.8-1.4 32-4v4 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V339.2L248 448h56c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-53 0-96-43-96-96V192.5c0-16.1-12-29.8-28-31.8l-7.9-1C10.5 157.6-1.9 141.6 .2 124s18.2-30 35.7-27.8l7.9 1c48 6 84.1 46.8 84.1 95.3v85.3c34.4-51.7 93.2-85.8 160-85.8zm160 26.5v0c-10 3.5-20.8 5.5-32 5.5c-28.4 0-54-12.4-71.6-32h0c-3.7-4.1-7-8.5-9.9-13.2C325.3 164 320 146.6 320 128v0V32 12 10.7C320 4.8 324.7 .1 330.6 0h.2c3.3 0 6.4 1.6 8.4 4.2l0 .1L352 21.3l27.2 36.3L384 64h64l4.8-6.4L480 21.3 492.8 4.3l0-.1c2-2.6 5.1-4.2 8.4-4.2h.2C507.3 .1 512 4.8 512 10.7V12 32v96c0 17.3-4.6 33.6-12.6 47.6c-11.3 19.8-29.6 35.2-51.4 42.9zM400 128a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm48 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + }, + "free": [ + "solid" + ] + }, + "cc-amazon-pay": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42d", + "label": "Amazon Pay Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3.4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5.9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5.9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8.1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7.9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4.2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9.9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3.1 4.6 1.6 6.7 6.2 7.5 4.7.8 9.4 1.6 14.2 1.7 14.3.3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5.6-1.5 1.1-3 1.3-4.6.4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5.4-.3.8-.6 1.4-1 .5 3.2.9 6.2 1.5 9.2.5 2.6 2.1 4.3 4.5 4.4 4.6.1 9.1.1 13.7 0 2.3-.1 3.8-1.6 4-3.9.1-.8.1-1.6.1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8.1-1.6.3-2.5.3-8.2.4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5.1 2.8-.1 5.6 0 8.3.1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4.8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7.3 6.9.2 13.9.3 20.8 0 .4-.1.7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9.1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7.1 2.5.2 2.5 1.7 4.1 4.1 4.2 5.9.1 11.8.1 17.7 0 2.5 0 4-1.7 4.1-4.1.1-.8.1-1.7.1-2.5v-60.7c.9.7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2.2-2.4.3-3.6.5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6.7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4.7 0 1.4.2 2.1.3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2.8-2.4 1.8-3.1 3-.6.9-.7 2.3-.5 3.4.3 1.3 1.7 1.6 3 1.5.6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1.3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7.3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3.8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6.7-3 1.2-6.1 1.7-9.1.2-4.7.2-9.6.2-14.5z" + } + }, + "free": [ + "brands" + ] + }, + "cc-amex": { + "changes": [ + "4.2.0", + "5.0.0", + "5.7.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "amex" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f1f3", + "label": "American Express Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M48 480C21.49 480 0 458.5 0 432V80C0 53.49 21.49 32 48 32H528C554.5 32 576 53.49 576 80V82.43H500.5L483.5 130L466.6 82.43H369.4V145.6L341.3 82.43H262.7L181 267.1H246.8V430.9H450.5L482.4 395.8L514.3 430.9H576V432C576 458.5 554.5 480 528 480H48zM482.6 364L440.4 410.3H390.5L458 338.6L390.5 266.1H441.9L483.4 312.8L525.4 266.1H576L508 338.2L576 410.3H524.6L482.6 364zM576 296.9V380.2L536.7 338.3L576 296.9zM307.6 377.1H390.6V410.3H268.6V267.1H390.6V300.2H307.6V322.6H388.5V354.9H307.6V377.2V377.1zM537.3 145.7L500.4 246.3H466L429.2 146V246.3H390.5V103H451.7L483.6 192.3L515.8 103H576V246.3H537.3V145.7zM334.5 217.6H268.6L256.7 246.3H213.7L276.1 103H327.3L390.6 246.3H346.5L334.5 217.6zM301.5 138.5L282 185.4H320.9L301.5 138.5z" + } + }, + "free": [ + "brands" + ] + }, + "cc-apple-pay": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f416", + "label": "Apple Pay Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3.9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4.7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4.3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5.2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2.4 6.5.5 8.1.5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z" + } + }, + "free": [ + "brands" + ] + }, + "cc-diners-club": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f24c", + "label": "Diner's Club Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8.3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z" + } + }, + "free": [ + "brands" + ] + }, + "cc-discover": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1f2", + "label": "Discover Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M520.4 196.1c0-7.9-5.5-12.1-15.6-12.1h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-44.1 138.9c22.6 0 52.9-4.1 52.9 24.4 0 12.6-6.6 20.7-18.7 23.2l25.8 34.4h-19.6l-22.2-32.8h-2.2v32.8h-16zm-55.9.1h45.3v14H444v18.2h28.3V217H444v22.2h29.3V253H428zm-68.7 0l21.9 55.2 22.2-55.2h17.5l-35.5 84.2h-8.6l-35-84.2zm-55.9-3c24.7 0 44.6 20 44.6 44.6 0 24.7-20 44.6-44.6 44.6-24.7 0-44.6-20-44.6-44.6 0-24.7 20-44.6 44.6-44.6zm-49.3 6.1v19c-20.1-20.1-46.8-4.7-46.8 19 0 25 27.5 38.5 46.8 19.2v19c-29.7 14.3-63.3-5.7-63.3-38.2 0-31.2 33.1-53 63.3-38zm-97.2 66.3c11.4 0 22.4-15.3-3.3-24.4-15-5.5-20.2-11.4-20.2-22.7 0-23.2 30.6-31.4 49.7-14.3l-8.4 10.8c-10.4-11.6-24.9-6.2-24.9 2.5 0 4.4 2.7 6.9 12.3 10.3 18.2 6.6 23.6 12.5 23.6 25.6 0 29.5-38.8 37.4-56.6 11.3l10.3-9.9c3.7 7.1 9.9 10.8 17.5 10.8zM55.4 253H32v-82h23.4c26.1 0 44.1 17 44.1 41.1 0 18.5-13.2 40.9-44.1 40.9zm67.5 0h-16v-82h16zM544 433c0 8.2-6.8 15-15 15H128c189.6-35.6 382.7-139.2 416-160zM74.1 191.6c-5.2-4.9-11.6-6.6-21.9-6.6H48v54.2h4.2c10.3 0 17-2 21.9-6.4 5.7-5.2 8.9-12.8 8.9-20.7s-3.2-15.5-8.9-20.5z" + } + }, + "free": [ + "brands" + ] + }, + "cc-jcb": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f24b", + "label": "JCB Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M431.5 244.3V212c41.2 0 38.5.2 38.5.2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2.4-3.3.3-38.5.3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3.1 42.3-12.9 42.3-33.2z" + } + }, + "free": [ + "brands" + ] + }, + "cc-mastercard": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1f1", + "label": "MasterCard Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8.3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3.3.5.3 1.1 0 .3-.3.5-.3 1.1-.3.3-.3.5-.5.8-.3.3-.5.5-1.1.5-.3.3-.5.3-1.1.3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8.3-1.1 0-.5.3-.8.5-1.1.3-.3.5-.3.8-.5.5-.3.8-.3 1.1-.3.5 0 .8 0 1.1.3.5.3.8.3 1.1.5s.2.6.5 1.1zm-2.2 1.4c.5 0 .5-.3.8-.3.3-.3.3-.5.3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7.8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8.3-1.4.3-.5.3-.8.5-1.1.8-.5.3-.8.8-.8 1.1-.3.5-.3 1.1-.3 1.6 0 .3 0 .8.3 1.4 0 .3.3.8.8 1.1.3.3.5.5 1.1.8.5.3 1.1.3 1.4.3.5 0 1.1 0 1.6-.3.3-.3.8-.5 1.1-.8.3-.3.5-.8.8-1.1.3-.6.3-1.1.3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4.1 138.5-61.9 138.5-138.4z" + } + }, + "free": [ + "brands" + ] + }, + "cc-paypal": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1f4", + "label": "Paypal Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5.5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3.5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5.1-9.8-6.9-15.5-16.2-15.5z" + } + }, + "free": [ + "brands" + ] + }, + "cc-stripe": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1f5", + "label": "Stripe Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M492.4 220.8c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7zM375 223.4c-8.2 0-13.3 2.9-17 7l.2 52.8c3.5 3.7 8.5 6.7 16.8 6.7 13.1 0 21.9-14.3 21.9-33.4 0-18.6-9-33.2-21.9-33.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM122.2 281.1c0 25.6-20.3 40.1-49.9 40.3-12.2 0-25.6-2.4-38.8-8.1v-33.9c12 6.4 27.1 11.3 38.9 11.3 7.9 0 13.6-2.1 13.6-8.7 0-17-54-10.6-54-49.9 0-25.2 19.2-40.2 48-40.2 11.8 0 23.5 1.8 35.3 6.5v33.4c-10.8-5.8-24.5-9.1-35.3-9.1-7.5 0-12.1 2.2-12.1 7.7 0 16 54.3 8.4 54.3 50.7zm68.8-56.6h-27V275c0 20.9 22.5 14.4 27 12.6v28.9c-4.7 2.6-13.3 4.7-24.9 4.7-21.1 0-36.9-15.5-36.9-36.5l.2-113.9 34.7-7.4v30.8H191zm74 2.4c-4.5-1.5-18.7-3.6-27.1 7.4v84.4h-35.5V194.2h30.7l2.2 10.5c8.3-15.3 24.9-12.2 29.6-10.5h.1zm44.1 91.8h-35.7V194.2h35.7zm0-142.9l-35.7 7.6v-28.9l35.7-7.6zm74.1 145.5c-12.4 0-20-5.3-25.1-9l-.1 40.2-35.5 7.5V194.2h31.3l1.8 8.8c4.9-4.5 13.9-11.1 27.8-11.1 24.9 0 48.4 22.5 48.4 63.8 0 45.1-23.2 65.5-48.6 65.6zm160.4-51.5h-69.5c1.6 16.6 13.8 21.5 27.6 21.5 14.1 0 25.2-3 34.9-7.9V312c-9.7 5.3-22.4 9.2-39.4 9.2-34.6 0-58.8-21.7-58.8-64.5 0-36.2 20.5-64.9 54.3-64.9 33.7 0 51.3 28.7 51.3 65.1 0 3.5-.3 10.9-.4 12.9z" + } + }, + "free": [ + "brands" + ] + }, + "cc-visa": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1f0", + "label": "Visa Credit Card", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2.3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4.2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2.2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2.1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z" + } + }, + "free": [ + "brands" + ] + }, + "cedi-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Cedi Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e0df", + "label": "Cedi Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M224 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V66.7C69.2 81.9 0 160.9 0 256s69.2 174.1 160 189.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V445.3c30.9-5.2 59.2-17.7 83.2-35.8c14.1-10.6 17-30.7 6.4-44.8s-30.7-17-44.8-6.4c-13.2 9.9-28.3 17.3-44.8 21.6V132c16.4 4.2 31.6 11.6 44.8 21.6c14.1 10.6 34.2 7.8 44.8-6.4s7.8-34.2-6.4-44.8c-24-18-52.4-30.6-83.2-35.8V32zM160 132V380c-55.2-14.2-96-64.3-96-124s40.8-109.8 96-124z" + } + }, + "free": [ + "solid" + ] + }, + "cent-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Cent Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e3f5", + "label": "Cent Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M192 0c17.7 0 32 14.3 32 32V66.7c30.9 5.2 59.2 17.7 83.2 35.8c14.1 10.6 17 30.7 6.4 44.8s-30.7 17-44.8 6.4C247.4 137.5 220.9 128 192 128c-70.7 0-128 57.3-128 128s57.3 128 128 128c28.9 0 55.4-9.5 76.8-25.6c14.1-10.6 34.2-7.8 44.8 6.4s7.8 34.2-6.4 44.8c-24 18-52.4 30.6-83.2 35.8V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.3C69.2 430.1 0 351.1 0 256S69.2 81.9 160 66.7V32c0-17.7 14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "centercode": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f380", + "label": "Centercode", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z" + } + }, + "free": [ + "brands" + ] + }, + "centos": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f789", + "label": "Centos", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M289.6 97.5l31.6 31.7-76.3 76.5V97.5zm-162.4 31.7l76.3 76.5V97.5h-44.7zm41.5-41.6h44.7v127.9l10.8 10.8 10.8-10.8V87.6h44.7L224.2 32zm26.2 168.1l-10.8-10.8H55.5v-44.8L0 255.7l55.5 55.6v-44.8h128.6l10.8-10.8zm79.3-20.7h107.9v-44.8l-31.6-31.7zm173.3 20.7L392 200.1v44.8H264.3l-10.8 10.8 10.8 10.8H392v44.8l55.5-55.6zM65.4 176.2l32.5-31.7 90.3 90.5h15.3v-15.3l-90.3-90.5 31.6-31.7H65.4zm316.7-78.7h-78.5l31.6 31.7-90.3 90.5V235h15.3l90.3-90.5 31.6 31.7zM203.5 413.9V305.8l-76.3 76.5 31.6 31.7h44.7zM65.4 235h108.8l-76.3-76.5-32.5 31.7zm316.7 100.2l-31.6 31.7-90.3-90.5h-15.3v15.3l90.3 90.5-31.6 31.7h78.5zm0-58.8H274.2l76.3 76.5 31.6-31.7zm-60.9 105.8l-76.3-76.5v108.1h44.7zM97.9 352.9l76.3-76.5H65.4v44.8zm181.8 70.9H235V295.9l-10.8-10.8-10.8 10.8v127.9h-44.7l55.5 55.6zm-166.5-41.6l90.3-90.5v-15.3h-15.3l-90.3 90.5-32.5-31.7v78.7h79.4z" + } + }, + "free": [ + "brands" + ] + }, + "certificate": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0a3" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "badge", + "star", + "verified" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0a3", + "label": "Certificate", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321795, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M211 7.3C205 1 196-1.4 187.6 .8s-14.9 8.9-17.1 17.3L154.7 80.6l-62-17.5c-8.4-2.4-17.4 0-23.5 6.1s-8.5 15.1-6.1 23.5l17.5 62L18.1 170.6c-8.4 2.1-15 8.7-17.3 17.1S1 205 7.3 211l46.2 45L7.3 301C1 307-1.4 316 .8 324.4s8.9 14.9 17.3 17.1l62.5 15.8-17.5 62c-2.4 8.4 0 17.4 6.1 23.5s15.1 8.5 23.5 6.1l62-17.5 15.8 62.5c2.1 8.4 8.7 15 17.1 17.3s17.3-.2 23.4-6.4l45-46.2 45 46.2c6.1 6.2 15 8.7 23.4 6.4s14.9-8.9 17.1-17.3l15.8-62.5 62 17.5c8.4 2.4 17.4 0 23.5-6.1s8.5-15.1 6.1-23.5l-17.5-62 62.5-15.8c8.4-2.1 15-8.7 17.3-17.1s-.2-17.3-6.4-23.4l-46.2-45 46.2-45c6.2-6.1 8.7-15 6.4-23.4s-8.9-14.9-17.3-17.1l-62.5-15.8 17.5-62c2.4-8.4 0-17.4-6.1-23.5s-15.1-8.5-23.5-6.1l-62 17.5L341.4 18.1c-2.1-8.4-8.7-15-17.1-17.3S307 1 301 7.3L256 53.5 211 7.3z" + } + }, + "free": [ + "solid" + ] + }, + "chair": { + "aliases": { + "unicodes": { + "composite": [ + "1fa91" + ], + "secondary": [ + "10f6c0" + ] + } + }, + "changes": [ + "5.4.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chair", + "furniture", + "seat", + "sit" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6c0", + "label": "Chair", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M248 48V256h48V58.7c23.9 13.8 40 39.7 40 69.3V256h48V128C384 57.3 326.7 0 256 0H192C121.3 0 64 57.3 64 128V256h48V128c0-29.6 16.1-55.5 40-69.3V256h48V48h48zM48 288c-12.1 0-23.2 6.8-28.6 17.7l-16 32c-5 9.9-4.4 21.7 1.4 31.1S20.9 384 32 384l0 96c0 17.7 14.3 32 32 32s32-14.3 32-32V384H352v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384c11.1 0 21.4-5.7 27.2-15.2s6.4-21.2 1.4-31.1l-16-32C423.2 294.8 412.1 288 400 288H48z" + } + }, + "free": [ + "solid" + ] + }, + "chalkboard": { + "aliases": { + "names": [ + "blackboard" + ], + "unicodes": { + "secondary": [ + "10f51b" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blackboard", + "learning", + "school", + "teaching", + "whiteboard", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f51b", + "label": "Chalkboard", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 32C60.7 32 32 60.7 32 96V384H96V96l384 0V384h64V96c0-35.3-28.7-64-64-64H96zM224 384v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H416V384c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "chalkboard-user": { + "aliases": { + "names": [ + "chalkboard-teacher" + ], + "unicodes": { + "secondary": [ + "10f51c" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blackboard", + "instructor", + "learning", + "professor", + "school", + "whiteboard", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f51c", + "label": "Chalkboard User", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M160 64c0-35.3 28.7-64 64-64H576c35.3 0 64 28.7 64 64V352c0 35.3-28.7 64-64 64H336.8c-11.8-25.5-29.9-47.5-52.4-64H384V320c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v32h64V64L224 64v49.1C205.2 102.2 183.3 96 160 96V64zm0 64a96 96 0 1 1 0 192 96 96 0 1 1 0-192zM133.3 352h53.3C260.3 352 320 411.7 320 485.3c0 14.7-11.9 26.7-26.7 26.7H26.7C11.9 512 0 500.1 0 485.3C0 411.7 59.7 352 133.3 352z" + } + }, + "free": [ + "solid" + ] + }, + "champagne-glasses": { + "aliases": { + "names": [ + "glass-cheers" + ], + "unicodes": { + "composite": [ + "1f942" + ], + "secondary": [ + "10f79f" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "celebrate", + "celebration", + "champagne", + "clink", + "clinking glasses", + "drink", + "glass", + "holiday", + "new year's eve", + "party", + "toast" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f79f", + "label": "Champagne Glasses", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670852333, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M155.6 17.3C163 3 179.9-3.6 195 1.9L320 47.5l125-45.6c15.1-5.5 32 1.1 39.4 15.4l78.8 152.9c28.8 55.8 10.3 122.3-38.5 156.6L556.1 413l41-15c16.6-6 35 2.5 41 19.1s-2.5 35-19.1 41l-71.1 25.9L476.8 510c-16.6 6.1-35-2.5-41-19.1s2.5-35 19.1-41l41-15-31.3-86.2c-59.4 5.2-116.2-34-130-95.2L320 188.8l-14.6 64.7c-13.8 61.3-70.6 100.4-130 95.2l-31.3 86.2 41 15c16.6 6 25.2 24.4 19.1 41s-24.4 25.2-41 19.1L92.2 484.1 21.1 458.2c-16.6-6.1-25.2-24.4-19.1-41s24.4-25.2 41-19.1l41 15 31.3-86.2C66.5 292.5 48.1 226 76.9 170.2L155.6 17.3zm44 54.4l-27.2 52.8L261.6 157l13.1-57.9L199.6 71.7zm240.9 0L365.4 99.1 378.5 157l89.2-32.5L440.5 71.7z" + } + }, + "free": [ + "solid" + ] + }, + "charging-station": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5e7" + ] + } + }, + "changes": [ + "5.2.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "ev", + "tesla", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5e7", + "label": "Charging Station", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C60.7 0 32 28.7 32 64V448c-17.7 0-32 14.3-32 32s14.3 32 32 32H320c17.7 0 32-14.3 32-32s-14.3-32-32-32V304h16c22.1 0 40 17.9 40 40v32c0 39.8 32.2 72 72 72s72-32.2 72-72V252.3c32.5-10.2 56-40.5 56-76.3V144c0-8.8-7.2-16-16-16H544V80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H480V80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H432c-8.8 0-16 7.2-16 16v32c0 35.8 23.5 66.1 56 76.3V376c0 13.3-10.7 24-24 24s-24-10.7-24-24V344c0-48.6-39.4-88-88-88H320V64c0-35.3-28.7-64-64-64H96zM216.9 82.7c6 4 8.5 11.5 6.3 18.3l-25 74.9H256c6.7 0 12.7 4.2 15 10.4s.5 13.3-4.6 17.7l-112 96c-5.5 4.7-13.4 5.1-19.3 1.1s-8.5-11.5-6.3-18.3l25-74.9H96c-6.7 0-12.7-4.2-15-10.4s-.5-13.3 4.6-17.7l112-96c5.5-4.7 13.4-5.1 19.3-1.1z" + } + }, + "free": [ + "solid" + ] + }, + "chart-area": { + "aliases": { + "names": [ + "area-chart" + ], + "unicodes": { + "secondary": [ + "10f1fe" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "area", + "chart", + "graph" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1fe", + "label": "Chart Area", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V400c0 44.2 35.8 80 80 80H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H80c-8.8 0-16-7.2-16-16V64zm96 288H448c17.7 0 32-14.3 32-32V251.8c0-7.6-2.7-15-7.7-20.8l-65.8-76.8c-12.1-14.2-33.7-15-46.9-1.8l-21 21c-10 10-26.4 9.2-35.4-1.6l-39.2-47c-12.6-15.1-35.7-15.4-48.7-.6L135.9 215c-5.1 5.8-7.9 13.3-7.9 21.1v84c0 17.7 14.3 32 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "chart-bar": { + "aliases": { + "names": [ + "bar-chart" + ], + "unicodes": { + "secondary": [ + "10f080" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "bar", + "chart", + "graph" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f080", + "label": "Chart Bar", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zm96 96c0-17.7 14.3-32 32-32l192 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32zm32 64H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + }, + "regular": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M24 32c13.3 0 24 10.7 24 24V408c0 13.3 10.7 24 24 24H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H72c-39.8 0-72-32.2-72-72V56C0 42.7 10.7 32 24 32zM128 136c0-13.3 10.7-24 24-24l208 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-208 0c-13.3 0-24-10.7-24-24zm24 72H296c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24zm0 96H424c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "chart-column": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bar", + "bar chart", + "chart", + "graph", + "track", + "trend" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e0e3", + "label": "Chart Column", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zM160 224c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V256c0-17.7 14.3-32 32-32zm128-64V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32zm64 32c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32zM480 96V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V96c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "chart-gantt": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "graph", + "track", + "trend" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e0e4", + "label": "Chart Gantt", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zm96 96c0-17.7 14.3-32 32-32l96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32zm96 64H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm160 96h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "chart-line": { + "aliases": { + "names": [ + "line-chart" + ], + "unicodes": { + "secondary": [ + "10f201" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "activity", + "analytics", + "chart", + "dashboard", + "gain", + "graph", + "increase", + "line" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f201", + "label": "Chart Line", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V400c0 44.2 35.8 80 80 80H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H80c-8.8 0-16-7.2-16-16V64zm406.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L320 210.7l-57.4-57.4c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L240 221.3l57.4 57.4c12.5 12.5 32.8 12.5 45.3 0l128-128z" + } + }, + "free": [ + "solid" + ] + }, + "chart-pie": { + "aliases": { + "names": [ + "pie-chart" + ], + "unicodes": { + "secondary": [ + "10f200" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "chart", + "diagram", + "graph", + "pie" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f200", + "label": "Chart Pie", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M302 240V16.6c0-9 7-16.6 16-16.6C441.7 0 542 100.3 542 224c0 9-7.6 16-16.6 16H302zM30 272C30 150.7 120.1 50.3 237 34.3c9.2-1.3 17 6.1 17 15.4V288L410.5 444.5c6.7 6.7 6.2 17.7-1.5 23.1C369.8 495.6 321.8 512 270 512C137.5 512 30 404.6 30 272zm526.4 16c9.3 0 16.6 7.8 15.4 17c-7.7 55.9-34.6 105.6-73.9 142.3c-6 5.6-15.4 5.2-21.2-.7L318 288H556.4z" + } + }, + "free": [ + "solid" + ] + }, + "chart-simple": { + "changes": [ + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analytics", + "bar", + "chart", + "column", + "graph", + "row", + "trend" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e473", + "label": "Chart Simple", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 80c0-26.5 21.5-48 48-48h32c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48V80zM0 272c0-26.5 21.5-48 48-48H80c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V272zM368 96h32c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48H368c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48z" + } + }, + "free": [ + "solid" + ] + }, + "check": { + "aliases": { + "unicodes": { + "composite": [ + "2713", + "2714" + ], + "secondary": [ + "10f00c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Check Mark", + "accept", + "agree", + "check", + "check mark", + "checkmark", + "confirm", + "correct", + "done", + "mark", + "notice", + "notification", + "notify", + "ok", + "select", + "success", + "tick", + "todo", + "yes", + "✓" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f00c", + "label": "Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321796, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z" + } + }, + "free": [ + "solid" + ] + }, + "check-double": { + "aliases": { + "unicodes": { + "secondary": [ + "10f560" + ] + } + }, + "changes": [ + "5.1.0", + "5.8.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "checkmark", + "confirm", + "correct", + "done", + "notice", + "notification", + "notify", + "ok", + "select", + "success", + "tick", + "todo" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f560", + "label": "Check Double", + "voted": true, + "svg": { + "solid": { + "last_modified": 1660321796, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M374.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 178.7l-57.4-57.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l80 80c12.5 12.5 32.8 12.5 45.3 0l160-160zm96 128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 402.7 86.6 297.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l256-256z" + } + }, + "free": [ + "solid" + ] + }, + "check-to-slot": { + "aliases": { + "names": [ + "vote-yea" + ], + "unicodes": { + "secondary": [ + "10f772" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "cast", + "election", + "politics", + "positive", + "voting", + "yes" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f772", + "label": "Check To Slot", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 80c0-26.5 21.5-48 48-48H432c26.5 0 48 21.5 48 48V384H96V80zm313 47c-9.4-9.4-24.6-9.4-33.9 0l-111 111-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L409 161c9.4-9.4 9.4-24.6 0-33.9zM0 336c0-26.5 21.5-48 48-48H64V416H512V288h16c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V336z" + } + }, + "free": [ + "solid" + ] + }, + "cheese": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ef" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cheddar", + "curd", + "gouda", + "melt", + "parmesan", + "sandwich", + "swiss", + "wedge" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7ef", + "label": "Cheese", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 240.2V256H0c0-20 10-38.7 26.6-49.8L274.9 40.7c8.6-5.7 18.6-8.7 28.9-8.7C418.8 32 512 125.2 512 240.2zm0 47.8V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V288H512z" + } + }, + "free": [ + "solid" + ] + }, + "chess": { + "aliases": { + "unicodes": { + "secondary": [ + "10f439" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "castle", + "checkmate", + "game", + "king", + "rook", + "strategy", + "tournament" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f439", + "label": "Chess", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M144 16c0-8.8-7.2-16-16-16s-16 7.2-16 16V32H96c-8.8 0-16 7.2-16 16s7.2 16 16 16h16V96H60.2C49.1 96 40 105.1 40 116.2c0 2.5 .5 4.9 1.3 7.3L73.8 208H72c-13.3 0-24 10.7-24 24s10.7 24 24 24h4L60 384H196L180 256h4c13.3 0 24-10.7 24-24s-10.7-24-24-24h-1.8l32.5-84.5c.9-2.3 1.3-4.8 1.3-7.3c0-11.2-9.1-20.2-20.2-20.2H144V64h16c8.8 0 16-7.2 16-16s-7.2-16-16-16H144V16zM48 416L4.8 473.6C1.7 477.8 0 482.8 0 488c0 13.3 10.7 24 24 24H232c13.3 0 24-10.7 24-24c0-5.2-1.7-10.2-4.8-14.4L208 416H48zm288 0l-43.2 57.6c-3.1 4.2-4.8 9.2-4.8 14.4c0 13.3 10.7 24 24 24H488c13.3 0 24-10.7 24-24c0-5.2-1.7-10.2-4.8-14.4L464 416H336zM304 208v51.9c0 7.8 2.8 15.3 8 21.1L339.2 312 337 384H462.5l-3.3-72 28.3-30.8c5.4-5.9 8.5-13.6 8.5-21.7V208c0-8.8-7.2-16-16-16H464c-8.8 0-16 7.2-16 16v16H424V208c0-8.8-7.2-16-16-16H392c-8.8 0-16 7.2-16 16v16H352V208c0-8.8-7.2-16-16-16H320c-8.8 0-16 7.2-16 16zm80 96c0-8.8 7.2-16 16-16s16 7.2 16 16v32H384V304z" + } + }, + "free": [ + "solid" + ] + }, + "chess-bishop": { + "aliases": { + "unicodes": { + "composite": [ + "265d" + ], + "secondary": [ + "10f43a" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess Bishop", + "board", + "checkmate", + "game", + "strategy" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f43a", + "label": "Chess Bishop", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M128 0C110.3 0 96 14.3 96 32c0 16.1 11.9 29.4 27.4 31.7C78.4 106.8 8 190 8 288c0 47.4 30.8 72.3 56 84.7V400H256V372.7c25.2-12.5 56-37.4 56-84.7c0-37.3-10.2-72.4-25.3-104.1l-99.4 99.4c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L270.8 154.6c-23.2-38.1-51.8-69.5-74.2-90.9C212.1 61.4 224 48.1 224 32c0-17.7-14.3-32-32-32H128zM48 432L6.6 473.4c-4.2 4.2-6.6 10-6.6 16C0 501.9 10.1 512 22.6 512H297.4c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16L272 432H48z" + }, + "regular": { + "last_modified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M104 0C90.7 0 80 10.7 80 24c0 11.2 7.6 20.6 18 23.2c-7.8 8-16.1 17-24.4 27C38.2 116.7 0 178.8 0 250.9c0 44.8 24.6 72.2 48 87.8V352H96V325c0-9-5-17.2-13-21.3c-18-9.3-35-24.7-35-52.7c0-55.5 29.8-106.8 62.4-145.9c16-19.2 32.1-34.8 44.2-45.5c1.9-1.7 3.7-3.2 5.3-4.6c1.7 1.4 3.4 3 5.3 4.6c12.1 10.7 28.2 26.3 44.2 45.5c5.3 6.3 10.5 13 15.5 20L159 191c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l57.8-57.8c12.8 25.9 21.2 54.3 21.2 83.8c0 28-17 43.4-35 52.7c-8 4.1-13 12.3-13 21.3v27h48V338.7c23.4-15.6 48-42.9 48-87.8c0-72.1-38.2-134.2-73.6-176.7c-8.3-9.9-16.6-19-24.4-27c10.3-2.7 18-12.1 18-23.2c0-13.3-10.7-24-24-24H160 104zM52.7 464l16.6-32H250.8l16.6 32H52.7zm207.9-80H59.5c-12 0-22.9 6.7-28.4 17.3L4.6 452.5c-3 5.8-4.6 12.2-4.6 18.7C0 493.8 18.2 512 40.8 512H279.2c22.5 0 40.8-18.2 40.8-40.8c0-6.5-1.6-12.9-4.6-18.7l-26.5-51.2c-5.5-10.6-16.5-17.3-28.4-17.3z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "chess-board": { + "aliases": { + "unicodes": { + "secondary": [ + "10f43c" + ] + } + }, + "changes": [ + "5.0.5", + "5.7.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "checkmate", + "game", + "strategy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f43c", + "label": "Chess Board", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321797, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 64v64h64V96h64v64h64V96h64v64H320v64h64v64H320v64h64v64H320V352H256v64H192V352H128v64H64V352h64V288H64V224h64V160H64V96h64zm64 128h64V160H192v64zm0 64V224H128v64h64zm64 0H192v64h64V288zm0 0h64V224H256v64z" + } + }, + "free": [ + "solid" + ] + }, + "chess-king": { + "aliases": { + "unicodes": { + "composite": [ + "265a" + ], + "secondary": [ + "10f43f" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess King", + "board", + "checkmate", + "game", + "strategy" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f43f", + "label": "Chess King", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0c17.7 0 32 14.3 32 32V48h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H256v48H408c22.1 0 40 17.9 40 40c0 5.3-1 10.5-3.1 15.4L368 400H80L3.1 215.4C1 210.5 0 205.3 0 200c0-22.1 17.9-40 40-40H192V112H176c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V32c0-17.7 14.3-32 32-32zM38.6 473.4L80 432H368l41.4 41.4c4.2 4.2 6.6 10 6.6 16c0 12.5-10.1 22.6-22.6 22.6H54.6C42.1 512 32 501.9 32 489.4c0-6 2.4-11.8 6.6-16z" + }, + "regular": { + "last_modified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M248 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V56H168c-13.3 0-24 10.7-24 24s10.7 24 24 24h32v40H59.6C26.7 144 0 170.7 0 203.6c0 8.2 1.7 16.3 4.9 23.8L59.1 352h52.3L49 208.2c-.6-1.5-1-3-1-4.6c0-6.4 5.2-11.6 11.6-11.6H224 388.4c6.4 0 11.6 5.2 11.6 11.6c0 1.6-.3 3.2-1 4.6L336.5 352h52.3l54.2-124.6c3.3-7.5 4.9-15.6 4.9-23.8c0-32.9-26.7-59.6-59.6-59.6H248V104h32c13.3 0 24-10.7 24-24s-10.7-24-24-24H248V24zM101.2 432H346.8l16.6 32H84.7l16.6-32zm283.7-30.7c-5.5-10.6-16.5-17.3-28.4-17.3H91.5c-12 0-22.9 6.7-28.4 17.3L36.6 452.5c-3 5.8-4.6 12.2-4.6 18.7C32 493.8 50.2 512 72.8 512H375.2c22.5 0 40.8-18.2 40.8-40.8c0-6.5-1.6-12.9-4.6-18.7l-26.5-51.2z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "chess-knight": { + "aliases": { + "unicodes": { + "composite": [ + "265e" + ], + "secondary": [ + "10f441" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess Knight", + "board", + "checkmate", + "game", + "horse", + "strategy" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f441", + "label": "Chess Knight", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M80 48L66.7 61.3C54.7 73.3 48 89.5 48 106.5V238.9c0 10.7 5.3 20.7 14.2 26.6l10.6 7c14.3 9.6 32.7 10.7 48.1 3l3.2-1.6c2.6-1.3 5-2.8 7.3-4.5l49.4-37c6.6-5 15.7-5 22.3 0c10.2 7.7 9.9 23.1-.7 30.3L74.4 350C57.9 361.3 48 380 48 400H368l28.9-159c2.1-11.3 3.1-22.8 3.1-34.3V192C400 86 314 0 208 0H67.8C56.9 0 48 8.9 48 19.8c0 7.5 4.2 14.3 10.9 17.7L80 48zm24 68a20 20 0 1 1 40 0 20 20 0 1 1 -40 0zM6.6 473.4c-4.2 4.2-6.6 10-6.6 16C0 501.9 10.1 512 22.6 512H393.4c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16L368 432H48L6.6 473.4z" + }, + "regular": { + "last_modified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M210.6 48H101.3l17.1 12.8c6 4.5 9.6 11.6 9.6 19.2s-3.6 14.7-9.6 19.2l-6.5 4.9c-10 7.5-16 19.3-16 31.9l-.3 91c0 10.2 4.9 19.9 13.2 25.8l1.9 1.3c9.9 7.1 23.3 7 33.2-.1l49.9-36.3c10.7-7.8 25.7-5.4 33.5 5.3s5.4 25.7-5.3 33.5l-49.9 36.3-53.8 39.1c-7.3 5.3-13 12.2-16.9 20.1H50.8c5.3-22.1 17.8-41.9 35.9-56.3c-1.3-.8-2.6-1.7-3.8-2.6L81 291.8c-21-15-33.4-39.2-33.3-65l.3-91c.1-19.8 6.7-38.7 18.6-53.9l-.4-.3C54.7 73 48 59.6 48 45.3C48 20.3 68.3 0 93.3 0H210.6C315.2 0 400 84.8 400 189.4c0 11.1-1 22.2-2.9 33.2L374.1 352H325.3l24.5-137.8c1.5-8.2 2.2-16.5 2.2-24.8C352 111.3 288.7 48 210.6 48zM69.2 432L52.7 464H363.3l-16.6-32H69.2zm315.7-30.7l26.5 51.2c3 5.8 4.6 12.2 4.6 18.7c0 22.5-18.2 40.8-40.8 40.8H40.8C18.2 512 0 493.8 0 471.2c0-6.5 1.6-12.9 4.6-18.7l26.5-51.2C36.5 390.7 47.5 384 59.5 384h297c12 0 22.9 6.7 28.4 17.3zM156 128a20 20 0 1 1 0 40 20 20 0 1 1 0-40z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "chess-pawn": { + "aliases": { + "unicodes": { + "composite": [ + "265f" + ], + "secondary": [ + "10f443" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "board", + "checkmate", + "chess", + "chess pawn", + "dupe", + "expendable", + "game", + "strategy" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f443", + "label": "Chess Pawn", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M199.4 224c29.2-18.4 48.6-50.9 48.6-88c0-57.4-46.6-104-104-104S40 78.6 40 136c0 37.1 19.4 69.6 48.5 88H80c-17.7 0-32 14.3-32 32c0 16.5 12.5 30 28.5 31.8L64 400H224L211.5 287.8c16-1.8 28.5-15.3 28.5-31.8c0-17.7-14.3-32-32-32h-8.6zM6.6 473.4c-4.2 4.2-6.6 10-6.6 16C0 501.9 10.1 512 22.6 512H265.4c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16L240 432H48L6.6 473.4z" + }, + "regular": { + "last_modified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M232 152A72 72 0 1 0 88 152a72 72 0 1 0 144 0zm24 120H243.4l10.7 80H205.7L195 272H160 125l-10.7 80H65.9l10.7-80H64c-13.3 0-24-10.7-24-24s10.7-24 24-24c-15.1-20.1-24-45-24-72C40 85.7 93.7 32 160 32s120 53.7 120 120c0 27-8.9 51.9-24 72c13.3 0 24 10.7 24 24s-10.7 24-24 24zM52.7 464H267.3l-16.6-32H69.2L52.7 464zm207.9-80c12 0 22.9 6.7 28.4 17.3l26.5 51.2c3 5.8 4.6 12.2 4.6 18.7c0 22.5-18.2 40.8-40.8 40.8H40.8C18.2 512 0 493.8 0 471.2c0-6.5 1.6-12.9 4.6-18.7l26.5-51.2C36.5 390.7 47.5 384 59.5 384h201z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "chess-queen": { + "aliases": { + "unicodes": { + "composite": [ + "265b" + ], + "secondary": [ + "10f445" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess Queen", + "board", + "checkmate", + "game", + "strategy" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f445", + "label": "Chess Queen", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M255 0a56 56 0 1 1 0 112A56 56 0 1 1 255 0zM133.1 143.8c3.3-13 15-23.8 30.2-23.8c12.3 0 22.6 7.2 27.7 17c12 23.2 36.2 39 64 39s52-15.8 64-39c5.1-9.8 15.4-17 27.7-17c15.3 0 27 10.8 30.2 23.8c7 27.8 32.2 48.3 62.1 48.3c10.8 0 21-2.7 29.8-7.4c8.4-4.4 18.9-4.5 27.6 .9c13 8 17.1 25 9.2 38L398.7 400H383 342.6 167.4 127 111.3L4.4 223.6c-7.9-13-3.8-30 9.2-38c8.7-5.3 19.2-5.3 27.6-.9c8.9 4.7 19 7.4 29.8 7.4c29.9 0 55.1-20.5 62.1-48.3zM255 224l0 0 0 0h0zM111 432H399l41.4 41.4c4.2 4.2 6.6 10 6.6 16c0 12.5-10.1 22.6-22.6 22.6H85.6C73.1 512 63 501.9 63 489.4c0-6 2.4-11.8 6.6-16L111 432z" + }, + "regular": { + "last_modified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-95.2-8c-18.1 0-31.3 12.8-35.6 26.9c-8 26.2-32.4 45.2-61.2 45.2c-10 0-19.4-2.3-27.7-6.3c-7.6-3.7-16.7-3.3-24 1.2C.7 162.1-3.1 177.1 3.7 188.9L97.6 352H153l-83-144.1c40.5-2.2 75.3-25.9 93.1-59.8c22 26.8 55.4 43.9 92.8 43.9s70.8-17.1 92.8-43.9c17.8 34 52.6 57.7 93.1 59.8L359 352h55.4l93.9-163.1c6.8-11.7 3-26.7-8.6-33.8c-7.3-4.5-16.4-4.9-24-1.2c-8.4 4-17.7 6.3-27.7 6.3c-28.8 0-53.2-19-61.2-45.2C382.5 100.8 369.3 88 351.2 88c-14.5 0-26.3 8.5-32.4 19.3c-12.4 22-35.9 36.7-62.8 36.7s-50.4-14.8-62.8-36.7C187.1 96.5 175.4 88 160.8 88zM133.2 432H378.8l16.6 32H116.7l16.6-32zm283.7-30.7c-5.5-10.6-16.5-17.3-28.4-17.3h-265c-12 0-22.9 6.7-28.4 17.3L68.6 452.5c-3 5.8-4.6 12.2-4.6 18.7c0 22.5 18.2 40.8 40.8 40.8H407.2c22.5 0 40.8-18.2 40.8-40.8c0-6.5-1.6-12.9-4.6-18.7l-26.5-51.2z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "chess-rook": { + "aliases": { + "unicodes": { + "composite": [ + "265c" + ], + "secondary": [ + "10f447" + ] + } + }, + "changes": [ + "5.0.5", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Chess Rook", + "board", + "castle", + "checkmate", + "game", + "strategy" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f447", + "label": "Chess Rook", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M16 192V48c0-8.8 7.2-16 16-16H96c8.8 0 16 7.2 16 16V88c0 4.4 3.6 8 8 8h32c4.4 0 8-3.6 8-8V48c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16V88c0 4.4 3.6 8 8 8h32c4.4 0 8-3.6 8-8V48c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16V192c0 10.1-4.7 19.6-12.8 25.6L336 256l16 144H64L80 256 28.8 217.6C20.7 211.6 16 202.1 16 192zm176 96h32c8.8 0 16-7.2 16-16V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 8.8 7.2 16 16 16zM6.6 473.4L48 432H368l41.4 41.4c4.2 4.2 6.6 10 6.6 16c0 12.5-10.1 22.6-22.6 22.6H22.6C10.1 512 0 501.9 0 489.4c0-6 2.4-11.8 6.6-16z" + }, + "regular": { + "last_modified": 1670851956, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 80V192c0 2.5 1.2 4.9 3.2 6.4l51.2 38.4c6.8 5.1 10.4 13.4 9.5 21.9L101.5 352H53.2l9.4-85L22.4 236.8C8.3 226.2 0 209.6 0 192V72C0 49.9 17.9 32 40 32H344c22.1 0 40 17.9 40 40V192c0 17.6-8.3 34.2-22.4 44.8L321.4 267l9.4 85H282.5l-10.4-93.3c-.9-8.4 2.7-16.8 9.5-21.9l51.2-38.4c2-1.5 3.2-3.9 3.2-6.4V80H272v24c0 13.3-10.7 24-24 24s-24-10.7-24-24V80H160v24c0 13.3-10.7 24-24 24s-24-10.7-24-24V80H48zm4.7 384H331.3l-16.6-32H69.2L52.7 464zm271.9-80c12 0 22.9 6.7 28.4 17.3l26.5 51.2c3 5.8 4.6 12.2 4.6 18.7c0 22.5-18.2 40.8-40.8 40.8H40.8C18.2 512 0 493.8 0 471.2c0-6.5 1.6-12.9 4.6-18.7l26.5-51.2C36.5 390.7 47.5 384 59.5 384h265zM176 288c-8.8 0-16-7.2-16-16V224c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 8.8-7.2 16-16 16H176z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "chevron-down": { + "aliases": { + "unicodes": { + "secondary": [ + "10f078" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "download", + "expand" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f078", + "label": "Chevron Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M201.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 338.7 54.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z" + } + }, + "free": [ + "solid" + ] + }, + "chevron-left": { + "aliases": { + "unicodes": { + "composite": [ + "2329" + ], + "secondary": [ + "10f053" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Left-Pointing Angle Bracket", + "arrow", + "back", + "bracket", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f053", + "label": "Chevron Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l192 192c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 246.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192z" + } + }, + "free": [ + "solid" + ] + }, + "chevron-right": { + "aliases": { + "unicodes": { + "composite": [ + "232a" + ], + "secondary": [ + "10f054" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right-Pointing Angle Bracket", + "arrow", + "bracket", + "forward", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f054", + "label": "Chevron Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z" + } + }, + "free": [ + "solid" + ] + }, + "chevron-up": { + "aliases": { + "unicodes": { + "secondary": [ + "10f077" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "collapse", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f077", + "label": "Chevron Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M201.4 105.4c12.5-12.5 32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L224 173.3 54.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l192-192z" + } + }, + "free": [ + "solid" + ] + }, + "child": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1ae" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.1.1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boy", + "girl", + "kid", + "toddler", + "young", + "youth" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1ae", + "label": "Child", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M96 64a64 64 0 1 1 128 0A64 64 0 1 1 96 64zm48 320v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V287.8L59.1 321c-9.4 15-29.2 19.4-44.1 10S-4.5 301.9 4.9 287l39.9-63.3C69.7 184 113.2 160 160 160s90.3 24 115.2 63.6L315.1 287c9.4 15 4.9 34.7-10 44.1s-34.7 4.9-44.1-10L240 287.8V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H144z" + } + }, + "free": [ + "solid" + ] + }, + "child-combatant": { + "aliases": { + "names": [ + "child-rifle" + ] + }, + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "combatant" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4e0", + "label": "Child Combatant", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M144 128A64 64 0 1 0 144 0a64 64 0 1 0 0 128zm-8 352V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V300.5L228.9 321c9.4 15 29.2 19.4 44.1 10s19.4-29.2 10-44.1l-51.7-82.1c-17.6-27.9-48.3-44.9-81.2-44.9H137.8c-33 0-63.7 16.9-81.2 44.9L4.9 287c-9.4 15-4.9 34.7 10 44.1s34.7 4.9 44.1-10L72 300.5V480c0 17.7 14.3 32 32 32s32-14.3 32-32zM416 0H400 384c-8.8 0-16 7.2-16 16s7.2 16 16 16V132.3c-9.6 5.5-16 15.9-16 27.7v32c-17.7 0-32 14.3-32 32V368c0 17.7 14.3 32 32 32h16v96c0 8.8 7.2 16 16 16h59.5c10.4 0 18-9.8 15.5-19.9L452 400h44c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H448V325.3l53.1-17.7c6.5-2.2 10.9-8.3 10.9-15.2V208c0-8.8-7.2-16-16-16H480c-8.8 0-16 7.2-16 16v56l-16 5.3V160c0-11.8-6.4-22.2-16-27.7V16c0-8.8-7.2-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "child-dress": { + "changes": [ + "6.1.1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boy", + "girl", + "kid", + "toddler", + "young", + "youth" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e59c", + "label": "Child Dress", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M224 64A64 64 0 1 0 96 64a64 64 0 1 0 128 0zM88 400v80c0 17.7 14.3 32 32 32s32-14.3 32-32V400h16v80c0 17.7 14.3 32 32 32s32-14.3 32-32V400h17.8c10.9 0 18.6-10.7 15.2-21.1l-31.1-93.4 28.6 37.8c10.7 14.1 30.8 16.8 44.8 6.2s16.8-30.7 6.2-44.8L254.6 207c-22.4-29.6-57.5-47-94.6-47s-72.2 17.4-94.6 47L6.5 284.7c-10.7 14.1-7.9 34.2 6.2 44.8s34.2 7.9 44.8-6.2l28.7-37.8L55 378.9C51.6 389.3 59.3 400 70.2 400H88z" + } + }, + "free": [ + "solid" + ] + }, + "child-reaching": { + "changes": [ + "6.1.1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boy", + "girl", + "kid", + "toddler", + "young", + "youth" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e59d", + "label": "Child Reaching", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M240 64A64 64 0 1 0 112 64a64 64 0 1 0 128 0zM136.9 169.3c-23.7-8.4-44.5-24.3-58.8-45.8L58.6 94.2C48.8 79.5 29 75.6 14.2 85.4S-4.4 115 5.4 129.8L24.9 159c18.1 27.1 42.8 48.4 71.1 62.4V480c0 17.7 14.3 32 32 32s32-14.3 32-32V384h32v96c0 17.7 14.3 32 32 32s32-14.3 32-32V221.6c29.1-14.2 54.4-36.2 72.7-64.2l18.2-27.9c9.6-14.8 5.4-34.6-9.4-44.3s-34.6-5.5-44.3 9.4L275 122.4c-21.8 33.4-58.9 53.6-98.8 53.6c-12.6 0-24.9-2-36.6-5.8c-.9-.3-1.8-.7-2.7-.9z" + } + }, + "free": [ + "solid" + ] + }, + "children": { + "changes": [ + "6.1.0", + "6.1.1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boy", + "child", + "girl", + "kid", + "kids", + "young", + "youth" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4e1", + "label": "Children", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M160 0a64 64 0 1 1 0 128A64 64 0 1 1 160 0zM88 480V400H70.2c-10.9 0-18.6-10.7-15.2-21.1l31.1-93.4L57.5 323.3c-10.7 14.1-30.8 16.8-44.8 6.2s-16.8-30.7-6.2-44.8L65.4 207c22.4-29.6 57.5-47 94.6-47s72.2 17.4 94.6 47l58.9 77.7c10.7 14.1 7.9 34.2-6.2 44.8s-34.2 7.9-44.8-6.2l-28.6-37.8L265 378.9c3.5 10.4-4.3 21.1-15.2 21.1H232v80c0 17.7-14.3 32-32 32s-32-14.3-32-32V400H152v80c0 17.7-14.3 32-32 32s-32-14.3-32-32zM480 0a64 64 0 1 1 0 128A64 64 0 1 1 480 0zm-8 384v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V300.5L395.1 321c-9.4 15-29.2 19.4-44.1 10s-19.4-29.2-10-44.1l51.7-82.1c17.6-27.9 48.3-44.9 81.2-44.9h12.3c33 0 63.7 16.9 81.2 44.9L619.1 287c9.4 15 4.9 34.7-10 44.1s-34.7 4.9-44.1-10L552 300.5V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H472z" + } + }, + "free": [ + "solid" + ] + }, + "chrome": { + "changes": [ + "4.4.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f268", + "label": "Chrome", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256C0 209.4 12.47 165.6 34.27 127.1L144.1 318.3C166 357.5 207.9 384 256 384C270.3 384 283.1 381.7 296.8 377.4L220.5 509.6C95.9 492.3 0 385.3 0 256zM365.1 321.6C377.4 302.4 384 279.1 384 256C384 217.8 367.2 183.5 340.7 160H493.4C505.4 189.6 512 222.1 512 256C512 397.4 397.4 511.1 256 512L365.1 321.6zM477.8 128H256C193.1 128 142.3 172.1 130.5 230.7L54.19 98.47C101 38.53 174 0 256 0C350.8 0 433.5 51.48 477.8 128V128zM168 256C168 207.4 207.4 168 256 168C304.6 168 344 207.4 344 256C344 304.6 304.6 344 256 344C207.4 344 168 304.6 168 256z" + } + }, + "free": [ + "brands" + ] + }, + "chromecast": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f838", + "label": "Chromecast", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M447.8,64H64c-23.6,0-42.7,19.1-42.7,42.7v63.9H64v-63.9h383.8v298.6H298.6V448H448c23.6,0,42.7-19.1,42.7-42.7V106.7 C490.7,83.1,471.4,64,447.8,64z M21.3,383.6L21.3,383.6l0,63.9h63.9C85.2,412.2,56.6,383.6,21.3,383.6L21.3,383.6z M21.3,298.6V341 c58.9,0,106.6,48.1,106.6,107h42.7C170.7,365.6,103.7,298.7,21.3,298.6z M213.4,448h42.7c-0.5-129.5-105.3-234.3-234.8-234.6l0,42.4 C127.3,255.6,213.3,342,213.4,448z" + } + }, + "free": [ + "brands" + ] + }, + "church": { + "aliases": { + "unicodes": { + "composite": [ + "26ea" + ], + "secondary": [ + "10f51d" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Christian", + "building", + "cathedral", + "chapel", + "church", + "community", + "cross", + "religion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f51d", + "label": "Church", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M344 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V48H264c-13.3 0-24 10.7-24 24s10.7 24 24 24h32v46.4L183.3 210c-14.5 8.7-23.3 24.3-23.3 41.2V512h96V416c0-35.3 28.7-64 64-64s64 28.7 64 64v96h96V251.2c0-16.9-8.8-32.5-23.3-41.2L344 142.4V96h32c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V24zM24.9 330.3C9.5 338.8 0 354.9 0 372.4V464c0 26.5 21.5 48 48 48h80V273.6L24.9 330.3zM592 512c26.5 0 48-21.5 48-48V372.4c0-17.5-9.5-33.6-24.9-42.1L512 273.6V512h80z" + } + }, + "free": [ + "solid" + ] + }, + "circle": { + "aliases": { + "unicodes": { + "composite": [ + "1f534", + "1f535", + "1f7e0", + "1f7e1", + "1f7e2", + "1f7e3", + "1f7e4", + "25cf", + "26aa", + "26ab", + "2b24", + "f10c", + "f1db" + ], + "secondary": [ + "10f111" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Circle", + "Black Large Circle", + "black circle", + "blue", + "blue circle", + "brown", + "brown circle", + "chart", + "circle", + "circle-thin", + "diameter", + "dot", + "ellipse", + "fill", + "geometric", + "green", + "green circle", + "notification", + "orange", + "orange circle", + "progress", + "purple", + "purple circle", + "red", + "red circle", + "round", + "white circle", + "yellow", + "yellow circle" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f111", + "label": "Circle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321802, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512z" + }, + "regular": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "circle-arrow-down": { + "aliases": { + "names": [ + "arrow-circle-down" + ], + "unicodes": { + "secondary": [ + "10f0ab" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ab", + "label": "Circle Arrow Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM127 281c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l71 71L232 136c0-13.3 10.7-24 24-24s24 10.7 24 24l0 182.1 71-71c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L273 393c-9.4 9.4-24.6 9.4-33.9 0L127 281z" + } + }, + "free": [ + "solid" + ] + }, + "circle-arrow-left": { + "aliases": { + "names": [ + "arrow-circle-left" + ], + "unicodes": { + "secondary": [ + "10f0a8" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0a8", + "label": "Circle Arrow Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM231 127c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-71 71L376 232c13.3 0 24 10.7 24 24s-10.7 24-24 24l-182.1 0 71 71c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L119 273c-9.4-9.4-9.4-24.6 0-33.9L231 127z" + } + }, + "free": [ + "solid" + ] + }, + "circle-arrow-right": { + "aliases": { + "names": [ + "arrow-circle-right" + ], + "unicodes": { + "secondary": [ + "10f0a9" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0a9", + "label": "Circle Arrow Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM281 385c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l71-71L136 280c-13.3 0-24-10.7-24-24s10.7-24 24-24l182.1 0-71-71c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L393 239c9.4 9.4 9.4 24.6 0 33.9L281 385z" + } + }, + "free": [ + "solid" + ] + }, + "circle-arrow-up": { + "aliases": { + "names": [ + "arrow-circle-up" + ], + "unicodes": { + "secondary": [ + "10f0aa" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0aa", + "label": "Circle Arrow Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM385 231c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-71-71V376c0 13.3-10.7 24-24 24s-24-10.7-24-24V193.9l-71 71c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L239 119c9.4-9.4 24.6-9.4 33.9 0L385 231z" + } + }, + "free": [ + "solid" + ] + }, + "circle-check": { + "aliases": { + "names": [ + "check-circle" + ], + "unicodes": { + "composite": [ + "f05d" + ], + "secondary": [ + "10f058" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "affected", + "agree", + "clear", + "confirm", + "correct", + "done", + "ok", + "select", + "success", + "tick", + "todo", + "yes" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f058", + "label": "Circle Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321799, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + }, + "regular": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M243.8 339.8C232.9 350.7 215.1 350.7 204.2 339.8L140.2 275.8C129.3 264.9 129.3 247.1 140.2 236.2C151.1 225.3 168.9 225.3 179.8 236.2L224 280.4L332.2 172.2C343.1 161.3 360.9 161.3 371.8 172.2C382.7 183.1 382.7 200.9 371.8 211.8L243.8 339.8zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "circle-chevron-down": { + "aliases": { + "names": [ + "chevron-circle-down" + ], + "unicodes": { + "secondary": [ + "10f13a" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "download", + "dropdown", + "menu", + "more" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f13a", + "label": "Circle Chevron Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM135 241c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l87 87 87-87c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L273 345c-9.4 9.4-24.6 9.4-33.9 0L135 241z" + } + }, + "free": [ + "solid" + ] + }, + "circle-chevron-left": { + "aliases": { + "names": [ + "chevron-circle-left" + ], + "unicodes": { + "secondary": [ + "10f137" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f137", + "label": "Circle Chevron Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM271 135c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-87 87 87 87c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L167 273c-9.4-9.4-9.4-24.6 0-33.9L271 135z" + } + }, + "free": [ + "solid" + ] + }, + "circle-chevron-right": { + "aliases": { + "names": [ + "chevron-circle-right" + ], + "unicodes": { + "secondary": [ + "10f138" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "forward", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f138", + "label": "Circle Chevron Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM241 377c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l87-87-87-87c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L345 239c9.4 9.4 9.4 24.6 0 33.9L241 377z" + } + }, + "free": [ + "solid" + ] + }, + "circle-chevron-up": { + "aliases": { + "names": [ + "chevron-circle-up" + ], + "unicodes": { + "secondary": [ + "10f139" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "collapse", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f139", + "label": "Circle Chevron Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM377 271c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-87-87-87 87c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L239 167c9.4-9.4 24.6-9.4 33.9 0L377 271z" + } + }, + "free": [ + "solid" + ] + }, + "circle-dollar-to-slot": { + "aliases": { + "names": [ + "donate" + ], + "unicodes": { + "secondary": [ + "10f4b9" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contribute", + "generosity", + "gift", + "give" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4b9", + "label": "Circle Dollar To Slot", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M326.7 403.7c-22.1 8-45.9 12.3-70.7 12.3s-48.7-4.4-70.7-12.3c-.3-.1-.5-.2-.8-.3c-30-11-56.8-28.7-78.6-51.4C70 314.6 48 263.9 48 208C48 93.1 141.1 0 256 0S464 93.1 464 208c0 55.9-22 106.6-57.9 144c-1 1-2 2.1-3 3.1c-21.4 21.4-47.4 38.1-76.3 48.6zM256 91.9c-11.1 0-20.1 9-20.1 20.1v6c-5.6 1.2-10.9 2.9-15.9 5.1c-15 6.8-27.9 19.4-31.1 37.7c-1.8 10.2-.8 20 3.4 29c4.2 8.8 10.7 15 17.3 19.5c11.6 7.9 26.9 12.5 38.6 16l2.2 .7c13.9 4.2 23.4 7.4 29.3 11.7c2.5 1.8 3.4 3.2 3.8 4c.3 .8 .9 2.6 .2 6.7c-.6 3.5-2.5 6.4-8 8.8c-6.1 2.6-16 3.9-28.8 1.9c-6-1-16.7-4.6-26.2-7.9l0 0 0 0 0 0c-2.2-.7-4.3-1.5-6.4-2.1c-10.5-3.5-21.8 2.2-25.3 12.7s2.2 21.8 12.7 25.3c1.2 .4 2.7 .9 4.4 1.5c7.9 2.7 20.3 6.9 29.8 9.1V304c0 11.1 9 20.1 20.1 20.1s20.1-9 20.1-20.1v-5.5c5.4-1 10.5-2.5 15.4-4.6c15.7-6.7 28.4-19.7 31.6-38.7c1.8-10.4 1-20.3-3-29.4c-3.9-9-10.2-15.6-16.9-20.5c-12.2-8.8-28.3-13.7-40.4-17.4l-.8-.2c-14.2-4.3-23.8-7.3-29.9-11.4c-2.6-1.8-3.4-3-3.6-3.5c-.2-.3-.7-1.6-.1-5c.3-1.9 1.9-5.2 8.2-8.1c6.4-2.9 16.4-4.5 28.6-2.6c4.3 .7 17.9 3.3 21.7 4.3c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-4.4-1.2-14.4-3.2-21-4.4V112c0-11.1-9-20.1-20.1-20.1zM48 352H64c19.5 25.9 44 47.7 72.2 64H64v32H256 448V416H375.8c28.2-16.3 52.8-38.1 72.2-64h16c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V400c0-26.5 21.5-48 48-48z" + } + }, + "free": [ + "solid" + ] + }, + "circle-dot": { + "aliases": { + "names": [ + "dot-circle" + ], + "unicodes": { + "composite": [ + "1f518" + ], + "secondary": [ + "10f192" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bullseye", + "button", + "geometric", + "notification", + "radio", + "radio button", + "target" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f192", + "label": "Circle Dot", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321800, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zm0-160c-53 0-96-43-96-96s43-96 96-96s96 43 96 96s-43 96-96 96z" + }, + "regular": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 256C160 202.1 202.1 160 256 160C309 160 352 202.1 352 256C352 309 309 352 256 352C202.1 352 160 309 160 256zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "circle-down": { + "aliases": { + "names": [ + "arrow-alt-circle-down" + ], + "unicodes": { + "composite": [ + "f01a" + ], + "secondary": [ + "10f358" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-down", + "download" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f358", + "label": "Circle Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM376.9 294.6L269.8 394.5c-3.8 3.5-8.7 5.5-13.8 5.5s-10.1-2-13.8-5.5L135.1 294.6c-4.5-4.2-7.1-10.1-7.1-16.3c0-12.3 10-22.3 22.3-22.3l57.7 0 0-96c0-17.7 14.3-32 32-32l32 0c17.7 0 32 14.3 32 32l0 96 57.7 0c12.3 0 22.3 10 22.3 22.3c0 6.2-2.6 12.1-7.1 16.3z" + }, + "regular": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 464a208 208 0 1 1 0-416 208 208 0 1 1 0 416zM256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM376.9 294.6c4.5-4.2 7.1-10.1 7.1-16.3c0-12.3-10-22.3-22.3-22.3H304V160c0-17.7-14.3-32-32-32l-32 0c-17.7 0-32 14.3-32 32v96H150.3C138 256 128 266 128 278.3c0 6.2 2.6 12.1 7.1 16.3l107.1 99.9c3.8 3.5 8.7 5.5 13.8 5.5s10.1-2 13.8-5.5l107.1-99.9z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "circle-exclamation": { + "aliases": { + "names": [ + "exclamation-circle" + ], + "unicodes": { + "secondary": [ + "10f06a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affect", + "alert", + "damage", + "danger", + "error", + "important", + "notice", + "notification", + "notify", + "problem", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f06a", + "label": "Circle Exclamation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + }, + "free": [ + "solid" + ] + }, + "circle-h": { + "aliases": { + "names": [ + "hospital-symbol" + ], + "unicodes": { + "composite": [ + "24bd" + ], + "secondary": [ + "10f47e" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Circled Latin Capital Letter H", + "clinic", + "covid-19", + "emergency", + "letter", + "map" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f47e", + "label": "Circle H", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM368 152V256 360c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H192l0 80c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-208c0-13.3 10.7-24 24-24s24 10.7 24 24v80H320V152c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + }, + "free": [ + "solid" + ] + }, + "circle-half-stroke": { + "aliases": { + "names": [ + "adjust" + ], + "unicodes": { + "composite": [ + "25d0" + ], + "secondary": [ + "10f042" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "5.11.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Circle with Left Half Black", + "adjust", + "chart", + "contrast", + "dark", + "fill", + "light", + "pie", + "progress", + "saturation" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f042", + "label": "Circle Half Stroke", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321800, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 256c0-106-86-192-192-192V448c106 0 192-86 192-192zm64 0c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0S512 114.6 512 256z" + } + }, + "free": [ + "solid" + ] + }, + "circle-info": { + "aliases": { + "names": [ + "info-circle" + ], + "unicodes": { + "secondary": [ + "10f05a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "details", + "help", + "information", + "more", + "support" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f05a", + "label": "Circle Info", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "circle-left": { + "aliases": { + "names": [ + "arrow-alt-circle-left" + ], + "unicodes": { + "composite": [ + "f190" + ], + "secondary": [ + "10f359" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-left", + "back", + "previous" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f359", + "label": "Circle Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM217.4 376.9L117.5 269.8c-3.5-3.8-5.5-8.7-5.5-13.8s2-10.1 5.5-13.8l99.9-107.1c4.2-4.5 10.1-7.1 16.3-7.1c12.3 0 22.3 10 22.3 22.3l0 57.7 96 0c17.7 0 32 14.3 32 32l0 32c0 17.7-14.3 32-32 32l-96 0 0 57.7c0 12.3-10 22.3-22.3 22.3c-6.2 0-12.1-2.6-16.3-7.1z" + }, + "regular": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M48 256a208 208 0 1 1 416 0A208 208 0 1 1 48 256zm464 0A256 256 0 1 0 0 256a256 256 0 1 0 512 0zM217.4 376.9c4.2 4.5 10.1 7.1 16.3 7.1c12.3 0 22.3-10 22.3-22.3V304h96c17.7 0 32-14.3 32-32V240c0-17.7-14.3-32-32-32H256V150.3c0-12.3-10-22.3-22.3-22.3c-6.2 0-12.1 2.6-16.3 7.1L117.5 242.2c-3.5 3.8-5.5 8.7-5.5 13.8s2 10.1 5.5 13.8l99.9 107.1z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "circle-minus": { + "aliases": { + "names": [ + "minus-circle" + ], + "unicodes": { + "secondary": [ + "10f056" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "hide", + "negative", + "remove", + "shape", + "trash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f056", + "label": "Circle Minus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321800, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM184 232H328c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "circle-nodes": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cluster", + "connect", + "network" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4e2", + "label": "Circle Nodes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M418.4 157.9c35.3-8.3 61.6-40 61.6-77.9c0-44.2-35.8-80-80-80c-43.4 0-78.7 34.5-80 77.5L136.2 151.1C121.7 136.8 101.9 128 80 128c-44.2 0-80 35.8-80 80s35.8 80 80 80c12.2 0 23.8-2.7 34.1-7.6L259.7 407.8c-2.4 7.6-3.7 15.8-3.7 24.2c0 44.2 35.8 80 80 80s80-35.8 80-80c0-27.7-14-52.1-35.4-66.4l37.8-207.7zM156.3 232.2c2.2-6.9 3.5-14.2 3.7-21.7l183.8-73.5c3.6 3.5 7.4 6.7 11.6 9.5L317.6 354.1c-5.5 1.3-10.8 3.1-15.8 5.5L156.3 232.2z" + } + }, + "free": [ + "solid" + ] + }, + "circle-notch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1ce" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "circle-o-notch", + "diameter", + "dot", + "ellipse", + "round", + "spinner" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1ce", + "label": "Circle Notch", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321801, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M222.7 32.1c5 16.9-4.6 34.8-21.5 39.8C121.8 95.6 64 169.1 64 256c0 106 86 192 192 192s192-86 192-192c0-86.9-57.8-160.4-137.1-184.1c-16.9-5-26.6-22.9-21.5-39.8s22.9-26.6 39.8-21.5C434.9 42.1 512 140 512 256c0 141.4-114.6 256-256 256S0 397.4 0 256C0 140 77.1 42.1 182.9 10.6c16.9-5 34.8 4.6 39.8 21.5z" + } + }, + "free": [ + "solid" + ] + }, + "circle-pause": { + "aliases": { + "names": [ + "pause-circle" + ], + "unicodes": { + "composite": [ + "f28c" + ], + "secondary": [ + "10f28b" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hold", + "wait" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f28b", + "label": "Circle Pause", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM224 192V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32s32 14.3 32 32zm128 0V320c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32s32 14.3 32 32z" + }, + "regular": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm224-72V328c0 13.3-10.7 24-24 24s-24-10.7-24-24V184c0-13.3 10.7-24 24-24s24 10.7 24 24zm112 0V328c0 13.3-10.7 24-24 24s-24-10.7-24-24V184c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "circle-play": { + "aliases": { + "names": [ + "play-circle" + ], + "unicodes": { + "composite": [ + "f01d" + ], + "secondary": [ + "10f144" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "music", + "playing", + "sound", + "start", + "video" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f144", + "label": "Circle Play", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM188.3 147.1c-7.6 4.2-12.3 12.3-12.3 20.9V344c0 8.7 4.7 16.7 12.3 20.9s16.8 4.1 24.3-.5l144-88c7.1-4.4 11.5-12.1 11.5-20.5s-4.4-16.1-11.5-20.5l-144-88c-7.4-4.5-16.7-4.7-24.3-.5z" + }, + "regular": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM188.3 147.1c7.6-4.2 16.8-4.1 24.3 .5l144 88c7.1 4.4 11.5 12.1 11.5 20.5s-4.4 16.1-11.5 20.5l-144 88c-7.4 4.5-16.7 4.7-24.3 .5s-12.3-12.2-12.3-20.9V168c0-8.7 4.7-16.7 12.3-20.9z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "circle-plus": { + "aliases": { + "names": [ + "plus-circle" + ], + "unicodes": { + "secondary": [ + "10f055" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "expand", + "new", + "positive", + "shape" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f055", + "label": "Circle Plus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321801, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM232 344V280H168c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V168c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H280v64c0 13.3-10.7 24-24 24s-24-10.7-24-24z" + } + }, + "free": [ + "solid" + ] + }, + "circle-question": { + "aliases": { + "names": [ + "question-circle" + ], + "unicodes": { + "composite": [ + "f29c" + ], + "secondary": [ + "10f059" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "help", + "information", + "support", + "unknown" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f059", + "label": "Circle Question", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM169.8 165.3c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V250.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H222.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + }, + "regular": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm169.8-90.7c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L280 264.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V250.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H222.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "circle-radiation": { + "aliases": { + "names": [ + "radiation-alt" + ], + "unicodes": { + "composite": [ + "2622" + ], + "secondary": [ + "10f7ba" + ] + } + }, + "changes": [ + "5.6.0", + "5.8.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "danger", + "dangerous", + "deadly", + "hazard", + "nuclear", + "radioactive", + "sign", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7ba", + "label": "Circle Radiation", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 64a192 192 0 1 1 0 384 192 192 0 1 1 0-384zm0 448A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM200 256c0-20.7 11.3-38.8 28-48.5l-36-62.3c-8.8-15.3-28.7-20.8-42-9c-25.6 22.6-43.9 53.3-50.9 88.1C95.7 241.5 110.3 256 128 256l72 0zm28 48.5l-36 62.4c-8.8 15.3-3.6 35.2 13.1 40.8c16 5.4 33.1 8.3 50.9 8.3s34.9-2.9 50.9-8.3c16.7-5.6 21.9-25.5 13.1-40.8l-36-62.4c-8.2 4.8-17.8 7.5-28 7.5s-19.8-2.7-28-7.5zM312 256l72 0c17.7 0 32.3-14.5 28.8-31.8c-7-34.8-25.3-65.5-50.9-88.1c-13.2-11.7-33.1-6.3-42 9l-36 62.3c16.7 9.7 28 27.8 28 48.5zm-56 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "circle-right": { + "aliases": { + "names": [ + "arrow-alt-circle-right" + ], + "unicodes": { + "composite": [ + "f18e" + ], + "secondary": [ + "10f35a" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-right", + "forward", + "next" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f35a", + "label": "Circle Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM294.6 135.1l99.9 107.1c3.5 3.8 5.5 8.7 5.5 13.8s-2 10.1-5.5 13.8L294.6 376.9c-4.2 4.5-10.1 7.1-16.3 7.1C266 384 256 374 256 361.7l0-57.7-96 0c-17.7 0-32-14.3-32-32l0-32c0-17.7 14.3-32 32-32l96 0 0-57.7c0-12.3 10-22.3 22.3-22.3c6.2 0 12.1 2.6 16.3 7.1z" + }, + "regular": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM294.6 135.1c-4.2-4.5-10.1-7.1-16.3-7.1C266 128 256 138 256 150.3V208H160c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32h96v57.7c0 12.3 10 22.3 22.3 22.3c6.2 0 12.1-2.6 16.3-7.1l99.9-107.1c3.5-3.8 5.5-8.7 5.5-13.8s-2-10.1-5.5-13.8L294.6 135.1z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "circle-stop": { + "aliases": { + "names": [ + "stop-circle" + ], + "unicodes": { + "composite": [ + "f28e" + ], + "secondary": [ + "10f28d" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "box", + "circle", + "square" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f28d", + "label": "Circle Stop", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM192 160H320c17.7 0 32 14.3 32 32V320c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32z" + }, + "regular": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm192-96H320c17.7 0 32 14.3 32 32V320c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "circle-up": { + "aliases": { + "names": [ + "arrow-alt-circle-up" + ], + "unicodes": { + "composite": [ + "f01b" + ], + "secondary": [ + "10f35b" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow-circle-o-up" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f35b", + "label": "Circle Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM135.1 217.4l107.1-99.9c3.8-3.5 8.7-5.5 13.8-5.5s10.1 2 13.8 5.5l107.1 99.9c4.5 4.2 7.1 10.1 7.1 16.3c0 12.3-10 22.3-22.3 22.3H304v96c0 17.7-14.3 32-32 32H240c-17.7 0-32-14.3-32-32V256H150.3C138 256 128 246 128 233.7c0-6.2 2.6-12.1 7.1-16.3z" + }, + "regular": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM135.1 217.4c-4.5 4.2-7.1 10.1-7.1 16.3c0 12.3 10 22.3 22.3 22.3H208v96c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V256h57.7c12.3 0 22.3-10 22.3-22.3c0-6.2-2.6-12.1-7.1-16.3L269.8 117.5c-3.8-3.5-8.7-5.5-13.8-5.5s-10.1 2-13.8 5.5L135.1 217.4z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "circle-user": { + "aliases": { + "names": [ + "user-circle" + ], + "unicodes": { + "composite": [ + "f2be" + ], + "secondary": [ + "10f2bd" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "5.0.11", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2bd", + "label": "Circle User", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M399 384.2C376.9 345.8 335.4 320 288 320H224c-47.4 0-88.9 25.8-111 64.2c35.2 39.2 86.2 63.8 143 63.8s107.8-24.7 143-63.8zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 16a72 72 0 1 0 0-144 72 72 0 1 0 0 144z" + }, + "regular": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M406.5 399.6C387.4 352.9 341.5 320 288 320H224c-53.5 0-99.4 32.9-118.5 79.6C69.9 362.2 48 311.7 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208c0 55.7-21.9 106.2-57.5 143.6zm-40.1 32.7C334.4 452.4 296.6 464 256 464s-78.4-11.6-110.5-31.7c7.3-36.7 39.7-64.3 78.5-64.3h64c38.8 0 71.2 27.6 78.5 64.3zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-272a40 40 0 1 1 0-80 40 40 0 1 1 0 80zm-88-40a88 88 0 1 0 176 0 88 88 0 1 0 -176 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "circle-xmark": { + "aliases": { + "names": [ + "times-circle", + "xmark-circle" + ], + "unicodes": { + "composite": [ + "f05c" + ], + "secondary": [ + "10f057" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "close", + "cross", + "destroy", + "exit", + "incorrect", + "notice", + "notification", + "notify", + "problem", + "wrong", + "x" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f057", + "label": "Circle Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321802, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zM175 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + }, + "regular": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M175 175C184.4 165.7 199.6 165.7 208.1 175L255.1 222.1L303 175C312.4 165.7 327.6 165.7 336.1 175C346.3 184.4 346.3 199.6 336.1 208.1L289.9 255.1L336.1 303C346.3 312.4 346.3 327.6 336.1 336.1C327.6 346.3 312.4 346.3 303 336.1L255.1 289.9L208.1 336.1C199.6 346.3 184.4 346.3 175 336.1C165.7 327.6 165.7 312.4 175 303L222.1 255.1L175 208.1C165.7 199.6 165.7 184.4 175 175V175zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "city": { + "aliases": { + "unicodes": { + "composite": [ + "1f3d9" + ], + "secondary": [ + "10f64f" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buildings", + "busy", + "city", + "cityscape", + "skyscrapers", + "urban", + "windows" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f64f", + "label": "City", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 48c0-26.5-21.5-48-48-48H336c-26.5 0-48 21.5-48 48V96H224V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V96H112V24c0-13.3-10.7-24-24-24S64 10.7 64 24V96H48C21.5 96 0 117.5 0 144v96V464c0 26.5 21.5 48 48 48H304h32 96H592c26.5 0 48-21.5 48-48V240c0-26.5-21.5-48-48-48H480V48zm96 320v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16zM240 416H208c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16zM128 400c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32zM560 256c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32zM256 176v32c0 8.8-7.2 16-16 16H208c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16zM112 160c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h32zM256 304c0 8.8-7.2 16-16 16H208c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32zM112 320H80c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16zm304-48v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16zM400 64c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V80c0-8.8 7.2-16 16-16h32zm16 112v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "clapperboard": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camera", + "clapper", + "clapper board", + "director", + "film", + "movie", + "record" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e131", + "label": "Clapperboard", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 32H361.9l-1 1-127 127h92.1l1-1L453.8 32.3c-1.9-.2-3.8-.3-5.8-.3zm64 128V96c0-15.1-5.3-29.1-14-40l-104 104H512zM294.1 32H201.9l-1 1L73.9 160h92.1l1-1 127-127zM64 32C28.7 32 0 60.7 0 96v64H6.1l1-1 127-127H64zM512 192H0V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192z" + } + }, + "free": [ + "solid" + ] + }, + "clipboard": { + "aliases": { + "unicodes": { + "composite": [ + "1f4cb" + ], + "secondary": [ + "10f328" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clipboar", + "clipboard", + "copy", + "notes", + "paste", + "record" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f328", + "label": "Clipboard", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM112 192H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M280 64h40c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128C0 92.7 28.7 64 64 64h40 9.6C121 27.5 153.3 0 192 0s71 27.5 78.4 64H280zM64 112c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16V128c0-8.8-7.2-16-16-16H304v24c0 13.3-10.7 24-24 24H192 104c-13.3 0-24-10.7-24-24V112H64zm128-8a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "clipboard-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f46c" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "confirm", + "done", + "ok", + "select", + "success", + "tick", + "todo", + "yes" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f46c", + "label": "Clipboard Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM305 273L177 401c-9.4 9.4-24.6 9.4-33.9 0L79 337c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L271 239c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + } + }, + "free": [ + "solid" + ] + }, + "clipboard-list": { + "aliases": { + "unicodes": { + "secondary": [ + "10f46d" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "intinerary", + "ol", + "schedule", + "tick", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f46d", + "label": "Clipboard List", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM72 272a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm104-16H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16zM72 368a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm88 0c0-8.8 7.2-16 16-16H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "clipboard-question": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "assistance", + "interview", + "query", + "question" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4e3", + "label": "Clipboard Question", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM105.8 229.3c7.9-22.3 29.1-37.3 52.8-37.3h58.3c34.9 0 63.1 28.3 63.1 63.1c0 22.6-12.1 43.5-31.7 54.8L216 328.4c-.2 13-10.9 23.6-24 23.6c-13.3 0-24-10.7-24-24V314.5c0-8.6 4.6-16.5 12.1-20.8l44.3-25.4c4.7-2.7 7.6-7.7 7.6-13.1c0-8.4-6.8-15.1-15.1-15.1H158.6c-3.4 0-6.4 2.1-7.5 5.3l-.4 1.2c-4.4 12.5-18.2 19-30.6 14.6s-19-18.2-14.6-30.6l.4-1.2zM160 416a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + }, + "free": [ + "solid" + ] + }, + "clipboard-user": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7f3" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attendance", + "record", + "roster", + "staff" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7f3", + "label": "Clipboard User", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-41.8 0-77.4 26.7-90.5 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H282.5C269.4 26.7 233.8 0 192 0zm0 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM128 256a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM80 432c0-44.2 35.8-80 80-80h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "clock": { + "aliases": { + "names": [ + "clock-four" + ], + "unicodes": { + "composite": [ + "1f553" + ], + "secondary": [ + "10f017" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.12.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "00", + "4", + "4:00", + "clock", + "date", + "four", + "four o’clock", + "hour", + "late", + "minute", + "o'clock", + "o’clock", + "schedule", + "ticking", + "time", + "timer", + "timestamp", + "watch" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f017", + "label": "Clock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0a256 256 0 1 1 0 512A256 256 0 1 1 256 0zM232 120V256c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2V120c0-13.3-10.7-24-24-24s-24 10.7-24 24z" + }, + "regular": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM232 120V256c0 8 4 15.5 10.7 20l96 64c11 7.4 25.9 4.4 33.3-6.7s4.4-25.9-6.7-33.3L280 243.2V120c0-13.3-10.7-24-24-24s-24 10.7-24 24z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "clock-rotate-left": { + "aliases": { + "names": [ + "history" + ], + "unicodes": { + "secondary": [ + "10f1da" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rewind", + "clock", + "reverse", + "time", + "time machine", + "time travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1da", + "label": "Clock Rotate Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M75 75L41 41C25.9 25.9 0 36.6 0 57.9V168c0 13.3 10.7 24 24 24H134.1c21.4 0 32.1-25.9 17-41l-30.8-30.8C155 85.5 203 64 256 64c106 0 192 86 192 192s-86 192-192 192c-40.8 0-78.6-12.7-109.7-34.4c-14.5-10.1-34.4-6.6-44.6 7.9s-6.6 34.4 7.9 44.6C151.2 495 201.7 512 256 512c141.4 0 256-114.6 256-256S397.4 0 256 0C185.3 0 121.3 28.7 75 75zm181 53c-13.3 0-24 10.7-24 24V256c0 6.4 2.5 12.5 7 17l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-65-65V152c0-13.3-10.7-24-24-24z" + } + }, + "free": [ + "solid" + ] + }, + "clone": { + "aliases": { + "unicodes": { + "secondary": [ + "10f24d" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "copy", + "duplicate", + "paste" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f24d", + "label": "Clone", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V384H224c-53 0-96-43-96-96V160H64c-35.3 0-64 28.7-64 64V448zm224-96H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H224c-35.3 0-64 28.7-64 64V288c0 35.3 28.7 64 64 64z" + }, + "regular": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 464H288c8.8 0 16-7.2 16-16V384h48v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h64v48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16zM224 304H448c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H224c-8.8 0-16 7.2-16 16V288c0 8.8 7.2 16 16 16zm-64-16V64c0-35.3 28.7-64 64-64H448c35.3 0 64 28.7 64 64V288c0 35.3-28.7 64-64 64H224c-35.3 0-64-28.7-64-64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "closed-captioning": { + "aliases": { + "unicodes": { + "secondary": [ + "10f20a" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cc", + "deaf", + "hearing", + "subtitle", + "subtitling", + "text", + "video" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f20a", + "label": "Closed Captioning", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H512c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM200 208c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48s21.5-48 48-48zm144 48c0-26.5 21.5-48 48-48c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48z" + }, + "regular": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M512 80c8.8 0 16 7.2 16 16V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16H512zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM200 208c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48s21.5-48 48-48zm144 48c0-26.5 21.5-48 48-48c14.2 0 27 6.1 35.8 16c8.8 9.9 24 10.7 33.9 1.9s10.7-24 1.9-33.9c-17.5-19.6-43.1-32-71.5-32c-53 0-96 43-96 96s43 96 96 96c28.4 0 54-12.4 71.5-32c8.8-9.9 8-25-1.9-33.9s-25-8-33.9 1.9c-8.8 9.9-21.6 16-35.8 16c-26.5 0-48-21.5-48-48z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "cloud": { + "aliases": { + "unicodes": { + "composite": [ + "2601" + ], + "secondary": [ + "10f0c2" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.11", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atmosphere", + "cloud", + "fog", + "overcast", + "save", + "upload", + "weather" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c2", + "label": "Cloud", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 336c0 79.5 64.5 144 144 144H512c70.7 0 128-57.3 128-128c0-61.9-44-113.6-102.4-125.4c4.1-10.7 6.4-22.4 6.4-34.6c0-53-43-96-96-96c-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32C167.6 32 96 103.6 96 192c0 2.7 .1 5.4 .2 8.1C40.2 219.8 0 273.2 0 336z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-arrow-down": { + "aliases": { + "names": [ + "cloud-download", + "cloud-download-alt" + ], + "unicodes": { + "composite": [ + "f381" + ], + "primary": [ + "f381" + ], + "secondary": [ + "10f0ed", + "10f381" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.11", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "export", + "save" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ed", + "label": "Cloud Arrow Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321804, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 480C64.5 480 0 415.5 0 336c0-62.8 40.2-116.2 96.2-135.9c-.1-2.7-.2-5.4-.2-8.1c0-88.4 71.6-160 160-160c59.3 0 111 32.2 138.7 80.2C409.9 102 428.3 96 448 96c53 0 96 43 96 96c0 12.2-2.3 23.8-6.4 34.6C596 238.4 640 290.1 640 352c0 70.7-57.3 128-128 128H144zm79-167l80 80c9.4 9.4 24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-39 39V184c0-13.3-10.7-24-24-24s-24 10.7-24 24V318.1l-39-39c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-arrow-up": { + "aliases": { + "names": [ + "cloud-upload", + "cloud-upload-alt" + ], + "unicodes": { + "composite": [ + "f382" + ], + "primary": [ + "f382" + ], + "secondary": [ + "10f0ee", + "10f382" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.11", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "import", + "save", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ee", + "label": "Cloud Arrow Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321804, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 480C64.5 480 0 415.5 0 336c0-62.8 40.2-116.2 96.2-135.9c-.1-2.7-.2-5.4-.2-8.1c0-88.4 71.6-160 160-160c59.3 0 111 32.2 138.7 80.2C409.9 102 428.3 96 448 96c53 0 96 43 96 96c0 12.2-2.3 23.8-6.4 34.6C596 238.4 640 290.1 640 352c0 70.7-57.3 128-128 128H144zm79-217c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39V392c0 13.3 10.7 24 24 24s24-10.7 24-24V257.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-9.4-9.4-24.6-9.4-33.9 0l-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-bolt": { + "aliases": { + "names": [ + "thunderstorm" + ], + "unicodes": { + "composite": [ + "1f329" + ], + "secondary": [ + "10f76c" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bolt", + "cloud", + "cloud with lightning", + "lightning", + "precipitation", + "rain", + "storm", + "weather" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f76c", + "label": "Cloud Bolt", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224c0 53 43 96 96 96h47.2L290 202.5c17.6-14.1 42.6-14 60.2 .2s22.8 38.6 12.8 58.8L333.7 320H352h64c53 0 96-43 96-96s-43-96-96-96c-.5 0-1.1 0-1.6 0c1.1-5.2 1.6-10.5 1.6-16c0-44.2-35.8-80-80-80c-24.3 0-46.1 10.9-60.8 28C256.5 24.3 219.1 0 176 0C114.1 0 64 50.1 64 112c0 7.1 .7 14.1 1.9 20.8C27.6 145.4 0 181.5 0 224zm330.1 3.6c-5.8-4.7-14.2-4.7-20.1-.1l-160 128c-5.3 4.2-7.4 11.4-5.1 17.8s8.3 10.7 15.1 10.7h70.1L177.7 488.8c-3.4 6.7-1.6 14.9 4.3 19.6s14.2 4.7 20.1 .1l160-128c5.3-4.2 7.4-11.4 5.1-17.8s-8.3-10.7-15.1-10.7H281.9l52.4-104.8c3.4-6.7 1.6-14.9-4.2-19.6z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-meatball": { + "aliases": { + "unicodes": { + "secondary": [ + "10f73b" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "FLDSMDFR", + "food", + "spaghetti", + "storm" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f73b", + "label": "Cloud Meatball", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224c0 53 43 96 96 96h44.7c9.5-23.5 32.5-40 59.3-40c2 0 3.9 .1 5.8 .3C217.6 265.5 235.7 256 256 256s38.4 9.5 50.2 24.3c1.9-.2 3.9-.3 5.8-.3c26.9 0 49.9 16.5 59.3 40H416c53 0 96-43 96-96s-43-96-96-96c-.5 0-1.1 0-1.6 0c1.1-5.2 1.6-10.5 1.6-16c0-44.2-35.8-80-80-80c-24.3 0-46.1 10.9-60.8 28C256.5 24.3 219.1 0 176 0C114.1 0 64 50.1 64 112c0 7.1 .7 14.1 1.9 20.8C27.6 145.4 0 181.5 0 224zm288 96c0-17.7-14.3-32-32-32s-32 14.3-32 32c0 1 .1 2.1 .1 3.1c-.7-.8-1.4-1.6-2.1-2.3c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3c.7 .7 1.5 1.4 2.3 2.1c-1-.1-2.1-.1-3.1-.1c-17.7 0-32 14.3-32 32s14.3 32 32 32c1 0 2.1-.1 3.1-.1c-.8 .7-1.6 1.3-2.3 2.1c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0c.7-.7 1.4-1.5 2.1-2.3c-.1 1-.1 2.1-.1 3.1c0 17.7 14.3 32 32 32s32-14.3 32-32c0-1-.1-2.1-.1-3.1c.7 .8 1.3 1.6 2.1 2.3c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3c-.7-.7-1.5-1.4-2.3-2.1c1 .1 2.1 .1 3.1 .1c17.7 0 32-14.3 32-32s-14.3-32-32-32c-1 0-2.1 .1-3.1 .1c.8-.7 1.6-1.3 2.3-2.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-.7 .7-1.4 1.5-2.1 2.3c.1-1 .1-2.1 .1-3.1zM48 448a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm416 0a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-moon": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6c3" + ] + } + }, + "changes": [ + "5.4.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crescent", + "evening", + "lunar", + "night", + "partly cloudy", + "sky" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6c3", + "label": "Cloud Moon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M495.8 0c5.5 0 10.9 .2 16.3 .7c7 .6 12.8 5.7 14.3 12.5s-1.6 13.9-7.7 17.3c-44.4 25.2-74.4 73-74.4 127.8c0 81 65.5 146.6 146.2 146.6c8.6 0 17-.7 25.1-2.1c6.9-1.2 13.8 2.2 17 8.5s1.9 13.8-3.1 18.7c-34.5 33.6-81.7 54.4-133.6 54.4c-9.3 0-18.4-.7-27.4-1.9c-11.2-22.6-29.8-40.9-52.6-51.7c-2.7-58.5-50.3-105.3-109.2-106.7c-1.7-10.4-2.6-21-2.6-31.8C304 86.1 389.8 0 495.8 0zM447.9 431.9c0 44.2-35.8 80-80 80H96c-53 0-96-43-96-96c0-47.6 34.6-87 80-94.6l0-1.3c0-53 43-96 96-96c34.9 0 65.4 18.6 82.2 46.4c13-9.1 28.8-14.4 45.8-14.4c44.2 0 80 35.8 80 80c0 5.9-.6 11.7-1.9 17.2c37.4 6.7 65.8 39.4 65.8 78.7z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-moon-rain": { + "aliases": { + "unicodes": { + "secondary": [ + "10f73c" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crescent", + "evening", + "lunar", + "night", + "partly cloudy", + "precipitation", + "rain", + "sky", + "storm" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f73c", + "label": "Cloud Moon Rain", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M453 0C392.5 0 342.2 43.8 333 101.3c33.3 16.5 56.7 50.2 58.5 89.5c21.8 10.3 39.5 27.9 50 49.6c3.8 .4 7.7 .5 11.6 .5c32.9 0 62.8-13 84.6-34c4.8-4.6 6-11.7 3-17.6s-9.5-9.2-16-8.1c-4.6 .8-9.4 1.2-14.3 1.2c-46.1 0-83.2-37-83.2-82.3c0-30.6 17-57.5 42.3-71.6c5.8-3.2 8.8-9.9 7.4-16.3S469.9 .9 463.3 .4C459.9 .1 456.4 0 453 0zM346.4 361.3c41.6 0 75.3-33.7 75.3-75.3c0-37-26.7-67.8-62-74.1c1.2-5.2 1.8-10.7 1.8-16.2c0-41.6-33.7-75.3-75.3-75.3c-16 0-30.9 5-43.1 13.5c-15.8-26.2-44.5-43.7-77.4-43.7c-49.9 0-90.3 40.4-90.3 90.3l0 1.2C32.7 189.1 .1 226.2 .1 271c0 49.9 40.4 90.3 90.3 90.3H346.4zm-265.9 34c-10.4-6.9-24.4-4.1-31.3 6.3L19.1 446.8c-6.9 10.4-4.1 24.4 6.3 31.3s24.4 4.1 31.3-6.3l30.1-45.2c6.9-10.4 4.1-24.4-6.3-31.3zm90.3 0c-10.4-6.9-24.4-4.1-31.3 6.3l-30.1 45.2c-6.9 10.4-4.1 24.4 6.3 31.3s24.4 4.1 31.3-6.3l30.1-45.2c6.9-10.4 4.1-24.4-6.3-31.3zm90.3 0c-10.4-6.9-24.4-4.1-31.3 6.3l-30.1 45.2c-6.9 10.4-4.1 24.4 6.3 31.3s24.4 4.1 31.3-6.3l30.1-45.2c6.9-10.4 4.1-24.4-6.3-31.3zm90.3 0c-10.4-6.9-24.4-4.1-31.3 6.3l-30.1 45.2c-6.9 10.4-4.1 24.4 6.3 31.3s24.4 4.1 31.3-6.3l30.1-45.2c6.9-10.4 4.1-24.4-6.3-31.3z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-rain": { + "aliases": { + "unicodes": { + "composite": [ + "1f327", + "26c6" + ], + "secondary": [ + "10f73d" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rain", + "cloud", + "cloud with rain", + "precipitation", + "rain", + "sky", + "storm" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f73d", + "label": "Cloud Rain", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 320c-53 0-96-43-96-96c0-42.5 27.6-78.6 65.9-91.2C64.7 126.1 64 119.1 64 112C64 50.1 114.1 0 176 0c43.1 0 80.5 24.3 99.2 60c14.7-17.1 36.5-28 60.8-28c44.2 0 80 35.8 80 80c0 5.5-.6 10.8-1.6 16c.5 0 1.1 0 1.6 0c53 0 96 43 96 96s-43 96-96 96H96zm-6.8 52c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3L89.2 372zm160 0c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3L249.2 372zm124.9 64.6L409.2 372c1.3-2.5 3.9-4 6.8-4s5.4 1.5 6.8 4l35.1 64.6c4.1 7.5 6.2 15.8 6.2 24.3v3c0 26.5-21.5 48-48 48s-48-21.5-48-48v-3c0-8.5 2.1-16.9 6.2-24.3z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-showers-heavy": { + "aliases": { + "unicodes": { + "secondary": [ + "10f740" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "precipitation", + "rain", + "sky", + "storm" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f740", + "label": "Cloud Showers Heavy", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 320c-53 0-96-43-96-96c0-42.5 27.6-78.6 65.9-91.2C64.7 126.1 64 119.1 64 112C64 50.1 114.1 0 176 0c43.1 0 80.5 24.3 99.2 60c14.7-17.1 36.5-28 60.8-28c44.2 0 80 35.8 80 80c0 5.5-.6 10.8-1.6 16c.5 0 1.1 0 1.6 0c53 0 96 43 96 96s-43 96-96 96H96zM81.5 353.9c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6S-3.3 490.7 1.9 478.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6zm120 0c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6zm244.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6s17.8 19.3 12.6 31.5zM313.5 353.9c12.2 5.2 17.8 19.3 12.6 31.5l-48 112c-5.2 12.2-19.3 17.8-31.5 12.6s-17.8-19.3-12.6-31.5l48-112c5.2-12.2 19.3-17.8 31.5-12.6z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-showers-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cloud", + "deluge", + "flood", + "rain", + "storm", + "surge" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4e4", + "label": "Cloud Showers Water", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M224 0c38.6 0 71.9 22.8 87.2 55.7C325.7 41.1 345.8 32 368 32c38.7 0 71 27.5 78.4 64H448c35.3 0 64 28.7 64 64s-28.7 64-64 64H128c-35.3 0-64-28.7-64-64s28.7-64 64-64c0-53 43-96 96-96zM140.6 292.3l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2s15.1 21.6 8.2 32.9zm327.8-32.9c11.4 6.8 15 21.6 8.2 32.9l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2zM252.6 292.3l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2s15.1 21.6 8.2 32.9zm103.8-32.9c11.4 6.8 15 21.6 8.2 32.9l-48 80c-6.8 11.4-21.6 15-32.9 8.2s-15.1-21.6-8.2-32.9l48-80c6.8-11.4 21.6-15.1 32.9-8.2zM306.5 421.9C329 437.4 356.5 448 384 448c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 501.7 417 512 384 512c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 437.2 165.1 448 192 448c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-sun": { + "aliases": { + "unicodes": { + "composite": [ + "26c5" + ], + "secondary": [ + "10f6c4" + ] + } + }, + "changes": [ + "5.4.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clear", + "cloud", + "day", + "daytime", + "fall", + "outdoors", + "overcast", + "partly cloudy", + "sun", + "sun behind cloud" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6c4", + "label": "Cloud Sun", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M294.2 1.2c5.1 2.1 8.7 6.7 9.6 12.1l14.1 84.7 84.7 14.1c5.4 .9 10 4.5 12.1 9.6s1.5 10.9-1.6 15.4l-38.5 55c-2.2-.1-4.4-.2-6.7-.2c-23.3 0-45.1 6.2-64 17.1l0-1.1c0-53-43-96-96-96s-96 43-96 96s43 96 96 96c8.1 0 15.9-1 23.4-2.9c-36.6 18.1-63.3 53.1-69.8 94.9l-24.4 17c-4.5 3.2-10.3 3.8-15.4 1.6s-8.7-6.7-9.6-12.1L98.1 317.9 13.4 303.8c-5.4-.9-10-4.5-12.1-9.6s-1.5-10.9 1.6-15.4L52.5 208 2.9 137.2c-3.2-4.5-3.8-10.3-1.6-15.4s6.7-8.7 12.1-9.6L98.1 98.1l14.1-84.7c.9-5.4 4.5-10 9.6-12.1s10.9-1.5 15.4 1.6L208 52.5 278.8 2.9c4.5-3.2 10.3-3.8 15.4-1.6zM144 208a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM639.9 431.9c0 44.2-35.8 80-80 80H288c-53 0-96-43-96-96c0-47.6 34.6-87 80-94.6l0-1.3c0-53 43-96 96-96c34.9 0 65.4 18.6 82.2 46.4c13-9.1 28.8-14.4 45.8-14.4c44.2 0 80 35.8 80 80c0 5.9-.6 11.7-1.9 17.2c37.4 6.7 65.8 39.4 65.8 78.7z" + } + }, + "free": [ + "solid" + ] + }, + "cloud-sun-rain": { + "aliases": { + "unicodes": { + "composite": [ + "1f326" + ], + "secondary": [ + "10f743" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cloud", + "day", + "overcast", + "precipitation", + "rain", + "storm", + "summer", + "sun", + "sun behind rain cloud", + "sunshower" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f743", + "label": "Cloud Sun Rain", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M294.2 1.2c5.1 2.1 8.7 6.7 9.6 12.1l10.4 62.4c-23.3 10.8-42.9 28.4-56 50.3c-14.6-9-31.8-14.1-50.2-14.1c-53 0-96 43-96 96c0 35.5 19.3 66.6 48 83.2c.8 31.8 13.2 60.7 33.1 82.7l-56 39.2c-4.5 3.1-10.3 3.8-15.4 1.6s-8.7-6.7-9.6-12.1L98.1 317.9 13.4 303.8c-5.4-.9-10-4.5-12.1-9.6s-1.5-10.9 1.6-15.4L52.5 208 2.9 137.2c-3.2-4.5-3.8-10.3-1.6-15.4s6.7-8.7 12.1-9.6L98.1 98.1l14.1-84.7c.9-5.4 4.5-10 9.6-12.1s10.9-1.5 15.4 1.6L208 52.5 278.8 2.9c4.5-3.2 10.3-3.8 15.4-1.6zM208 144c13.8 0 26.7 4.4 37.1 11.9c-1.2 4.1-2.2 8.3-3 12.6c-37.9 14.6-67.2 46.6-77.8 86.4C151.8 243.1 144 226.5 144 208c0-35.3 28.7-64 64-64zm69.4 276c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7zm96 0c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7zm96 0c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7zm96 0c11 7.4 14 22.3 6.7 33.3l-32 48c-7.4 11-22.3 14-33.3 6.7s-14-22.3-6.7-33.3l32-48c7.4-11 22.3-14 33.3-6.7zm74.5-116.1c0 44.2-35.8 80-80 80H288c-53 0-96-43-96-96c0-47.6 34.6-87 80-94.6l0-1.3c0-53 43-96 96-96c34.9 0 65.4 18.6 82.2 46.4c13-9.1 28.8-14.4 45.8-14.4c44.2 0 80 35.8 80 80c0 5.9-.6 11.7-1.9 17.2c37.4 6.7 65.8 39.4 65.8 78.7z" + } + }, + "free": [ + "solid" + ] + }, + "cloudflare": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e07d", + "label": "Cloudflare", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M407.906,319.913l-230.8-2.928a4.58,4.58,0,0,1-3.632-1.926,4.648,4.648,0,0,1-.494-4.147,6.143,6.143,0,0,1,5.361-4.076L411.281,303.9c27.631-1.26,57.546-23.574,68.022-50.784l13.286-34.542a7.944,7.944,0,0,0,.524-2.936,7.735,7.735,0,0,0-.164-1.631A151.91,151.91,0,0,0,201.257,198.4,68.12,68.12,0,0,0,94.2,269.59C41.924,271.106,0,313.728,0,366.12a96.054,96.054,0,0,0,1.029,13.958,4.508,4.508,0,0,0,4.445,3.871l426.1.051c.043,0,.08-.019.122-.02a5.606,5.606,0,0,0,5.271-4l3.273-11.265c3.9-13.4,2.448-25.8-4.1-34.9C430.124,325.423,420.09,320.487,407.906,319.913ZM513.856,221.1c-2.141,0-4.271.062-6.391.164a3.771,3.771,0,0,0-3.324,2.653l-9.077,31.193c-3.9,13.4-2.449,25.786,4.1,34.89,6.02,8.4,16.054,13.323,28.238,13.9l49.2,2.939a4.491,4.491,0,0,1,3.51,1.894,4.64,4.64,0,0,1,.514,4.169,6.153,6.153,0,0,1-5.351,4.075l-51.125,2.939c-27.754,1.27-57.669,23.574-68.145,50.784l-3.695,9.606a2.716,2.716,0,0,0,2.427,3.68c.046,0,.088.017.136.017h175.91a4.69,4.69,0,0,0,4.539-3.37,124.807,124.807,0,0,0,4.682-34C640,277.3,583.524,221.1,513.856,221.1Z" + } + }, + "free": [ + "brands" + ] + }, + "cloudscale": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f383", + "label": "cloudscale.ch", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6.4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z" + } + }, + "free": [ + "brands" + ] + }, + "cloudsmith": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f384", + "label": "Cloudsmith", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 332, + 512 + ], + "width": 332, + "height": 512, + "path": "M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z" + } + }, + "free": [ + "brands" + ] + }, + "cloudversify": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f385", + "label": "cloudversify", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 616, + 512 + ], + "width": 616, + "height": 512, + "path": "M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z" + } + }, + "free": [ + "brands" + ] + }, + "clover": { + "changes": [ + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "4", + "charm", + "clover", + "four", + "four leaf clover", + "four-leaf clover", + "leaf", + "leprechaun", + "luck", + "lucky" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e139", + "label": "Clover", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M173.3 32C139.4 32 112 59.4 112 93.3v4.9c0 12 3.3 23.7 9.4 34l18.8 31.3c1.1 1.8 1.2 3.1 1 4.2c-.2 1.2-.8 2.5-2 3.6s-2.4 1.8-3.6 2c-1 .2-2.4 .1-4.2-1l-31.3-18.8c-10.3-6.2-22-9.4-34-9.4H61.3C27.4 144 0 171.4 0 205.3c0 16.2 6.5 31.8 17.9 43.3l1.2 1.2c3.4 3.4 3.4 9 0 12.4l-1.2 1.2C6.5 274.9 0 290.5 0 306.7C0 340.6 27.4 368 61.3 368h4.9c12 0 23.7-3.3 34-9.4l31.3-18.8c1.8-1.1 3.1-1.2 4.2-1c1.2 .2 2.5 .8 3.6 2s1.8 2.4 2 3.6c.2 1 .1 2.4-1 4.2l-18.8 31.3c-6.2 10.3-9.4 22-9.4 34v4.9c0 33.8 27.4 61.3 61.3 61.3c16.2 0 31.8-6.5 43.3-17.9l1.2-1.2c3.4-3.4 9-3.4 12.4 0l1.2 1.2c11.5 11.5 27.1 17.9 43.3 17.9c33.8 0 61.3-27.4 61.3-61.3v-4.9c0-12-3.3-23.7-9.4-34l-18.8-31.3c-1.1-1.8-1.2-3.1-1-4.2c.2-1.2 .8-2.5 2-3.6s2.4-1.8 3.6-2c1-.2 2.4-.1 4.2 1l31.3 18.8c10.3 6.2 22 9.4 34 9.4h4.9c33.8 0 61.3-27.4 61.3-61.3c0-16.2-6.5-31.8-17.9-43.3l-1.2-1.2c-3.4-3.4-3.4-9 0-12.4l1.2-1.2c11.5-11.5 17.9-27.1 17.9-43.3c0-33.8-27.4-61.3-61.3-61.3h-4.9c-12 0-23.7 3.3-34 9.4l-31.3 18.8c-1.8 1.1-3.1 1.2-4.2 1c-1.2-.2-2.5-.8-3.6-2s-1.8-2.4-2-3.6c-.2-1-.1-2.4 1-4.2l18.8-31.3c6.2-10.3 9.4-22 9.4-34V93.3C336 59.4 308.6 32 274.7 32c-16.2 0-31.8 6.5-43.3 17.9l-1.2 1.2c-3.4 3.4-9 3.4-12.4 0l-1.2-1.2C205.1 38.5 189.5 32 173.3 32z" + } + }, + "free": [ + "solid" + ] + }, + "cmplid": { + "changes": [ + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e360", + "label": "Cmplid", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M226.119,388.165a3.816,3.816,0,0,0-2.294-3.5,3.946,3.946,0,0,0-1.629-.385L72.6,384.3a19.243,19.243,0,0,1-17.924-26.025L81.585,255.692a35.72,35.72,0,0,1,32.373-26H262.525a7.07,7.07,0,0,0,6.392-5.194l10.769-41.131a3.849,3.849,0,0,0-2.237-4.937,3.755,3.755,0,0,0-1.377-.261c-.063,0-.126,0-.189.005H127.38a106.8,106.8,0,0,0-96.99,77.1L3.483,358.824A57.469,57.469,0,0,0,57.314,436q1.43,0,2.86-.072H208.742a7.131,7.131,0,0,0,6.391-5.193L225.839,389.6A3.82,3.82,0,0,0,226.119,388.165ZM306.658,81.2a3.861,3.861,0,0,0,.251-1.367A3.813,3.813,0,0,0,303.079,76c-.064,0-.128,0-.192,0h-41A7.034,7.034,0,0,0,255.5,81.2l-21.347,80.915h51.131ZM180.364,368.249H231.5L263.452,245.69H212.321ZM511.853,79.723a3.809,3.809,0,0,0-3.8-3.661c-.058,0-.137,0-.23.007h-41a7.1,7.1,0,0,0-6.584,5.129L368.91,430.634a3.54,3.54,0,0,0-.262,1.335,3.873,3.873,0,0,0,3.864,3.863c.056,0,.112,0,.169,0h41a7.068,7.068,0,0,0,6.392-5.193L511.533,81.2A3.624,3.624,0,0,0,511.853,79.723ZM324.649,384.47h-41a7.2,7.2,0,0,0-6.392,5.194L266.52,430.8a3.662,3.662,0,0,0-.268,1.374A3.783,3.783,0,0,0,270.023,436c.06,0,.166,0,.3-.012h40.905a7.036,7.036,0,0,0,6.391-5.193l10.769-41.131a3.75,3.75,0,0,0-3.445-5.208c-.108,0-.217,0-.326.014Zm311.324-308.4h-41a7.066,7.066,0,0,0-6.392,5.129l-91.46,349.436a4.073,4.073,0,0,0-.229,1.347,3.872,3.872,0,0,0,3.863,3.851c.056,0,.112,0,.169,0h40.968a7.1,7.1,0,0,0,6.392-5.193L639.68,81.2a3.624,3.624,0,0,0,.32-1.475,3.841,3.841,0,0,0-3.821-3.564c-.068,0-.137,0-.206.006ZM371.562,225.236l10.8-41.1a4.369,4.369,0,0,0,.227-1.388,3.869,3.869,0,0,0-3.861-3.842c-.057,0-.113,0-.169,0h-41.1a7.292,7.292,0,0,0-6.391,5.226l-10.834,41.1a4.417,4.417,0,0,0-.26,1.493c0,.069,0,.138,0,.206a3.776,3.776,0,0,0,3.757,3.507c.076,0,.18,0,.3-.012h41.129A7.034,7.034,0,0,0,371.562,225.236Z" + } + }, + "free": [ + "brands" + ] + }, + "code": { + "aliases": { + "unicodes": { + "secondary": [ + "10f121" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brackets", + "code", + "development", + "html" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f121", + "label": "Code", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z" + } + }, + "free": [ + "solid" + ] + }, + "code-branch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f126" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "branch", + "git", + "github", + "rebase", + "svn", + "vcs", + "version" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f126", + "label": "Code Branch", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M80 104c13.3 0 24-10.7 24-24s-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24zm80-24c0 32.8-19.7 61-48 73.3v87.8c18.8-10.9 40.7-17.1 64-17.1h96c35.3 0 64-28.7 64-64v-6.7C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V160c0 70.7-57.3 128-128 128H176c-35.3 0-64 28.7-64 64v6.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V352 153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm232 0c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zM80 456c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z" + } + }, + "free": [ + "solid" + ] + }, + "code-commit": { + "aliases": { + "unicodes": { + "secondary": [ + "10f386" + ] + } + }, + "changes": [ + "5.0.0", + "5.1.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "commit", + "git", + "github", + "hash", + "rebase", + "svn", + "vcs", + "version" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f386", + "label": "Code Commit", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 336c44.2 0 80-35.8 80-80s-35.8-80-80-80s-80 35.8-80 80s35.8 80 80 80zm156.8-48C462 361 397.4 416 320 416s-142-55-156.8-128H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H163.2C178 151 242.6 96 320 96s142 55 156.8 128H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H476.8z" + } + }, + "free": [ + "solid" + ] + }, + "code-compare": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "compare", + "git", + "github", + "svn", + "version" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e13a", + "label": "Code Compare", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M320 488c0 9.5-5.6 18.1-14.2 21.9s-18.8 2.3-25.8-4.1l-80-72c-5.1-4.6-7.9-11-7.9-17.8s2.9-13.3 7.9-17.8l80-72c7-6.3 17.2-7.9 25.8-4.1s14.2 12.4 14.2 21.9v40h16c35.3 0 64-28.7 64-64V153.3C371.7 141 352 112.8 352 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V320c0 70.7-57.3 128-128 128H320v40zM456 80c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zM192 24c0-9.5 5.6-18.1 14.2-21.9s18.8-2.3 25.8 4.1l80 72c5.1 4.6 7.9 11 7.9 17.8s-2.9 13.3-7.9 17.8l-80 72c-7 6.3-17.2 7.9-25.8 4.1s-14.2-12.4-14.2-21.9V128H176c-35.3 0-64 28.7-64 64V358.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V192c0-70.7 57.3-128 128-128h16V24zM56 432c0 13.3 10.7 24 24 24s24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24z" + } + }, + "free": [ + "solid" + ] + }, + "code-fork": { + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fork", + "git", + "github", + "svn", + "version" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e13b", + "label": "Code Fork", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M80 104c13.3 0 24-10.7 24-24s-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24zm80-24c0 32.8-19.7 61-48 73.3V192c0 17.7 14.3 32 32 32H304c17.7 0 32-14.3 32-32V153.3C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V192c0 53-43 96-96 96H256v70.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V288H144c-53 0-96-43-96-96V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm208 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24zM248 432c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "code-merge": { + "aliases": { + "unicodes": { + "secondary": [ + "10f387" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "git", + "github", + "merge", + "pr", + "rebase", + "svn", + "vcs", + "version" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f387", + "label": "Code Merge", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M80 104c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm32.4 49.2c28-12.4 47.6-40.5 47.6-73.2c0-44.2-35.8-80-80-80S0 35.8 0 80c0 32.8 19.7 61 48 73.3V358.7C19.7 371 0 399.2 0 432c0 44.2 35.8 80 80 80s80-35.8 80-80c0-32.8-19.7-61-48-73.3V272c26.7 20.1 60 32 96 32h86.7c12.3 28.3 40.5 48 73.3 48c44.2 0 80-35.8 80-80s-35.8-80-80-80c-32.8 0-61 19.7-73.3 48H208c-49.9 0-91-38.1-95.6-86.8zM80 456c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zM392 272c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24z" + } + }, + "free": [ + "solid" + ] + }, + "code-pull-request": { + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "git", + "github", + "pr", + "svn", + "version" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e13c", + "label": "Code Pull Request", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321805, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M305.8 2.1C314.4 5.9 320 14.5 320 24V64h16c70.7 0 128 57.3 128 128V358.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V192c0-35.3-28.7-64-64-64H320v40c0 9.5-5.6 18.1-14.2 21.9s-18.8 2.3-25.8-4.1l-80-72c-5.1-4.6-7.9-11-7.9-17.8s2.9-13.3 7.9-17.8l80-72c7-6.3 17.2-7.9 25.8-4.1zM104 80c0-13.3-10.7-24-24-24S56 66.7 56 80s10.7 24 24 24s24-10.7 24-24zm8 73.3V358.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80c0 32.8-19.7 61-48 73.3zM104 432c0-13.3-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24s24-10.7 24-24zm328 24c13.3 0 24-10.7 24-24s-10.7-24-24-24s-24 10.7-24 24s10.7 24 24 24z" + } + }, + "free": [ + "solid" + ] + }, + "codepen": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1cb", + "label": "Codepen", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.285 159.704l-234-156c-7.987-4.915-16.511-4.96-24.571 0l-234 156C3.714 163.703 0 170.847 0 177.989v155.999c0 7.143 3.714 14.286 9.715 18.286l234 156.022c7.987 4.915 16.511 4.96 24.571 0l234-156.022c6-3.999 9.715-11.143 9.715-18.286V177.989c-.001-7.142-3.715-14.286-9.716-18.285zM278 63.131l172.286 114.858-76.857 51.429L278 165.703V63.131zm-44 0v102.572l-95.429 63.715-76.857-51.429L234 63.131zM44 219.132l55.143 36.857L44 292.846v-73.714zm190 229.715L61.714 333.989l76.857-51.429L234 346.275v102.572zm22-140.858l-77.715-52 77.715-52 77.715 52-77.715 52zm22 140.858V346.275l95.429-63.715 76.857 51.429L278 448.847zm190-156.001l-55.143-36.857L468 219.132v73.714z" + } + }, + "free": [ + "brands" + ] + }, + "codiepie": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f284", + "label": "Codie Pie", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 472, + 512 + ], + "width": 472, + "height": 512, + "path": "M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z" + } + }, + "free": [ + "brands" + ] + }, + "coins": { + "aliases": { + "unicodes": { + "secondary": [ + "10f51e" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency", + "dime", + "financial", + "gold", + "money", + "penny" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f51e", + "label": "Coins", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 80c0 18-14.3 34.6-38.4 48c-29.1 16.1-72.5 27.5-122.3 30.9c-3.7-1.8-7.4-3.5-11.3-5C300.6 137.4 248.2 128 192 128c-8.3 0-16.4 .2-24.5 .6l-1.1-.6C142.3 114.6 128 98 128 80c0-44.2 86-80 192-80S512 35.8 512 80zM160.7 161.1c10.2-.7 20.7-1.1 31.3-1.1c62.2 0 117.4 12.3 152.5 31.4C369.3 204.9 384 221.7 384 240c0 4-.7 7.9-2.1 11.7c-4.6 13.2-17 25.3-35 35.5c0 0 0 0 0 0c-.1 .1-.3 .1-.4 .2l0 0 0 0c-.3 .2-.6 .3-.9 .5c-35 19.4-90.8 32-153.6 32c-59.6 0-112.9-11.3-148.2-29.1c-1.9-.9-3.7-1.9-5.5-2.9C14.3 274.6 0 258 0 240c0-34.8 53.4-64.5 128-75.4c10.5-1.5 21.4-2.7 32.7-3.5zM416 240c0-21.9-10.6-39.9-24.1-53.4c28.3-4.4 54.2-11.4 76.2-20.5c16.3-6.8 31.5-15.2 43.9-25.5V176c0 19.3-16.5 37.1-43.8 50.9c-14.6 7.4-32.4 13.7-52.4 18.5c.1-1.8 .2-3.5 .2-5.3zm-32 96c0 18-14.3 34.6-38.4 48c-1.8 1-3.6 1.9-5.5 2.9C304.9 404.7 251.6 416 192 416c-62.8 0-118.6-12.6-153.6-32C14.3 370.6 0 354 0 336V300.6c12.5 10.3 27.6 18.7 43.9 25.5C83.4 342.6 135.8 352 192 352s108.6-9.4 148.1-25.9c7.8-3.2 15.3-6.9 22.4-10.9c6.1-3.4 11.8-7.2 17.2-11.2c1.5-1.1 2.9-2.3 4.3-3.4V304v5.7V336zm32 0V304 278.1c19-4.2 36.5-9.5 52.1-16c16.3-6.8 31.5-15.2 43.9-25.5V272c0 10.5-5 21-14.9 30.9c-16.3 16.3-45 29.7-81.3 38.4c.1-1.7 .2-3.5 .2-5.3zM192 448c56.2 0 108.6-9.4 148.1-25.9c16.3-6.8 31.5-15.2 43.9-25.5V432c0 44.2-86 80-192 80S0 476.2 0 432V396.6c12.5 10.3 27.6 18.7 43.9 25.5C83.4 438.6 135.8 448 192 448z" + } + }, + "free": [ + "solid" + ] + }, + "colon-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Colon Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e140", + "label": "Colon Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M223 39.8c4.3-17.1-6.1-34.5-23.3-38.8S165.2 7.1 161 24.2L149.9 68.6C64.1 87.8 0 164.4 0 256c0 58.1 25.8 110.2 66.7 145.4L49 472.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l13-52.1c9 3.4 18.4 6.2 28 8.2L145 472.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l10.4-41.4c33.4-4.4 64.1-17.4 89.8-36.7c14.1-10.6 17-30.7 6.4-44.8s-30.7-17-44.8-6.4c-10.2 7.7-21.7 13.9-34 18.3L289 160c9.4-.3 18.5-4.7 24.6-12.8c10.6-14.1 7.8-34.2-6.4-44.8c-1.1-.8-2.2-1.6-3.3-2.4L319 39.8c4.3-17.1-6.1-34.5-23.3-38.8S261.2 7.1 257 24.2L245.1 71.5c-9.3-2.7-18.8-4.6-28.6-5.9L223 39.8zM131.2 143.3L85.3 326.8C71.9 306.5 64 282.2 64 256c0-48.7 27.2-91 67.2-112.7zm8.6 229.5l61.1-244.6c9.9 .7 19.5 2.5 28.7 5.3l-62 248.1c-9.7-1.9-19-4.8-27.8-8.8z" + } + }, + "free": [ + "solid" + ] + }, + "comment": { + "aliases": { + "unicodes": { + "composite": [ + "1f5e9", + "f0e5" + ], + "secondary": [ + "10f075" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right Speech Bubble", + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f075", + "label": "Comment", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 240c0 114.9-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9c-11.9 8.7-31.3 20.6-54.3 30.6C73.6 471.1 44.7 480 16 480c-6.5 0-12.3-3.9-14.8-9.9c-2.5-6-1.1-12.8 3.4-17.4l0 0 0 0 0 0 0 0 .3-.3c.3-.3 .7-.7 1.3-1.4c1.1-1.2 2.8-3.1 4.9-5.7c4.1-5 9.6-12.4 15.2-21.6c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240C0 125.1 114.6 32 256 32s256 93.1 256 208z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M123.6 391.3c12.9-9.4 29.6-11.8 44.6-6.4c26.5 9.6 56.2 15.1 87.8 15.1c124.7 0 208-80.5 208-160s-83.3-160-208-160S48 160.5 48 240c0 32 12.4 62.8 35.7 89.2c8.6 9.7 12.8 22.5 11.8 35.5c-1.4 18.1-5.7 34.7-11.3 49.4c17-7.9 31.1-16.7 39.4-22.7zM21.2 431.9c1.8-2.7 3.5-5.4 5.1-8.1c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240C0 125.1 114.6 32 256 32s256 93.1 256 208s-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9c-11.9 8.7-31.3 20.6-54.3 30.6c-15.1 6.6-32.3 12.6-50.1 16.1c-.8 .2-1.6 .3-2.4 .5c-4.4 .8-8.7 1.5-13.2 1.9c-.2 0-.5 .1-.7 .1c-5.1 .5-10.2 .8-15.3 .8c-6.5 0-12.3-3.9-14.8-9.9c-2.5-6-1.1-12.8 3.4-17.4c4.1-4.2 7.8-8.7 11.3-13.5c1.7-2.3 3.3-4.6 4.8-6.9c.1-.2 .2-.3 .3-.5z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "comment-dollar": { + "aliases": { + "unicodes": { + "secondary": [ + "10f651" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "money", + "note", + "notification", + "pay", + "sms", + "speech", + "spend", + "texting", + "transfer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f651", + "label": "Comment Dollar", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zm20-312v13.9c7.5 1.2 14.6 2.9 21.1 4.7c10.7 2.8 17 13.8 14.2 24.5s-13.8 17-24.5 14.2c-11-2.9-21.6-5-31.2-5.2c-7.9-.1-16 1.8-21.5 5c-4.8 2.8-6.2 5.6-6.2 9.3c0 1.8 .1 3.5 5.3 6.7c6.3 3.8 15.5 6.7 28.3 10.5l.7 .2c11.2 3.4 25.6 7.7 37.1 15c12.9 8.1 24.3 21.3 24.6 41.6c.3 20.9-10.5 36.1-24.8 45c-7.2 4.5-15.2 7.3-23.2 9V344c0 11-9 20-20 20s-20-9-20-20V329.4c-10.3-2.2-20-5.5-28.2-8.4l0 0 0 0c-2.1-.7-4.1-1.4-6.1-2.1c-10.5-3.5-16.1-14.8-12.6-25.3s14.8-16.1 25.3-12.6c2.5 .8 4.9 1.7 7.2 2.4c13.6 4.6 24 8.1 35.1 8.5c8.6 .3 16.5-1.6 21.4-4.7c4.1-2.5 6-5.5 5.9-10.5c0-2.9-.8-5-5.9-8.2c-6.3-4-15.4-6.9-28-10.7l-1.7-.5c-10.9-3.3-24.6-7.4-35.6-14c-12.7-7.7-24.6-20.5-24.7-40.7c-.1-21.1 11.8-35.7 25.8-43.9c6.9-4.1 14.5-6.8 22.2-8.5V136c0-11 9-20 20-20s20 9 20 20z" + } + }, + "free": [ + "solid" + ] + }, + "comment-dots": { + "aliases": { + "names": [ + "commenting" + ], + "unicodes": { + "composite": [ + "1f4ac", + "f27b" + ], + "secondary": [ + "10f4ad" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "balloon", + "bubble", + "chat", + "comic", + "commenting", + "conversation", + "dialog", + "feedback", + "message", + "more", + "note", + "notification", + "reply", + "sms", + "speech", + "speech balloon", + "texting" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f4ad", + "label": "Comment Dots", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zM128 208a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 0a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm96 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M168.2 384.9c-15-5.4-31.7-3.1-44.6 6.4c-8.2 6-22.3 14.8-39.4 22.7c5.6-14.7 9.9-31.3 11.3-49.4c1-12.9-3.3-25.7-11.8-35.5C60.4 302.8 48 272 48 240c0-79.5 83.3-160 208-160s208 80.5 208 160s-83.3 160-208 160c-31.6 0-61.3-5.5-87.8-15.1zM26.3 423.8c-1.6 2.7-3.3 5.4-5.1 8.1l-.3 .5c-1.6 2.3-3.2 4.6-4.8 6.9c-3.5 4.7-7.3 9.3-11.3 13.5c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c5.1 0 10.2-.3 15.3-.8l.7-.1c4.4-.5 8.8-1.1 13.2-1.9c.8-.1 1.6-.3 2.4-.5c17.8-3.5 34.9-9.5 50.1-16.1c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9zM144 272a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm144-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm80 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "comment-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7f5" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "advice", + "bubble", + "chat", + "commenting", + "conversation", + "diagnose", + "feedback", + "message", + "note", + "notification", + "prescription", + "sms", + "speech", + "texting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7f5", + "label": "Comment Medical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zM224 160c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H288v48c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V272H176c-8.8 0-16-7.2-16-16V224c0-8.8 7.2-16 16-16h48V160z" + } + }, + "free": [ + "solid" + ] + }, + "comment-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4b3" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "cancel", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "mute", + "note", + "notification", + "quiet", + "sms", + "speech", + "texting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4b3", + "label": "Comment Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L512.9 376.7C552.2 340.2 576 292.3 576 240C576 125.1 461.4 32 320 32c-67.7 0-129.3 21.4-175.1 56.3L38.8 5.1zM64 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9c37 0 72.3-6.4 104-17.9L82.9 161.3C70.7 185.6 64 212.2 64 240z" + } + }, + "free": [ + "solid" + ] + }, + "comment-sms": { + "aliases": { + "names": [ + "sms" + ], + "unicodes": { + "secondary": [ + "10f7cd" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chat", + "conversation", + "message", + "mobile", + "notification", + "phone", + "sms", + "texting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7cd", + "label": "Comment Sms", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 448c141.4 0 256-93.1 256-208S397.4 32 256 32S0 125.1 0 240c0 45.1 17.7 86.8 47.7 120.9c-1.9 24.5-11.4 46.3-21.4 62.9c-5.5 9.2-11.1 16.6-15.2 21.6c-2.1 2.5-3.7 4.4-4.9 5.7c-.6 .6-1 1.1-1.3 1.4l-.3 .3 0 0 0 0 0 0 0 0c-4.6 4.6-5.9 11.4-3.4 17.4c2.5 6 8.3 9.9 14.8 9.9c28.7 0 57.6-8.9 81.6-19.3c22.9-10 42.4-21.9 54.3-30.6c31.8 11.5 67 17.9 104.1 17.9zM202.9 176.8c6.5-2.2 13.7 .1 17.9 5.6L256 229.3l35.2-46.9c4.1-5.5 11.3-7.8 17.9-5.6s10.9 8.3 10.9 15.2v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V240l-19.2 25.6c-3 4-7.8 6.4-12.8 6.4s-9.8-2.4-12.8-6.4L224 240v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-6.9 4.4-13 10.9-15.2zm173.1 38c0 .2 0 .4 0 .4c.1 .1 .6 .8 2.2 1.7c3.9 2.3 9.6 4.1 18.3 6.8l.6 .2c7.4 2.2 17.3 5.2 25.2 10.2c9.1 5.7 17.4 15.2 17.6 29.9c.2 15-7.6 26-17.8 32.3c-9.5 5.9-20.9 7.9-30.7 7.6c-12.2-.4-23.7-4.4-32.6-7.4l0 0 0 0c-1.4-.5-2.7-.9-4-1.4c-8.4-2.8-12.9-11.9-10.1-20.2s11.9-12.9 20.2-10.1c1.7 .6 3.3 1.1 4.9 1.6l0 0 0 0c9.1 3.1 15.6 5.3 22.6 5.5c5.3 .2 10-1 12.8-2.8c1.2-.8 1.8-1.5 2.1-2c.2-.4 .6-1.2 .6-2.7l0-.2c0-.7 0-1.4-2.7-3.1c-3.8-2.4-9.6-4.3-18-6.9l-1.2-.4c-7.2-2.2-16.7-5-24.3-9.6c-9-5.4-17.7-14.7-17.7-29.4c-.1-15.2 8.6-25.7 18.5-31.6c9.4-5.5 20.5-7.5 29.7-7.4c10 .2 19.7 2.3 27.9 4.4c8.5 2.3 13.6 11 11.3 19.6s-11 13.6-19.6 11.3c-7.3-1.9-14.1-3.3-20.1-3.4c-4.9-.1-9.8 1.1-12.9 2.9c-1.4 .8-2.1 1.6-2.4 2c-.2 .3-.4 .8-.4 1.9zm-272 0c0 .2 0 .4 0 .4c.1 .1 .6 .8 2.2 1.7c3.9 2.3 9.6 4.1 18.3 6.8l.6 .2c7.4 2.2 17.3 5.2 25.2 10.2c9.1 5.7 17.4 15.2 17.6 29.9c.2 15-7.6 26-17.8 32.3c-9.5 5.9-20.9 7.9-30.7 7.6c-12.3-.4-24.2-4.5-33.2-7.6l0 0 0 0c-1.3-.4-2.5-.8-3.6-1.2c-8.4-2.8-12.9-11.9-10.1-20.2s11.9-12.9 20.2-10.1c1.4 .5 2.8 .9 4.1 1.4l0 0 0 0c9.5 3.2 16.5 5.6 23.7 5.8c5.3 .2 10-1 12.8-2.8c1.2-.8 1.8-1.5 2.1-2c.2-.4 .6-1.2 .6-2.7l0-.2c0-.7 0-1.4-2.7-3.1c-3.8-2.4-9.6-4.3-18-6.9l-1.2-.4 0 0c-7.2-2.2-16.7-5-24.3-9.6C80.8 239 72.1 229.7 72 215c-.1-15.2 8.6-25.7 18.5-31.6c9.4-5.5 20.5-7.5 29.7-7.4c9.5 .1 22.2 2.1 31.1 4.4c8.5 2.3 13.6 11 11.3 19.6s-11 13.6-19.6 11.3c-6.6-1.8-16.8-3.3-23.3-3.4c-4.9-.1-9.8 1.1-12.9 2.9c-1.4 .8-2.1 1.6-2.4 2c-.2 .3-.4 .8-.4 1.9z" + } + }, + "free": [ + "solid" + ] + }, + "comments": { + "aliases": { + "unicodes": { + "composite": [ + "1f5ea", + "f0e6" + ], + "secondary": [ + "10f086" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Two Speech Bubbles", + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f086", + "label": "Comments", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 352c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176c0 38.6 14.7 74.3 39.6 103.4c-3.5 9.4-8.7 17.7-14.2 24.7c-4.8 6.2-9.7 11-13.3 14.3c-1.8 1.6-3.3 2.9-4.3 3.7c-.5 .4-.9 .7-1.1 .8l-.2 .2 0 0 0 0C1 327.2-1.4 334.4 .8 340.9S9.1 352 16 352c21.8 0 43.8-5.6 62.1-12.5c9.2-3.5 17.8-7.4 25.3-11.4C134.1 343.3 169.8 352 208 352zM448 176c0 112.3-99.1 196.9-216.5 207C255.8 457.4 336.4 512 432 512c38.2 0 73.9-8.7 104.7-23.9c7.5 4 16 7.9 25.2 11.4c18.3 6.9 40.3 12.5 62.1 12.5c6.9 0 13.1-4.5 15.2-11.1c2.1-6.6-.2-13.8-5.8-17.9l0 0 0 0-.2-.2c-.2-.2-.6-.4-1.1-.8c-1-.8-2.5-2-4.3-3.7c-3.6-3.3-8.5-8.1-13.3-14.3c-5.5-7-10.7-15.4-14.2-24.7c24.9-29 39.6-64.7 39.6-103.4c0-92.8-84.9-168.9-192.6-175.5c.4 5.1 .6 10.3 .6 15.5z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M88.2 309.1c9.8-18.3 6.8-40.8-7.5-55.8C59.4 230.9 48 204 48 176c0-63.5 63.8-128 160-128s160 64.5 160 128s-63.8 128-160 128c-13.1 0-25.8-1.3-37.8-3.6c-10.4-2-21.2-.6-30.7 4.2c-4.1 2.1-8.3 4.1-12.6 6c-16 7.2-32.9 13.5-49.9 18c2.8-4.6 5.4-9.1 7.9-13.6c1.1-1.9 2.2-3.9 3.2-5.9zM0 176c0 41.8 17.2 80.1 45.9 110.3c-.9 1.7-1.9 3.5-2.8 5.1c-10.3 18.4-22.3 36.5-36.6 52.1c-6.6 7-8.3 17.2-4.6 25.9C5.8 378.3 14.4 384 24 384c43 0 86.5-13.3 122.7-29.7c4.8-2.2 9.6-4.5 14.2-6.8c15.1 3 30.9 4.5 47.1 4.5c114.9 0 208-78.8 208-176S322.9 0 208 0S0 78.8 0 176zM432 480c16.2 0 31.9-1.6 47.1-4.5c4.6 2.3 9.4 4.6 14.2 6.8C529.5 498.7 573 512 616 512c9.6 0 18.2-5.7 22-14.5c3.8-8.8 2-19-4.6-25.9c-14.2-15.6-26.2-33.7-36.6-52.1c-.9-1.7-1.9-3.4-2.8-5.1C622.8 384.1 640 345.8 640 304c0-94.4-87.9-171.5-198.2-175.8c4.1 15.2 6.2 31.2 6.2 47.8l0 .6c87.2 6.7 144 67.5 144 127.4c0 28-11.4 54.9-32.7 77.2c-14.3 15-17.3 37.6-7.5 55.8c1.1 2 2.2 4 3.2 5.9c2.5 4.5 5.2 9 7.9 13.6c-17-4.5-33.9-10.7-49.9-18c-4.3-1.9-8.5-3.9-12.6-6c-9.5-4.8-20.3-6.2-30.7-4.2c-12.1 2.4-24.7 3.6-37.8 3.6c-61.7 0-110-26.5-136.8-62.3c-16 5.4-32.8 9.4-50 11.8C279 439.8 350 480 432 480z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "comments-dollar": { + "aliases": { + "unicodes": { + "secondary": [ + "10f653" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "money", + "note", + "notification", + "pay", + "sms", + "speech", + "spend", + "texting", + "transfer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f653", + "label": "Comments Dollar", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M416 176c0 97.2-93.1 176-208 176c-38.2 0-73.9-8.7-104.7-23.9c-7.5 4-16 7.9-25.2 11.4C59.8 346.4 37.8 352 16 352c-6.9 0-13.1-4.5-15.2-11.1s.2-13.8 5.8-17.9l0 0 0 0 .2-.2c.2-.2 .6-.4 1.1-.8c1-.8 2.5-2 4.3-3.7c3.6-3.3 8.5-8.1 13.3-14.3c5.5-7 10.7-15.4 14.2-24.7C14.7 250.3 0 214.6 0 176C0 78.8 93.1 0 208 0S416 78.8 416 176zM231.5 383C348.9 372.9 448 288.3 448 176c0-5.2-.2-10.4-.6-15.5C555.1 167.1 640 243.2 640 336c0 38.6-14.7 74.3-39.6 103.4c3.5 9.4 8.7 17.7 14.2 24.7c4.8 6.2 9.7 11 13.3 14.3c1.8 1.6 3.3 2.9 4.3 3.7c.5 .4 .9 .7 1.1 .8l.2 .2 0 0 0 0c5.6 4.1 7.9 11.3 5.8 17.9c-2.1 6.6-8.3 11.1-15.2 11.1c-21.8 0-43.8-5.6-62.1-12.5c-9.2-3.5-17.8-7.4-25.2-11.4C505.9 503.3 470.2 512 432 512c-95.6 0-176.2-54.6-200.5-129zM228 72c0-11-9-20-20-20s-20 9-20 20V86c-7.6 1.7-15.2 4.4-22.2 8.5c-13.9 8.3-25.9 22.8-25.8 43.9c.1 20.3 12 33.1 24.7 40.7c11 6.6 24.7 10.8 35.6 14l1.7 .5c12.6 3.8 21.8 6.8 28 10.7c5.1 3.2 5.8 5.4 5.9 8.2c.1 5-1.8 8-5.9 10.5c-5 3.1-12.9 5-21.4 4.7c-11.1-.4-21.5-3.9-35.1-8.5c-2.3-.8-4.7-1.6-7.2-2.4c-10.5-3.5-21.8 2.2-25.3 12.6s2.2 21.8 12.6 25.3c1.9 .6 4 1.3 6.1 2.1l0 0 0 0c8.3 2.9 17.9 6.2 28.2 8.4V280c0 11 9 20 20 20s20-9 20-20V266.2c8-1.7 16-4.5 23.2-9c14.3-8.9 25.1-24.1 24.8-45c-.3-20.3-11.7-33.4-24.6-41.6c-11.5-7.2-25.9-11.6-37.1-15l-.7-.2c-12.8-3.9-21.9-6.7-28.3-10.5c-5.2-3.1-5.3-4.9-5.3-6.7c0-3.7 1.4-6.5 6.2-9.3c5.4-3.2 13.6-5.1 21.5-5c9.6 .1 20.2 2.2 31.2 5.2c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-6.5-1.7-13.7-3.4-21.1-4.7V72z" + } + }, + "free": [ + "solid" + ] + }, + "compact-disc": { + "aliases": { + "unicodes": { + "composite": [ + "1f4bf", + "1f4c0", + "1f5b8" + ], + "secondary": [ + "10f51f" + ] + } + }, + "changes": [ + "5.0.13", + "5.10.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Optical Disc Icon", + "album", + "blu-ray", + "bluray", + "cd", + "computer", + "disc", + "disk", + "dvd", + "media", + "movie", + "music", + "optical", + "optical disk", + "record", + "video", + "vinyl" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f51f", + "label": "Compact Disc", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 32a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm-96-32a96 96 0 1 0 192 0 96 96 0 1 0 -192 0zM96 240c0-35 17.5-71.1 45.2-98.8S205 96 240 96c8.8 0 16-7.2 16-16s-7.2-16-16-16c-45.4 0-89.2 22.3-121.5 54.5S64 194.6 64 240c0 8.8 7.2 16 16 16s16-7.2 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "compass": { + "aliases": { + "unicodes": { + "composite": [ + "1f9ed" + ], + "secondary": [ + "10f14e" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.2.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "compass", + "directions", + "directory", + "location", + "magnetic", + "menu", + "navigation", + "orienteering", + "safari", + "travel" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f14e", + "label": "Compass", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm50.7-186.9L162.4 380.6c-19.4 7.5-38.5-11.6-31-31l55.5-144.3c3.3-8.5 9.9-15.1 18.4-18.4l144.3-55.5c19.4-7.5 38.5 11.6 31 31L325.1 306.7c-3.2 8.5-9.9 15.1-18.4 18.4zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + }, + "regular": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm306.7 69.1L162.4 380.6c-19.4 7.5-38.5-11.6-31-31l55.5-144.3c3.3-8.5 9.9-15.1 18.4-18.4l144.3-55.5c19.4-7.5 38.5 11.6 31 31L325.1 306.7c-3.2 8.5-9.9 15.1-18.4 18.4zM288 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "compass-drafting": { + "aliases": { + "names": [ + "drafting-compass" + ], + "unicodes": { + "secondary": [ + "10f568" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "map", + "mechanical drawing", + "plot", + "plotting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f568", + "label": "Compass Drafting", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 96c0 14.3-3.1 27.9-8.8 40.2L396 227.4c-23.7 25.3-54.2 44.1-88.5 53.6L256 192h0 0l-68 117.5c21.5 6.8 44.3 10.5 68.1 10.5c70.7 0 133.8-32.7 174.9-84c11.1-13.8 31.2-16 45-5s16 31.2 5 45C428.1 341.8 347 384 256 384c-35.4 0-69.4-6.4-100.7-18.1L98.7 463.7C94 471.8 87 478.4 78.6 482.6L23.2 510.3c-5 2.5-10.9 2.2-15.6-.7S0 501.5 0 496V440.6c0-8.4 2.2-16.7 6.5-24.1l60-103.7C53.7 301.6 41.8 289.3 31.2 276c-11.1-13.8-8.8-33.9 5-45s33.9-8.8 45 5c5.7 7.1 11.8 13.8 18.2 20.1l69.4-119.9c-5.6-12.2-8.8-25.8-8.8-40.2c0-53 43-96 96-96s96 43 96 96zm21 297.9c32.6-12.8 62.5-30.8 88.9-52.9l43.7 75.5c4.2 7.3 6.5 15.6 6.5 24.1V496c0 5.5-2.9 10.7-7.6 13.6s-10.6 3.2-15.6 .7l-55.4-27.7c-8.4-4.2-15.4-10.8-20.1-18.9L373 393.9zM256 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "compress": { + "aliases": { + "unicodes": { + "secondary": [ + "10f066" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "fullscreen", + "minimize", + "move", + "resize", + "shrink", + "smaller" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f066", + "label": "Compress", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32V64zM32 320c-17.7 0-32 14.3-32 32s14.3 32 32 32H96v64c0 17.7 14.3 32 32 32s32-14.3 32-32V352c0-17.7-14.3-32-32-32H32zM352 64c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7 14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V64zM320 320c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320z" + } + }, + "free": [ + "solid" + ] + }, + "computer": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "desktop", + "display", + "monitor", + "tower" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4e5", + "label": "Computer", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M384 96V320H64L64 96H384zM64 32C28.7 32 0 60.7 0 96V320c0 35.3 28.7 64 64 64H181.3l-10.7 32H96c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H277.3l-10.7-32H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm464 0c-26.5 0-48 21.5-48 48V432c0 26.5 21.5 48 48 48h64c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48H528zm16 64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H544c-8.8 0-16-7.2-16-16s7.2-16 16-16zm-16 80c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H544c-8.8 0-16-7.2-16-16zm32 160a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "computer-mouse": { + "aliases": { + "names": [ + "mouse" + ], + "unicodes": { + "composite": [ + "1f5b1" + ], + "secondary": [ + "10f8cc" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "click", + "computer", + "computer mouse", + "cursor", + "input", + "peripheral" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f8cc", + "label": "Computer Mouse", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 192H176V0H160C71.6 0 0 71.6 0 160v32zm0 32V352c0 88.4 71.6 160 160 160h64c88.4 0 160-71.6 160-160V224H192 0zm384-32V160C384 71.6 312.4 0 224 0H208V192H384z" + } + }, + "free": [ + "solid" + ] + }, + "confluence": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f78d", + "label": "Confluence", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M2.3 412.2c-4.5 7.6-2.1 17.5 5.5 22.2l105.9 65.2c7.7 4.7 17.7 2.4 22.4-5.3 0-.1.1-.2.1-.2 67.1-112.2 80.5-95.9 280.9-.7 8.1 3.9 17.8.4 21.7-7.7.1-.1.1-.3.2-.4l50.4-114.1c3.6-8.1-.1-17.6-8.1-21.3-22.2-10.4-66.2-31.2-105.9-50.3C127.5 179 44.6 345.3 2.3 412.2zm507.4-312.1c4.5-7.6 2.1-17.5-5.5-22.2L398.4 12.8c-7.5-5-17.6-3.1-22.6 4.4-.2.3-.4.6-.6 1-67.3 112.6-81.1 95.6-280.6.9-8.1-3.9-17.8-.4-21.7 7.7-.1.1-.1.3-.2.4L22.2 141.3c-3.6 8.1.1 17.6 8.1 21.3 22.2 10.4 66.3 31.2 106 50.4 248 120 330.8-45.4 373.4-112.9z" + } + }, + "free": [ + "brands" + ] + }, + "connectdevelop": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f20e", + "label": "Connect Develop", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M550.5 241l-50.089-86.786c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.733-14.732-15.001l-55.447-95.893c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.268-15.268-15.268-4.821 0-8.839 2.143-11.786 5.625H299.518C296.839 18.143 292.821 16 288 16s-8.839 2.143-11.518 5.625H170.411C167.464 18.143 163.447 16 158.625 16c-8.303 0-15.268 6.696-15.268 15.268 0 1.607.536 3.482 1.072 4.821l-55.983 97.233c-5.356 2.41-9.107 7.5-9.107 13.661 0 .535.268 1.071.268 1.607l-53.304 92.143c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.393 12.054 15l55.179 95.358c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.393 12.054 14.732l51.697 89.732c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.268 15.268 15.268 4.821 0 8.839-2.143 11.518-5.357h106.875C279.161 493.857 283.447 496 288 496s8.839-2.143 11.518-5.357h107.143c2.678 2.946 6.696 4.821 10.982 4.821 8.571 0 15.268-6.964 15.268-15.268 0-1.607-.267-2.946-.803-4.285l51.697-90.268c6.964-1.339 12.054-7.5 12.054-14.732 0-1.607-.268-3.214-.804-4.821l54.911-95.358c6.964-1.339 12.322-7.5 12.322-15-.002-7.232-5.092-13.393-11.788-14.732zM153.535 450.732l-43.66-75.803h43.66v75.803zm0-83.839h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.999-47.41v50.624zm0-62.411l-50.357 53.304c-1.339-.536-2.679-1.34-4.018-1.607L43.447 259.75c.535-1.339.535-2.679.535-4.018s0-2.41-.268-3.482l51.965-90c2.679-.268 5.357-1.072 7.768-2.679l50.089 51.965v92.946zm0-102.322l-45.803-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.928-15.804v72.053zm0-80.625l-43.66 15.804 43.66-75.536v59.732zm326.519 39.108l.804 1.339L445.5 329.125l-63.75-67.232 98.036-101.518.268.268zM291.75 355.107l11.518 11.786H280.5l11.25-11.786zm-.268-11.25l-83.303-85.446 79.553-84.375 83.036 87.589-79.286 82.232zm5.357 5.893l79.286-82.232 67.5 71.25-5.892 28.125H313.714l-16.875-17.143zM410.411 44.393c1.071.536 2.142 1.072 3.482 1.34l57.857 100.714v.536c0 2.946.803 5.624 2.143 7.767L376.393 256l-83.035-87.589L410.411 44.393zm-9.107-2.143L287.732 162.518l-57.054-60.268 166.339-60h4.287zm-123.483 0c2.678 2.678 6.16 4.285 10.179 4.285s7.5-1.607 10.179-4.285h75L224.786 95.821 173.893 42.25h103.928zm-116.249 5.625l1.071-2.142a33.834 33.834 0 0 0 2.679-.804l51.161 53.84-54.911 19.821V47.875zm0 79.286l60.803-21.964 59.732 63.214-79.553 84.107-40.982-42.053v-83.304zm0 92.678L198 257.607l-36.428 38.304v-76.072zm0 87.858l42.053-44.464 82.768 85.982-17.143 17.678H161.572v-59.196zm6.964 162.053c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.732h99.91l-91.607 94.821h-1.339zm129.911 0c-2.679-2.41-6.428-4.285-10.447-4.285s-7.767 1.875-10.447 4.285h-96.429l91.607-94.821h38.304l91.607 94.821H298.447zm120-11.786l-4.286 7.5c-1.339.268-2.41.803-3.482 1.339l-89.196-91.875h114.376l-17.412 83.036zm12.856-22.232l12.858-60.803h21.964l-34.822 60.803zm34.822-68.839h-20.357l4.553-21.16 17.143 18.214c-.535.803-1.071 1.874-1.339 2.946zm66.161-107.411l-55.447 96.697c-1.339.535-2.679 1.071-4.018 1.874l-20.625-21.964 34.554-163.928 45.803 79.286c-.267 1.339-.803 2.678-.803 4.285 0 1.339.268 2.411.536 3.75z" + } + }, + "free": [ + "brands" + ] + }, + "contao": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f26d", + "label": "Contao", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z" + } + }, + "free": [ + "brands" + ] + }, + "cookie": { + "aliases": { + "unicodes": { + "composite": [ + "1f36a" + ], + "secondary": [ + "10f563" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baked good", + "chips", + "chocolate", + "cookie", + "dessert", + "eat", + "snack", + "sweet", + "treat" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f563", + "label": "Cookie", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M231.2 17c-22.1-3.1-44.6 .9-64.4 11.4l-74 39.5C73.1 78.4 57.2 94.9 47.4 115L10.7 190.6c-9.8 20.1-13 42.9-9.1 64.9l14.5 82.8c3.9 22.1 14.6 42.3 30.7 57.9l60.3 58.4c16.1 15.6 36.6 25.6 58.7 28.7l83 11.7c22.1 3.1 44.6-.9 64.4-11.4l74-39.5c19.7-10.5 35.6-27 45.4-47.2l36.7-75.5c9.8-20.1 13-42.9 9.1-64.9l-14.6-82.8c-3.9-22.1-14.6-42.3-30.7-57.9L372.9 57.5c-16.1-15.6-36.6-25.6-58.7-28.7L231.2 17zM192 144a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM128 336a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm224-64a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "cookie-bite": { + "aliases": { + "unicodes": { + "secondary": [ + "10f564" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baked good", + "bitten", + "chips", + "chocolate", + "eat", + "snack", + "sweet", + "treat" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f564", + "label": "Cookie Bite", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M241.5 27.6c-.8-5.4-4.9-9.8-10.3-10.6c-22.1-3.1-44.6 .9-64.4 11.4l-74 39.5C73.1 78.4 57.2 94.9 47.4 115L10.7 190.6c-9.8 20.1-13 42.9-9.1 64.9l14.5 82.8c3.9 22.1 14.6 42.3 30.7 57.9l60.3 58.4c16.1 15.6 36.6 25.6 58.7 28.7l83 11.7c22.1 3.1 44.6-.9 64.4-11.4l74-39.5c19.7-10.5 35.6-27 45.4-47.2l36.7-75.5c9.8-20.1 13-42.9 9.1-64.9c-.9-5.3-5.3-9.3-10.6-10.1c-51.5-8.2-92.8-47.1-104.5-97.4c-1.8-7.6-8-13.4-15.7-14.6c-54.6-8.7-97.7-52-106.2-106.8zM192 144a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM128 336a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm224-64a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "copy": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0c5" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clone", + "duplicate", + "file", + "files-o", + "paper", + "paste" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0c5", + "label": "Copy", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 0c-35.3 0-64 28.7-64 64V288c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H224zM64 160c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V384H288v64H64V224h64V160H64z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 0c-35.3 0-64 28.7-64 64V288c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H224zM64 160c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V384H304v64c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V224c0-8.8 7.2-16 16-16h64V160H64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "copyright": { + "aliases": { + "unicodes": { + "composite": [ + "a9" + ], + "secondary": [ + "10f1f9" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "brand", + "c", + "copyright", + "mark", + "register", + "trademark" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1f9", + "label": "Copyright", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM199.4 312.6c31.2 31.2 81.9 31.2 113.1 0c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9c-50 50-131 50-181 0s-50-131 0-181s131-50 181 0c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0c-31.2-31.2-81.9-31.2-113.1 0s-31.2 81.9 0 113.1z" + }, + "regular": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM199.4 312.6c-31.2-31.2-31.2-81.9 0-113.1s81.9-31.2 113.1 0c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9c-50-50-131-50-181 0s-50 131 0 181s131 50 181 0c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0c-31.2 31.2-81.9 31.2-113.1 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "cotton-bureau": { + "changes": [ + "5.10.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing", + "t-shirts", + "tshirts" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f89e", + "label": "Cotton Bureau", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M474.31 330.41c-23.66 91.85-94.23 144.59-201.9 148.35V429.6c0-48 26.41-74.39 74.39-74.39 62 0 99.2-37.2 99.2-99.21 0-61.37-36.53-98.28-97.38-99.06-33-69.32-146.5-64.65-177.24 0C110.52 157.72 74 194.63 74 256c0 62.13 37.27 99.41 99.4 99.41 48 0 74.55 26.23 74.55 74.39V479c-134.43-5-211.1-85.07-211.1-223 0-141.82 81.35-223.2 223.2-223.2 114.77 0 189.84 53.2 214.69 148.81H500C473.88 71.51 388.22 8 259.82 8 105 8 12 101.19 12 255.82 12 411.14 105.19 504.34 259.82 504c128.27 0 213.87-63.81 239.67-173.59zM357 182.33c41.37 3.45 64.2 29 64.2 73.67 0 48-26.43 74.41-74.4 74.41-28.61 0-49.33-9.59-61.59-27.33 83.06-16.55 75.59-99.67 71.79-120.75zm-81.68 97.36c-2.46-10.34-16.33-87 56.23-97 2.27 10.09 16.52 87.11-56.26 97zM260 132c28.61 0 49 9.67 61.44 27.61-28.36 5.48-49.36 20.59-61.59 43.45-12.23-22.86-33.23-38-61.6-43.45 12.41-17.69 33.27-27.35 61.57-27.35zm-71.52 50.72c73.17 10.57 58.91 86.81 56.49 97-72.41-9.84-59-86.95-56.25-97zM173.2 330.41c-48 0-74.4-26.4-74.4-74.41 0-44.36 22.86-70 64.22-73.67-6.75 37.2-1.38 106.53 71.65 120.75-12.14 17.63-32.84 27.3-61.14 27.3zm53.21 12.39A80.8 80.8 0 0 0 260 309.25c7.77 14.49 19.33 25.54 33.82 33.55a80.28 80.28 0 0 0-33.58 33.83c-8-14.5-19.07-26.23-33.56-33.83z" + } + }, + "free": [ + "brands" + ] + }, + "couch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4b8" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chair", + "cushion", + "furniture", + "relax", + "sofa" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4b8", + "label": "Couch", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 160C64 89.3 121.3 32 192 32H448c70.7 0 128 57.3 128 128v33.6c-36.5 7.4-64 39.7-64 78.4v48H128V272c0-38.7-27.5-71-64-78.4V160zM544 272c0-20.9 13.4-38.7 32-45.3c5-1.8 10.4-2.7 16-2.7c26.5 0 48 21.5 48 48V448c0 17.7-14.3 32-32 32H576c-17.7 0-32-14.3-32-32H96c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V272c0-26.5 21.5-48 48-48c5.6 0 11 1 16 2.7c18.6 6.6 32 24.4 32 45.3v48 32h32H512h32V320 272z" + } + }, + "free": [ + "solid" + ] + }, + "cow": { + "aliases": { + "unicodes": { + "composite": [ + "1f404" + ], + "secondary": [ + "10f6c8" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agriculture", + "animal", + "beef", + "bovine", + "co", + "cow", + "farm", + "fauna", + "livestock", + "mammal", + "milk", + "moo" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6c8", + "label": "Cow", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 224v32V416c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V327.8c9.9 6.6 20.6 12 32 16.1V368c0 8.8 7.2 16 16 16s16-7.2 16-16V351.1c5.3 .6 10.6 .9 16 .9s10.7-.3 16-.9V368c0 8.8 7.2 16 16 16s16-7.2 16-16V343.8c11.4-4 22.1-9.4 32-16.1V416c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V256l32 32v49.5c0 9.5 2.8 18.7 8.1 26.6L530 427c8.8 13.1 23.5 21 39.3 21c22.5 0 41.9-15.9 46.3-38l20.3-101.6c2.6-13-.3-26.5-8-37.3l-3.9-5.5V184c0-13.3-10.7-24-24-24s-24 10.7-24 24v14.4l-52.9-74.1C496 86.5 452.4 64 405.9 64H272 256 192 144C77.7 64 24 117.7 24 184v54C9.4 249.8 0 267.8 0 288v17.6c0 8 6.4 14.4 14.4 14.4C46.2 320 72 294.2 72 262.4V256 224 184c0-24.3 12.1-45.8 30.5-58.9C98.3 135.9 96 147.7 96 160v64zM560 336a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM166.6 166.6c-4.2-4.2-6.6-10-6.6-16c0-12.5 10.1-22.6 22.6-22.6H361.4c12.5 0 22.6 10.1 22.6 22.6c0 6-2.4 11.8-6.6 16l-23.4 23.4C332.2 211.8 302.7 224 272 224s-60.2-12.2-81.9-33.9l-23.4-23.4z" + } + }, + "free": [ + "solid" + ] + }, + "cpanel": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f388", + "label": "cPanel", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M210.3 220.2c-5.6-24.8-26.9-41.2-51-41.2h-37c-7.1 0-12.5 4.5-14.3 10.9L73.1 320l24.7-.1c6.8 0 12.3-4.5 14.2-10.7l25.8-95.7h19.8c8.4 0 16.2 5.6 18.3 14.8 2.5 10.9-5.9 22.6-18.3 22.6h-10.3c-7 0-12.5 4.6-14.3 10.8l-6.4 23.8h32c37.2 0 58.3-36.2 51.7-65.3zm-156.5 28h18.6c6.9 0 12.4-4.4 14.3-10.9l6.2-23.6h-40C30 213.7 9 227.8 1.7 254.8-7 288.6 18.5 320 52 320h12.4l7.1-26.1c1.2-4.4-2.2-8.3-6.4-8.3H53.8c-24.7 0-24.9-37.4 0-37.4zm247.5-34.8h-77.9l-3.5 13.4c-2.4 9.6 4.5 18.5 14.2 18.5h57.5c4 0 2.4 4.3 2.1 5.3l-8.6 31.8c-.4 1.4-.9 5.3-5.5 5.3h-34.9c-5.3 0-5.3-7.9 0-7.9h21.6c6.8 0 12.3-4.6 14.2-10.8l3.5-13.2h-48.4c-39.2 0-43.6 63.8-.7 63.8l57.5.2c11.2 0 20.6-7.2 23.4-17.8l14-51.8c4.8-19.2-9.7-36.8-28.5-36.8zM633.1 179h-18.9c-4.9 0-9.2 3.2-10.4 7.9L568.2 320c20.7 0 39.8-13.8 44.9-34.5l26.5-98.2c1.2-4.3-2-8.3-6.5-8.3zm-236.3 34.7v.1h-48.3l-26.2 98c-1.2 4.4 2.2 8.3 6.4 8.3h18.9c4.8 0 9.2-3 10.4-7.8l17.2-64H395c12.5 0 21.4 11.8 18.1 23.4l-10.6 40c-1.2 4.3 1.9 8.3 6.4 8.3H428c4.6 0 9.1-2.9 10.3-7.8l8.8-33.1c9-33.1-15.9-65.4-50.3-65.4zm98.3 74.6c-3.6 0-6-3.4-5.1-6.7l8-30c.9-3.9 3.7-6 7.8-6h32.9c2.6 0 4.6 2.4 3.9 5.1l-.7 2.6c-.6 2-1.9 3-3.9 3h-21.6c-7 0-12.6 4.6-14.2 10.8l-3.5 13h53.4c10.5 0 20.3-6.6 23.2-17.6l3.2-12c4.9-19.1-9.3-36.8-28.3-36.8h-47.3c-17.9 0-33.8 12-38.6 29.6l-10.8 40c-5 17.7 8.3 36.7 28.3 36.7h66.7c6.8 0 12.3-4.5 14.2-10.7l5.7-21z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons": { + "changes": [ + "4.4.0", + "5.0.0", + "5.0.11", + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f25e", + "label": "Creative Commons", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M245.83 214.87l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.05 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.56 8.05C104.74 8.05 0 123.11 0 256.05c0 138.49 113.6 248 247.56 248 129.93 0 248.44-100.87 248.44-248 0-137.87-106.62-248-248.44-248zm.87 450.81c-112.54 0-203.7-93.04-203.7-202.81 0-105.42 85.43-203.27 203.72-203.27 112.53 0 202.82 89.46 202.82 203.26-.01 121.69-99.68 202.82-202.84 202.82z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-by": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4e7", + "label": "Creative Commons Attribution", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-nc": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4e8", + "label": "Creative Commons Noncommercial", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-nc-eu": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4e9", + "label": "Creative Commons Noncommercial (Euro Sign)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4.9.4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-nc-jp": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4ea", + "label": "Creative Commons Noncommercial (Yen Sign)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-nd": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4eb", + "label": "Creative Commons No Derivative Works", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-pd": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4ec", + "label": "Creative Commons Public Domain", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-pd-alt": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4ed", + "label": "Alternate Creative Commons Public Domain", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C104.7 8 0 123.1 0 256c0 138.5 113.6 248 247.6 248C377.5 504 496 403.1 496 256 496 118.1 389.4 8 247.6 8zm.8 450.8c-112.5 0-203.7-93-203.7-202.8 0-105.4 85.5-203.3 203.7-203.3 112.6 0 202.9 89.5 202.8 203.3 0 121.7-99.6 202.8-202.8 202.8zM316.7 186h-53.2v137.2h53.2c21.4 0 70-5.1 70-68.6 0-63.4-48.6-68.6-70-68.6zm.8 108.5h-19.9v-79.7l19.4-.1c3.8 0 35-2.1 35 39.9 0 24.6-10.5 39.9-34.5 39.9zM203.7 186h-68.2v137.3h34.6V279h27c54.1 0 57.1-37.5 57.1-46.5 0-31-16.8-46.5-50.5-46.5zm-4.9 67.3h-29.2v-41.6h28.3c30.9 0 28.8 41.6.9 41.6z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-remix": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4ee", + "label": "Creative Commons Remix", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4.4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-sa": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4ef", + "label": "Creative Commons Share Alike", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-sampling": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f0", + "label": "Creative Commons Sampling", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9.6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9.5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6.5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6.6 0 10.6.7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-sampling-plus": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f1", + "label": "Creative Commons Sampling +", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1.4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2.2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1.1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4.3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-share": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f2", + "label": "Creative Commons Share", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z" + } + }, + "free": [ + "brands" + ] + }, + "creative-commons-zero": { + "changes": [ + "5.0.11", + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f3", + "label": "Creative Commons CC0", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8.1-113.8-90.2-203.3-202.8-203.3zm-.4 60.5c-81.9 0-102.5 77.3-102.5 142.8 0 65.5 20.6 142.8 102.5 142.8S350.5 321.5 350.5 256c0-65.5-20.6-142.8-102.5-142.8zm0 53.9c3.3 0 6.4.5 9.2 1.2 5.9 5.1 8.8 12.1 3.1 21.9l-54.5 100.2c-1.7-12.7-1.9-25.1-1.9-34.4 0-28.8 2-88.9 44.1-88.9zm40.8 46.2c2.9 15.4 3.3 31.4 3.3 42.7 0 28.9-2 88.9-44.1 88.9-13.5 0-32.6-7.7-20.1-26.4l60.9-105.2z" + } + }, + "free": [ + "brands" + ] + }, + "credit-card": { + "aliases": { + "names": [ + "credit-card-alt" + ], + "unicodes": { + "composite": [ + "1f4b3", + "f283" + ], + "secondary": [ + "10f09d" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "card", + "checkout", + "credit", + "credit card", + "credit-card-alt", + "debit", + "money", + "payment", + "purchase" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f09d", + "label": "Credit Card", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96v32H576V96c0-35.3-28.7-64-64-64H64zM576 224H0V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V224zM112 352h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm112 16c0-8.8 7.2-16 16-16H368c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16z" + }, + "regular": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M512 80c8.8 0 16 7.2 16 16v32H48V96c0-8.8 7.2-16 16-16H512zm16 144V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V224H528zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm56 304c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c13.3 0 24-10.7 24-24s-10.7-24-24-24H120zm128 0c-13.3 0-24 10.7-24 24s10.7 24 24 24H360c13.3 0 24-10.7 24-24s-10.7-24-24-24H248z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "critical-role": { + "changes": [ + "5.4.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "game", + "gaming", + "tabletop" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f6c9", + "label": "Critical Role", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M225.82 0c.26.15 216.57 124.51 217.12 124.72 3 1.18 3.7 3.46 3.7 6.56q-.11 125.17 0 250.36a5.88 5.88 0 0 1-3.38 5.78c-21.37 12-207.86 118.29-218.93 124.58h-3C142 466.34 3.08 386.56 2.93 386.48a3.29 3.29 0 0 1-1.88-3.24c0-.87 0-225.94-.05-253.1a5 5 0 0 1 2.93-4.93C27.19 112.11 213.2 6 224.07 0zM215.4 20.42l-.22-.16Q118.06 75.55 21 130.87c0 .12.08.23.13.35l30.86 11.64c-7.71 6-8.32 6-10.65 5.13-.1 0-24.17-9.28-26.8-10v230.43c.88-1.41 64.07-110.91 64.13-111 1.62-2.82 3-1.92 9.12-1.52 1.4.09 1.48.22.78 1.42-41.19 71.33-36.4 63-67.48 116.94-.81 1.4-.61 1.13 1.25 1.13h186.5c1.44 0 1.69-.23 1.7-1.64v-8.88c0-1.34 2.36-.81-18.37-1-7.46-.07-14.14-3.22-21.38-12.7-7.38-9.66-14.62-19.43-21.85-29.21-2.28-3.08-3.45-2.38-16.76-2.38-1.75 0-1.78 0-1.76 1.82.29 26.21.15 25.27 1 32.66.52 4.37 2.16 4.2 9.69 4.81 3.14.26 3.88 4.08.52 4.92-1.57.39-31.6.51-33.67-.1a2.42 2.42 0 0 1 .3-4.73c3.29-.76 6.16.81 6.66-4.44 1.3-13.66 1.17-9 1.1-79.42 0-10.82-.35-12.58-5.36-13.55-1.22-.24-3.54-.16-4.69-.55-2.88-1-2-4.84 1.77-4.85 33.67 0 46.08-1.07 56.06 4.86 7.74 4.61 12 11.48 12.51 20.4.88 14.59-6.51 22.35-15 32.59a1.46 1.46 0 0 0 0 2.22c2.6 3.25 5 6.63 7.71 9.83 27.56 33.23 24.11 30.54 41.28 33.06.89.13 1-.42 1-1.15v-11c0-1 .32-1.43 1.41-1.26a72.37 72.37 0 0 0 23.58-.3c1.08-.15 1.5.2 1.48 1.33 0 .11.88 26.69.87 26.8-.05 1.52.67 1.62 1.89 1.62h186.71Q386.51 304.6 346 234.33c2.26-.66-.4 0 6.69-1.39 2-.39 2.05-.41 3.11 1.44 7.31 12.64 77.31 134 77.37 134.06V138c-1.72.5-103.3 38.72-105.76 39.68-1.08.42-1.55.2-1.91-.88-.63-1.9-1.34-3.76-2.09-5.62-.32-.79-.09-1.13.65-1.39.1 0 95.53-35.85 103-38.77-65.42-37.57-130.56-75-196-112.6l86.82 150.39-.28.33c-9.57-.9-10.46-1.6-11.8-3.94-1-1.69-73.5-127.71-82-142.16-9.1 14.67-83.56 146.21-85.37 146.32-2.93.17-5.88.08-9.25.08q43.25-74.74 86.18-149zm51.93 129.92a37.68 37.68 0 0 0 5.54-.85c1.69-.3 2.53.2 2.6 1.92 0 .11.07 19.06-.86 20.45s-1.88 1.22-2.6-.19c-5-9.69 6.22-9.66-39.12-12-.7 0-1 .23-1 .93 0 .13 3.72 122 3.73 122.11 0 .89.52 1.2 1.21 1.51a83.92 83.92 0 0 1 8.7 4.05c7.31 4.33 11.38 10.84 12.41 19.31 1.44 11.8-2.77 35.77-32.21 37.14-2.75.13-28.26 1.08-34.14-23.25-4.66-19.26 8.26-32.7 19.89-36.4a2.45 2.45 0 0 0 2-2.66c.1-5.63 3-107.1 3.71-121.35.05-1.08-.62-1.16-1.35-1.15-32.35.52-36.75-.34-40.22 8.52-2.42 6.18-4.14 1.32-3.95.23q1.59-9 3.31-18c.4-2.11 1.43-2.61 3.43-1.86 5.59 2.11 6.72 1.7 37.25 1.92 1.73 0 1.78-.08 1.82-1.85.68-27.49.58-22.59 1-29.55a2.69 2.69 0 0 0-1.63-2.8c-5.6-2.91-8.75-7.55-8.9-13.87-.35-14.81 17.72-21.67 27.38-11.51 6.84 7.19 5.8 18.91-2.45 24.15a4.35 4.35 0 0 0-2.22 4.34c0 .59-.11-4.31 1 30.05 0 .9.43 1.12 1.24 1.11.1 0 23-.09 34.47-.37zM68.27 141.7c19.84-4.51 32.68-.56 52.49 1.69 2.76.31 3.74 1.22 3.62 4-.21 5-1.16 22.33-1.24 23.15a2.65 2.65 0 0 1-1.63 2.34c-4.06 1.7-3.61-4.45-4-7.29-3.13-22.43-73.87-32.7-74.63 25.4-.31 23.92 17 53.63 54.08 50.88 27.24-2 19-20.19 24.84-20.47a2.72 2.72 0 0 1 3 3.36c-1.83 10.85-3.42 18.95-3.45 19.15-1.54 9.17-86.7 22.09-93.35-42.06-2.71-25.85 10.44-53.37 40.27-60.15zm80 87.67h-19.49a2.57 2.57 0 0 1-2.66-1.79c2.38-3.75 5.89.92 5.86-6.14-.08-25.75.21-38 .23-40.1 0-3.42-.53-4.65-3.32-4.94-7-.72-3.11-3.37-1.11-3.38 11.84-.1 22.62-.18 30.05.72 8.77 1.07 16.71 12.63 7.93 22.62-2 2.25-4 4.42-6.14 6.73.95 1.15 6.9 8.82 17.28 19.68 2.66 2.78 6.15 3.51 9.88 3.13a2.21 2.21 0 0 0 2.23-2.12c.3-3.42.26 4.73.45-40.58 0-5.65-.34-6.58-3.23-6.83-3.95-.35-4-2.26-.69-3.37l19.09-.09c.32 0 4.49.53 1 3.38 0 .05-.16 0-.24 0-3.61.26-3.94 1-4 4.62-.27 43.93.07 40.23.41 42.82.11.84.27 2.23 5.1 2.14 2.49 0 3.86 3.37 0 3.4-10.37.08-20.74 0-31.11.07-10.67 0-13.47-6.2-24.21-20.82-1.6-2.18-8.31-2.36-8.2-.37.88 16.47 0 17.78 4 17.67 4.75-.1 4.73 3.57.83 3.55zm275-10.15c-1.21 7.13.17 10.38-5.3 10.34-61.55-.42-47.82-.22-50.72-.31a18.4 18.4 0 0 1-3.63-.73c-2.53-.6 1.48-1.23-.38-5.6-1.43-3.37-2.78-6.78-4.11-10.19a1.94 1.94 0 0 0-2-1.44 138 138 0 0 0-14.58.07 2.23 2.23 0 0 0-1.62 1.06c-1.58 3.62-3.07 7.29-4.51 11-1.27 3.23 7.86 1.32 12.19 2.16 3 .57 4.53 3.72.66 3.73H322.9c-2.92 0-3.09-3.15-.74-3.21a6.3 6.3 0 0 0 5.92-3.47c1.5-3 2.8-6 4.11-9.09 18.18-42.14 17.06-40.17 18.42-41.61a1.83 1.83 0 0 1 3 0c2.93 3.34 18.4 44.71 23.62 51.92 2 2.7 5.74 2 6.36 2 3.61.13 4-1.11 4.13-4.29.09-1.87.08 1.17.07-41.24 0-4.46-2.36-3.74-5.55-4.27-.26 0-2.56-.63-.08-3.06.21-.2-.89-.24 21.7-.15 2.32 0 5.32 2.75-1.21 3.45a2.56 2.56 0 0 0-2.66 2.83c-.07 1.63-.19 38.89.29 41.21a3.06 3.06 0 0 0 3.23 2.43c13.25.43 14.92.44 16-3.41 1.67-5.78 4.13-2.52 3.73-.19zm-104.72 64.37c-4.24 0-4.42-3.39-.61-3.41 35.91-.16 28.11.38 37.19-.65 1.68-.19 2.38.24 2.25 1.89-.26 3.39-.64 6.78-1 10.16-.25 2.16-3.2 2.61-3.4-.15-.38-5.31-2.15-4.45-15.63-5.08-1.58-.07-1.64 0-1.64 1.52V304c0 1.65 0 1.6 1.62 1.47 3.12-.25 10.31.34 15.69-1.52.47-.16 3.3-1.79 3.07 1.76 0 .21-.76 10.35-1.18 11.39-.53 1.29-1.88 1.51-2.58.32-1.17-2 0-5.08-3.71-5.3-15.42-.9-12.91-2.55-12.91 6 0 12.25-.76 16.11 3.89 16.24 16.64.48 14.4 0 16.43-5.71.84-2.37 3.5-1.77 3.18.58-.44 3.21-.85 6.43-1.23 9.64 0 .36-.16 2.4-4.66 2.39-37.16-.08-34.54-.19-35.21-.31-2.72-.51-2.2-3 .22-3.45 1.1-.19 4 .54 4.16-2.56 2.44-56.22-.07-51.34-3.91-51.33zm-.41-109.52c2.46.61 3.13 1.76 2.95 4.65-.33 5.3-.34 9-.55 9.69-.66 2.23-3.15 2.12-3.34-.27-.38-4.81-3.05-7.82-7.57-9.15-26.28-7.73-32.81 15.46-27.17 30.22 5.88 15.41 22 15.92 28.86 13.78 5.92-1.85 5.88-6.5 6.91-7.58 1.23-1.3 2.25-1.84 3.12 1.1 0 .1.57 11.89-6 12.75-1.6.21-19.38 3.69-32.68-3.39-21-11.19-16.74-35.47-6.88-45.33 14-14.06 39.91-7.06 42.32-6.47zM289.8 280.14c3.28 0 3.66 3 .16 3.43-2.61.32-5-.42-5 5.46 0 2-.19 29.05.4 41.45.11 2.29 1.15 3.52 3.44 3.65 22 1.21 14.95-1.65 18.79-6.34 1.83-2.24 2.76.84 2.76 1.08.35 13.62-4 12.39-5.19 12.4l-38.16-.19c-1.93-.23-2.06-3-.42-3.38 2-.48 4.94.4 5.13-2.8 1-15.87.57-44.65.34-47.81-.27-3.77-2.8-3.27-5.68-3.71-2.47-.38-2-3.22.34-3.22 1.45-.02 17.97-.03 23.09-.02zm-31.63-57.79c.07 4.08 2.86 3.46 6 3.58 2.61.1 2.53 3.41-.07 3.43-6.48 0-13.7 0-21.61-.06-3.84 0-3.38-3.35 0-3.37 4.49 0 3.24 1.61 3.41-45.54 0-5.08-3.27-3.54-4.72-4.23-2.58-1.23-1.36-3.09.41-3.15 1.29 0 20.19-.41 21.17.21s1.87 1.65-.42 2.86c-1 .52-3.86-.28-4.15 2.47 0 .21-.82 1.63-.07 43.8zm-36.91 274.27a2.93 2.93 0 0 0 3.26 0c17-9.79 182-103.57 197.42-112.51-.14-.43 11.26-.18-181.52-.27-1.22 0-1.57.37-1.53 1.56 0 .1 1.25 44.51 1.22 50.38a28.33 28.33 0 0 1-1.36 7.71c-.55 1.83.38-.5-13.5 32.23-.73 1.72-1 2.21-2-.08-4.19-10.34-8.28-20.72-12.57-31a23.6 23.6 0 0 1-2-10.79c.16-2.46.8-16.12 1.51-48 0-1.95 0-2-2-2h-183c2.58 1.63 178.32 102.57 196 112.76zm-90.9-188.75c0 2.4.36 2.79 2.76 3 11.54 1.17 21 3.74 25.64-7.32 6-14.46 2.66-34.41-12.48-38.84-2-.59-16-2.76-15.94 1.51.05 8.04.01 11.61.02 41.65zm105.75-15.05c0 2.13 1.07 38.68 1.09 39.13.34 9.94-25.58 5.77-25.23-2.59.08-2 1.37-37.42 1.1-39.43-14.1 7.44-14.42 40.21 6.44 48.8a17.9 17.9 0 0 0 22.39-7.07c4.91-7.76 6.84-29.47-5.43-39a2.53 2.53 0 0 1-.36.12zm-12.28-198c-9.83 0-9.73 14.75-.07 14.87s10.1-14.88.07-14.91zm-80.15 103.83c0 1.8.41 2.4 2.17 2.58 13.62 1.39 12.51-11 12.16-13.36-1.69-11.22-14.38-10.2-14.35-7.81.05 4.5-.03 13.68.02 18.59zm212.32 6.4l-6.1-15.84c-2.16 5.48-4.16 10.57-6.23 15.84z" + } + }, + "free": [ + "brands" + ] + }, + "crop": { + "aliases": { + "unicodes": { + "secondary": [ + "10f125" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "frame", + "mask", + "resize", + "shrink" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f125", + "label": "Crop", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 109.3l54.6-54.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L402.7 64 160 64v64l178.7 0L128 338.7V32c0-17.7-14.3-32-32-32S64 14.3 64 32V64H32C14.3 64 0 78.3 0 96s14.3 32 32 32H64V384c0 35.3 28.7 64 64 64H352V384H173.3L384 173.3 384 480c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H448l0-274.7z" + } + }, + "free": [ + "solid" + ] + }, + "crop-simple": { + "aliases": { + "names": [ + "crop-alt" + ], + "unicodes": { + "secondary": [ + "10f565" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "frame", + "mask", + "resize", + "shrink" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f565", + "label": "Crop Simple", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 32c0-17.7-14.3-32-32-32S64 14.3 64 32V64H32C14.3 64 0 78.3 0 96s14.3 32 32 32H64V384c0 35.3 28.7 64 64 64H352V384H128V32zM384 480c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H448l0-256c0-35.3-28.7-64-64-64L160 64v64l224 0 0 352z" + } + }, + "free": [ + "solid" + ] + }, + "cross": { + "aliases": { + "unicodes": { + "composite": [ + "1f547", + "271d" + ], + "secondary": [ + "10f654" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Christian", + "Heavy Latin Cross", + "catholicism", + "christianity", + "church", + "cross", + "jesus", + "latin cross", + "religion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f654", + "label": "Cross", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M176 0c-26.5 0-48 21.5-48 48v80H48c-26.5 0-48 21.5-48 48v32c0 26.5 21.5 48 48 48h80V464c0 26.5 21.5 48 48 48h32c26.5 0 48-21.5 48-48V256h80c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H256V48c0-26.5-21.5-48-48-48H176z" + } + }, + "free": [ + "solid" + ] + }, + "crosshairs": { + "aliases": { + "unicodes": { + "secondary": [ + "10f05b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aim", + "bullseye", + "gpd", + "picker", + "position" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f05b", + "label": "Crosshairs", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c17.7 0 32 14.3 32 32V42.4c93.7 13.9 167.7 88 181.6 181.6H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H469.6c-13.9 93.7-88 167.7-181.6 181.6V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V469.6C130.3 455.7 56.3 381.7 42.4 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H42.4C56.3 130.3 130.3 56.3 224 42.4V32c0-17.7 14.3-32 32-32zM107.4 288c12.5 58.3 58.4 104.1 116.6 116.6V384c0-17.7 14.3-32 32-32s32 14.3 32 32v20.6c58.3-12.5 104.1-58.4 116.6-116.6H384c-17.7 0-32-14.3-32-32s14.3-32 32-32h20.6C392.1 165.7 346.3 119.9 288 107.4V128c0 17.7-14.3 32-32 32s-32-14.3-32-32V107.4C165.7 119.9 119.9 165.7 107.4 224H128c17.7 0 32 14.3 32 32s-14.3 32-32 32H107.4zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "crow": { + "aliases": { + "unicodes": { + "secondary": [ + "10f520" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "bullfrog", + "fauna", + "halloween", + "holiday", + "toad" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f520", + "label": "Crow", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M456 0c-48.6 0-88 39.4-88 88v29.2L12.5 390.6c-14 10.8-16.6 30.9-5.9 44.9s30.9 16.6 44.9 5.9L126.1 384H259.2l46.6 113.1c5 12.3 19.1 18.1 31.3 13.1s18.1-19.1 13.1-31.3L311.1 384H352c1.1 0 2.1 0 3.2 0l46.6 113.2c5 12.3 19.1 18.1 31.3 13.1s18.1-19.1 13.1-31.3l-42-102C484.9 354.1 544 280 544 192V128v-8l80.5-20.1c8.6-2.1 13.8-10.8 11.6-19.4C629 52 603.4 32 574 32H523.9C507.7 12.5 483.3 0 456 0zm0 64a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + }, + "free": [ + "solid" + ] + }, + "crown": { + "aliases": { + "unicodes": { + "composite": [ + "1f451" + ], + "secondary": [ + "10f521" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "award", + "clothing", + "crown", + "favorite", + "king", + "queen", + "royal", + "tiara" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f521", + "label": "Crown", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M309 106c11.4-7 19-19.7 19-34c0-22.1-17.9-40-40-40s-40 17.9-40 40c0 14.4 7.6 27 19 34L209.7 220.6c-9.1 18.2-32.7 23.4-48.6 10.7L72 160c5-6.7 8-15 8-24c0-22.1-17.9-40-40-40S0 113.9 0 136s17.9 40 40 40c.2 0 .5 0 .7 0L86.4 427.4c5.5 30.4 32 52.6 63 52.6H426.6c30.9 0 57.4-22.1 63-52.6L535.3 176c.2 0 .5 0 .7 0c22.1 0 40-17.9 40-40s-17.9-40-40-40s-40 17.9-40 40c0 9 3 17.3 8 24l-89.1 71.3c-15.9 12.7-39.5 7.5-48.6-10.7L309 106z" + } + }, + "free": [ + "solid" + ] + }, + "crutch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7f7" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cane", + "injury", + "mobility", + "wheelchair" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7f7", + "label": "Crutch", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M297.4 9.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0zm-96 144l-34.8 34.8c-12.9 12.9-21.9 29.2-25.8 47.1L116.8 342.9c-1.3 5.9-4.3 11.4-8.6 15.7L9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l98.8-98.8c4.3-4.3 9.7-7.3 15.7-8.6l107.6-23.9c17.8-4 34.1-12.9 47.1-25.8l34.7-34.7c0 0 .1-.1 .1-.1s.1-.1 .1-.1l74.6-74.6-45.3-45.3L336 242.7 269.3 176l52.1-52.1L276.1 78.6l-74.7 74.7zM224 221.3L290.7 288l-12.2 12.2c-4.3 4.3-9.7 7.3-15.7 8.6l-76.7 17 17-76.7c1.3-5.9 4.3-11.4 8.6-15.7L224 221.3z" + } + }, + "free": [ + "solid" + ] + }, + "cruzeiro-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Cruzeiro Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e152", + "label": "Cruzeiro Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 256c0-88.4 71.6-160 160-160c41 0 78.3 15.4 106.7 40.7c13.2 11.8 33.4 10.7 45.2-2.5s10.7-33.4-2.5-45.2c-39.6-35.5-92-57-149.3-57C100.3 32 0 132.3 0 256S100.3 480 224 480c57.4 0 109.7-21.6 149.3-57c13.2-11.8 14.3-32 2.5-45.2s-32-14.3-45.2-2.5C302.3 400.6 265 416 224 416V320v-8.7c0-12.8 10.4-23.3 23.3-23.3c4.6 0 9.1 1.4 12.9 3.9l10.1 6.7c14.7 9.8 34.6 5.8 44.4-8.9s5.8-34.6-8.9-44.4l-10.1-6.7c-14.3-9.6-31.2-14.7-48.4-14.7c-12.4 0-24.2 2.6-34.9 7.3c-5.5-4.5-12.6-7.3-20.3-7.3c-17.7 0-32 14.3-32 32v55.3V320v82.7C103.5 378 64 321.6 64 256z" + } + }, + "free": [ + "solid" + ] + }, + "css3": { + "changes": [ + "3.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "code" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f13c", + "label": "CSS 3 Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z" + } + }, + "free": [ + "brands" + ] + }, + "css3-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f38b", + "label": "Alternate CSS3 Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3.1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2.1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z" + } + }, + "free": [ + "brands" + ] + }, + "cube": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1b2" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "3d", + "block", + "dice", + "package", + "square", + "tesseract" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1b2", + "label": "Cube", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M234.5 5.7c13.9-5 29.1-5 43.1 0l192 68.6C495 83.4 512 107.5 512 134.6V377.4c0 27-17 51.2-42.5 60.3l-192 68.6c-13.9 5-29.1 5-43.1 0l-192-68.6C17 428.6 0 404.5 0 377.4V134.6c0-27 17-51.2 42.5-60.3l192-68.6zM256 66L82.3 128 256 190l173.7-62L256 66zm32 368.6l160-57.1v-188L288 246.6v188z" + } + }, + "free": [ + "solid" + ] + }, + "cubes": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1b3" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "3d", + "block", + "dice", + "package", + "pyramid", + "square", + "stack", + "tesseract" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1b3", + "label": "Cubes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M273.8 45.8l73.7 28L271.2 103 194.8 73.7l73.7-28c1.7-.7 3.6-.7 5.3 0zM128.1 87.1V192.6c-1.2 .4-2.4 .8-3.6 1.2L34.1 228.1c-20.5 7.8-34 27.4-34 49.3V389.5c0 20.9 12.4 39.8 31.5 48.3L122 477.5c13.5 5.9 28.9 5.9 42.4 0l106.8-46.9L378 477.5c13.5 5.9 28.9 5.9 42.4 0l90.4-39.7c19.1-8.4 31.5-27.3 31.5-48.3V277.4c0-21.9-13.5-41.5-34-49.3l-90.4-34.3c-1.2-.5-2.4-.9-3.6-1.2V87.1c0-21.9-13.5-41.5-34-49.3L289.9 3.5c-12-4.6-25.3-4.6-37.4 0L162.1 37.8c-20.5 7.8-34 27.4-34 49.3zM369.1 198.2l-77.5 29.4v-84l77.5-29.7v84.3zM145.8 236.1l73.7 28-76.4 29.3L66.8 264.1l73.7-28c1.7-.7 3.6-.7 5.3 0zm17.7 192.4V333.9l77.5-29.7v90.2l-77.5 34.1zm233-192.4c1.7-.7 3.6-.7 5.3 0l73.7 28-76.4 29.3-76.4-29.3 73.7-28zm96.1 160.3l-73 32.1V333.9l77.5-29.7v85.3c0 3-1.8 5.7-4.5 6.9z" + } + }, + "free": [ + "solid" + ] + }, + "cubes-stacked": { + "changes": [ + "6.1.0", + "6.1.1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "cubes", + "sugar" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4e6", + "label": "Cubes Stacked", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M192 64v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H224c-17.7 0-32 14.3-32 32zM82.7 207c-15.3 8.8-20.5 28.4-11.7 43.7l32 55.4c8.8 15.3 28.4 20.5 43.7 11.7l55.4-32c15.3-8.8 20.5-28.4 11.7-43.7l-32-55.4c-8.8-15.3-28.4-20.5-43.7-11.7L82.7 207zM288 192c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32H288zm64 160c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32H352zM160 384v64c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32zM32 352c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32H32z" + } + }, + "free": [ + "solid" + ] + }, + "cuttlefish": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f38c", + "label": "Cuttlefish", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 440, + 512 + ], + "width": 440, + "height": 512, + "path": "M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z" + } + }, + "free": [ + "brands" + ] + }, + "d": { + "aliases": { + "unicodes": { + "composite": [ + "64" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter D", + "Latin Small Letter D", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "44", + "label": "D", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32h96c123.7 0 224 100.3 224 224s-100.3 224-224 224H64c-35.3 0-64-28.7-64-64V96zm160 0H64V416h96c88.4 0 160-71.6 160-160s-71.6-160-160-160z" + } + }, + "free": [ + "solid" + ] + }, + "d-and-d": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f38d", + "label": "Dungeons & Dragons", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2.3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1.7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5.6-11.4 12.5-14.1 27.4-10.9 43.6.2 1.3.4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6.1.5.1 1.1.1 1.6 0 .3-.1.5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5.9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2.2-1.9.3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3.3.3.7.6 1 .9.3-.6.5-1.2.9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8.7-3.5.9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3.4-.4.9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6.2-.1.3-.2.4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8.9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9.8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7.3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3.2-.2.4-.3.6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8.6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1.1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8.4 4.7.8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1.7-52.3.3 2.2.4 4.3.9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8.1-50.9-10.6.7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6.2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3.8-2.4 2.3-4.6 4-6.6.6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2.5-1 1.1-2 1.9-3.3.5 4.2.6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1.6.5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7.4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6.5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2.4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3.3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5.8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8.8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3.6-4.5.8-9.2.1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6.1-23.3 1.3-.9.1-1.7.3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z" + } + }, + "free": [ + "brands" + ] + }, + "d-and-d-beyond": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "gaming", + "tabletop" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f6ca", + "label": "D&D Beyond", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M313.8 241.5c13.8 0 21-10.1 24.8-17.9-1-1.1-5-4.2-7.4-6.6-2.4 4.3-8.2 10.7-13.9 10.7-10.2 0-15.4-14.7-3.2-26.6-.5-.2-4.3-1.8-8 2.4 0-3 1-5.1 2.1-6.6-3.5 1.3-9.8 5.6-11.4 7.9.2-5.8 1.6-7.5.6-9l-.2-.2s-8.5 5.6-9.3 14.7c0 0 1.1-1.6 2.1-1.9.6-.3 1.3 0 .6 1.9-.2.6-5.8 15.7 5.1 26-.6-1.6-1.9-7.6 2.4-1.9-.3.1 5.8 7.1 15.7 7.1zm52.4-21.1c0-4-4.9-4.4-5.6-4.5 2 3.9.9 7.5.2 9 2.5-.4 5.4-1.6 5.4-4.5zm10.3 5.2c0-6.4-6.2-11.4-13.5-10.7 8 1.3 5.6 13.8-5 11.4 3.7-2.6 3.2-9.9-1.3-12.5 1.4 4.2-3 8.2-7.4 4.6-2.4-1.9-8-6.6-10.6-8.6-2.4-2.1-5.5-1-6.6-1.8-1.3-1.1-.5-3.8-2.2-5-1.6-.8-3-.3-4.8-1-1.6-.6-2.7-1.9-2.6-3.5-2.5 4.4 3.4 6.3 4.5 8.5 1 1.9-.8 4.8 4 8.5 14.8 11.6 9.1 8 10.4 18.1.6 4.3 4.2 6.7 6.4 7.4-2.1-1.9-2.9-6.4 0-9.3 0 13.9 19.2 13.3 23.1 6.4-2.4 1.1-7-.2-9-1.9 7.7 1 14.2-4.1 14.6-10.6zm-39.4-18.4c2 .8 1.6.7 6.4 4.5 10.2-24.5 21.7-15.7 22-15.5 2.2-1.9 9.8-3.8 13.8-2.7-2.4-2.7-7.5-6.2-13.3-6.2-4.7 0-7.4 2.2-8 1.3-.8-1.4 3.2-3.4 3.2-3.4-5.4.2-9.6 6.7-11.2 5.9-1.1-.5 1.4-3.7 1.4-3.7-5.1 2.9-9.3 9.1-10.2 13 4.6-5.8 13.8-9.8 19.7-9-10.5.5-19.5 9.7-23.8 15.8zm242.5 51.9c-20.7 0-40 1.3-50.3 2.1l7.4 8.2v77.2l-7.4 8.2c10.4.8 30.9 2.1 51.6 2.1 42.1 0 59.1-20.7 59.1-48.9 0-29.3-23.2-48.9-60.4-48.9zm-15.1 75.6v-53.3c30.1-3.3 46.8 3.8 46.8 26.3 0 25.6-21.4 30.2-46.8 27zM301.6 181c-1-3.4-.2-6.9 1.1-9.4 1 3 2.6 6.4 7.5 9-.5-2.4-.2-5.6.5-8-1.4-5.4 2.1-9.9 6.4-9.9 6.9 0 8.5 8.8 4.7 14.4 2.1 3.2 5.5 5.6 7.7 7.8 3.2-3.7 5.5-9.5 5.5-13.8 0-8.2-5.5-15.9-16.7-16.5-20-.9-20.2 16.6-20 18.9.5 5.2 3.4 7.8 3.3 7.5zm-.4 6c-.5 1.8-7 3.7-10.2 6.9 4.8-1 7-.2 7.8 1.8.5 1.4-.2 3.4-.5 5.6 1.6-1.8 7-5.5 11-6.2-1-.3-3.4-.8-4.3-.8 2.9-3.4 9.3-4.5 12.8-3.7-2.2-.2-6.7 1.1-8.5 2.6 1.6.3 3 .6 4.3 1.1-2.1.8-4.8 3.4-5.8 6.1 7-5 13.1 5.2 7 8.2.8.2 2.7 0 3.5-.5-.3 1.1-1.9 3-3 3.4 2.9 0 7-1.9 8.2-4.6 0 0-1.8.6-2.6-.2s.3-4.3.3-4.3c-2.3 2.9-3.4-1.3-1.3-4.2-1-.3-3.5-.6-4.6-.5 3.2-1.1 10.4-1.8 11.2-.3.6 1.1-1 3.4-1 3.4 4-.5 8.3 1.1 6.7 5.1 2.9-1.4 5.5-5.9 4.8-10.4-.3 1-1.6 2.4-2.9 2.7.2-1.4-1-2.2-1.9-2.6 1.7-9.6-14.6-14.2-14.1-23.9-1 1.3-1.8 5-.8 7.1 2.7 3.2 8.7 6.7 10.1 12.2-2.6-6.4-15.1-11.4-14.6-20.2-1.6 1.6-2.6 7.8-1.3 11 2.4 1.4 4.5 3.8 4.8 6.1-2.2-5.1-11.4-6.1-13.9-12.2-.6 2.2-.3 5 1 6.7 0 0-2.2-.8-7-.6 1.7.6 5.1 3.5 4.8 5.2zm25.9 7.4c-2.7 0-3.5-2.1-4.2-4.3 3.3 1.3 4.2 4.3 4.2 4.3zm38.9 3.7l-1-.6c-1.1-1-2.9-1.4-4.7-1.4-2.9 0-5.8 1.3-7.5 3.4-.8.8-1.4 1.8-2.1 2.6v15.7c3.5 2.6 7.1-2.9 3-7.2 1.5.3 4.6 2.7 5.1 3.2 0 0 2.6-.5 5-.5 2.1 0 3.9.3 5.6 1.1V196c-1.1.5-2.2 1-2.7 1.4zM79.9 305.9c17.2-4.6 16.2-18 16.2-19.9 0-20.6-24.1-25-37-25H3l8.3 8.6v29.5H0l11.4 14.6V346L3 354.6c61.7 0 73.8 1.5 86.4-5.9 6.7-4 9.9-9.8 9.9-17.6 0-5.1 2.6-18.8-19.4-25.2zm-41.3-27.5c20 0 29.6-.8 29.6 9.1v3c0 12.1-19 8.8-29.6 8.8zm0 59.2V315c12.2 0 32.7-2.3 32.7 8.8v4.5h.2c0 11.2-12.5 9.3-32.9 9.3zm101.2-19.3l23.1.2v-.2l14.1-21.2h-37.2v-14.9h52.4l-14.1-21v-.2l-73.5.2 7.4 8.2v77.1l-7.4 8.2h81.2l14.1-21.2-60.1.2zm214.7-60.1c-73.9 0-77.5 99.3-.3 99.3 77.9 0 74.1-99.3.3-99.3zm-.3 77.5c-37.4 0-36.9-55.3.2-55.3 36.8.1 38.8 55.3-.2 55.3zm-91.3-8.3l44.1-66.2h-41.7l6.1 7.2-20.5 37.2h-.3l-21-37.2 6.4-7.2h-44.9l44.1 65.8.2 19.4-7.7 8.2h42.6l-7.2-8.2zm-28.4-151.3c1.6 1.3 2.9 2.4 2.9 6.6v38.8c0 4.2-.8 5.3-2.7 6.4-.1.1-7.5 4.5-7.9 4.6h35.1c10 0 17.4-1.5 26-8.6-.6-5 .2-9.5.8-12 0-.2-1.8 1.4-2.7 3.5 0-5.7 1.6-15.4 9.6-20.5-.1 0-3.7-.8-9 1.1 2-3.1 10-7.9 10.4-7.9-8.2-26-38-22.9-32.2-22.9-30.9 0-32.6.3-39.9-4 .1.8.5 8.2 9.6 14.9zm21.5 5.5c4.6 0 23.1-3.3 23.1 17.3 0 20.7-18.4 17.3-23.1 17.3zm228.9 79.6l7 8.3V312h-.3c-5.4-14.4-42.3-41.5-45.2-50.9h-31.6l7.4 8.5v76.9l-7.2 8.3h39l-7.4-8.2v-47.4h.3c3.7 10.6 44.5 42.9 48.5 55.6h21.3v-85.2l7.4-8.3zm-106.7-96.1c-32.2 0-32.8.2-39.9-4 .1.7.5 8.3 9.6 14.9 3.1 2 2.9 4.3 2.9 9.5 1.8-1.1 3.8-2.2 6.1-3-1.1 1.1-2.7 2.7-3.5 4.5 1-1.1 7.5-5.1 14.6-3.5-1.6.3-4 1.1-6.1 2.9.1 0 2.1-1.1 7.5-.3v-4.3c4.7 0 23.1-3.4 23.1 17.3 0 20.5-18.5 17.3-19.7 17.3 5.7 4.4 5.8 12 2.2 16.3h.3c33.4 0 36.7-27.3 36.7-34 0-3.8-1.1-32-33.8-33.6z" + } + }, + "free": [ + "brands" + ] + }, + "dailymotion": { + "changes": [ + "5.12.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e052", + "label": "dailymotion", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M298.93,267a48.4,48.4,0,0,0-24.36-6.21q-19.83,0-33.44,13.27t-13.61,33.42q0,21.16,13.28,34.6t33.43,13.44q20.5,0,34.11-13.78T322,307.47A47.13,47.13,0,0,0,315.9,284,44.13,44.13,0,0,0,298.93,267ZM0,32V480H448V32ZM374.71,405.26h-53.1V381.37h-.67q-15.79,26.2-55.78,26.2-27.56,0-48.89-13.1a88.29,88.29,0,0,1-32.94-35.77q-11.6-22.68-11.59-50.89,0-27.56,11.76-50.22a89.9,89.9,0,0,1,32.93-35.78q21.18-13.09,47.72-13.1a80.87,80.87,0,0,1,29.74,5.21q13.28,5.21,25,17V153l55.79-12.09Z" + } + }, + "free": [ + "brands" + ] + }, + "dashcube": { + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f210", + "label": "DashCube", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z" + } + }, + "free": [ + "brands" + ] + }, + "database": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c0" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "development", + "directory", + "memory", + "storage" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1c0", + "label": "Database", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321809, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 80v48c0 44.2-100.3 80-224 80S0 172.2 0 128V80C0 35.8 100.3 0 224 0S448 35.8 448 80zM393.2 214.7c20.8-7.4 39.9-16.9 54.8-28.6V288c0 44.2-100.3 80-224 80S0 332.2 0 288V186.1c14.9 11.8 34 21.2 54.8 28.6C99.7 230.7 159.5 240 224 240s124.3-9.3 169.2-25.3zM0 346.1c14.9 11.8 34 21.2 54.8 28.6C99.7 390.7 159.5 400 224 400s124.3-9.3 169.2-25.3c20.8-7.4 39.9-16.9 54.8-28.6V432c0 44.2-100.3 80-224 80S0 476.2 0 432V346.1z" + } + }, + "free": [ + "solid" + ] + }, + "deezer": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e077", + "label": "Deezer", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M451.46,244.71H576V172H451.46Zm0-173.89v72.67H576V70.82Zm0,275.06H576V273.2H451.46ZM0,447.09H124.54V374.42H0Zm150.47,0H275V374.42H150.47Zm150.52,0H425.53V374.42H301Zm150.47,0H576V374.42H451.46ZM301,345.88H425.53V273.2H301Zm-150.52,0H275V273.2H150.47Zm0-101.17H275V172H150.47Z" + } + }, + "free": [ + "brands" + ] + }, + "delete-left": { + "aliases": { + "names": [ + "backspace" + ], + "unicodes": { + "composite": [ + "232b" + ], + "secondary": [ + "10f55a" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Erase to the Left", + "command", + "delete", + "erase", + "keyboard", + "undo" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f55a", + "label": "Delete Left", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M576 128c0-35.3-28.7-64-64-64H205.3c-17 0-33.3 6.7-45.3 18.7L9.4 233.4c-6 6-9.4 14.1-9.4 22.6s3.4 16.6 9.4 22.6L160 429.3c12 12 28.3 18.7 45.3 18.7H512c35.3 0 64-28.7 64-64V128zM271 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + } + }, + "free": [ + "solid" + ] + }, + "delicious": { + "changes": [ + "4.1.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a5", + "label": "Delicious", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1.5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192z" + } + }, + "free": [ + "brands" + ] + }, + "democrat": { + "aliases": { + "unicodes": { + "secondary": [ + "10f747" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "democratic party", + "donkey", + "election", + "left", + "left-wing", + "liberal", + "politics", + "usa" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f747", + "label": "Democrat", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32c0-8.9 3.8-20.9 6.2-27.3C71.2 1.8 74 0 77 0c1.9 0 3.8 .7 5.2 2.1L128 45.7 173.8 2.1C175.2 .7 177.1 0 179 0c3 0 5.8 1.8 6.8 4.7c2.4 6.5 6.2 18.4 6.2 27.3c0 26.5-21.9 42-29.5 46.6l76.2 72.6c6 5.7 13.9 8.8 22.1 8.8H480l32 0c40.3 0 78.2 19 102.4 51.2l19.2 25.6c10.6 14.1 7.7 34.2-6.4 44.8s-34.2 7.7-44.8-6.4l-19.2-25.6c-5.3-7-11.8-12.8-19.2-17V320H192l-40.4-94.3c-3.9-9.2-15.3-12.6-23.6-7l-42.1 28c-9.1 6.1-19.7 9.3-30.7 9.3h-2C23.9 256 0 232.1 0 202.7c0-12.1 4.1-23.8 11.7-33.3L87.6 74.6C78.1 67.4 64 53.2 64 32zM448 352h96v64 64c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32V416H288v64c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32V416 352h96H448zM260.9 210.9c-.9-1.8-2.8-2.9-4.8-2.9s-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9 .5 3.9 2.1 5s3.8 1.3 5.6 .4l21-10.7 21 10.7c1.8 .9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.3-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5zM368.1 208c-2 0-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9 .5 3.9 2.1 5s3.8 1.3 5.6 .4l21-10.7 21 10.7c1.8 .9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.4-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5c-.9-1.8-2.8-2.9-4.8-2.9zm116.8 2.9c-.9-1.8-2.8-2.9-4.8-2.9s-3.9 1.1-4.8 2.9l-10.5 20.5-23.5 3.3c-2 .3-3.7 1.6-4.3 3.5s-.1 3.9 1.3 5.3l17 16-4 22.6c-.3 1.9 .5 3.9 2.1 5s3.8 1.3 5.6 .4l21-10.7 21 10.7c1.8 .9 4 .8 5.6-.4s2.5-3.1 2.1-5l-4-22.6 17-16c1.5-1.4 2-3.4 1.4-5.3s-2.3-3.2-4.3-3.5l-23.5-3.3-10.5-20.5z" + } + }, + "free": [ + "solid" + ] + }, + "deploydog": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f38e", + "label": "deploy.dog", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z" + } + }, + "free": [ + "brands" + ] + }, + "deskpro": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f38f", + "label": "Deskpro", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 480, + 512 + ], + "width": 480, + "height": 512, + "path": "M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7.3 15 .1h82c.2 0 .3.1.5.1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z" + } + }, + "free": [ + "brands" + ] + }, + "desktop": { + "aliases": { + "names": [ + "desktop-alt" + ], + "unicodes": { + "composite": [ + "1f5a5", + "f108" + ], + "primary": [ + "f108" + ], + "secondary": [ + "10f108", + "10f390" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "demo", + "desktop", + "desktop computer", + "device", + "imac", + "machine", + "monitor", + "pc", + "screen" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f390", + "label": "Desktop", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V352c0 35.3 28.7 64 64 64H240l-10.7 32H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H346.7L336 416H512c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM512 64V288H64V64H512z" + } + }, + "free": [ + "solid" + ] + }, + "dev": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f6cc", + "label": "DEV", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M120.12 208.29c-3.88-2.9-7.77-4.35-11.65-4.35H91.03v104.47h17.45c3.88 0 7.77-1.45 11.65-4.35 3.88-2.9 5.82-7.25 5.82-13.06v-69.65c-.01-5.8-1.96-10.16-5.83-13.06zM404.1 32H43.9C19.7 32 .06 51.59 0 75.8v360.4C.06 460.41 19.7 480 43.9 480h360.2c24.21 0 43.84-19.59 43.9-43.8V75.8c-.06-24.21-19.7-43.8-43.9-43.8zM154.2 291.19c0 18.81-11.61 47.31-48.36 47.25h-46.4V172.98h47.38c35.44 0 47.36 28.46 47.37 47.28l.01 70.93zm100.68-88.66H201.6v38.42h32.57v29.57H201.6v38.41h53.29v29.57h-62.18c-11.16.29-20.44-8.53-20.72-19.69V193.7c-.27-11.15 8.56-20.41 19.71-20.69h63.19l-.01 29.52zm103.64 115.29c-13.2 30.75-36.85 24.63-47.44 0l-38.53-144.8h32.57l29.71 113.72 29.57-113.72h32.58l-38.46 144.8z" + } + }, + "free": [ + "brands" + ] + }, + "deviantart": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1bd", + "label": "deviantART", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z" + } + }, + "free": [ + "brands" + ] + }, + "dharmachakra": { + "aliases": { + "unicodes": { + "composite": [ + "2638" + ], + "secondary": [ + "10f655" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Buddhist", + "buddhism", + "buddhist", + "dharma", + "religion", + "wheel", + "wheel of dharma" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f655", + "label": "Dharmachakra", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M337.8 205.7l48.6-42.5c13.8 19.3 23.4 41.9 27.4 66.2l-64.4 4.3c-2.4-10.1-6.4-19.5-11.6-28zm140.1 19.5c-5.3-38.8-20.6-74.5-43.2-104.3l.8-.7C449 108.4 449.7 87.6 437 75s-33.4-12-45.2 1.5l-.7 .8c-29.8-22.6-65.5-37.9-104.3-43.2l.1-1.1c1.2-17.9-13-33-30.9-33s-32.1 15.2-30.9 33l.1 1.1c-38.8 5.3-74.5 20.6-104.3 43.2l-.7-.8C108.4 63 87.6 62.3 75 75s-12 33.4 1.5 45.2l.8 .7c-22.6 29.8-37.9 65.5-43.2 104.3l-1.1-.1c-17.9-1.2-33 13-33 30.9s15.2 32.1 33 30.9l1.1-.1c5.3 38.8 20.6 74.5 43.2 104.3l-.8 .7C63 403.6 62.3 424.4 75 437s33.4 12 45.2-1.5l.7-.8c29.8 22.6 65.5 37.9 104.3 43.2l-.1 1.1c-1.2 17.9 13 33 30.9 33s32.1-15.2 30.9-33l-.1-1.1c38.8-5.3 74.5-20.6 104.3-43.2l.7 .8c11.8 13.5 32.5 14.2 45.2 1.5s12-33.4-1.5-45.2l-.8-.7c22.6-29.8 37.9-65.5 43.2-104.3l1.1 .1c17.9 1.2 33-13 33-30.9s-15.2-32.1-33-30.9l-1.1 .1zM163.2 125.6c19.3-13.8 41.9-23.4 66.2-27.5l4.3 64.4c-10 2.4-19.5 6.4-28 11.6l-42.5-48.6zm-65 103.8c4.1-24.4 13.7-46.9 27.5-66.2l48.6 42.5c-5.3 8.5-9.2 18-11.6 28l-64.4-4.3zm27.5 119.4c-13.8-19.3-23.4-41.9-27.5-66.2l64.4-4.3c2.4 10 6.4 19.5 11.6 28l-48.6 42.5zm103.8 65c-24.4-4.1-46.9-13.7-66.2-27.4l42.5-48.6c8.5 5.3 18 9.2 28 11.6l-4.3 64.4zm119.4-27.4c-19.3 13.8-41.9 23.4-66.2 27.4l-4.3-64.4c10-2.4 19.5-6.4 28-11.6l42.5 48.6zm65-103.8c-4.1 24.4-13.7 46.9-27.4 66.2l-48.6-42.5c5.3-8.5 9.2-18 11.6-28l64.4 4.3zm-65-156.9l-42.5 48.6c-8.6-5.3-18-9.2-28-11.6l4.3-64.4c24.4 4.1 46.9 13.7 66.2 27.5zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "dhl": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dalsey", + "Hillblom and Lynn", + "german", + "package", + "shipping" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f790", + "label": "DHL", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M238 301.2h58.7L319 271h-58.7L238 301.2zM0 282.9v6.4h81.8l4.7-6.4H0zM172.9 271c-8.7 0-6-3.6-4.6-5.5 2.8-3.8 7.6-10.4 10.4-14.1 2.8-3.7 2.8-5.9-2.8-5.9h-51l-41.1 55.8h100.1c33.1 0 51.5-22.5 57.2-30.3h-68.2zm317.5-6.9l39.3-53.4h-62.2l-39.3 53.4h62.2zM95.3 271H0v6.4h90.6l4.7-6.4zm111-26.6c-2.8 3.8-7.5 10.4-10.3 14.2-1.4 2-4.1 5.5 4.6 5.5h45.6s7.3-10 13.5-18.4c8.4-11.4.7-35-29.2-35H112.6l-20.4 27.8h111.4c5.6 0 5.5 2.2 2.7 5.9zM0 301.2h73.1l4.7-6.4H0v6.4zm323 0h58.7L404 271h-58.7c-.1 0-22.3 30.2-22.3 30.2zm222 .1h95v-6.4h-90.3l-4.7 6.4zm22.3-30.3l-4.7 6.4H640V271h-72.7zm-13.5 18.3H640v-6.4h-81.5l-4.7 6.4zm-164.2-78.6l-22.5 30.6h-26.2l22.5-30.6h-58.7l-39.3 53.4H409l39.3-53.4h-58.7zm33.5 60.3s-4.3 5.9-6.4 8.7c-7.4 10-.9 21.6 23.2 21.6h94.3l22.3-30.3H423.1z" + } + }, + "free": [ + "brands" + ] + }, + "diagram-next": { + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cells", + "chart", + "gantt", + "row", + "subtask", + "successor", + "table" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e476", + "label": "Diagram Next", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 160c0 35.3-28.7 64-64 64H280v64h46.1c21.4 0 32.1 25.9 17 41L273 399c-9.4 9.4-24.6 9.4-33.9 0L169 329c-15.1-15.1-4.4-41 17-41H232V224H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64v64zM448 416V352H365.3l.4-.4c18.4-18.4 20.4-43.7 11-63.6l71.3 0c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64V352c0-35.3 28.7-64 64-64l71.3 0c-9.4 19.9-7.4 45.2 11 63.6l.4 .4H64v64H210.7l5.7 5.7c21.9 21.9 57.3 21.9 79.2 0l5.7-5.7H448z" + } + }, + "free": [ + "solid" + ] + }, + "diagram-predecessor": { + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cells", + "chart", + "gantt", + "predecessor", + "previous", + "row", + "subtask", + "table" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e477", + "label": "Diagram Predecessor", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 416l0-64L64 352l0 64 384 0zm0 64L64 480c-35.3 0-64-28.7-64-64l0-64c0-35.3 28.7-64 64-64l384 0c35.3 0 64 28.7 64 64l0 64c0 35.3-28.7 64-64 64zM288 160c0 35.3-28.7 64-64 64L64 224c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l144 0 16 0 144 0c44.2 0 80 35.8 80 80l0 16 38.1 0c21.4 0 32.1 25.9 17 41L433 239c-9.4 9.4-24.6 9.4-33.9 0L329 169c-15.1-15.1-4.4-41 17-41l38.1 0 0-16c0-8.8-7.2-16-16-16l-80 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "diagram-project": { + "aliases": { + "names": [ + "project-diagram" + ], + "unicodes": { + "secondary": [ + "10f542" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "graph", + "network", + "pert" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f542", + "label": "Diagram Project", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 80C0 53.5 21.5 32 48 32h96c26.5 0 48 21.5 48 48V96H384V80c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H432c-26.5 0-48-21.5-48-48V160H192v16c0 1.7-.1 3.4-.3 5L272 288h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H272c-26.5 0-48-21.5-48-48V336c0-1.7 .1-3.4 .3-5L144 224H48c-26.5 0-48-21.5-48-48V80z" + } + }, + "free": [ + "solid" + ] + }, + "diagram-successor": { + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cells", + "chart", + "gantt", + "next", + "row", + "subtask", + "successor", + "table" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e47a", + "label": "Diagram Successor", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 416l0-64c0-35.3-28.7-64-64-64L64 288c-35.3 0-64 28.7-64 64l0 64c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64zM64 160l0-64 144 0 16 0 0 64L64 160zm224 0l0-64 80 0c8.8 0 16 7.2 16 16l0 16-38.1 0c-21.4 0-32.1 25.9-17 41L399 239c9.4 9.4 24.6 9.4 33.9 0L503 169c15.1-15.1 4.4-41-17-41L448 128l0-16c0-44.2-35.8-80-80-80L224 32l-16 0L64 32C28.7 32 0 60.7 0 96l0 64c0 35.3 28.7 64 64 64l160 0c35.3 0 64-28.7 64-64z" + } + }, + "free": [ + "solid" + ] + }, + "diamond": { + "aliases": { + "unicodes": { + "composite": [ + "2666" + ], + "secondary": [ + "10f219" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "card", + "cards", + "diamond suit", + "game", + "gem", + "gemstone", + "poker", + "suit" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f219", + "label": "Diamond", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M284.3 11.7c-15.6-15.6-40.9-15.6-56.6 0l-216 216c-15.6 15.6-15.6 40.9 0 56.6l216 216c15.6 15.6 40.9 15.6 56.6 0l216-216c15.6-15.6 15.6-40.9 0-56.6l-216-216z" + } + }, + "free": [ + "solid" + ] + }, + "diamond-turn-right": { + "aliases": { + "names": [ + "directions" + ], + "unicodes": { + "secondary": [ + "10f5eb" + ] + } + }, + "changes": [ + "5.2.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "map", + "navigation", + "sign", + "turn" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5eb", + "label": "Diamond Turn Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M227.7 11.7c15.6-15.6 40.9-15.6 56.6 0l216 216c15.6 15.6 15.6 40.9 0 56.6l-216 216c-15.6 15.6-40.9 15.6-56.6 0l-216-216c-15.6-15.6-15.6-40.9 0-56.6l216-216zm87.6 137c-4.6-4.6-11.5-5.9-17.4-3.5s-9.9 8.3-9.9 14.8v56H224c-35.3 0-64 28.7-64 64v48c0 13.3 10.7 24 24 24s24-10.7 24-24V280c0-8.8 7.2-16 16-16h64v56c0 6.5 3.9 12.3 9.9 14.8s12.9 1.1 17.4-3.5l80-80c6.2-6.2 6.2-16.4 0-22.6l-80-80z" + } + }, + "free": [ + "solid" + ] + }, + "diaspora": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f791", + "label": "Diaspora", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M251.64 354.55c-1.4 0-88 119.9-88.7 119.9S76.34 414 76 413.25s86.6-125.7 86.6-127.4c0-2.2-129.6-44-137.6-47.1-1.3-.5 31.4-101.8 31.7-102.1.6-.7 144.4 47 145.5 47 .4 0 .9-.6 1-1.3.4-2 1-148.6 1.7-149.6.8-1.2 104.5-.7 105.1-.3 1.5 1 3.5 156.1 6.1 156.1 1.4 0 138.7-47 139.3-46.3.8.9 31.9 102.2 31.5 102.6-.9.9-140.2 47.1-140.6 48.8-.3 1.4 82.8 122.1 82.5 122.9s-85.5 63.5-86.3 63.5c-1-.2-89-125.5-90.9-125.5z" + } + }, + "free": [ + "brands" + ] + }, + "dice": { + "aliases": { + "unicodes": { + "composite": [ + "1f3b2" + ], + "secondary": [ + "10f522" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chance", + "dice", + "die", + "gambling", + "game", + "game die", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f522", + "label": "Dice", + "voted": true, + "svg": { + "solid": { + "last_modified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M252.3 11.7c-15.6-15.6-40.9-15.6-56.6 0l-184 184c-15.6 15.6-15.6 40.9 0 56.6l184 184c15.6 15.6 40.9 15.6 56.6 0l184-184c15.6-15.6 15.6-40.9 0-56.6l-184-184zM248 224c0 13.3-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24zM96 248c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm128 80c13.3 0 24 10.7 24 24s-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24zm128-80c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zM224 72c13.3 0 24 10.7 24 24s-10.7 24-24 24s-24-10.7-24-24s10.7-24 24-24zm96 392c0 26.5 21.5 48 48 48H592c26.5 0 48-21.5 48-48V240c0-26.5-21.5-48-48-48H472.5c13.4 26.9 8.8 60.5-13.6 82.9L320 413.8V464zm160-88c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z" + } + }, + "free": [ + "solid" + ] + }, + "dice-d20": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6cf" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "chance", + "d&d", + "dnd", + "fantasy", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6cf", + "label": "Dice D20", + "voted": true, + "svg": { + "solid": { + "last_modified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64.7 125.8l53.2 31.9c7.8 4.7 17.8 2 22.2-5.9L217.6 12.1c3-5.4-.9-12.1-7.1-12.1c-1.6 0-3.2 .5-4.6 1.4L63.9 98.8c-9.6 6.6-9.2 20.9 .8 26.9zM32 171.7V295.3c0 8 10.4 11 14.7 4.4l60-92c5-7.6 2.6-17.8-5.2-22.5L56.2 158C45.6 151.6 32 159.3 32 171.7zM326.4 12.1l77.6 139.6c4.4 7.9 14.5 10.6 22.2 5.9l53.2-31.9c10-6 10.4-20.3 .8-26.9L338.1 1.4c-1.4-.9-3-1.4-4.6-1.4c-6.2 0-10.1 6.7-7.1 12.1zM512 171.7c0-12.4-13.6-20.1-24.2-13.7l-45.3 27.2c-7.8 4.7-10.1 14.9-5.2 22.5l60 92c4.3 6.7 14.7 3.6 14.7-4.4V171.7zm-49.3 246L302.1 436.6c-8.1 .9-14.1 7.8-14.1 15.9v52.8c0 3.7 3 6.8 6.8 6.8c.8 0 1.6-.1 2.4-.4l172.7-64c6.1-2.2 10.1-8 10.1-14.5c0-9.3-8.1-16.5-17.3-15.4zM249.2 512c3.7 0 6.8-3 6.8-6.8V452.6c0-8.1-6.1-14.9-14.1-15.9l-160.6-19c-9.2-1.1-17.3 6.1-17.3 15.4c0 6.5 4 12.3 10.1 14.5l172.7 64c.8 .3 1.6 .4 2.4 .4zM57.7 382.9l170.9 20.2c7.8 .9 13.4-7.5 9.5-14.3l-85.7-150c-5.9-10.4-20.7-10.8-27.3-.8L46.2 358.2c-6.5 9.9-.3 23.3 11.5 24.7zm439.6-24.8L418.9 238.1c-6.5-10-21.4-9.6-27.3 .8L306.2 388.5c-3.9 6.8 1.6 15.2 9.5 14.3l170.1-20c11.8-1.4 18-14.7 11.5-24.6zm-216.9 11l78.4-137.2c6.1-10.7-1.6-23.9-13.9-23.9H199.1c-12.3 0-20 13.3-13.9 23.9l78.4 137.2c3.7 6.4 13 6.4 16.7 0zM190.4 176H353.6c12.2 0 19.9-13.1 14-23.8l-80-144c-2.8-5.1-8.2-8.2-14-8.2h-3.2c-5.8 0-11.2 3.2-14 8.2l-80 144c-5.9 10.7 1.8 23.8 14 23.8z" + } + }, + "free": [ + "solid" + ] + }, + "dice-d6": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6d1" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "chance", + "d&d", + "dnd", + "fantasy", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6d1", + "label": "Dice D6", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M216.3 2c4.8-2.6 10.5-2.6 15.3 0L422.3 106c5.1 2.8 8.3 8.2 8.3 14s-3.2 11.2-8.3 14L231.7 238c-4.8 2.6-10.5 2.6-15.3 0L25.7 134c-5.1-2.8-8.3-8.2-8.3-14s3.2-11.2 8.3-14L216.3 2zM23.7 170l176 96c5.1 2.8 8.3 8.2 8.3 14V496c0 5.6-3 10.9-7.8 13.8s-10.9 3-15.8 .3L8.3 414C3.2 411.2 0 405.9 0 400V184c0-5.6 3-10.9 7.8-13.8s10.9-3 15.8-.3zm400.7 0c5-2.7 11-2.6 15.8 .3s7.8 8.1 7.8 13.8V400c0 5.9-3.2 11.2-8.3 14l-176 96c-5 2.7-11 2.6-15.8-.3s-7.8-8.1-7.8-13.8V280c0-5.9 3.2-11.2 8.3-14l176-96z" + } + }, + "free": [ + "solid" + ] + }, + "dice-five": { + "aliases": { + "unicodes": { + "composite": [ + "2684" + ], + "secondary": [ + "10f523" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-5", + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f523", + "label": "Dice Five", + "voted": true, + "svg": { + "solid": { + "last_modified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 160c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm32 160c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm64-64c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zM352 160c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zM320 384c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "dice-four": { + "aliases": { + "unicodes": { + "composite": [ + "2683" + ], + "secondary": [ + "10f524" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-4", + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f524", + "label": "Dice Four", + "voted": true, + "svg": { + "solid": { + "last_modified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM128 384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zM352 160c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM320 384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "dice-one": { + "aliases": { + "unicodes": { + "composite": [ + "2680" + ], + "secondary": [ + "10f525" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-1", + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f525", + "label": "Dice One", + "voted": true, + "svg": { + "solid": { + "last_modified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM224 288c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "dice-six": { + "aliases": { + "unicodes": { + "composite": [ + "2685" + ], + "secondary": [ + "10f526" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-6", + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f526", + "label": "Dice Six", + "voted": true, + "svg": { + "solid": { + "last_modified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm160 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM128 288c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm32 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM320 192c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32zm32 64c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM320 384c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "dice-three": { + "aliases": { + "unicodes": { + "composite": [ + "2682" + ], + "secondary": [ + "10f527" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-3", + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f527", + "label": "Dice Three", + "voted": true, + "svg": { + "solid": { + "last_modified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 160c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32zm128 64c0 17.7-14.3 32-32 32s-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32zm64 128c-17.7 0-32-14.3-32-32s14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "dice-two": { + "aliases": { + "unicodes": { + "composite": [ + "2681" + ], + "secondary": [ + "10f528" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Die Face-2", + "chance", + "gambling", + "game", + "roll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f528", + "label": "Dice Two", + "voted": true, + "svg": { + "solid": { + "last_modified": 1660321810, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM352 352c0-17.7-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32zM128 192c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32s14.3 32 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "digg": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a6", + "label": "Digg Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z" + } + }, + "free": [ + "brands" + ] + }, + "digital-ocean": { + "changes": [ + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f391", + "label": "Digital Ocean", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M87 481.8h73.7v-73.6H87zM25.4 346.6v61.6H87v-61.6zm466.2-169.7c-23-74.2-82.4-133.3-156.6-156.6C164.9-32.8 8 93.7 8 255.9h95.8c0-101.8 101-180.5 208.1-141.7 39.7 14.3 71.5 46.1 85.8 85.7 39.1 107-39.7 207.8-141.4 208v.3h-.3V504c162.6 0 288.8-156.8 235.6-327.1zm-235.3 231v-95.3h-95.6v95.6H256v-.3z" + } + }, + "free": [ + "brands" + ] + }, + "discord": { + "changes": [ + "5.0.0", + "5.15.4", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f392", + "label": "Discord", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z" + } + }, + "free": [ + "brands" + ] + }, + "discourse": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f393", + "label": "Discourse", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z" + } + }, + "free": [ + "brands" + ] + }, + "disease": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7fa" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bacteria", + "cancer", + "coronavirus", + "covid-19", + "flu", + "illness", + "infection", + "pandemic", + "sickness", + "virus" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7fa", + "label": "Disease", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M236.4 61.4L227 75.5c-21.3 32-59.4 48.5-97.3 42.1l-59.6-9.9C33.4 101.6 0 129.9 .1 167.1c0 15.9 6.4 31.2 17.6 42.5l29.2 29.2c11 11 17.2 25.9 17.2 41.5c0 15.8-6.4 30.9-17.7 42L33.3 335.1C22.2 345.9 16 360.7 16 376.2c0 36.8 34.1 64.2 70.1 56.2l62.3-13.8c7.7-1.7 15.7-2.6 23.6-2.6h10c27.2 0 53.7 9.3 75 26.3L287.8 467c10.5 8.4 23.6 13 37 13c32.7 0 59.3-26.5 59.3-59.3l0-25.2c0-34.9 21.4-66.2 53.9-78.8l36.9-14.3c22.4-8.7 37.2-30.3 37.2-54.3c0-28.1-20.1-52.3-47.8-57.3l-28-5.1c-36.5-6.7-65.4-34.5-73.6-70.7l-7.1-31.5C348.9 53.4 322.1 32 291.3 32c-22 0-42.6 11-54.8 29.4zM160 192a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm0 80a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "display": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Screen", + "computer", + "desktop", + "imac" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e163", + "label": "Display", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V352c0 35.3 28.7 64 64 64H240l-10.7 32H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H346.7L336 416H512c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM512 64V352H64V64H512z" + } + }, + "free": [ + "solid" + ] + }, + "divide": { + "aliases": { + "unicodes": { + "composite": [ + "2797", + "f7" + ], + "secondary": [ + "10f529" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Division Sign", + "arithmetic", + "calculus", + "divide", + "division", + "math", + "sign", + "÷" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f529", + "label": "Divide", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M256 96a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm0 320a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM384 288c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H384z" + } + }, + "free": [ + "solid" + ] + }, + "dna": { + "aliases": { + "unicodes": { + "composite": [ + "1f9ec" + ], + "secondary": [ + "10f471" + ] + } + }, + "changes": [ + "5.0.7", + "5.0.10", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "biologist", + "dna", + "double helix", + "evolution", + "gene", + "genetic", + "genetics", + "helix", + "life", + "molecule", + "protein" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f471", + "label": "Dna", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M416 0c17.7 0 32 14.3 32 32c0 59.8-30.3 107.5-69.4 146.6c-28 28-62.5 53.5-97.3 77.4l-2.5 1.7c-11.9 8.1-23.8 16.1-35.5 23.9l0 0 0 0 0 0-1.6 1c-6 4-11.9 7.9-17.8 11.9c-20.9 14-40.8 27.7-59.3 41.5H283.3c-9.8-7.4-20.1-14.7-30.7-22.1l7-4.7 3-2c15.1-10.1 30.9-20.6 46.7-31.6c25 18.1 48.9 37.3 69.4 57.7C417.7 372.5 448 420.2 448 480c0 17.7-14.3 32-32 32s-32-14.3-32-32H64c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-59.8 30.3-107.5 69.4-146.6c28-28 62.5-53.5 97.3-77.4c-34.8-23.9-69.3-49.3-97.3-77.4C30.3 139.5 0 91.8 0 32C0 14.3 14.3 0 32 0S64 14.3 64 32H384c0-17.7 14.3-32 32-32zM338.6 384H109.4c-10.1 10.6-18.6 21.3-25.5 32H364.1c-6.8-10.7-15.3-21.4-25.5-32zM109.4 128H338.6c10.1-10.7 18.6-21.3 25.5-32H83.9c6.8 10.7 15.3 21.3 25.5 32zm55.4 48c18.4 13.8 38.4 27.5 59.3 41.5c20.9-14 40.8-27.7 59.3-41.5H164.7z" + } + }, + "free": [ + "solid" + ] + }, + "dochub": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f394", + "label": "DocHub", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 416, + 512 + ], + "width": 416, + "height": 512, + "path": "M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1.8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z" + } + }, + "free": [ + "brands" + ] + }, + "docker": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f395", + "label": "Docker", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4.4 67.6.1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z" + } + }, + "free": [ + "brands" + ] + }, + "dog": { + "aliases": { + "unicodes": { + "composite": [ + "1f415" + ], + "secondary": [ + "10f6d3" + ] + } + }, + "changes": [ + "5.4.0", + "5.12.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "canine", + "dog", + "fauna", + "mammal", + "pet", + "pooch", + "puppy", + "woof" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6d3", + "label": "Dog", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M309.6 158.5L332.7 19.8C334.6 8.4 344.5 0 356.1 0c7.5 0 14.5 3.5 19 9.5L392 32h52.1c12.7 0 24.9 5.1 33.9 14.1L496 64h56c13.3 0 24 10.7 24 24v24c0 44.2-35.8 80-80 80H464 448 426.7l-5.1 30.5-112-64zM416 256.1L416 480c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V364.8c-24 12.3-51.2 19.2-80 19.2s-56-6.9-80-19.2V480c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V249.8c-28.8-10.9-51.4-35.3-59.2-66.5L1 167.8c-4.3-17.1 6.1-34.5 23.3-38.8s34.5 6.1 38.8 23.3l3.9 15.5C70.5 182 83.3 192 98 192h30 16H303.8L416 256.1zM464 80a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + }, + "free": [ + "solid" + ] + }, + "dollar-sign": { + "aliases": { + "names": [ + "dollar", + "usd" + ], + "unicodes": { + "composite": [ + "1f4b2", + "f155" + ], + "primary": [ + "f155" + ], + "secondary": [ + "1024", + "10f155" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.0.9", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dollar Sign", + "currency", + "dollar", + "heavy dollar sign", + "money" + ] + }, + "styles": [ + "solid" + ], + "unicode": "24", + "label": "Dollar Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M146 0c17.7 0 32 14.3 32 32V67.7c1.6 .2 3.1 .4 4.7 .7c.4 .1 .7 .1 1.1 .2l48 8.8c17.4 3.2 28.9 19.9 25.7 37.2s-19.9 28.9-37.2 25.7l-47.5-8.7c-31.3-4.6-58.9-1.5-78.3 6.2s-27.2 18.3-29 28.1c-2 10.7-.5 16.7 1.2 20.4c1.8 3.9 5.5 8.3 12.8 13.2c16.3 10.7 41.3 17.7 73.7 26.3l2.9 .8c28.6 7.6 63.6 16.8 89.6 33.8c14.2 9.3 27.6 21.9 35.9 39.5c8.5 17.9 10.3 37.9 6.4 59.2c-6.9 38-33.1 63.4-65.6 76.7c-13.7 5.6-28.6 9.2-44.4 11V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.1c-.4-.1-.9-.1-1.3-.2l-.2 0 0 0c-24.4-3.8-64.5-14.3-91.5-26.3C4.9 411.4-2.4 392.5 4.8 376.3s26.1-23.4 42.2-16.2c20.9 9.3 55.3 18.5 75.2 21.6c31.9 4.7 58.2 2 76-5.3c16.9-6.9 24.6-16.9 26.8-28.9c1.9-10.6 .4-16.7-1.3-20.4c-1.9-4-5.6-8.4-13-13.3c-16.4-10.7-41.5-17.7-74-26.3l-2.8-.7 0 0C105.4 279.3 70.4 270 44.4 253c-14.2-9.3-27.5-22-35.8-39.6C.3 195.4-1.4 175.4 2.5 154.1C9.7 116 38.3 91.2 70.8 78.3c13.3-5.3 27.9-8.9 43.2-11V32c0-17.7 14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "dolly": { + "aliases": { + "names": [ + "dolly-box" + ], + "unicodes": { + "secondary": [ + "10f472" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "shipping", + "transport" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f472", + "label": "Dolly", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0h72.9c27.5 0 52 17.6 60.7 43.8L257.7 320c30.1 .5 56.8 14.9 74 37l202.1-67.4c16.8-5.6 34.9 3.5 40.5 20.2s-3.5 34.9-20.2 40.5L352 417.7c-.9 52.2-43.5 94.3-96 94.3c-53 0-96-43-96-96c0-30.8 14.5-58.2 37-75.8L104.9 64H32C14.3 64 0 49.7 0 32zM244.8 134.5c-5.5-16.8 3.7-34.9 20.5-40.3L311 79.4l19.8 60.9 60.9-19.8L371.8 59.6l45.7-14.8c16.8-5.5 34.9 3.7 40.3 20.5l49.4 152.2c5.5 16.8-3.7 34.9-20.5 40.3L334.5 307.2c-16.8 5.5-34.9-3.7-40.3-20.5L244.8 134.5z" + } + }, + "free": [ + "solid" + ] + }, + "dong-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dong Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e169", + "label": "Dong Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M288 32c-17.7 0-32 14.3-32 32l-32 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v49.1c-18.8-10.9-40.7-17.1-64-17.1c-70.7 0-128 57.3-128 128s57.3 128 128 128c24.5 0 47.4-6.9 66.8-18.8c5 11.1 16.2 18.8 29.2 18.8c17.7 0 32-14.3 32-32V288 128c17.7 0 32-14.3 32-32s-14.3-32-32-32c0-17.7-14.3-32-32-32zM128 288a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM32 448c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + }, + "free": [ + "solid" + ] + }, + "door-closed": { + "aliases": { + "unicodes": { + "composite": [ + "1f6aa" + ], + "secondary": [ + "10f52a" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "doo", + "door", + "enter", + "exit", + "locked" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f52a", + "label": "Door Closed", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 64c0-35.3 28.7-64 64-64H416c35.3 0 64 28.7 64 64V448h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H432 144 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96V64zM384 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "door-open": { + "aliases": { + "unicodes": { + "secondary": [ + "10f52b" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "enter", + "exit", + "welcome" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f52b", + "label": "Door Open", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M320 32c0-9.9-4.5-19.2-12.3-25.2S289.8-1.4 280.2 1l-179.9 45C79 51.3 64 70.5 64 92.5V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H96 288h32V480 32zM256 256c0 17.7-10.7 32-24 32s-24-14.3-24-32s10.7-32 24-32s24 14.3 24 32zm96-128h96V480c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H512V128c0-35.3-28.7-64-64-64H352v64z" + } + }, + "free": [ + "solid" + ] + }, + "dove": { + "aliases": { + "unicodes": { + "composite": [ + "1f54a" + ], + "secondary": [ + "10f4ba" + ] + } + }, + "changes": [ + "5.0.9", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "dove", + "fauna", + "fly", + "flying", + "peace", + "war" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4ba", + "label": "Dove", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160.8 96.5c14 17 31 30.9 49.5 42.2c25.9 15.8 53.7 25.9 77.7 31.6V138.8C265.8 108.5 250 71.5 248.6 28c-.4-11.3-7.5-21.5-18.4-24.4c-7.6-2-15.8-.2-21 5.8c-13.3 15.4-32.7 44.6-48.4 87.2zM320 144v30.6l0 0v1.3l0 0 0 32.1c-60.8-5.1-185-43.8-219.3-157.2C97.4 40 87.9 32 76.6 32c-7.9 0-15.3 3.9-18.8 11C46.8 65.9 32 112.1 32 176c0 116.9 80.1 180.5 118.4 202.8L11.8 416.6C6.7 418 2.6 421.8 .9 426.8s-.8 10.6 2.3 14.8C21.7 466.2 77.3 512 160 512c3.6 0 7.2-1.2 10-3.5L245.6 448H320c88.4 0 160-71.6 160-160V128l29.9-44.9c1.3-2 2.1-4.4 2.1-6.8c0-6.8-5.5-12.3-12.3-12.3H400c-44.2 0-80 35.8-80 80zm80-16a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + }, + "free": [ + "solid" + ] + }, + "down-left-and-up-right-to-center": { + "aliases": { + "names": [ + "compress-alt" + ], + "unicodes": { + "secondary": [ + "10f422" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "fullscreen", + "minimize", + "move", + "resize", + "shrink", + "smaller" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f422", + "label": "Down Left And Up Right To Center", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M439 7c9.4-9.4 24.6-9.4 33.9 0l32 32c9.4 9.4 9.4 24.6 0 33.9l-87 87 39 39c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8H296c-13.3 0-24-10.7-24-24V72c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l39 39L439 7zM72 272H216c13.3 0 24 10.7 24 24V440c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39L73 505c-9.4 9.4-24.6 9.4-33.9 0L7 473c-9.4-9.4-9.4-24.6 0-33.9l87-87L55 313c-6.9-6.9-8.9-17.2-5.2-26.2s12.5-14.8 22.2-14.8z" + } + }, + "free": [ + "solid" + ] + }, + "down-long": { + "aliases": { + "names": [ + "long-arrow-alt-down" + ], + "unicodes": { + "secondary": [ + "10f309" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "long-arrow-down" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f309", + "label": "Down Long", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M2 334.5c-3.8 8.8-2 19 4.6 26l136 144c4.5 4.8 10.8 7.5 17.4 7.5s12.9-2.7 17.4-7.5l136-144c6.6-7 8.4-17.2 4.6-26s-12.5-14.5-22-14.5l-72 0 0-288c0-17.7-14.3-32-32-32L128 0C110.3 0 96 14.3 96 32l0 288-72 0c-9.6 0-18.2 5.7-22 14.5z" + } + }, + "free": [ + "solid" + ] + }, + "download": { + "aliases": { + "unicodes": { + "secondary": [ + "10f019" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "export", + "hard drive", + "save", + "transfer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f019", + "label": "Download", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V274.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7V32zM64 352c-35.3 0-64 28.7-64 64v32c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V416c0-35.3-28.7-64-64-64H346.5l-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352H64zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + }, + "free": [ + "solid" + ] + }, + "draft2digital": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f396", + "label": "Draft2digital", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 480, + 512 + ], + "width": 480, + "height": 512, + "path": "M480 398.1l-144-82.2v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480zM369.9 371l47.1 27.2-47.1 27.2zM134.2 161.4c0 12.4-10 22.4-22.4 22.4s-22.4-10-22.4-22.4 10-22.4 22.4-22.4 22.4 10.1 22.4 22.4zM82.5 380.5c25.6-27.4 97.7-104.7 150.8-169.9 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7z" + } + }, + "free": [ + "brands" + ] + }, + "dragon": { + "aliases": { + "unicodes": { + "composite": [ + "1f409" + ], + "secondary": [ + "10f6d5" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "dragon", + "fairy tale", + "fantasy", + "fire", + "lizard", + "serpent" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6d5", + "label": "Dragon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M352 124.5l-51.9-13c-6.5-1.6-11.3-7.1-12-13.8s2.8-13.1 8.7-16.1l40.8-20.4L294.4 28.8c-5.5-4.1-7.8-11.3-5.6-17.9S297.1 0 304 0H416h32 16c30.2 0 58.7 14.2 76.8 38.4l57.6 76.8c6.2 8.3 9.6 18.4 9.6 28.8c0 26.5-21.5 48-48 48H538.5c-17 0-33.3-6.7-45.3-18.7L480 160H448v21.5c0 24.8 12.8 47.9 33.8 61.1l106.6 66.6c32.1 20.1 51.6 55.2 51.6 93.1C640 462.9 590.9 512 530.2 512H496 432 32.3c-3.3 0-6.6-.4-9.6-1.4C13.5 507.8 6 501 2.4 492.1C1 488.7 .2 485.2 0 481.4c-.2-3.7 .3-7.3 1.3-10.7c2.8-9.2 9.6-16.7 18.6-20.4c3-1.2 6.2-2 9.5-2.2L433.3 412c8.3-.7 14.7-7.7 14.7-16.1c0-4.3-1.7-8.4-4.7-11.4l-44.4-44.4c-30-30-46.9-70.7-46.9-113.1V181.5v-57zM512 72.3c0-.1 0-.2 0-.3s0-.2 0-.3v.6zm-1.3 7.4L464.3 68.1c-.2 1.3-.3 2.6-.3 3.9c0 13.3 10.7 24 24 24c10.6 0 19.5-6.8 22.7-16.3zM130.9 116.5c16.3-14.5 40.4-16.2 58.5-4.1l130.6 87V227c0 32.8 8.4 64.8 24 93H112c-6.7 0-12.7-4.2-15-10.4s-.5-13.3 4.6-17.7L171 232.3 18.4 255.8c-7 1.1-13.9-2.6-16.9-9s-1.5-14.1 3.8-18.8L130.9 116.5z" + } + }, + "free": [ + "solid" + ] + }, + "draw-polygon": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5ee" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchors", + "lines", + "object", + "render", + "shape" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ee", + "label": "Draw Polygon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 151.4V360.6c9.7 5.6 17.8 13.7 23.4 23.4H328.6c0-.1 .1-.2 .1-.3l-4.5-7.9-32-56 0 0c-1.4 .1-2.8 .1-4.2 .1c-35.3 0-64-28.7-64-64s28.7-64 64-64c1.4 0 2.8 0 4.2 .1l0 0 32-56 4.5-7.9-.1-.3H119.4c-5.6 9.7-13.7 17.8-23.4 23.4zM384.3 352c35.2 .2 63.7 28.7 63.7 64c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H119.4c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V151.4C12.9 140.4 0 119.7 0 96C0 60.7 28.7 32 64 32c23.7 0 44.4 12.9 55.4 32H328.6c11.1-19.1 31.7-32 55.4-32c35.3 0 64 28.7 64 64c0 35.3-28.5 63.8-63.7 64l-4.5 7.9-32 56-2.3 4c4.2 8.5 6.5 18 6.5 28.1s-2.3 19.6-6.5 28.1l2.3 4 32 56 4.5 7.9z" + } + }, + "free": [ + "solid" + ] + }, + "dribbble": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f17d", + "label": "Dribbble", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 8C119.252 8 8 119.252 8 256s111.252 248 248 248 248-111.252 248-248S392.748 8 256 8zm163.97 114.366c29.503 36.046 47.369 81.957 47.835 131.955-6.984-1.477-77.018-15.682-147.502-6.818-5.752-14.041-11.181-26.393-18.617-41.614 78.321-31.977 113.818-77.482 118.284-83.523zM396.421 97.87c-3.81 5.427-35.697 48.286-111.021 76.519-34.712-63.776-73.185-116.168-79.04-124.008 67.176-16.193 137.966 1.27 190.061 47.489zm-230.48-33.25c5.585 7.659 43.438 60.116 78.537 122.509-99.087 26.313-186.36 25.934-195.834 25.809C62.38 147.205 106.678 92.573 165.941 64.62zM44.17 256.323c0-2.166.043-4.322.108-6.473 9.268.19 111.92 1.513 217.706-30.146 6.064 11.868 11.857 23.915 17.174 35.949-76.599 21.575-146.194 83.527-180.531 142.306C64.794 360.405 44.17 310.73 44.17 256.323zm81.807 167.113c22.127-45.233 82.178-103.622 167.579-132.756 29.74 77.283 42.039 142.053 45.189 160.638-68.112 29.013-150.015 21.053-212.768-27.882zm248.38 8.489c-2.171-12.886-13.446-74.897-41.152-151.033 66.38-10.626 124.7 6.768 131.947 9.055-9.442 58.941-43.273 109.844-90.795 141.978z" + } + }, + "free": [ + "brands" + ] + }, + "dropbox": { + "changes": [ + "3.2.0", + "5.0.0", + "5.0.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f16b", + "label": "Dropbox", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 528, + 512 + ], + "width": 528, + "height": 512, + "path": "M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z" + } + }, + "free": [ + "brands" + ] + }, + "droplet": { + "aliases": { + "names": [ + "tint" + ], + "unicodes": { + "composite": [ + "1f4a7" + ], + "secondary": [ + "10f043" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "color", + "comic", + "drop", + "droplet", + "raindrop", + "sweat", + "waterdrop" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f043", + "label": "Droplet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 512C86 512 0 426 0 320C0 228.8 130.2 57.7 166.6 11.7C172.6 4.2 181.5 0 191.1 0h1.8c9.6 0 18.5 4.2 24.5 11.7C253.8 57.7 384 228.8 384 320c0 106-86 192-192 192zM96 336c0-8.8-7.2-16-16-16s-16 7.2-16 16c0 61.9 50.1 112 112 112c8.8 0 16-7.2 16-16s-7.2-16-16-16c-44.2 0-80-35.8-80-80z" + } + }, + "free": [ + "solid" + ] + }, + "droplet-slash": { + "aliases": { + "names": [ + "tint-slash" + ], + "unicodes": { + "secondary": [ + "10f5c7" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "color", + "drop", + "droplet", + "raindrop", + "waterdrop" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5c7", + "label": "Droplet Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 512c53.2 0 101.4-21.6 136.1-56.6l-298.3-235C140 257.1 128 292.3 128 320c0 106 86 192 192 192zM505.2 370.7c4.4-16.1 6.8-33.1 6.8-50.7c0-91.2-130.2-262.3-166.6-308.3C339.4 4.2 330.5 0 320.9 0h-1.8c-9.6 0-18.5 4.2-24.5 11.7C277.8 33 240.7 81.3 205.8 136L38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L505.2 370.7zM224 336c0 44.2 35.8 80 80 80c8.8 0 16 7.2 16 16s-7.2 16-16 16c-61.9 0-112-50.1-112-112c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "drum": { + "aliases": { + "unicodes": { + "composite": [ + "1f941" + ], + "secondary": [ + "10f569" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drum", + "drumsticks", + "instrument", + "music", + "percussion", + "snare", + "sound" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f569", + "label": "Drum", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M501.2 76.1c11.1-7.3 14.2-22.1 6.9-33.2s-22.1-14.2-33.2-6.9L370.2 104.5C335.8 98.7 297 96 256 96C114.6 96 0 128 0 208V368c0 31.3 27.4 58.8 72 78.7V344c0-13.3 10.7-24 24-24s24 10.7 24 24V463.4c33 8.9 71.1 14.5 112 16.1V376c0-13.3 10.7-24 24-24s24 10.7 24 24V479.5c40.9-1.6 79-7.2 112-16.1V344c0-13.3 10.7-24 24-24s24 10.7 24 24V446.7c44.6-19.9 72-47.4 72-78.7V208c0-41.1-30.2-69.5-78.8-87.4l67.9-44.5zM307.4 145.6l-64.6 42.3c-11.1 7.3-14.2 22.1-6.9 33.2s22.1 14.2 33.2 6.9l111.1-72.8c14.7 3.2 27.9 7 39.4 11.5C458.4 181.8 464 197.4 464 208c0 .8-2.7 17.2-46 35.9C379.1 260.7 322 272 256 272s-123.1-11.3-162-28.1C50.7 225.2 48 208.8 48 208c0-10.6 5.6-26.2 44.4-41.3C130.6 151.9 187.8 144 256 144c18 0 35.1 .5 51.4 1.6z" + } + }, + "free": [ + "solid" + ] + }, + "drum-steelpan": { + "aliases": { + "unicodes": { + "secondary": [ + "10f56a" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "calypso", + "instrument", + "music", + "percussion", + "reggae", + "snare", + "sound", + "steel", + "tropical" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f56a", + "label": "Drum Steelpan", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 32c159.1 0 288 48 288 128V352c0 80-128.9 128-288 128S0 432 0 352V160C0 80 128.9 32 288 32zM528 160c0-9.9-8-29.9-55-49.8c-18.6-7.9-40.9-14.4-66-19.4l-27.8 43.6c-7.3 11.5-11.2 24.8-11.2 38.4c0 17.5 6.4 34.4 18.1 47.5l9.8 11c29.8-5.2 55.9-12.5 77.2-21.5c47.1-19.9 55-39.9 55-49.8zM349.2 237.3c-8-26.2-32.4-45.3-61.2-45.3s-53.3 19.1-61.2 45.3c19.4 1.7 39.9 2.7 61.2 2.7s41.8-.9 61.2-2.7zM169 90.8c-25.2 5-47.4 11.6-66 19.4C56 130.1 48 150.1 48 160s8 29.9 55 49.8c21.3 9 47.4 16.3 77.2 21.5l9.8-11c11.6-13.1 18.1-30 18.1-47.5c0-13.6-3.9-26.9-11.2-38.4L169 90.8zm56.3-8C224.5 87 224 91.5 224 96c0 35.3 28.7 64 64 64s64-28.7 64-64c0-4.5-.5-9-1.4-13.2C330.8 81 309.8 80 288 80s-42.8 1-62.6 2.8z" + } + }, + "free": [ + "solid" + ] + }, + "drumstick-bite": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6d7" + ] + } + }, + "changes": [ + "5.4.0", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bone", + "chicken", + "leg", + "meat", + "poultry", + "turkey" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6d7", + "label": "Drumstick Bite", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 265.2c0 8.5-3.4 16.6-9.4 22.6l-26.8 26.8c-12.3 12.3-32.5 11.4-49.4 7.2C69.8 320.6 65 320 60 320c-33.1 0-60 26.9-60 60s26.9 60 60 60c6.3 0 12 5.7 12 12c0 33.1 26.9 60 60 60s60-26.9 60-60c0-5-.6-9.8-1.8-14.5c-4.2-16.9-5.2-37.1 7.2-49.4l26.8-26.8c6-6 14.1-9.4 22.6-9.4H336c6.3 0 12.4-.3 18.5-1c11.9-1.2 16.4-15.5 10.8-26c-8.5-15.8-13.3-33.8-13.3-53c0-61.9 50.1-112 112-112c8 0 15.7 .8 23.2 2.4c11.7 2.5 24.1-5.9 22-17.6C494.5 62.5 422.5 0 336 0C238.8 0 160 78.8 160 176v89.2z" + } + }, + "free": [ + "solid" + ] + }, + "drupal": { + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a9", + "label": "Drupal Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M303.973,108.136C268.2,72.459,234.187,38.35,224.047,0c-9.957,38.35-44.25,72.459-80.019,108.136C90.467,161.7,29.716,222.356,29.716,313.436c-2.337,107.3,82.752,196.18,190.053,198.517S415.948,429.2,418.285,321.9q.091-4.231,0-8.464C418.285,222.356,357.534,161.7,303.973,108.136Zm-174.326,223a130.282,130.282,0,0,0-15.211,24.153,4.978,4.978,0,0,1-3.319,2.766h-1.659c-4.333,0-9.219-8.481-9.219-8.481h0c-1.29-2.028-2.489-4.149-3.687-6.361l-.83-1.752c-11.247-25.72-1.475-62.318-1.475-62.318h0a160.585,160.585,0,0,1,23.231-49.873A290.8,290.8,0,0,1,138.5,201.613l9.219,9.219,43.512,44.434a4.979,4.979,0,0,1,0,6.638L145.78,312.33h0Zm96.612,127.311a67.2,67.2,0,0,1-49.781-111.915c14.2-16.871,31.528-33.464,50.334-55.313,22.309,23.785,36.875,40.1,51.164,57.986a28.413,28.413,0,0,1,2.95,4.425,65.905,65.905,0,0,1,11.984,37.981,66.651,66.651,0,0,1-66.466,66.836ZM352.371,351.6h0a7.743,7.743,0,0,1-6.176,5.347H344.9a11.249,11.249,0,0,1-6.269-5.07h0a348.21,348.21,0,0,0-39.456-48.952L281.387,284.49,222.3,223.185a497.888,497.888,0,0,1-35.4-36.322,12.033,12.033,0,0,0-.922-1.382,35.4,35.4,0,0,1-4.7-9.219V174.51a31.346,31.346,0,0,1,9.218-27.656c11.432-11.431,22.955-22.954,33.833-34.939,11.984,13.275,24.8,26,37.428,38.627h0a530.991,530.991,0,0,1,69.6,79.1,147.494,147.494,0,0,1,27.011,83.8A134.109,134.109,0,0,1,352.371,351.6Z" + } + }, + "free": [ + "brands" + ] + }, + "dumbbell": { + "aliases": { + "unicodes": { + "secondary": [ + "10f44b" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exercise", + "gym", + "strength", + "weight", + "weight-lifting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f44b", + "label": "Dumbbell", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321812, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M112 96c0-17.7 14.3-32 32-32h16c17.7 0 32 14.3 32 32V224v64V416c0 17.7-14.3 32-32 32H144c-17.7 0-32-14.3-32-32V384H64c-17.7 0-32-14.3-32-32V288c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32h48V96zm416 0v32h48c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32v64c0 17.7-14.3 32-32 32H528v32c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32V288 224 96c0-17.7 14.3-32 32-32h16c17.7 0 32 14.3 32 32zM416 224v64H224V224H416z" + } + }, + "free": [ + "solid" + ] + }, + "dumpster": { + "aliases": { + "unicodes": { + "secondary": [ + "10f793" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alley", + "bin", + "commercial", + "trash", + "waste" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f793", + "label": "Dumpster", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M49.7 32c-10.5 0-19.8 6.9-22.9 16.9L.9 133c-.6 2-.9 4.1-.9 6.1C0 150.7 9.3 160 20.9 160h94L140.5 32H49.7zM272 160V32H173.1L147.5 160H272zm32 0H428.5L402.9 32H304V160zm157.1 0h94c11.5 0 20.9-9.3 20.9-20.9c0-2.1-.3-4.1-.9-6.1L549.2 48.9C546.1 38.9 536.8 32 526.3 32H435.5l25.6 128zM32 192l4 32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H44L64 448c0 17.7 14.3 32 32 32s32-14.3 32-32H448c0 17.7 14.3 32 32 32s32-14.3 32-32l20-160h12c17.7 0 32-14.3 32-32s-14.3-32-32-32h-4l4-32H32z" + } + }, + "free": [ + "solid" + ] + }, + "dumpster-fire": { + "aliases": { + "unicodes": { + "secondary": [ + "10f794" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alley", + "bin", + "commercial", + "danger", + "dangerous", + "euphemism", + "flame", + "heat", + "hot", + "trash", + "waste" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f794", + "label": "Dumpster Fire", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M49.7 32c-10.5 0-19.8 6.9-22.9 16.9L.9 133c-.6 2-.9 4.1-.9 6.1C0 150.7 9.3 160 20.9 160h94L140.5 32H49.7zM272 160V32H173.1L147.5 160H272zm32 0h58c15.1-18.1 32.1-35.7 50.5-52.1c1.5-1.4 3.2-2.6 4.8-3.8L402.9 32H304V160zm209.9-23.7c17.4-15.8 43.9-16.2 61.7-1.2c-.1-.7-.3-1.4-.5-2.1L549.2 48.9C546.1 38.9 536.8 32 526.3 32H435.5l12.8 64.2c9.6 1 19 4.9 26.6 11.8c11.7 10.6 23 21.6 33.9 33.1c1.6-1.6 3.3-3.2 5-4.8zM325.2 210.7c3.8-6.2 7.9-12.5 12.3-18.7H32l4 32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H44L64 448c0 17.7 14.3 32 32 32s32-14.3 32-32H337.6c-31-34.7-49.6-80.6-49.6-129.9c0-35.2 16.3-73.6 37.2-107.4zm128.4-78.9c-2.8-2.5-6.3-3.7-9.8-3.8c-3.6 0-7.2 1.2-10 3.7c-33.2 29.7-61.4 63.4-81.4 95.8c-19.7 31.9-32.4 66.2-32.4 92.6C320 407.9 390.3 480 480 480c88.7 0 160-72 160-159.8c0-20.2-9.6-50.9-24.2-79c-14.8-28.5-35.7-58.5-60.4-81.1c-5.6-5.1-14.4-5.2-20 0c-9.6 8.8-18.6 19.6-26.5 29.5c-17.3-20.7-35.8-39.9-55.5-57.7zM530 401c-15 10-31 15-49 15c-45 0-81-29-81-78c0-24 15-45 45-82c4 5 62 79 62 79l36-42c3 4 5 8 7 12c18 33 10 75-20 96z" + } + }, + "free": [ + "solid" + ] + }, + "dungeon": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6d9" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "building", + "d&d", + "dnd", + "door", + "entrance", + "fantasy", + "gate" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6d9", + "label": "Dungeon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M336.6 156.5c1.3 1.1 2.7 2.2 3.9 3.3c9.3 8.2 23 10.5 33.4 3.6l67.6-45.1c11.4-7.6 14.2-23.2 5.1-33.4C430 66.6 410.9 50.6 389.7 37.6c-11.9-7.3-26.9-1.4-32.1 11.6l-30.5 76.2c-4.5 11.1 .2 23.6 9.5 31.2zM328 36.8c5.1-12.8-1.6-27.4-15-30.5C294.7 2.2 275.6 0 256 0s-38.7 2.2-57 6.4C185.5 9.4 178.8 24 184 36.8l30.3 75.8c4.5 11.3 16.8 17.2 29 16c4.2-.4 8.4-.6 12.7-.6s8.6 .2 12.7 .6c12.1 1.2 24.4-4.7 29-16L328 36.8zM65.5 85c-9.1 10.2-6.3 25.8 5.1 33.4l67.6 45.1c10.3 6.9 24.1 4.6 33.4-3.6c1.3-1.1 2.6-2.3 4-3.3c9.3-7.5 13.9-20.1 9.5-31.2L154.4 49.2c-5.2-12.9-20.3-18.8-32.1-11.6C101.1 50.6 82 66.6 65.5 85zm314 137.1c.9 3.3 1.7 6.6 2.3 10c2.5 13 13 23.9 26.2 23.9h80c13.3 0 24.1-10.8 22.9-24c-2.5-27.2-9.3-53.2-19.7-77.3c-5.5-12.9-21.4-16.6-33.1-8.9l-68.6 45.7c-9.8 6.5-13.2 19.2-10 30.5zM53.9 145.8c-11.6-7.8-27.6-4-33.1 8.9C10.4 178.8 3.6 204.8 1.1 232c-1.2 13.2 9.6 24 22.9 24h80c13.3 0 23.8-10.8 26.2-23.9c.6-3.4 1.4-6.7 2.3-10c3.1-11.4-.2-24-10-30.5L53.9 145.8zM104 288H24c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V312c0-13.3-10.7-24-24-24zm304 0c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V312c0-13.3-10.7-24-24-24H408zM24 416c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V440c0-13.3-10.7-24-24-24H24zm384 0c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V440c0-13.3-10.7-24-24-24H408zM272 192c0-8.8-7.2-16-16-16s-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V192zm-64 32c0-8.8-7.2-16-16-16s-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V224zm128 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V464c0 8.8 7.2 16 16 16s16-7.2 16-16V224z" + } + }, + "free": [ + "solid" + ] + }, + "dyalog": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f399", + "label": "Dyalog", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 416, + 512 + ], + "width": 416, + "height": 512, + "path": "M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z" + } + }, + "free": [ + "brands" + ] + }, + "e": { + "aliases": { + "unicodes": { + "composite": [ + "65" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter E", + "Latin Small Letter E", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "45", + "label": "E", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V256 416c0 35.3 28.7 64 64 64H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H64z" + } + }, + "free": [ + "solid" + ] + }, + "ear-deaf": { + "aliases": { + "names": [ + "deaf", + "deafness", + "hard-of-hearing" + ], + "unicodes": { + "secondary": [ + "10f2a4" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ear", + "hearing", + "sign language" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2a4", + "label": "Ear Deaf", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.6 54.6l-40 40c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l40-40c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3zm-320 320l-128 128c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l128-128c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3zM240 128c-57.6 0-105.1 43.6-111.3 99.5c-1.9 17.6-17.8 30.2-35.3 28.3s-30.2-17.8-28.3-35.3C74.8 132.5 149.4 64 240 64c97.2 0 176 78.8 176 176c0 46-17.7 87.9-46.6 119.3c-12 13-17.4 24.8-17.4 34.7V400c0 61.9-50.1 112-112 112c-17.7 0-32-14.3-32-32s14.3-32 32-32c26.5 0 48-21.5 48-48v-6.1c0-32.9 17.4-59.6 34.4-78c18.4-20 29.6-46.6 29.6-75.9c0-61.9-50.1-112-112-112zm0 80c-17.7 0-32 14.3-32 32c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-44.2 35.8-80 80-80s80 35.8 80 80c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-17.7-14.3-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "ear-listen": { + "aliases": { + "names": [ + "assistive-listening-systems" + ], + "unicodes": { + "secondary": [ + "10f2a2" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "amplify", + "audio", + "deaf", + "ear", + "headset", + "hearing", + "sound" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2a2", + "label": "Ear Listen", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M398.3 3.4c-15.8-7.9-35-1.5-42.9 14.3c-7.9 15.8-1.5 34.9 14.2 42.9l.4 .2c.4 .2 1.1 .6 2.1 1.2c2 1.2 5 3 8.7 5.6c7.5 5.2 17.6 13.2 27.7 24.2C428.5 113.4 448 146 448 192c0 17.7 14.3 32 32 32s32-14.3 32-32c0-66-28.5-113.4-56.5-143.7C441.6 33.2 427.7 22.2 417.3 15c-5.3-3.7-9.7-6.4-13-8.3c-1.6-1-3-1.7-4-2.2c-.5-.3-.9-.5-1.2-.7l-.4-.2-.2-.1-.1 0 0 0c0 0 0 0-14.3 28.6L398.3 3.4zM128.7 227.5c6.2-56 53.7-99.5 111.3-99.5c61.9 0 112 50.1 112 112c0 29.3-11.2 55.9-29.6 75.9c-17 18.4-34.4 45.1-34.4 78V400c0 26.5-21.5 48-48 48c-17.7 0-32 14.3-32 32s14.3 32 32 32c61.9 0 112-50.1 112-112v-6.1c0-9.8 5.4-21.7 17.4-34.7C398.3 327.9 416 286 416 240c0-97.2-78.8-176-176-176C149.4 64 74.8 132.5 65.1 220.5c-1.9 17.6 10.7 33.4 28.3 35.3s33.4-10.7 35.3-28.3zM32 512a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM192 352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-64-64c-12.5-12.5-32.8-12.5-45.3 0zM208 240c0-17.7 14.3-32 32-32s32 14.3 32 32c0 13.3 10.7 24 24 24s24-10.7 24-24c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 13.3 10.7 24 24 24s24-10.7 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "earlybirds": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f39a", + "label": "Earlybirds", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 480, + 512 + ], + "width": 480, + "height": 512, + "path": "M313.2 47.5c1.2-13 21.3-14 36.6-8.7.9.3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2.3.9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2.8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7.9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2.8-10.5-25.4 21.5-42.6 66.8-73.4.7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1.3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1.6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7.6 11.6.8 12.7 2.6.3.5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z" + } + }, + "free": [ + "brands" + ] + }, + "earth-africa": { + "aliases": { + "names": [ + "globe-africa" + ], + "unicodes": { + "composite": [ + "1f30d" + ], + "secondary": [ + "10f57c" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "africa", + "all", + "country", + "earth", + "europe", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f57c", + "label": "Earth Africa", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M177.8 63.2l10 17.4c2.8 4.8 4.2 10.3 4.2 15.9v41.4c0 3.9 1.6 7.7 4.3 10.4c6.2 6.2 16.5 5.7 22-1.2l13.6-17c4.7-5.9 12.9-7.7 19.6-4.3l15.2 7.6c3.4 1.7 7.2 2.6 11 2.6c6.5 0 12.8-2.6 17.4-7.2l3.9-3.9c2.9-2.9 7.3-3.6 11-1.8l29.2 14.6c7.8 3.9 12.6 11.8 12.6 20.5c0 10.5-7.1 19.6-17.3 22.2l-35.4 8.8c-7.4 1.8-15.1 1.5-22.3-.9l-32-10.7c-3.3-1.1-6.7-1.7-10.2-1.7c-7 0-13.8 2.3-19.4 6.5L176 212c-10.1 7.6-16 19.4-16 32v28c0 26.5 21.5 48 48 48h32c8.8 0 16 7.2 16 16v48c0 17.7 14.3 32 32 32c10.1 0 19.6-4.7 25.6-12.8l25.6-34.1c8.3-11.1 12.8-24.6 12.8-38.4V318.6c0-3.9 2.6-7.3 6.4-8.2l5.3-1.3c11.9-3 20.3-13.7 20.3-26c0-7.1-2.8-13.9-7.8-18.9l-33.5-33.5c-3.7-3.7-3.7-9.7 0-13.4c5.7-5.7 14.1-7.7 21.8-5.1l14.1 4.7c12.3 4.1 25.7-1.5 31.5-13c3.5-7 11.2-10.8 18.9-9.2l27.4 5.5C432 112.4 351.5 48 256 48c-27.7 0-54 5.4-78.2 15.2zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + }, + "free": [ + "solid" + ] + }, + "earth-americas": { + "aliases": { + "names": [ + "earth", + "earth-america", + "globe-americas" + ], + "unicodes": { + "composite": [ + "1f30e" + ], + "secondary": [ + "10f57d" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "america", + "country", + "earth", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f57d", + "label": "Earth Americas", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M57.7 193l9.4 16.4c8.3 14.5 21.9 25.2 38 29.8L163 255.7c17.2 4.9 29 20.6 29 38.5v39.9c0 11 6.2 21 16 25.9s16 14.9 16 25.9v39c0 15.6 14.9 26.9 29.9 22.6c16.1-4.6 28.6-17.5 32.7-33.8l2.8-11.2c4.2-16.9 15.2-31.4 30.3-40l8.1-4.6c15-8.5 24.2-24.5 24.2-41.7v-8.3c0-12.7-5.1-24.9-14.1-33.9l-3.9-3.9c-9-9-21.2-14.1-33.9-14.1H257c-11.1 0-22.1-2.9-31.8-8.4l-34.5-19.7c-4.3-2.5-7.6-6.5-9.2-11.2c-3.2-9.6 1.1-20 10.2-24.5l5.9-3c6.6-3.3 14.3-3.9 21.3-1.5l23.2 7.7c8.2 2.7 17.2-.4 21.9-7.5c4.7-7 4.2-16.3-1.2-22.8l-13.6-16.3c-10-12-9.9-29.5 .3-41.3l15.7-18.3c8.8-10.3 10.2-25 3.5-36.7l-2.4-4.2c-3.5-.2-6.9-.3-10.4-.3C163.1 48 84.4 108.9 57.7 193zM464 256c0-36.8-9.6-71.4-26.4-101.5L412 164.8c-15.7 6.3-23.8 23.8-18.5 39.8l16.9 50.7c3.5 10.4 12 18.3 22.6 20.9l29.1 7.3c1.2-9 1.8-18.2 1.8-27.5zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + }, + "free": [ + "solid" + ] + }, + "earth-asia": { + "aliases": { + "names": [ + "globe-asia" + ], + "unicodes": { + "composite": [ + "1f30f" + ], + "secondary": [ + "10f57e" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "asia", + "australia", + "country", + "earth", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f57e", + "label": "Earth Asia", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M51.7 295.1l31.7 6.3c7.9 1.6 16-.9 21.7-6.6l15.4-15.4c11.6-11.6 31.1-8.4 38.4 6.2l9.3 18.5c4.8 9.6 14.6 15.7 25.4 15.7c15.2 0 26.1-14.6 21.7-29.2l-6-19.9c-4.6-15.4 6.9-30.9 23-30.9h2.3c13.4 0 25.9-6.7 33.3-17.8l10.7-16.1c5.6-8.5 5.3-19.6-.8-27.7l-16.1-21.5c-10.3-13.7-3.3-33.5 13.4-37.7l17-4.3c7.5-1.9 13.6-7.2 16.5-14.4l16.4-40.9C303.4 52.1 280.2 48 256 48C141.1 48 48 141.1 48 256c0 13.4 1.3 26.5 3.7 39.1zm407.7 4.6c-3-.3-6-.1-9 .8l-15.8 4.4c-6.7 1.9-13.8-.9-17.5-6.7l-2-3.1c-6-9.4-16.4-15.1-27.6-15.1s-21.6 5.7-27.6 15.1l-6.1 9.5c-1.4 2.2-3.4 4.1-5.7 5.3L312 330.1c-18.1 10.1-25.5 32.4-17 51.3l5.5 12.4c8.6 19.2 30.7 28.5 50.5 21.1l2.6-1c10-3.7 21.3-2.2 29.9 4.1l1.5 1.1c37.2-29.5 64.1-71.4 74.4-119.5zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm144.5 92.1c-2.1 8.6 3.1 17.3 11.6 19.4l32 8c8.6 2.1 17.3-3.1 19.4-11.6s-3.1-17.3-11.6-19.4l-32-8c-8.6-2.1-17.3 3.1-19.4 11.6zm92-20c-2.1 8.6 3.1 17.3 11.6 19.4s17.3-3.1 19.4-11.6l8-32c2.1-8.6-3.1-17.3-11.6-19.4s-17.3 3.1-19.4 11.6l-8 32zM343.2 113.7c-7.9-4-17.5-.7-21.5 7.2l-16 32c-4 7.9-.7 17.5 7.2 21.5s17.5 .7 21.5-7.2l16-32c4-7.9 .7-17.5-7.2-21.5z" + } + }, + "free": [ + "solid" + ] + }, + "earth-europe": { + "aliases": { + "names": [ + "globe-europe" + ], + "unicodes": { + "secondary": [ + "10f7a2" + ] + } + }, + "changes": [ + "5.6.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "country", + "earth", + "europe", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7a2", + "label": "Earth Europe", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M266.3 48.3L232.5 73.6c-5.4 4-8.5 10.4-8.5 17.1v9.1c0 6.8 5.5 12.3 12.3 12.3c2.4 0 4.8-.7 6.8-2.1l41.8-27.9c2-1.3 4.4-2.1 6.8-2.1h1c6.2 0 11.3 5.1 11.3 11.3c0 3-1.2 5.9-3.3 8l-19.9 19.9c-5.8 5.8-12.9 10.2-20.7 12.8l-26.5 8.8c-5.8 1.9-9.6 7.3-9.6 13.4c0 3.7-1.5 7.3-4.1 10l-17.9 17.9c-6.4 6.4-9.9 15-9.9 24v4.3c0 16.4 13.6 29.7 29.9 29.7c11 0 21.2-6.2 26.1-16l4-8.1c2.4-4.8 7.4-7.9 12.8-7.9c4.5 0 8.7 2.1 11.4 5.7l16.3 21.7c2.1 2.9 5.5 4.5 9.1 4.5c8.4 0 13.9-8.9 10.1-16.4l-1.1-2.3c-3.5-7 0-15.5 7.5-18l21.2-7.1c7.6-2.5 12.7-9.6 12.7-17.6c0-10.3 8.3-18.6 18.6-18.6H400c8.8 0 16 7.2 16 16s-7.2 16-16 16H379.3c-7.2 0-14.2 2.9-19.3 8l-4.7 4.7c-2.1 2.1-3.3 5-3.3 8c0 6.2 5.1 11.3 11.3 11.3h11.3c6 0 11.8 2.4 16 6.6l6.5 6.5c1.8 1.8 2.8 4.3 2.8 6.8s-1 5-2.8 6.8l-7.5 7.5C386 262 384 266.9 384 272s2 10 5.7 13.7L408 304c10.2 10.2 24.1 16 38.6 16H454c6.5-20.2 10-41.7 10-64c0-111.4-87.6-202.4-197.7-207.7zm172 307.9c-3.7-2.6-8.2-4.1-13-4.1c-6 0-11.8-2.4-16-6.6L396 332c-7.7-7.7-18-12-28.9-12c-9.7 0-19.2-3.5-26.6-9.8L314 287.4c-11.6-9.9-26.4-15.4-41.6-15.4H251.4c-12.6 0-25 3.7-35.5 10.7L188.5 301c-17.8 11.9-28.5 31.9-28.5 53.3v3.2c0 17 6.7 33.3 18.7 45.3l16 16c8.5 8.5 20 13.3 32 13.3H248c13.3 0 24 10.7 24 24c0 2.5 .4 5 1.1 7.3c71.3-5.8 132.5-47.6 165.2-107.2zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM187.3 100.7c-6.2-6.2-16.4-6.2-22.6 0l-32 32c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l32-32c6.2-6.2 6.2-16.4 0-22.6z" + } + }, + "free": [ + "solid" + ] + }, + "earth-oceania": { + "aliases": { + "names": [ + "globe-oceania" + ] + }, + "changes": [ + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "australia", + "country", + "earth", + "global", + "globe", + "gps", + "language", + "localize", + "location", + "map", + "melanesia", + "micronesia", + "new zealand", + "online", + "place", + "planet", + "polynesia", + "translate", + "travel", + "world" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e47b", + "label": "Earth Oceania", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM208.6 357.3l-39-13.5c-6.5-2.2-13.6-2.3-20.1-.3l-15.3 4.9c-18.5 5.9-38.5-2.4-47.5-19.5l-3.3-6.2c-10.6-20.1-2.3-45 18.2-54.7l35.3-16.8c2.3-1.1 4.4-2.8 5.9-4.8l5.3-7c7.2-9.6 18.6-15.3 30.6-15.3s23.4 5.7 30.6 15.3l4.6 6.1c2 2.6 4.9 4.5 8.1 5.1c7.8 1.6 15.7-1.5 20.4-7.9l10.4-14.2c2-2.8 5.3-4.4 8.7-4.4c4.4 0 8.4 2.7 10 6.8l10.1 25.9c2.8 7.2 6.7 14 11.5 20.2L311 299.8c5.8 7.4 9 16.6 9 26s-3.2 18.6-9 26L299 367.2c-8.3 10.6-21 16.8-34.4 16.8c-8.4 0-16.6-2.4-23.7-7l-25.4-16.4c-2.2-1.4-4.5-2.5-6.9-3.4zm65.2-214.8L296 164.7c10.1 10.1 2.9 27.3-11.3 27.3H254.8c-5.6 0-11.1-1.2-16.2-3.4l-42.8-19c-14.3-6.3-11.9-27.3 3.4-30.3l38.5-7.7c13.1-2.6 26.7 1.5 36.1 10.9zM248 432c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H264c-8.8 0-16-7.2-16-16zM431.2 298.9l8 24c2.8 8.4-1.7 17.4-10.1 20.2s-17.4-1.7-20.2-10.1l-8-24c-2.8-8.4 1.7-17.4 10.1-20.2s17.4 1.7 20.2 10.1zm-19.9 80.4l-32 32c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l32-32c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + }, + "free": [ + "solid" + ] + }, + "ebay": { + "changes": [ + "5.0.11", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f4", + "label": "eBay", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M606 189.5l-54.8 109.9-54.9-109.9h-37.5l10.9 20.6c-11.5-19-35.9-26-63.3-26-31.8 0-67.9 8.7-71.5 43.1h33.7c1.4-13.8 15.7-21.8 35-21.8 26 0 41 9.6 41 33v3.4c-12.7 0-28 .1-41.7.4-42.4.9-69.6 10-76.7 34.4 1-5.2 1.5-10.6 1.5-16.2 0-52.1-39.7-76.2-75.4-76.2-21.3 0-43 5.5-58.7 24.2v-80.6h-32.1v169.5c0 10.3-.6 22.9-1.1 33.1h31.5c.7-6.3 1.1-12.9 1.1-19.5 13.6 16.6 35.4 24.9 58.7 24.9 36.9 0 64.9-21.9 73.3-54.2-.5 2.8-.7 5.8-.7 9 0 24.1 21.1 45 60.6 45 26.6 0 45.8-5.7 61.9-25.5 0 6.6.3 13.3 1.1 20.2h29.8c-.7-8.2-1-17.5-1-26.8v-65.6c0-9.3-1.7-17.2-4.8-23.8l61.5 116.1-28.5 54.1h35.9L640 189.5zM243.7 313.8c-29.6 0-50.2-21.5-50.2-53.8 0-32.4 20.6-53.8 50.2-53.8 29.8 0 50.2 21.4 50.2 53.8 0 32.3-20.4 53.8-50.2 53.8zm200.9-47.3c0 30-17.9 48.4-51.6 48.4-25.1 0-35-13.4-35-25.8 0-19.1 18.1-24.4 47.2-25.3 13.1-.5 27.6-.6 39.4-.6zm-411.9 1.6h128.8v-8.5c0-51.7-33.1-75.4-78.4-75.4-56.8 0-83 30.8-83 77.6 0 42.5 25.3 74 82.5 74 31.4 0 68-11.7 74.4-46.1h-33.1c-12 35.8-87.7 36.7-91.2-21.6zm95-21.4H33.3c6.9-56.6 92.1-54.7 94.4 0z" + } + }, + "free": [ + "brands" + ] + }, + "edge": { + "changes": [ + "4.5.0", + "5.0.0", + "5.12.1", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "ie" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f282", + "label": "Edge Browser", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M120.1 37.44C161.1 12.23 207.7-.7753 255 .0016C423 .0016 512 123.8 512 219.5C511.9 252.2 499 283.4 476.1 306.7C453.2 329.9 422.1 343.2 389.4 343.7C314.2 343.7 297.9 320.6 297.9 311.7C297.9 307.9 299.1 305.5 302.7 302.3L303.7 301.1L304.1 299.5C314.6 288 320 273.3 320 257.9C320 179.2 237.8 115.2 136 115.2C98.46 114.9 61.46 124.1 28.48 142.1C55.48 84.58 111.2 44.5 119.8 38.28C120.6 37.73 120.1 37.44 120.1 37.44V37.44zM135.7 355.5C134.3 385.5 140.3 415.5 152.1 442.7C165.7 469.1 184.8 493.7 208.6 512C149.1 500.5 97.11 468.1 59.2 422.7C21.12 376.3 0 318.4 0 257.9C0 206.7 62.4 163.5 136 163.5C172.6 162.9 208.4 174.4 237.8 196.2L234.2 197.4C182.7 215 135.7 288.1 135.7 355.5V355.5zM469.8 400L469.1 400.1C457.3 418.9 443.2 435.2 426.9 449.6C396.1 477.6 358.8 495.1 318.1 499.5C299.5 499.8 281.3 496.3 264.3 488.1C238.7 477.8 217.2 458.1 202.7 435.1C188.3 411.2 181.6 383.4 183.7 355.5C183.1 335.4 189.1 315.2 198.7 297.3C212.6 330.4 236.2 358.6 266.3 378.1C296.4 397.6 331.8 407.6 367.7 406.7C398.7 407 429.8 400 457.9 386.2L459.8 385.3C463.7 383 467.5 381.4 471.4 385.3C475.9 390.2 473.2 394.5 470.2 399.3C470 399.5 469.9 399.8 469.8 400V400z" + } + }, + "free": [ + "brands" + ] + }, + "edge-legacy": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e078", + "label": "Edge Legacy Browser", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M25.71,228.16l.35-.48c0,.16,0,.32-.07.48Zm460.58,15.51c0-44-7.76-84.46-28.81-122.4C416.5,47.88,343.91,8,258.89,8,119,7.72,40.62,113.21,26.06,227.68c42.42-61.31,117.07-121.38,220.37-125,0,0,109.67,0,99.42,105H170c6.37-37.39,18.55-59,34.34-78.93-75.05,34.9-121.85,96.1-120.75,188.32.83,71.45,50.13,144.84,120.75,172,83.35,31.84,192.77,7.2,240.13-21.33V363.31C363.6,419.8,173.6,424.23,172.21,295.74H486.29V243.67Z" + } + }, + "free": [ + "brands" + ] + }, + "egg": { + "aliases": { + "unicodes": { + "composite": [ + "1f95a" + ], + "secondary": [ + "10f7fb" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breakfast", + "chicken", + "easter", + "egg", + "food", + "shell", + "yolk" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7fb", + "label": "Egg", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 496C86 496 0 394 0 288C0 176 64 16 192 16s192 160 192 272c0 106-86 208-192 208zM154.8 134c6.5-6 7-16.1 1-22.6s-16.1-7-22.6-1c-23.9 21.8-41.1 52.7-52.3 84.2C69.7 226.1 64 259.7 64 288c0 8.8 7.2 16 16 16s16-7.2 16-16c0-24.5 5-54.4 15.1-82.8c10.1-28.5 25-54.1 43.7-71.2z" + } + }, + "free": [ + "solid" + ] + }, + "eject": { + "aliases": { + "unicodes": { + "composite": [ + "23cf" + ], + "secondary": [ + "10f052" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abort", + "cancel", + "cd", + "discharge", + "eject", + "eject button" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f052", + "label": "Eject", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 32c13.5 0 26.3 5.6 35.4 15.6l176 192c12.9 14 16.2 34.3 8.6 51.8S419 320 400 320H48c-19 0-36.3-11.2-43.9-28.7s-4.3-37.7 8.6-51.8l176-192C197.7 37.6 210.5 32 224 32zM0 432c0-26.5 21.5-48 48-48H400c26.5 0 48 21.5 48 48s-21.5 48-48 48H48c-26.5 0-48-21.5-48-48z" + } + }, + "free": [ + "solid" + ] + }, + "elementor": { + "changes": [ + "5.0.3", + "6.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f430", + "label": "Elementor", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M.361 256C.361 397 114 511 255 511C397 511 511 397 511 256C511 116 397 2.05 255 2.05C114 2.05 .361 116 .361 256zM192 150V363H149V150H192zM234 150H362V193H234V150zM362 235V278H234V235H362zM234 320H362V363H234V320z" + } + }, + "free": [ + "brands" + ] + }, + "elevator": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accessibility", + "elevator", + "hoist", + "lift", + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e16d", + "label": "Elevator", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M132.7 4.7l-64 64c-4.6 4.6-5.9 11.5-3.5 17.4s8.3 9.9 14.8 9.9H208c6.5 0 12.3-3.9 14.8-9.9s1.1-12.9-3.5-17.4l-64-64c-6.2-6.2-16.4-6.2-22.6 0zM64 128c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H64zm96 96a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM80 400c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v16c0 17.7-14.3 32-32 32H112c-17.7 0-32-14.3-32-32V400zm192 0c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v16c0 17.7-14.3 32-32 32H304c-17.7 0-32-14.3-32-32V400zm32-128a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM356.7 91.3c6.2 6.2 16.4 6.2 22.6 0l64-64c4.6-4.6 5.9-11.5 3.5-17.4S438.5 0 432 0H304c-6.5 0-12.3 3.9-14.8 9.9s-1.1 12.9 3.5 17.4l64 64z" + } + }, + "free": [ + "solid" + ] + }, + "ellipsis": { + "aliases": { + "names": [ + "ellipsis-h" + ], + "unicodes": { + "secondary": [ + "10f141" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dots", + "drag", + "kebab", + "list", + "menu", + "nav", + "navigation", + "ol", + "pacman", + "reorder", + "settings", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f141", + "label": "Ellipsis", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 256a56 56 0 1 1 112 0A56 56 0 1 1 0 256zm160 0a56 56 0 1 1 112 0 56 56 0 1 1 -112 0zm216-56a56 56 0 1 1 0 112 56 56 0 1 1 0-112z" + } + }, + "free": [ + "solid" + ] + }, + "ellipsis-vertical": { + "aliases": { + "names": [ + "ellipsis-v" + ], + "unicodes": { + "secondary": [ + "10f142" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dots", + "drag", + "kebab", + "list", + "menu", + "nav", + "navigation", + "ol", + "reorder", + "settings", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f142", + "label": "Ellipsis Vertical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 128, + 512 + ], + "width": 128, + "height": 512, + "path": "M56 472a56 56 0 1 1 0-112 56 56 0 1 1 0 112zm0-160a56 56 0 1 1 0-112 56 56 0 1 1 0 112zM0 96a56 56 0 1 1 112 0A56 56 0 1 1 0 96z" + } + }, + "free": [ + "solid" + ] + }, + "ello": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5f1", + "label": "Ello", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm143.84 285.2C375.31 358.51 315.79 404.8 248 404.8s-127.31-46.29-143.84-111.6c-1.65-7.44 2.48-15.71 9.92-17.36 7.44-1.65 15.71 2.48 17.36 9.92 14.05 52.91 62 90.11 116.56 90.11s102.51-37.2 116.56-90.11c1.65-7.44 9.92-12.4 17.36-9.92 7.44 1.65 12.4 9.92 9.92 17.36z" + } + }, + "free": [ + "brands" + ] + }, + "ember": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f423", + "label": "Ember", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6.5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1-44.2-27.6-49-24c-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-11.4-6.8-21.3-.5-27.2 5.3 13.6-17.3 46.4-64.2 36.9-105.2-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7.8-53.5-28.5 18.8-28.5 18.8-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5.3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7.3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7 16.4 1 36.5-47.9c11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7 30.9 5.3 30.9 5.3 15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z" + } + }, + "free": [ + "brands" + ] + }, + "empire": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d1", + "label": "Galactic Empire", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5.8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z" + } + }, + "free": [ + "brands" + ] + }, + "envelope": { + "aliases": { + "unicodes": { + "composite": [ + "1f582", + "2709", + "f003" + ], + "secondary": [ + "10f0e0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Back of Envelope", + "e-mail", + "email", + "envelope", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0e0", + "label": "Envelope", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 112c-8.8 0-16 7.2-16 16v22.1L220.5 291.7c20.7 17 50.4 17 71.1 0L464 150.1V128c0-8.8-7.2-16-16-16H64zM48 212.2V384c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V212.2L322 328.8c-38.4 31.5-93.7 31.5-132 0L48 212.2zM0 128C0 92.7 28.7 64 64 64H448c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "envelope-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "check", + "email", + "envelope", + "mail", + "not affected", + "ok", + "okay", + "read", + "sent" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4e8", + "label": "Envelope Circle Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0l57.4-43c23.9-59.8 79.7-103.3 146.3-109.8l13.9-10.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176V384c0 35.3 28.7 64 64 64H360.2C335.1 417.6 320 378.5 320 336c0-5.6 .3-11.1 .8-16.6l-26.4 19.8zM640 336a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 353.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + }, + "free": [ + "solid" + ] + }, + "envelope-open": { + "aliases": { + "unicodes": { + "composite": [ + "f2b7" + ], + "secondary": [ + "10f2b6" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2b6", + "label": "Envelope Open", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 208.1L256 65.9 448 208.1v47.4L289.5 373c-9.7 7.2-21.4 11-33.5 11s-23.8-3.9-33.5-11L64 255.5V208.1zM256 0c-12.1 0-23.8 3.9-33.5 11L25.9 156.7C9.6 168.8 0 187.8 0 208.1V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V208.1c0-20.3-9.6-39.4-25.9-51.4L289.5 11C279.8 3.9 268.1 0 256 0z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M255.4 48.2c.2-.1 .4-.2 .6-.2s.4 .1 .6 .2L460.6 194c2.1 1.5 3.4 3.9 3.4 6.5v13.6L291.5 355.7c-20.7 17-50.4 17-71.1 0L48 214.1V200.5c0-2.6 1.2-5 3.4-6.5L255.4 48.2zM48 276.2L190 392.8c38.4 31.5 93.7 31.5 132 0L464 276.2V456c0 4.4-3.6 8-8 8H56c-4.4 0-8-3.6-8-8V276.2zM256 0c-10.2 0-20.2 3.2-28.5 9.1L23.5 154.9C8.7 165.4 0 182.4 0 200.5V456c0 30.9 25.1 56 56 56H456c30.9 0 56-25.1 56-56V200.5c0-18.1-8.7-35.1-23.4-45.6L284.5 9.1C276.2 3.2 266.2 0 256 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "envelope-open-text": { + "aliases": { + "unicodes": { + "secondary": [ + "10f658" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.1", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f658", + "label": "Envelope Open Text", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M215.4 96H144 107.8 96v8.8V144v40.4 89L.2 202.5c1.6-18.1 10.9-34.9 25.7-45.8L48 140.3V96c0-26.5 21.5-48 48-48h76.6l49.9-36.9C232.2 3.9 243.9 0 256 0s23.8 3.9 33.5 11L339.4 48H416c26.5 0 48 21.5 48 48v44.3l22.1 16.4c14.8 10.9 24.1 27.7 25.7 45.8L416 273.4v-89V144 104.8 96H404.2 368 296.6 215.4zM0 448V242.1L217.6 403.3c11.1 8.2 24.6 12.7 38.4 12.7s27.3-4.4 38.4-12.7L512 242.1V448v0c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64v0zM176 160H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "envelopes-bulk": { + "aliases": { + "names": [ + "mail-bulk" + ], + "unicodes": { + "secondary": [ + "10f674" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "envelope", + "letter", + "post office", + "postal", + "postcard", + "send", + "stamp", + "usps" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f674", + "label": "Envelopes Bulk", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32V224h96V192c0-35.3 28.7-64 64-64H448V32c0-17.7-14.3-32-32-32H96zM224 160c-17.7 0-32 14.3-32 32v32h96c35.3 0 64 28.7 64 64V416H544c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32H224zm240 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zM32 256c-17.7 0-32 14.3-32 32v13L155.1 415.9c1.4 1 3.1 1.6 4.9 1.6s3.5-.6 4.9-1.6L320 301V288c0-17.7-14.3-32-32-32H32zm288 84.8L184 441.6c-6.9 5.1-15.3 7.9-24 7.9s-17-2.8-24-7.9L0 340.8V480c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32V340.8z" + } + }, + "free": [ + "solid" + ] + }, + "envira": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "leaf" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f299", + "label": "Envira Gallery", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z" + } + }, + "free": [ + "brands" + ] + }, + "equals": { + "aliases": { + "unicodes": { + "composite": [ + "f52c" + ], + "primary": [ + "f52c" + ], + "secondary": [ + "103d", + "10f52c" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Equals Sign", + "arithmetic", + "even", + "match", + "math" + ] + }, + "styles": [ + "solid" + ], + "unicode": "3d", + "label": "Equals", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 128c-17.7 0-32 14.3-32 32s14.3 32 32 32H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zm0 192c-17.7 0-32 14.3-32 32s14.3 32 32 32H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + }, + "free": [ + "solid" + ] + }, + "eraser": { + "aliases": { + "unicodes": { + "secondary": [ + "10f12d" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "delete", + "remove", + "rubber" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f12d", + "label": "Eraser", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M258.7 57.4L25.4 290.7c-25 25-25 65.5 0 90.5l80 80c12 12 28.3 18.7 45.3 18.7H256h9.4H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H355.9L486.6 285.3c25-25 25-65.5 0-90.5L349.3 57.4c-25-25-65.5-25-90.5 0zM265.4 416H256l-105.4 0-80-80L195.3 211.3 332.7 348.7 265.4 416z" + } + }, + "free": [ + "solid" + ] + }, + "erlang": { + "changes": [ + "5.0.0", + "5.0.3", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f39d", + "label": "Erlang", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M87.2 53.5H0v405h100.4c-49.7-52.6-78.8-125.3-78.7-212.1-.1-76.7 24-142.7 65.5-192.9zm238.2 9.7c-45.9.1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2zm230.7-9.6h.3l-.1-.1zm.3 0c31.4 42.7 48.7 97.5 46.2 162.7.5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405z" + } + }, + "free": [ + "brands" + ] + }, + "ethereum": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42e", + "label": "Ethereum", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z" + } + }, + "free": [ + "brands" + ] + }, + "ethernet": { + "aliases": { + "unicodes": { + "secondary": [ + "10f796" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cable", + "cat 5", + "cat 6", + "connection", + "hardware", + "internet", + "network", + "wired" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f796", + "label": "Ethernet", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224V416c0 17.7 14.3 32 32 32H96V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64V336c0-8.8 7.2-16 16-16s16 7.2 16 16V448h64c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32H448V160c0-17.7-14.3-32-32-32H384V96c0-17.7-14.3-32-32-32H160c-17.7 0-32 14.3-32 32v32H96c-17.7 0-32 14.3-32 32v32H32c-17.7 0-32 14.3-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "etsy": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2d7", + "label": "Etsy", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 348c-1.75 10.75-13.75 110-15.5 132-117.879-4.299-219.895-4.743-368.5 0v-25.5c45.457-8.948 60.627-8.019 61-35.25 1.793-72.322 3.524-244.143 0-322-1.029-28.46-12.13-26.765-61-36v-25.5c73.886 2.358 255.933 8.551 362.999-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.947 115.665 313.241 68 277.25 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.251h25.75c-4.407 101.351-3.91 61.829-1.75 160.25H257c-9.155-40.086-9.065-61.045-39.501-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.636 0 66.564-24.996 98.751-99.75H384z" + } + }, + "free": [ + "brands" + ] + }, + "euro-sign": { + "aliases": { + "names": [ + "eur", + "euro" + ], + "unicodes": { + "composite": [ + "20ac" + ], + "secondary": [ + "10f153" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Euro Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f153", + "label": "Euro Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M48.1 240c-.1 2.7-.1 5.3-.1 8v16c0 2.7 0 5.3 .1 8H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H60.3C89.9 419.9 170 480 264 480h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H264c-57.9 0-108.2-32.4-133.9-80H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H112.2c-.1-2.6-.2-5.3-.2-8V248c0-2.7 .1-5.4 .2-8H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H130.1c25.7-47.6 76-80 133.9-80h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H264C170 32 89.9 92.1 60.3 176H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48.1z" + } + }, + "free": [ + "solid" + ] + }, + "evernote": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f839", + "label": "Evernote", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M120.82 132.21c1.6 22.31-17.55 21.59-21.61 21.59-68.93 0-73.64-1-83.58 3.34-.56.22-.74 0-.37-.37L123.79 46.45c.38-.37.6-.22.38.37-4.35 9.99-3.35 15.09-3.35 85.39zm79 308c-14.68-37.08 13-76.93 52.52-76.62 17.49 0 22.6 23.21 7.95 31.42-6.19 3.3-24.95 1.74-25.14 19.2-.05 17.09 19.67 25 31.2 24.89A45.64 45.64 0 0 0 312 393.45v-.08c0-11.63-7.79-47.22-47.54-55.34-7.72-1.54-65-6.35-68.35-50.52-3.74 16.93-17.4 63.49-43.11 69.09-8.74 1.94-69.68 7.64-112.92-36.77 0 0-18.57-15.23-28.23-57.95-3.38-15.75-9.28-39.7-11.14-62 0-18 11.14-30.45 25.07-32.2 81 0 90 2.32 101-7.8 9.82-9.24 7.8-15.5 7.8-102.78 1-8.3 7.79-30.81 53.41-24.14 6 .86 31.91 4.18 37.48 30.64l64.26 11.15c20.43 3.71 70.94 7 80.6 57.94 22.66 121.09 8.91 238.46 7.8 238.46C362.15 485.53 267.06 480 267.06 480c-18.95-.23-54.25-9.4-67.27-39.83zm80.94-204.84c-1 1.92-2.2 6 .85 7 14.09 4.93 39.75 6.84 45.88 5.53 3.11-.25 3.05-4.43 2.48-6.65-3.53-21.85-40.83-26.5-49.24-5.92z" + } + }, + "free": [ + "brands" + ] + }, + "exclamation": { + "aliases": { + "unicodes": { + "composite": [ + "2755", + "2757", + "f12a" + ], + "primary": [ + "f12a" + ], + "secondary": [ + "1021", + "10f12a" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "!", + "Exclamation Mark", + "alert", + "danger", + "error", + "exclamation", + "important", + "mark", + "notice", + "notification", + "notify", + "outlined", + "problem", + "punctuation", + "red exclamation mark", + "warning", + "white exclamation mark" + ] + }, + "styles": [ + "solid" + ], + "unicode": "21", + "label": "Exclamation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 128, + 512 + ], + "width": 128, + "height": 512, + "path": "M72 64c0-17.7-14.3-32-32-32S8 46.3 8 64V320c0 17.7 14.3 32 32 32s32-14.3 32-32V64zM40 480a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + }, + "free": [ + "solid" + ] + }, + "expand": { + "aliases": { + "unicodes": { + "secondary": [ + "10f065" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "crop", + "enlarge", + "focus", + "fullscreen", + "resize", + "viewfinder" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f065", + "label": "Expand", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64v96c0 17.7 14.3 32 32 32s32-14.3 32-32V96h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM64 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7 14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V352zM320 32c-17.7 0-32 14.3-32 32s14.3 32 32 32h64v64c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32H320zM448 352c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32V352z" + } + }, + "free": [ + "solid" + ] + }, + "expeditedssl": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f23e", + "label": "ExpeditedSSL", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z" + } + }, + "free": [ + "brands" + ] + }, + "explosion": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blast", + "blowup", + "boom", + "crash", + "detonation", + "explosion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4e9", + "label": "Explosion", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M499.6 11.3c6.7-10.7 20.5-14.5 31.7-8.5s15.8 19.5 10.6 31L404.8 338.6c2.2 2.3 4.3 4.7 6.3 7.1l97.2-54.7c10.5-5.9 23.6-3.1 30.9 6.4s6.3 23-2.2 31.5l-87 87H378.5c-13.2-37.3-48.7-64-90.5-64s-77.4 26.7-90.5 64H117.8L42.3 363.7c-9.7-6.7-13.1-19.6-7.9-30.3s17.4-15.9 28.7-12.4l97.2 30.4c3-3.9 6.1-7.7 9.4-11.3L107.4 236.3c-6.1-10.1-3.9-23.1 5.1-30.7s22.2-7.5 31.1 .1L246 293.6c1.5-.4 3-.8 4.5-1.1l13.6-142.7c1.2-12.3 11.5-21.7 23.9-21.7s22.7 9.4 23.9 21.7l13.5 141.9L499.6 11.3zM64 448v0H512v0h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H64zM288 0c13.3 0 24 10.7 24 24V72c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "eye": { + "aliases": { + "unicodes": { + "composite": [ + "1f441" + ], + "secondary": [ + "10f06e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "body", + "eye", + "look", + "optic", + "see", + "seen", + "show", + "sight", + "views", + "visible" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f06e", + "label": "Eye", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64c-7.1 0-13.9-1.2-20.3-3.3c-5.5-1.8-11.9 1.6-11.7 7.4c.3 6.9 1.3 13.8 3.2 20.7c13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3z" + }, + "regular": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 80c-65.2 0-118.8 29.6-159.9 67.7C89.6 183.5 63 226 49.4 256c13.6 30 40.2 72.5 78.6 108.3C169.2 402.4 222.8 432 288 432s118.8-29.6 159.9-67.7C486.4 328.5 513 286 526.6 256c-13.6-30-40.2-72.5-78.6-108.3C406.8 109.6 353.2 80 288 80zM95.4 112.6C142.5 68.8 207.2 32 288 32s145.5 36.8 192.6 80.6c46.8 43.5 78.1 95.4 93 131.1c3.3 7.9 3.3 16.7 0 24.6c-14.9 35.7-46.2 87.7-93 131.1C433.5 443.2 368.8 480 288 480s-145.5-36.8-192.6-80.6C48.6 356 17.3 304 2.5 268.3c-3.3-7.9-3.3-16.7 0-24.6C17.3 208 48.6 156 95.4 112.6zM288 336c44.2 0 80-35.8 80-80s-35.8-80-80-80c-.7 0-1.3 0-2 0c1.3 5.1 2 10.5 2 16c0 35.3-28.7 64-64 64c-5.5 0-10.9-.7-16-2c0 .7 0 1.3 0 2c0 44.2 35.8 80 80 80zm0-208a128 128 0 1 1 0 256 128 128 0 1 1 0-256z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "eye-dropper": { + "aliases": { + "names": [ + "eye-dropper-empty", + "eyedropper" + ], + "unicodes": { + "secondary": [ + "10f1fb" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beaker", + "clone", + "color", + "copy", + "eyedropper", + "pipette" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1fb", + "label": "Eye Dropper", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M341.6 29.2L240.1 130.8l-9.4-9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-9.4-9.4L482.8 170.4c39-39 39-102.2 0-141.1s-102.2-39-141.1 0zM55.4 323.3c-15 15-23.4 35.4-23.4 56.6v42.4L5.4 462.2c-8.5 12.7-6.8 29.6 4 40.4s27.7 12.5 40.4 4L89.7 480h42.4c21.2 0 41.6-8.4 56.6-23.4L309.4 335.9l-45.3-45.3L143.4 411.3c-3 3-7.1 4.7-11.3 4.7H96V379.9c0-4.2 1.7-8.3 4.7-11.3L221.4 247.9l-45.3-45.3L55.4 323.3z" + } + }, + "free": [ + "solid" + ] + }, + "eye-low-vision": { + "aliases": { + "names": [ + "low-vision" + ], + "unicodes": { + "secondary": [ + "10f2a8" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "eye", + "sight" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2a8", + "label": "Eye Low Vision", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223 149.5c48.6-44.3 123-50.8 179.3-11.7c60.8 42.4 78.9 123.2 44.2 186.9L408 294.5c8.4-19.3 10.6-41.4 4.8-63.3c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3c0 10.2-2.4 19.8-6.6 28.3L223 149.5zm223.1 298L83.1 161.5c-11 14.4-20.5 28.7-28.4 42.2l339 265.7c18.7-5.5 36.2-13 52.6-21.8zM34.5 268.3c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c3.1 0 6.1-.1 9.2-.2L33.1 247.8c-1.8 6.8-1.3 14 1.4 20.5z" + } + }, + "free": [ + "solid" + ] + }, + "eye-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f070" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "hide", + "show", + "toggle", + "unseen", + "views", + "visible", + "visiblity" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f070", + "label": "Eye Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223.1 149.5C248.6 126.2 282.7 112 320 112c79.5 0 144 64.5 144 144c0 24.9-6.3 48.3-17.4 68.7L408 294.5c8.4-19.3 10.6-41.4 4.8-63.3c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3c0 10.2-2.4 19.8-6.6 28.3l-90.3-70.8zM373 389.9c-16.4 6.5-34.3 10.1-53 10.1c-79.5 0-144-64.5-144-144c0-6.9 .5-13.6 1.4-20.2L83.1 161.5C60.3 191.2 44 220.8 34.5 243.7c-3.3 7.9-3.3 16.7 0 24.6c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c47.8 0 89.9-12.9 126.2-32.5L373 389.9z" + }, + "regular": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zm151 118.3C226 97.7 269.5 80 320 80c65.2 0 118.8 29.6 159.9 67.7C518.4 183.5 545 226 558.6 256c-12.6 28-36.6 66.8-70.9 100.9l-53.8-42.2c9.1-17.6 14.2-37.5 14.2-58.7c0-70.7-57.3-128-128-128c-32.2 0-61.7 11.9-84.2 31.5l-46.1-36.1zM394.9 284.2l-81.5-63.9c4.2-8.5 6.6-18.2 6.6-28.3c0-5.5-.7-10.9-2-16c.7 0 1.3 0 2 0c44.2 0 80 35.8 80 80c0 9.9-1.8 19.4-5.1 28.2zm9.4 130.3C378.8 425.4 350.7 432 320 432c-65.2 0-118.8-29.6-159.9-67.7C121.6 328.5 95 286 81.4 256c8.3-18.4 21.5-41.5 39.4-64.8L83.1 161.5C60.3 191.2 44 220.8 34.5 243.7c-3.3 7.9-3.3 16.7 0 24.6c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c47.8 0 89.9-12.9 126.2-32.5l-41.9-33zM192 256c0 70.7 57.3 128 128 128c13.3 0 26.1-2 38.2-5.8L302 334c-23.5-5.4-43.1-21.2-53.7-42.3l-56.1-44.2c-.2 2.8-.3 5.6-.3 8.5z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "f": { + "aliases": { + "unicodes": { + "composite": [ + "66" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter F", + "Latin Small Letter F", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "46", + "label": "F", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V256 448c0 17.7 14.3 32 32 32s32-14.3 32-32V288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H64z" + } + }, + "free": [ + "solid" + ] + }, + "face-angry": { + "aliases": { + "names": [ + "angry" + ], + "unicodes": { + "composite": [ + "1f620" + ], + "secondary": [ + "10f556" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "angry", + "angry face", + "disapprove", + "emoticon", + "face", + "mad", + "upset" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f556", + "label": "Face Angry", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM338.7 395.9c6.6-5.9 7.1-16 1.2-22.6C323.8 355.4 295.7 336 256 336s-67.8 19.4-83.9 37.3c-5.9 6.6-5.4 16.7 1.2 22.6s16.7 5.4 22.6-1.2c11.7-13 31.6-26.7 60.1-26.7s48.4 13.7 60.1 26.7c5.9 6.6 16 7.1 22.6 1.2zM176.4 272c17.7 0 32-14.3 32-32c0-1.5-.1-3-.3-4.4l10.9 3.6c8.4 2.8 17.4-1.7 20.2-10.1s-1.7-17.4-10.1-20.2l-96-32c-8.4-2.8-17.4 1.7-20.2 10.1s1.7 17.4 10.1 20.2l30.7 10.2c-5.8 5.8-9.3 13.8-9.3 22.6c0 17.7 14.3 32 32 32zm192-32c0-8.9-3.6-17-9.5-22.8l30.2-10.1c8.4-2.8 12.9-11.9 10.1-20.2s-11.9-12.9-20.2-10.1l-96 32c-8.4 2.8-12.9 11.9-10.1 20.2s11.9 12.9 20.2 10.1l11.7-3.9c-.2 1.5-.3 3.1-.3 4.7c0 17.7 14.3 32 32 32s32-14.3 32-32z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm72.4-118.5c9.7-9 10.2-24.2 1.2-33.9C315.3 344.3 290.6 328 256 328s-59.3 16.3-73.5 31.6c-9 9.7-8.5 24.9 1.2 33.9s24.9 8.5 33.9-1.2c7.4-7.9 20-16.4 38.5-16.4s31.1 8.5 38.5 16.4c9 9.7 24.2 10.2 33.9 1.2zM176.4 272c17.7 0 32-14.3 32-32c0-1.5-.1-3-.3-4.4l10.9 3.6c8.4 2.8 17.4-1.7 20.2-10.1s-1.7-17.4-10.1-20.2l-96-32c-8.4-2.8-17.4 1.7-20.2 10.1s1.7 17.4 10.1 20.2l30.7 10.2c-5.8 5.8-9.3 13.8-9.3 22.6c0 17.7 14.3 32 32 32zm192-32c0-8.9-3.6-17-9.5-22.8l30.2-10.1c8.4-2.8 12.9-11.9 10.1-20.2s-11.9-12.9-20.2-10.1l-96 32c-8.4 2.8-12.9 11.9-10.1 20.2s11.9 12.9 20.2 10.1l11.7-3.9c-.2 1.5-.3 3.1-.3 4.7c0 17.7 14.3 32 32 32s32-14.3 32-32z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-dizzy": { + "aliases": { + "names": [ + "dizzy" + ], + "unicodes": { + "secondary": [ + "10f567" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dazed", + "dead", + "disapprove", + "emoticon", + "face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f567", + "label": "Face Dizzy", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-224a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM100.7 132.7c6.2-6.2 16.4-6.2 22.6 0L160 169.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L182.6 192l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L160 214.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L137.4 192l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6zm192 0c6.2-6.2 16.4-6.2 22.6 0L352 169.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L374.6 192l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L352 214.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L329.4 192l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256 32a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM103 135c9.4-9.4 24.6-9.4 33.9 0l23 23 23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-23 23 23 23c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-23-23-23 23c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l23-23-23-23c-9.4-9.4-9.4-24.6 0-33.9zm192 0c9.4-9.4 24.6-9.4 33.9 0l23 23 23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-23 23 23 23c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-23-23-23 23c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l23-23-23-23c-9.4-9.4-9.4-24.6 0-33.9z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-flushed": { + "aliases": { + "names": [ + "flushed" + ], + "unicodes": { + "composite": [ + "1f633" + ], + "secondary": [ + "10f579" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dazed", + "embarrassed", + "emoticon", + "face", + "flushed", + "flushed face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f579", + "label": "Face Flushed", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM176 384c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16s-7.2-16-16-16H192c-8.8 0-16 7.2-16 16zm-16-88a72 72 0 1 0 0-144 72 72 0 1 0 0 144zm264-72a72 72 0 1 0 -144 0 72 72 0 1 0 144 0zm-288 0a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm192 0a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM160.4 248a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm216-24a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM192 336c-13.3 0-24 10.7-24 24s10.7 24 24 24H320c13.3 0 24-10.7 24-24s-10.7-24-24-24H192zM160 176a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm0 128a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm144-80a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm128 0a80 80 0 1 0 -160 0 80 80 0 1 0 160 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-frown": { + "aliases": { + "names": [ + "frown" + ], + "unicodes": { + "composite": [ + "2639" + ], + "secondary": [ + "10f119" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.9", + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "disapprove", + "emoticon", + "face", + "frown", + "frowning face", + "rating", + "sad" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f119", + "label": "Face Frown", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM159.3 388.7c-2.6 8.4-11.6 13.2-20 10.5s-13.2-11.6-10.5-20C145.2 326.1 196.3 288 256 288s110.8 38.1 127.3 91.3c2.6 8.4-2.1 17.4-10.5 20s-17.4-2.1-20-10.5C340.5 349.4 302.1 320 256 320s-84.5 29.4-96.7 68.7zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM174.6 384.1c-4.5 12.5-18.2 18.9-30.7 14.4s-18.9-18.2-14.4-30.7C146.9 319.4 198.9 288 256 288s109.1 31.4 126.6 79.9c4.5 12.5-2 26.2-14.4 30.7s-26.2-2-30.7-14.4C328.2 358.5 297.2 336 256 336s-72.2 22.5-81.4 48.1zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-frown-open": { + "aliases": { + "names": [ + "frown-open" + ], + "unicodes": { + "composite": [ + "1f626" + ], + "secondary": [ + "10f57a" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "disapprove", + "emoticon", + "face", + "frown", + "frowning face with open mouth", + "mouth", + "open", + "rating", + "sad" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f57a", + "label": "Face Frown Open", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm-122 174.5c-12.4 5.2-26.5-4.1-21.1-16.4c16-36.6 52.4-62.1 94.8-62.1s78.8 25.6 94.8 62.1c5.4 12.3-8.7 21.6-21.1 16.4c-22.4-9.5-47.4-14.8-73.7-14.8s-51.3 5.3-73.7 14.8z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM182.4 382.5c-12.4 5.2-26.5-4.1-21.1-16.4c16-36.6 52.4-62.1 94.8-62.1s78.8 25.6 94.8 62.1c5.4 12.3-8.7 21.6-21.1 16.4c-22.4-9.5-47.4-14.8-73.7-14.8s-51.3 5.3-73.7 14.8zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-grimace": { + "aliases": { + "names": [ + "grimace" + ], + "unicodes": { + "composite": [ + "1f62c" + ], + "secondary": [ + "10f57f" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cringe", + "emoticon", + "face", + "grimace", + "grimacing face", + "teeth" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f57f", + "label": "Face Grimace", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm96-112h-8V360l55.3 0c-3.8 22.7-23.6 40-47.3 40zm47.3-56L344 344V304h8c23.8 0 43.5 17.3 47.3 40zM328 344H264V304h64v40zm0 56H264V360h64v40zm-80-96v40l-64 0V304h64zm0 56v40H184V360l64 0zm-80-16H112.7c3.8-22.7 23.6-40 47.3-40h8v40zm0 56h-8c-23.8 0-43.5-17.3-47.3-40H168v40zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 0 0 416 208 208 0 1 0 0-416zM512 256A256 256 0 1 1 0 256a256 256 0 1 1 512 0zM168 320c-13.3 0-24 10.7-24 24s10.7 24 24 24h8V320h-8zm40 48h32V320H208v48zm96 0V320H272v48h32zm32 0h8c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8v48zM168 288H344c30.9 0 56 25.1 56 56s-25.1 56-56 56H168c-30.9 0-56-25.1-56-56s25.1-56 56-56zm-23.6-80a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-grin": { + "aliases": { + "names": [ + "grin" + ], + "unicodes": { + "composite": [ + "1f600" + ], + "secondary": [ + "10f580" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "grin", + "grinning face", + "laugh", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f580", + "label": "Face Grin", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-grin-beam": { + "aliases": { + "names": [ + "grin-beam" + ], + "unicodes": { + "composite": [ + "1f604" + ], + "secondary": [ + "10f582" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "eye", + "face", + "grinning face with smiling eyes", + "laugh", + "mouth", + "open", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f582", + "label": "Face Grin Beam", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zm-170.5-84l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM217.6 228.8l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-grin-beam-sweat": { + "aliases": { + "names": [ + "grin-beam-sweat" + ], + "unicodes": { + "composite": [ + "1f605" + ], + "secondary": [ + "10f583" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "embarass", + "emoticon", + "face", + "grinning face with sweat", + "open", + "smile", + "sweat" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f583", + "label": "Face Grin Beam Sweat", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M476.8 126.3c-4.1 1.1-8.4 1.7-12.8 1.7c-26.5 0-48-21-48-47c0-5 1.8-11.3 4.6-18.1c.3-.7 .6-1.4 .9-2.1c9-20.2 26.5-44.9 36-57.5c3.2-4.4 9.6-4.4 12.8 0C483.4 20.6 512 61 512 81c0 21.7-14.9 39.8-35.2 45.3zM256 0c51.4 0 99.3 15.2 139.4 41.2c-1.5 3.1-3 6.2-4.3 9.3c-3.4 8-7.1 19-7.1 30.5c0 44.3 36.6 79 80 79c9.6 0 18.8-1.7 27.4-4.8c13.3 30.9 20.6 65 20.6 100.8c0 141.4-114.6 256-256 256S0 397.4 0 256S114.6 0 256 0zM383.8 317.8C345.3 329.4 301.9 336 256 336s-89.3-6.6-127.8-18.2c-12.3-3.7-24.3 7-19.2 18.7c24.5 56.9 81.1 96.7 147 96.7s122.5-39.8 147-96.7c5.1-11.8-6.9-22.4-19.2-18.7zm-166.2-89l0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C126.7 188.4 120 206.1 120 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0 0 0zm160 0l0 0 0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C286.7 188.4 280 206.1 280 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M476.8 126.3C497.1 120.8 512 102.7 512 81c0-20-28.6-60.4-41.6-77.7c-3.2-4.4-9.6-4.4-12.8 0c-9.5 12.6-27.1 37.2-36 57.5c-.3 .7-.6 1.4-.9 2.1C417.8 69.7 416 76 416 81c0 26 21.5 47 48 47c4.4 0 8.7-.6 12.8-1.7zM395.4 41.2C355.3 15.2 307.4 0 256 0C114.6 0 0 114.6 0 256S114.6 512 256 512s256-114.6 256-256c0-35.8-7.3-69.9-20.6-100.8c-8.6 3.1-17.8 4.8-27.4 4.8c-8.9 0-17.6-1.5-25.7-4.2C454.7 185.5 464 219.7 464 256c0 114.9-93.1 208-208 208S48 370.9 48 256S141.1 48 256 48c48.7 0 93.4 16.7 128.9 44.7c-.6-3.8-.9-7.7-.9-11.7c0-11.4 3.8-22.4 7.1-30.5c1.3-3.1 2.7-6.2 4.3-9.3zM375 336.5c10.4-16.1-6.8-32.5-25.5-28.1c-28.9 6.8-60.5 10.5-93.6 10.5s-64.7-3.7-93.6-10.5c-18.7-4.4-35.9 12-25.5 28.1c24.6 38.1 68.7 63.5 119.1 63.5s94.5-25.4 119.1-63.5zM217.6 228.8l0 0 0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C126.7 188.4 120 206.1 120 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0zm160 0l0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C286.7 188.4 280 206.1 280 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0 0 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-grin-hearts": { + "aliases": { + "names": [ + "grin-hearts" + ], + "unicodes": { + "composite": [ + "1f60d" + ], + "secondary": [ + "10f584" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "eye", + "face", + "love", + "smile", + "smiling face with heart-eyes" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f584", + "label": "Face Grin Hearts", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zM199.3 129.1c17.8 4.8 28.4 23.1 23.6 40.8l-17.4 65c-2.3 8.5-11.1 13.6-19.6 11.3l-65.1-17.4c-17.8-4.8-28.4-23.1-23.6-40.8s23.1-28.4 40.8-23.6l16.1 4.3 4.3-16.1c4.8-17.8 23.1-28.4 40.8-23.6zm154.3 23.6l4.3 16.1 16.1-4.3c17.8-4.8 36.1 5.8 40.8 23.6s-5.8 36.1-23.6 40.8l-65.1 17.4c-8.5 2.3-17.3-2.8-19.6-11.3l-17.4-65c-4.8-17.8 5.8-36.1 23.6-40.8s36.1 5.8 40.9 23.6z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM215.3 137.1c17.8 4.8 28.4 23.1 23.6 40.8l-17.4 65c-2.3 8.5-11.1 13.6-19.6 11.3l-65.1-17.4c-17.8-4.8-28.4-23.1-23.6-40.8s23.1-28.4 40.8-23.6l16.1 4.3 4.3-16.1c4.8-17.8 23.1-28.4 40.8-23.6zm122.3 23.6l4.3 16.1 16.1-4.3c17.8-4.8 36.1 5.8 40.8 23.6s-5.8 36.1-23.6 40.8l-65.1 17.4c-8.5 2.3-17.3-2.8-19.6-11.3l-17.4-65c-4.8-17.8 5.8-36.1 23.6-40.8s36.1 5.8 40.9 23.6z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-grin-squint": { + "aliases": { + "names": [ + "grin-squint" + ], + "unicodes": { + "composite": [ + "1f606" + ], + "secondary": [ + "10f585" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "grinning squinting face", + "laugh", + "mouth", + "satisfied", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f585", + "label": "Face Grin Squint", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zM133.5 146.7l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zm-216-161.7l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-grin-squint-tears": { + "aliases": { + "names": [ + "grin-squint-tears" + ], + "unicodes": { + "composite": [ + "1f923" + ], + "secondary": [ + "10f586" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "floor", + "happy", + "laugh", + "rolling", + "rolling on the floor laughing", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f586", + "label": "Face Grin Squint Tears", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M426.8 14.2C446-5 477.5-4.6 497.1 14.9s20 51 .7 70.3c-6.8 6.8-21.4 12.4-37.4 16.7c-16.3 4.4-34.1 7.5-46.3 9.3c-1.6 .2-3.1 .5-4.6 .6c-4.9 .8-9.1-2.8-9.5-7.4c-.1-.7 0-1.4 .1-2.1c1.6-11.2 4.6-29.6 9-47c.3-1.3 .7-2.6 1-3.9c4.3-15.9 9.8-30.5 16.7-37.4zm-44.7 19c-1.5 4.8-2.9 9.6-4.1 14.3c-4.8 18.9-8 38.5-9.7 50.3c-4 26.8 18.9 49.7 45.7 45.8c11.9-1.6 31.5-4.8 50.4-9.7c4.7-1.2 9.5-2.5 14.3-4.1C534.2 227.5 520.2 353.8 437 437c-83.2 83.2-209.5 97.2-307.2 41.8c1.5-4.8 2.8-9.6 4-14.3c4.8-18.9 8-38.5 9.7-50.3c4-26.8-18.9-49.7-45.7-45.8c-11.9 1.6-31.5 4.8-50.4 9.7c-4.7 1.2-9.5 2.5-14.3 4.1C-22.2 284.5-8.2 158.2 75 75C158.2-8.3 284.5-22.2 382.2 33.2zM51.5 410.1c18.5-5 38.8-8.3 50.9-10c.4-.1 .7-.1 1-.1c5.1-.2 9.2 4.3 8.4 9.6c-1.7 12.1-5 32.4-10 50.9C97.6 476.4 92 491 85.2 497.8C66 517 34.5 516.6 14.9 497.1s-20-51-.7-70.3c6.8-6.8 21.4-12.4 37.4-16.7zM416.9 209c-4.7-11.9-20.8-11-26.8 .3c-19 35.5-45 70.8-77.5 103.3S244.8 371.1 209.3 390c-11.3 6-12.2 22.1-.3 26.8c57.6 22.9 125.8 11 172.3-35.5s58.4-114.8 35.5-172.3zM87.1 285.1c2 2 4.6 3.2 7.3 3.4l56.1 5.1 5.1 56.1c.3 2.8 1.5 5.4 3.4 7.3c6.3 6.3 17.2 3.6 19.8-4.9l29.7-97.4c3.5-11.6-7.3-22.5-19-19L92 265.3c-8.6 2.6-11.3 13.4-4.9 19.8zM265.3 92l-29.7 97.4c-3.5 11.6 7.3 22.5 19 19l97.4-29.7c8.6-2.6 11.3-13.4 4.9-19.8c-2-2-4.6-3.2-7.3-3.4l-56.1-5.1-5.1-56.1c-.2-2.8-1.5-5.4-3.4-7.3c-6.3-6.3-17.2-3.6-19.8 4.9z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M426.8 14.2C446-5 477.5-4.6 497.1 14.9s20 51 .7 70.3c-14.8 14.8-65.7 23.6-88.3 26.7c-5.6 .9-10.3-3.9-9.5-9.5C403.3 79.9 412 29 426.8 14.2zM75 75C158.2-8.3 284.5-22.2 382.2 33.2c-1.5 4.8-2.9 9.6-4.1 14.3c-3.1 12.2-5.5 24.6-7.3 35c-80.8-53.6-190.7-44.8-261.9 26.4C37.7 180.1 28.9 290 82.5 370.8c-10.5 1.8-22.9 4.2-35 7.3c-4.7 1.2-9.5 2.5-14.3 4.1C-22.2 284.5-8.2 158.2 75 75zm389.6 58.9c4.7-1.2 9.5-2.5 14.3-4.1C534.2 227.5 520.2 353.8 437 437c-83.2 83.2-209.5 97.2-307.2 41.8c1.5-4.8 2.8-9.6 4-14.3c3.1-12.2 5.5-24.6 7.3-35c80.8 53.6 190.7 44.8 261.9-26.4c71.2-71.2 80-181.1 26.4-261.9c10.5-1.8 22.9-4.2 35-7.3zm-105.4 93c10.1-16.3 33.9-16.9 37.9 1.9c9.5 44.4-3.7 93.5-39.3 129.1s-84.8 48.8-129.1 39.3c-18.7-4-18.2-27.8-1.9-37.9c25.2-15.7 50.2-35.4 73.6-58.8s43.1-48.4 58.8-73.6zM92 265.3l97.4-29.7c11.6-3.5 22.5 7.3 19 19l-29.7 97.4c-2.6 8.6-13.4 11.3-19.8 4.9c-2-2-3.2-4.6-3.4-7.3l-5.1-56.1-56.1-5.1c-2.8-.3-5.4-1.5-7.3-3.4c-6.3-6.3-3.6-17.2 4.9-19.8zm193-178.2c2 2 3.2 4.6 3.4 7.3l5.1 56.1 56.1 5.1c2.8 .3 5.4 1.5 7.3 3.4c6.3 6.3 3.6 17.2-4.9 19.8l-97.4 29.7c-11.6 3.5-22.5-7.3-19-19L265.3 92c2.6-8.6 13.4-11.3 19.8-4.9zM14.9 497.1c-19.6-19.6-20-51-.7-70.3C29 412 79.8 403.2 102.4 400.1c5.6-.9 10.3 3.9 9.5 9.5c-3.2 22.5-11.9 73.5-26.7 88.3C66 517 34.5 516.6 14.9 497.1z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-grin-stars": { + "aliases": { + "names": [ + "grin-stars" + ], + "unicodes": { + "composite": [ + "1f929" + ], + "secondary": [ + "10f587" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "eyes", + "face", + "grinning", + "star", + "star-struck", + "starry-eyed" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f587", + "label": "Face Grin Stars", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm407.4 75.5c5-11.8-7-22.5-19.3-18.7c-39.7 12.2-84.5 19-131.8 19s-92.1-6.8-131.8-19c-12.3-3.8-24.3 6.9-19.3 18.7c25 59.1 83.2 100.5 151.1 100.5s126.2-41.4 151.1-100.5zM160 120c-3.1 0-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L160 232.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L226.4 178c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7c-1.3-2.8-4.1-4.6-7.2-4.6zm192 0c-3.1 0-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L352 232.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L418.4 178c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7c-1.3-2.8-4.1-4.6-7.2-4.6z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM183.2 132.6c-1.3-2.8-4.1-4.6-7.2-4.6s-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L176 240.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L242.4 186c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7zm160 0c-1.3-2.8-4.1-4.6-7.2-4.6s-5.9 1.8-7.2 4.6l-16.6 34.7-38.1 5c-3.1 .4-5.6 2.5-6.6 5.5s-.1 6.2 2.1 8.3l27.9 26.5-7 37.8c-.6 3 .7 6.1 3.2 7.9s5.8 2 8.5 .6L336 240.5l33.8 18.3c2.7 1.5 6 1.3 8.5-.6s3.7-4.9 3.2-7.9l-7-37.8L402.4 186c2.2-2.1 3.1-5.3 2.1-8.3s-3.5-5.1-6.6-5.5l-38.1-5-16.6-34.7zm6.3 175.8c-28.9 6.8-60.5 10.5-93.6 10.5s-64.7-3.7-93.6-10.5c-18.7-4.4-35.9 12-25.5 28.1c24.6 38.1 68.7 63.5 119.1 63.5s94.5-25.4 119.1-63.5c10.4-16.1-6.8-32.5-25.5-28.1z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-grin-tears": { + "aliases": { + "names": [ + "grin-tears" + ], + "unicodes": { + "composite": [ + "1f602" + ], + "secondary": [ + "10f588" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "face with tears of joy", + "joy", + "laugh", + "tear" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f588", + "label": "Face Grin Tears", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M548.6 371.4C506.4 454.8 419.9 512 320 512s-186.4-57.2-228.6-140.6c4.5-2.9 8.7-6.3 12.7-10.3c8.1-8.1 13.2-18.6 16.5-26.6c3.6-8.8 6.5-18.4 8.8-27.5c4.6-18.2 7.7-37 9.3-48.2c3.9-26.5-18.8-49.2-45.2-45.4c-6.8 .9-16.2 2.4-26.6 4.4C85.3 94.5 191.6 0 320 0S554.7 94.5 573.2 217.7c-10.3-2-19.8-3.5-26.6-4.4c-26.5-3.9-49.2 18.8-45.2 45.4c1.6 11.3 4.6 30 9.3 48.2c2.3 9.1 5.2 18.8 8.8 27.5c3.3 8.1 8.4 18.5 16.5 26.6c3.9 3.9 8.2 7.4 12.7 10.3zM107 254.1c-3.1 21.5-11.4 70.2-25.5 84.4c-.9 1-1.9 1.8-2.9 2.7C60 356.7 32 355.5 14.3 337.7c-18.7-18.7-19.1-48.8-.7-67.2c8.6-8.6 30.1-15.1 50.5-19.6c13-2.8 25.5-4.8 33.9-6c5.4-.8 9.9 3.7 9 9zm454.5 87.1c-.8-.6-1.5-1.3-2.3-2c-.2-.2-.5-.4-.7-.7c-14.1-14.1-22.5-62.9-25.5-84.4c-.8-5.4 3.7-9.9 9-9c1 .1 2.2 .3 3.3 .5c8.2 1.2 19.2 3 30.6 5.5c20.4 4.4 41.9 10.9 50.5 19.6c18.4 18.4 18 48.5-.7 67.2c-17.7 17.7-45.7 19-64.2 3.4zm-90.1-9.7c5-11.8-7-22.5-19.3-18.7c-39.7 12.2-84.4 19-131.8 19s-92.1-6.8-131.8-19c-12.3-3.8-24.3 6.9-19.3 18.7c25 59.1 83.2 100.5 151.1 100.5s126.2-41.4 151.1-100.5zM281.6 228.8l0 0 0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C190.7 188.4 184 206.1 184 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0zm160 0l0 0 0 0c2.1 2.8 5.7 3.9 8.9 2.8s5.5-4.1 5.5-7.6c0-17.9-6.7-35.6-16.6-48.8c-9.8-13-23.9-23.2-39.4-23.2s-29.6 10.2-39.4 23.2C350.7 188.4 344 206.1 344 224c0 3.4 2.2 6.5 5.5 7.6s6.9 0 8.9-2.8l0 0 0 0 0 0 .2-.2c.2-.2 .4-.5 .7-.9c.6-.8 1.6-2 2.8-3.4c2.5-2.8 6-6.6 10.2-10.3c8.8-7.8 18.8-14 27.7-14s18.9 6.2 27.7 14c4.2 3.7 7.7 7.5 10.2 10.3c1.2 1.4 2.2 2.6 2.8 3.4c.3 .4 .6 .7 .7 .9l.2 .2 0 0 0 0z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M516.1 325.5c1 3 2.1 6 3.3 8.9c3.3 8.1 8.4 18.5 16.5 26.6c3.9 3.9 8.2 7.4 12.7 10.3C506.4 454.8 419.9 512 320 512s-186.4-57.2-228.6-140.6c4.5-2.9 8.7-6.3 12.7-10.3c8.1-8.1 13.2-18.6 16.5-26.6c1.2-2.9 2.3-5.9 3.3-8.9C152.5 406.2 229.5 464 320 464s167.5-57.8 196.1-138.5zM320 48c-101.4 0-185.8 72.5-204.3 168.5c-6.7-3.1-14.3-4.3-22.3-3.1c-6.8 .9-16.2 2.4-26.6 4.4C85.3 94.5 191.6 0 320 0S554.7 94.5 573.2 217.7c-10.3-2-19.8-3.5-26.6-4.4c-8-1.2-15.7 .1-22.3 3.1C505.8 120.5 421.4 48 320 48zM78.5 341.1C60 356.7 32 355.5 14.3 337.7c-18.7-18.7-19.1-48.8-.7-67.2c8.6-8.6 30.1-15.1 50.5-19.6c13-2.8 25.5-4.8 33.9-6c5.4-.8 9.9 3.7 9 9c-3.1 21.5-11.4 70.2-25.5 84.4c-.9 1-1.9 1.8-2.9 2.7zm483 0c-.8-.6-1.5-1.3-2.3-2c-.2-.2-.5-.4-.7-.7c-14.1-14.1-22.5-62.9-25.5-84.4c-.8-5.4 3.7-9.9 9-9c1 .1 2.2 .3 3.3 .5c8.2 1.2 19.2 3 30.6 5.5c20.4 4.4 41.9 10.9 50.5 19.6c18.4 18.4 18 48.5-.7 67.2c-17.7 17.7-45.7 19-64.2 3.4zM439 336.5C414.4 374.6 370.3 400 319.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5c18.7-4.4 35.9 12 25.5 28.1zM281.6 228.8l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0zm160 0l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-grin-tongue": { + "aliases": { + "names": [ + "grin-tongue" + ], + "unicodes": { + "composite": [ + "1f61b" + ], + "secondary": [ + "10f589" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "face with tongue", + "tongue" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f589", + "label": "Face Grin Tongue", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256C0 368.9 73.1 464.7 174.5 498.8C165.3 484 160 466.6 160 448V400.7c-24-17.5-43.1-41.4-54.8-69.2c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19c12.3-3.8 24.3 6.9 19.3 18.7c-11.8 28-31.1 52-55.4 69.6V448c0 18.6-5.3 36-14.5 50.8C438.9 464.7 512 368.9 512 256C512 114.6 397.4 0 256 0S0 114.6 0 256zm176.4-80a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM320 448V402.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V448c0 35.3 28.7 64 64 64s64-28.7 64-64z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256c0-114.9-93.1-208-208-208S48 141.1 48 256c0 81.7 47.1 152.4 115.7 186.4c-2.4-8.4-3.7-17.3-3.7-26.4V363.6c-8.9-8-16.7-17.1-23.1-27.1c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5c18.7-4.4 35.9 12 25.5 28.1c-6.4 9.9-14.2 19-23 27V416c0 9.2-1.3 18-3.7 26.4C416.9 408.4 464 337.7 464 256zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm176.4-80a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM320 416V378.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V416c0 35.3 28.7 64 64 64s64-28.7 64-64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-grin-tongue-squint": { + "aliases": { + "names": [ + "grin-tongue-squint" + ], + "unicodes": { + "composite": [ + "1f61d" + ], + "secondary": [ + "10f58a" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "eye", + "face", + "horrible", + "squinting face with tongue", + "taste", + "tongue" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f58a", + "label": "Face Grin Tongue Squint", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256C0 368.9 73.1 464.7 174.5 498.8C165.3 484 160 466.6 160 448V400.7c-24-17.5-43.1-41.4-54.8-69.2c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19c12.3-3.8 24.3 6.9 19.3 18.7c-11.8 28-31.1 52-55.4 69.6V448c0 18.6-5.3 36-14.5 50.8C438.9 464.7 512 368.9 512 256C512 114.6 397.4 0 256 0S0 114.6 0 256zM116 141.1c0-9 9.6-14.7 17.5-10.5l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6zm262.5-10.5c7.9-4.2 17.5 1.5 17.5 10.5c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9zM320 448V402.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V448c0 35.3 28.7 64 64 64s64-28.7 64-64z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256c0-114.9-93.1-208-208-208S48 141.1 48 256c0 81.7 47.1 152.4 115.7 186.4c-2.4-8.4-3.7-17.3-3.7-26.4V392.7c-24-17.5-43.1-41.4-54.8-69.2c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19c12.3-3.8 24.3 6.9 19.3 18.7c-11.8 28-31.1 52-55.4 69.6V416c0 9.2-1.3 18-3.7 26.4C416.9 408.4 464 337.7 464 256zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm116-98.9c0-9 9.6-14.7 17.5-10.5l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6zm262.5-10.5c7.9-4.2 17.5 1.5 17.5 10.5c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9zM320 416V378.6c0-14.7-11.9-26.6-26.6-26.6h-2c-11.3 0-21.1 7.9-23.6 18.9c-2.8 12.6-20.8 12.6-23.6 0c-2.5-11.1-12.3-18.9-23.6-18.9h-2c-14.7 0-26.6 11.9-26.6 26.6V416c0 35.3 28.7 64 64 64s64-28.7 64-64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-grin-tongue-wink": { + "aliases": { + "names": [ + "grin-tongue-wink" + ], + "unicodes": { + "composite": [ + "1f61c" + ], + "secondary": [ + "10f58b" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "5.12.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "eye", + "face", + "joke", + "tongue", + "wink", + "winking face with tongue" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f58b", + "label": "Face Grin Tongue Wink", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M174.5 498.8C73.1 464.7 0 368.9 0 256C0 114.6 114.6 0 256 0S512 114.6 512 256c0 112.9-73.1 208.7-174.5 242.8C346.7 484 352 466.6 352 448V401.1c24.3-17.5 43.6-41.6 55.4-69.6c5-11.8-7-22.5-19.3-18.7c-39.7 12.2-84.5 19-131.8 19s-92.1-6.8-131.8-19c-12.3-3.8-24.3 6.9-19.3 18.7c11.7 27.8 30.8 51.7 54.8 69.2V448c0 18.6 5.3 36 14.5 50.8zm20.7-265.2c5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0c-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2c17.6-23.5 52.8-23.5 70.4 0zM336 272a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM320 402.6V448c0 35.3-28.7 64-64 64s-64-28.7-64-64V402.6c0-14.7 11.9-26.6 26.6-26.6h2c11.3 0 21.1 7.9 23.6 18.9c2.8 12.6 20.8 12.6 23.6 0c2.5-11.1 12.3-18.9 23.6-18.9h2c14.7 0 26.6 11.9 26.6 26.6zM336 184a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M348.3 442.4c2.4-8.4 3.7-17.3 3.7-26.4V363.5c8.8-8 16.6-17.1 23-27c10.4-16.1-6.8-32.5-25.5-28.1c-28.9 6.8-60.5 10.5-93.6 10.5s-64.7-3.7-93.6-10.5c-18.7-4.4-35.9 12-25.5 28.1c6.5 10 14.3 19.1 23.1 27.1V416c0 9.2 1.3 18 3.7 26.4C95.1 408.4 48 337.7 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208c0 81.7-47.1 152.4-115.7 186.4zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM159.6 220c10.6 0 19.9 3.8 25.4 9.7c7.6 8.1 20.2 8.5 28.3 .9s8.5-20.2 .9-28.3C199.7 186.8 179 180 159.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7 .9 28.3s20.7 7.1 28.3-.9c5.5-5.8 14.8-9.7 25.4-9.7zm176.7 12a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm-.4-72a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm0 128a80 80 0 1 0 0-160 80 80 0 1 0 0 160zM320 416c0 35.3-28.7 64-64 64s-64-28.7-64-64V378.6c0-14.7 11.9-26.6 26.6-26.6h2c11.3 0 21.1 7.9 23.6 18.9c2.8 12.6 20.8 12.6 23.6 0c2.5-11.1 12.3-18.9 23.6-18.9h2c14.7 0 26.6 11.9 26.6 26.6V416z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-grin-wide": { + "aliases": { + "names": [ + "grin-alt" + ], + "unicodes": { + "composite": [ + "1f603" + ], + "secondary": [ + "10f581" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "grinning face with big eyes", + "laugh", + "mouth", + "open", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f581", + "label": "Face Grin Wide", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zM208 192c0 35.3-14.3 64-32 64s-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64zm128 64c-17.7 0-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64s-14.3 64-32 64z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM224 192c0 35.3-14.3 64-32 64s-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64zm96 64c-17.7 0-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64s-14.3 64-32 64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-grin-wink": { + "aliases": { + "names": [ + "grin-wink" + ], + "unicodes": { + "secondary": [ + "10f58c" + ] + } + }, + "changes": [ + "5.1.0", + "5.1.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "flirt", + "laugh", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f58c", + "label": "Face Grin Wink", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM388.1 312.8c12.3-3.8 24.3 6.9 19.3 18.7C382.4 390.6 324.2 432 256.3 432s-126.2-41.4-151.1-100.5c-5-11.8 7-22.5 19.3-18.7c39.7 12.2 84.5 19 131.8 19s92.1-6.8 131.8-19zm-16.9-79.2c-17.6-23.5-52.8-23.5-70.4 0c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm349.5 52.4c18.7-4.4 35.9 12 25.5 28.1C350.4 374.6 306.3 400 255.9 400s-94.5-25.4-119.1-63.5c-10.4-16.1 6.8-32.5 25.5-28.1c28.9 6.8 60.5 10.5 93.6 10.5s64.7-3.7 93.6-10.5zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm165.8 21.7c-7.6 8.1-20.2 8.5-28.3 .9s-8.5-20.2-.9-28.3c14.5-15.5 35.2-22.3 54.6-22.3s40.1 6.8 54.6 22.3c7.6 8.1 7.1 20.7-.9 28.3s-20.7 7.1-28.3-.9c-5.5-5.8-14.8-9.7-25.4-9.7s-19.9 3.8-25.4 9.7z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-kiss": { + "aliases": { + "names": [ + "kiss" + ], + "unicodes": { + "composite": [ + "1f617" + ], + "secondary": [ + "10f596" + ] + } + }, + "changes": [ + "5.1.0", + "5.1.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "face", + "kiss", + "kissing face", + "love", + "smooch" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f596", + "label": "Face Kiss", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm48.7-198.3c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 443.1 257.4 448 240 448c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1 .3-.2 .6-.4c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.4-.3-.5-.3-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm304.7 25.7c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 411.1 257.4 416 240 416c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.8-.5-.1-.1-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-kiss-beam": { + "aliases": { + "names": [ + "kiss-beam" + ], + "unicodes": { + "composite": [ + "1f619" + ], + "secondary": [ + "10f597" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "eye", + "face", + "kiss", + "kissing face with smiling eyes", + "love", + "smile", + "smooch" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f597", + "label": "Face Kiss Beam", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm48.7-198.3c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 443.1 257.4 448 240 448c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1 .3-.2 .6-.4c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.4-.3-.5-.3-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zm-87.1-84.9l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm304.7 41.7c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C274.7 427.1 257.4 432 240 432c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4zm-87.1-68.9l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-kiss-wink-heart": { + "aliases": { + "names": [ + "kiss-wink-heart" + ], + "unicodes": { + "composite": [ + "1f618" + ], + "secondary": [ + "10f598" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beso", + "emoticon", + "face", + "face blowing a kiss", + "kiss", + "love", + "smooch" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f598", + "label": "Face Kiss Wink Heart", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M498 339.7c9.1-26.2 14-54.4 14-83.7C512 114.6 397.4 0 256 0S0 114.6 0 256S114.6 512 256 512c35.4 0 69.1-7.2 99.7-20.2c-4.8-5.5-8.5-12.2-10.4-19.7l-22.9-89.3c-10-39 11.8-80.9 51.8-92.1c37.2-10.4 73.8 10.1 87.5 44c12.7-1.6 25.1 .4 36.2 5zM296 332c0 6.9-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4c-2.7 1.5-5.7 3-8.7 4.3c3.1 1.3 6 2.7 8.7 4.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3s-3.1 13.2-7.3 18.3c-4.3 5.2-10.1 9.7-16.7 13.4C258.7 443.1 241.4 448 224 448c-3.6 0-6.8-2.5-7.7-6s.6-7.2 3.8-9l0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1l-.6-.4-.3-.2-.2-.1 0 0 0 0 0 0c-2.5-1.4-4.1-4.1-4.1-7s1.6-5.6 4.1-7l0 0 0 0 0 0 0 0 0 0 .2-.1c.2-.1 .5-.3 .9-.5c.8-.5 2-1.2 3.4-2.1c2.8-1.9 6.5-4.5 10.2-7.6c3.7-3.1 7.2-6.6 9.6-10.1c2.5-3.5 3.5-6.4 3.5-8.6s-1-5-3.5-8.6c-2.5-3.5-5.9-6.9-9.6-10.1c-3.7-3.1-7.4-5.7-10.2-7.6c-1.4-.9-2.6-1.6-3.4-2.1c-.4-.2-.7-.4-.9-.5l-.2-.1 0 0 0 0 0 0c-3.2-1.8-4.7-5.5-3.8-9s4.1-6 7.7-6c17.4 0 34.7 4.9 47.9 12.3c6.6 3.7 12.5 8.2 16.7 13.4c4.3 5.1 7.3 11.4 7.3 18.3zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm194.8 57.6c-17.6-23.5-52.8-23.5-70.4 0c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2zM434 352.3c-6-23.2-28.8-37-51.1-30.8s-35.4 30.1-29.5 53.4l22.9 89.3c2.2 8.7 11.2 13.9 19.8 11.4l84.9-23.8c22.2-6.2 35.4-30.1 29.5-53.4s-28.8-37-51.1-30.8l-20.2 5.6-5.4-21z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M338.9 446.8c-25.4 11-53.4 17.2-82.9 17.2C141.1 464 48 370.9 48 256S141.1 48 256 48s208 93.1 208 208c0 22.4-3.5 43.9-10.1 64.1c3.1 4.5 5.7 9.4 7.8 14.6c12.7-1.6 25.1 .4 36.2 5c9.1-26.2 14-54.4 14-83.7C512 114.6 397.4 0 256 0S0 114.6 0 256S114.6 512 256 512c35.4 0 69.1-7.2 99.7-20.2c-4.8-5.5-8.5-12.2-10.4-19.7l-6.5-25.3zM296 316c0-6.9-3.1-13.2-7.3-18.3c-4.3-5.2-10.1-9.7-16.7-13.4C258.7 276.9 241.4 272 224 272c-3.6 0-6.8 2.5-7.7 6s.6 7.2 3.8 9l0 0 0 0 0 0 .2 .1c.2 .1 .5 .3 .9 .5c.8 .5 2 1.2 3.4 2.1c2.8 1.9 6.5 4.5 10.2 7.6c3.7 3.1 7.2 6.6 9.6 10.1c2.5 3.5 3.5 6.4 3.5 8.6s-1 5-3.5 8.6c-2.5 3.5-5.9 6.9-9.6 10.1c-3.7 3.1-7.4 5.7-10.2 7.6c-1.4 .9-2.6 1.6-3.4 2.1c-.4 .2-.7 .4-.9 .5l-.2 .1 0 0 0 0 0 0 0 0 0 0c-2.5 1.4-4.1 4.1-4.1 7s1.6 5.6 4.1 7l0 0 0 0 0 0 .2 .1c.2 .1 .5 .3 .9 .5c.8 .5 2 1.2 3.4 2.1c2.8 1.9 6.5 4.5 10.2 7.6c3.7 3.1 7.2 6.6 9.6 10.1c2.5 3.5 3.5 6.4 3.5 8.6s-1 5-3.5 8.6c-2.5 3.5-5.9 6.9-9.6 10.1c-3.7 3.1-7.4 5.7-10.2 7.6c-1.4 .9-2.6 1.6-3.4 2.1c-.4 .2-.7 .4-.9 .5l-.2 .1 0 0 0 0 0 0 0 0c-3.2 1.8-4.7 5.5-3.8 9s4.1 6 7.7 6c17.4 0 34.7-4.9 47.9-12.3c6.6-3.7 12.5-8.2 16.7-13.4c4.3-5.1 7.3-11.4 7.3-18.3s-3.1-13.2-7.3-18.3c-4.3-5.2-10.1-9.7-16.7-13.4c-2.7-1.5-5.7-3-8.7-4.3c3.1-1.3 6-2.7 8.7-4.3c6.6-3.7 12.5-8.2 16.7-13.4c4.3-5.1 7.3-11.4 7.3-18.3zM176.4 240a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm159.3-20c10.6 0 19.9 3.8 25.4 9.7c7.6 8.1 20.2 8.5 28.3 .9s8.5-20.2 .9-28.3C375.7 186.8 355 180 335.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7 .9 28.3s20.7 7.1 28.3-.9c5.5-5.8 14.8-9.7 25.4-9.7zM434 352.3c-6-23.2-28.8-37-51.1-30.8s-35.4 30.1-29.5 53.4l22.9 89.3c2.2 8.7 11.2 13.9 19.8 11.4l84.9-23.8c22.2-6.2 35.4-30.1 29.5-53.4s-28.8-37-51.1-30.8l-20.2 5.6-5.4-21z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-laugh": { + "aliases": { + "names": [ + "laugh" + ], + "unicodes": { + "secondary": [ + "10f599" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "laugh", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f599", + "label": "Face Laugh", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zM144.4 192a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9H364.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1zM144.4 192a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-laugh-beam": { + "aliases": { + "names": [ + "laugh-beam" + ], + "unicodes": { + "composite": [ + "1f601" + ], + "secondary": [ + "10f59a" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "beaming face with smiling eyes", + "emoticon", + "eye", + "face", + "grin", + "happy", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f59a", + "label": "Face Laugh Beam", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zM217.6 212.8l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9H364.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1zm86.9-85.1l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-laugh-squint": { + "aliases": { + "names": [ + "laugh-squint" + ], + "unicodes": { + "secondary": [ + "10f59b" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "happy", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f59b", + "label": "Face Laugh Squint", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zm36.7-199.4l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 125.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9H364.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1zm2.8-183.3l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 141.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-laugh-wink": { + "aliases": { + "names": [ + "laugh-wink" + ], + "unicodes": { + "secondary": [ + "10f59c" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LOL", + "emoticon", + "face", + "happy", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f59c", + "label": "Face Laugh Wink", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM96.8 314.1c-3.8-13.7 7.4-26.1 21.6-26.1H393.6c14.2 0 25.5 12.4 21.6 26.1C396.2 382 332.1 432 256 432s-140.2-50-159.2-117.9zM144.4 192a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm156.4 25.6c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2c-17.6-23.5-52.8-23.5-70.4 0z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm130.7 57.9c-4.2-13.6 7.1-25.9 21.3-25.9H364.5c14.2 0 25.5 12.4 21.3 25.9C369 368.4 318.2 408 258.2 408s-110.8-39.6-127.5-94.1zM144.4 192a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm165.8 21.7c-7.6 8.1-20.2 8.5-28.3 .9s-8.5-20.2-.9-28.3c14.5-15.5 35.2-22.3 54.6-22.3s40.1 6.8 54.6 22.3c7.6 8.1 7.1 20.7-.9 28.3s-20.7 7.1-28.3-.9c-5.5-5.8-14.8-9.7-25.4-9.7s-19.9 3.8-25.4 9.7z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-meh": { + "aliases": { + "names": [ + "meh" + ], + "unicodes": { + "composite": [ + "1f610" + ], + "secondary": [ + "10f11a" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.9", + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "deadpan", + "emoticon", + "face", + "meh", + "neutral", + "neutral face", + "rating" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f11a", + "label": "Face Meh", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM160 336H352c8.8 0 16 7.2 16 16s-7.2 16-16 16H160c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 1 48 256a208 208 0 1 1 416 0zM256 0a256 256 0 1 0 0 512A256 256 0 1 0 256 0zM176.4 240a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm192-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM184 328c-13.3 0-24 10.7-24 24s10.7 24 24 24H328c13.3 0 24-10.7 24-24s-10.7-24-24-24H184z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-meh-blank": { + "aliases": { + "names": [ + "meh-blank" + ], + "unicodes": { + "composite": [ + "1f636" + ], + "secondary": [ + "10f5a4" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "face without mouth", + "mouth", + "neutral", + "quiet", + "rating", + "silent" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5a4", + "label": "Face Meh Blank", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm208.4-48a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm128 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 0 0 416 208 208 0 1 0 0-416zM512 256A256 256 0 1 1 0 256a256 256 0 1 1 512 0zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-rolling-eyes": { + "aliases": { + "names": [ + "meh-rolling-eyes" + ], + "unicodes": { + "composite": [ + "1f644" + ], + "secondary": [ + "10f5a5" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "eyeroll", + "eyes", + "face", + "face with rolling eyes", + "neutral", + "rating", + "rolling" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5a5", + "label": "Face Rolling Eyes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM192 368H320c8.8 0 16 7.2 16 16s-7.2 16-16 16H192c-8.8 0-16-7.2-16-16s7.2-16 16-16zm32-144c0 35.3-28.7 64-64 64s-64-28.7-64-64c0-26 15.5-48.4 37.8-58.4c-3.7 5.2-5.8 11.6-5.8 18.4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.9-2.2-13.2-5.8-18.4C208.5 175.6 224 198 224 224zm128 64c-35.3 0-64-28.7-64-64c0-26 15.5-48.4 37.8-58.4c-3.7 5.2-5.8 11.6-5.8 18.4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-6.9-2.2-13.2-5.8-18.4C400.5 175.6 416 198 416 224c0 35.3-28.7 64-64 64z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM168 376c0 13.3 10.7 24 24 24H320c13.3 0 24-10.7 24-24s-10.7-24-24-24H192c-13.3 0-24 10.7-24 24zm-8-104c-26.5 0-48-21.5-48-48c0-14.3 6.3-27.2 16.2-36c-.2 1.3-.2 2.6-.2 4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-1.4-.1-2.7-.2-4c10 8.8 16.2 21.7 16.2 36c0 26.5-21.5 48-48 48zm0 32a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm192-32c-26.5 0-48-21.5-48-48c0-14.3 6.3-27.2 16.2-36c-.2 1.3-.2 2.6-.2 4c0 17.7 14.3 32 32 32s32-14.3 32-32c0-1.4-.1-2.7-.2-4c10 8.8 16.2 21.7 16.2 36c0 26.5-21.5 48-48 48zm0 32a80 80 0 1 0 0-160 80 80 0 1 0 0 160z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-sad-cry": { + "aliases": { + "names": [ + "sad-cry" + ], + "unicodes": { + "composite": [ + "1f62d" + ], + "secondary": [ + "10f5b3" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cry", + "emoticon", + "face", + "loudly crying face", + "sad", + "sob", + "tear", + "tears" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5b3", + "label": "Face Sad Cry", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 493.4c-29.6 12-62.1 18.6-96 18.6s-66.4-6.6-96-18.6V288c0-8.8-7.2-16-16-16s-16 7.2-16 16V477.8C51.5 433.5 0 350.8 0 256C0 114.6 114.6 0 256 0S512 114.6 512 256c0 94.8-51.5 177.5-128 221.8V288c0-8.8-7.2-16-16-16s-16 7.2-16 16V493.4zM195.2 233.6c5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0c-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2c17.6-23.5 52.8-23.5 70.4 0zm121.6 0c17.6-23.5 52.8-23.5 70.4 0c5.3 7.1 15.3 8.5 22.4 3.2s8.5-15.3 3.2-22.4c-30.4-40.5-91.2-40.5-121.6 0c-5.3 7.1-3.9 17.1 3.2 22.4s17.1 3.9 22.4-3.2zM208 336v32c0 26.5 21.5 48 48 48s48-21.5 48-48V336c0-26.5-21.5-48-48-48s-48 21.5-48 48z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M400 406.1V288c0-13.3-10.7-24-24-24s-24 10.7-24 24V440.6c-28.7 15-61.4 23.4-96 23.4s-67.3-8.5-96-23.4V288c0-13.3-10.7-24-24-24s-24 10.7-24 24V406.1C72.6 368.2 48 315 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208c0 59-24.6 112.2-64 150.1zM256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM159.6 220c10.6 0 19.9 3.8 25.4 9.7c7.6 8.1 20.2 8.5 28.3 .9s8.5-20.2 .9-28.3C199.7 186.8 179 180 159.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7 .9 28.3s20.7 7.1 28.3-.9c5.5-5.8 14.8-9.7 25.4-9.7zm166.6 9.7c5.5-5.8 14.8-9.7 25.4-9.7s19.9 3.8 25.4 9.7c7.6 8.1 20.2 8.5 28.3 .9s8.5-20.2 .9-28.3C391.7 186.8 371 180 351.6 180s-40.1 6.8-54.6 22.3c-7.6 8.1-7.1 20.7 .9 28.3s20.7 7.1 28.3-.9zM208 320v32c0 26.5 21.5 48 48 48s48-21.5 48-48V320c0-26.5-21.5-48-48-48s-48 21.5-48 48z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-sad-tear": { + "aliases": { + "names": [ + "sad-tear" + ], + "unicodes": { + "composite": [ + "1f622" + ], + "secondary": [ + "10f5b4" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cry", + "crying face", + "emoticon", + "face", + "sad", + "tear", + "tears" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5b4", + "label": "Face Sad Tear", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zm240 80c0-8.8 7.2-16 16-16c45 0 85.6 20.5 115.7 53.1c6 6.5 5.6 16.6-.9 22.6s-16.6 5.6-22.6-.9c-25-27.1-57.4-42.9-92.3-42.9c-8.8 0-16-7.2-16-16zm-80 80c-26.5 0-48-21-48-47c0-20 28.6-60.4 41.6-77.7c3.2-4.4 9.6-4.4 12.8 0C179.6 308.6 208 349 208 369c0 26-21.5 47-48 47zM367.6 208a32 32 0 1 1 -64 0 32 32 0 1 1 64 0zm-192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M175.9 448c-35-.1-65.5-22.6-76-54.6C67.6 356.8 48 308.7 48 256C48 141.1 141.1 48 256 48s208 93.1 208 208s-93.1 208-208 208c-28.4 0-55.5-5.7-80.1-16zM0 256a256 256 0 1 0 512 0A256 256 0 1 0 0 256zM128 369c0 26 21.5 47 48 47s48-21 48-47c0-20-28.4-60.4-41.6-77.7c-3.2-4.4-9.6-4.4-12.8 0C156.6 308.6 128 349 128 369zm128-65c-13.3 0-24 10.7-24 24s10.7 24 24 24c30.7 0 58.7 11.5 80 30.6c9.9 8.8 25 8 33.9-1.9s8-25-1.9-33.9C338.3 320.2 299 304 256 304zm47.6-96a32 32 0 1 0 64 0 32 32 0 1 0 -64 0zm-128 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-smile": { + "aliases": { + "names": [ + "smile" + ], + "unicodes": { + "composite": [ + "1f642" + ], + "secondary": [ + "10f118" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.9", + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "approve", + "emoticon", + "face", + "happy", + "rating", + "satisfied", + "slightly smiling face", + "smile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f118", + "label": "Face Smile", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-smile-beam": { + "aliases": { + "names": [ + "smile-beam" + ], + "unicodes": { + "composite": [ + "1f60a" + ], + "secondary": [ + "10f5b8" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blush", + "emoticon", + "eye", + "face", + "happy", + "positive", + "smile", + "smiling face with smiling eyes" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5b8", + "label": "Face Smile Beam", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zm53.5-96.7l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zm40-89.3l0 0 0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0zm160 0l0 0-.2-.2c-.2-.2-.4-.5-.7-.9c-.6-.8-1.6-2-2.8-3.4c-2.5-2.8-6-6.6-10.2-10.3c-8.8-7.8-18.8-14-27.7-14s-18.9 6.2-27.7 14c-4.2 3.7-7.7 7.5-10.2 10.3c-1.2 1.4-2.2 2.6-2.8 3.4c-.3 .4-.6 .7-.7 .9l-.2 .2 0 0 0 0 0 0c-2.1 2.8-5.7 3.9-8.9 2.8s-5.5-4.1-5.5-7.6c0-17.9 6.7-35.6 16.6-48.8c9.8-13 23.9-23.2 39.4-23.2s29.6 10.2 39.4 23.2c9.9 13.2 16.6 30.9 16.6 48.8c0 3.4-2.2 6.5-5.5 7.6s-6.9 0-8.9-2.8l0 0 0 0 0 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-smile-wink": { + "aliases": { + "names": [ + "smile-wink" + ], + "unicodes": { + "composite": [ + "1f609" + ], + "secondary": [ + "10f4da" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "happy", + "hint", + "joke", + "wink", + "winking face" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f4da", + "label": "Face Smile Wink", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.1 325.5C182 346.2 212.6 368 256 368s74-21.8 91.9-42.5c5.8-6.7 15.9-7.4 22.6-1.6s7.4 15.9 1.6 22.6C349.8 372.1 311.1 400 256 400s-93.8-27.9-116.1-53.5c-5.8-6.7-5.1-16.8 1.6-22.6s16.8-5.1 22.6 1.6zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm156.4 25.6c-5.3 7.1-15.3 8.5-22.4 3.2s-8.5-15.3-3.2-22.4c30.4-40.5 91.2-40.5 121.6 0c5.3 7.1 3.9 17.1-3.2 22.4s-17.1 3.9-22.4-3.2c-17.6-23.5-52.8-23.5-70.4 0z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm165.8 21.7c-7.6 8.1-20.2 8.5-28.3 .9s-8.5-20.2-.9-28.3c14.5-15.5 35.2-22.3 54.6-22.3s40.1 6.8 54.6 22.3c7.6 8.1 7.1 20.7-.9 28.3s-20.7 7.1-28.3-.9c-5.5-5.8-14.8-9.7-25.4-9.7s-19.9 3.8-25.4 9.7z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-surprise": { + "aliases": { + "names": [ + "surprise" + ], + "unicodes": { + "composite": [ + "1f62e" + ], + "secondary": [ + "10f5c2" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emoticon", + "face", + "face with open mouth", + "mouth", + "open", + "shocked", + "sympathy" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5c2", + "label": "Face Surprise", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM176.4 176a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM256 288a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm176.4-80a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm128 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM256 288a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "face-tired": { + "aliases": { + "names": [ + "tired" + ], + "unicodes": { + "composite": [ + "1f62b" + ], + "secondary": [ + "10f5c8" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "angry", + "emoticon", + "face", + "grumpy", + "tired", + "tired face", + "upset" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5c8", + "label": "Face Tired", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM164.7 328.7c22-22 53.9-40.7 91.3-40.7s69.3 18.7 91.3 40.7c11.1 11.1 20.1 23.4 26.4 35.4c6.2 11.7 10.3 24.4 10.3 35.9c0 5.2-2.6 10.2-6.9 13.2s-9.8 3.7-14.7 1.8l-20.5-7.7c-26.9-10.1-55.5-15.3-84.3-15.3h-3.2c-28.8 0-57.3 5.2-84.3 15.3L149.6 415c-4.9 1.8-10.4 1.2-14.7-1.8s-6.9-7.9-6.9-13.2c0-11.6 4.2-24.2 10.3-35.9c6.3-12 15.3-24.3 26.4-35.4zm-31.2-182l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + }, + "regular": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm176.5 64.3C196.1 302.1 223.8 288 256 288s59.9 14.1 79.5 32.3C354.5 338.1 368 362 368 384c0 5.4-2.7 10.4-7.2 13.4s-10.2 3.4-15.2 1.3l-17.2-7.5c-22.8-10-47.5-15.1-72.4-15.1s-49.6 5.2-72.4 15.1l-17.2 7.5c-4.9 2.2-10.7 1.7-15.2-1.3s-7.2-8-7.2-13.4c0-22 13.5-45.9 32.5-63.7zm-43-173.6l89.9 47.9c10.7 5.7 10.7 21.1 0 26.8l-89.9 47.9c-7.9 4.2-17.5-1.5-17.5-10.5c0-2.8 1-5.5 2.8-7.6l36-43.2-36-43.2c-1.8-2.1-2.8-4.8-2.8-7.6c0-9 9.6-14.7 17.5-10.5zM396 157.1c0 2.8-1 5.5-2.8 7.6l-36 43.2 36 43.2c1.8 2.1 2.8 4.8 2.8 7.6c0 9-9.6 14.7-17.5 10.5l-89.9-47.9c-10.7-5.7-10.7-21.1 0-26.8l89.9-47.9c7.9-4.2 17.5 1.5 17.5 10.5z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "facebook": { + "aliases": { + "unicodes": { + "composite": [ + "f230" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [ + "facebook-official", + "social network" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f09a", + "label": "Facebook", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z" + } + }, + "free": [ + "brands" + ] + }, + "facebook-f": { + "changes": [ + "5.0.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [ + "facebook" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f39e", + "label": "Facebook F", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z" + } + }, + "free": [ + "brands" + ] + }, + "facebook-messenger": { + "changes": [ + "5.0.0", + "5.8.2", + "5.9.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f39f", + "label": "Facebook Messenger", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256.55 8C116.52 8 8 110.34 8 248.57c0 72.3 29.71 134.78 78.07 177.94 8.35 7.51 6.63 11.86 8.05 58.23A19.92 19.92 0 0 0 122 502.31c52.91-23.3 53.59-25.14 62.56-22.7C337.85 521.8 504 423.7 504 248.57 504 110.34 396.59 8 256.55 8zm149.24 185.13l-73 115.57a37.37 37.37 0 0 1-53.91 9.93l-58.08-43.47a15 15 0 0 0-18 0l-78.37 59.44c-10.46 7.93-24.16-4.6-17.11-15.67l73-115.57a37.36 37.36 0 0 1 53.91-9.93l58.06 43.46a15 15 0 0 0 18 0l78.41-59.38c10.44-7.98 24.14 4.54 17.09 15.62z" + } + }, + "free": [ + "brands" + ] + }, + "fan": { + "aliases": { + "unicodes": { + "secondary": [ + "10f863" + ] + } + }, + "changes": [ + "5.9.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ac", + "air conditioning", + "blade", + "blower", + "cool", + "hot" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f863", + "label": "Fan", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M258.6 0c-1.7 0-3.4 .1-5.1 .5C168 17 115.6 102.3 130.5 189.3c2.9 17 8.4 32.9 15.9 47.4L32 224H29.4C13.2 224 0 237.2 0 253.4c0 1.7 .1 3.4 .5 5.1C17 344 102.3 396.4 189.3 381.5c17-2.9 32.9-8.4 47.4-15.9L224 480v2.6c0 16.2 13.2 29.4 29.4 29.4c1.7 0 3.4-.1 5.1-.5C344 495 396.4 409.7 381.5 322.7c-2.9-17-8.4-32.9-15.9-47.4L480 288h2.6c16.2 0 29.4-13.2 29.4-29.4c0-1.7-.1-3.4-.5-5.1C495 168 409.7 115.6 322.7 130.5c-17 2.9-32.9 8.4-47.4 15.9L288 32V29.4C288 13.2 274.8 0 258.6 0zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "fantasy-flight-games": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "game", + "gaming", + "tabletop" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f6dc", + "label": "Fantasy Flight-games", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 32.86L32.86 256 256 479.14 479.14 256 256 32.86zM88.34 255.83c1.96-2 11.92-12.3 96.49-97.48 41.45-41.75 86.19-43.77 119.77-18.69 24.63 18.4 62.06 58.9 62.15 59 .68.74 1.07 2.86.58 3.38-11.27 11.84-22.68 23.54-33.5 34.69-34.21-32.31-40.52-38.24-48.51-43.95-17.77-12.69-41.4-10.13-56.98 5.1-2.17 2.13-1.79 3.43.12 5.35 2.94 2.95 28.1 28.33 35.09 35.78-11.95 11.6-23.66 22.97-35.69 34.66-12.02-12.54-24.48-25.53-36.54-38.11-21.39 21.09-41.69 41.11-61.85 60.99zm234.82 101.6c-35.49 35.43-78.09 38.14-106.99 20.47-22.08-13.5-39.38-32.08-72.93-66.84 12.05-12.37 23.79-24.42 35.37-36.31 33.02 31.91 37.06 36.01 44.68 42.09 18.48 14.74 42.52 13.67 59.32-1.8 3.68-3.39 3.69-3.64.14-7.24-10.59-10.73-21.19-21.44-31.77-32.18-1.32-1.34-3.03-2.48-.8-4.69 10.79-10.71 21.48-21.52 32.21-32.29.26-.26.65-.38 1.91-1.07 12.37 12.87 24.92 25.92 37.25 38.75 21.01-20.73 41.24-40.68 61.25-60.42 13.68 13.4 27.13 26.58 40.86 40.03-20.17 20.86-81.68 82.71-100.5 101.5zM256 0L0 256l256 256 256-256L256 0zM16 256L256 16l240 240-240 240L16 256z" + } + }, + "free": [ + "brands" + ] + }, + "faucet": { + "aliases": { + "unicodes": { + "secondary": [ + "10e005" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "drinking", + "drip", + "house", + "hygiene", + "kitchen", + "potable", + "potable water", + "sanitation", + "sink", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e005", + "label": "Faucet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 96v12L96 96c-17.7 0-32 14.3-32 32s14.3 32 32 32l96-12 31-3.9 1-.1 1 .1 31 3.9 96 12c17.7 0 32-14.3 32-32s-14.3-32-32-32l-96 12V96c0-17.7-14.3-32-32-32s-32 14.3-32 32zM32 256c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H132.1c20.2 29 53.9 48 91.9 48s71.7-19 91.9-48H352c17.7 0 32 14.3 32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32c0-88.4-71.6-160-160-160H320l-22.6-22.6c-6-6-14.1-9.4-22.6-9.4H256V180.2l-32-4-32 4V224H173.3c-8.5 0-16.6 3.4-22.6 9.4L128 256H32z" + } + }, + "free": [ + "solid" + ] + }, + "faucet-drip": { + "aliases": { + "unicodes": { + "composite": [ + "1f6b0" + ], + "secondary": [ + "10e006" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drinking", + "drip", + "house", + "hygiene", + "kitchen", + "potable", + "potable water", + "sanitation", + "sink", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e006", + "label": "Faucet Drip", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 0c17.7 0 32 14.3 32 32V44l96-12c17.7 0 32 14.3 32 32s-14.3 32-32 32L256 84l-31-3.9-1-.1-1 .1L192 84 96 96C78.3 96 64 81.7 64 64s14.3-32 32-32l96 12V32c0-17.7 14.3-32 32-32zM0 224c0-17.7 14.3-32 32-32h96l22.6-22.6c6-6 14.1-9.4 22.6-9.4H192V116.2l32-4 32 4V160h18.7c8.5 0 16.6 3.4 22.6 9.4L320 192h32c88.4 0 160 71.6 160 160c0 17.7-14.3 32-32 32H416c-17.7 0-32-14.3-32-32s-14.3-32-32-32H315.9c-20.2 29-53.9 48-91.9 48s-71.7-19-91.9-48H32c-17.7 0-32-14.3-32-32V224zM436.8 423.4c1.9-4.5 6.3-7.4 11.2-7.4s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V480c0 17.7-14.3 32-32 32s-32-14.3-32-32v-1.2c0-4.5 .9-8.9 2.7-13.1l18.2-42.4z" + } + }, + "free": [ + "solid" + ] + }, + "fax": { + "aliases": { + "unicodes": { + "composite": [ + "1f4e0", + "1f5b7" + ], + "secondary": [ + "10f1ac" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.3.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Fax Icon", + "business", + "communicate", + "copy", + "facsimile", + "fax", + "fax machine", + "send" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1ac", + "label": "Fax", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 64v96h64V64H386.7L416 93.3V160h64V93.3c0-17-6.7-33.3-18.7-45.3L432 18.7C420 6.7 403.7 0 386.7 0H192c-35.3 0-64 28.7-64 64zM0 160V480c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H32c-17.7 0-32 14.3-32 32zm480 32H128V480c0 17.7 14.3 32 32 32H480c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32zM256 256a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm96 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm32 96a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM224 416a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + }, + "free": [ + "solid" + ] + }, + "feather": { + "aliases": { + "unicodes": { + "composite": [ + "1fab6" + ], + "secondary": [ + "10f52d" + ] + } + }, + "changes": [ + "5.0.13", + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "feather", + "flight", + "light", + "plucked", + "plumage", + "quill", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f52d", + "label": "Feather", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M278.5 215.6L23 471c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l57-57h68c49.7 0 97.9-14.4 139-41c11.1-7.2 5.5-23-7.8-23c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l81-24.3c2.5-.8 4.8-2.1 6.7-4l22.4-22.4c10.1-10.1 2.9-27.3-11.3-27.3l-32.2 0c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l112-33.6c4-1.2 7.4-3.9 9.3-7.7C506.4 207.6 512 184.1 512 160c0-41-16.3-80.3-45.3-109.3l-5.5-5.5C432.3 16.3 393 0 352 0s-80.3 16.3-109.3 45.3L139 149C91 197 64 262.1 64 330v55.3L253.6 195.8c6.2-6.2 16.4-6.2 22.6 0c5.4 5.4 6.1 13.6 2.2 19.8z" + } + }, + "free": [ + "solid" + ] + }, + "feather-pointed": { + "aliases": { + "names": [ + "feather-alt" + ], + "unicodes": { + "secondary": [ + "10f56b" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "light", + "plucked", + "quill", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f56b", + "label": "Feather Pointed", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M278.5 215.6L23 471c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l74.8-74.8c7.4 4.6 15.3 8.2 23.8 10.5C200.3 452.8 270 454.5 338 409.4c12.2-8.1 5.8-25.4-8.8-25.4l-16.1 0c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l97.7-29.3c3.4-1 6.4-3.1 8.4-6.1c4.4-6.4 8.6-12.9 12.6-19.6c6.2-10.3-1.5-23-13.5-23l-38.6 0c-5.1 0-9.2-4.1-9.2-9.2c0-4.1 2.7-7.6 6.5-8.8l80.9-24.3c4.6-1.4 8.4-4.8 10.2-9.3C494.5 163 507.8 86.1 511.9 36.8c.8-9.9-3-19.6-10-26.6s-16.7-10.8-26.6-10C391.5 7 228.5 40.5 137.4 131.6C57.3 211.7 56.7 302.3 71.3 356.4c2.1 7.9 12 9.6 17.8 3.8L253.6 195.8c6.2-6.2 16.4-6.2 22.6 0c5.4 5.4 6.1 13.6 2.2 19.8z" + } + }, + "free": [ + "solid" + ] + }, + "fedex": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Federal Express", + "package", + "shipping" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f797", + "label": "FedEx", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M586 284.5l53.3-59.9h-62.4l-21.7 24.8-22.5-24.8H414v-16h56.1v-48.1H318.9V236h-.5c-9.6-11-21.5-14.8-35.4-14.8-28.4 0-49.8 19.4-57.3 44.9-18-59.4-97.4-57.6-121.9-14v-24.2H49v-26.2h60v-41.1H0V345h49v-77.5h48.9c-1.5 5.7-2.3 11.8-2.3 18.2 0 73.1 102.6 91.4 130.2 23.7h-42c-14.7 20.9-45.8 8.9-45.8-14.6h85.5c3.7 30.5 27.4 56.9 60.1 56.9 14.1 0 27-6.9 34.9-18.6h.5V345h212.2l22.1-25 22.3 25H640l-54-60.5zm-446.7-16.6c6.1-26.3 41.7-25.6 46.5 0h-46.5zm153.4 48.9c-34.6 0-34-62.8 0-62.8 32.6 0 34.5 62.8 0 62.8zm167.8 19.1h-94.4V169.4h95v30.2H405v33.9h55.5v28.1h-56.1v44.7h56.1v29.6zm-45.9-39.8v-24.4h56.1v-44l50.7 57-50.7 57v-45.6h-56.1zm138.6 10.3l-26.1 29.5H489l45.6-51.2-45.6-51.2h39.7l26.6 29.3 25.6-29.3h38.5l-45.4 51 46 51.4h-40.5l-26.3-29.5z" + } + }, + "free": [ + "brands" + ] + }, + "fedora": { + "changes": [ + "5.6.0", + "5.6.3", + "5.8.0", + "6.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f798", + "label": "Fedora", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M.0413 255.8C.1219 132.2 100.3 32 224 32C347.7 32 448 132.3 448 256C448 379.7 347.8 479.9 224.1 480H50.93C22.84 480 .0832 457.3 .0416 429.2H0V255.8H.0413zM342.6 192.7C342.6 153 307 124.2 269.4 124.2C234.5 124.2 203.6 150.5 199.3 184.1C199.1 187.9 198.9 189.1 198.9 192.6C198.8 213.7 198.9 235.4 198.1 257C199 283.1 199.1 309.1 198.1 333.6C198.1 360.7 178.7 379.1 153.4 379.1C128.1 379.1 107.6 358.9 107.6 333.6C108.1 305.9 130.2 288.3 156.1 287.5H156.3L182.6 287.3V250L156.3 250.2C109.2 249.8 71.72 286.7 70.36 333.6C70.36 379.2 107.9 416.5 153.4 416.5C196.4 416.5 232.1 382.9 236 340.9L236.2 287.4L268.8 287.1C294.1 287.3 293.8 249.3 268.6 249.8L236.2 250.1C236.2 243.7 236.3 237.3 236.3 230.9C236.4 218.2 236.4 205.5 236.2 192.7C236.3 176.2 252 161.5 269.4 161.5C286.9 161.5 305.3 170.2 305.3 192.7C305.3 195.9 305.2 197.8 305 199C303.1 209.5 310.2 219.4 320.7 220.9C331.3 222.4 340.9 214.8 341.9 204.3C342.5 200.1 342.6 196.4 342.6 192.7H342.6z" + } + }, + "free": [ + "brands" + ] + }, + "ferry": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barge", + "boat", + "carry", + "ferryboat", + "ship" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4ea", + "label": "Ferry", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M224 0H352c17.7 0 32 14.3 32 32h75.1c20.6 0 31.6 24.3 18.1 39.8L456 96H120L98.8 71.8C85.3 56.3 96.3 32 116.9 32H192c0-17.7 14.3-32 32-32zM96 128H480c17.7 0 32 14.3 32 32V283.5c0 13.3-4.2 26.3-11.9 37.2l-51.4 71.9c-1.9 1.1-3.7 2.2-5.5 3.5c-15.5 10.7-34 18-51 19.9H375.6c-17.1-1.8-35-9-50.8-19.9c-22.1-15.5-51.6-15.5-73.7 0c-14.8 10.2-32.5 18-50.6 19.9H183.9c-17-1.8-35.6-9.2-51-19.9c-1.8-1.3-3.7-2.4-5.6-3.5L75.9 320.7C68.2 309.8 64 296.8 64 283.5V160c0-17.7 14.3-32 32-32zm32 64v96H448V192H128zM306.5 421.9C329 437.4 356.5 448 384 448c26.9 0 55.3-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 501.7 417 512 384 512c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 437.2 165.1 448 192 448c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + }, + "free": [ + "solid" + ] + }, + "figma": { + "changes": [ + "5.6.0", + "5.7.0", + "5.8.0", + "5.15.4", + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "design", + "interface" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f799", + "label": "Figma", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M14 95.7924C14 42.8877 56.8878 0 109.793 0H274.161C327.066 0 369.954 42.8877 369.954 95.7924C369.954 129.292 352.758 158.776 326.711 175.897C352.758 193.019 369.954 222.502 369.954 256.002C369.954 308.907 327.066 351.795 274.161 351.795H272.081C247.279 351.795 224.678 342.369 207.666 326.904V415.167C207.666 468.777 163.657 512 110.309 512C57.5361 512 14 469.243 14 416.207C14 382.709 31.1945 353.227 57.2392 336.105C31.1945 318.983 14 289.5 14 256.002C14 222.502 31.196 193.019 57.2425 175.897C31.196 158.776 14 129.292 14 95.7924ZM176.288 191.587H109.793C74.2172 191.587 45.3778 220.427 45.3778 256.002C45.3778 291.44 73.9948 320.194 109.381 320.416C109.518 320.415 109.655 320.415 109.793 320.415H176.288V191.587ZM207.666 256.002C207.666 291.577 236.505 320.417 272.081 320.417H274.161C309.737 320.417 338.576 291.577 338.576 256.002C338.576 220.427 309.737 191.587 274.161 191.587H272.081C236.505 191.587 207.666 220.427 207.666 256.002ZM109.793 351.795C109.655 351.795 109.518 351.794 109.381 351.794C73.9948 352.015 45.3778 380.769 45.3778 416.207C45.3778 451.652 74.6025 480.622 110.309 480.622C146.591 480.622 176.288 451.186 176.288 415.167V351.795H109.793ZM109.793 31.3778C74.2172 31.3778 45.3778 60.2173 45.3778 95.7924C45.3778 131.368 74.2172 160.207 109.793 160.207H176.288V31.3778H109.793ZM207.666 160.207H274.161C309.737 160.207 338.576 131.368 338.576 95.7924C338.576 60.2173 309.737 31.3778 274.161 31.3778H207.666V160.207Z" + } + }, + "free": [ + "brands" + ] + }, + "file": { + "aliases": { + "unicodes": { + "composite": [ + "1f4c4", + "1f5cb", + "f016" + ], + "secondary": [ + "10f15b" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Empty Document", + "document", + "new", + "page", + "page facing up", + "pdf", + "resume" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f15b", + "label": "File", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 464c8.8 0 16-7.2 16-16V160H256c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320zM0 64C0 28.7 28.7 0 64 0H229.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "file-arrow-down": { + "aliases": { + "names": [ + "file-download" + ], + "unicodes": { + "secondary": [ + "10f56d" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "export", + "save" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f56d", + "label": "File Arrow Down", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM216 232V334.1l31-31c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-72 72c-9.4 9.4-24.6 9.4-33.9 0l-72-72c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l31 31V232c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + }, + "free": [ + "solid" + ] + }, + "file-arrow-up": { + "aliases": { + "names": [ + "file-upload" + ], + "unicodes": { + "secondary": [ + "10f574" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "import", + "page", + "save" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f574", + "label": "File Arrow Up", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM216 408c0 13.3-10.7 24-24 24s-24-10.7-24-24V305.9l-31 31c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l72-72c9.4-9.4 24.6-9.4 33.9 0l72 72c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-31-31V408z" + } + }, + "free": [ + "solid" + ] + }, + "file-audio": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c7" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "mp3", + "music", + "page", + "play", + "sound" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c7", + "label": "File Audio", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zm2 226.3c37.1 22.4 62 63.1 62 109.7s-24.9 87.3-62 109.7c-7.6 4.6-17.4 2.1-22-5.4s-2.1-17.4 5.4-22C269.4 401.5 288 370.9 288 336s-18.6-65.5-46.5-82.3c-7.6-4.6-10-14.4-5.4-22s14.4-10 22-5.4zm-91.9 30.9c6 2.5 9.9 8.3 9.9 14.8V400c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5L113.4 376H80c-8.8 0-16-7.2-16-16V312c0-8.8 7.2-16 16-16h33.4l35.3-35.3c4.6-4.6 11.5-5.9 17.4-3.5zm51 34.9c6.6-5.9 16.7-5.3 22.6 1.3C249.8 304.6 256 319.6 256 336s-6.2 31.4-16.3 42.7c-5.9 6.6-16 7.1-22.6 1.3s-7.1-16-1.3-22.6c5.1-5.7 8.1-13.1 8.1-21.3s-3.1-15.7-8.1-21.3c-5.9-6.6-5.3-16.7 1.3-22.6z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464H320c8.8 0 16-7.2 16-16V160H256c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16zM0 64C0 28.7 28.7 0 64 0H229.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM192 272V400c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5L129.4 376H112c-8.8 0-16-7.2-16-16V312c0-8.8 7.2-16 16-16h17.4l35.3-35.3c4.6-4.6 11.5-5.9 17.4-3.5s9.9 8.3 9.9 14.8zm85.8-4c11.6 20 18.2 43.3 18.2 68s-6.6 48-18.2 68c-6.6 11.5-21.3 15.4-32.8 8.8s-15.4-21.3-8.8-32.8c7.5-12.9 11.8-27.9 11.8-44s-4.3-31.1-11.8-44c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "file-circle-check": { + "changes": [ + "6.0.0", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "not affected", + "ok", + "okay", + "paper" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e5a0", + "label": "File Circle Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM288 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L416 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + }, + "free": [ + "solid" + ] + }, + "file-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "paper" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4eb", + "label": "File Circle Exclamation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "file-circle-minus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "paper" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4ed", + "label": "File Circle Minus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM288 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm224 0c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16s7.2 16 16 16H496c8.8 0 16-7.2 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "file-circle-plus": { + "aliases": { + "unicodes": { + "composite": [ + "e4ee" + ] + } + }, + "changes": [ + "6.0.0", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "document", + "file", + "new", + "page", + "paper", + "pdf" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e494", + "label": "File Circle Plus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm16 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H368c-8.8 0-16 7.2-16 16s7.2 16 16 16h48v48c0 8.8 7.2 16 16 16s16-7.2 16-16V384h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H448V304z" + } + }, + "free": [ + "solid" + ] + }, + "file-circle-question": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "paper" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4ef", + "label": "File Circle Question", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zM368 321.6V328c0 8.8 7.2 16 16 16s16-7.2 16-16v-6.4c0-5.3 4.3-9.6 9.6-9.6h40.5c7.7 0 13.9 6.2 13.9 13.9c0 5.2-2.9 9.9-7.4 12.3l-32 16.8c-5.3 2.8-8.6 8.2-8.6 14.2V384c0 8.8 7.2 16 16 16s16-7.2 16-16v-5.1l23.5-12.3c15.1-7.9 24.5-23.6 24.5-40.6c0-25.4-20.6-45.9-45.9-45.9H409.6c-23 0-41.6 18.6-41.6 41.6z" + } + }, + "free": [ + "solid" + ] + }, + "file-circle-xmark": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "file", + "paper" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e5a1", + "label": "File Circle Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v38.6C310.1 219.5 256 287.4 256 368c0 59.1 29.1 111.3 73.7 143.3c-3.2 .5-6.4 .7-9.7 .7H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm48 96a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm59.3 107.3c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L409.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L432 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368l36.7-36.7z" + } + }, + "free": [ + "solid" + ] + }, + "file-code": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c9" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "css", + "development", + "document", + "html" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c9", + "label": "File Code", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM153 289l-31 31 31 31c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L71 337c-9.4-9.4-9.4-24.6 0-33.9l48-48c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM265 255l48 48c9.4 9.4 9.4 24.6 0 33.9l-48 48c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l31-31-31-31c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm97 289c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L79 303c-9.4 9.4-9.4 24.6 0 33.9l48 48c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-31-31 31-31zM257 255c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l31 31-31 31c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l48-48c9.4-9.4 9.4-24.6 0-33.9l-48-48z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "file-contract": { + "aliases": { + "unicodes": { + "secondary": [ + "10f56c" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agreement", + "binding", + "document", + "legal", + "signature" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f56c", + "label": "File Contract", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM80 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm54.2 253.8c-6.1 20.3-24.8 34.2-46 34.2H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h8.2c7.1 0 13.3-4.6 15.3-11.4l14.9-49.5c3.4-11.3 13.8-19.1 25.6-19.1s22.2 7.7 25.6 19.1l11.6 38.6c7.4-6.2 16.8-9.7 26.8-9.7c15.9 0 30.4 9 37.5 23.2l4.4 8.8H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-6.1 0-11.6-3.4-14.3-8.8l-8.8-17.7c-1.7-3.4-5.1-5.5-8.8-5.5s-7.2 2.1-8.8 5.5l-8.8 17.7c-2.9 5.9-9.2 9.4-15.7 8.8s-12.1-5.1-13.9-11.3L144 349l-9.8 32.8z" + } + }, + "free": [ + "solid" + ] + }, + "file-csv": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6dd" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "excel", + "numbers", + "spreadsheets", + "table" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6dd", + "label": "File Csv", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM80 224H96c22.1 0 40 17.9 40 40v8c0 8.8-7.2 16-16 16s-16-7.2-16-16v-8c0-4.4-3.6-8-8-8H80c-4.4 0-8 3.6-8 8v80c0 4.4 3.6 8 8 8H96c4.4 0 8-3.6 8-8v-8c0-8.8 7.2-16 16-16s16 7.2 16 16v8c0 22.1-17.9 40-40 40H80c-22.1 0-40-17.9-40-40V264c0-22.1 17.9-40 40-40zm72 46.4c0-25.6 20.8-46.4 46.4-46.4H216c8.8 0 16 7.2 16 16s-7.2 16-16 16H198.4c-7.9 0-14.4 6.4-14.4 14.4c0 5.2 2.8 9.9 7.2 12.5l25.4 14.5c14.4 8.3 23.4 23.6 23.4 40.3c0 25.6-20.8 46.4-46.4 46.4H168c-8.8 0-16-7.2-16-16s7.2-16 16-16h25.6c7.9 0 14.4-6.4 14.4-14.4c0-5.2-2.8-9.9-7.2-12.5l-25.4-14.5C160.9 302.4 152 287 152 270.4zM280 240v31.6c0 23 5.5 45.6 16 66c10.5-20.3 16-42.9 16-66V240c0-8.8 7.2-16 16-16s16 7.2 16 16v31.6c0 34.7-10.3 68.7-29.6 97.6l-5.1 7.7c-3 4.5-8 7.1-13.3 7.1s-10.3-2.7-13.3-7.1l-5.1-7.7c-19.3-28.9-29.6-62.9-29.6-97.6V240c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "file-excel": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c3" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "csv", + "document", + "numbers", + "spreadsheets", + "table" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c3", + "label": "File Excel", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM155.7 250.2L192 302.1l36.3-51.9c7.6-10.9 22.6-13.5 33.4-5.9s13.5 22.6 5.9 33.4L221.3 344l46.4 66.2c7.6 10.9 5 25.8-5.9 33.4s-25.8 5-33.4-5.9L192 385.8l-36.3 51.9c-7.6 10.9-22.6 13.5-33.4 5.9s-13.5-22.6-5.9-33.4L162.7 344l-46.4-66.2c-7.6-10.9-5-25.8 5.9-33.4s25.8-5 33.4 5.9z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 448V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm90.9 233.3c-8.1-10.5-23.2-12.3-33.7-4.2s-12.3 23.2-4.2 33.7L161.6 320l-44.5 57.3c-8.1 10.5-6.3 25.5 4.2 33.7s25.5 6.3 33.7-4.2L192 359.1l37.1 47.6c8.1 10.5 23.2 12.3 33.7 4.2s12.3-23.2 4.2-33.7L222.4 320l44.5-57.3c8.1-10.5 6.3-25.5-4.2-33.7s-25.5-6.3-33.7 4.2L192 280.9l-37.1-47.6z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "file-export": { + "aliases": { + "names": [ + "arrow-right-from-file" + ], + "unicodes": { + "secondary": [ + "10f56e" + ] + } + }, + "changes": [ + "5.1.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "download", + "save" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f56e", + "label": "File Export", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V288H216c-13.3 0-24 10.7-24 24s10.7 24 24 24H384V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM384 336V288H494.1l-39-39c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l80 80c9.4 9.4 9.4 24.6 0 33.9l-80 80c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l39-39H384zm0-208H256V0L384 128z" + } + }, + "free": [ + "solid" + ] + }, + "file-image": { + "aliases": { + "unicodes": { + "composite": [ + "1f5bb" + ], + "secondary": [ + "10f1c5" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Document with Picture", + "document", + "image", + "jpg", + "photo", + "png" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c5", + "label": "File Image", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM64 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm152 32c5.3 0 10.2 2.6 13.2 6.9l88 128c3.4 4.9 3.7 11.3 1 16.5s-8.2 8.6-14.2 8.6H216 176 128 80c-5.8 0-11.1-3.1-13.9-8.1s-2.8-11.2 .2-16.1l48-80c2.9-4.8 8.1-7.8 13.7-7.8s10.8 2.9 13.7 7.8l12.8 21.4 48.3-70.2c3-4.3 7.9-6.9 13.2-6.9z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm96 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm69.2 46.9c-3-4.3-7.9-6.9-13.2-6.9s-10.2 2.6-13.2 6.9l-41.3 59.7-11.9-19.1c-2.9-4.7-8.1-7.5-13.6-7.5s-10.6 2.8-13.6 7.5l-40 64c-3.1 4.9-3.2 11.1-.4 16.2s8.2 8.2 14 8.2h48 32 40 72c6 0 11.4-3.3 14.2-8.6s2.4-11.6-1-16.5l-72-104z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "file-import": { + "aliases": { + "names": [ + "arrow-right-to-file" + ], + "unicodes": { + "secondary": [ + "10f56f" + ] + } + }, + "changes": [ + "5.1.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copy", + "document", + "send", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f56f", + "label": "File Import", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 64c0-35.3 28.7-64 64-64H352V128c0 17.7 14.3 32 32 32H512V448c0 35.3-28.7 64-64 64H192c-35.3 0-64-28.7-64-64V336H302.1l-39 39c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9l-80-80c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l39 39H128V64zm0 224v48H24c-13.3 0-24-10.7-24-24s10.7-24 24-24H128zM512 128H384V0L512 128z" + } + }, + "free": [ + "solid" + ] + }, + "file-invoice": { + "aliases": { + "unicodes": { + "secondary": [ + "10f570" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "account", + "bill", + "charge", + "document", + "payment", + "receipt" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f570", + "label": "File Invoice", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM80 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16zm16 96H288c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V256c0-17.7 14.3-32 32-32zm0 32v64H288V256H96zM240 416h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "file-invoice-dollar": { + "aliases": { + "unicodes": { + "secondary": [ + "10f571" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "$", + "account", + "bill", + "charge", + "document", + "dollar-sign", + "money", + "payment", + "receipt", + "usd" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f571", + "label": "File Invoice Dollar", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM64 80c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm128 72c8.8 0 16 7.2 16 16v17.3c8.5 1.2 16.7 3.1 24.1 5.1c8.5 2.3 13.6 11 11.3 19.6s-11 13.6-19.6 11.3c-11.1-3-22-5.2-32.1-5.3c-8.4-.1-17.4 1.8-23.6 5.5c-5.7 3.4-8.1 7.3-8.1 12.8c0 3.7 1.3 6.5 7.3 10.1c6.9 4.1 16.6 7.1 29.2 10.9l.5 .1 0 0 0 0c11.3 3.4 25.3 7.6 36.3 14.6c12.1 7.6 22.4 19.7 22.7 38.2c.3 19.3-9.6 33.3-22.9 41.6c-7.7 4.8-16.4 7.6-25.1 9.1V440c0 8.8-7.2 16-16 16s-16-7.2-16-16V422.2c-11.2-2.1-21.7-5.7-30.9-8.9l0 0c-2.1-.7-4.2-1.4-6.2-2.1c-8.4-2.8-12.9-11.9-10.1-20.2s11.9-12.9 20.2-10.1c2.5 .8 4.8 1.6 7.1 2.4l0 0 0 0 0 0c13.6 4.6 24.6 8.4 36.3 8.7c9.1 .3 17.9-1.7 23.7-5.3c5.1-3.2 7.9-7.3 7.8-14c-.1-4.6-1.8-7.8-7.7-11.6c-6.8-4.3-16.5-7.4-29-11.2l-1.6-.5 0 0c-11-3.3-24.3-7.3-34.8-13.7c-12-7.2-22.6-18.9-22.7-37.3c-.1-19.4 10.8-32.8 23.8-40.5c7.5-4.4 15.8-7.2 24.1-8.7V232c0-8.8 7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "file-lines": { + "aliases": { + "names": [ + "file-alt", + "file-text" + ], + "unicodes": { + "composite": [ + "1f5b9", + "1f5ce", + "f0f6" + ], + "secondary": [ + "10f15c" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Document", + "Document with Text", + "document", + "file-text", + "invoice", + "new", + "page", + "pdf" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f15c", + "label": "File Lines", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM112 256H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm56 256c-13.3 0-24 10.7-24 24s10.7 24 24 24H264c13.3 0 24-10.7 24-24s-10.7-24-24-24H120zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24H264c13.3 0 24-10.7 24-24s-10.7-24-24-24H120z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "file-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f477" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "health", + "history", + "prescription", + "record" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f477", + "label": "File Medical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM160 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H224v48c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V352H112c-8.8 0-16-7.2-16-16V304c0-8.8 7.2-16 16-16h48V240z" + } + }, + "free": [ + "solid" + ] + }, + "file-pdf": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c1" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrobat", + "document", + "preview", + "save" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c1", + "label": "File Pdf", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V304H296 272 184 160c-35.3 0-64 28.7-64 64v80 48 16H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM160 352h24c30.9 0 56 25.1 56 56s-25.1 56-56 56h-8v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V448 368c0-8.8 7.2-16 16-16zm24 80c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8v48h8zm88-80h24c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H272c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16zm24 128c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16h-8v96h8zm72-112c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H400v32h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H400v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V432 368z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 464H96v48H64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0H229.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V288H336V160H256c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16zm96-112h24c30.9 0 56 25.1 56 56s-25.1 56-56 56h-8v32c0 8.8-7.2 16-16 16s-16-7.2-16-16V448 368c0-8.8 7.2-16 16-16zm24 80c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8v48h8zm72-64c0-8.8 7.2-16 16-16h24c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H272c-8.8 0-16-7.2-16-16V368zm32 112h8c8.8 0 16-7.2 16-16V400c0-8.8-7.2-16-16-16h-8v96zm96-128h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H400v32h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H400v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V432 368c0-8.8 7.2-16 16-16z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "file-pen": { + "aliases": { + "names": [ + "file-edit" + ], + "unicodes": { + "composite": [ + "1f4dd" + ], + "secondary": [ + "10f31c" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "memo", + "pen", + "pencil", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f31c", + "label": "File Pen", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384V285.7l-86.8 86.8c-10.3 10.3-17.5 23.1-21 37.2l-18.7 74.9c-2.3 9.2-1.8 18.8 1.3 27.5H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zM549.8 235.7l14.4 14.4c15.6 15.6 15.6 40.9 0 56.6l-29.4 29.4-71-71 29.4-29.4c15.6-15.6 40.9-15.6 56.6 0zM311.9 417L441.1 287.8l71 71L382.9 487.9c-4.1 4.1-9.2 7-14.9 8.4l-60.1 15c-5.5 1.4-11.2-.2-15.2-4.2s-5.6-9.7-4.2-15.2l15-60.1c1.4-5.6 4.3-10.8 8.4-14.9z" + } + }, + "free": [ + "solid" + ] + }, + "file-powerpoint": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c4" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "display", + "document", + "keynote", + "presentation" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c4", + "label": "File Powerpoint", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM136 240h68c42 0 76 34 76 76s-34 76-76 76H160v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V368 264c0-13.3 10.7-24 24-24zm68 104c15.5 0 28-12.5 28-28s-12.5-28-28-28H160v56h44z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm72 208c-13.3 0-24 10.7-24 24V336v56c0 13.3 10.7 24 24 24s24-10.7 24-24V360h44c42 0 76-34 76-76s-34-76-76-76H136zm68 104H160V256h44c15.5 0 28 12.5 28 28s-12.5 28-28 28z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "file-prescription": { + "aliases": { + "unicodes": { + "secondary": [ + "10f572" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "drugs", + "medical", + "medicine", + "rx" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f572", + "label": "File Prescription", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM104 196h72c33.1 0 60 26.9 60 60c0 25.5-15.9 47.2-38.3 55.9l43 40.3 33.8-31c8.1-7.5 20.8-6.9 28.3 1.2s6.9 20.8-1.2 28.3L270 379.7l31.7 29.7c8.1 7.6 8.5 20.2 .9 28.3s-20.2 8.5-28.3 .9l-33.9-31.8-34.9 32c-8.1 7.5-20.8 6.9-28.3-1.2s-6.9-20.8 1.2-28.3l32.6-29.9-64.8-60.8c-.9-.8-1.6-1.7-2.3-2.6H124v44c0 11-9 20-20 20s-20-9-20-20V296 216c0-11 9-20 20-20zm72 80c11 0 20-9 20-20s-9-20-20-20H124v40h52z" + } + }, + "free": [ + "solid" + ] + }, + "file-shield": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antivirus", + "data", + "document", + "protect", + "safe", + "safety", + "secure" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4f0", + "label": "File Shield", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H224V128c0 17.7 14.3 32 32 32H384v47l-92.8 37.1c-21.3 8.5-35.2 29.1-35.2 52c0 56.6 18.9 148 94.2 208.3c-9 4.8-19.3 7.6-30.2 7.6H64c-35.3 0-64-28.7-64-64V64zm384 64H256V0L384 128zm39.1 97.7c5.7-2.3 12.1-2.3 17.8 0l120 48C570 277.4 576 286.2 576 296c0 63.3-25.9 168.8-134.8 214.2c-5.9 2.5-12.6 2.5-18.5 0C313.9 464.8 288 359.3 288 296c0-9.8 6-18.6 15.1-22.3l120-48zM527.4 312L432 273.8V461.7c68.2-33 91.5-99 95.4-149.7z" + } + }, + "free": [ + "solid" + ] + }, + "file-signature": { + "aliases": { + "unicodes": { + "secondary": [ + "10f573" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "John Hancock", + "contract", + "document", + "name" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f573", + "label": "File Signature", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V428.7c-2.7 1.1-5.4 2-8.2 2.7l-60.1 15c-3 .7-6 1.2-9 1.4c-.9 .1-1.8 .2-2.7 .2H240c-6.1 0-11.6-3.4-14.3-8.8l-8.8-17.7c-1.7-3.4-5.1-5.5-8.8-5.5s-7.2 2.1-8.8 5.5l-8.8 17.7c-2.9 5.9-9.2 9.4-15.7 8.8s-12.1-5.1-13.9-11.3L144 381l-9.8 32.8c-6.1 20.3-24.8 34.2-46 34.2H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h8.2c7.1 0 13.3-4.6 15.3-11.4l14.9-49.5c3.4-11.3 13.8-19.1 25.6-19.1s22.2 7.8 25.6 19.1l11.6 38.6c7.4-6.2 16.8-9.7 26.8-9.7c15.9 0 30.4 9 37.5 23.2l4.4 8.8h8.9c-3.1-8.8-3.7-18.4-1.4-27.8l15-60.1c2.8-11.3 8.6-21.5 16.8-29.7L384 203.6V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM549.8 139.7c-15.6-15.6-40.9-15.6-56.6 0l-29.4 29.4 71 71 29.4-29.4c15.6-15.6 15.6-40.9 0-56.6l-14.4-14.4zM311.9 321c-4.1 4.1-7 9.2-8.4 14.9l-15 60.1c-1.4 5.5 .2 11.2 4.2 15.2s9.7 5.6 15.2 4.2l60.1-15c5.6-1.4 10.8-4.3 14.9-8.4L512.1 262.7l-71-71L311.9 321z" + } + }, + "free": [ + "solid" + ] + }, + "file-video": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c8" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "m4v", + "movie", + "mp4", + "play" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c8", + "label": "File Video", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM64 288c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V288zM300.9 397.9L256 368V304l44.9-29.9c2-1.3 4.4-2.1 6.8-2.1c6.8 0 12.3 5.5 12.3 12.3V387.7c0 6.8-5.5 12.3-12.3 12.3c-2.4 0-4.8-.7-6.8-2.1z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 464c8.8 0 16-7.2 16-16V160H256c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320zM0 64C0 28.7 28.7 0 64 0H229.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM80 288c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32v16l44.9-29.9c2-1.3 4.4-2.1 6.8-2.1c6.8 0 12.3 5.5 12.3 12.3V387.7c0 6.8-5.5 12.3-12.3 12.3c-2.4 0-4.8-.7-6.8-2.1L240 368v16c0 17.7-14.3 32-32 32H112c-17.7 0-32-14.3-32-32V288z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "file-waveform": { + "aliases": { + "names": [ + "file-medical-alt" + ], + "unicodes": { + "secondary": [ + "10f478" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "health", + "history", + "prescription", + "record" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f478", + "label": "File Waveform", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V288H112c6.1 0 11.6 3.4 14.3 8.8L144 332.2l49.7-99.4c2.7-5.4 8.2-8.8 14.3-8.8s11.6 3.4 14.3 8.8L249.9 288H320c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-6.1 0-11.6-3.4-14.3-8.8L208 275.8l-49.7 99.4c-2.7 5.4-8.3 8.8-14.3 8.8s-11.6-3.4-14.3-8.8L102.1 320H0V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0z" + } + }, + "free": [ + "solid" + ] + }, + "file-word": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1c2" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "edit", + "page", + "text", + "writing" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c2", + "label": "File Word", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM111 257.1l26.8 89.2 31.6-90.3c3.4-9.6 12.5-16.1 22.7-16.1s19.3 6.4 22.7 16.1l31.6 90.3L273 257.1c3.8-12.7 17.2-19.9 29.9-16.1s19.9 17.2 16.1 29.9l-48 160c-3 10-12.1 16.9-22.4 17.1s-19.8-6.2-23.2-16.1L192 336.6l-33.3 95.3c-3.4 9.8-12.8 16.3-23.2 16.1s-19.5-7.1-22.4-17.1l-48-160c-3.8-12.7 3.4-26.1 16.1-29.9s26.1 3.4 29.9 16.1z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M48 448V64c0-8.8 7.2-16 16-16H224v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm55 241.1c-3.8-12.7-17.2-19.9-29.9-16.1s-19.9 17.2-16.1 29.9l48 160c3 10.2 12.4 17.1 23 17.1s19.9-7 23-17.1l25-83.4 25 83.4c3 10.2 12.4 17.1 23 17.1s19.9-7 23-17.1l48-160c3.8-12.7-3.4-26.1-16.1-29.9s-26.1 3.4-29.9 16.1l-25 83.4-25-83.4c-3-10.2-12.4-17.1-23-17.1s-19.9 7-23 17.1l-25 83.4-25-83.4z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "file-zipper": { + "aliases": { + "names": [ + "file-archive" + ], + "unicodes": { + "secondary": [ + "10f1c6" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + ".zip", + "bundle", + "compress", + "compression", + "download", + "zip" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1c6", + "label": "File Zipper", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V160H256c-17.7 0-32-14.3-32-32V0H64zM256 0V128H384L256 0zM96 48c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zm-6.3 71.8c3.7-14 16.4-23.8 30.9-23.8h14.8c14.5 0 27.2 9.7 30.9 23.8l23.5 88.2c1.4 5.4 2.1 10.9 2.1 16.4c0 35.2-28.8 63.7-64 63.7s-64-28.5-64-63.7c0-5.5 .7-11.1 2.1-16.4l23.5-88.2zM112 336c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H112z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 464c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16h48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16h48v80c0 17.7 14.3 32 32 32h80V448c0 8.8-7.2 16-16 16H64zM64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V154.5c0-17-6.7-33.3-18.7-45.3L274.7 18.7C262.7 6.7 246.5 0 229.5 0H64zm48 112c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H128c-8.8 0-16 7.2-16 16zm0 64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H128c-8.8 0-16 7.2-16 16zm-6.3 71.8L82.1 335.9c-1.4 5.4-2.1 10.9-2.1 16.4c0 35.2 28.8 63.7 64 63.7s64-28.5 64-63.7c0-5.5-.7-11.1-2.2-16.4l-23.5-88.2c-3.7-14-16.4-23.8-30.9-23.8H136.6c-14.5 0-27.2 9.7-30.9 23.8zM128 336h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H128c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "fill": { + "aliases": { + "unicodes": { + "secondary": [ + "10f575" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bucket", + "color", + "paint", + "paint bucket" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f575", + "label": "Fill", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M84.6 9.4C72.1-3.1 51.9-3.1 39.4 9.4s-12.5 32.8 0 45.3L120.7 136 28.6 228.1c-37.5 37.5-37.5 98.3 0 135.8L146.1 481.4c37.5 37.5 98.3 37.5 135.8 0L472.3 290.9c28.1-28.1 28.1-73.7 0-101.8L320.9 37.7c-28.1-28.1-73.7-28.1-101.8 0L166 90.7 84.6 9.4zM166 181.3l49.4 49.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L211.3 136l53.1-53.1c3.1-3.1 8.2-3.1 11.3 0L427.1 234.3c3.1 3.1 3.1 8.2 0 11.3L384.7 288H65.5c1.4-5.4 4.2-10.4 8.4-14.6L166 181.3z" + } + }, + "free": [ + "solid" + ] + }, + "fill-drip": { + "aliases": { + "unicodes": { + "secondary": [ + "10f576" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bucket", + "color", + "drop", + "paint", + "paint bucket", + "spill" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f576", + "label": "Fill Drip", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M41.4 9.4C53.9-3.1 74.1-3.1 86.6 9.4L168 90.7l53.1-53.1c28.1-28.1 73.7-28.1 101.8 0L474.3 189.1c28.1 28.1 28.1 73.7 0 101.8L283.9 481.4c-37.5 37.5-98.3 37.5-135.8 0L30.6 363.9c-37.5-37.5-37.5-98.3 0-135.8L122.7 136 41.4 54.6c-12.5-12.5-12.5-32.8 0-45.3zm176 221.3L168 181.3 75.9 273.4c-4.2 4.2-7 9.3-8.4 14.6H386.7l42.3-42.3c3.1-3.1 3.1-8.2 0-11.3L277.7 82.9c-3.1-3.1-8.2-3.1-11.3 0L213.3 136l49.4 49.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0zM512 512c-35.3 0-64-28.7-64-64c0-25.2 32.6-79.6 51.2-108.7c6-9.4 19.5-9.4 25.5 0C543.4 368.4 576 422.8 576 448c0 35.3-28.7 64-64 64z" + } + }, + "free": [ + "solid" + ] + }, + "film": { + "aliases": { + "unicodes": { + "composite": [ + "1f39e" + ], + "secondary": [ + "10f008" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cinema", + "film", + "film frames", + "frames", + "movie", + "strip", + "video" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f008", + "label": "Film", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM48 368v32c0 8.8 7.2 16 16 16H96c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zm368-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H416zM48 240v32c0 8.8 7.2 16 16 16H96c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zm368-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H416zM48 112v32c0 8.8 7.2 16 16 16H96c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zM416 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H416zM160 128v64c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H192c-17.7 0-32 14.3-32 32zm32 160c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V320c0-17.7-14.3-32-32-32H192z" + } + }, + "free": [ + "solid" + ] + }, + "filter": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0b0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "funnel", + "options", + "separate", + "sort" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0b0", + "label": "Filter", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321821, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M3.9 54.9C10.5 40.9 24.5 32 40 32H472c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L320 320.9V448c0 12.1-6.8 23.2-17.7 28.6s-23.8 4.3-33.5-3l-64-48c-8.1-6-12.8-15.5-12.8-25.6V320.9L9 97.3C-.7 85.4-2.8 68.8 3.9 54.9z" + } + }, + "free": [ + "solid" + ] + }, + "filter-circle-dollar": { + "aliases": { + "names": [ + "funnel-dollar" + ], + "unicodes": { + "secondary": [ + "10f662" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "filter", + "money", + "options", + "separate", + "sort" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f662", + "label": "Filter Circle Dollar", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321821, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M3.9 22.9C10.5 8.9 24.5 0 40 0H472c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L396.4 195.6C316.2 212.1 256 283 256 368c0 27.4 6.3 53.4 17.5 76.5c-1.6-.8-3.2-1.8-4.7-2.9l-64-48c-8.1-6-12.8-15.5-12.8-25.6V288.9L9 65.3C-.7 53.4-2.8 36.8 3.9 22.9zM576 368c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zM408.8 335.4c.6-.9 1.8-2.1 4.2-3.4c5.1-2.7 12.5-4.1 18.7-4c8.2 .1 17.1 1.8 26.4 4.1c8.6 2.1 17.3-3.1 19.4-11.7s-3.1-17.3-11.7-19.4c-5.6-1.4-11.6-2.7-17.9-3.7V288c0-8.8-7.2-16-16-16s-16 7.2-16 16v9.5c-6.1 1.2-12.3 3.2-18 6.3c-11.8 6.3-23 18.4-21.8 37.2c1 16 11.7 25.3 21.6 30.7c8.8 4.7 19.7 7.8 28.6 10.3l1.8 .5c10.3 2.9 17.9 5.2 23.2 8.3c4.5 2.7 4.7 4.2 4.7 5.6c.1 2.4-.5 3.7-1 4.5c-.6 1-1.8 2.2-4 3.3c-4.7 2.5-11.8 3.8-18.5 3.6c-9.5-.3-18.5-3.1-29.9-6.8c-1.9-.6-3.8-1.2-5.8-1.8c-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20c1.6 .5 3.3 1 5 1.6l0 0 0 0c7 2.3 15.1 4.8 23.7 6.6v11.4c0 8.8 7.2 16 16 16s16-7.2 16-16V438.7c6.2-1.1 12.5-3.1 18.3-6.2c12.1-6.5 22.3-18.7 21.7-36.9c-.5-16.2-10.3-26.3-20.5-32.3c-9.4-5.6-21.2-8.9-30.5-11.5l-.2 0c-10.4-2.9-18.3-5.2-23.9-8.2c-4.8-2.6-4.8-4-4.8-4.5l0-.1c-.1-1.9 .3-2.9 .8-3.6z" + } + }, + "free": [ + "solid" + ] + }, + "filter-circle-xmark": { + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "funnel", + "options", + "remove", + "separate", + "sort" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e17b", + "label": "Filter Circle Xmark", + "voted": true, + "svg": { + "solid": { + "last_modified": 1660321821, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M3.9 22.9C10.5 8.9 24.5 0 40 0H472c15.5 0 29.5 8.9 36.1 22.9s4.6 30.5-5.2 42.5L396.4 195.6C316.2 212.1 256 283 256 368c0 27.4 6.3 53.4 17.5 76.5c-1.6-.8-3.2-1.8-4.7-2.9l-64-48c-8.1-6-12.8-15.5-12.8-25.6V288.9L9 65.3C-.7 53.4-2.8 36.8 3.9 22.9zM432 512c-79.5 0-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144s-64.5 144-144 144zm59.3-180.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L409.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L432 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368l36.7-36.7z" + } + }, + "free": [ + "solid" + ] + }, + "fingerprint": { + "aliases": { + "unicodes": { + "secondary": [ + "10f577" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "human", + "id", + "identification", + "lock", + "smudge", + "touch", + "unique", + "unlock" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f577", + "label": "Fingerprint", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M454.4 93c7.3 8.8 6.1 21.6-2 29.7c-10.6 10.6-28.2 8.6-38-2.7C376.2 75.9 319.9 48 257 48C142.1 48 49 141.1 49 256v24.9c0 6.1-.2 12.2-.6 18.3C47.7 311.2 37.6 320 25.6 320C11.1 320 .1 307 .7 292.5c.2-3.9 .3-7.7 .3-11.6V256C1 114.6 115.6 0 257 0c79.4 0 150.4 36.2 197.4 93zm19.3 89.6c13.1-6.5 29-.2 32.4 14.1c4.5 19.1 6.9 39 6.9 59.4v24.9c0 5.4-.1 10.9-.2 16.3C512.6 310 502 320 489.2 320c-13.7 0-24.6-11.5-24.4-25.3c.1-4.6 .1-9.2 .1-13.8V256c0-15.1-1.6-29.8-4.6-43.9c-2.5-11.8 2.5-24.2 13.3-29.6zM257 80c97.2 0 176 78.8 176 176v24.9c0 27.7-1.7 55.3-5 82.7c-1.4 11.7-11.5 20.3-23.3 20.3c-14.7 0-25.9-13.2-24.2-27.8c3-24.9 4.4-50.1 4.4-75.3V256c0-70.7-57.3-128-128-128c-11.6 0-22.8 1.5-33.4 4.4c-10.6 2.9-22.3 .4-29.4-7.9c-10.4-12.1-6.9-30.9 8.3-35.9C219.6 83 238 80 257 80zM151.7 148.7c8.2 9.6 7.5 23.8 .2 34.2C137.5 203.6 129 228.8 129 256v24.9c0 28.9-3.3 57.7-9.7 85.8C116.9 377 107.6 384 97.1 384c-15.9 0-27.3-15.6-23.9-31.1c5.2-23.6 7.8-47.7 7.8-71.9V256c0-40.6 13.7-78 36.8-107.7c8.5-11 24.8-10.2 33.9 .4zM257 160c53 0 96 43 96 96v24.9c0 39.7-3.9 79.3-11.6 118.1c-2 10-10.8 17-21 17c-14.2 0-24.5-13.3-21.8-27.2c6.9-35.5 10.4-71.6 10.4-107.9V256c0-28.7-23.3-52-52-52s-52 23.3-52 52v24.9c0 40.5-5.3 80.7-15.9 119.7c-2.5 9.2-10.9 15.4-20.4 15.4c-14.8 0-25.3-14.6-21.5-29c9.1-34.6 13.8-70.2 13.8-106.1V256c0-53 43-96 96-96zm24 96v24.9c0 65.8-12.1 131-35.7 192.4l-5.9 15.3c-4.8 12.4-18.6 18.5-31 13.8s-18.5-18.6-13.8-31l5.9-15.3C222 400.2 233 340.8 233 280.9V256c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + }, + "free": [ + "solid" + ] + }, + "fire": { + "aliases": { + "unicodes": { + "composite": [ + "1f525" + ], + "secondary": [ + "10f06d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.6.0", + "5.6.3", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "caliente", + "fire", + "flame", + "heat", + "hot", + "popular", + "tool" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f06d", + "label": "Fire", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M159.3 5.4c7.8-7.3 19.9-7.2 27.7 .1c27.6 25.9 53.5 53.8 77.7 84c11-14.4 23.5-30.1 37-42.9c7.9-7.4 20.1-7.4 28 .1c34.6 33 63.9 76.6 84.5 118c20.3 40.8 33.8 82.5 33.8 111.9C448 404.2 348.2 512 224 512C98.4 512 0 404.1 0 276.5c0-38.4 17.8-85.3 45.4-131.7C73.3 97.7 112.7 48.6 159.3 5.4zM225.7 416c25.3 0 47.7-7 68.8-21c42.1-29.4 53.4-88.2 28.1-134.4c-4.5-9-16-9.6-22.5-2l-25.2 29.3c-6.6 7.6-18.5 7.4-24.7-.5c-16.5-21-46-58.5-62.8-79.8c-6.3-8-18.3-8.1-24.7-.1c-33.8 42.5-50.8 69.3-50.8 99.4C112 375.4 162.6 416 225.7 416z" + } + }, + "free": [ + "solid" + ] + }, + "fire-burner": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cook", + "fire", + "flame", + "kitchen", + "stove" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4f1", + "label": "Fire Burner", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M293.5 3.8c19.7 17.8 38.2 37 55.5 57.7c7.9-9.9 16.8-20.7 26.5-29.5c5.6-5.1 14.4-5.1 20 0c24.7 22.7 45.6 52.7 60.4 81.1c14.5 28 24.2 58.8 24.2 79C480 280 408.7 352 320 352c-89.7 0-160-72.1-160-159.8c0-26.4 12.7-60.7 32.4-92.6c20-32.4 48.1-66.1 81.4-95.8c2.8-2.5 6.4-3.8 10-3.7c3.5 0 7 1.3 9.8 3.8zM370 273c30-21 38-63 20-96c-2-4-4-8-7-12l-36 42s-58-74-62-79c-30 37-45 58-45 82c0 49 36 78 81 78c18 0 34-5 49-15zM32 288c0-17.7 14.3-32 32-32H96c17.7 0 32 14.3 32 32s-14.3 32-32 32v64H544V320c-17.7 0-32-14.3-32-32s14.3-32 32-32h32c17.7 0 32 14.3 32 32v96c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32V288zM320 480a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm160-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM192 480a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "fire-extinguisher": { + "aliases": { + "unicodes": { + "composite": [ + "1f9ef" + ], + "secondary": [ + "10f134" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "caliente", + "extinguish", + "fire", + "fire extinguisher", + "fire fighter", + "flame", + "heat", + "hot", + "quench", + "rescue" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f134", + "label": "Fire Extinguisher", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M500.3 7.3C507.7 13.3 512 22.4 512 32v96c0 9.6-4.3 18.7-11.7 24.7s-17.2 8.5-26.6 6.6l-160-32C301.5 124.9 292 115.7 289 104H224v34.8c37.8 18 64 56.5 64 101.2V384H64V240c0-44.7 26.2-83.2 64-101.2V110c-36.2 11.1-66 36.9-82.3 70.5c-5.8 11.9-20.2 16.9-32.1 11.1S-3.3 171.4 2.5 159.5C26.7 109.8 72.7 72.6 128 60.4V32c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V56h65c3-11.7 12.5-20.9 24.7-23.4l160-32c9.4-1.9 19.1 .6 26.6 6.6zM288 416v32c0 35.3-28.7 64-64 64H128c-35.3 0-64-28.7-64-64V416H288zM176 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + }, + "free": [ + "solid" + ] + }, + "fire-flame-curved": { + "aliases": { + "names": [ + "fire-alt" + ], + "unicodes": { + "secondary": [ + "10f7e4" + ] + } + }, + "changes": [ + "5.6.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "caliente", + "flame", + "heat", + "hot", + "popular" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7e4", + "label": "Fire Flame Curved", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M153.6 29.9l16-21.3C173.6 3.2 180 0 186.7 0C198.4 0 208 9.6 208 21.3V43.5c0 13.1 5.4 25.7 14.9 34.7L307.6 159C356.4 205.6 384 270.2 384 337.7C384 434 306 512 209.7 512H192C86 512 0 426 0 320v-3.8c0-48.8 19.4-95.6 53.9-130.1l3.5-3.5c4.2-4.2 10-6.6 16-6.6C85.9 176 96 186.1 96 198.6V288c0 35.3 28.7 64 64 64s64-28.7 64-64v-3.9c0-18-7.2-35.3-19.9-48l-38.6-38.6c-24-24-37.5-56.7-37.5-90.7c0-27.7 9-54.8 25.6-76.9z" + } + }, + "free": [ + "solid" + ] + }, + "fire-flame-simple": { + "aliases": { + "names": [ + "burn" + ], + "unicodes": { + "secondary": [ + "10f46a" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caliente", + "energy", + "fire", + "flame", + "gas", + "heat", + "hot" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f46a", + "label": "Fire Flame Simple", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M372.5 256.5l-.7-1.9C337.8 160.8 282 76.5 209.1 8.5l-3.3-3C202.1 2 197.1 0 192 0s-10.1 2-13.8 5.5l-3.3 3C102 76.5 46.2 160.8 12.2 254.6l-.7 1.9C3.9 277.3 0 299.4 0 321.6C0 426.7 86.8 512 192 512s192-85.3 192-190.4c0-22.2-3.9-44.2-11.5-65.1zm-90.8 49.5c4.1 9.3 6.2 19.4 6.2 29.5c0 53-43 96.5-96 96.5s-96-43.5-96-96.5c0-10.1 2.1-20.3 6.2-29.5l1.9-4.3c15.8-35.4 37.9-67.7 65.3-95.1l8.9-8.9c3.6-3.6 8.5-5.6 13.6-5.6s10 2 13.6 5.6l8.9 8.9c27.4 27.4 49.6 59.7 65.3 95.1l1.9 4.3z" + } + }, + "free": [ + "solid" + ] + }, + "firefox": { + "changes": [ + "4.4.0", + "5.0.0", + "5.0.1", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f269", + "label": "Firefox", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M503.52,241.48c-.12-1.56-.24-3.12-.24-4.68v-.12l-.36-4.68v-.12a245.86,245.86,0,0,0-7.32-41.15c0-.12,0-.12-.12-.24l-1.08-4c-.12-.24-.12-.48-.24-.6-.36-1.2-.72-2.52-1.08-3.72-.12-.24-.12-.6-.24-.84-.36-1.2-.72-2.4-1.08-3.48-.12-.36-.24-.6-.36-1-.36-1.2-.72-2.28-1.2-3.48l-.36-1.08c-.36-1.08-.84-2.28-1.2-3.36a8.27,8.27,0,0,0-.36-1c-.48-1.08-.84-2.28-1.32-3.36-.12-.24-.24-.6-.36-.84-.48-1.2-1-2.28-1.44-3.48,0-.12-.12-.24-.12-.36-1.56-3.84-3.24-7.68-5-11.4l-.36-.72c-.48-1-.84-1.8-1.32-2.64-.24-.48-.48-1.08-.72-1.56-.36-.84-.84-1.56-1.2-2.4-.36-.6-.6-1.2-1-1.8s-.84-1.44-1.2-2.28c-.36-.6-.72-1.32-1.08-1.92s-.84-1.44-1.2-2.16a18.07,18.07,0,0,0-1.2-2c-.36-.72-.84-1.32-1.2-2s-.84-1.32-1.2-2-.84-1.32-1.2-1.92-.84-1.44-1.32-2.16a15.63,15.63,0,0,0-1.2-1.8L463.2,119a15.63,15.63,0,0,0-1.2-1.8c-.48-.72-1.08-1.56-1.56-2.28-.36-.48-.72-1.08-1.08-1.56l-1.8-2.52c-.36-.48-.6-.84-1-1.32-1-1.32-1.8-2.52-2.76-3.72a248.76,248.76,0,0,0-23.51-26.64A186.82,186.82,0,0,0,412,62.46c-4-3.48-8.16-6.72-12.48-9.84a162.49,162.49,0,0,0-24.6-15.12c-2.4-1.32-4.8-2.52-7.2-3.72a254,254,0,0,0-55.43-19.56c-1.92-.36-3.84-.84-5.64-1.2h-.12c-1-.12-1.8-.36-2.76-.48a236.35,236.35,0,0,0-38-4H255.14a234.62,234.62,0,0,0-45.48,5c-33.59,7.08-63.23,21.24-82.91,39-1.08,1-1.92,1.68-2.4,2.16l-.48.48H124l-.12.12.12-.12a.12.12,0,0,0,.12-.12l-.12.12a.42.42,0,0,1,.24-.12c14.64-8.76,34.92-16,49.44-19.56l5.88-1.44c.36-.12.84-.12,1.2-.24,1.68-.36,3.36-.72,5.16-1.08.24,0,.6-.12.84-.12C250.94,20.94,319.34,40.14,367,85.61a171.49,171.49,0,0,1,26.88,32.76c30.36,49.2,27.48,111.11,3.84,147.59-34.44,53-111.35,71.27-159,24.84a84.19,84.19,0,0,1-25.56-59,74.05,74.05,0,0,1,6.24-31c1.68-3.84,13.08-25.67,18.24-24.59-13.08-2.76-37.55,2.64-54.71,28.19-15.36,22.92-14.52,58.2-5,83.28a132.85,132.85,0,0,1-12.12-39.24c-12.24-82.55,43.31-153,94.31-170.51-27.48-24-96.47-22.31-147.71,15.36-29.88,22-51.23,53.16-62.51,90.36,1.68-20.88,9.6-52.08,25.8-83.88-17.16,8.88-39,37-49.8,62.88-15.6,37.43-21,82.19-16.08,124.79.36,3.24.72,6.36,1.08,9.6,19.92,117.11,122,206.38,244.78,206.38C392.77,503.42,504,392.19,504,255,503.88,250.48,503.76,245.92,503.52,241.48Z" + } + }, + "free": [ + "brands" + ] + }, + "firefox-browser": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "styles": [ + "brands" + ], + "unicode": "e007", + "label": "Firefox Browser", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M130.22 127.548C130.38 127.558 130.3 127.558 130.22 127.548V127.548ZM481.64 172.898C471.03 147.398 449.56 119.898 432.7 111.168C446.42 138.058 454.37 165.048 457.4 185.168C457.405 185.306 457.422 185.443 457.45 185.578C429.87 116.828 383.098 89.1089 344.9 28.7479C329.908 5.05792 333.976 3.51792 331.82 4.08792L331.7 4.15792C284.99 30.1109 256.365 82.5289 249.12 126.898C232.503 127.771 216.219 131.895 201.19 139.035C199.838 139.649 198.736 140.706 198.066 142.031C197.396 143.356 197.199 144.87 197.506 146.323C197.7 147.162 198.068 147.951 198.586 148.639C199.103 149.327 199.76 149.899 200.512 150.318C201.264 150.737 202.096 150.993 202.954 151.071C203.811 151.148 204.676 151.045 205.491 150.768L206.011 150.558C221.511 143.255 238.408 139.393 255.541 139.238C318.369 138.669 352.698 183.262 363.161 201.528C350.161 192.378 326.811 183.338 304.341 187.248C392.081 231.108 368.541 381.784 246.951 376.448C187.487 373.838 149.881 325.467 146.421 285.648C146.421 285.648 157.671 243.698 227.041 243.698C234.541 243.698 255.971 222.778 256.371 216.698C256.281 214.698 213.836 197.822 197.281 181.518C188.434 172.805 184.229 168.611 180.511 165.458C178.499 163.75 176.392 162.158 174.201 160.688C168.638 141.231 168.399 120.638 173.51 101.058C148.45 112.468 128.96 130.508 114.8 146.428H114.68C105.01 134.178 105.68 93.7779 106.25 85.3479C106.13 84.8179 99.022 89.0159 98.1 89.6579C89.5342 95.7103 81.5528 102.55 74.26 110.088C57.969 126.688 30.128 160.242 18.76 211.318C14.224 231.701 12 255.739 12 263.618C12 398.318 121.21 507.508 255.92 507.508C376.56 507.508 478.939 420.281 496.35 304.888C507.922 228.192 481.64 173.82 481.64 172.898Z" + } + }, + "free": [ + "brands" + ] + }, + "first-order": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2b0", + "label": "First Order", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M12.9 229.2c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4h-.2zM224 96.6c-7.1 0-14.6.6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z" + } + }, + "free": [ + "brands" + ] + }, + "first-order-alt": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f50a", + "label": "Alternate First Order", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 488.21C115.34 496.21 7.79 388.66 7.79 256S115.34 15.79 248 15.79 488.21 123.34 488.21 256 380.66 496.21 248 496.21zm0-459.92C126.66 36.29 28.29 134.66 28.29 256S126.66 475.71 248 475.71 467.71 377.34 467.71 256 369.34 36.29 248 36.29zm0 431.22c-116.81 0-211.51-94.69-211.51-211.51S131.19 44.49 248 44.49 459.51 139.19 459.51 256 364.81 467.51 248 467.51zm186.23-162.98a191.613 191.613 0 0 1-20.13 48.69l-74.13-35.88 61.48 54.82a193.515 193.515 0 0 1-37.2 37.29l-54.8-61.57 35.88 74.27a190.944 190.944 0 0 1-48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.365 191.365 0 0 1-48.65-20.2l35.93-74.34-54.87 61.64a193.85 193.85 0 0 1-37.22-37.28l61.59-54.9-74.26 35.93a191.638 191.638 0 0 1-20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.726 191.726 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.85 193.85 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.49 191.49 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71.62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.13 193.13 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.515 191.515 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z" + } + }, + "free": [ + "brands" + ] + }, + "firstdraft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a1", + "label": "firstdraft", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z" + } + }, + "free": [ + "brands" + ] + }, + "fish": { + "aliases": { + "unicodes": { + "composite": [ + "1f41f" + ], + "secondary": [ + "10f578" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pisces", + "fauna", + "fish", + "gold", + "seafood", + "swimming", + "zodiac" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f578", + "label": "Fish", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M180.5 141.5C219.7 108.5 272.6 80 336 80s116.3 28.5 155.5 61.5c39.1 33 66.9 72.4 81 99.8c4.7 9.2 4.7 20.1 0 29.3c-14.1 27.4-41.9 66.8-81 99.8C452.3 403.5 399.4 432 336 432s-116.3-28.5-155.5-61.5c-16.2-13.7-30.5-28.5-42.7-43.1L48.1 379.6c-12.5 7.3-28.4 5.3-38.7-4.9S-3 348.7 4.2 336.1L50 256 4.2 175.9c-7.2-12.6-5-28.4 5.3-38.6s26.1-12.2 38.7-4.9l89.7 52.3c12.2-14.6 26.5-29.4 42.7-43.1zM448 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + }, + "free": [ + "solid" + ] + }, + "fish-fins": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fish", + "fishery", + "pisces", + "seafood" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4f2", + "label": "Fish Fins", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M275.2 38.4c-10.6-8-25-8.5-36.3-1.5S222 57.3 224.6 70.3l9.7 48.6c-19.4 9-36.9 19.9-52.4 31.5c-15.3 11.5-29 23.9-40.7 36.3L48.1 132.4c-12.5-7.3-28.4-5.3-38.7 4.9S-3 163.3 4.2 175.9L50 256 4.2 336.1c-7.2 12.6-5 28.4 5.3 38.6s26.1 12.2 38.7 4.9l93.1-54.3c11.8 12.3 25.4 24.8 40.7 36.3c15.5 11.6 33 22.5 52.4 31.5l-9.7 48.6c-2.6 13 3.1 26.3 14.3 33.3s25.6 6.5 36.3-1.5l77.6-58.2c54.9-4 101.5-27 137.2-53.8c39.2-29.4 67.2-64.7 81.6-89.5c5.8-9.9 5.8-22.2 0-32.1c-14.4-24.8-42.5-60.1-81.6-89.5c-35.8-26.8-82.3-49.8-137.2-53.8L275.2 38.4zM384 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + }, + "free": [ + "solid" + ] + }, + "flag": { + "aliases": { + "unicodes": { + "composite": [ + "1f3f4", + "f11d" + ], + "secondary": [ + "10f024" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "black flag", + "country", + "notice", + "notification", + "notify", + "pole", + "report", + "symbol", + "waving" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f024", + "label": "Flag", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32V64 368 480c0 17.7 14.3 32 32 32s32-14.3 32-32V352l64.3-16.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4l34.7-13c12.5-4.7 20.8-16.6 20.8-30V66.1c0-23-24.2-38-44.8-27.7l-9.6 4.8c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L64 48V32z" + }, + "regular": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 24C48 10.7 37.3 0 24 0S0 10.7 0 24V64 350.5 400v88c0 13.3 10.7 24 24 24s24-10.7 24-24V388l80.3-20.1c41.1-10.3 84.6-5.5 122.5 13.4c44.2 22.1 95.5 24.8 141.7 7.4l34.7-13c12.5-4.7 20.8-16.6 20.8-30V66.1c0-23-24.2-38-44.8-27.7l-9.6 4.8c-46.3 23.2-100.8 23.2-147.1 0c-35.1-17.6-75.4-22-113.5-12.5L48 52V24zm0 77.5l96.6-24.2c27-6.7 55.5-3.6 80.4 8.8c54.9 27.4 118.7 29.7 175 6.8V334.7l-24.4 9.1c-33.7 12.6-71.2 10.7-103.4-5.4c-48.2-24.1-103.3-30.1-155.6-17.1L48 338.5v-237z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "flag-checkered": { + "aliases": { + "unicodes": { + "composite": [ + "1f3c1" + ], + "secondary": [ + "10f11e" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.7.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checkered", + "chequered", + "chequered flag", + "finish", + "notice", + "notification", + "notify", + "pole", + "racing", + "report", + "start", + "symbol", + "win" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f11e", + "label": "Flag Checkered", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 0C49.7 0 64 14.3 64 32V48l69-17.2c38.1-9.5 78.3-5.1 113.5 12.5c46.3 23.2 100.8 23.2 147.1 0l9.6-4.8C423.8 28.1 448 43.1 448 66.1V345.8c0 13.3-8.3 25.3-20.8 30l-34.7 13c-46.2 17.3-97.6 14.6-141.7-7.4c-37.9-19-81.4-23.7-122.5-13.4L64 384v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V400 334 64 32C0 14.3 14.3 0 32 0zM64 187.1l64-13.9v65.5L64 252.6V318l48.8-12.2c5.1-1.3 10.1-2.4 15.2-3.3V238.7l38.9-8.4c8.3-1.8 16.7-2.5 25.1-2.1l0-64c13.6 .4 27.2 2.6 40.4 6.4l23.6 6.9v66.7l-41.7-12.3c-7.3-2.1-14.8-3.4-22.3-3.8v71.4c21.8 1.9 43.3 6.7 64 14.4V244.2l22.7 6.7c13.5 4 27.3 6.4 41.3 7.4V194c-7.8-.8-15.6-2.3-23.2-4.5l-40.8-12v-62c-13-3.8-25.8-8.8-38.2-15c-8.2-4.1-16.9-7-25.8-8.8v72.4c-13-.4-26 .8-38.7 3.6L128 173.2V98L64 114v73.1zM320 335.7c16.8 1.5 33.9-.7 50-6.8l14-5.2V251.9l-7.9 1.8c-18.4 4.3-37.3 5.7-56.1 4.5v77.4zm64-149.4V115.4c-20.9 6.1-42.4 9.1-64 9.1V194c13.9 1.4 28 .5 41.7-2.6l22.3-5.2z" + } + }, + "free": [ + "solid" + ] + }, + "flag-usa": { + "aliases": { + "unicodes": { + "secondary": [ + "10f74d" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "betsy ross", + "country", + "fla", + "flag: United States", + "old glory", + "stars", + "stripes", + "symbol" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f74d", + "label": "Flag Usa", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 0C49.7 0 64 14.3 64 32V48l69-17.2c38.1-9.5 78.3-5.1 113.5 12.5c46.3 23.2 100.8 23.2 147.1 0l9.6-4.8C423.8 28.1 448 43.1 448 66.1v36.1l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-20.3-9-41.8-14.7-63.6-16.9v32.2c17.4 2.1 34.4 6.7 50.6 13.9l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4L448 136.3v62l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-40.2-17.9-85-22.5-128.1-13.3L64 203.1v32.7l70.2-15.1c36.4-7.8 74.3-3.9 108.4 11.3l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4L448 232.3v62l-44.7 16.2c-42.8 15.6-90 13.9-131.6-4.6l-16.1-7.2c-40.2-17.9-85-22.5-128.1-13.3L64 299.1v32.7l70.2-15.1c36.4-7.8 74.3-3.9 108.4 11.3l16.1 7.2c49.2 21.9 105 23.8 155.6 5.4L448 328.3v33.5c0 13.3-8.3 25.3-20.8 30l-34.7 13c-46.2 17.3-97.6 14.6-141.7-7.4c-37.9-19-81.4-23.7-122.5-13.4L64 400v80c0 17.7-14.3 32-32 32s-32-14.3-32-32V416 345.5 312.8 249.5 216.8 153.5 120.8 64 32C0 14.3 14.3 0 32 0zm80 96A16 16 0 1 0 80 96a16 16 0 1 0 32 0zm32 0a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm-32 48a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm32 0a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + }, + "free": [ + "solid" + ] + }, + "flask": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0c3" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beaker", + "experimental", + "labs", + "science" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c3", + "label": "Flask", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M288 0H160 128C110.3 0 96 14.3 96 32s14.3 32 32 32V196.8c0 11.8-3.3 23.5-9.5 33.5L10.3 406.2C3.6 417.2 0 429.7 0 442.6C0 480.9 31.1 512 69.4 512H378.6c38.3 0 69.4-31.1 69.4-69.4c0-12.8-3.6-25.4-10.3-36.4L329.5 230.4c-6.2-10.1-9.5-21.7-9.5-33.5V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H288zM192 196.8V64h64V196.8c0 23.7 6.6 46.9 19 67.1L309.5 320h-171L173 263.9c12.4-20.2 19-43.4 19-67.1z" + } + }, + "free": [ + "solid" + ] + }, + "flask-vial": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "chemistry", + "lab", + "laboratory", + "test", + "test tube" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4f3", + "label": "Flask Vial", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M175 389.4c-9.8 16-15 34.3-15 53.1c-10 3.5-20.8 5.5-32 5.5c-53 0-96-43-96-96V64C14.3 64 0 49.7 0 32S14.3 0 32 0H96h64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32V309.9l-49 79.6zM96 64v96h64V64H96zM352 0H480h32c17.7 0 32 14.3 32 32s-14.3 32-32 32V214.9L629.7 406.2c6.7 10.9 10.3 23.5 10.3 36.4c0 38.3-31.1 69.4-69.4 69.4H261.4c-38.3 0-69.4-31.1-69.4-69.4c0-12.8 3.6-25.4 10.3-36.4L320 214.9V64c-17.7 0-32-14.3-32-32s14.3-32 32-32h32zm32 64V224c0 5.9-1.6 11.7-4.7 16.8L330.5 320h171l-48.8-79.2c-3.1-5-4.7-10.8-4.7-16.8V64H384z" + } + }, + "free": [ + "solid" + ] + }, + "flickr": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f16e", + "label": "Flickr", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z" + } + }, + "free": [ + "brands" + ] + }, + "flipboard": { + "changes": [ + "5.0.5", + "5.0.9" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f44d", + "label": "Flipboard", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z" + } + }, + "free": [ + "brands" + ] + }, + "floppy-disk": { + "aliases": { + "names": [ + "save" + ], + "unicodes": { + "composite": [ + "1f4be", + "1f5aa" + ], + "secondary": [ + "10f0c7" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Hard Shell Floppy Disk", + "computer", + "disk", + "download", + "floppy", + "floppy disk", + "floppy-o" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0c7", + "label": "Floppy Disk", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V173.3c0-17-6.7-33.3-18.7-45.3L352 50.7C340 38.7 323.7 32 306.7 32H64zm0 96c0-17.7 14.3-32 32-32H288c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V128zM224 288a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + }, + "regular": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 96V416c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16V170.5c0-4.2-1.7-8.3-4.7-11.3l33.9-33.9c12 12 18.7 28.3 18.7 45.3V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H309.5c17 0 33.3 6.7 45.3 18.7l74.5 74.5-33.9 33.9L320.8 84.7c-.3-.3-.5-.5-.8-.8V184c0 13.3-10.7 24-24 24H104c-13.3 0-24-10.7-24-24V80H64c-8.8 0-16 7.2-16 16zm80-16v80H272V80H128zm32 240a64 64 0 1 1 128 0 64 64 0 1 1 -128 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "florin-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e184", + "label": "Florin Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M314.7 32c-38.8 0-73.7 23.3-88.6 59.1L170.7 224H64c-17.7 0-32 14.3-32 32s14.3 32 32 32h80L98.9 396.3c-5 11.9-16.6 19.7-29.5 19.7H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H69.3c38.8 0 73.7-23.3 88.6-59.1L213.3 288H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H240l45.1-108.3c5-11.9 16.6-19.7 29.5-19.7H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H314.7z" + } + }, + "free": [ + "solid" + ] + }, + "fly": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f417", + "label": "Fly", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9.3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3.1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z" + } + }, + "free": [ + "brands" + ] + }, + "folder": { + "aliases": { + "names": [ + "folder-blank" + ], + "unicodes": { + "composite": [ + "1f4c1", + "1f5bf", + "f114" + ], + "secondary": [ + "10f07b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Folder", + "archive", + "directory", + "document", + "file", + "file folder", + "folder" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f07b", + "label": "Folder", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 480H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H288c-10.1 0-19.6-4.7-25.6-12.8L243.2 57.6C231.1 41.5 212.1 32 192 32H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H196.1c19.1 0 37.4 7.6 50.9 21.1L289.9 96H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V160c0-8.8-7.2-16-16-16H286.6c-10.6 0-20.8-4.2-28.3-11.7L213.1 87c-4.5-4.5-10.6-7-17-7H64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "folder-closed": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "file" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "e185", + "label": "Folder Closed", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 480H64c-35.3 0-64-28.7-64-64V192H512V416c0 35.3-28.7 64-64 64zm64-320H0V96C0 60.7 28.7 32 64 32H192c20.1 0 39.1 9.5 51.2 25.6l19.2 25.6c6 8.1 15.5 12.8 25.6 12.8H448c35.3 0 64 28.7 64 64z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H289.9L247 53.1C233.5 39.6 215.2 32 196.1 32H64zM48 96c0-8.8 7.2-16 16-16H196.1c6.4 0 12.5 2.5 17 7l45.3 45.3c7.5 7.5 17.7 11.7 28.3 11.7H448c8.8 0 16 7.2 16 16v32H48V96zm0 144H464V416c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V240z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "folder-minus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f65d" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "delete", + "directory", + "document", + "file", + "negative", + "remove" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f65d", + "label": "Folder Minus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 480H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H192c20.1 0 39.1 9.5 51.2 25.6l19.2 25.6c6 8.1 15.5 12.8 25.6 12.8H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64zM184 272c-13.3 0-24 10.7-24 24s10.7 24 24 24H328c13.3 0 24-10.7 24-24s-10.7-24-24-24H184z" + } + }, + "free": [ + "solid" + ] + }, + "folder-open": { + "aliases": { + "unicodes": { + "composite": [ + "1f4c2", + "1f5c1", + "f115" + ], + "secondary": [ + "10f07c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Open Folder", + "archive", + "directory", + "document", + "empty", + "file", + "folder", + "new", + "open", + "open file folder" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f07c", + "label": "Folder Open", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M88.7 223.8L0 375.8V96C0 60.7 28.7 32 64 32H181.5c17 0 33.3 6.7 45.3 18.7l26.5 26.5c12 12 28.3 18.7 45.3 18.7H416c35.3 0 64 28.7 64 64v32H144c-22.8 0-43.8 12.1-55.3 31.8zm27.6 16.1C122.1 230 132.6 224 144 224H544c11.5 0 22 6.1 27.7 16.1s5.7 22.2-.1 32.1l-112 192C453.9 474 443.4 480 432 480H32c-11.5 0-22-6.1-27.7-16.1s-5.7-22.2 .1-32.1l112-192z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 480h48c11.4 0 21.9-6 27.6-15.9l112-192c5.8-9.9 5.8-22.1 .1-32.1S555.5 224 544 224H144c-11.4 0-21.9 6-27.6 15.9L48 357.1V96c0-8.8 7.2-16 16-16H181.5c4.2 0 8.3 1.7 11.3 4.7l26.5 26.5c21 21 49.5 32.8 79.2 32.8H416c8.8 0 16 7.2 16 16v32h48V160c0-35.3-28.7-64-64-64H298.5c-17 0-33.3-6.7-45.3-18.7L226.7 50.7c-12-12-28.3-18.7-45.3-18.7H64C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H87.7 384z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "folder-plus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f65e" + ] + } + }, + "changes": [ + "5.3.0", + "5.11.0", + "5.12.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "archive", + "create", + "directory", + "document", + "file", + "new", + "positive" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f65e", + "label": "Folder Plus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H192c20.1 0 39.1 9.5 51.2 25.6l19.2 25.6c6 8.1 15.5 12.8 25.6 12.8H448c35.3 0 64 28.7 64 64V416zM232 376c0 13.3 10.7 24 24 24s24-10.7 24-24V312h64c13.3 0 24-10.7 24-24s-10.7-24-24-24H280V200c0-13.3-10.7-24-24-24s-24 10.7-24 24v64H168c-13.3 0-24 10.7-24 24s10.7 24 24 24h64v64z" + } + }, + "free": [ + "solid" + ] + }, + "folder-tree": { + "aliases": { + "unicodes": { + "secondary": [ + "10f802" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "directory", + "document", + "file", + "search", + "structure" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f802", + "label": "Folder Tree", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32v96V384c0 35.3 28.7 64 64 64H256V384H64V160H256V96H64V32zM288 192c0 17.7 14.3 32 32 32H544c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H445.3c-8.5 0-16.6-3.4-22.6-9.4L409.4 9.4c-6-6-14.1-9.4-22.6-9.4H320c-17.7 0-32 14.3-32 32V192zm0 288c0 17.7 14.3 32 32 32H544c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32H445.3c-8.5 0-16.6-3.4-22.6-9.4l-13.3-13.3c-6-6-14.1-9.4-22.6-9.4H320c-17.7 0-32 14.3-32 32V480z" + } + }, + "free": [ + "solid" + ] + }, + "font": { + "aliases": { + "unicodes": { + "secondary": [ + "10f031" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alphabet", + "glyph", + "text", + "type", + "typeface" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f031", + "label": "Font", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M254 52.8C249.3 40.3 237.3 32 224 32s-25.3 8.3-30 20.8L57.8 416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32h-1.8l18-48H303.8l18 48H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H390.2L254 52.8zM279.8 304H168.2L224 155.1 279.8 304z" + } + }, + "free": [ + "solid" + ] + }, + "font-awesome": { + "aliases": { + "names": [ + "font-awesome-flag", + "font-awesome-logo-full" + ], + "unicodes": { + "composite": [ + "f425", + "f4e6" + ], + "primary": [ + "f4e6" + ], + "secondary": [ + "10f2b4", + "10f4e6" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.15.4", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "awesome", + "flag", + "font", + "icons", + "typeface" + ] + }, + "styles": [ + "solid", + "regular", + "brands" + ], + "unicode": "f2b4", + "label": "Font Awesome", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 48V384c-63.1 22.5-82.3 32-119.5 32c-62.8 0-86.6-32-149.3-32c-20.6 0-36.6 3.6-51.2 8.2v-64c14.6-4.6 30.6-8.2 51.2-8.2c62.7 0 86.5 32 149.3 32c20.4 0 35.6-3 55.5-9.3v-208c-19.9 6.3-35.1 9.3-55.5 9.3c-62.8 0-86.6-32-149.3-32c-50.8 0-74.9 20.6-115.2 28.7V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 46.3 14.3 32 32 32s32 14.3 32 32V76.7c40.3-8 64.4-28.7 115.2-28.7c62.7 0 86.5 32 149.3 32c37.1 0 56.4-9.5 119.5-32z" + }, + "regular": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 56c0-13.3-10.7-24-24-24S0 42.7 0 56V456c0 13.3 10.7 24 24 24s24-10.7 24-24V124.2l12.5-2.4c16.7-3.2 31.5-8.5 44.2-13.1l0 0 0 0c3.7-1.3 7.1-2.6 10.4-3.7c15.2-5.2 30.4-9.1 51.2-9.1c25.6 0 43 6 63.5 13.3l.5 .2c20.9 7.4 44.8 15.9 79.1 15.9c32.3 0 53.7-6.8 90.5-19.6V342.9l-9.5 3.3c-41.5 14.4-55.2 19.2-81 19.2c-25.7 0-43.1-6-63.6-13.3l-.6-.2c-20.8-7.4-44.8-15.8-79-15.8c-16.8 0-31 2-43.9 5c-12.9 3-20.9 16-17.9 28.9s16 20.9 28.9 17.9c9.6-2.2 20.1-3.7 32.9-3.7c25.6 0 43 6 63.5 13.3l.5 .2c20.9 7.4 44.8 15.9 79.1 15.9c34.4 0 56.4-7.7 97.8-22.2c7.5-2.6 15.5-5.4 24.4-8.5l16.2-5.5V360 72 38.4L416.2 49.3c-9.7 3.3-18.2 6.3-25.7 8.9c-41.5 14.4-55.2 19.2-81 19.2c-25.7 0-43.1-6-63.6-13.3l-.6-.2c-20.8-7.4-44.8-15.8-79-15.8c-27.8 0-48.5 5.5-66.6 11.6c-4.9 1.7-9.3 3.3-13.6 4.8c-11.9 4.3-22 7.9-34.7 10.3L48 75.4V56z" + }, + "brands": { + "last_modified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 48V384C385 407 366 416 329 416C266 416 242 384 179 384C159 384 143 388 128 392V328C143 324 159 320 179 320C242 320 266 352 329 352C349 352 364 349 384 343V135C364 141 349 144 329 144C266 144 242 112 179 112C128 112 104 133 64 141V448C64 466 50 480 32 480S0 466 0 448V64C0 46 14 32 32 32S64 46 64 64V77C104 69 128 48 179 48C242 48 266 80 329 80C366 80 385 71 448 48Z" + } + }, + "free": [ + "brands", + "regular", + "solid" + ] + }, + "fonticons": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f280", + "label": "Fonticons", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32zm187 140.9c-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23zm74.3 241.8v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm80.8-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6z" + } + }, + "free": [ + "brands" + ] + }, + "fonticons-fi": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a2", + "label": "Fonticons Fi", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z" + } + }, + "free": [ + "brands" + ] + }, + "football": { + "aliases": { + "names": [ + "football-ball" + ], + "unicodes": { + "composite": [ + "1f3c8" + ], + "secondary": [ + "10f44e" + ] + } + }, + "changes": [ + "5.0.5", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "american football", + "ball", + "fall", + "football", + "nfl", + "pigskin", + "seasonal" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f44e", + "label": "Football", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321823, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M247.5 25.4c-13.5 3.3-26.4 7.2-38.6 11.7C142.9 61.6 96.7 103.6 66 153.6c-18.3 29.8-30.9 62.3-39.2 95.4L264.5 486.6c13.5-3.3 26.4-7.2 38.6-11.7c66-24.5 112.2-66.5 142.9-116.5c18.3-29.8 30.9-62.3 39.1-95.3L247.5 25.4zM495.2 205.3c6.1-56.8 1.4-112.2-7.7-156.4c-2.7-12.9-13-22.9-26.1-25.1c-58.2-9.7-109.9-12-155.6-7.9L495.2 205.3zM206.1 496L16.8 306.7c-6.1 56.8-1.4 112.2 7.7 156.4c2.7 12.9 13 22.9 26.1 25.1c58.2 9.7 109.9 12 155.6 7.9zm54.6-331.3c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6zm-48 48c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6zm-48 48c6.2-6.2 16.4-6.2 22.6 0l64 64c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-64-64c-6.2-6.2-6.2-16.4 0-22.6z" + } + }, + "free": [ + "solid" + ] + }, + "fort-awesome": { + "changes": [ + "4.5.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [ + "castle" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f286", + "label": "Fort Awesome", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z" + } + }, + "free": [ + "brands" + ] + }, + "fort-awesome-alt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "castle" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f3a3", + "label": "Alternate Fort Awesome", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208 237.4h-22.2c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7H208c2.1 0 3.7-1.6 3.7-3.7v-51.7c0-2.1-1.6-3.7-3.7-3.7zm118.2 0H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm132-125.1c-2.3-3.2-4.6-6.4-7.1-9.5-9.8-12.5-20.8-24-32.8-34.4-4.5-3.9-9.1-7.6-13.9-11.2-1.6-1.2-3.2-2.3-4.8-3.5C372 34.1 340.3 20 306 13c-16.2-3.3-32.9-5-50-5s-33.9 1.7-50 5c-34.3 7.1-66 21.2-93.3 40.8-1.6 1.1-3.2 2.3-4.8 3.5-4.8 3.6-9.4 7.3-13.9 11.2-3 2.6-5.9 5.3-8.8 8s-5.7 5.5-8.4 8.4c-5.5 5.7-10.7 11.8-15.6 18-2.4 3.1-4.8 6.3-7.1 9.5C25.2 153 8.3 202.5 8.3 256c0 2 .1 4 .1 6 .1.7.1 1.3.1 2 .1 1.3.1 2.7.2 4 0 .8.1 1.5.1 2.3 0 1.3.1 2.5.2 3.7.1.8.1 1.6.2 2.4.1 1.1.2 2.3.3 3.5 0 .8.1 1.6.2 2.4.1 1.2.3 2.4.4 3.6.1.8.2 1.5.3 2.3.1 1.3.3 2.6.5 3.9.1.6.2 1.3.3 1.9l.9 5.7c.1.6.2 1.1.3 1.7.3 1.3.5 2.7.8 4 .2.8.3 1.6.5 2.4.2 1 .5 2.1.7 3.2.2.9.4 1.7.6 2.6.2 1 .4 2 .7 3 .2.9.5 1.8.7 2.7.3 1 .5 1.9.8 2.9.3.9.5 1.8.8 2.7.2.9.5 1.9.8 2.8s.5 1.8.8 2.7c.3 1 .6 1.9.9 2.8.6 1.6 1.1 3.3 1.7 4.9.4 1 .7 1.9 1 2.8.3 1 .7 2 1.1 3 .3.8.6 1.5.9 2.3l1.2 3c.3.7.6 1.5.9 2.2.4 1 .9 2 1.3 3l.9 2.1c.5 1 .9 2 1.4 3 .3.7.6 1.3.9 2 .5 1 1 2.1 1.5 3.1.2.6.5 1.1.8 1.7.6 1.1 1.1 2.2 1.7 3.3.1.2.2.3.3.5 2.2 4.1 4.4 8.2 6.8 12.2.2.4.5.8.7 1.2.7 1.1 1.3 2.2 2 3.3.3.5.6.9.9 1.4.6 1.1 1.3 2.1 2 3.2.3.5.6.9.9 1.4.7 1.1 1.4 2.1 2.1 3.2.2.4.5.8.8 1.2.7 1.1 1.5 2.2 2.3 3.3.2.2.3.5.5.7 37.5 51.7 94.4 88.5 160 99.4.9.1 1.7.3 2.6.4 1 .2 2.1.4 3.1.5s1.9.3 2.8.4c1 .2 2 .3 3 .4.9.1 1.9.2 2.9.3s1.9.2 2.9.3 2.1.2 3.1.3c.9.1 1.8.1 2.7.2 1.1.1 2.3.1 3.4.2.8 0 1.7.1 2.5.1 1.3 0 2.6.1 3.9.1.7.1 1.4.1 2.1.1 2 .1 4 .1 6 .1s4-.1 6-.1c.7 0 1.4-.1 2.1-.1 1.3 0 2.6 0 3.9-.1.8 0 1.7-.1 2.5-.1 1.1-.1 2.3-.1 3.4-.2.9 0 1.8-.1 2.7-.2 1-.1 2.1-.2 3.1-.3s1.9-.2 2.9-.3c.9-.1 1.9-.2 2.9-.3s2-.3 3-.4 1.9-.3 2.8-.4c1-.2 2.1-.3 3.1-.5.9-.1 1.7-.3 2.6-.4 65.6-11 122.5-47.7 160.1-102.4.2-.2.3-.5.5-.7.8-1.1 1.5-2.2 2.3-3.3.2-.4.5-.8.8-1.2.7-1.1 1.4-2.1 2.1-3.2.3-.5.6-.9.9-1.4.6-1.1 1.3-2.1 2-3.2.3-.5.6-.9.9-1.4.7-1.1 1.3-2.2 2-3.3.2-.4.5-.8.7-1.2 2.4-4 4.6-8.1 6.8-12.2.1-.2.2-.3.3-.5.6-1.1 1.1-2.2 1.7-3.3.2-.6.5-1.1.8-1.7.5-1 1-2.1 1.5-3.1.3-.7.6-1.3.9-2 .5-1 1-2 1.4-3l.9-2.1c.5-1 .9-2 1.3-3 .3-.7.6-1.5.9-2.2l1.2-3c.3-.8.6-1.5.9-2.3.4-1 .7-2 1.1-3s.7-1.9 1-2.8c.6-1.6 1.2-3.3 1.7-4.9.3-1 .6-1.9.9-2.8s.5-1.8.8-2.7c.2-.9.5-1.9.8-2.8s.6-1.8.8-2.7c.3-1 .5-1.9.8-2.9.2-.9.5-1.8.7-2.7.2-1 .5-2 .7-3 .2-.9.4-1.7.6-2.6.2-1 .5-2.1.7-3.2.2-.8.3-1.6.5-2.4.3-1.3.6-2.7.8-4 .1-.6.2-1.1.3-1.7l.9-5.7c.1-.6.2-1.3.3-1.9.1-1.3.3-2.6.5-3.9.1-.8.2-1.5.3-2.3.1-1.2.3-2.4.4-3.6 0-.8.1-1.6.2-2.4.1-1.1.2-2.3.3-3.5.1-.8.1-1.6.2-2.4.1 1.7.1.5.2-.7 0-.8.1-1.5.1-2.3.1-1.3.2-2.7.2-4 .1-.7.1-1.3.1-2 .1-2 .1-4 .1-6 0-53.5-16.9-103-45.8-143.7zM448 371.5c-9.4 15.5-20.6 29.9-33.6 42.9-20.6 20.6-44.5 36.7-71.2 48-13.9 5.8-28.2 10.3-42.9 13.2v-75.8c0-58.6-88.6-58.6-88.6 0v75.8c-14.7-2.9-29-7.3-42.9-13.2-26.7-11.3-50.6-27.4-71.2-48-13-13-24.2-27.4-33.6-42.9v-71.3c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7V326h29.6V182c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-4.8 6.5-3.7 9.5-3.7V88.1c-4.4-2-7.4-6.7-7.4-11.5 0-16.8 25.4-16.8 25.4 0 0 4.8-3 9.4-7.4 11.5V92c6.3-1.4 12.7-2.3 19.2-2.3 9.4 0 18.4 3.5 26.3 3.5 7.2 0 15.2-3.5 19.4-3.5 2.1 0 3.7 1.6 3.7 3.7v48.4c0 5.6-18.7 6.5-22.4 6.5-8.6 0-16.6-3.5-25.4-3.5-7 0-14.1 1.2-20.8 2.8v30.7c3 0 9.5-1.1 9.5 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7h22.2c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7v144h29.5v-25.8c0-2.1 1.6-3.7 3.7-3.7h22.2c2.1 0 3.7 1.6 3.7 3.7z" + } + }, + "free": [ + "brands" + ] + }, + "forumbee": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f211", + "label": "Forumbee", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z" + } + }, + "free": [ + "brands" + ] + }, + "forward": { + "aliases": { + "unicodes": { + "composite": [ + "23e9" + ], + "secondary": [ + "10f04e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "double", + "fast", + "fast-forward button", + "forward", + "next", + "skip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f04e", + "label": "Forward", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M52.5 440.6c-9.5 7.9-22.8 9.7-34.1 4.4S0 428.4 0 416V96C0 83.6 7.2 72.3 18.4 67s24.5-3.6 34.1 4.4L224 214.3V256v41.7L52.5 440.6zM256 352V256 128 96c0-12.4 7.2-23.7 18.4-29s24.5-3.6 34.1 4.4l192 160c7.3 6.1 11.5 15.1 11.5 24.6s-4.2 18.5-11.5 24.6l-192 160c-9.5 7.9-22.8 9.7-34.1 4.4s-18.4-16.6-18.4-29V352z" + } + }, + "free": [ + "solid" + ] + }, + "forward-fast": { + "aliases": { + "names": [ + "fast-forward" + ], + "unicodes": { + "composite": [ + "23ed" + ], + "secondary": [ + "10f050" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "end", + "last", + "next", + "next scene", + "next track", + "next track button", + "triangle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f050", + "label": "Forward Fast", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M18.4 445c11.2 5.3 24.5 3.6 34.1-4.4L224 297.7V416c0 12.4 7.2 23.7 18.4 29s24.5 3.6 34.1-4.4L448 297.7V416c0 17.7 14.3 32 32 32s32-14.3 32-32V96c0-17.7-14.3-32-32-32s-32 14.3-32 32V214.3L276.5 71.4c-9.5-7.9-22.8-9.7-34.1-4.4S224 83.6 224 96V214.3L52.5 71.4c-9.5-7.9-22.8-9.7-34.1-4.4S0 83.6 0 96V416c0 12.4 7.2 23.7 18.4 29z" + } + }, + "free": [ + "solid" + ] + }, + "forward-step": { + "aliases": { + "names": [ + "step-forward" + ], + "unicodes": { + "secondary": [ + "10f051" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "end", + "last", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f051", + "label": "Forward Step", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M52.5 440.6c-9.5 7.9-22.8 9.7-34.1 4.4S0 428.4 0 416V96C0 83.6 7.2 72.3 18.4 67s24.5-3.6 34.1 4.4l192 160L256 241V96c0-17.7 14.3-32 32-32s32 14.3 32 32V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V271l-11.5 9.6-192 160z" + } + }, + "free": [ + "solid" + ] + }, + "foursquare": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f180", + "label": "Foursquare", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 368, + 512 + ], + "width": 368, + "height": 512, + "path": "M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9.9-1.8.6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z" + } + }, + "free": [ + "brands" + ] + }, + "franc-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "French Franc Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e18f", + "label": "Franc Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M80 32C62.3 32 48 46.3 48 64V224v96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v64c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V256H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z" + } + }, + "free": [ + "solid" + ] + }, + "free-code-camp": { + "changes": [ + "4.7.0", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2c5", + "label": "freeCodeCamp", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M97.22,96.21c10.36-10.65,16-17.12,16-21.9,0-2.76-1.92-5.51-3.83-7.42A14.81,14.81,0,0,0,101,64.05c-8.48,0-20.92,8.79-35.84,25.69C23.68,137,2.51,182.81,3.37,250.34s17.47,117,54.06,161.87C76.22,435.86,90.62,448,100.9,448a13.55,13.55,0,0,0,8.37-3.84c1.91-2.76,3.81-5.63,3.81-8.38,0-5.63-3.86-12.2-13.2-20.55-44.45-42.33-67.32-97-67.48-165C32.25,188.8,54,137.83,97.22,96.21ZM239.47,420.07c.58.37.91.55.91.55Zm93.79.55.17-.13C333.24,420.62,333.17,420.67,333.26,420.62Zm3.13-158.18c-16.24-4.15,50.41-82.89-68.05-177.17,0,0,15.54,49.38-62.83,159.57-74.27,104.35,23.46,168.73,34,175.23-6.73-4.35-47.4-35.7,9.55-128.64,11-18.3,25.53-34.87,43.5-72.16,0,0,15.91,22.45,7.6,71.13C287.7,364,354,342.91,355,343.94c22.75,26.78-17.72,73.51-21.58,76.55,5.49-3.65,117.71-78,33-188.1C360.43,238.4,352.62,266.59,336.39,262.44ZM510.88,89.69C496,72.79,483.52,64,475,64a14.81,14.81,0,0,0-8.39,2.84c-1.91,1.91-3.83,4.66-3.83,7.42,0,4.78,5.6,11.26,16,21.9,43.23,41.61,65,92.59,64.82,154.06-.16,68-23,122.63-67.48,165-9.34,8.35-13.18,14.92-13.2,20.55,0,2.75,1.9,5.62,3.81,8.38A13.61,13.61,0,0,0,475.1,448c10.28,0,24.68-12.13,43.47-35.79,36.59-44.85,53.14-94.38,54.06-161.87S552.32,137,510.88,89.69Z" + } + }, + "free": [ + "brands" + ] + }, + "freebsd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a4", + "label": "FreeBSD", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4.9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z" + } + }, + "free": [ + "brands" + ] + }, + "frog": { + "aliases": { + "unicodes": { + "secondary": [ + "10f52e" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "amphibian", + "bullfrog", + "fauna", + "hop", + "kermit", + "kiss", + "prince", + "ribbit", + "toad", + "wart" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f52e", + "label": "Frog", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M368 32c41.7 0 75.9 31.8 79.7 72.5l85.6 26.3c25.4 7.8 42.8 31.3 42.8 57.9c0 21.8-11.7 41.9-30.7 52.7L400.8 323.5 493.3 416H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H480c-8.5 0-16.6-3.4-22.6-9.4L346.9 360.2c11.7-36 3.2-77.1-25.4-105.7c-40.6-40.6-106.3-40.6-146.9-.1L101 324.4c-6.4 6.1-6.7 16.2-.6 22.6s16.2 6.6 22.6 .6l73.8-70.2 .1-.1 .1-.1c3.5-3.5 7.3-6.6 11.3-9.2c27.9-18.5 65.9-15.4 90.5 9.2c24.7 24.7 27.7 62.9 9 90.9c-2.6 3.8-5.6 7.5-9 10.9L261.8 416H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-35.3 0-64-28.7-64-64C0 249.6 127 112.9 289.3 97.5C296.2 60.2 328.8 32 368 32zm0 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + }, + "free": [ + "solid" + ] + }, + "fulcrum": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f50b", + "label": "Fulcrum", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M95.75 164.14l-35.38 43.55L25 164.14l35.38-43.55zM144.23 0l-20.54 198.18L72.72 256l51 57.82L144.23 512V300.89L103.15 256l41.08-44.89zm79.67 164.14l35.38 43.55 35.38-43.55-35.38-43.55zm-48.48 47L216.5 256l-41.08 44.89V512L196 313.82 247 256l-51-57.82L175.42 0z" + } + }, + "free": [ + "brands" + ] + }, + "futbol": { + "aliases": { + "names": [ + "futbol-ball", + "soccer-ball" + ], + "unicodes": { + "composite": [ + "26bd" + ], + "secondary": [ + "10f1e3" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "football", + "mls", + "soccer", + "soccer ball" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1e3", + "label": "Futbol", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321824, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M417.3 360.1l-71.6-4.8c-5.2-.3-10.3 1.1-14.5 4.2s-7.2 7.4-8.4 12.5l-17.6 69.6C289.5 445.8 273 448 256 448s-33.5-2.2-49.2-6.4L189.2 372c-1.3-5-4.3-9.4-8.4-12.5s-9.3-4.5-14.5-4.2l-71.6 4.8c-17.6-27.2-28.5-59.2-30.4-93.6L125 228.3c4.4-2.8 7.6-7 9.2-11.9s1.4-10.2-.5-15l-26.7-66.6C128 109.2 155.3 89 186.7 76.9l55.2 46c4 3.3 9 5.1 14.1 5.1s10.2-1.8 14.1-5.1l55.2-46c31.3 12.1 58.7 32.3 79.6 57.9l-26.7 66.6c-1.9 4.8-2.1 10.1-.5 15s4.9 9.1 9.2 11.9l60.7 38.2c-1.9 34.4-12.8 66.4-30.4 93.6zM256 512c141.4 0 256-114.6 256-256S397.4 0 256 0S0 114.6 0 256S114.6 512 256 512zm14.1-325.7c-8.4-6.1-19.8-6.1-28.2 0L194 221c-8.4 6.1-11.9 16.9-8.7 26.8l18.3 56.3c3.2 9.9 12.4 16.6 22.8 16.6h59.2c10.4 0 19.6-6.7 22.8-16.6l18.3-56.3c3.2-9.9-.3-20.7-8.7-26.8l-47.9-34.8z" + }, + "regular": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M177.1 228.6L207.9 320h96.5l29.62-91.38L256 172.1L177.1 228.6zM255.1 0C114.6 0 .0001 114.6 .0001 256S114.6 512 256 512s255.1-114.6 255.1-255.1S397.4 0 255.1 0zM435.2 361.1l-103.9-1.578l-30.67 99.52C286.2 462.2 271.3 464 256 464s-30.19-1.773-44.56-4.93L180.8 359.6L76.83 361.1c-14.93-25.35-24.79-54.01-27.8-84.72L134.3 216.4L100.7 118.1c19.85-22.34 44.32-40.45 72.04-52.62L256 128l83.29-62.47c27.72 12.17 52.19 30.27 72.04 52.62L377.7 216.4l85.23 59.97C459.1 307.1 450.1 335.8 435.2 361.1z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "g": { + "aliases": { + "unicodes": { + "composite": [ + "67" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter G", + "Latin Small Letter G", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "47", + "label": "G", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 96C135.6 96 64 167.6 64 256s71.6 160 160 160c77.4 0 142-55 156.8-128H256c-17.7 0-32-14.3-32-32s14.3-32 32-32H400c25.8 0 49.6 21.4 47.2 50.6C437.8 389.6 341.4 480 224 480C100.3 480 0 379.7 0 256S100.3 32 224 32c57.4 0 109.7 21.6 149.3 57c13.2 11.8 14.3 32 2.5 45.2s-32 14.3-45.2 2.5C302.3 111.4 265 96 224 96z" + } + }, + "free": [ + "solid" + ] + }, + "galactic-republic": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [ + "politics", + "star wars" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f50c", + "label": "Galactic Republic", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 504C111.25 504 0 392.75 0 256S111.25 8 248 8s248 111.25 248 248-111.25 248-248 248zm0-479.47C120.37 24.53 16.53 128.37 16.53 256S120.37 487.47 248 487.47 479.47 383.63 479.47 256 375.63 24.53 248 24.53zm27.62 21.81v24.62a185.933 185.933 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.96-41.8zm-55.37.07c-37.64 4.94-72.16 19.8-100.88 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.873 77.873 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.24 30.72l-17.36 17.36a186.337 186.337 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101.03zm-335.55.13c-22.06 28.72-36.91 63.26-41.85 100.91h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.67c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.96h-24.62zM136.66 406.38l-17.36 17.36c28.73 22.09 63.3 36.98 100.96 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.53.05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.96-41.85l-17.31-17.39h-.08z" + } + }, + "free": [ + "brands" + ] + }, + "galactic-senate": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [ + "star wars" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f50d", + "label": "Galactic Senate", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M249.86 33.48v26.07C236.28 80.17 226 168.14 225.39 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32.75-10.53 2.19-15.65.65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.76-10.91-194.73-24.49-215.35V33.48h-12.28zm-26.34 147.77c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68.18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51.73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47.96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.49 147.49 0 0 0-27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.75-1.45-156.37 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.26 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87.01.01-.01.04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19.02 16.37-1.07 24.04-3.21.01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43.39 95.49 20.26 108.02 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.37-29.17-156.37-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.81 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19.07-21.6.36-30.5 1.66.43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28.94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76.42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09.02-.17.04-.27.05-.05.01-.11.04-.16.05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z" + } + }, + "free": [ + "brands" + ] + }, + "gamepad": { + "aliases": { + "unicodes": { + "secondary": [ + "10f11b" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arcade", + "controller", + "d-pad", + "joystick", + "video", + "video game" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f11b", + "label": "Gamepad", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321824, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 64C86 64 0 150 0 256S86 448 192 448H448c106 0 192-86 192-192s-86-192-192-192H192zM496 248c-22.1 0-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40s-17.9 40-40 40zm-24 56c0 22.1-17.9 40-40 40s-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40zM168 200c0-13.3 10.7-24 24-24s24 10.7 24 24v32h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H216v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H136c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V200z" + } + }, + "free": [ + "solid" + ] + }, + "gas-pump": { + "aliases": { + "unicodes": { + "composite": [ + "26fd" + ], + "secondary": [ + "10f52f" + ] + } + }, + "changes": [ + "5.0.13", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "car", + "diesel", + "fuel", + "fuel pump", + "fuelpump", + "gas", + "gasoline", + "petrol", + "pump", + "station" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f52f", + "label": "Gas Pump", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 64C32 28.7 60.7 0 96 0H256c35.3 0 64 28.7 64 64V256h8c48.6 0 88 39.4 88 88v32c0 13.3 10.7 24 24 24s24-10.7 24-24V222c-27.6-7.1-48-32.2-48-62V96L384 64c-8.8-8.8-8.8-23.2 0-32s23.2-8.8 32 0l77.3 77.3c12 12 18.7 28.3 18.7 45.3V168v24 32V376c0 39.8-32.2 72-72 72s-72-32.2-72-72V344c0-22.1-17.9-40-40-40h-8V448c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V64zM96 80v96c0 8.8 7.2 16 16 16H240c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H112c-8.8 0-16 7.2-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "gauge": { + "aliases": { + "names": [ + "dashboard", + "gauge-med", + "tachometer-alt-average" + ], + "unicodes": { + "secondary": [ + "10f624" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "fast", + "odometer", + "speed", + "speedometer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f624", + "label": "Gauge", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm320 96c0-26.9-16.5-49.9-40-59.3V88c0-13.3-10.7-24-24-24s-24 10.7-24 24V292.7c-23.5 9.5-40 32.5-40 59.3c0 35.3 28.7 64 64 64s64-28.7 64-64zM144 176a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm-16 80a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM400 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + }, + "free": [ + "solid" + ] + }, + "gauge-high": { + "aliases": { + "names": [ + "tachometer-alt", + "tachometer-alt-fast" + ], + "unicodes": { + "composite": [ + "f3fd" + ], + "primary": [ + "f3fd" + ], + "secondary": [ + "10f3fd", + "10f625" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "fast", + "odometer", + "speed", + "speedometer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f625", + "label": "Gauge High", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM256 416c35.3 0 64-28.7 64-64c0-17.4-6.9-33.1-18.1-44.6L366 161.7c5.3-12.1-.2-26.3-12.3-31.6s-26.3 .2-31.6 12.3L257.9 288c-.6 0-1.3 0-1.9 0c-35.3 0-64 28.7-64 64s28.7 64 64 64zM176 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM96 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm352-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + }, + "free": [ + "solid" + ] + }, + "gauge-simple": { + "aliases": { + "names": [ + "gauge-simple-med", + "tachometer-average" + ], + "unicodes": { + "secondary": [ + "10f629" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "fast", + "odometer", + "speed", + "speedometer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f629", + "label": "Gauge Simple", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm320 96c0-26.9-16.5-49.9-40-59.3V88c0-13.3-10.7-24-24-24s-24 10.7-24 24V292.7c-23.5 9.5-40 32.5-40 59.3c0 35.3 28.7 64 64 64s64-28.7 64-64z" + } + }, + "free": [ + "solid" + ] + }, + "gauge-simple-high": { + "aliases": { + "names": [ + "tachometer", + "tachometer-fast" + ], + "unicodes": { + "composite": [ + "f0e4" + ], + "primary": [ + "f0e4" + ], + "secondary": [ + "10f0e4", + "10f62a" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dashboard", + "fast", + "odometer", + "speed", + "speedometer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f62a", + "label": "Gauge Simple High", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm320 96c0-15.9-5.8-30.4-15.3-41.6l76.6-147.4c6.1-11.8 1.5-26.3-10.2-32.4s-26.2-1.5-32.4 10.2L262.1 288.3c-2-.2-4-.3-6.1-.3c-35.3 0-64 28.7-64 64s28.7 64 64 64s64-28.7 64-64z" + } + }, + "free": [ + "solid" + ] + }, + "gavel": { + "aliases": { + "names": [ + "legal" + ], + "unicodes": { + "secondary": [ + "10f0e3" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hammer", + "judge", + "law", + "lawyer", + "opinion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0e3", + "label": "Gavel", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M318.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-120 120c-12.5 12.5-12.5 32.8 0 45.3l16 16c12.5 12.5 32.8 12.5 45.3 0l4-4L325.4 293.4l-4 4c-12.5 12.5-12.5 32.8 0 45.3l16 16c12.5 12.5 32.8 12.5 45.3 0l120-120c12.5-12.5 12.5-32.8 0-45.3l-16-16c-12.5-12.5-32.8-12.5-45.3 0l-4 4L330.6 74.6l4-4c12.5-12.5 12.5-32.8 0-45.3l-16-16zm-152 288c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l48 48c12.5 12.5 32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-1.4-1.4L272 285.3 226.7 240 168 298.7l-1.4-1.4z" + } + }, + "free": [ + "solid" + ] + }, + "gear": { + "aliases": { + "names": [ + "cog" + ], + "unicodes": { + "composite": [ + "2699" + ], + "secondary": [ + "10f013" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cog", + "cogwheel", + "gear", + "mechanical", + "settings", + "sprocket", + "tool", + "wheel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f013", + "label": "Gear", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M481.9 166.6c3.2 8.7 .5 18.4-6.4 24.6l-30.9 28.1c-7.7 7.1-11.4 17.5-10.9 27.9c.1 2.9 .2 5.8 .2 8.8s-.1 5.9-.2 8.8c-.5 10.5 3.1 20.9 10.9 27.9l30.9 28.1c6.9 6.2 9.6 15.9 6.4 24.6c-4.4 11.9-9.7 23.3-15.8 34.3l-4.7 8.1c-6.6 11-14 21.4-22.1 31.2c-5.9 7.2-15.7 9.6-24.5 6.8l-39.7-12.6c-10-3.2-20.8-1.1-29.7 4.6c-4.9 3.1-9.9 6.1-15.1 8.7c-9.3 4.8-16.5 13.2-18.8 23.4l-8.9 40.7c-2 9.1-9 16.3-18.2 17.8c-13.8 2.3-28 3.5-42.5 3.5s-28.7-1.2-42.5-3.5c-9.2-1.5-16.2-8.7-18.2-17.8l-8.9-40.7c-2.2-10.2-9.5-18.6-18.8-23.4c-5.2-2.7-10.2-5.6-15.1-8.7c-8.8-5.7-19.7-7.8-29.7-4.6L69.1 425.9c-8.8 2.8-18.6 .3-24.5-6.8c-8.1-9.8-15.5-20.2-22.1-31.2l-4.7-8.1c-6.1-11-11.4-22.4-15.8-34.3c-3.2-8.7-.5-18.4 6.4-24.6l30.9-28.1c7.7-7.1 11.4-17.5 10.9-27.9c-.1-2.9-.2-5.8-.2-8.8s.1-5.9 .2-8.8c.5-10.5-3.1-20.9-10.9-27.9L8.4 191.2c-6.9-6.2-9.6-15.9-6.4-24.6c4.4-11.9 9.7-23.3 15.8-34.3l4.7-8.1c6.6-11 14-21.4 22.1-31.2c5.9-7.2 15.7-9.6 24.5-6.8l39.7 12.6c10 3.2 20.8 1.1 29.7-4.6c4.9-3.1 9.9-6.1 15.1-8.7c9.3-4.8 16.5-13.2 18.8-23.4l8.9-40.7c2-9.1 9-16.3 18.2-17.8C213.3 1.2 227.5 0 242 0s28.7 1.2 42.5 3.5c9.2 1.5 16.2 8.7 18.2 17.8l8.9 40.7c2.2 10.2 9.4 18.6 18.8 23.4c5.2 2.7 10.2 5.6 15.1 8.7c8.8 5.7 19.7 7.7 29.7 4.6l39.7-12.6c8.8-2.8 18.6-.3 24.5 6.8c8.1 9.8 15.5 20.2 22.1 31.2l4.7 8.1c6.1 11 11.4 22.4 15.8 34.3zM242 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160z" + } + }, + "free": [ + "solid" + ] + }, + "gears": { + "aliases": { + "names": [ + "cogs" + ], + "unicodes": { + "secondary": [ + "10f085" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gears", + "mechanical", + "settings", + "sprocket", + "wheel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f085", + "label": "Gears", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M305.5 135.3c7.1-6.3 9.9-16.2 6.2-25c-2.3-5.3-4.8-10.5-7.6-15.5L301 89.4c-3-5-6.3-9.9-9.8-14.6c-5.7-7.6-15.7-10.1-24.7-7.1l-28.2 9.3c-10.7-8.8-23-16-36.2-20.9L196 27.1c-1.9-9.3-9.1-16.7-18.5-17.8C170.9 8.4 164.2 8 157.4 8h-.7c-6.8 0-13.5 .4-20.1 1.2c-9.4 1.1-16.6 8.6-18.5 17.8L112 56.1c-13.3 5-25.5 12.1-36.2 20.9L47.5 67.8c-9-3-19-.5-24.7 7.1c-3.5 4.7-6.8 9.6-9.9 14.6l-3 5.3c-2.8 5-5.3 10.2-7.6 15.6c-3.7 8.7-.9 18.6 6.2 25l22.2 19.8C29.6 161.9 29 168.9 29 176s.6 14.1 1.7 20.9L8.5 216.7c-7.1 6.3-9.9 16.2-6.2 25c2.3 5.3 4.8 10.5 7.6 15.6l3 5.2c3 5.1 6.3 9.9 9.9 14.6c5.7 7.6 15.7 10.1 24.7 7.1l28.2-9.3c10.7 8.8 23 16 36.2 20.9l6.1 29.1c1.9 9.3 9.1 16.7 18.5 17.8c6.7 .8 13.5 1.2 20.4 1.2s13.7-.4 20.4-1.2c9.4-1.1 16.6-8.6 18.5-17.8l6.1-29.1c13.3-5 25.5-12.1 36.2-20.9l28.2 9.3c9 3 19 .5 24.7-7.1c3.5-4.7 6.8-9.5 9.8-14.6l3.1-5.4c2.8-5 5.3-10.2 7.6-15.5c3.7-8.7 .9-18.6-6.2-25l-22.2-19.8c1.1-6.8 1.7-13.8 1.7-20.9s-.6-14.1-1.7-20.9l22.2-19.8zM109 176a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM501.7 500.5c6.3 7.1 16.2 9.9 25 6.2c5.3-2.3 10.5-4.8 15.5-7.6l5.4-3.1c5-3 9.9-6.3 14.6-9.8c7.6-5.7 10.1-15.7 7.1-24.7l-9.3-28.2c8.8-10.7 16-23 20.9-36.2l29.1-6.1c9.3-1.9 16.7-9.1 17.8-18.5c.8-6.7 1.2-13.5 1.2-20.4s-.4-13.7-1.2-20.4c-1.1-9.4-8.6-16.6-17.8-18.5L580.9 307c-5-13.3-12.1-25.5-20.9-36.2l9.3-28.2c3-9 .5-19-7.1-24.7c-4.7-3.5-9.6-6.8-14.6-9.9l-5.3-3c-5-2.8-10.2-5.3-15.6-7.6c-8.7-3.7-18.6-.9-25 6.2l-19.8 22.2c-6.8-1.1-13.8-1.7-20.9-1.7s-14.1 .6-20.9 1.7l-19.8-22.2c-6.3-7.1-16.2-9.9-25-6.2c-5.3 2.3-10.5 4.8-15.6 7.6l-5.2 3c-5.1 3-9.9 6.3-14.6 9.9c-7.6 5.7-10.1 15.7-7.1 24.7l9.3 28.2c-8.8 10.7-16 23-20.9 36.2L312.1 313c-9.3 1.9-16.7 9.1-17.8 18.5c-.8 6.7-1.2 13.5-1.2 20.4s.4 13.7 1.2 20.4c1.1 9.4 8.6 16.6 17.8 18.5l29.1 6.1c5 13.3 12.1 25.5 20.9 36.2l-9.3 28.2c-3 9-.5 19 7.1 24.7c4.7 3.5 9.5 6.8 14.6 9.8l5.4 3.1c5 2.8 10.2 5.3 15.5 7.6c8.7 3.7 18.6 .9 25-6.2l19.8-22.2c6.8 1.1 13.8 1.7 20.9 1.7s14.1-.6 20.9-1.7l19.8 22.2zM461 304a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + }, + "free": [ + "solid" + ] + }, + "gem": { + "aliases": { + "unicodes": { + "composite": [ + "1f48e" + ], + "secondary": [ + "10f3a5" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "diamond", + "gem", + "gem stone", + "jewel", + "jewelry", + "sapphire", + "stone", + "treasure" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f3a5", + "label": "Gem", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M116.7 33.8c4.5-6.1 11.7-9.8 19.3-9.8H376c7.6 0 14.8 3.6 19.3 9.8l112 152c6.8 9.2 6.1 21.9-1.5 30.4l-232 256c-4.6 5-11 7.9-17.8 7.9s-13.2-2.9-17.8-7.9l-232-256c-7.7-8.5-8.3-21.2-1.5-30.4l112-152zm38.5 39.8c-3.3 2.5-4.2 7-2.1 10.5l57.4 95.6L63.3 192c-4.1 .3-7.3 3.8-7.3 8s3.2 7.6 7.3 8l192 16c.4 0 .9 0 1.3 0l192-16c4.1-.3 7.3-3.8 7.3-8s-3.2-7.6-7.3-8L301.5 179.8l57.4-95.6c2.1-3.5 1.2-8.1-2.1-10.5s-7.9-2-10.7 1L256 172.2 165.9 74.6c-2.8-3-7.4-3.4-10.7-1z" + }, + "regular": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M168.5 72L256 165l87.5-93h-175zM383.9 99.1L311.5 176h129L383.9 99.1zm50 124.9H256 78.1L256 420.3 433.9 224zM71.5 176h129L128.1 99.1 71.5 176zm434.3 40.1l-232 256c-4.6 5-11 7.9-17.8 7.9s-13.2-2.9-17.8-7.9l-232-256c-7.7-8.5-8.3-21.2-1.5-30.4l112-152c4.5-6.1 11.7-9.8 19.3-9.8H376c7.6 0 14.8 3.6 19.3 9.8l112 152c6.8 9.2 6.1 21.9-1.5 30.4z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "genderless": { + "aliases": { + "unicodes": { + "secondary": [ + "10f22d" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "androgynous", + "asexual", + "gender", + "sexless" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f22d", + "label": "Genderless", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M176 144a112 112 0 1 1 0 224 112 112 0 1 1 0-224zm0 288a176 176 0 1 0 0-352 176 176 0 1 0 0 352z" + } + }, + "free": [ + "solid" + ] + }, + "get-pocket": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f265", + "label": "Get Pocket", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z" + } + }, + "free": [ + "brands" + ] + }, + "gg": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f260", + "label": "GG Currency", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z" + } + }, + "free": [ + "brands" + ] + }, + "gg-circle": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f261", + "label": "GG Currency Circle", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z" + } + }, + "free": [ + "brands" + ] + }, + "ghost": { + "aliases": { + "unicodes": { + "composite": [ + "1f47b" + ], + "secondary": [ + "10f6e2" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apparition", + "blinky", + "clyde", + "creature", + "face", + "fairy tale", + "fantasy", + "floating", + "ghost", + "halloween", + "holiday", + "inky", + "monster", + "pacman", + "pinky", + "spirit" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6e2", + "label": "Ghost", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M40.1 467.1l-11.2 9c-3.2 2.5-7.1 3.9-11.1 3.9C8 480 0 472 0 462.2V192C0 86 86 0 192 0S384 86 384 192V462.2c0 9.8-8 17.8-17.8 17.8c-4 0-7.9-1.4-11.1-3.9l-11.2-9c-13.4-10.7-32.8-9-44.1 3.9L269.3 506c-3.3 3.8-8.2 6-13.3 6s-9.9-2.2-13.3-6l-26.6-30.5c-12.7-14.6-35.4-14.6-48.2 0L141.3 506c-3.3 3.8-8.2 6-13.3 6s-9.9-2.2-13.3-6L84.2 471c-11.3-12.9-30.7-14.6-44.1-3.9zM160 192a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm96 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "gift": { + "aliases": { + "unicodes": { + "composite": [ + "1f381" + ], + "secondary": [ + "10f06b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "box", + "celebration", + "christmas", + "generosity", + "gift", + "giving", + "holiday", + "party", + "present", + "wrapped", + "wrapped gift", + "xmas" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f06b", + "label": "Gift", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M190.5 68.8L225.3 128H224 152c-22.1 0-40-17.9-40-40s17.9-40 40-40h2.2c14.9 0 28.8 7.9 36.3 20.8zM64 88c0 14.4 3.5 28 9.6 40H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H480c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H438.4c6.1-12 9.6-25.6 9.6-40c0-48.6-39.4-88-88-88h-2.2c-31.9 0-61.5 16.9-77.7 44.4L256 85.5l-24.1-41C215.7 16.9 186.1 0 154.2 0H152C103.4 0 64 39.4 64 88zm336 0c0 22.1-17.9 40-40 40H288h-1.3l34.8-59.2C329.1 55.9 342.9 48 357.8 48H360c22.1 0 40 17.9 40 40zM32 288V464c0 26.5 21.5 48 48 48H224V288H32zM288 512H432c26.5 0 48-21.5 48-48V288H288V512z" + } + }, + "free": [ + "solid" + ] + }, + "gifts": { + "aliases": { + "unicodes": { + "secondary": [ + "10f79c" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "christmas", + "generosity", + "giving", + "holiday", + "party", + "present", + "wrapped", + "xmas" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f79c", + "label": "Gifts", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M200.6 32C205 19.5 198.5 5.8 186 1.4S159.8 3.5 155.4 16L144.7 46.2l-9.9-29.8C130.6 3.8 117-3 104.4 1.2S85 19 89.2 31.6l8.3 25-27.4-20c-10.7-7.8-25.7-5.4-33.5 5.3s-5.4 25.7 5.3 33.5L70.2 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H200.6c-5.4-9.4-8.6-20.3-8.6-32V256c0-29.9 20.5-55 48.2-62c1.8-31 17.1-58.2 40.1-76.1C271.7 104.7 256.9 96 240 96H217.8l28.3-20.6c10.7-7.8 13.1-22.8 5.3-33.5s-22.8-13.1-33.5-5.3L192.5 55.1 200.6 32zM363.5 185.5L393.1 224H344c-13.3 0-24-10.7-24-24c0-13.1 10.8-24 24.2-24c7.6 0 14.7 3.5 19.3 9.5zM272 200c0 8.4 1.4 16.5 4.1 24H272c-26.5 0-48 21.5-48 48v80H416V256h32v96H640V272c0-26.5-21.5-48-48-48h-4.1c2.7-7.5 4.1-15.6 4.1-24c0-39.9-32.5-72-72.2-72c-22.4 0-43.6 10.4-57.3 28.2L432 195.8l-30.5-39.6c-13.7-17.8-35-28.2-57.3-28.2c-39.7 0-72.2 32.1-72.2 72zM224 464c0 26.5 21.5 48 48 48H416V384H224v80zm224 48H592c26.5 0 48-21.5 48-48V384H448V512zm96-312c0 13.3-10.7 24-24 24H470.9l29.6-38.5c4.6-5.9 11.7-9.5 19.3-9.5c13.4 0 24.2 10.9 24.2 24z" + } + }, + "free": [ + "solid" + ] + }, + "git": { + "changes": [ + "4.1.0", + "5.0.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d3", + "label": "Git", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M216.29 158.39H137C97 147.9 6.51 150.63 6.51 233.18c0 30.09 15 51.23 35 61-25.1 23-37 33.85-37 49.21 0 11 4.47 21.14 17.89 26.81C8.13 383.61 0 393.35 0 411.65c0 32.11 28.05 50.82 101.63 50.82 70.75 0 111.79-26.42 111.79-73.18 0-58.66-45.16-56.5-151.63-63l13.43-21.55c27.27 7.58 118.7 10 118.7-67.89 0-18.7-7.73-31.71-15-41.07l37.41-2.84zm-63.42 241.9c0 32.06-104.89 32.1-104.89 2.43 0-8.14 5.27-15 10.57-21.54 77.71 5.3 94.32 3.37 94.32 19.11zm-50.81-134.58c-52.8 0-50.46-71.16 1.2-71.16 49.54 0 50.82 71.16-1.2 71.16zm133.3 100.51v-32.1c26.75-3.66 27.24-2 27.24-11V203.61c0-8.5-2.05-7.38-27.24-16.26l4.47-32.92H324v168.71c0 6.51.4 7.32 6.51 8.14l20.73 2.84v32.1zm52.45-244.31c-23.17 0-36.59-13.43-36.59-36.61s13.42-35.77 36.59-35.77c23.58 0 37 12.62 37 35.77s-13.42 36.61-37 36.61zM512 350.46c-17.49 8.53-43.1 16.26-66.28 16.26-48.38 0-66.67-19.5-66.67-65.46V194.75c0-5.42 1.05-4.06-31.71-4.06V154.5c35.78-4.07 50-22 54.47-66.27h38.63c0 65.83-1.34 61.81 3.26 61.81H501v40.65h-60.56v97.15c0 6.92-4.92 51.41 60.57 26.84z" + } + }, + "free": [ + "brands" + ] + }, + "git-alt": { + "changes": [ + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f841", + "label": "Git Alt", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M439.55 236.05L244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z" + } + }, + "free": [ + "brands" + ] + }, + "github": { + "changes": [ + "2.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f09b", + "label": "GitHub", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z" + } + }, + "free": [ + "brands" + ] + }, + "github-alt": { + "changes": [ + "3.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f113", + "label": "Alternate GitHub", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 480, + 512 + ], + "width": 480, + "height": 512, + "path": "M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z" + } + }, + "free": [ + "brands" + ] + }, + "gitkraken": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a6", + "label": "GitKraken", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 592, + 512 + ], + "width": 592, + "height": 512, + "path": "M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8.4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z" + } + }, + "free": [ + "brands" + ] + }, + "gitlab": { + "changes": [ + "4.6.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "Axosoft" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f296", + "label": "GitLab", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M503.5 204.6L502.8 202.8L433.1 21.02C431.7 17.45 429.2 14.43 425.9 12.38C423.5 10.83 420.8 9.865 417.9 9.57C415 9.275 412.2 9.653 409.5 10.68C406.8 11.7 404.4 13.34 402.4 15.46C400.5 17.58 399.1 20.13 398.3 22.9L351.3 166.9H160.8L113.7 22.9C112.9 20.13 111.5 17.59 109.6 15.47C107.6 13.35 105.2 11.72 102.5 10.7C99.86 9.675 96.98 9.295 94.12 9.587C91.26 9.878 88.51 10.83 86.08 12.38C82.84 14.43 80.33 17.45 78.92 21.02L9.267 202.8L8.543 204.6C-1.484 230.8-2.72 259.6 5.023 286.6C12.77 313.5 29.07 337.3 51.47 354.2L51.74 354.4L52.33 354.8L158.3 434.3L210.9 474L242.9 498.2C246.6 500.1 251.2 502.5 255.9 502.5C260.6 502.5 265.2 500.1 268.9 498.2L300.9 474L353.5 434.3L460.2 354.4L460.5 354.1C482.9 337.2 499.2 313.5 506.1 286.6C514.7 259.6 513.5 230.8 503.5 204.6z" + } + }, + "free": [ + "brands" + ] + }, + "gitter": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f426", + "label": "Gitter", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z" + } + }, + "free": [ + "brands" + ] + }, + "glass-water": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "potable", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4f4", + "label": "Glass Water", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C23.1 0 14.6 3.7 8.6 10.2S-.6 25.4 .1 34.3L28.9 437.7c3 41.9 37.8 74.3 79.8 74.3H275.3c42 0 76.8-32.4 79.8-74.3L383.9 34.3c.6-8.9-2.4-17.6-8.5-24.1S360.9 0 352 0H32zM73 156.5L66.4 64H317.6L311 156.5l-24.2 12.1c-19.4 9.7-42.2 9.7-61.6 0c-20.9-10.4-45.5-10.4-66.4 0c-19.4 9.7-42.2 9.7-61.6 0L73 156.5z" + } + }, + "free": [ + "solid" + ] + }, + "glass-water-droplet": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "potable", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4f5", + "label": "Glass Water Droplet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C23.1 0 14.6 3.7 8.6 10.2S-.6 25.4 .1 34.3L28.9 437.7c3 41.9 37.8 74.3 79.8 74.3H275.3c42 0 76.8-32.4 79.8-74.3L383.9 34.3c.6-8.9-2.4-17.6-8.5-24.1S360.9 0 352 0H32zM83 297.5L66.4 64H317.6L301 297.5 288 304c-20.1 10.1-43.9 10.1-64 0s-43.9-10.1-64 0s-43.9 10.1-64 0l-13-6.5zM256 196c0-24-33.7-70.1-52.2-93.5c-6.1-7.7-17.5-7.7-23.6 0C161.7 125.9 128 172 128 196c0 33.1 28.7 60 64 60s64-26.9 64-60z" + } + }, + "free": [ + "solid" + ] + }, + "glasses": { + "aliases": { + "unicodes": { + "secondary": [ + "10f530" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hipster", + "nerd", + "reading", + "sight", + "spectacles", + "vision" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f530", + "label": "Glasses", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M118.6 80c-11.5 0-21.4 7.9-24 19.1L57 260.3c20.5-6.2 48.3-12.3 78.7-12.3c32.3 0 61.8 6.9 82.8 13.5c10.6 3.3 19.3 6.7 25.4 9.2c3.1 1.3 5.5 2.4 7.3 3.2c.9 .4 1.6 .7 2.1 1l.6 .3 .2 .1 .1 0 0 0 0 0s0 0-6.3 12.7h0l6.3-12.7c5.8 2.9 10.4 7.3 13.5 12.7h40.6c3.1-5.3 7.7-9.8 13.5-12.7l6.3 12.7h0c-6.3-12.7-6.3-12.7-6.3-12.7l0 0 0 0 .1 0 .2-.1 .6-.3c.5-.2 1.2-.6 2.1-1c1.8-.8 4.2-1.9 7.3-3.2c6.1-2.6 14.8-5.9 25.4-9.2c21-6.6 50.4-13.5 82.8-13.5c30.4 0 58.2 6.1 78.7 12.3L481.4 99.1c-2.6-11.2-12.6-19.1-24-19.1c-3.1 0-6.2 .6-9.2 1.8L416.9 94.3c-12.3 4.9-26.3-1.1-31.2-13.4s1.1-26.3 13.4-31.2l31.3-12.5c8.6-3.4 17.7-5.2 27-5.2c33.8 0 63.1 23.3 70.8 56.2l43.9 188c1.7 7.3 2.9 14.7 3.5 22.1c.3 1.9 .5 3.8 .5 5.7v6.7V352v16c0 61.9-50.1 112-112 112H419.7c-59.4 0-108.5-46.4-111.8-105.8L306.6 352H269.4l-1.2 22.2C264.9 433.6 215.8 480 156.3 480H112C50.1 480 0 429.9 0 368V352 310.7 304c0-1.9 .2-3.8 .5-5.7c.6-7.4 1.8-14.8 3.5-22.1l43.9-188C55.5 55.3 84.8 32 118.6 32c9.2 0 18.4 1.8 27 5.2l31.3 12.5c12.3 4.9 18.3 18.9 13.4 31.2s-18.9 18.3-31.2 13.4L127.8 81.8c-2.9-1.2-6-1.8-9.2-1.8zM64 325.4V368c0 26.5 21.5 48 48 48h44.3c25.5 0 46.5-19.9 47.9-45.3l2.5-45.6c-2.3-.8-4.9-1.7-7.5-2.5c-17.2-5.4-39.9-10.5-63.6-10.5c-23.7 0-46.2 5.1-63.2 10.5c-3.1 1-5.9 1.9-8.5 2.9zM512 368V325.4c-2.6-.9-5.5-1.9-8.5-2.9c-17-5.4-39.5-10.5-63.2-10.5c-23.7 0-46.4 5.1-63.6 10.5c-2.7 .8-5.2 1.7-7.5 2.5l2.5 45.6c1.4 25.4 22.5 45.3 47.9 45.3H464c26.5 0 48-21.5 48-48z" + } + }, + "free": [ + "solid" + ] + }, + "glide": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2a5", + "label": "Glide", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8.1 4.1-1.7 4.1-3.5z" + } + }, + "free": [ + "brands" + ] + }, + "glide-g": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2a6", + "label": "Glide G", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9.1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z" + } + }, + "free": [ + "brands" + ] + }, + "globe": { + "aliases": { + "unicodes": { + "composite": [ + "1f310" + ], + "secondary": [ + "10f0ac" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.9", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "all", + "coordinates", + "country", + "earth", + "global", + "globe", + "globe with meridians", + "gps", + "internet", + "language", + "localize", + "location", + "map", + "meridians", + "network", + "online", + "place", + "planet", + "translate", + "travel", + "world" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ac", + "label": "Globe", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 256c0 22.2-1.2 43.6-3.3 64H163.3c-2.2-20.4-3.3-41.8-3.3-64s1.2-43.6 3.3-64H348.7c2.2 20.4 3.3 41.8 3.3 64zm28.8-64H503.9c5.3 20.5 8.1 41.9 8.1 64s-2.8 43.5-8.1 64H380.8c2.1-20.6 3.2-42 3.2-64s-1.1-43.4-3.2-64zm112.6-32H376.7c-10-63.9-29.8-117.4-55.3-151.6c78.3 20.7 142 77.5 171.9 151.6zm-149.1 0H167.7c6.1-36.4 15.5-68.6 27-94.7c10.5-23.6 22.2-40.7 33.5-51.5C239.4 3.2 248.7 0 256 0s16.6 3.2 27.8 13.8c11.3 10.8 23 27.9 33.5 51.5c11.6 26 21 58.2 27 94.7zm-209 0H18.6C48.6 85.9 112.2 29.1 190.6 8.4C165.1 42.6 145.3 96.1 135.3 160zM8.1 192H131.2c-2.1 20.6-3.2 42-3.2 64s1.1 43.4 3.2 64H8.1C2.8 299.5 0 278.1 0 256s2.8-43.5 8.1-64zM194.7 446.6c-11.6-26-20.9-58.2-27-94.6H344.3c-6.1 36.4-15.5 68.6-27 94.6c-10.5 23.6-22.2 40.7-33.5 51.5C272.6 508.8 263.3 512 256 512s-16.6-3.2-27.8-13.8c-11.3-10.8-23-27.9-33.5-51.5zM135.3 352c10 63.9 29.8 117.4 55.3 151.6C112.2 482.9 48.6 426.1 18.6 352H135.3zm358.1 0c-30 74.1-93.6 130.9-171.9 151.6c25.5-34.2 45.2-87.7 55.3-151.6H493.4z" + } + }, + "free": [ + "solid" + ] + }, + "gofore": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a7", + "label": "Gofore", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 400, + 512 + ], + "width": 400, + "height": 512, + "path": "M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z" + } + }, + "free": [ + "brands" + ] + }, + "golang": { + "changes": [ + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e40f", + "label": "Go", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M400.1 194.8C389.2 197.6 380.2 199.1 371 202.4C363.7 204.3 356.3 206.3 347.8 208.5L347.2 208.6C343 209.8 342.6 209.9 338.7 205.4C334 200.1 330.6 196.7 324.1 193.5C304.4 183.9 285.4 186.7 267.7 198.2C246.5 211.9 235.6 232.2 235.9 257.4C236.2 282.4 253.3 302.9 277.1 306.3C299.1 309.1 316.9 301.7 330.9 285.8C333 283.2 334.9 280.5 337 277.5V277.5L337 277.5C337.8 276.5 338.5 275.4 339.3 274.2H279.2C272.7 274.2 271.1 270.2 273.3 264.9C277.3 255.2 284.8 239 289.2 230.9C290.1 229.1 292.3 225.1 296.1 225.1H397.2C401.7 211.7 409 198.2 418.8 185.4C441.5 155.5 468.1 139.9 506 133.4C537.8 127.8 567.7 130.9 594.9 149.3C619.5 166.1 634.7 188.9 638.8 218.8C644.1 260.9 631.9 295.1 602.1 324.4C582.4 345.3 557.2 358.4 528.2 364.3C522.6 365.3 517.1 365.8 511.7 366.3C508.8 366.5 506 366.8 503.2 367.1C474.9 366.5 449 358.4 427.2 339.7C411.9 326.4 401.3 310.1 396.1 291.2C392.4 298.5 388.1 305.6 382.1 312.3C360.5 341.9 331.2 360.3 294.2 365.2C263.6 369.3 235.3 363.4 210.3 344.7C187.3 327.2 174.2 304.2 170.8 275.5C166.7 241.5 176.7 210.1 197.2 184.2C219.4 155.2 248.7 136.8 284.5 130.3C313.8 124.1 341.8 128.4 367.1 145.6C383.6 156.5 395.4 171.4 403.2 189.5C405.1 192.3 403.8 193.9 400.1 194.8zM48.3 200.4C47.05 200.4 46.74 199.8 47.36 198.8L53.91 190.4C54.53 189.5 56.09 188.9 57.34 188.9H168.6C169.8 188.9 170.1 189.8 169.5 190.7L164.2 198.8C163.6 199.8 162 200.7 161.1 200.7L48.3 200.4zM1.246 229.1C0 229.1-.3116 228.4 .3116 227.5L6.855 219.1C7.479 218.2 9.037 217.5 10.28 217.5H152.4C153.6 217.5 154.2 218.5 153.9 219.4L151.4 226.9C151.1 228.1 149.9 228.8 148.6 228.8L1.246 229.1zM75.72 255.9C75.1 256.8 75.41 257.7 76.65 257.7L144.6 258C145.5 258 146.8 257.1 146.8 255.9L147.4 248.4C147.4 247.1 146.8 246.2 145.5 246.2H83.2C81.95 246.2 80.71 247.1 80.08 248.1L75.72 255.9zM577.2 237.9C577 235.3 576.9 233.1 576.5 230.9C570.9 200.1 542.5 182.6 512.9 189.5C483.9 196 465.2 214.4 458.4 243.7C452.8 268 464.6 292.6 487 302.6C504.2 310.1 521.3 309.2 537.8 300.7C562.4 287.1 575.8 268 577.4 241.2C577.3 240 577.3 238.9 577.2 237.9z" + } + }, + "free": [ + "brands" + ] + }, + "golf-ball-tee": { + "aliases": { + "names": [ + "golf-ball" + ], + "unicodes": { + "secondary": [ + "10f450" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caddy", + "eagle", + "putt", + "tee" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f450", + "label": "Golf Ball Tee", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321826, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 192c0 66.8-34.1 125.6-85.8 160H85.8C34.1 317.6 0 258.8 0 192C0 86 86 0 192 0S384 86 384 192zM242.1 256.6c0 18.5-15 33.5-33.5 33.5c-4.9 0-9.6-1.1-13.8-3c5.3 11.6 16.9 19.7 30.5 19.7c18.5 0 33.5-15 33.5-33.5c0-13.6-8.1-25.3-19.7-30.5c1.9 4.2 3 8.9 3 13.8zm-52.3-49.3c-4.9 0-9.6-1.1-13.8-3c5.3 11.6 16.9 19.7 30.5 19.7c18.5 0 33.5-15 33.5-33.5c0-13.6-8.1-25.3-19.7-30.5c1.9 4.2 3 8.9 3 13.8c0 18.5-15 33.5-33.5 33.5zm113.5-17.5c0 18.5-15 33.5-33.5 33.5c-4.9 0-9.6-1.1-13.8-3c5.3 11.6 16.9 19.7 30.5 19.7c18.5 0 33.5-15 33.5-33.5c0-13.6-8.1-25.3-19.7-30.5c1.9 4.2 3 8.9 3 13.8zM96 416c0-17.7 14.3-32 32-32h64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H240c-8.8 0-16 7.2-16 16v16c0 17.7-14.3 32-32 32s-32-14.3-32-32V464c0-8.8-7.2-16-16-16H128c-17.7 0-32-14.3-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "goodreads": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a8", + "label": "Goodreads", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8.3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9.4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2.5-1 1.1-1.9 1.7-2.9.2.1.4.1.6.2.3 3.8.2 30.7.1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z" + } + }, + "free": [ + "brands" + ] + }, + "goodreads-g": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3a9", + "label": "Goodreads G", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M42.6 403.3h2.8c12.7 0 25.5 0 38.2.1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5.1-5.8.3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3.6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3.5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3.1 332.2.1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z" + } + }, + "free": [ + "brands" + ] + }, + "google": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a0", + "label": "Google Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 488, + 512 + ], + "width": 488, + "height": 512, + "path": "M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z" + } + }, + "free": [ + "brands" + ] + }, + "google-drive": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3aa", + "label": "Google Drive", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z" + } + }, + "free": [ + "brands" + ] + }, + "google-pay": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e079", + "label": "Google Pay", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M105.72,215v41.25h57.1a49.66,49.66,0,0,1-21.14,32.6c-9.54,6.55-21.72,10.28-36,10.28-27.6,0-50.93-18.91-59.3-44.22a65.61,65.61,0,0,1,0-41l0,0c8.37-25.46,31.7-44.37,59.3-44.37a56.43,56.43,0,0,1,40.51,16.08L176.47,155a101.24,101.24,0,0,0-70.75-27.84,105.55,105.55,0,0,0-94.38,59.11,107.64,107.64,0,0,0,0,96.18v.15a105.41,105.41,0,0,0,94.38,59c28.47,0,52.55-9.53,70-25.91,20-18.61,31.41-46.15,31.41-78.91A133.76,133.76,0,0,0,205.38,215Zm389.41-4c-10.13-9.38-23.93-14.14-41.39-14.14-22.46,0-39.34,8.34-50.5,24.86l20.85,13.26q11.45-17,31.26-17a34.05,34.05,0,0,1,22.75,8.79A28.14,28.14,0,0,1,487.79,248v5.51c-9.1-5.07-20.55-7.75-34.64-7.75-16.44,0-29.65,3.88-39.49,11.77s-14.82,18.31-14.82,31.56a39.74,39.74,0,0,0,13.94,31.27c9.25,8.34,21,12.51,34.79,12.51,16.29,0,29.21-7.3,39-21.89h1v17.72h22.61V250C510.25,233.45,505.26,220.34,495.13,211ZM475.9,300.3a37.32,37.32,0,0,1-26.57,11.16A28.61,28.61,0,0,1,431,305.21a19.41,19.41,0,0,1-7.77-15.63c0-7,3.22-12.81,9.54-17.42s14.53-7,24.07-7C470,265,480.3,268,487.64,273.94,487.64,284.07,483.68,292.85,475.9,300.3Zm-93.65-142A55.71,55.71,0,0,0,341.74,142H279.07V328.74H302.7V253.1h39c16,0,29.5-5.36,40.51-15.93.88-.89,1.76-1.79,2.65-2.68A54.45,54.45,0,0,0,382.25,158.26Zm-16.58,62.23a30.65,30.65,0,0,1-23.34,9.68H302.7V165h39.63a32,32,0,0,1,22.6,9.23A33.18,33.18,0,0,1,365.67,220.49ZM614.31,201,577.77,292.7h-.45L539.9,201H514.21L566,320.55l-29.35,64.32H561L640,201Z" + } + }, + "free": [ + "brands" + ] + }, + "google-play": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ab", + "label": "Google Play", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z" + } + }, + "free": [ + "brands" + ] + }, + "google-plus": { + "changes": [ + "4.6.0", + "5.0.0", + "5.13.1" + ], + "ligatures": [], + "search": { + "terms": [ + "google-plus-circle", + "google-plus-official" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f2b3", + "label": "Google Plus", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256,8C119.1,8,8,119.1,8,256S119.1,504,256,504,504,392.9,504,256,392.9,8,256,8ZM185.3,380a124,124,0,0,1,0-248c31.3,0,60.1,11,83,32.3l-33.6,32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9,0-77.2,35.5-77.2,78.1S142.3,334,185.3,334c32.6,0,64.9-19.1,70.1-53.3H185.3V238.1H302.2a109.2,109.2,0,0,1,1.9,20.7c0,70.8-47.5,121.2-118.8,121.2ZM415.5,273.8v35.5H380V273.8H344.5V238.3H380V202.8h35.5v35.5h35.2v35.5Z" + } + }, + "free": [ + "brands" + ] + }, + "google-plus-g": { + "changes": [ + "2.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "google-plus", + "social network" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f0d5", + "label": "Google Plus G", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z" + } + }, + "free": [ + "brands" + ] + }, + "google-wallet": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1ee", + "label": "Google Wallet", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z" + } + }, + "free": [ + "brands" + ] + }, + "gopuram": { + "aliases": { + "unicodes": { + "secondary": [ + "10f664" + ] + } + }, + "changes": [ + "5.3.0", + "5.7.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "entrance", + "hinduism", + "temple", + "tower" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f664", + "label": "Gopuram", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M120 0c13.3 0 24 10.7 24 24v8h40V24c0-13.3 10.7-24 24-24s24 10.7 24 24v8h48V24c0-13.3 10.7-24 24-24s24 10.7 24 24v8h40V24c0-13.3 10.7-24 24-24s24 10.7 24 24v8V64v64c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32v96c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H416V352H384V224H352V128H320v96h32V352h32V512H304V464c0-26.5-21.5-48-48-48s-48 21.5-48 48v48H128V352h32V224h32V128H160v96H128V352H96V512H32c-17.7 0-32-14.3-32-32V384c0-17.7 14.3-32 32-32V256c0-17.7 14.3-32 32-32V160c0-17.7 14.3-32 32-32V64 32 24c0-13.3 10.7-24 24-24zM256 272c-17.7 0-32 14.3-32 32v48h64V304c0-17.7-14.3-32-32-32zm-32-80v32h64V192c0-17.7-14.3-32-32-32s-32 14.3-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "graduation-cap": { + "aliases": { + "names": [ + "mortar-board" + ], + "unicodes": { + "composite": [ + "1f393" + ], + "secondary": [ + "10f19d" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.2.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cap", + "celebration", + "ceremony", + "clothing", + "college", + "graduate", + "graduation", + "graduation cap", + "hat", + "learning", + "school", + "student" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f19d", + "label": "Graduation Cap", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 32c-8.1 0-16.1 1.4-23.7 4.1L15.8 137.4C6.3 140.9 0 149.9 0 160s6.3 19.1 15.8 22.6l57.9 20.9C57.3 229.3 48 259.8 48 291.9v28.1c0 28.4-10.8 57.7-22.3 80.8c-6.5 13-13.9 25.8-22.5 37.6C0 442.7-.9 448.3 .9 453.4s6 8.9 11.2 10.2l64 16c4.2 1.1 8.7 .3 12.4-2s6.3-6.1 7.1-10.4c8.6-42.8 4.3-81.2-2.1-108.7C90.3 344.3 86 329.8 80 316.5V291.9c0-30.2 10.2-58.7 27.9-81.5c12.9-15.5 29.6-28 49.2-35.7l157-61.7c8.2-3.2 17.5 .8 20.7 9s-.8 17.5-9 20.7l-157 61.7c-12.4 4.9-23.3 12.4-32.2 21.6l159.6 57.6c7.6 2.7 15.6 4.1 23.7 4.1s16.1-1.4 23.7-4.1L624.2 182.6c9.5-3.4 15.8-12.5 15.8-22.6s-6.3-19.1-15.8-22.6L343.7 36.1C336.1 33.4 328.1 32 320 32zM128 408c0 35.3 86 72 192 72s192-36.7 192-72L496.7 262.6 354.5 314c-11.1 4-22.8 6-34.5 6s-23.5-2-34.5-6L143.3 262.6 128 408z" + } + }, + "free": [ + "solid" + ] + }, + "gratipay": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "like", + "love" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f184", + "label": "Gratipay (Gittip)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z" + } + }, + "free": [ + "brands" + ] + }, + "grav": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2d6", + "label": "Grav", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8.8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1.3-6.4 0-13-9.4-24.9 3.9-12.5.3-22.4.3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8.1-.2.3-.4.4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7.3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z" + } + }, + "free": [ + "brands" + ] + }, + "greater-than": { + "aliases": { + "unicodes": { + "composite": [ + "f531" + ], + "primary": [ + "f531" + ], + "secondary": [ + "103e", + "10f531" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Greater-Than Sign", + "arithmetic", + "compare", + "math" + ] + }, + "styles": [ + "solid" + ], + "unicode": "3e", + "label": "Greater Than", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M3.4 81.7c-7.9 15.8-1.5 35 14.3 42.9L280.5 256 17.7 387.4C1.9 395.3-4.5 414.5 3.4 430.3s27.1 22.2 42.9 14.3l320-160c10.8-5.4 17.7-16.5 17.7-28.6s-6.8-23.2-17.7-28.6l-320-160c-15.8-7.9-35-1.5-42.9 14.3z" + } + }, + "free": [ + "solid" + ] + }, + "greater-than-equal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f532" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "compare", + "math" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f532", + "label": "Greater Than Equal", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M52.1 93.7C35.7 87.1 27.7 68.5 34.3 52.1s25.2-24.4 41.6-17.8l320 128C408 167.1 416 178.9 416 192s-8 24.9-20.1 29.7l-320 128c-16.4 6.6-35-1.4-41.6-17.8s1.4-35 17.8-41.6L297.8 192 52.1 93.7zM416 416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416z" + } + }, + "free": [ + "solid" + ] + }, + "grip": { + "aliases": { + "names": [ + "grip-horizontal" + ], + "unicodes": { + "secondary": [ + "10f58d" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f58d", + "label": "Grip", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 136c0-22.1-17.9-40-40-40L40 96C17.9 96 0 113.9 0 136l0 48c0 22.1 17.9 40 40 40H88c22.1 0 40-17.9 40-40V136zm0 192c0-22.1-17.9-40-40-40H40c-22.1 0-40 17.9-40 40v48c0 22.1 17.9 40 40 40H88c22.1 0 40-17.9 40-40V328zm32-192v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V136c0-22.1-17.9-40-40-40l-48 0c-22.1 0-40 17.9-40 40zM288 328c0-22.1-17.9-40-40-40H200c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V328zm32-192v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V136c0-22.1-17.9-40-40-40l-48 0c-22.1 0-40 17.9-40 40zM448 328c0-22.1-17.9-40-40-40H360c-22.1 0-40 17.9-40 40v48c0 22.1 17.9 40 40 40h48c22.1 0 40-17.9 40-40V328z" + } + }, + "free": [ + "solid" + ] + }, + "grip-lines": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7a4" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7a4", + "label": "Grip Lines", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 288c-17.7 0-32 14.3-32 32s14.3 32 32 32l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 288zm0-128c-17.7 0-32 14.3-32 32s14.3 32 32 32l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 160z" + } + }, + "free": [ + "solid" + ] + }, + "grip-lines-vertical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7a5" + ] + } + }, + "changes": [ + "5.6.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7a5", + "label": "Grip Lines Vertical", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 192, + 512 + ], + "width": 192, + "height": 512, + "path": "M64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64zm128 0c0-17.7-14.3-32-32-32s-32 14.3-32 32V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64z" + } + }, + "free": [ + "solid" + ] + }, + "grip-vertical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f58e" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affordance", + "drag", + "drop", + "grab", + "handle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f58e", + "label": "Grip Vertical", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M40 352c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0zm192 0c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0zM40 320l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40zM232 192c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0zM40 160l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40L40 32C17.9 32 0 49.9 0 72l0 48c0 22.1 17.9 40 40 40zM232 32c-22.1 0-40 17.9-40 40l0 48c0 22.1 17.9 40 40 40l48 0c22.1 0 40-17.9 40-40l0-48c0-22.1-17.9-40-40-40l-48 0z" + } + }, + "free": [ + "solid" + ] + }, + "gripfire": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ac", + "label": "Gripfire, Inc.", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M112.5 301.4c0-73.8 105.1-122.5 105.1-203 0-47.1-34-88-39.1-90.4.4 3.3.6 6.7.6 10C179.1 110.1 32 171.9 32 286.6c0 49.8 32.2 79.2 66.5 108.3 65.1 46.7 78.1 71.4 78.1 86.6 0 10.1-4.8 17-4.8 22.3 13.1-16.7 17.4-31.9 17.5-46.4 0-29.6-21.7-56.3-44.2-86.5-16-22.3-32.6-42.6-32.6-69.5zm205.3-39c-12.1-66.8-78-124.4-94.7-130.9l4 7.2c2.4 5.1 3.4 10.9 3.4 17.1 0 44.7-54.2 111.2-56.6 116.7-2.2 5.1-3.2 10.5-3.2 15.8 0 20.1 15.2 42.1 17.9 42.1 2.4 0 56.6-55.4 58.1-87.7 6.4 11.7 9.1 22.6 9.1 33.4 0 41.2-41.8 96.9-41.8 96.9 0 11.6 31.9 53.2 35.5 53.2 1 0 2.2-1.4 3.2-2.4 37.9-39.3 67.3-85 67.3-136.8 0-8-.7-16.2-2.2-24.6z" + } + }, + "free": [ + "brands" + ] + }, + "group-arrows-rotate": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "community", + "engagement", + "spin", + "sync" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4f6", + "label": "Group Arrows Rotate", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192.1 71.9c16.9-5 26.6-22.9 21.5-39.8s-22.9-26.6-39.8-21.5c-21.5 6.4-41.8 15.5-60.6 27C105.3 34 96.4 32 87 32C51.7 32 23 60.7 23 96c0 9.4 2 18.3 5.6 26.3C17.2 141 8 161.4 1.6 182.9c-5 16.9 4.6 34.8 21.5 39.8s34.8-4.6 39.8-21.5c4.3-14.6 10.4-28.5 17.9-41.4c2 .2 4.1 .3 6.1 .3c35.3 0 64-28.7 64-64c0-2.1-.1-4.1-.3-6.1c12.9-7.5 26.8-13.6 41.4-17.9zm128-61.3c-16.9-5-34.8 4.6-39.8 21.5s4.6 34.8 21.5 39.8c14.6 4.3 28.5 10.4 41.4 17.9c-.2 2-.3 4.1-.3 6.1c0 35.3 28.7 64 64 64c2.1 0 4.1-.1 6.2-.3c7.5 12.9 13.6 26.8 17.9 41.4c5 16.9 22.9 26.6 39.8 21.5s26.6-22.9 21.5-39.8c-6.4-21.5-15.5-41.8-27-60.6c3.6-8 5.6-16.9 5.6-26.3c0-35.3-28.7-64-64-64c-9.4 0-18.3 2-26.3 5.6c-18.7-11.5-39-20.6-60.6-27zM62.9 310.9c-5-16.9-22.9-26.6-39.8-21.5s-26.6 22.9-21.5 39.8c6.4 21.5 15.5 41.8 27 60.6C25 397.7 23 406.6 23 416c0 35.3 28.7 64 64 64c9.4 0 18.3-2 26.3-5.6c18.7 11.5 39 20.6 60.6 27c16.9 5 34.8-4.6 39.8-21.5s-4.6-34.8-21.5-39.8c-14.6-4.3-28.5-10.4-41.4-17.9c.2-2 .3-4.1 .3-6.2c0-35.3-28.7-64-64-64c-2.1 0-4.1 .1-6.2 .3c-7.5-12.9-13.6-26.8-17.9-41.4zm429.4 18.3c5-16.9-4.6-34.8-21.5-39.8s-34.8 4.6-39.8 21.5c-4.3 14.6-10.4 28.5-17.9 41.4c-2-.2-4.1-.3-6.2-.3c-35.3 0-64 28.7-64 64c0 2.1 .1 4.1 .3 6.2c-12.9 7.5-26.8 13.6-41.4 17.9c-16.9 5-26.6 22.9-21.5 39.8s22.9 26.6 39.8 21.5c21.5-6.4 41.8-15.5 60.6-27c8 3.6 16.9 5.6 26.3 5.6c35.3 0 64-28.7 64-64c0-9.4-2-18.3-5.6-26.3c11.5-18.7 20.6-39 27-60.6zM183.8 256.8c0-15.6 5.6-29.9 14.9-41.1L214 231c6.6 6.6 17.8 1.9 17.8-7.4V163.2c0-5.7-4.7-10.4-10.4-10.4H160.9c-9.3 0-13.9 11.2-7.4 17.8l11.2 11.2c-17.9 19.8-28.9 46.2-28.9 75.1c0 43.6 24.9 81.3 61.1 99.8c11.8 6 26.3 1.4 32.3-10.4s1.4-26.3-10.4-32.3c-20.8-10.6-34.9-32.2-34.9-57zm93.1-58.6c20.8 10.6 34.9 32.2 34.9 57c0 15.6-5.6 29.9-14.9 41.1L281.6 281c-6.6-6.6-17.8-1.9-17.8 7.4v60.5c0 5.7 4.7 10.4 10.4 10.4h60.5c9.3 0 13.9-11.2 7.4-17.8l-11.2-11.2c17.9-19.8 28.9-46.2 28.9-75.1c0-43.6-24.9-81.3-61.1-99.8c-11.8-6-26.3-1.4-32.3 10.4s-1.4 26.3 10.4 32.3z" + } + }, + "free": [ + "solid" + ] + }, + "grunt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ad", + "label": "Grunt", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1.7-7.5 2.2-12.8 4-16.6.4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm142.1 45.8c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm62.7-45.8c3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6 7.5-11.4 25.4-26 44.9-37zM160 418.5h-29.4c-5.5 0-8.2 1.6-9.5 2.9-1.9 2-2.2 4.7-.9 8.1 3.5 9.1 11.4 16.5 13.7 18.6 3.1 2.7 7.5 4.3 11.8 4.3 4.4 0 8.3-1.7 11-4.6 7.5-8.2 11.9-17.1 13-19.8.6-1.5 1.3-4.5-.9-6.8-1.8-1.8-4.7-2.7-8.8-2.7zm189.2-101.2c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6.6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1.4-4.7.8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5.9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3.2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7.3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7.5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2.8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6.7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4.1-6.6.5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4.3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6.9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7.2.2.4.3.4.3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1.4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5.6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9.7.6 1.5 1.2 2.2 1.8l.5.4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6.9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3.3-11.7.7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2.9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6.9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59zM191.9 187.7h.2c12.7-.1 27.2-17.8 27.2-17.8-9.9 6-18.8 8.1-27.3 8.3-8.5-.2-17.4-2.3-27.3-8.3 0 0 14.5 17.6 27.2 17.8zm61.7 230.7h-29.4c-4.2 0-7.2.9-8.9 2.7-2.2 2.3-1.5 5.2-.9 6.7 1 2.6 5.5 11.3 13 19.3 2.7 2.9 6.6 4.5 11 4.5s8.7-1.6 11.8-4.2c2.3-2 10.2-9.2 13.7-18.1 1.3-3.3 1-6-.9-7.9-1.3-1.3-4-2.9-9.4-3z" + } + }, + "free": [ + "brands" + ] + }, + "guarani-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Guarani Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e19a", + "label": "Guarani Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 0c-17.7 0-32 14.3-32 32V66.7C69.2 81.9 0 160.9 0 256s69.2 174.1 160 189.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V445.3c90.8-15.2 160-94.2 160-189.3c0-17.7-14.3-32-32-32H224V132c22.1 5.7 41.8 17.1 57.6 32.6c12.6 12.4 32.9 12.2 45.3-.4s12.2-32.9-.5-45.3C299 92 263.5 73.3 224 66.7V32c0-17.7-14.3-32-32-32zM160 132V380c-55.2-14.2-96-64.3-96-124s40.8-109.8 96-124zM224 380V288h92c-11.6 45-47 80.4-92 92z" + } + }, + "free": [ + "solid" + ] + }, + "guilded": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e07e", + "label": "Guilded", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M443.427,64H4.571c0,103.26,22.192,180.06,43.418,222.358C112.046,414.135,224,448,225.256,448a312.824,312.824,0,0,0,140.55-103.477c25.907-33.923,53.1-87.19,65.916-145.761H171.833c4.14,36.429,22.177,67.946,45.1,86.944h88.589c-17.012,28.213-48.186,54.4-80.456,69.482-31.232-13.259-69.09-46.544-96.548-98.362-26.726-53.833-27.092-105.883-27.092-105.883H437.573A625.91,625.91,0,0,0,443.427,64Z" + } + }, + "free": [ + "brands" + ] + }, + "guitar": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7a6" + ] + } + }, + "changes": [ + "5.6.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acoustic", + "instrument", + "music", + "rock", + "rock and roll", + "song", + "strings" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7a6", + "label": "Guitar", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M465 7c-9.4-9.4-24.6-9.4-33.9 0L383 55c-2.4 2.4-4.3 5.3-5.5 8.5l-15.4 41-77.5 77.6c-45.1-29.4-99.3-30.2-131 1.6c-11 11-18 24.6-21.4 39.6c-3.7 16.6-19.1 30.7-36.1 31.6c-25.6 1.3-49.3 10.7-67.3 28.6C-16 328.4-7.6 409.4 47.5 464.5s136.1 63.5 180.9 18.7c17.9-17.9 27.4-41.7 28.6-67.3c.9-17 15-32.3 31.6-36.1c15-3.4 28.6-10.5 39.6-21.4c31.8-31.8 31-85.9 1.6-131l77.6-77.6 41-15.4c3.2-1.2 6.1-3.1 8.5-5.5l48-48c9.4-9.4 9.4-24.6 0-33.9L465 7zM208 256a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + }, + "free": [ + "solid" + ] + }, + "gulp": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ae", + "label": "Gulp", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7.9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3.2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5.9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9.1-1.8.3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6.8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5.6.2 1.1.4 1.6.7 2.6 1.8 1.6 4.5.3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3.5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4.5 3.2 1.5 1.7 2.2 1.3 4.5.4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9.9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2.4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3.5-.4.9-.6.6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3.8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7.2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3.9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3.2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8.1 26.3.4l12.6-48.7L228.1.6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1.1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2.8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2.1-.3l.2-.7c-1.8.6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7.1 13.9-1.6 13.9-3.7z" + } + }, + "free": [ + "brands" + ] + }, + "gun": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "firearm", + "pistol", + "weapon" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e19b", + "label": "Gun", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M528 56c0-13.3-10.7-24-24-24s-24 10.7-24 24v8H32C14.3 64 0 78.3 0 96V208c0 17.7 14.3 32 32 32H42c20.8 0 36.1 19.6 31 39.8L33 440.2c-2.4 9.6-.2 19.7 5.8 27.5S54.1 480 64 480h96c14.7 0 27.5-10 31-24.2L217 352H321.4c23.7 0 44.8-14.9 52.7-37.2L400.9 240H432c8.5 0 16.6-3.4 22.6-9.4L477.3 208H544c17.7 0 32-14.3 32-32V96c0-17.7-14.3-32-32-32H528V56zM321.4 304H229l16-64h105l-21 58.7c-1.1 3.2-4.2 5.3-7.5 5.3zM80 128H464c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "h": { + "aliases": { + "unicodes": { + "composite": [ + "68" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter H", + "Latin Small Letter H", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "48", + "label": "H", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 256l0 192c0 17.7 14.3 32 32 32s32-14.3 32-32l0-224V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V192L64 192 64 64c0-17.7-14.3-32-32-32S0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32l0-192 256 0z" + } + }, + "free": [ + "solid" + ] + }, + "hacker-news": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d4", + "label": "Hacker News", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm21.2 197.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" + } + }, + "free": [ + "brands" + ] + }, + "hackerrank": { + "changes": [ + "5.2.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5f7", + "label": "Hackerrank", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M477.5 128C463 103.05 285.13 0 256.16 0S49.25 102.79 34.84 128s-14.49 230.8 0 256 192.38 128 221.32 128S463 409.08 477.49 384s14.51-231 .01-256zM316.13 414.22c-4 0-40.91-35.77-38-38.69.87-.87 6.26-1.48 17.55-1.83 0-26.23.59-68.59.94-86.32 0-2-.44-3.43-.44-5.85h-79.93c0 7.1-.46 36.2 1.37 72.88.23 4.54-1.58 6-5.74 5.94-10.13 0-20.27-.11-30.41-.08-4.1 0-5.87-1.53-5.74-6.11.92-33.44 3-84-.15-212.67v-3.17c-9.67-.35-16.38-1-17.26-1.84-2.92-2.92 34.54-38.69 38.49-38.69s41.17 35.78 38.27 38.69c-.87.87-7.9 1.49-16.77 1.84v3.16c-2.42 25.75-2 79.59-2.63 105.39h80.26c0-4.55.39-34.74-1.2-83.64-.1-3.39.95-5.17 4.21-5.2 11.07-.08 22.15-.13 33.23-.06 3.46 0 4.57 1.72 4.5 5.38C333 354.64 336 341.29 336 373.69c8.87.35 16.82 1 17.69 1.84 2.88 2.91-33.62 38.69-37.58 38.69z" + } + }, + "free": [ + "brands" + ] + }, + "hammer": { + "aliases": { + "unicodes": { + "composite": [ + "1f528" + ], + "secondary": [ + "10f6e3" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "fix", + "hammer", + "recovery", + "repair", + "settings", + "tool" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6e3", + "label": "Hammer", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M413.5 237.5c-28.2 4.8-58.2-3.6-80-25.4l-38.1-38.1C280.4 159 272 138.8 272 117.6V105.5L192.3 62c-5.3-2.9-8.6-8.6-8.3-14.7s3.9-11.5 9.5-14l47.2-21C259.1 4.2 279 0 299.2 0h18.1c36.7 0 72 14 98.7 39.1l44.6 42c24.2 22.8 33.2 55.7 26.6 86L503 183l8-8c9.4-9.4 24.6-9.4 33.9 0l24 24c9.4 9.4 9.4 24.6 0 33.9l-88 88c-9.4 9.4-24.6 9.4-33.9 0l-24-24c-9.4-9.4-9.4-24.6 0-33.9l8-8-17.5-17.5zM27.4 377.1L260.9 182.6c3.5 4.9 7.5 9.6 11.8 14l38.1 38.1c6 6 12.4 11.2 19.2 15.7L134.9 484.6c-14.5 17.4-36 27.4-58.6 27.4C34.1 512 0 477.8 0 435.7c0-22.6 10.1-44.1 27.4-58.6z" + } + }, + "free": [ + "solid" + ] + }, + "hamsa": { + "aliases": { + "unicodes": { + "secondary": [ + "10f665" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "amulet", + "christianity", + "islam", + "jewish", + "judaism", + "muslim", + "protection" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f665", + "label": "Hamsa", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M34.6 288H80c8.8 0 16-7.2 16-16V72c0-22.1 17.9-40 40-40s40 17.9 40 40V204c0 11 9 20 20 20s20-9 20-20V40c0-22.1 17.9-40 40-40s40 17.9 40 40V204c0 11 9 20 20 20s20-9 20-20V72c0-22.1 17.9-40 40-40s40 17.9 40 40V272c0 8.8 7.2 16 16 16h45.4c19.1 0 34.6 15.5 34.6 34.6c0 8.6-3.2 16.9-9 23.3L416.6 441c-41.1 45.2-99.4 71-160.6 71s-119.4-25.8-160.6-71L9 345.9c-5.8-6.4-9-14.7-9-23.3C0 303.5 15.5 288 34.6 288zM256 288c-38.4 0-76.8 35.8-90.6 50.2c-3.6 3.7-5.4 8.7-5.4 13.8s1.8 10.1 5.4 13.8C179.2 380.2 217.6 416 256 416s76.8-35.8 90.6-50.2c3.6-3.7 5.4-8.7 5.4-13.8s-1.8-10.1-5.4-13.8C332.8 323.8 294.4 288 256 288zm0 32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "hand": { + "aliases": { + "names": [ + "hand-paper" + ], + "unicodes": { + "composite": [ + "1f91a", + "270b" + ], + "secondary": [ + "10f256" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Raised Hand", + "backhand", + "game", + "halt", + "palm", + "raised", + "raised back of hand", + "roshambo", + "stop" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f256", + "label": "Hand", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V336c0 1.5 0 3.1 .1 4.6L67.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6L124.8 448c43.1 41.1 100.4 64 160 64H304c97.2 0 176-78.8 176-176V128c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V32z" + }, + "regular": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c-25.3 0-47.2 14.7-57.6 36c-7-2.6-14.5-4-22.4-4c-35.3 0-64 28.7-64 64V261.5l-2.7-2.7c-25-25-65.5-25-90.5 0s-25 65.5 0 90.5L106.5 437c48 48 113.1 75 181 75H296h8c1.5 0 3-.1 4.5-.4c91.7-6.2 165-79.4 171.1-171.1c.3-1.5 .4-3 .4-4.5V160c0-35.3-28.7-64-64-64c-5.5 0-10.9 .7-16 2V96c0-35.3-28.7-64-64-64c-7.9 0-15.4 1.4-22.4 4C303.2 14.7 281.3 0 256 0zM240 96.1c0 0 0-.1 0-.1V64c0-8.8 7.2-16 16-16s16 7.2 16 16V95.9c0 0 0 .1 0 .1V232c0 13.3 10.7 24 24 24s24-10.7 24-24V96c0 0 0 0 0-.1c0-8.8 7.2-16 16-16s16 7.2 16 16v55.9c0 0 0 .1 0 .1v80c0 13.3 10.7 24 24 24s24-10.7 24-24V160.1c0 0 0-.1 0-.1c0-8.8 7.2-16 16-16s16 7.2 16 16V332.9c-.1 .6-.1 1.3-.2 1.9c-3.4 69.7-59.3 125.6-129 129c-.6 0-1.3 .1-1.9 .2H296h-8.5c-55.2 0-108.1-21.9-147.1-60.9L52.7 315.3c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L119 336.4c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V96c0-8.8 7.2-16 16-16c8.8 0 16 7.1 16 15.9V232c0 13.3 10.7 24 24 24s24-10.7 24-24V96.1z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "hand-back-fist": { + "aliases": { + "names": [ + "hand-rock" + ], + "unicodes": { + "secondary": [ + "10f255" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fist", + "game", + "roshambo" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f255", + "label": "Hand Back Fist", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 0C101.5 0 80 21.5 80 48V96v28.5V176c0 8.8-7.2 16-16 16s-16-7.2-16-16V149.3l-9 7.5C24.4 169 16 187 16 206V244c0 38 16.9 74 46.1 98.3L112 384v96c0 17.7 14.3 32 32 32H304c17.7 0 32-14.3 32-32V374.7c46.9-19 80-65 80-118.7V176 160 144c0-26.5-21.5-48-48-48c-12.4 0-23.6 4.7-32.1 12.3C334 83.5 313.3 64 288 64c-12.4 0-23.6 4.7-32.1 12.3C254 51.5 233.3 32 208 32c-12.4 0-23.6 4.7-32.1 12.3C174 19.5 153.3 0 128 0z" + }, + "regular": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M112 64c0-8.8 7.2-16 16-16s16 7.2 16 16c0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2c8.8 0 16 7.2 16 16c0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2c8.8 0 16 7.2 16 16c0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2c8.8 0 16 7.2 16 16V264c0 31.3-20 58-48 67.9c-9.6 3.4-16 12.5-16 22.6V488c0 13.3 10.7 24 24 24s24-10.7 24-24V370.2c38-20.1 64-60.1 64-106.2V160c0-35.3-28.7-64-64-64c-2.8 0-5.6 .2-8.3 .5C300.8 77.1 279.9 64 256 64c-2.8 0-5.6 .2-8.3 .5C236.8 45.1 215.9 32 192 32c-2.8 0-5.6 .2-8.3 .5C172.8 13.1 151.9 0 128 0C92.7 0 64 28.7 64 64v64.3c-11.7 7.4-22.5 16.4-32 26.9l17.8 16.1L32 155.2l-9.4 10.5C8 181.8 0 202.8 0 224.6v12.8C0 287 24.2 333.4 64.8 361.9l13.8-19.7L64.8 361.9l8.9 6.2c6.9 4.8 14.4 8.6 22.3 11.3V488c0 13.3 10.7 24 24 24s24-10.7 24-24V359.9c0-12.6-9.8-23.1-22.4-23.9c-7.3-.5-14.3-2.9-20.3-7.1L88.2 347.5l13.1-18.7-8.9-6.2C64.6 303.1 48 271.3 48 237.4V224.6c0-9.9 3.7-19.4 10.3-26.8l9.4-10.5c3.8-4.2 7.9-8.1 12.3-11.6V208c0 8.8 7.2 16 16 16s16-7.2 16-16V142.3 128 64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "hand-dots": { + "aliases": { + "names": [ + "allergies" + ], + "unicodes": { + "secondary": [ + "10f461" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "allergy", + "freckles", + "hand", + "hives", + "palm", + "pox", + "skin", + "spots" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f461", + "label": "Hand Dots", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V336c0 1.5 0 3.1 .1 4.6L67.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6L124.8 448c43.1 41.1 100.4 64 160 64H304c97.2 0 176-78.8 176-176V128c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V32zM240 336a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm80 16a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm48-16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm-16 80a16 16 0 1 1 0 32 16 16 0 1 1 0-32zM240 432a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm-48-48a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + }, + "free": [ + "solid" + ] + }, + "hand-fist": { + "aliases": { + "names": [ + "fist-raised" + ], + "unicodes": { + "composite": [ + "270a" + ], + "secondary": [ + "10f6de" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "clenched", + "d&d", + "dnd", + "fantasy", + "fist", + "hand", + "ki", + "monk", + "punch", + "raised fist", + "resist", + "strength", + "unarmed combat" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6de", + "label": "Hand Fist", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M160 0c17.7 0 32 14.3 32 32V144H128V32c0-17.7 14.3-32 32-32zM32 64c0-17.7 14.3-32 32-32s32 14.3 32 32v80H32V64zm192 0c0-17.7 14.3-32 32-32s32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V64zm96 64c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V128zm-96 88l0-.6c9.4 5.4 20.3 8.6 32 8.6c13.2 0 25.4-4 35.6-10.8c8.7 24.9 32.5 42.8 60.4 42.8c11.7 0 22.6-3.1 32-8.6V256c0 52.3-25.1 98.8-64 128v96c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V401.6c-17.3-7.9-33.2-18.8-46.9-32.5L37.5 357.5C13.5 333.5 0 300.9 0 267V240c0-35.3 28.7-64 64-64h88c22.1 0 40 17.9 40 40s-17.9 40-40 40H96c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72z" + } + }, + "free": [ + "solid" + ] + }, + "hand-holding": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4bd" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "lift" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4bd", + "label": "Hand Holding", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M559.7 392.2c17.8-13.1 21.6-38.1 8.5-55.9s-38.1-21.6-55.9-8.5L392.6 416H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h16 64c17.7 0 32-14.3 32-32s-14.3-32-32-32H288 272 193.7c-29.1 0-57.3 9.9-80 28L68.8 384H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H192 352.5c29 0 57.3-9.3 80.7-26.5l126.6-93.3zm-366.1-8.3a.5 .5 0 1 1 -.9 .1 .5 .5 0 1 1 .9-.1z" + } + }, + "free": [ + "solid" + ] + }, + "hand-holding-dollar": { + "aliases": { + "names": [ + "hand-holding-usd" + ], + "unicodes": { + "secondary": [ + "10f4c0" + ] + } + }, + "changes": [ + "5.0.9", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "$", + "carry", + "dollar sign", + "donation", + "giving", + "lift", + "money", + "price" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4c0", + "label": "Hand Holding Dollar", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M312 24V34.5c6.4 1.2 12.6 2.7 18.2 4.2c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17c-10.9-2.9-21.1-4.9-30.2-5c-7.3-.1-14.7 1.7-19.4 4.4c-2.1 1.3-3.1 2.4-3.5 3c-.3 .5-.7 1.2-.7 2.8c0 .3 0 .5 0 .6c.2 .2 .9 1.2 3.3 2.6c5.8 3.5 14.4 6.2 27.4 10.1l.9 .3 0 0c11.1 3.3 25.9 7.8 37.9 15.3c13.7 8.6 26.1 22.9 26.4 44.9c.3 22.5-11.4 38.9-26.7 48.5c-6.7 4.1-13.9 7-21.3 8.8V232c0 13.3-10.7 24-24 24s-24-10.7-24-24V220.6c-9.5-2.3-18.2-5.3-25.6-7.8c-2.1-.7-4.1-1.4-6-2c-12.6-4.2-19.4-17.8-15.2-30.4s17.8-19.4 30.4-15.2c2.6 .9 5 1.7 7.3 2.5c13.6 4.6 23.4 7.9 33.9 8.3c8 .3 15.1-1.6 19.2-4.1c1.9-1.2 2.8-2.2 3.2-2.9c.4-.6 .9-1.8 .8-4.1l0-.2c0-1 0-2.1-4-4.6c-5.7-3.6-14.3-6.4-27.1-10.3l-1.9-.6c-10.8-3.2-25-7.5-36.4-14.4c-13.5-8.1-26.5-22-26.6-44.1c-.1-22.9 12.9-38.6 27.7-47.4c6.4-3.8 13.3-6.4 20.2-8.2V24c0-13.3 10.7-24 24-24s24 10.7 24 24zM568.2 336.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 485.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 384l0 0-.9 0c.3 0 .6 0 .9 0z" + } + }, + "free": [ + "solid" + ] + }, + "hand-holding-droplet": { + "aliases": { + "names": [ + "hand-holding-water" + ], + "unicodes": { + "secondary": [ + "10f4c1" + ] + } + }, + "changes": [ + "5.0.9", + "5.13.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "covid-19", + "drought", + "grow", + "lift", + "sanitation" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4c1", + "label": "Hand Holding Droplet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M275.5 6.6C278.3 2.5 283 0 288 0s9.7 2.5 12.5 6.6L366.8 103C378 119.3 384 138.6 384 158.3V160c0 53-43 96-96 96s-96-43-96-96v-1.7c0-19.8 6-39 17.2-55.3L275.5 6.6zM568.2 336.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 485.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 384l0 0-.9 0c.3 0 .6 0 .9 0z" + } + }, + "free": [ + "solid" + ] + }, + "hand-holding-hand": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "care", + "give", + "help", + "hold", + "protect" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4f7", + "label": "Hand Holding Hand", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M7.8 207.7c-13.1-17.8-9.3-42.8 8.5-55.9L142.9 58.5C166.2 41.3 194.5 32 223.5 32H384 544c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H507.2l-44.9 36c-22.7 18.2-50.9 28-80 28H304 288 224c-17.7 0-32-14.3-32-32s14.3-32 32-32h64 16c8.8 0 16-7.2 16-16s-7.2-16-16-16H183.4L63.7 216.2c-17.8 13.1-42.8 9.3-55.9-8.5zM382.4 160l0 0 .9 0c-.3 0-.6 0-.9 0zM568.2 304.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 453.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V384c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 352l0 0-.9 0c.3 0 .6 0 .9 0z" + } + }, + "free": [ + "solid" + ] + }, + "hand-holding-heart": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4be" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "charity", + "gift", + "lift", + "package" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4be", + "label": "Hand Holding Heart", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M148 76.6C148 34.3 182.3 0 224.6 0c20.3 0 39.8 8.1 54.1 22.4l9.3 9.3 9.3-9.3C311.6 8.1 331.1 0 351.4 0C393.7 0 428 34.3 428 76.6c0 20.3-8.1 39.8-22.4 54.1L302.1 234.1c-7.8 7.8-20.5 7.8-28.3 0L170.4 130.7C156.1 116.4 148 96.9 148 76.6zM568.2 336.3c13.1 17.8 9.3 42.8-8.5 55.9L433.1 485.5c-23.4 17.2-51.6 26.5-80.7 26.5H192 32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32H68.8l44.9-36c22.7-18.2 50.9-28 80-28H272h16 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H288 272c-8.8 0-16 7.2-16 16s7.2 16 16 16H392.6l119.7-88.2c17.8-13.1 42.8-9.3 55.9 8.5zM193.6 384l0 0-.9 0c.3 0 .6 0 .9 0z" + } + }, + "free": [ + "solid" + ] + }, + "hand-holding-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10e05c" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "care", + "covid-19", + "donate", + "help" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e05c", + "label": "Hand Holding Medical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M224 24V80H168c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h56v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V176h56c13.3 0 24-10.7 24-24V104c0-13.3-10.7-24-24-24H320V24c0-13.3-10.7-24-24-24H248c-13.3 0-24 10.7-24 24zM559.7 392.2c17.8-13.1 21.6-38.1 8.5-55.9s-38.1-21.6-55.9-8.5L392.6 416H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h16 64c17.7 0 32-14.3 32-32s-14.3-32-32-32H288 272 193.7c-29.1 0-57.3 9.9-80 28L68.8 384H32c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H192 352.5c29 0 57.3-9.3 80.7-26.5l126.6-93.3zm-367-8.2l.9 0 0 0c-.3 0-.6 0-.9 0z" + } + }, + "free": [ + "solid" + ] + }, + "hand-lizard": { + "aliases": { + "unicodes": { + "secondary": [ + "10f258" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "game", + "roshambo" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f258", + "label": "Hand Lizard", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 112C0 85.5 21.5 64 48 64H160h80 46.5c36.8 0 71.2 18 92.1 48.2l113.5 164c13 18.7 19.9 41 19.9 63.8v12 16 48c0 17.7-14.3 32-32 32H384c-17.7 0-32-14.3-32-32V402.2L273.9 352H240 160 112c-26.5 0-48-21.5-48-48s21.5-48 48-48h48 80c26.5 0 48-21.5 48-48s-21.5-48-48-48H160 48c-26.5 0-48-21.5-48-48z" + }, + "regular": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M72 112c-13.3 0-24 10.7-24 24s10.7 24 24 24H240c35.3 0 64 28.7 64 64s-28.7 64-64 64H136c-13.3 0-24 10.7-24 24s10.7 24 24 24H288c4.5 0 8.9 1.3 12.7 3.6l64 40c7 4.4 11.3 12.1 11.3 20.4v24c0 13.3-10.7 24-24 24s-24-10.7-24-24V413.3L281.1 384H136c-39.8 0-72-32.2-72-72s32.2-72 72-72H240c8.8 0 16-7.2 16-16s-7.2-16-16-16H72c-39.8 0-72-32.2-72-72S32.2 64 72 64H281.6c46.7 0 90.9 21.5 119.7 58.3l78.4 100.1c20.9 26.7 32.3 59.7 32.3 93.7V424c0 13.3-10.7 24-24 24s-24-10.7-24-24V316.1c0-23.2-7.8-45.8-22.1-64.1L363.5 151.9c-19.7-25.2-49.9-39.9-81.9-39.9H72z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "hand-middle-finger": { + "aliases": { + "unicodes": { + "composite": [ + "1f595" + ], + "secondary": [ + "10f806" + ] + } + }, + "changes": [ + "5.7.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "flip the bird", + "gesture", + "hand", + "hate", + "middle finger", + "rude" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f806", + "label": "Hand Middle Finger", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M216 0c-22.1 0-40 17.9-40 40V204.2c-8.5-7.6-19.7-12.2-32-12.2c-26.5 0-48 21.5-48 48v7 73c0 8.8-7.2 16-16 16s-16-7.2-16-16V264.3c-2 1.4-3.9 3-5.8 4.5L39 284.8C24.4 297 16 315 16 334V372c0 38 16.9 74 46.1 98.3l5.4 4.5c28.8 24 65 37.1 102.4 37.1H288c70.7 0 128-57.3 128-128V320 288c0-26.5-21.5-48-48-48c-12.4 0-23.6 4.7-32.1 12.3C334 227.5 313.3 208 288 208c-12.3 0-23.5 4.6-32 12.2V40c0-22.1-17.9-40-40-40z" + } + }, + "free": [ + "solid" + ] + }, + "hand-peace": { + "aliases": { + "unicodes": { + "composite": [ + "270c" + ], + "secondary": [ + "10f25b" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hand", + "rest", + "truce", + "v", + "victory", + "victory hand" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f25b", + "label": "Hand Peace", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M192 0c17.7 0 32 14.3 32 32V240H160V32c0-17.7 14.3-32 32-32zm96 160c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7 14.3-32 32-32zm64 64c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224zM61.3 51.2L143.9 240H74.1L2.7 76.8C-4.4 60.6 3 41.8 19.2 34.7s35.1 .3 42.1 16.5zm27 221.3l-.2-.5h69.9H184c22.1 0 40 17.9 40 40s-17.9 40-40 40H128c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72l0-.6c9.4 5.4 20.3 8.6 32 8.6c13.2 0 25.4-4 35.6-10.8c8.7 24.9 32.5 42.8 60.4 42.8c11.7 0 22.6-3.1 32-8.6V352c0 88.4-71.6 160-160 160H194.3c-42.4 0-83.1-16.9-113.1-46.9L69.5 453.5C45.5 429.5 32 396.9 32 363V336c0-32.7 24.6-59.7 56.3-63.5z" + }, + "regular": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M218.8 1.4c-35.2-3.7-66.6 21.8-70.3 57L142 119 124.7 69.6C113 36.3 76.4 18.8 43.1 30.5S-7.8 78.8 3.9 112.1L56.7 262.2C41.5 276.7 32 297.3 32 320v0 24c0 92.8 75.2 168 168 168h48c92.8 0 168-75.2 168-168V272 256 224c0-35.3-28.7-64-64-64c-7.9 0-15.4 1.4-22.4 4c-10.4-21.3-32.3-36-57.6-36c-.7 0-1.5 0-2.2 0l5.9-56.3c3.7-35.2-21.8-66.6-57-70.3zm-.2 155.4C211.9 166.9 208 179 208 192v48c0 .7 0 1.4 0 2c-5.1-1.3-10.5-2-16-2h-7.4l-5.4-15.3 17-161.3c.9-8.8 8.8-15.2 17.6-14.2s15.2 8.8 14.2 17.6l-9.5 90.1zM79.4 85.6L133.7 240H112c-4 0-8 .3-11.9 .9L49.2 96.2c-2.9-8.3 1.5-17.5 9.8-20.4s17.5 1.5 20.4 9.8zM256 192c0-8.8 7.2-16 16-16s16 7.2 16 16v32 16c0 8.8-7.2 16-16 16s-16-7.2-16-16V192zm38.4 108c10.4 21.3 32.3 36 57.6 36c5.5 0 10.9-.7 16-2v10c0 66.3-53.7 120-120 120H200c-66.3 0-120-53.7-120-120l0-24 0 0c0-17.7 14.3-32 32-32h80c8.8 0 16 7.2 16 16s-7.2 16-16 16H152c-13.3 0-24 10.7-24 24s10.7 24 24 24h40c35.3 0 64-28.7 64-64c0-.7 0-1.4 0-2c5.1 1.3 10.5 2 16 2c7.9 0 15.4-1.4 22.4-4zM368 272c0 8.8-7.2 16-16 16s-16-7.2-16-16V240 224c0-8.8 7.2-16 16-16s16 7.2 16 16v32 16z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "hand-point-down": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0a7" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "hand-o-down", + "point" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0a7", + "label": "Hand Point Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 480c0 17.7 14.3 32 32 32s32-14.3 32-32V272H32V480zM224 320c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-17.7-14.3-32-32-32s-32 14.3-32 32v64zm-64 64c17.7 0 32-14.3 32-32V304c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 17.7 14.3 32 32 32zm160-96c0 17.7 14.3 32 32 32s32-14.3 32-32V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64zm-96-88l0 .6c9.4-5.4 20.3-8.6 32-8.6c13.2 0 25.4 4 35.6 10.8c8.7-24.9 32.5-42.8 60.4-42.8c11.7 0 22.6 3.1 32 8.6V160C384 71.6 312.4 0 224 0H162.3C119.8 0 79.1 16.9 49.1 46.9L37.5 58.5C13.5 82.5 0 115.1 0 149v27c0 35.3 28.7 64 64 64h88c22.1 0 40-17.9 40-40s-17.9-40-40-40H96c-8.8 0-16-7.2-16-16s7.2-16 16-16h56c39.8 0 72 32.2 72 72z" + }, + "regular": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 448l0-177.6c5.2 1 10.5 1.6 16 1.6l16 0 0 32 0 144c0 8.8-7.2 16-16 16s-16-7.2-16-16zM80 224c-17.7 0-32-14.3-32-32c0 0 0 0 0 0l0-24c0-66.3 53.7-120 120-120l48 0c52.5 0 97.1 33.7 113.4 80.7c-3.1-.5-6.2-.7-9.4-.7c-20 0-37.9 9.2-49.7 23.6c-9-4.9-19.4-7.6-30.3-7.6c-15.1 0-29 5.3-40 14c-11-8.8-24.9-14-40-14l-40 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l40 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-40 0-40 0zM0 192s0 0 0 0c0 18 6 34.6 16 48l0 208c0 35.3 28.7 64 64 64s64-28.7 64-64l0-82c5.1 1.3 10.5 2 16 2c25.3 0 47.2-14.7 57.6-36c7 2.6 14.5 4 22.4 4c20 0 37.9-9.2 49.7-23.6c9 4.9 19.4 7.6 30.3 7.6c35.3 0 64-28.7 64-64l0-64 0-24C384 75.2 308.8 0 216 0L168 0C75.2 0 0 75.2 0 168l0 24zm336 64c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-48 0-16c0-8.8 7.2-16 16-16s16 7.2 16 16l0 64zM160 272c5.5 0 10.9-.7 16-2l0 2 0 32c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-32 16 0zm64-24l0-40c0-8.8 7.2-16 16-16s16 7.2 16 16l0 48 0 16c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-24z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "hand-point-left": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0a5" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "finger", + "hand-o-left", + "left", + "point", + "previous" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0a5", + "label": "Hand Point Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 96C14.3 96 0 110.3 0 128s14.3 32 32 32l208 0V96L32 96zM192 288c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm-64-64c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32s-14.3-32-32-32H160c-17.7 0-32 14.3-32 32zm96 160c-17.7 0-32 14.3-32 32s14.3 32 32 32h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H224zm88-96l-.6 0c5.4 9.4 8.6 20.3 8.6 32c0 13.2-4 25.4-10.8 35.6c24.9 8.7 42.8 32.5 42.8 60.4c0 11.7-3.1 22.6-8.6 32H352c88.4 0 160-71.6 160-160V226.3c0-42.4-16.9-83.1-46.9-113.1l-11.6-11.6C429.5 77.5 396.9 64 363 64l-27 0c-35.3 0-64 28.7-64 64v88c0 22.1 17.9 40 40 40s40-17.9 40-40V160c0-8.8 7.2-16 16-16s16 7.2 16 16v56c0 39.8-32.2 72-72 72z" + }, + "regular": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 128l177.6 0c-1 5.2-1.6 10.5-1.6 16l0 16-32 0L64 160c-8.8 0-16-7.2-16-16s7.2-16 16-16zm224 16c0-17.7 14.3-32 32-32c0 0 0 0 0 0l24 0c66.3 0 120 53.7 120 120l0 48c0 52.5-33.7 97.1-80.7 113.4c.5-3.1 .7-6.2 .7-9.4c0-20-9.2-37.9-23.6-49.7c4.9-9 7.6-19.4 7.6-30.3c0-15.1-5.3-29-14-40c8.8-11 14-24.9 14-40l0-40c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 40c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-40 0-40zm32-80s0 0 0 0c-18 0-34.6 6-48 16L64 80C28.7 80 0 108.7 0 144s28.7 64 64 64l82 0c-1.3 5.1-2 10.5-2 16c0 25.3 14.7 47.2 36 57.6c-2.6 7-4 14.5-4 22.4c0 20 9.2 37.9 23.6 49.7c-4.9 9-7.6 19.4-7.6 30.3c0 35.3 28.7 64 64 64l64 0 24 0c92.8 0 168-75.2 168-168l0-48c0-92.8-75.2-168-168-168l-24 0zM256 400c-8.8 0-16-7.2-16-16s7.2-16 16-16l48 0 16 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-64 0zM240 224c0 5.5 .7 10.9 2 16l-2 0-32 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l32 0 0 16zm24 64l40 0c8.8 0 16 7.2 16 16s-7.2 16-16 16l-48 0-16 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l24 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "hand-point-right": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0a4" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "forward", + "hand-o-right", + "next", + "point", + "right" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0a4", + "label": "Hand Point Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480 96c17.7 0 32 14.3 32 32s-14.3 32-32 32l-208 0 0-64 208 0zM320 288c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32s14.3-32 32-32h64zm64-64c0 17.7-14.3 32-32 32H304c-17.7 0-32-14.3-32-32s14.3-32 32-32h48c17.7 0 32 14.3 32 32zM288 384c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32h64zm-88-96l.6 0c-5.4 9.4-8.6 20.3-8.6 32c0 13.2 4 25.4 10.8 35.6C177.9 364.3 160 388.1 160 416c0 11.7 3.1 22.6 8.6 32H160C71.6 448 0 376.4 0 288l0-61.7c0-42.4 16.9-83.1 46.9-113.1l11.6-11.6C82.5 77.5 115.1 64 149 64l27 0c35.3 0 64 28.7 64 64v88c0 22.1-17.9 40-40 40s-40-17.9-40-40V160c0-8.8-7.2-16-16-16s-16 7.2-16 16v56c0 39.8 32.2 72 72 72z" + }, + "regular": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 128l-177.6 0c1 5.2 1.6 10.5 1.6 16l0 16 32 0 144 0c8.8 0 16-7.2 16-16s-7.2-16-16-16zM224 144c0-17.7-14.3-32-32-32c0 0 0 0 0 0l-24 0c-66.3 0-120 53.7-120 120l0 48c0 52.5 33.7 97.1 80.7 113.4c-.5-3.1-.7-6.2-.7-9.4c0-20 9.2-37.9 23.6-49.7c-4.9-9-7.6-19.4-7.6-30.3c0-15.1 5.3-29 14-40c-8.8-11-14-24.9-14-40l0-40c0-13.3 10.7-24 24-24s24 10.7 24 24l0 40c0 8.8 7.2 16 16 16s16-7.2 16-16l0-40 0-40zM192 64s0 0 0 0c18 0 34.6 6 48 16l208 0c35.3 0 64 28.7 64 64s-28.7 64-64 64l-82 0c1.3 5.1 2 10.5 2 16c0 25.3-14.7 47.2-36 57.6c2.6 7 4 14.5 4 22.4c0 20-9.2 37.9-23.6 49.7c4.9 9 7.6 19.4 7.6 30.3c0 35.3-28.7 64-64 64l-64 0-24 0C75.2 448 0 372.8 0 280l0-48C0 139.2 75.2 64 168 64l24 0zm64 336c8.8 0 16-7.2 16-16s-7.2-16-16-16l-48 0-16 0c-8.8 0-16 7.2-16 16s7.2 16 16 16l64 0zm16-176c0 5.5-.7 10.9-2 16l2 0 32 0c8.8 0 16-7.2 16-16s-7.2-16-16-16l-32 0 0 16zm-24 64l-40 0c-8.8 0-16 7.2-16 16s7.2 16 16 16l48 0 16 0c8.8 0 16-7.2 16-16s-7.2-16-16-16l-24 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "hand-point-up": { + "aliases": { + "unicodes": { + "composite": [ + "261d" + ], + "secondary": [ + "10f0a6" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "hand", + "hand-o-up", + "index", + "index pointing up", + "point", + "up" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0a6", + "label": "Hand Point Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 32C32 14.3 46.3 0 64 0S96 14.3 96 32V240H32V32zM224 192c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V192zm-64-64c17.7 0 32 14.3 32 32v48c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32zm160 96c0-17.7 14.3-32 32-32s32 14.3 32 32v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224zm-96 88l0-.6c9.4 5.4 20.3 8.6 32 8.6c13.2 0 25.4-4 35.6-10.8c8.7 24.9 32.5 42.8 60.4 42.8c11.7 0 22.6-3.1 32-8.6V352c0 88.4-71.6 160-160 160H162.3c-42.4 0-83.1-16.9-113.1-46.9L37.5 453.5C13.5 429.5 0 396.9 0 363V336c0-35.3 28.7-64 64-64h88c22.1 0 40 17.9 40 40s-17.9 40-40 40H96c-8.8 0-16 7.2-16 16s7.2 16 16 16h56c39.8 0 72-32.2 72-72z" + }, + "regular": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 64V241.6c5.2-1 10.5-1.6 16-1.6H96V208 64c0-8.8-7.2-16-16-16s-16 7.2-16 16zM80 288c-17.7 0-32 14.3-32 32c0 0 0 0 0 0v24c0 66.3 53.7 120 120 120h48c52.5 0 97.1-33.7 113.4-80.7c-3.1 .5-6.2 .7-9.4 .7c-20 0-37.9-9.2-49.7-23.6c-9 4.9-19.4 7.6-30.3 7.6c-15.1 0-29-5.3-40-14c-11 8.8-24.9 14-40 14H120c-13.3 0-24-10.7-24-24s10.7-24 24-24h40c8.8 0 16-7.2 16-16s-7.2-16-16-16H120 80zM0 320s0 0 0 0c0-18 6-34.6 16-48V64C16 28.7 44.7 0 80 0s64 28.7 64 64v82c5.1-1.3 10.5-2 16-2c25.3 0 47.2 14.7 57.6 36c7-2.6 14.5-4 22.4-4c20 0 37.9 9.2 49.7 23.6c9-4.9 19.4-7.6 30.3-7.6c35.3 0 64 28.7 64 64v64 24c0 92.8-75.2 168-168 168H168C75.2 512 0 436.8 0 344V320zm336-64c0-8.8-7.2-16-16-16s-16 7.2-16 16v48 16c0 8.8 7.2 16 16 16s16-7.2 16-16V256zM160 240c5.5 0 10.9 .7 16 2v-2V208c0-8.8-7.2-16-16-16s-16 7.2-16 16v32h16zm64 24v40c0 8.8 7.2 16 16 16s16-7.2 16-16V256 240c0-8.8-7.2-16-16-16s-16 7.2-16 16v24z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "hand-pointer": { + "aliases": { + "unicodes": { + "secondary": [ + "10f25a" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "cursor", + "select" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f25a", + "label": "Hand Pointer", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 40c0-22.1 17.9-40 40-40s40 17.9 40 40V188.2c8.5-7.6 19.7-12.2 32-12.2c25.3 0 46 19.5 47.9 44.3c8.5-7.7 19.8-12.3 32.1-12.3c25.3 0 46 19.5 47.9 44.3c8.5-7.7 19.8-12.3 32.1-12.3c26.5 0 48 21.5 48 48v32 64c0 70.7-57.3 128-128 128l-16 0H240l-.1 0h-5.2c-5 0-9.9-.3-14.7-1c-55.3-5.6-106.2-34-140-79L8 336c-13.3-17.7-9.7-42.7 8-56s42.7-9.7 56 8l56 74.7V40zM240 304c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304zm48-16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304c0-8.8-7.2-16-16-16zm80 16c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304z" + }, + "regular": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 64c0-8.8 7.2-16 16-16s16 7.2 16 16V200c0 10.3 6.6 19.5 16.4 22.8s20.6-.1 26.8-8.3c3-3.9 7.6-6.4 12.8-6.4c8.8 0 16 7.2 16 16v8c0 10.3 6.6 19.5 16.4 22.8s20.6-.1 26.8-8.3c3-3.9 7.6-6.4 12.8-6.4c8.8 0 16 7.2 16 16c0 9.1 5.1 17.4 13.3 21.5s17.9 3.2 25.1-2.3c2.7-2 6-3.2 9.6-3.2c8.8 0 16 7.2 16 16v96 8c0 39.8-32.2 72-72 72H272 212.3h-.9c-37.4 0-72.4-18.7-93.2-49.9L50.7 312.9c-4.9-7.4-2.9-17.3 4.4-22.2s17.3-2.9 22.2 4.4L116 353.2c5.9 8.8 16.8 12.7 26.9 9.7s17-12.4 17-23V320 64zM176 0c-35.3 0-64 28.7-64 64V261.7C91.2 238 55.5 232.8 28.5 250.7C-.9 270.4-8.9 310.1 10.8 339.5L78.3 440.8c29.7 44.5 79.6 71.2 133.1 71.2h.9H272h56c66.3 0 120-53.7 120-120v-8V288c0-35.3-28.7-64-64-64c-2.8 0-5.6 .2-8.3 .5c-11-19.4-31.8-32.5-55.7-32.5c-5.4 0-10.5 .7-15.5 1.9c-10.8-20.2-32-33.9-56.5-33.9c-2.7 0-5.4 .2-8 .5V64c0-35.3-28.7-64-64-64zm48 304c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304zm48-16c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304c0-8.8-7.2-16-16-16zm80 16c0-8.8-7.2-16-16-16s-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V304z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "hand-scissors": { + "aliases": { + "unicodes": { + "secondary": [ + "10f257" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cut", + "game", + "roshambo" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f257", + "label": "Hand Scissors", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M40 208c-22.1 0-40 17.9-40 40s17.9 40 40 40l180.2 0c-7.6 8.5-12.2 19.7-12.2 32c0 25.3 19.5 46 44.3 47.9c-7.7 8.5-12.3 19.8-12.3 32.1c0 26.5 21.5 48 48 48l32 0 64 0c70.7 0 128-57.3 128-128l0-113.1c0-40.2-16-78.8-44.4-107.3C444.8 76.8 413.9 64 381.7 64L336 64c-21.3 0-39.3 13.9-45.6 33.1l74.5 23.7c8.4 2.7 13.1 11.7 10.4 20.1s-11.7 13.1-20.1 10.4L288 129.9l0 .1L84 65.8C62.9 59.2 40.5 70.9 33.8 92s5.1 43.5 26.2 50.2L269.5 208 40 208z" + }, + "regular": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M.2 276.3c-1.2-35.3 26.4-65 61.7-66.2l3.3-.1L57 208.1C22.5 200.5 .7 166.3 8.3 131.8S50.2 75.5 84.7 83.2l173 38.3c2.3-2.9 4.6-5.7 7.1-8.5l18.4-20.3C299.9 74.5 323.5 64 348.3 64l10.2 0c54.1 0 104.1 28.7 131.3 75.4l1.5 2.6c13.6 23.2 20.7 49.7 20.7 76.6L512 344c0 66.3-53.7 120-120 120l-8 0-96 0c-35.3 0-64-28.7-64-64c0-2.8 .2-5.6 .5-8.3c-19.4-11-32.5-31.8-32.5-55.7c0-.8 0-1.6 0-2.4L66.4 338c-35.3 1.2-65-26.4-66.2-61.7zm63.4-18.2c-8.8 .3-15.7 7.7-15.4 16.5s7.7 15.7 16.5 15.4l161.5-5.6c9.8-.3 18.7 5.3 22.7 14.2s2.2 19.3-4.5 26.4c-2.8 2.9-4.4 6.7-4.4 11c0 8.8 7.2 16 16 16c9.1 0 17.4 5.1 21.5 13.3s3.2 17.9-2.3 25.1c-2 2.7-3.2 6-3.2 9.6c0 8.8 7.2 16 16 16l96 0 8 0c39.8 0 72-32.2 72-72l0-125.4c0-18.4-4.9-36.5-14.2-52.4l-1.5-2.6c-18.6-32-52.8-51.6-89.8-51.6l-10.2 0c-11.3 0-22 4.8-29.6 13.1l-17.5-15.9 17.5 15.9-18.4 20.3c-.6 .6-1.1 1.3-1.7 1.9l57 13.2c8.6 2 14 10.6 12 19.2s-10.6 14-19.2 12l-85.6-19.7L74.3 130c-8.6-1.9-17.2 3.5-19.1 12.2s3.5 17.2 12.2 19.1l187.5 41.6c10.2 2.3 17.8 10.9 18.7 21.4l.1 1c.6 6.6-1.5 13.1-5.8 18.1s-10.6 7.9-17.2 8.2L63.6 258.1z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "hand-sparkles": { + "aliases": { + "unicodes": { + "secondary": [ + "10e05d" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clean", + "covid-19", + "hygiene", + "magic", + "palm", + "soap", + "wash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e05d", + "label": "Hand Sparkles", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0c17.7 0 32 14.3 32 32V240c0 8.8 7.2 16 16 16s16-7.2 16-16V64c0-17.7 14.3-32 32-32s32 14.3 32 32V240c0 8.8 7.2 16 16 16s16-7.2 16-16V128c0-17.7 14.3-32 32-32s32 14.3 32 32V323.1c-11.9 4.8-21.3 14.9-25 27.8l-8.9 31.2L478.9 391C460.6 396.3 448 413 448 432c0 18.9 12.5 35.6 30.6 40.9C448.4 497.4 409.9 512 368 512H348.8c-59.6 0-116.9-22.9-160-64L76.4 341c-16-15.2-16.6-40.6-1.4-56.6s40.6-16.6 56.6-1.4l60.5 57.6c0-1.5-.1-3.1-.1-4.6V64c0-17.7 14.3-32 32-32s32 14.3 32 32V240c0 8.8 7.2 16 16 16s16-7.2 16-16V32c0-17.7 14.3-32 32-32zm-7.3 326.6c-1.1-3.9-4.7-6.6-8.7-6.6s-7.6 2.7-8.7 6.6L288 352l-25.4 7.3c-3.9 1.1-6.6 4.7-6.6 8.7s2.7 7.6 6.6 8.7L288 384l7.3 25.4c1.1 3.9 4.7 6.6 8.7 6.6s7.6-2.7 8.7-6.6L320 384l25.4-7.3c3.9-1.1 6.6-4.7 6.6-8.7s-2.7-7.6-6.6-8.7L320 352l-7.3-25.4zM104 120l48.3 13.8c4.6 1.3 7.7 5.5 7.7 10.2s-3.1 8.9-7.7 10.2L104 168 90.2 216.3c-1.3 4.6-5.5 7.7-10.2 7.7s-8.9-3.1-10.2-7.7L56 168 7.7 154.2C3.1 152.9 0 148.7 0 144s3.1-8.9 7.7-10.2L56 120 69.8 71.7C71.1 67.1 75.3 64 80 64s8.9 3.1 10.2 7.7L104 120zM584 408l48.3 13.8c4.6 1.3 7.7 5.5 7.7 10.2s-3.1 8.9-7.7 10.2L584 456l-13.8 48.3c-1.3 4.6-5.5 7.7-10.2 7.7s-8.9-3.1-10.2-7.7L536 456l-48.3-13.8c-4.6-1.3-7.7-5.5-7.7-10.2s3.1-8.9 7.7-10.2L536 408l13.8-48.3c1.3-4.6 5.5-7.7 10.2-7.7s8.9 3.1 10.2 7.7L584 408z" + } + }, + "free": [ + "solid" + ] + }, + "hand-spock": { + "aliases": { + "unicodes": { + "composite": [ + "1f596" + ], + "secondary": [ + "10f259" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "finger", + "hand", + "live long", + "palm", + "prosper", + "salute", + "spock", + "star trek", + "vulcan", + "vulcan salute" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f259", + "label": "Hand Spock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M214.9 23.7C210.3 6.6 192.8-3.5 175.7 1.1s-27.2 22.1-22.6 39.2L206 237.8c2.5 9.2-4.5 18.2-14 18.2c-6.4 0-12-4.2-13.9-10.3L134.6 102.7c-5.1-16.9-23-26.4-39.9-21.3s-26.4 23-21.3 39.9l62.8 206.4c2.4 7.9-7.2 13.8-13.2 8.1L67.6 283c-16-15.2-41.3-14.6-56.6 1.4s-14.6 41.3 1.4 56.6L124.8 448c43.1 41.1 100.4 64 160 64h10.9 8.2c.1 0 .1-.1 .1-.1s.1-.1 .1-.1c58.3-3.5 108.6-43.2 125.3-99.7l81.2-275c5-16.9-4.7-34.7-21.6-39.8s-34.7 4.7-39.8 21.6L411.5 247.1c-1.6 5.3-6.4 8.9-12 8.9c-7.9 0-13.8-7.3-12.2-15.1l36-170.3c3.7-17.3-7.4-34.3-24.7-37.9s-34.3 7.4-37.9 24.7L323.1 235.1c-2.6 12.2-13.3 20.9-25.8 20.9c-11.9 0-22.4-8-25.4-19.5l-57-212.8z" + }, + "regular": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M189.7 25.3l6.2 23.2-6.2-23.2zm48.9 28.4l23.2-6.2v0l-23.2 6.2zM161.3 74.3l-23.2 6.2v0l23.2-6.2zm46.5 175.3l-22.1 9.3c4.9 11.6 17.9 17.5 29.9 13.4s18.7-16.7 15.4-28.9l-23.2 6.2zm-51-121.1l-22.1 9.3 22.1-9.3zm-52.4-21.3l9.3 22.1-9.3-22.1zM83.1 159.5L61 168.8h0l22.1-9.3zm5.4 144.9l14.7-18.9L88.6 304.4zm-56.1 7l18.9 14.7h0L32.4 311.4zm7 56.1L24.7 386.5h0l14.7-18.9zm92 71.6l-14.7 18.9 14.7-18.9zm300.1-48.5l23.3 5.8-23.3-5.8zm55.2-220.9l23.3 5.8v0l-23.3-5.8zm-29.1-48.5l5.8-23.3-5.8 23.3zm-48.5 29.1l23.3 5.8v0l-23.3-5.8zM383 255l-23.3-5.8 0 0L383 255zm-2.6-.5l23.6 4.2 0 0-23.6-4.2zM407.4 103l23.6 4.2v0L407.4 103zM375 56.6l-4.2 23.6L375 56.6zM328.6 89L305 84.8v0L328.6 89zM299.5 252.6l-23.6-4.2 0 0 23.6 4.2zm-8 .3l23.2-6.2 0 0-23.2 6.2zM304 488l.5-24-.5 24zm-157-138L161.8 331l-14.7 18.9zM195.9 48.5c8.5-2.3 17.3 2.8 19.6 11.4l46.4-12.3c-9.1-34.2-44.1-54.5-78.3-45.4l12.3 46.4zM184.5 68.1c-2.3-8.5 2.8-17.3 11.4-19.6L183.6 2.1c-34.2 9.1-54.5 44.1-45.4 78.3l46.4-12.3zM231 243.4L184.5 68.1 138.1 80.4l46.5 175.3L231 243.4zM134.7 137.8l51 121.1L230 240.2 179 119.2l-44.2 18.6zm-21-8.5c8.1-3.4 17.5 .4 21 8.5L179 119.2C165.3 86.6 127.7 71.3 95.2 85l18.6 44.2zm-8.5 21c-3.4-8.1 .4-17.5 8.5-21L95.2 85C62.6 98.7 47.3 136.3 61 168.8l44.2-18.6zm76.2 181l-76.2-181L61 168.8l76.2 181 44.2-18.6zM73.8 323.4l58.5 45.5L161.8 331l-58.5-45.5L73.8 323.4zm-22.5 2.8c5.4-7 15.5-8.2 22.5-2.8l29.5-37.9c-27.9-21.7-68.1-16.7-89.8 11.2l37.9 29.5zm2.8 22.5c-7-5.4-8.2-15.5-2.8-22.5L13.5 296.7c-21.7 27.9-16.7 68.1 11.2 89.8l29.5-37.9zm92 71.6l-92-71.6L24.7 386.5l92 71.6 29.5-37.9zM273.9 464c-46.3 0-91.2-15.4-127.7-43.8l-29.5 37.9C161.6 493 216.9 512 273.9 512V464zm30.1 0H273.9v48H304V464zm2.8 0c-.8 0-1.5 0-2.3 0l-1 48c1.1 0 2.2 0 3.3 0V464zm101.5-79.2C396.7 431.3 354.8 464 306.8 464v48c70 0 131.1-47.7 148-115.6l-46.6-11.6zm55.2-220.9L408.3 384.8l46.6 11.6 55.2-220.9-46.6-11.6zm-11.6-19.4c8.6 2.1 13.8 10.8 11.6 19.4l46.6 11.6c8.6-34.3-12.3-69-46.6-77.6l-11.6 46.6zm-19.4 11.6c2.1-8.6 10.8-13.8 19.4-11.6l11.6-46.6c-34.3-8.6-69 12.3-77.6 46.6l46.6 11.6zM406.3 260.8l26.2-104.7-46.6-11.6L359.7 249.2l46.6 11.6zM381.7 280c11.6 0 21.7-7.9 24.6-19.2l-46.6-11.6c2.5-10.1 11.6-17.2 22-17.2v48zm-24.9-29.7c-2.8 15.5 9.2 29.7 24.9 29.7V232c14.1 0 24.8 12.8 22.3 26.7l-47.3-8.4zM383.8 98.8L356.8 250.3l47.3 8.4L431 107.2l-47.3-8.4zm-13-18.6c8.7 1.5 14.5 9.9 13 18.6l47.3 8.4c6.2-34.8-17-68-51.8-74.2l-8.4 47.3zm-18.6 13c1.5-8.7 9.9-14.5 18.6-13L379.2 33c-34.8-6.2-68 17-74.2 51.8l47.3 8.4zM323.2 256.8L352.2 93.2 305 84.8 275.9 248.4l47.3 8.4zM295.5 280c13.6 0 25.3-9.8 27.7-23.2l-47.3-8.4c1.7-9.5 9.9-16.4 19.6-16.4v48zm-27.2-20.9c3.3 12.3 14.4 20.9 27.2 20.9V232c9 0 16.9 6.1 19.2 14.8l-46.4 12.3zM215.5 59.9l52.8 199.2 46.4-12.3L261.9 47.6 215.5 59.9zM328 488c0 13.4-11.1 24.3-24.5 24l1-48c-13.5-.3-24.5 10.5-24.5 24h48zm-24 24c13.3 0 24-10.8 24-24H280c0-13.2 10.7-24 24-24v48zM137.2 349.8c-6.4-15.2 11.6-29 24.6-18.8l-29.5 37.9c26 20.2 61.9-7.3 49.1-37.7l-44.2 18.6z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "handcuffs": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrest", + "criminal", + "handcuffs", + "jail", + "lock", + "police", + "wrist" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4f8", + "label": "Handcuffs", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M240 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM192 48a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm-32 80c17.7 0 32 14.3 32 32h8c13.3 0 24 10.7 24 24v16c0 1.7-.2 3.4-.5 5.1C280.3 229.6 320 286.2 320 352c0 88.4-71.6 160-160 160S0 440.4 0 352c0-65.8 39.7-122.4 96.5-146.9c-.4-1.6-.5-3.3-.5-5.1V184c0-13.3 10.7-24 24-24h8c0-17.7 14.3-32 32-32zm0 320a96 96 0 1 0 0-192 96 96 0 1 0 0 192zm192-96c0-25.9-5.1-50.5-14.4-73.1c16.9-32.9 44.8-59.1 78.9-73.9c-.4-1.6-.5-3.3-.5-5.1V184c0-13.3 10.7-24 24-24h8c0-17.7 14.3-32 32-32s32 14.3 32 32h8c13.3 0 24 10.7 24 24v16c0 1.7-.2 3.4-.5 5.1C600.3 229.6 640 286.2 640 352c0 88.4-71.6 160-160 160c-62 0-115.8-35.3-142.4-86.9c9.3-22.5 14.4-47.2 14.4-73.1zm224 0a96 96 0 1 0 -192 0 96 96 0 1 0 192 0zM368 0a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm80 48a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "hands": { + "aliases": { + "names": [ + "sign-language", + "signing" + ], + "unicodes": { + "secondary": [ + "10f2a7" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Translate", + "asl", + "deaf", + "hands" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2a7", + "label": "Hands", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669918857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 160l-.1 72.6c-.1 52.2-24 101-64 133.1c.1-1.9 .1-3.8 .1-5.7v-8c0-71.8-37-138.6-97.9-176.7l-60.2-37.6c-8.6-5.4-17.9-8.4-27.3-9.4L216.7 48.8c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8l78 135.1c3.3 5.7 10.7 7.7 16.4 4.4s7.7-10.7 4.4-16.4l-62-107.4c-6.6-11.5-2.7-26.2 8.8-32.8S330 5 336.6 16.5l68 117.8 0 0 0 0 43.3 75L448 160c0-17.7 14.4-32 32-32s32 14.4 32 32zM211.9 88.5L236.5 131c-13.9 4.5-26.4 13.7-34.7 27c-.9 1.4-1.7 2.9-2.5 4.4l-28.9-50c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8zm-46.4 63.7l26.8 46.4c.6 6 2.1 11.8 4.3 17.4H192 178.7l0 0H147l-23-39.8c-6.6-11.5-2.7-26.2 8.8-32.8s26.2-2.7 32.8 8.8zM228.9 175c9.4-15 29.1-19.5 44.1-10.2l60.2 37.6C384.7 234.7 416 291.2 416 352v8c0 83.9-68.1 152-152 152H88c-13.3 0-24-10.7-24-24s10.7-24 24-24h92c6.6 0 12-5.4 12-12s-5.4-12-12-12H56c-13.3 0-24-10.7-24-24s10.7-24 24-24H180c6.6 0 12-5.4 12-12s-5.4-12-12-12H24c-13.3 0-24-10.7-24-24s10.7-24 24-24H180c6.6 0 12-5.4 12-12s-5.4-12-12-12H56c-13.3 0-24-10.7-24-24s10.7-24 24-24H192l0 0 0 0h93.2L239 219.1c-15-9.4-19.5-29.1-10.2-44.1z" + } + }, + "free": [ + "solid" + ] + }, + "hands-asl-interpreting": { + "aliases": { + "names": [ + "american-sign-language-interpreting", + "asl-interpreting", + "hands-american-sign-language-interpreting" + ], + "unicodes": { + "secondary": [ + "10f2a3" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "asl", + "deaf", + "finger", + "hand", + "interpret", + "speak" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2a3", + "label": "Hands Asl Interpreting", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M156.6 46.3c7.9-15.8 1.5-35-14.3-42.9s-35-1.5-42.9 14.3L13.5 189.4C4.6 207.2 0 226.8 0 246.7V256c0 70.7 57.3 128 128 128h72 8v-.3c35.2-2.7 65.4-22.8 82.1-51.7c8.8-15.3 3.6-34.9-11.7-43.7s-34.9-3.6-43.7 11.7c-7 12-19.9 20-34.7 20c-22.1 0-40-17.9-40-40s17.9-40 40-40c14.8 0 27.7 8 34.7 20c8.8 15.3 28.4 20.5 43.7 11.7s20.5-28.4 11.7-43.7c-12.8-22.1-33.6-39.1-58.4-47.1l80.8-22c17-4.6 27.1-22.2 22.5-39.3s-22.2-27.1-39.3-22.5L194.9 124.6l81.6-68c13.6-11.3 15.4-31.5 4.1-45.1S249.1-3.9 235.5 7.4L133.6 92.3l23-46zM483.4 465.7c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3l85.9-171.7c8.9-17.8 13.5-37.4 13.5-57.2V256c0-70.7-57.3-128-128-128H440h-8v.3c-35.2 2.7-65.4 22.8-82.1 51.7c-8.9 15.3-3.6 34.9 11.7 43.7s34.9 3.6 43.7-11.7c7-12 19.9-20 34.7-20c22.1 0 40 17.9 40 40s-17.9 40-40 40c-14.8 0-27.7-8-34.7-20c-8.9-15.3-28.4-20.5-43.7-11.7s-20.5 28.4-11.7 43.7c12.8 22.1 33.6 39.1 58.4 47.1l-80.8 22c-17.1 4.7-27.1 22.2-22.5 39.3s22.2 27.1 39.3 22.5l100.7-27.5-81.6 68c-13.6 11.3-15.4 31.5-4.1 45.1s31.5 15.4 45.1 4.1l101.9-84.9-23 46z" + } + }, + "free": [ + "solid" + ] + }, + "hands-bound": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abduction", + "bound", + "handcuff", + "wrist" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4f9", + "label": "Hands Bound", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C64 14.3 49.7 0 32 0S0 14.3 0 32V96v59.1 .7V192v21.9c0 14.2 5.1 27.9 14.3 38.7L99.6 352H96c-13.3 0-24 10.7-24 24s10.7 24 24 24h32H256h64H448h32c13.3 0 24-10.7 24-24s-10.7-24-24-24h-3.6l85.3-99.5c9.2-10.8 14.3-24.5 14.3-38.7V192 155.8v-.7V96 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V96v48.8l-69.3 92.4c-5.7 7.6-16.1 9.6-24.2 4.8c-9.7-5.7-12.1-18.7-5.1-27.5L441 180c10.8-13.5 8.9-33.3-4.4-44.5s-33-9.8-44.5 3.2l-46.7 52.5C329 209.7 320 233.4 320 258.1V320v32H256V320 258.1c0-24.6-9-48.4-25.4-66.8l-46.7-52.5c-11.5-13-31.3-14.4-44.5-3.2s-15.2 30.9-4.4 44.5l27.6 34.5c7 8.8 4.7 21.8-5.1 27.5c-8.1 4.8-18.6 2.7-24.2-4.8L64 144.8V96 32zm64 448v32H256V480h64v32H448V480h32c13.3 0 24-10.7 24-24s-10.7-24-24-24H448 320 256 128 96c-13.3 0-24 10.7-24 24s10.7 24 24 24h32z" + } + }, + "free": [ + "solid" + ] + }, + "hands-bubbles": { + "aliases": { + "names": [ + "hands-wash" + ], + "unicodes": { + "secondary": [ + "10e05e" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "hygiene", + "soap", + "wash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e05e", + "label": "Hands Bubbles", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669918857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M384 64a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm96 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM128 464a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM0 160l.1 72.6c.1 52.2 24 101 64 133.1c-.1-1.9-.1-3.8-.1-5.7v-8c0-71.8 37-138.6 97.9-176.7l60.2-37.6c8.6-5.4 17.9-8.4 27.3-9.4l45.9-79.5c6.6-11.5 2.7-26.2-8.8-32.8s-26.2-2.7-32.8 8.8l-78 135.1c-3.3 5.7-10.7 7.7-16.4 4.4s-7.7-10.7-4.4-16.4l62-107.4c6.6-11.5 2.7-26.2-8.8-32.8S182 5 175.4 16.5l-68 117.8 0 0 0 0-43.3 75L64 160c0-17.7-14.4-32-32-32s-32 14.4-32 32zM300.1 88.5L275.5 131c13.9 4.5 26.4 13.7 34.7 27c.9 1.5 1.7 2.9 2.5 4.4l28.9-50c6.6-11.5 2.7-26.2-8.8-32.8s-26.2-2.7-32.8 8.8zm46.4 63.7l-26.8 46.4c-.6 6-2.1 11.8-4.3 17.4H320h13.3l0 0H365l23-39.8c6.6-11.5 2.7-26.2-8.8-32.8s-26.2-2.7-32.8 8.8zM283.1 175c-9.4-15-29.1-19.5-44.1-10.2l-60.2 37.6C127.3 234.7 96 291.2 96 352v8c0 8.9 .8 17.6 2.2 26.1c35.4 8.2 61.8 40 61.8 77.9c0 6.3-.7 12.5-2.1 18.4C183.1 501 214.3 512 248 512H424c13.3 0 24-10.7 24-24s-10.7-24-24-24H332c-6.6 0-12-5.4-12-12s5.4-12 12-12H456c13.3 0 24-10.7 24-24s-10.7-24-24-24H332c-6.6 0-12-5.4-12-12s5.4-12 12-12H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H332c-6.6 0-12-5.4-12-12s5.4-12 12-12H456c13.3 0 24-10.7 24-24s-10.7-24-24-24H320l0 0 0 0H226.8L273 219.1c15-9.4 19.5-29.1 10.2-44.1z" + } + }, + "free": [ + "solid" + ] + }, + "hands-clapping": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "applause", + "clap", + "clapping hands", + "hand" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e1a8", + "label": "Hands Clapping", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669918857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M336 16V80c0 8.8-7.2 16-16 16s-16-7.2-16-16V16c0-8.8 7.2-16 16-16s16 7.2 16 16zm-98.7 7.1l32 48c4.9 7.4 2.9 17.3-4.4 22.2s-17.3 2.9-22.2-4.4l-32-48c-4.9-7.4-2.9-17.3 4.4-22.2s17.3-2.9 22.2 4.4zM135 119c9.4-9.4 24.6-9.4 33.9 0L292.7 242.7c10.1 10.1 27.3 2.9 27.3-11.3V192c0-17.7 14.3-32 32-32s32 14.3 32 32V345.6c0 57.1-30 110-78.9 139.4c-64 38.4-145.8 28.3-198.5-24.4L7 361c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l53 53c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1L23 265c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l93 93c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1L55 185c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l117 117c6.1 6.1 16 6.1 22.1 0s6.1-16 0-22.1l-93-93c-9.4-9.4-9.4-24.6 0-33.9zM433.1 484.9c-24.2 14.5-50.9 22.1-77.7 23.1c48.1-39.6 76.6-99 76.6-162.4l0-98.1c8.2-.1 16-6.4 16-16V192c0-17.7 14.3-32 32-32s32 14.3 32 32V345.6c0 57.1-30 110-78.9 139.4zM424.9 18.7c7.4 4.9 9.3 14.8 4.4 22.2l-32 48c-4.9 7.4-14.8 9.3-22.2 4.4s-9.3-14.8-4.4-22.2l32-48c4.9-7.4 14.8-9.3 22.2-4.4z" + } + }, + "free": [ + "solid" + ] + }, + "hands-holding": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4c2" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "hold", + "lift" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4c2", + "label": "Hands Holding", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M80 104c0-22.1-17.9-40-40-40S0 81.9 0 104v56 64V325.5c0 25.5 10.1 49.9 28.1 67.9L128 493.3c12 12 28.3 18.7 45.3 18.7H240c26.5 0 48-21.5 48-48V385.1c0-29.7-11.8-58.2-32.8-79.2l-25.3-25.3 0 0-15.2-15.2-32-32c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l32 32 15.2 15.2c11 11 9.2 29.2-3.7 37.8c-9.7 6.5-22.7 5.2-31-3.1L98.7 309.5c-12-12-18.7-28.3-18.7-45.3V224 144 104zm480 0v40 80 40.2c0 17-6.7 33.3-18.7 45.3l-51.1 51.1c-8.3 8.3-21.3 9.6-31 3.1c-12.9-8.6-14.7-26.9-3.7-37.8l15.2-15.2 32-32c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-32 32-15.2 15.2 0 0-25.3 25.3c-21 21-32.8 49.5-32.8 79.2V464c0 26.5 21.5 48 48 48h66.7c17 0 33.3-6.7 45.3-18.7l99.9-99.9c18-18 28.1-42.4 28.1-67.9V224 160 104c0-22.1-17.9-40-40-40s-40 17.9-40 40z" + } + }, + "free": [ + "solid" + ] + }, + "hands-holding-child": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "care", + "give", + "help", + "hold", + "protect" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4fa", + "label": "Hands Holding Child", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0a40 40 0 1 1 0 80 40 40 0 1 1 0-80zm44.7 164.3L375.8 253c1.6 13.2-7.7 25.1-20.8 26.8s-25.1-7.7-26.8-20.8l-4.4-35h-7.6l-4.4 35c-1.6 13.2-13.6 22.5-26.8 20.8s-22.5-13.6-20.8-26.8l11.1-88.8L255.5 181c-10.1 8.6-25.3 7.3-33.8-2.8s-7.3-25.3 2.8-33.8l27.9-23.6C271.3 104.8 295.3 96 320 96s48.7 8.8 67.6 24.7l27.9 23.6c10.1 8.6 11.4 23.7 2.8 33.8s-23.7 11.4-33.8 2.8l-19.8-16.7zM40 64c22.1 0 40 17.9 40 40v40 80 40.2c0 17 6.7 33.3 18.7 45.3l51.1 51.1c8.3 8.3 21.3 9.6 31 3.1c12.9-8.6 14.7-26.9 3.7-37.8l-15.2-15.2-32-32c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l32 32 15.2 15.2 0 0 25.3 25.3c21 21 32.8 49.5 32.8 79.2V464c0 26.5-21.5 48-48 48H173.3c-17 0-33.3-6.7-45.3-18.7L28.1 393.4C10.1 375.4 0 351 0 325.5V224 160 104C0 81.9 17.9 64 40 64zm560 0c22.1 0 40 17.9 40 40v56 64V325.5c0 25.5-10.1 49.9-28.1 67.9L512 493.3c-12 12-28.3 18.7-45.3 18.7H400c-26.5 0-48-21.5-48-48V385.1c0-29.7 11.8-58.2 32.8-79.2l25.3-25.3 0 0 15.2-15.2 32-32c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-32 32-15.2 15.2c-11 11-9.2 29.2 3.7 37.8c9.7 6.5 22.7 5.2 31-3.1l51.1-51.1c12-12 18.7-28.3 18.7-45.3V224 144 104c0-22.1 17.9-40 40-40z" + } + }, + "free": [ + "solid" + ] + }, + "hands-holding-circle": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "circle", + "gift", + "protection" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4fb", + "label": "Hands Holding Circle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0a128 128 0 1 1 0 256A128 128 0 1 1 320 0zM40 64c22.1 0 40 17.9 40 40v40 80 40.2c0 17 6.7 33.3 18.7 45.3l51.1 51.1c8.3 8.3 21.3 9.6 31 3.1c12.9-8.6 14.7-26.9 3.7-37.8l-15.2-15.2-32-32c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l32 32 15.2 15.2 0 0 25.3 25.3c21 21 32.8 49.5 32.8 79.2V464c0 26.5-21.5 48-48 48H173.3c-17 0-33.3-6.7-45.3-18.7L28.1 393.4C10.1 375.4 0 351 0 325.5V224 160 104C0 81.9 17.9 64 40 64zm560 0c22.1 0 40 17.9 40 40v56 64V325.5c0 25.5-10.1 49.9-28.1 67.9L512 493.3c-12 12-28.3 18.7-45.3 18.7H400c-26.5 0-48-21.5-48-48V385.1c0-29.7 11.8-58.2 32.8-79.2l25.3-25.3 0 0 15.2-15.2 32-32c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-32 32-15.2 15.2c-11 11-9.2 29.2 3.7 37.8c9.7 6.5 22.7 5.2 31-3.1l51.1-51.1c12-12 18.7-28.3 18.7-45.3V224 144 104c0-22.1 17.9-40 40-40z" + } + }, + "free": [ + "solid" + ] + }, + "hands-praying": { + "aliases": { + "names": [ + "praying-hands" + ], + "unicodes": { + "secondary": [ + "10f684" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "kneel", + "preach", + "religion", + "worship" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f684", + "label": "Hands Praying", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834203, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M351.2 4.8c3.2-2 6.6-3.3 10-4.1c4.7-1 9.6-.9 14.1 .1c7.7 1.8 14.8 6.5 19.4 13.6L514.6 194.2c8.8 13.1 13.4 28.6 13.4 44.4v73.5c0 6.9 4.4 13 10.9 15.2l79.2 26.4C631.2 358 640 370.2 640 384v96c0 9.9-4.6 19.3-12.5 25.4s-18.1 8.1-27.7 5.5L431 465.9c-56-14.9-95-65.7-95-123.7V224c0-17.7 14.3-32 32-32s32 14.3 32 32v80c0 8.8 7.2 16 16 16s16-7.2 16-16V219.1c0-7-1.8-13.8-5.3-19.8L340.3 48.1c-1.7-3-2.9-6.1-3.6-9.3c-1-4.7-1-9.6 .1-14.1c1.9-8 6.8-15.2 14.3-19.9zm-62.4 0c7.5 4.6 12.4 11.9 14.3 19.9c1.1 4.6 1.2 9.4 .1 14.1c-.7 3.2-1.9 6.3-3.6 9.3L213.3 199.3c-3.5 6-5.3 12.9-5.3 19.8V304c0 8.8 7.2 16 16 16s16-7.2 16-16V224c0-17.7 14.3-32 32-32s32 14.3 32 32V342.2c0 58-39 108.7-95 123.7l-168.7 45c-9.6 2.6-19.9 .5-27.7-5.5S0 489.9 0 480V384c0-13.8 8.8-26 21.9-30.4l79.2-26.4c6.5-2.2 10.9-8.3 10.9-15.2V238.5c0-15.8 4.7-31.2 13.4-44.4L245.2 14.5c4.6-7.1 11.7-11.8 19.4-13.6c4.6-1.1 9.4-1.2 14.1-.1c3.5 .8 6.9 2.1 10 4.1z" + } + }, + "free": [ + "solid" + ] + }, + "handshake": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2b5" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agreement", + "greeting", + "meeting", + "partnership" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2b5", + "label": "Handshake", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M323.4 85.2l-96.8 78.4c-16.1 13-19.2 36.4-7 53.1c12.9 17.8 38 21.3 55.3 7.8l99.3-77.2c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L512 316.8V128h-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2zm22.8 124.4l-51.7 40.2C263 274.4 217.3 268 193.7 235.6c-22.2-30.5-16.6-73.1 12.7-96.8l83.2-67.3c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-72 48V352h28.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c4.5-4.9 7.8-10.6 9.9-16.5c19.4 13 45.8 10.3 62.1-7.5c17.9-19.5 16.6-49.9-2.9-67.8l-134.2-123zM16 128c-8.8 0-16 7.2-16 16V352c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V128H16zM48 320a16 16 0 1 1 0 32 16 16 0 1 1 0-32zM544 128V352c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V144c0-8.8-7.2-16-16-16H544zm32 208a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + }, + "regular": { + "last_modified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M272.2 64.6l-51.1 51.1c-15.3 4.2-29.5 11.9-41.5 22.5L153 161.9C142.8 171 129.5 176 115.8 176H96V304c20.4 .6 39.8 8.9 54.3 23.4l35.6 35.6 7 7 0 0L219.9 397c6.2 6.2 16.4 6.2 22.6 0c1.7-1.7 3-3.7 3.7-5.8c2.8-7.7 9.3-13.5 17.3-15.3s16.4 .6 22.2 6.5L296.5 393c11.6 11.6 30.4 11.6 41.9 0c5.4-5.4 8.3-12.3 8.6-19.4c.4-8.8 5.6-16.6 13.6-20.4s17.3-3 24.4 2.1c9.4 6.7 22.5 5.8 30.9-2.6c9.4-9.4 9.4-24.6 0-33.9L340.1 243l-35.8 33c-27.3 25.2-69.2 25.6-97 .9c-31.7-28.2-32.4-77.4-1.6-106.5l70.1-66.2C303.2 78.4 339.4 64 377.1 64c36.1 0 71 13.3 97.9 37.2L505.1 128H544h40 40c8.8 0 16 7.2 16 16V352c0 17.7-14.3 32-32 32H576c-11.8 0-22.2-6.4-27.7-16H463.4c-3.4 6.7-7.9 13.1-13.5 18.7c-17.1 17.1-40.8 23.8-63 20.1c-3.6 7.3-8.5 14.1-14.6 20.2c-27.3 27.3-70 30-100.4 8.1c-25.1 20.8-62.5 19.5-86-4.1L159 404l-7-7-35.6-35.6c-5.5-5.5-12.7-8.7-20.4-9.3C96 369.7 81.6 384 64 384H32c-17.7 0-32-14.3-32-32V144c0-8.8 7.2-16 16-16H56 96h19.8c2 0 3.9-.7 5.3-2l26.5-23.6C175.5 77.7 211.4 64 248.7 64H259c4.4 0 8.9 .2 13.2 .6zM544 320V176H496c-5.9 0-11.6-2.2-15.9-6.1l-36.9-32.8c-18.2-16.2-41.7-25.1-66.1-25.1c-25.4 0-49.8 9.7-68.3 27.1l-70.1 66.2c-10.3 9.8-10.1 26.3 .5 35.7c9.3 8.3 23.4 8.1 32.5-.3l71.9-66.4c9.7-9 24.9-8.4 33.9 1.4s8.4 24.9-1.4 33.9l-.8 .8 74.4 74.4c10 10 16.5 22.3 19.4 35.1H544zM64 336a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm528 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "handshake-angle": { + "aliases": { + "names": [ + "hands-helping" + ], + "unicodes": { + "secondary": [ + "10f4c4" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aid", + "assistance", + "handshake", + "partnership", + "volunteering" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4c4", + "label": "Handshake Angle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M534 248v3.3l69.7-69.7c21.9-21.9 21.9-57.3 0-79.2L525.6 24.4c-21.9-21.9-57.3-21.9-79.2 0L406.3 64.5c-2.7-.3-5.5-.5-8.3-.5H286c-37.1 0-67.6 28-71.6 64H214V248c0 22.1 17.9 40 40 40s40-17.9 40-40V176c0 0 0-.1 0-.1V160l16 0 136 0c0 0 0 0 .1 0H454c44.2 0 80 35.8 80 80v8zM326 192v56c0 39.8-32.2 72-72 72s-72-32.2-72-72V129.4c-35.9 6.2-65.8 32.3-76 68.2L89.5 255.2 16.3 328.4c-21.9 21.9-21.9 57.3 0 79.2l78.1 78.1c21.9 21.9 57.3 21.9 79.2 0l37.7-37.7c.9 0 1.8 .1 2.7 .1H374c26.5 0 48-21.5 48-48c0-5.6-1-11-2.7-16H422c26.5 0 48-21.5 48-48c0-12.8-5-24.4-13.2-33c25.7-5 45.1-27.6 45.2-54.8v-.4c-.1-30.8-25.1-55.8-56-55.8c0 0 0 0 0 0l-120 0z" + } + }, + "free": [ + "solid" + ] + }, + "handshake-simple": { + "aliases": { + "names": [ + "handshake-alt" + ], + "unicodes": { + "composite": [ + "1f91d" + ], + "secondary": [ + "10f4c6" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agreement", + "greeting", + "hand", + "handshake", + "meeting", + "partnership", + "shake" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4c6", + "label": "Handshake Simple", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M323.4 85.2l-96.8 78.4c-16.1 13-19.2 36.4-7 53.1c12.9 17.8 38 21.3 55.3 7.8l99.3-77.2c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L550.2 352H592c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H516h-4-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2zm22.8 124.4l-51.7 40.2C263 274.4 217.3 268 193.7 235.6c-22.2-30.5-16.6-73.1 12.7-96.8l83.2-67.3c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-72 48H48c-26.5 0-48 21.5-48 48V304c0 26.5 21.5 48 48 48H156.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c4.5-4.9 7.8-10.6 9.9-16.5c19.4 13 45.8 10.3 62.1-7.5c17.9-19.5 16.6-49.9-2.9-67.8l-134.2-123z" + } + }, + "free": [ + "solid" + ] + }, + "handshake-simple-slash": { + "aliases": { + "names": [ + "handshake-alt-slash" + ], + "unicodes": { + "secondary": [ + "10e05f" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "broken", + "covid-19", + "social distance" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e05f", + "label": "Handshake Simple Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-135-105.8c-1.1-11.4-6.3-22.3-15.3-30.7l-134.2-123-23.4 18.2-26-20.3 77.2-60.1c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L550.2 352H592c26.5 0 48-21.5 48-48V176c0-26.5-21.5-48-48-48H516h-4-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2l-89.7 72.6-25.8-20.3 81.8-66.2c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-35.5 23.7L38.8 5.1zM0 176V304c0 26.5 21.5 48 48 48H156.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c.8-.8 1.5-1.7 2.2-2.6L41.2 128.5C17.9 131.8 0 151.8 0 176z" + } + }, + "free": [ + "solid" + ] + }, + "handshake-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e060" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "broken", + "covid-19", + "social distance" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e060", + "label": "Handshake Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670852237, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-135-105.8c-1.1-11.4-6.3-22.3-15.3-30.7l-134.2-123-23.4 18.2-26-20.3 77.2-60.1c7-5.4 17-4.2 22.5 2.8s4.2 17-2.8 22.5l-20.9 16.2L512 316.8V128h-.7l-3.9-2.5L434.8 79c-15.3-9.8-33.2-15-51.4-15c-21.8 0-43 7.5-60 21.2l-89.7 72.6-25.8-20.3 81.8-66.2c-11.6-4.9-24.1-7.4-36.8-7.4C234 64 215.7 69.6 200 80l-35.5 23.7L38.8 5.1zM96 171.6L40.6 128H0V352c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V171.6zM413.6 421.9L128 196.9V352h28.2l91.4 83.4c19.6 17.9 49.9 16.5 67.8-3.1c5.5-6.1 9.2-13.2 11.1-20.6l17 15.6c19.5 17.9 49.9 16.6 67.8-2.9c.8-.8 1.5-1.7 2.2-2.6zM48 320a16 16 0 1 1 0 32 16 16 0 1 1 0-32zM544 128V352c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V128H544zm32 208a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + } + }, + "free": [ + "solid" + ] + }, + "hanukiah": { + "aliases": { + "unicodes": { + "composite": [ + "1f54e" + ], + "secondary": [ + "10f6e6" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "candelabrum", + "candle", + "candlestick", + "hanukkah", + "jewish", + "judaism", + "light", + "menorah", + "religion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6e6", + "label": "Hanukiah", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M314.2 3.3C309.1 12.1 296 36.6 296 56c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7C324.6 1.2 322.4 0 320 0s-4.6 1.2-5.8 3.3zm-288 48C21.1 60.1 8 84.6 8 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7C36.6 49.2 34.4 48 32 48s-4.6 1.2-5.8 3.3zM88 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C101.1 60.1 88 84.6 88 104zm82.2-52.7C165.1 60.1 152 84.6 152 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3zM216 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C229.1 60.1 216 84.6 216 104zM394.2 51.3C389.1 60.1 376 84.6 376 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3zM440 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C453.1 60.1 440 84.6 440 104zm82.2-52.7C517.1 60.1 504 84.6 504 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3zM584 104c0 13.3 10.7 24 24 24s24-10.7 24-24c0-19.4-13.1-43.9-18.2-52.7c-1.2-2.1-3.4-3.3-5.8-3.3s-4.6 1.2-5.8 3.3C597.1 60.1 584 84.6 584 104zM112 160c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm160 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zm64 0c-8.8 0-16 7.2-16 16v96 16h32V272 176c0-8.8-7.2-16-16-16zM352 144c0-17.7-14.3-32-32-32s-32 14.3-32 32V320H96c-17.7 0-32-14.3-32-32V192c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 53 43 96 96 96H288v64H160c-17.7 0-32 14.3-32 32s14.3 32 32 32H320 480c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V384H544c53 0 96-43 96-96V192c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H352V144z" + } + }, + "free": [ + "solid" + ] + }, + "hard-drive": { + "aliases": { + "names": [ + "hdd" + ], + "unicodes": { + "composite": [ + "1f5b4" + ], + "secondary": [ + "10f0a0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Hard Disk", + "cpu", + "hard drive", + "harddrive", + "machine", + "save", + "storage" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0a0", + "label": "Hard Drive", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V280.4c-17-15.2-39.4-24.4-64-24.4H64c-24.6 0-47 9.2-64 24.4V96zM64 288H448c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V352c0-35.3 28.7-64 64-64zM320 416a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm128-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + }, + "regular": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16V258c5.1-1.3 10.5-2 16-2H448c5.5 0 10.9 .7 16 2V96c0-8.8-7.2-16-16-16H64zM48 320v96c0 8.8 7.2 16 16 16H448c8.8 0 16-7.2 16-16V320c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16zM0 320V96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V320v96c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320zm280 48a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm120-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "hashnode": { + "changes": [ + "6.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e499", + "label": "Hashnode", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M35.19 171.1C-11.72 217.1-11.72 294 35.19 340.9L171.1 476.8C217.1 523.7 294 523.7 340.9 476.8L476.8 340.9C523.7 294 523.7 217.1 476.8 171.1L340.9 35.19C294-11.72 217.1-11.72 171.1 35.19L35.19 171.1zM315.5 315.5C282.6 348.3 229.4 348.3 196.6 315.5C163.7 282.6 163.7 229.4 196.6 196.6C229.4 163.7 282.6 163.7 315.5 196.6C348.3 229.4 348.3 282.6 315.5 315.5z" + } + }, + "free": [ + "brands" + ] + }, + "hashtag": { + "aliases": { + "unicodes": { + "composite": [ + "f292" + ], + "primary": [ + "f292" + ], + "secondary": [ + "1023", + "10f292" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Number Sign", + "Twitter", + "instagram", + "pound", + "social media", + "tag" + ] + }, + "styles": [ + "solid" + ], + "unicode": "23", + "label": "Hashtag", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M181.3 32.4c17.4 2.9 29.2 19.4 26.3 36.8L197.8 128h95.1l11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3s29.2 19.4 26.3 36.8L357.8 128H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H347.1L325.8 320H384c17.7 0 32 14.3 32 32s-14.3 32-32 32H315.1l-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l9.8-58.7H155.1l-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8L90.2 384H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l21.3-128H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3zM187.1 192L165.8 320h95.1l21.3-128H187.1z" + } + }, + "free": [ + "solid" + ] + }, + "hat-cowboy": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8c0" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buckaroo", + "horse", + "jackeroo", + "john b.", + "old west", + "pardner", + "ranch", + "rancher", + "rodeo", + "western", + "wrangler" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f8c0", + "label": "Hat Cowboy", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 64c14.4 0 22.3-7 30.8-14.4C360.4 41.1 370.7 32 392 32c49.3 0 84.4 152.2 97.9 221.9C447.8 272.1 390.9 288 320 288s-127.8-15.9-169.9-34.1C163.6 184.2 198.7 32 248 32c21.3 0 31.6 9.1 41.2 17.6C297.7 57 305.6 64 320 64zM111.1 270.7c47.2 24.5 117.5 49.3 209 49.3s161.8-24.8 208.9-49.3c24.8-12.9 49.8-28.3 70.1-47.7c7.9-7.9 20.2-9.2 29.6-3.3c9.5 5.9 13.5 17.9 9.9 28.5c-13.5 37.7-38.4 72.3-66.1 100.6C523.7 398.9 443.6 448 320 448s-203.6-49.1-252.5-99.2C39.8 320.4 14.9 285.8 1.4 248.1c-3.6-10.6 .4-22.6 9.9-28.5c9.5-5.9 21.7-4.5 29.6 3.3c20.4 19.4 45.3 34.8 70.1 47.7z" + } + }, + "free": [ + "solid" + ] + }, + "hat-cowboy-side": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8c1" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buckaroo", + "horse", + "jackeroo", + "john b.", + "old west", + "pardner", + "ranch", + "rancher", + "rodeo", + "western", + "wrangler" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f8c1", + "label": "Hat Cowboy Side", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M152.7 135.9l-10.4 57.2c6.8-.7 13.6-1.1 20.5-1.1h10.7c39.4 0 77.8 12.1 110.1 34.7L562.4 421.8l35.1 24.6c24.4-6 42.5-28.1 42.5-54.4c0-75.8-94.7-126.6-134.6-144.7L474 83.9C468.2 53.8 441.8 32 411.1 32h-2.7c-5.6 0-11.1 .7-16.5 2.2L199.2 85.5c-23.9 6.4-42 26-46.5 50.4zM0 384c0 35.3 28.7 64 64 64H544L265.3 252.9c-26.9-18.8-58.9-28.9-91.8-28.9H162.9c-60.6 0-116 34.2-143.1 88.4L13.5 325C4.6 342.7 0 362.3 0 382.2V384z" + } + }, + "free": [ + "solid" + ] + }, + "hat-wizard": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6e8" + ] + } + }, + "changes": [ + "5.4.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "accessory", + "buckle", + "clothing", + "d&d", + "dnd", + "fantasy", + "halloween", + "head", + "holiday", + "mage", + "magic", + "pointy", + "witch" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6e8", + "label": "Hat Wizard", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 416L168.6 180.7c15.3-34.4 40.3-63.5 72-83.7l146.9-94c3-1.9 6.5-2.9 10-2.9C407.7 0 416 8.3 416 18.6v1.6c0 2.6-.5 5.1-1.4 7.5L354.8 176.9c-1.9 4.7-2.8 9.7-2.8 14.7c0 5.5 1.2 11 3.4 16.1L448 416H240.9l11.8-35.4 40.4-13.5c6.5-2.2 10.9-8.3 10.9-15.2s-4.4-13-10.9-15.2l-40.4-13.5-13.5-40.4C237 276.4 230.9 272 224 272s-13 4.4-15.2 10.9l-13.5 40.4-40.4 13.5C148.4 339 144 345.1 144 352s4.4 13 10.9 15.2l40.4 13.5L207.1 416H64zM279.6 141.5c-1.1-3.3-4.1-5.5-7.6-5.5s-6.5 2.2-7.6 5.5l-6.7 20.2-20.2 6.7c-3.3 1.1-5.5 4.1-5.5 7.6s2.2 6.5 5.5 7.6l20.2 6.7 6.7 20.2c1.1 3.3 4.1 5.5 7.6 5.5s6.5-2.2 7.6-5.5l6.7-20.2 20.2-6.7c3.3-1.1 5.5-4.1 5.5-7.6s-2.2-6.5-5.5-7.6l-20.2-6.7-6.7-20.2zM32 448H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "head-side-cough": { + "aliases": { + "unicodes": { + "secondary": [ + "10e061" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cough", + "covid-19", + "germs", + "lungs", + "respiratory", + "sick" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e061", + "label": "Head Side Cough", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 224.2C0 100.6 100.2 0 224 0h32c95.2 0 174.2 69.3 189.4 160.1c2.2 13 6.7 25.7 15 36.1l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4c0 24.2-19.6 43.8-43.8 43.8H448v0 32L339.2 365.6c-11 1.4-19.2 10.7-19.2 21.8c0 11.6 9 21.2 20.6 21.9L448 416v16c0 26.5-21.5 48-48 48H320v8c0 13.3-10.7 24-24 24H256v0H96c-17.7 0-32-14.3-32-32V407.3c0-16.7-6.9-32.5-17.1-45.8C16.6 322.4 0 274.1 0 224.2zm352-.2a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM464 384a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm152-24a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM592 480a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM552 312a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm40-24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM552 408a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + }, + "free": [ + "solid" + ] + }, + "head-side-cough-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e062" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cough", + "covid-19", + "germs", + "lungs", + "respiratory", + "sick" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e062", + "label": "Head Side Cough Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L440.3 319.8c22.3-2.1 39.7-20.8 39.7-43.7c0-10-3.4-19.6-9.6-27.4l-42-52.6c-8.3-10.3-12.8-23-15-36.1C398.2 69.3 319.2 0 224 0H201.7C157 0 115.7 14.5 82.2 39.2L38.8 5.1zM0 201.7c0 44.8 18.3 91.5 46.5 127.7C56.9 342.8 64 358.8 64 375.8V480c0 17.7 14.3 32 32 32H256c17.7 0 32-14.3 32-32h64c32.8 0 59.9-24.7 63.6-56.6l-9.4-7.4H352c-17.7 0-32-14.3-32-32c0-10.5 5.1-19.9 12.9-25.7L20.8 112.4C7.5 139.3 0 169.6 0 201.7zM632 288a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm-88 72a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm64 48a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + }, + "free": [ + "solid" + ] + }, + "head-side-mask": { + "aliases": { + "unicodes": { + "secondary": [ + "10e063" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "coronavirus", + "covid-19", + "filter", + "flu", + "infection", + "pandemic", + "respirator", + "virus" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e063", + "label": "Head Side Mask", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224.2c0-22.2 3.2-43.6 9.2-63.9l227 165.1C228.5 337.8 224 352.4 224 368V512H96c-17.7 0-32-14.3-32-32V407.3c0-16.7-6.9-32.5-17.1-45.8C16.6 322.4 0 274.1 0 224.2zm258.6 77.9L21 129.3C56.7 53 134.2 0 224 0h32c95.2 0 174.2 69.3 189.4 160.1c2.2 13 6.7 25.7 15 36.1l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4c0 4.1-.6 8.1-1.6 11.9H304c-16.9 0-32.5 5.2-45.4 14.1zM352 224a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM256 512V368c0-26.5 21.5-48 48-48H512l-16 48H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H485.3l-10.7 32H336c-8.8 0-16 7.2-16 16s7.2 16 16 16H464l-1.4 4.2c-8.7 26.1-33.2 43.8-60.7 43.8H256z" + } + }, + "free": [ + "solid" + ] + }, + "head-side-virus": { + "aliases": { + "unicodes": { + "secondary": [ + "10e064" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "coronavirus", + "covid-19", + "flu", + "infection", + "pandemic", + "sick" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e064", + "label": "Head Side Virus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224.2C0 100.6 100.2 0 224 0h32c95.2 0 174.2 69.3 189.4 160.1c2.2 13 6.7 25.7 15 36.1l42 52.6c6.2 7.8 9.6 17.4 9.6 27.4c0 24.2-19.6 43.8-43.8 43.8H448v64c0 35.3-28.7 64-64 64H320v32c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V407.3c0-16.7-6.9-32.5-17.1-45.8C16.6 322.4 0 274.1 0 224.2zM240 80c-8.8 0-16 7.2-16 16c0 33-39.9 49.5-63.2 26.2c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6C161.5 168.1 145 208 112 208c-8.8 0-16 7.2-16 16s7.2 16 16 16c33 0 49.5 39.9 26.2 63.2c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0C184.1 302.5 224 319 224 352c0 8.8 7.2 16 16 16s16-7.2 16-16c0-33 39.9-49.5 63.2-26.2c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6C318.5 279.9 335 240 368 240c8.8 0 16-7.2 16-16s-7.2-16-16-16c-33 0-49.5-39.9-26.2-63.2c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0C295.9 145.5 256 129 256 96c0-8.8-7.2-16-16-16zm-24 96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm40 80a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + } + }, + "free": [ + "solid" + ] + }, + "heading": { + "aliases": { + "names": [ + "header" + ], + "unicodes": { + "secondary": [ + "10f1dc" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.9.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "format", + "header", + "text", + "title" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1dc", + "label": "Heading", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H80h48c17.7 0 32 14.3 32 32s-14.3 32-32 32H112V208H336V96H320c-17.7 0-32-14.3-32-32s14.3-32 32-32h48 48c17.7 0 32 14.3 32 32s-14.3 32-32 32H400V240 416h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H368 320c-17.7 0-32-14.3-32-32s14.3-32 32-32h16V272H112V416h16c17.7 0 32 14.3 32 32s-14.3 32-32 32H80 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48V240 96H32C14.3 96 0 81.7 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "headphones": { + "aliases": { + "unicodes": { + "composite": [ + "1f3a7" + ], + "secondary": [ + "10f025" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "earbud", + "headphone", + "listen", + "music", + "sound", + "speaker" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f025", + "label": "Headphones", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 80C149.9 80 62.4 159.4 49.6 262c9.4-3.8 19.6-6 30.4-6c26.5 0 48 21.5 48 48V432c0 26.5-21.5 48-48 48c-44.2 0-80-35.8-80-80V384 336 288C0 146.6 114.6 32 256 32s256 114.6 256 256v48 48 16c0 44.2-35.8 80-80 80c-26.5 0-48-21.5-48-48V304c0-26.5 21.5-48 48-48c10.8 0 21 2.1 30.4 6C449.6 159.4 362.1 80 256 80z" + } + }, + "free": [ + "solid" + ] + }, + "headphones-simple": { + "aliases": { + "names": [ + "headphones-alt" + ], + "unicodes": { + "secondary": [ + "10f58f" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "listen", + "music", + "sound", + "speaker" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f58f", + "label": "Headphones Simple", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 80C141.1 80 48 173.1 48 288V392c0 13.3-10.7 24-24 24s-24-10.7-24-24V288C0 146.6 114.6 32 256 32s256 114.6 256 256V392c0 13.3-10.7 24-24 24s-24-10.7-24-24V288c0-114.9-93.1-208-208-208zM80 352c0-35.3 28.7-64 64-64h16c17.7 0 32 14.3 32 32V448c0 17.7-14.3 32-32 32H144c-35.3 0-64-28.7-64-64V352zm288-64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H352c-17.7 0-32-14.3-32-32V320c0-17.7 14.3-32 32-32h16z" + } + }, + "free": [ + "solid" + ] + }, + "headset": { + "aliases": { + "unicodes": { + "secondary": [ + "10f590" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "gamer", + "gaming", + "listen", + "live chat", + "microphone", + "shot caller", + "sound", + "support", + "telemarketer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f590", + "label": "Headset", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48C141.1 48 48 141.1 48 256v40c0 13.3-10.7 24-24 24s-24-10.7-24-24V256C0 114.6 114.6 0 256 0S512 114.6 512 256V400.1c0 48.6-39.4 88-88.1 88L313.6 488c-8.3 14.3-23.8 24-41.6 24H240c-26.5 0-48-21.5-48-48s21.5-48 48-48h32c17.8 0 33.3 9.7 41.6 24l110.4 .1c22.1 0 40-17.9 40-40V256c0-114.9-93.1-208-208-208zM144 208h16c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H144c-35.3 0-64-28.7-64-64V272c0-35.3 28.7-64 64-64zm224 0c35.3 0 64 28.7 64 64v48c0 35.3-28.7 64-64 64H352c-17.7 0-32-14.3-32-32V240c0-17.7 14.3-32 32-32h16z" + } + }, + "free": [ + "solid" + ] + }, + "heart": { + "aliases": { + "unicodes": { + "composite": [ + "1f499", + "1f49a", + "1f49b", + "1f49c", + "1f5a4", + "1f90d", + "1f90e", + "1f9e1", + "2665", + "2764", + "f08a" + ], + "secondary": [ + "10f004" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "black", + "black heart", + "blue", + "blue heart", + "brown", + "brown heart", + "card", + "evil", + "favorite", + "game", + "green", + "green heart", + "heart", + "heart suit", + "like", + "love", + "orange", + "orange heart", + "purple", + "purple heart", + "red heart", + "relationship", + "valentine", + "white", + "white heart", + "wicked", + "yellow", + "yellow heart" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f004", + "label": "Heart", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z" + }, + "regular": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M244 84L255.1 96L267.1 84.02C300.6 51.37 347 36.51 392.6 44.1C461.5 55.58 512 115.2 512 185.1V190.9C512 232.4 494.8 272.1 464.4 300.4L283.7 469.1C276.2 476.1 266.3 480 256 480C245.7 480 235.8 476.1 228.3 469.1L47.59 300.4C17.23 272.1 0 232.4 0 190.9V185.1C0 115.2 50.52 55.58 119.4 44.1C164.1 36.51 211.4 51.37 244 84C243.1 84 244 84.01 244 84L244 84zM255.1 163.9L210.1 117.1C188.4 96.28 157.6 86.4 127.3 91.44C81.55 99.07 48 138.7 48 185.1V190.9C48 219.1 59.71 246.1 80.34 265.3L256 429.3L431.7 265.3C452.3 246.1 464 219.1 464 190.9V185.1C464 138.7 430.4 99.07 384.7 91.44C354.4 86.4 323.6 96.28 301.9 117.1L255.1 163.9z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "heart-circle-bolt": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cardiogram", + "ekg", + "electric", + "heart", + "love", + "pacemaker" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4fc", + "label": "Heart Circle Bolt", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm47.9-225c4.3 3.7 5.4 9.9 2.6 14.9L452.4 356H488c5.2 0 9.8 3.3 11.4 8.2s-.1 10.3-4.2 13.4l-96 72c-4.5 3.4-10.8 3.2-15.1-.6s-5.4-9.9-2.6-14.9L411.6 380H376c-5.2 0-9.8-3.3-11.4-8.2s.1-10.3 4.2-13.4l96-72c4.5-3.4 10.8-3.2 15.1 .6z" + } + }, + "free": [ + "solid" + ] + }, + "heart-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love", + "not affected", + "ok", + "okay" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4fd", + "label": "Heart Circle Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM576 368c0-79.5-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144s144-64.5 144-144zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L416 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + }, + "free": [ + "solid" + ] + }, + "heart-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4fe", + "label": "Heart Circle Exclamation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm0-48c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24zm0-192c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "heart-circle-minus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4ff", + "label": "Heart Circle Minus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM576 368c0-79.5-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144s144-64.5 144-144zm-64 0c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s7.2-16 16-16H496c8.8 0 16 7.2 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "heart-circle-plus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e500", + "label": "Heart Circle Plus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm16-208v48h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H448v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V384H368c-8.8 0-16-7.2-16-16s7.2-16 16-16h48V304c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "heart-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "favorite", + "heart", + "love" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e501", + "label": "Heart Circle Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9l2.6-2.4C267.2 438.6 256 404.6 256 368c0-97.2 78.8-176 176-176c28.3 0 55 6.7 78.7 18.5c.9-6.5 1.3-13 1.3-19.6v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5zM432 512c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144s64.5 144 144 144zm59.3-180.7L454.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L432 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L409.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L432 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + }, + "free": [ + "solid" + ] + }, + "heart-crack": { + "aliases": { + "names": [ + "heart-broken" + ], + "unicodes": { + "composite": [ + "1f494" + ], + "secondary": [ + "10f7a9" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "break", + "breakup", + "broken", + "broken heart", + "crushed", + "dislike", + "dumped", + "grief", + "love", + "lovesick", + "relationship", + "sad" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7a9", + "label": "Heart Crack", + "voted": true, + "svg": { + "solid": { + "last_modified": 1660321830, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M119.4 44.1c23.3-3.9 46.8-1.9 68.6 5.3l49.8 77.5-75.4 75.4c-1.5 1.5-2.4 3.6-2.3 5.8s1 4.2 2.6 5.7l112 104c2.9 2.7 7.4 2.9 10.5 .3s3.8-7 1.7-10.4l-60.4-98.1 90.7-75.6c2.6-2.1 3.5-5.7 2.4-8.8L296.8 61.8c28.5-16.7 62.4-23.2 95.7-17.6C461.5 55.6 512 115.2 512 185.1v5.8c0 41.5-17.2 81.2-47.6 109.5L283.7 469.1c-7.5 7-17.4 10.9-27.7 10.9s-20.2-3.9-27.7-10.9L47.6 300.4C17.2 272.1 0 232.4 0 190.9v-5.8c0-69.9 50.5-129.5 119.4-141z" + } + }, + "free": [ + "solid" + ] + }, + "heart-pulse": { + "aliases": { + "names": [ + "heartbeat" + ], + "unicodes": { + "secondary": [ + "10f21e" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ekg", + "electrocardiogram", + "health", + "lifeline", + "vital signs" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f21e", + "label": "Heart Pulse", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M228.3 469.1L47.6 300.4c-4.2-3.9-8.2-8.1-11.9-12.4h87c22.6 0 43-13.6 51.7-34.5l10.5-25.2 49.3 109.5c3.8 8.5 12.1 14 21.4 14.1s17.8-5 22-13.3L320 253.7l1.7 3.4c9.5 19 28.9 31 50.1 31H476.3c-3.7 4.3-7.7 8.5-11.9 12.4L283.7 469.1c-7.5 7-17.4 10.9-27.7 10.9s-20.2-3.9-27.7-10.9zM503.7 240h-132c-3 0-5.8-1.7-7.2-4.4l-23.2-46.3c-4.1-8.1-12.4-13.3-21.5-13.3s-17.4 5.1-21.5 13.3l-41.4 82.8L205.9 158.2c-3.9-8.7-12.7-14.3-22.2-14.1s-18.1 5.9-21.8 14.8l-31.8 76.3c-1.2 3-4.2 4.9-7.4 4.9H16c-2.6 0-5 .4-7.3 1.1C3 225.2 0 208.2 0 190.9v-5.8c0-69.9 50.5-129.5 119.4-141C165 36.5 211.4 51.4 244 84l12 12 12-12c32.6-32.6 79-47.5 124.6-39.9C461.5 55.6 512 115.2 512 185.1v5.8c0 16.9-2.8 33.5-8.3 49.1z" + } + }, + "free": [ + "solid" + ] + }, + "helicopter": { + "aliases": { + "unicodes": { + "composite": [ + "1f681" + ], + "secondary": [ + "10f533" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airwolf", + "apache", + "chopper", + "flight", + "fly", + "helicopter", + "travel", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f533", + "label": "Helicopter", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 32c0-17.7 14.3-32 32-32H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H384v64h32c88.4 0 160 71.6 160 160v64c0 17.7-14.3 32-32 32H384 320c-20.1 0-39.1-9.5-51.2-25.6l-71.4-95.2c-3.5-4.7-8.3-8.3-13.7-10.5L47.2 198.1c-9.5-3.8-16.7-12-19.2-22L5 83.9C2.4 73.8 10.1 64 20.5 64H48c10.1 0 19.6 4.7 25.6 12.8L112 128H320V64H160c-17.7 0-32-14.3-32-32zM384 320H512V288c0-53-43-96-96-96H384V320zM630.6 425.4c12.5 12.5 12.5 32.8 0 45.3l-3.9 3.9c-24 24-56.6 37.5-90.5 37.5H256c-17.7 0-32-14.3-32-32s14.3-32 32-32H536.2c17 0 33.3-6.7 45.3-18.7l3.9-3.9c12.5-12.5 32.8-12.5 45.3 0z" + } + }, + "free": [ + "solid" + ] + }, + "helicopter-symbol": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chopper", + "helicopter", + "landing pad", + "whirlybird" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e502", + "label": "Helicopter Symbol", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M443.3 224H508C493.6 108.2 401.8 16.4 286 2V66.7C366.4 80.1 429.9 143.6 443.3 224zM508 288H443.3C429.9 368.4 366.4 431.9 286 445.4V510c115.8-14.4 207.6-106.2 222-222zM0 288C14.4 403.8 106.2 495.6 222 510V445.4C141.6 431.9 78.1 368.4 64.7 288H0zm0-64H64.7C78.1 143.6 141.6 80.1 222 66.7V2C106.2 16.4 14.4 108.2 0 224zm206-64c0-17.7-14.3-32-32-32s-32 14.3-32 32V352c0 17.7 14.3 32 32 32s32-14.3 32-32V288h96v64c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H206V160z" + } + }, + "free": [ + "solid" + ] + }, + "helmet-safety": { + "aliases": { + "names": [ + "hard-hat", + "hat-hard" + ], + "unicodes": { + "secondary": [ + "10f807" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "construction", + "hardhat", + "helmet", + "safety" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f807", + "label": "Helmet Safety", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M256 32c-17.7 0-32 14.3-32 32v2.3 99.6c0 5.6-4.5 10.1-10.1 10.1c-3.6 0-7-1.9-8.8-5.1L157.1 87C83 123.5 32 199.8 32 288v64H544l0-66.4c-.9-87.2-51.7-162.4-125.1-198.6l-48 83.9c-1.8 3.2-5.2 5.1-8.8 5.1c-5.6 0-10.1-4.5-10.1-10.1V66.3 64c0-17.7-14.3-32-32-32H256zM16.6 384C7.4 384 0 391.4 0 400.6c0 4.7 2 9.2 5.8 11.9C27.5 428.4 111.8 480 288 480s260.5-51.6 282.2-67.5c3.8-2.8 5.8-7.2 5.8-11.9c0-9.2-7.4-16.6-16.6-16.6H16.6z" + } + }, + "free": [ + "solid" + ] + }, + "helmet-un": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "helmet", + "united nations" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e503", + "label": "Helmet Un", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M479.5 224C471.2 98.9 367.2 0 240 0C107.5 0 0 107.5 0 240v56.3C0 344.8 39.2 384 87.7 384H200h14.9L343.5 505.4c4.5 4.2 10.4 6.6 16.5 6.6h96c13.3 0 24-10.7 24-24s-10.7-24-24-24H369.5l-1.5-1.5V288h80 32c17.7 0 32-14.3 32-32s-14.3-32-32-32h-.5zM320 417.2l-78-73.7L274.4 288H320V417.2zM285.3 103.1l34.7 52V112c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52V208c0 8.8-7.2 16-16 16s-16-7.2-16-16V112c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4zM160 112v64c0 8.8 7.2 16 16 16s16-7.2 16-16V112c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48V112c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "highlighter": { + "aliases": { + "unicodes": { + "secondary": [ + "10f591" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "marker", + "sharpie", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f591", + "label": "Highlighter", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M315 315l158.4-215L444.1 70.6 229 229 315 315zm-187 5l0 0V248.3c0-15.3 7.2-29.6 19.5-38.6L420.6 8.4C428 2.9 437 0 446.2 0c11.4 0 22.4 4.5 30.5 12.6l54.8 54.8c8.1 8.1 12.6 19 12.6 30.5c0 9.2-2.9 18.2-8.4 25.6L334.4 396.5c-9 12.3-23.4 19.5-38.6 19.5H224l-25.4 25.4c-12.5 12.5-32.8 12.5-45.3 0l-50.7-50.7c-12.5-12.5-12.5-32.8 0-45.3L128 320zM7 466.3l63-63 70.6 70.6-31 31c-4.5 4.5-10.6 7-17 7H24c-13.3 0-24-10.7-24-24v-4.7c0-6.4 2.5-12.5 7-17z" + } + }, + "free": [ + "solid" + ] + }, + "hill-avalanche": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mudslide", + "snow", + "winter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e507", + "label": "Hill Avalanche", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M440.7 401.9c34.2 23.1 81.1 19.5 111.4-10.8c34.4-34.4 34.4-90.1 0-124.4c-27.8-27.8-69.5-33.1-102.6-16c-11.8 6.1-16.4 20.6-10.3 32.3s20.6 16.4 32.3 10.3c15.1-7.8 34-5.3 46.6 7.3c15.6 15.6 15.6 40.9 0 56.6s-40.9 15.6-56.6 0l-81.7-81.7C402.2 261.3 417 236.4 417 208c0-33.9-21.1-62.9-50.9-74.5c1.9-6.8 2.9-14 2.9-21.5c0-44.2-35.8-80-80-80c-27.3 0-51.5 13.7-65.9 34.6C217.3 46.6 198.9 32 177 32c-26.5 0-48 21.5-48 48c0 4 .5 7.9 1.4 11.6L440.7 401.9zM481 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM69.3 87C44.1 61.8 1 79.7 1 115.3V432c0 44.2 35.8 80 80 80H397.7c35.6 0 53.5-43.1 28.3-68.3L69.3 87z" + } + }, + "free": [ + "solid" + ] + }, + "hill-rockslide": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mudslide" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e508", + "label": "Hill Rockslide", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M252.4 103.8l27 48c2.8 5 8.2 8.2 13.9 8.2l53.3 0c5.8 0 11.1-3.1 13.9-8.2l27-48c2.7-4.9 2.7-10.8 0-15.7l-27-48c-2.8-5-8.2-8.2-13.9-8.2H293.4c-5.8 0-11.1 3.1-13.9 8.2l-27 48c-2.7 4.9-2.7 10.8 0 15.7zM68.3 87C43.1 61.8 0 79.7 0 115.3V432c0 44.2 35.8 80 80 80H396.7c35.6 0 53.5-43.1 28.3-68.3L68.3 87zM504.2 403.6c4.9 2.7 10.8 2.7 15.7 0l48-27c5-2.8 8.2-8.2 8.2-13.9V309.4c0-5.8-3.1-11.1-8.2-13.9l-48-27c-4.9-2.7-10.8-2.7-15.7 0l-48 27c-5 2.8-8.2 8.2-8.2 13.9v53.3c0 5.8 3.1 11.1 8.2 13.9l48 27zM192 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM384 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "hippo": { + "aliases": { + "unicodes": { + "composite": [ + "1f99b" + ], + "secondary": [ + "10f6ed" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.1", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "fauna", + "hippo", + "hippopotamus", + "hungry", + "mammal" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6ed", + "label": "Hippo", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M407 47c9.4-9.4 24.6-9.4 33.9 0l17.2 17.2c1.9-.1 3.9-.2 5.8-.2h32c11.2 0 21.9 2.3 31.6 6.5L543 55c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L564 101.9c7.6 12.2 12 26.7 12 42.1c0 10.2 7.4 18.8 16.7 23c27.9 12.5 47.3 40.5 47.3 73c0 26.2-12.6 49.4-32 64v32c0 8.8-7.2 16-16 16H560c-8.8 0-16-7.2-16-16V320H480v16c0 8.8-7.2 16-16 16H432c-8.8 0-16-7.2-16-16V318.4c-11.8-2.4-22.7-7.4-32-14.4c-1.5-1.1-2.9-2.3-4.3-3.5c-17-14.7-27.7-36.4-27.7-60.5c0-8.8-7.2-16-16-16s-16 7.2-16 16c0 44.7 26.2 83.2 64 101.2V352c0 17.7 14.3 32 32 32h32v64c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V372c-19.8 7.7-41.4 12-64 12s-44.2-4.3-64-12v76c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V329.1L45.9 369.7c-5.4 12.1-19.6 17.6-31.7 12.2S-3.3 362.4 2.1 350.3L24 300.9c5.3-11.9 8-24.7 8-37.7C32 155.7 117.2 68 223.8 64.1l.2-.1h7.2H256h32c41.7 0 83.4 12.1 117.2 25.7c1.7-1.8 3.5-3.6 5.3-5.2L407 81c-9.4-9.4-9.4-24.6 0-33.9zm73 185a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm88 24a24 24 0 1 0 0-48 24 24 0 1 0 0 48zM480 144a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm48 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + }, + "free": [ + "solid" + ] + }, + "hips": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f452", + "label": "Hips", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M251.6 157.6c0-1.9-.9-2.8-2.8-2.8h-40.9c-1.6 0-2.7 1.4-2.7 2.8v201.8c0 1.4 1.1 2.8 2.7 2.8h40.9c1.9 0 2.8-.9 2.8-2.8zM156.5 168c-16.1-11.8-36.3-17.9-60.3-18-18.1-.1-34.6 3.7-49.8 11.4V80.2c0-1.8-.9-2.7-2.8-2.7H2.7c-1.8 0-2.7.9-2.7 2.7v279.2c0 1.9.9 2.8 2.7 2.8h41c1.9 0 2.8-.9 2.8-2.8V223.3c0-.8-2.8-27 45.8-27 48.5 0 45.8 26.1 45.8 27v122.6c0 9 7.3 16.3 16.4 16.3h27.3c1.8 0 2.7-.9 2.7-2.8V223.3c0-23.4-9.3-41.8-28-55.3zm478.4 110.1c-6.8-15.7-18.4-27-34.9-34.1l-57.6-25.3c-8.6-3.6-9.2-11.2-2.6-16.1 7.4-5.5 44.3-13.9 84 6.8 1.7 1 4-.3 4-2.4v-44.7c0-1.3-.6-2.1-1.9-2.6-17.7-6.6-36.1-9.9-55.1-9.9-26.5 0-45.3 5.8-58.5 15.4-.5.4-28.4 20-22.7 53.7 3.4 19.6 15.8 34.2 37.2 43.6l53.6 23.5c11.6 5.1 15.2 13.3 12.2 21.2-3.7 9.1-13.2 13.6-36.5 13.6-24.3 0-44.7-8.9-58.4-19.1-2.1-1.4-4.4.2-4.4 2.3v34.4c0 10.4 4.9 17.3 14.6 20.7 15.6 5.5 31.6 8.2 48.2 8.2 12.7 0 25.8-1.2 36.3-4.3.7-.3 36-8.9 45.6-45.8 3.5-13.5 2.4-26.5-3.1-39.1zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8.6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7.1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2.1 34.3-27.3 62.2-62.2 62.2zM228.3 72.5c-15.9 0-28.8 12.9-28.9 28.9 0 15.6 12.7 28.9 28.9 28.9s28.9-13.1 28.9-28.9c0-16.2-13-28.9-28.9-28.9z" + } + }, + "free": [ + "brands" + ] + }, + "hire-a-helper": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b0", + "label": "HireAHelper", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4.1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z" + } + }, + "free": [ + "brands" + ] + }, + "hive": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e07f", + "label": "Hive Blockchain Network", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M260.353,254.878,131.538,33.1a2.208,2.208,0,0,0-3.829.009L.3,254.887A2.234,2.234,0,0,0,.3,257.122L129.116,478.9a2.208,2.208,0,0,0,3.83-.009L260.358,257.113A2.239,2.239,0,0,0,260.353,254.878Zm39.078-25.713a2.19,2.19,0,0,0,1.9,1.111h66.509a2.226,2.226,0,0,0,1.9-3.341L259.115,33.111a2.187,2.187,0,0,0-1.9-1.111H190.707a2.226,2.226,0,0,0-1.9,3.341ZM511.7,254.886,384.9,33.112A2.2,2.2,0,0,0,382.99,32h-66.6a2.226,2.226,0,0,0-1.906,3.34L440.652,256,314.481,476.66a2.226,2.226,0,0,0,1.906,3.34h66.6a2.2,2.2,0,0,0,1.906-1.112L511.7,257.114A2.243,2.243,0,0,0,511.7,254.886ZM366.016,284.917H299.508a2.187,2.187,0,0,0-1.9,1.111l-108.8,190.631a2.226,2.226,0,0,0,1.9,3.341h66.509a2.187,2.187,0,0,0,1.9-1.111l108.8-190.631A2.226,2.226,0,0,0,366.016,284.917Z" + } + }, + "free": [ + "brands" + ] + }, + "hockey-puck": { + "aliases": { + "unicodes": { + "secondary": [ + "10f453" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ice", + "nhl", + "sport" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f453", + "label": "Hockey Puck", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321831, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 256C114.6 256 0 213 0 160s114.6-96 256-96s256 43 256 96s-114.6 96-256 96zm192.3 1.8c24.7-9.3 46.9-21 63.7-35.6V352c0 53-114.6 96-256 96S0 405 0 352V222.3c16.8 14.6 39 26.3 63.7 35.6C114.5 276.9 182.5 288 256 288s141.5-11.1 192.3-30.2z" + } + }, + "free": [ + "solid" + ] + }, + "holly-berry": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7aa" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "catwoman", + "christmas", + "decoration", + "flora", + "halle", + "holiday", + "ororo munroe", + "plant", + "storm", + "xmas" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7aa", + "label": "Holly Berry", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M247 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-80 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM267.8 383.8c1 .1 2.1 .2 3.2 .2c39.8 0 72 32.2 72 72v22.7c0 16.4 16 27.9 31.6 22.8l12.8-4.3c18-6 37.3-6.5 55.6-1.5l19.4 5.3c17.9 4.9 34.4-11.6 29.5-29.5L486.6 452c-5-18.3-4.4-37.6 1.5-55.6l4.3-12.8c5.2-15.5-6.4-31.6-22.8-31.6c-34.6 0-62.7-28.1-62.7-62.7v-32c0-16.4-16-27.9-31.6-22.8l-12.8 4.3c-18 6-37.3 6.5-55.6 1.5l-29.6-8.1c-2.9-.8-5.9-1-8.7-.7c4.2 9.7 5.8 20.8 3.7 32.3L266 298.7c-1.5 8.4-1.4 17 .5 25.3l5.3 23.9c2.8 12.7 1.1 25.2-4 35.9zM118.6 234.5c-15.5-5.2-31.6 6.4-31.6 22.8v32C87 323.9 58.9 352 24.3 352C7.9 352-3.6 368 1.5 383.6l4.3 12.8c6 18 6.5 37.3 1.5 55.6L2.1 471.5c-4.9 17.9 11.6 34.4 29.5 29.5L51 495.6c18.3-5 37.6-4.5 55.6 1.5l12.8 4.3c15.5 5.2 31.6-6.4 31.6-22.8v-32c0-34.6 28.1-62.7 62.7-62.7c16.4 0 27.9-16 22.8-31.6l-4.3-12.8c-6-18-6.5-37.3-1.5-55.6l5.3-19.4c4.9-17.9-11.6-34.4-29.5-29.5L187 240.4c-18.3 5-37.6 4.4-55.6-1.5l-12.8-4.3zM375 144a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + }, + "free": [ + "solid" + ] + }, + "hooli": { + "changes": [ + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f427", + "label": "Hooli", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144.5 352l38.3.8c-13.2-4.6-26-10.2-38.3-16.8zm57.7-5.3v5.3l-19.4.8c36.5 12.5 69.9 14.2 94.7 7.2-19.9.2-45.8-2.6-75.3-13.3zm408.9-115.2c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zm-29 120.5H640V241.5h-57.9zm-73.7 0h57.9V156.7L508.4 184zm-31-119.4c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6s-1.4 34.3 16.8 52.5 50.4 17.1 50.4 17.1 32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5s-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9s10.7 2.1 10.7 10.9zm-106.2-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3.1 0 0-24.9 32.8 61.8 110.8V352h57.9v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.4-21.6-38.4-31.4v-31c13.1 14.7 30.5 31.4 53.4 50.3l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5s50.4 17.1 50.4 17.1 32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zM65.2 184v63.3c-48.7-54.5-38.9-76-35.2-79.1 13.5-11.4 37.5-8 64.4 2.1zm226.5 120.5c0 3.6-1.8 12.5-10.7 12.5s-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9s10.7 2.1 10.7 10.9z" + } + }, + "free": [ + "brands" + ] + }, + "hornbill": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f592", + "label": "Hornbill", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M76.38 370.3a37.8 37.8 0 1 1-32.07-32.42c-78.28-111.35 52-190.53 52-190.53-5.86 43-8.24 91.16-8.24 91.16-67.31 41.49.93 64.06 39.81 72.87a140.38 140.38 0 0 0 131.66 91.94c1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.94-51.6zm108-327.7A37.57 37.57 0 0 0 181 21.45a37.95 37.95 0 1 0-31.17 54.22c-22.55 29.91-53.83 89.57-52.42 190l21.84-.15c0-.9-.14-1.77-.14-2.68A140.42 140.42 0 0 1 207 132.71c8-37.71 30.7-114.3 73.8-44.29 0 0 48.14 2.38 91.18 8.24 0 0-77.84-128-187.59-54.06zm304.19 134.17a37.94 37.94 0 1 0-53.84-28.7C403 126.13 344.89 99 251.28 100.33l.14 22.5c2.7-.15 5.39-.41 8.14-.41a140.37 140.37 0 0 1 130.49 88.76c39.1 9 105.06 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.45-81.16 49-194.61a37.45 37.45 0 0 0 19.31-3.5zM374.06 436.24c21.43-32.46 46.42-89.69 45.14-179.66l-19.52.14c.08 2.06.3 4.07.3 6.15a140.34 140.34 0 0 1-91.39 131.45c-8.85 38.95-31.44 106.66-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.34 191.9 51a37.5 37.5 0 0 0 3.64 14 37.93 37.93 0 1 0 33.89-54.29z" + } + }, + "free": [ + "brands" + ] + }, + "horse": { + "aliases": { + "unicodes": { + "composite": [ + "1f40e" + ], + "secondary": [ + "10f6f0" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "equestrian", + "equus", + "fauna", + "horse", + "mammmal", + "mare", + "neigh", + "pony", + "racehorse", + "racing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6f0", + "label": "Horse", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M448 238.1V160h16l9.8 19.6c12.5 25.1 42.2 36.4 68.3 26c20.5-8.2 33.9-28 33.9-50.1V80c0-19.1-8.4-36.3-21.7-48H560c8.8 0 16-7.2 16-16s-7.2-16-16-16H480 448C377.3 0 320 57.3 320 128H224 203.2 148.8c-30.7 0-57.6 16.3-72.5 40.8C33.2 174.5 0 211.4 0 256v56c0 13.3 10.7 24 24 24s24-10.7 24-24V256c0-13.4 6.6-25.2 16.7-32.5c1.6 13 6.3 25.4 13.6 36.4l28.2 42.4c8.3 12.4 6.4 28.7-1.2 41.6c-16.5 28-20.6 62.2-10 93.9l17.5 52.4c4.4 13.1 16.6 21.9 30.4 21.9h33.7c21.8 0 37.3-21.4 30.4-42.1l-20.8-62.5c-2.1-6.4-.5-13.4 4.3-18.2l12.7-12.7c13.2-13.2 20.6-31.1 20.6-49.7c0-2.3-.1-4.6-.3-6.9l84 24c4.1 1.2 8.2 2.1 12.3 2.8V480c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V315.7c19.2-19.2 31.5-45.7 32-75.7h0v-1.9zM496 64a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + }, + "free": [ + "solid" + ] + }, + "horse-head": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ab" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "equus", + "fauna", + "mammmal", + "mare", + "neigh", + "pony" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7ab", + "label": "Horse Head", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 464V316.9C0 208.5 68.3 111.8 170.5 75.6L340.2 15.5C361.6 7.9 384 23.8 384 46.4c0 11-5.5 21.2-14.6 27.3L336 96c48.1 0 91.2 29.8 108.1 74.9l48.6 129.5c11.8 31.4 4.1 66.8-19.6 90.5c-16 16-37.8 25.1-60.5 25.1h-3.4c-26.1 0-50.9-11.6-67.6-31.7l-32.3-38.7c-11.7 4.1-24.2 6.4-37.3 6.4l-.1 0 0 0c-6.3 0-12.5-.5-18.6-1.5c-3.6-.6-7.2-1.4-10.7-2.3l0 0c-28.9-7.8-53.1-26.8-67.8-52.2c-4.4-7.6-14.2-10.3-21.9-5.8s-10.3 14.2-5.8 21.9c24 41.5 68.3 70 119.3 71.9l47.2 70.8c4 6.1 6.2 13.2 6.2 20.4c0 20.3-16.5 36.8-36.8 36.8H48c-26.5 0-48-21.5-48-48zM328 224a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + }, + "free": [ + "solid" + ] + }, + "hospital": { + "aliases": { + "names": [ + "hospital-alt", + "hospital-wide" + ], + "unicodes": { + "composite": [ + "1f3e5", + "f47d" + ], + "primary": [ + "f47d" + ], + "secondary": [ + "10f0f8", + "10f47d" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "covid-19", + "doctor", + "emergency room", + "hospital", + "medical center", + "medicine" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0f8", + "label": "Hospital", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 48c0-26.5 21.5-48 48-48H400c26.5 0 48 21.5 48 48V512H368V432c0-26.5-21.5-48-48-48s-48 21.5-48 48v80H192V48zM48 96H160V512H48c-26.5 0-48-21.5-48-48V320H80c8.8 0 16-7.2 16-16s-7.2-16-16-16H0V224H80c8.8 0 16-7.2 16-16s-7.2-16-16-16H0V144c0-26.5 21.5-48 48-48zm544 0c26.5 0 48 21.5 48 48v48H560c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H560c-8.8 0-16 7.2-16 16s7.2 16 16 16h80V464c0 26.5-21.5 48-48 48H480V96H592zM312 64c-8.8 0-16 7.2-16 16v24H272c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h24v24c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16V152h24c8.8 0 16-7.2 16-16V120c0-8.8-7.2-16-16-16H344V80c0-8.8-7.2-16-16-16H312z" + }, + "regular": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M232 0c-39.8 0-72 32.2-72 72v8H72C32.2 80 0 112.2 0 152V440c0 39.8 32.2 72 72 72h.2 .2 .2 .2 .2H73h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2H75h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2H77h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2H79h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2H82h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2H85h.2 .2 .2 .2H86h.2 .2 .2 .2H87h.2 .2 .2 .2H88h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2H98h.2 .2 .2 .2H99h.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2v0H456h8v0H568c39.8 0 72-32.2 72-72V152c0-39.8-32.2-72-72-72H480V72c0-39.8-32.2-72-72-72H232zM480 128h88c13.3 0 24 10.7 24 24v40H536c-13.3 0-24 10.7-24 24s10.7 24 24 24h56v48H536c-13.3 0-24 10.7-24 24s10.7 24 24 24h56V440c0 13.3-10.7 24-24 24H480V336 128zM72 128h88V464h-.1-.2-.2-.2H159h-.2-.2-.2H158h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H154h-.2-.2-.2H153h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H150h-.2-.2-.2H149h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H146h-.2-.2-.2H145h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H142h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H139h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H136h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H133h-.2-.2-.2-.2-.2-.2-.2-.2H131h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H128h-.2-.2-.2-.2-.2-.2-.2-.2H126h-.2-.2-.2-.2-.2-.2-.2-.2H124h-.2-.2-.2-.2-.2-.2-.2-.2H122h-.2-.2-.2-.2-.2-.2-.2-.2H120h-.2-.2-.2-.2-.2-.2-.2-.2H118h-.2-.2-.2-.2-.2-.2-.2-.2H116h-.2-.2-.2-.2-.2-.2-.2-.2H114h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H111h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H108h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H105h-.2-.2-.2-.2H104h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H100h-.2-.2-.2-.2H99h-.2-.2-.2-.2H98h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H88h-.2-.2-.2-.2H87h-.2-.2-.2-.2H86h-.2-.2-.2-.2H85h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H82h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H79h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H77h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H75h-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2H73h-.2-.2-.2-.2-.2H72c-13.2 0-24-10.7-24-24V336h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H48V240h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H48V152c0-13.3 10.7-24 24-24zM208 72c0-13.3 10.7-24 24-24H408c13.3 0 24 10.7 24 24V336 464H368V400c0-26.5-21.5-48-48-48s-48 21.5-48 48v64H208V72zm88 24v24H272c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16h24v24c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16V168h24c8.8 0 16-7.2 16-16V136c0-8.8-7.2-16-16-16H344V96c0-8.8-7.2-16-16-16H312c-8.8 0-16 7.2-16 16z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "hospital-user": { + "aliases": { + "unicodes": { + "secondary": [ + "10f80d" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "network", + "patient", + "primary care" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f80d", + "label": "Hospital User", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V256H144c8.8 0 16 7.2 16 16s-7.2 16-16 16H0v64H144c8.8 0 16 7.2 16 16s-7.2 16-16 16H0v80c0 26.5 21.5 48 48 48H265.9c-6.3-10.2-9.9-22.2-9.9-35.1c0-46.9 25.8-87.8 64-109.2V271.8 48c0-26.5-21.5-48-48-48H48zM152 64h16c8.8 0 16 7.2 16 16v24h24c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H184v24c0 8.8-7.2 16-16 16H152c-8.8 0-16-7.2-16-16V152H112c-8.8 0-16-7.2-16-16V120c0-8.8 7.2-16 16-16h24V80c0-8.8 7.2-16 16-16zM512 272a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM288 477.1c0 19.3 15.6 34.9 34.9 34.9H541.1c19.3 0 34.9-15.6 34.9-34.9c0-51.4-41.7-93.1-93.1-93.1H381.1c-51.4 0-93.1 41.7-93.1 93.1z" + } + }, + "free": [ + "solid" + ] + }, + "hot-tub-person": { + "aliases": { + "names": [ + "hot-tub" + ], + "unicodes": { + "secondary": [ + "10f593" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "jacuzzi", + "spa" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f593", + "label": "Hot Tub Person", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M272 24c0-13.3-10.7-24-24-24s-24 10.7-24 24v5.2c0 34 14.4 66.4 39.7 89.2l16.4 14.8c15.2 13.7 23.8 33.1 23.8 53.5V200c0 13.3 10.7 24 24 24s24-10.7 24-24V186.8c0-34-14.4-66.4-39.7-89.2L295.8 82.8C280.7 69.1 272 49.7 272 29.2V24zM0 320v16V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V320c0-35.3-28.7-64-64-64H277.3c-13.8 0-27.3-4.5-38.4-12.8l-85.3-64C137 166.7 116.8 160 96 160c-53 0-96 43-96 96v64zm128 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16s16 7.2 16 16zm80-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm112 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16s16 7.2 16 16zm80-16c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM360 0c-13.3 0-24 10.7-24 24v5.2c0 34 14.4 66.4 39.7 89.2l16.4 14.8c15.2 13.7 23.8 33.1 23.8 53.5V200c0 13.3 10.7 24 24 24s24-10.7 24-24V186.8c0-34-14.4-66.4-39.7-89.2L407.8 82.8C392.7 69.1 384 49.7 384 29.2V24c0-13.3-10.7-24-24-24zM64 128A64 64 0 1 0 64 0a64 64 0 1 0 0 128z" + } + }, + "free": [ + "solid" + ] + }, + "hotdog": { + "aliases": { + "unicodes": { + "composite": [ + "1f32d" + ], + "secondary": [ + "10f80f" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bun", + "chili", + "frankfurt", + "frankfurter", + "hot dog", + "hotdog", + "kosher", + "polish", + "sandwich", + "sausage", + "vienna", + "weiner" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f80f", + "label": "Hotdog", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M488.6 23.4c31.2 31.2 31.2 81.9 0 113.1l-352 352c-31.2 31.2-81.9 31.2-113.1 0s-31.2-81.9 0-113.1l352-352c31.2-31.2 81.9-31.2 113.1 0zM443.3 92.7c-6.2-6.2-16.4-6.2-22.6 0c-12.5 12.5-23.8 15.1-37.5 17.6l-2.5 .4c-13.8 2.5-31.6 5.6-48 22c-16.7 16.7-20.9 36-24.1 50.9l0 0v0l-.2 1c-3.4 15.6-6 26.4-15.7 36.1s-20.5 12.3-36.1 15.7l-1 .2c-14.9 3.2-34.2 7.4-50.9 24.1s-20.9 36-24.1 50.9l-.2 1c-3.4 15.6-6 26.4-15.7 36.1c-9.2 9.2-18 10.8-32.7 13.4l0 0-.9 .2c-15.6 2.8-34.9 6.9-54.4 26.4c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0c12.5-12.5 23.8-15.1 37.5-17.6l2.5-.4c13.8-2.5 31.6-5.6 48-22c16.7-16.7 20.9-36 24.1-50.9l.2-1c3.4-15.6 6-26.4 15.7-36.1s20.5-12.3 36.1-15.7l1-.2c14.9-3.2 34.2-7.4 50.9-24.1s20.9-36 24.1-50.9l.2-1c3.4-15.6 6-26.4 15.7-36.1c9.2-9.2 18-10.8 32.7-13.4l.9-.2c15.6-2.8 34.9-6.9 54.4-26.4c6.2-6.2 6.2-16.4 0-22.6zM191.2 479.2l288-288L495 207c10.9 10.9 17 25.6 17 41s-6.1 30.1-17 41L289 495c-10.9 10.9-25.6 17-41 17s-30.1-6.1-41-17l-15.8-15.8zM17 305C6.1 294.1 0 279.4 0 264s6.1-30.1 17-41L223 17C233.9 6.1 248.6 0 264 0s30.1 6.1 41 17l15.8 15.8-288 288L17 305z" + } + }, + "free": [ + "solid" + ] + }, + "hotel": { + "aliases": { + "unicodes": { + "composite": [ + "1f3e8" + ], + "secondary": [ + "10f594" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "hotel", + "inn", + "lodging", + "motel", + "resort", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f594", + "label": "Hotel", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H480c17.7 0 32 14.3 32 32s-14.3 32-32 32V448c17.7 0 32 14.3 32 32s-14.3 32-32 32H304V464c0-26.5-21.5-48-48-48s-48 21.5-48 48v48H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V64C14.3 64 0 49.7 0 32zm96 80v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H112c-8.8 0-16 7.2-16 16zM240 96c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H240zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zM112 192c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H112zm112 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16zm144-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H368zM328 384c13.3 0 24.3-10.9 21-23.8c-10.6-41.5-48.2-72.2-93-72.2s-82.5 30.7-93 72.2c-3.3 12.8 7.8 23.8 21 23.8H328z" + } + }, + "free": [ + "solid" + ] + }, + "hotjar": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b1", + "label": "Hotjar", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z" + } + }, + "free": [ + "brands" + ] + }, + "hourglass": { + "aliases": { + "names": [ + "hourglass-empty" + ], + "unicodes": { + "composite": [ + "23f3", + "f250" + ], + "secondary": [ + "10f254" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "hourglass", + "hourglass not done", + "minute", + "sand", + "stopwatch", + "time", + "timer" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f254", + "label": "Hourglass", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H64 320h32c17.7 0 32 14.3 32 32s-14.3 32-32 32V75c0 42.4-16.9 83.1-46.9 113.1L237.3 256l67.9 67.9c30 30 46.9 70.7 46.9 113.1v11c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 64 32c-17.7 0-32-14.3-32-32s14.3-32 32-32V437c0-42.4 16.9-83.1 46.9-113.1L146.7 256 78.9 188.1C48.9 158.1 32 117.4 32 75V64C14.3 64 0 49.7 0 32zM96 64V75c0 25.5 10.1 49.9 28.1 67.9L192 210.7l67.9-67.9c18-18 28.1-42.4 28.1-67.9V64H96zm0 384H288V437c0-25.5-10.1-49.9-28.1-67.9L192 301.3l-67.9 67.9c-18 18-28.1 42.4-28.1 67.9v11z" + }, + "regular": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M24 0C10.7 0 0 10.7 0 24S10.7 48 24 48h8V67c0 40.3 16 79 44.5 107.5L158.1 256 76.5 337.5C48 366 32 404.7 32 445v19H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H360c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8V445c0-40.3-16-79-44.5-107.5L225.9 256l81.5-81.5C336 146 352 107.3 352 67V48h8c13.3 0 24-10.7 24-24s-10.7-24-24-24H24zM192 289.9l81.5 81.5C293 391 304 417.4 304 445v19H80V445c0-27.6 11-54 30.5-73.5L192 289.9zm0-67.9l-81.5-81.5C91 121 80 94.6 80 67V48H304V67c0 27.6-11 54-30.5 73.5L192 222.1z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "hourglass-end": { + "aliases": { + "names": [ + "hourglass-3" + ], + "unicodes": { + "composite": [ + "231b" + ], + "secondary": [ + "10f253" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "hourglass done", + "minute", + "sand", + "stopwatch", + "time", + "timer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f253", + "label": "Hourglass End", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM96 75V64H288V75c0 25.5-10.1 49.9-28.1 67.9L192 210.7l-67.9-67.9C106.1 124.9 96 100.4 96 75z" + } + }, + "free": [ + "solid" + ] + }, + "hourglass-half": { + "aliases": { + "names": [ + "hourglass-2" + ], + "unicodes": { + "secondary": [ + "10f252" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "minute", + "sand", + "stopwatch", + "time" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f252", + "label": "Hourglass Half", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM96 75V64H288V75c0 19-5.6 37.4-16 53H112c-10.3-15.6-16-34-16-53zm16 309c3.5-5.3 7.6-10.3 12.1-14.9L192 301.3l67.9 67.9c4.6 4.6 8.6 9.6 12.2 14.9H112z" + }, + "regular": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 24C0 10.7 10.7 0 24 0H360c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8V67c0 40.3-16 79-44.5 107.5L225.9 256l81.5 81.5C336 366 352 404.7 352 445v19h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V445c0-40.3 16-79 44.5-107.5L158.1 256 76.5 174.5C48 146 32 107.3 32 67V48H24C10.7 48 0 37.3 0 24zM110.5 371.5c-3.9 3.9-7.5 8.1-10.7 12.5H284.2c-3.2-4.4-6.8-8.6-10.7-12.5L192 289.9l-81.5 81.5zM284.2 128C297 110.4 304 89 304 67V48H80V67c0 22.1 7 43.4 19.8 61H284.2z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "hourglass-start": { + "aliases": { + "names": [ + "hourglass-1" + ], + "unicodes": { + "secondary": [ + "10f251" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hour", + "minute", + "sand", + "stopwatch", + "time" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f251", + "label": "Hourglass Start", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM288 437v11H96V437c0-25.5 10.1-49.9 28.1-67.9L192 301.3l67.9 67.9c18 18 28.1 42.4 28.1 67.9z" + } + }, + "free": [ + "solid" + ] + }, + "house": { + "aliases": { + "names": [ + "home", + "home-alt", + "home-lg-alt" + ], + "unicodes": { + "composite": [ + "1f3e0", + "f80a", + "f80c" + ], + "primary": [ + "f80a", + "f80c" + ], + "secondary": [ + "10f015", + "10f80a", + "10f80c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "building", + "home", + "house", + "main", + "residence" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f015", + "label": "House", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c0 2.7-.2 5.4-.5 8.1V472c0 22.1-17.9 40-40 40H456c-1.1 0-2.2 0-3.3-.1c-1.4 .1-2.8 .1-4.2 .1H416 392c-22.1 0-40-17.9-40-40V448 384c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32v64 24c0 22.1-17.9 40-40 40H160 128.1c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2H104c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9 .1-2.8V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24z" + } + }, + "free": [ + "solid" + ] + }, + "house-chimney": { + "aliases": { + "names": [ + "home-lg" + ], + "unicodes": { + "composite": [ + "f80b" + ], + "primary": [ + "f80b" + ], + "secondary": [ + "10f80b" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "building", + "chimney", + "house", + "main", + "residence", + "smokestack" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e3af", + "label": "House Chimney", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L512 185V64c0-17.7-14.3-32-32-32H448c-17.7 0-32 14.3-32 32v36.7L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32v69.7c-.1 .9-.1 1.8-.1 2.8V472c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2H160h24c22.1 0 40-17.9 40-40V448 384c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v64 24c0 22.1 17.9 40 40 40h24 32.5c1.4 0 2.8 0 4.2-.1c1.1 .1 2.2 .1 3.3 .1h16c22.1 0 40-17.9 40-40V455.8c.3-2.6 .5-5.3 .5-8.1l-.7-160.2h32z" + } + }, + "free": [ + "solid" + ] + }, + "house-chimney-crack": { + "aliases": { + "names": [ + "house-damage" + ], + "unicodes": { + "secondary": [ + "10f6f1" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "devastation", + "disaster", + "earthquake", + "home", + "insurance" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6f1", + "label": "House Chimney Crack", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H326.4L288 448l80.8-67.3c7.8-6.5 7.6-18.6-.4-24.9L250.6 263.2c-14.6-11.5-33.8 7-22.8 22L288 368l-85.5 71.2c-6.1 5-7.5 13.8-3.5 20.5L230.4 512H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V185l52.8 46.4c8 7 12 15 11 24z" + } + }, + "free": [ + "solid" + ] + }, + "house-chimney-medical": { + "aliases": { + "names": [ + "clinic-medical" + ], + "unicodes": { + "secondary": [ + "10f7f2" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "general practitioner", + "hospital", + "infirmary", + "medicine", + "office", + "outpatient" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7f2", + "label": "House Chimney Medical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V185l52.8 46.4c8 7 12 15 11 24zM272 192c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320h48c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H320V208c0-8.8-7.2-16-16-16H272z" + } + }, + "free": [ + "solid" + ] + }, + "house-chimney-user": { + "aliases": { + "unicodes": { + "secondary": [ + "10e065" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "home", + "isolation", + "quarantine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e065", + "label": "House Chimney User", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L512 185V64c0-17.7-14.3-32-32-32H448c-17.7 0-32 14.3-32 32v36.7L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64H448.5c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32zM288 160a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM176 400c0-44.2 35.8-80 80-80h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H192c-8.8 0-16-7.2-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "house-chimney-window": { + "aliases": { + "unicodes": { + "secondary": [ + "10e00d" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "building", + "family", + "home", + "residence" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e00d", + "label": "House Chimney Window", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L416 100.7V64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V185l52.8 46.4c8 7 12 15 11 24zM248 192c-13.3 0-24 10.7-24 24v80c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V216c0-13.3-10.7-24-24-24H248z" + } + }, + "free": [ + "solid" + ] + }, + "house-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "home", + "house", + "not affected", + "ok", + "okay" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e509", + "label": "House Circle Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320.7 352c8.1-89.7 83.5-160 175.3-160c8.9 0 17.6 .7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32v69.7c-.1 .9-.1 1.8-.1 2.8V472c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2H160h24c22.1 0 40-17.9 40-40V448 384c0-17.7 14.3-32 32-32h64l.7 0zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + }, + "free": [ + "solid" + ] + }, + "house-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "affected", + "home", + "house" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e50a", + "label": "House Circle Exclamation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320.7 352c8.1-89.7 83.5-160 175.3-160c8.9 0 17.6 .7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32v69.7c-.1 .9-.1 1.8-.1 2.8V472c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2H160h24c22.1 0 40-17.9 40-40V448 384c0-17.7 14.3-32 32-32h64l.7 0zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "house-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "destroy", + "home", + "house" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e50b", + "label": "House Circle Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320.7 352c8.1-89.7 83.5-160 175.3-160c8.9 0 17.6 .7 26.1 1.9L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32v69.7c-.1 .9-.1 1.8-.1 2.8V472c0 22.1 17.9 40 40 40h16c1.2 0 2.4-.1 3.6-.2c1.5 .1 3 .2 4.5 .2H160h24c22.1 0 40-17.9 40-40V448 384c0-17.7 14.3-32 32-32h64l.7 0zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + }, + "free": [ + "solid" + ] + }, + "house-crack": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "devastation", + "disaster", + "earthquake", + "home", + "insurance" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e3b1", + "label": "House Crack", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64H230.4l-31.3-52.2c-4.1-6.8-2.6-15.5 3.5-20.5L288 368l-60.2-82.8c-10.9-15 8.2-33.5 22.8-22l117.9 92.6c8 6.3 8.2 18.4 .4 24.9L288 448l38.4 64H448.5c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32z" + } + }, + "free": [ + "solid" + ] + }, + "house-fire": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "burn", + "emergency", + "home" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e50c", + "label": "House Fire", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 350.1l0 1.9H256c-17.7 0-32 14.3-32 32v64 24c0 22.1-17.9 40-40 40H160 128.1c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2H104c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9 .1-2.8V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L447.3 128.1c-12.3-1-25 3-34.8 11.7c-35.4 31.6-65.6 67.7-87.3 102.8C304.3 276.5 288 314.9 288 350.1zM453.5 163.8c19.7 17.8 38.2 37 55.5 57.7c7.9-9.9 16.8-20.7 26.5-29.5c5.6-5.1 14.4-5.1 20 0c24.7 22.7 45.6 52.7 60.4 81.1c14.5 28 24.2 58.8 24.2 79C640 440 568.7 512 480 512c-89.7 0-160-72.1-160-159.8c0-26.4 12.7-60.7 32.4-92.6c20-32.4 48.1-66.1 81.4-95.8c2.8-2.5 6.4-3.8 10-3.7c3.5 0 7 1.3 9.8 3.8zM530 433c30-21 38-63 20-96c-2-4-4-8-7-12l-36 42s-58-74-62-79c-30 37-45 58-45 82c0 49 36 78 81 78c18 0 34-5 49-15z" + } + }, + "free": [ + "solid" + ] + }, + "house-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camp", + "home" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e50d", + "label": "House Flag", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 0c-17.7 0-32 14.3-32 32V192 512h64V192H624c8.8 0 16-7.2 16-16V48c0-8.8-7.2-16-16-16H512c0-17.7-14.3-32-32-32zM416 159L276.8 39.7c-12-10.3-29.7-10.3-41.7 0l-224 192C1 240.4-2.7 254.5 2 267.1S18.6 288 32 288H64V480c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32v96c0 17.7 14.3 32 32 32h64.7l.2 0h-1V159z" + } + }, + "free": [ + "solid" + ] + }, + "house-flood-water": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "damage", + "flood", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e50e", + "label": "House Flood Water", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M306.8 6.1C295.6-2 280.4-2 269.2 6.1l-176 128c-11.2 8.2-15.9 22.6-11.6 35.8S98.1 192 112 192h16v73c1.7 1 3.3 2 4.9 3.1c18 12.4 40.1 20.3 59.2 20.3c21.1 0 42-8.5 59.2-20.3c22.1-15.5 51.6-15.5 73.7 0c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c1.5-1 3-2 4.5-2.9l-.3-73.2H464c13.9 0 26.1-8.9 30.4-22.1s-.4-27.6-11.6-35.8l-176-128zM269.5 309.9C247 325.4 219.5 336 192 336c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 389.7 159 400 192 400c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.5-27.3-10.1-39.2-1.7l0 0C439.4 325.2 410.9 336 384 336c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0zM384 448c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448z" + } + }, + "free": [ + "solid" + ] + }, + "house-flood-water-circle-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "damage", + "flood", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e50f", + "label": "House Flood Water Circle Arrow Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 144A144 144 0 1 0 0 144a144 144 0 1 0 288 0zM140.7 76.7c6.2-6.2 16.4-6.2 22.6 0l56 56c6.2 6.2 6.2 16.4 0 22.6l-56 56c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L169.4 160H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h89.4L140.7 99.3c-6.2-6.2-6.2-16.4 0-22.6zM320 144c0 57.3-27.4 108.2-69.8 140.3c11.8-3.6 23-9.4 33-16.2c22.1-15.5 51.6-15.5 73.7 0c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.4 78.1 3.4c2.1 1.7 4.2 3.3 6.5 4.9l-.3-84.4H576c13.9 0 26.1-8.9 30.4-22.1s-.4-27.6-11.6-35.8l-176-128C407.6-2 392.4-2 381.2 6.1L301 64.4c12.1 23.9 19 50.9 19 79.6zm18.5 165.9c-11.1-7.9-25.9-7.9-37 0C279 325.4 251.5 336 224 336c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C158.5 389.7 191 400 224 400c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.5-27.3-10.1-39.2-1.7l0 0C471.4 325.2 442.9 336 416 336c-27.5 0-55-10.6-77.5-26.1zm0 112c-11.1-7.9-25.9-7.9-37 0C279 437.4 251.5 448 224 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C158.5 501.7 191 512 224 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C471.4 437.2 442.9 448 416 448c-27.5 0-55-10.6-77.5-26.1z" + } + }, + "free": [ + "solid" + ] + }, + "house-laptop": { + "aliases": { + "names": [ + "laptop-house" + ], + "unicodes": { + "secondary": [ + "10e066" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "covid-19", + "device", + "office", + "remote", + "work from home" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e066", + "label": "House Laptop", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M218.3 8.5c12.3-11.3 31.2-11.3 43.4 0l208 192c6.7 6.2 10.3 14.8 10.3 23.5H336c-19.1 0-36.3 8.4-48 21.7V208c0-8.8-7.2-16-16-16H208c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h64V416H112c-26.5 0-48-21.5-48-48V256H32c-13.2 0-25-8.1-29.8-20.3s-1.6-26.2 8.1-35.2l208-192zM352 304V448H544V304H352zm-48-16c0-17.7 14.3-32 32-32H560c17.7 0 32 14.3 32 32V448h32c8.8 0 16 7.2 16 16c0 26.5-21.5 48-48 48H544 352 304c-26.5 0-48-21.5-48-48c0-8.8 7.2-16 16-16h32V288z" + } + }, + "free": [ + "solid" + ] + }, + "house-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "home", + "house", + "lockdown", + "quarantine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e510", + "label": "House Lock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M384 480c0 11.7 3.1 22.6 8.6 32H392c-22.1 0-40-17.9-40-40V448 384c0-17.7-14.3-32-32-32H256c-17.7 0-32 14.3-32 32v64 24c0 22.1-17.9 40-40 40H160 128.1c-1.5 0-3-.1-4.5-.2c-1.2 .1-2.4 .2-3.6 .2H104c-22.1 0-40-17.9-40-40V360c0-.9 0-1.9 .1-2.8V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L490.7 166.3C447.2 181.7 416 223.2 416 272v24.6c-19.1 11.1-32 31.7-32 55.4V480zM528 240c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z" + } + }, + "free": [ + "solid" + ] + }, + "house-medical": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "facility", + "general practitioner", + "health", + "hospital", + "infirmary", + "medicine", + "office", + "outpatient" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e3b2", + "label": "House Medical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M543.8 287.6c17 0 32-14 32-32.1c1-9-3-17-11-24L309.5 7c-6-5-14-7-21-7s-15 1-22 8L10 231.5c-7 7-10 15-10 24c0 18 14 32.1 32 32.1h32V448c0 35.3 28.7 64 64 64H448.5c35.5 0 64.2-28.8 64-64.3l-.7-160.2h32zM256 208c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H320v48c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V320H208c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h48V208z" + } + }, + "free": [ + "solid" + ] + }, + "house-medical-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clinic", + "hospital", + "not affected", + "ok", + "okay" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e511", + "label": "House Medical Circle Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L522.1 193.9c-8.5-1.3-17.3-1.9-26.1-1.9c-54.7 0-103.5 24.9-135.8 64H320V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zm32 0a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L480 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + }, + "free": [ + "solid" + ] + }, + "house-medical-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "clinic", + "hospital" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e512", + "label": "House Medical Circle Exclamation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L522.1 193.9c-8.5-1.3-17.3-1.9-26.1-1.9c-54.7 0-103.5 24.9-135.8 64H320V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zM496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "house-medical-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clinic", + "destroy", + "hospital" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e513", + "label": "House Medical Circle Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 368c0 59.5 29.5 112.1 74.8 144H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L522.1 193.9c-8.5-1.3-17.3-1.9-26.1-1.9c-54.7 0-103.5 24.9-135.8 64H320V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16zM496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm22.6 144l36.7-36.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L496 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L473.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L496 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L518.6 368z" + } + }, + "free": [ + "solid" + ] + }, + "house-medical-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clinic", + "hospital", + "mash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e514", + "label": "House Medical Flag", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 0c17.7 0 32 14.3 32 32H624c8.8 0 16 7.2 16 16V176c0 8.8-7.2 16-16 16H512V512H448V192 32c0-17.7 14.3-32 32-32zM276.8 39.7L416 159V512h1l-.2 0H96c-17.7 0-32-14.3-32-32V288H32c-13.4 0-25.4-8.3-30-20.9s-1-26.7 9.2-35.4l224-192c12-10.3 29.7-10.3 41.7 0zM224 208v48H176c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V320h48c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H288V208c0-8.8-7.2-16-16-16H240c-8.8 0-16 7.2-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "house-signal": { + "aliases": { + "unicodes": { + "secondary": [ + "10e012" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abode", + "building", + "connect", + "family", + "home", + "residence", + "smart home", + "wifi" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e012", + "label": "House Signal", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M357.7 8.5c-12.3-11.3-31.2-11.3-43.4 0l-208 192c-9.4 8.6-12.7 22-8.5 34c87.1 25.3 155.6 94.2 180.3 181.6H464c26.5 0 48-21.5 48-48V256h32c13.2 0 25-8.1 29.8-20.3s1.6-26.2-8.1-35.2l-208-192zM288 208c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H304c-8.8 0-16-7.2-16-16V208zM24 256c-13.3 0-24 10.7-24 24s10.7 24 24 24c101.6 0 184 82.4 184 184c0 13.3 10.7 24 24 24s24-10.7 24-24c0-128.1-103.9-232-232-232zm8 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM0 376c0 13.3 10.7 24 24 24c48.6 0 88 39.4 88 88c0 13.3 10.7 24 24 24s24-10.7 24-24c0-75.1-60.9-136-136-136c-13.3 0-24 10.7-24 24z" + } + }, + "free": [ + "solid" + ] + }, + "house-tsunami": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "damage", + "flood", + "tidal wave", + "wave" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e515", + "label": "House Tsunami", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M80.8 136.5C104.9 93.8 152.6 64 209 64c16.9 0 33.1 2.7 48.2 7.7c16.8 5.5 34.9-3.6 40.4-20.4s-3.6-34.9-20.4-40.4C255.8 3.8 232.8 0 209 0C95.2 0 0 88 0 200c0 91.6 53.5 172.1 142.2 194.1c13.4 3.8 27.5 5.9 42.2 5.9c.7 0 1.4 0 2.1-.1c1.8 0 3.7 .1 5.5 .1l0 0c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.5-27.3-10.1-39.2-1.7l0 0C439.4 325.2 410.9 336 384 336c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0c-22.4 15.5-49.9 26.1-77.4 26.1c0 0-.1 0-.1 0c-12.4 0-24-1.5-34.9-4.3C121.6 320.2 96 287 96 248c0-48.5 39.5-88 88.4-88c13.5 0 26.1 3 37.5 8.3c16 7.5 35.1 .6 42.5-15.5s.6-35.1-15.5-42.5C229.3 101.1 207.4 96 184.4 96c-40 0-76.4 15.4-103.6 40.5zm252-18.1c-8.1 6-12.8 15.5-12.8 25.6V265c1.6 1 3.3 2 4.8 3.1c18.4 12.7 39.6 20.3 59.2 20.3c19 0 41.2-7.9 59.2-20.3c23.8-16.7 55.8-15.3 78.1 3.4c10.6 8.8 24.2 15.6 37.3 18.6c5.8 1.4 11.2 3.4 16.2 6.2c.7-2.7 1.1-5.5 1.1-8.4l-.4-144c0-10-4.7-19.4-12.7-25.5l-95.5-72c-11.4-8.6-27.1-8.6-38.5 0l-96 72zM384 448c-27.5 0-55-10.6-77.5-26.1c-11.1-7.9-25.9-7.9-37 0C247 437.4 219.5 448 192 448c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 501.7 159 512 192 512c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 437.2 410.9 448 384 448z" + } + }, + "free": [ + "solid" + ] + }, + "house-user": { + "aliases": { + "names": [ + "home-user" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "house" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e1b0", + "label": "House User", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M575.8 255.5c0 18-15 32.1-32 32.1h-32l.7 160.2c.2 35.5-28.5 64.3-64 64.3H128.1c-35.3 0-64-28.7-64-64V287.6H32c-18 0-32-14-32-32.1c0-9 3-17 10-24L266.4 8c7-7 15-8 22-8s15 2 21 7L564.8 231.5c8 7 12 15 11 24zM352 224a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zm-96 96c-44.2 0-80 35.8-80 80c0 8.8 7.2 16 16 16H384c8.8 0 16-7.2 16-16c0-44.2-35.8-80-80-80H256z" + } + }, + "free": [ + "solid" + ] + }, + "houzz": { + "changes": [ + "4.4.0", + "5.0.0", + "5.0.9", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f27c", + "label": "Houzz", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M275.9 330.7H171.3V480H17V32h109.5v104.5l305.1 85.6V480H275.9z" + } + }, + "free": [ + "brands" + ] + }, + "hryvnia-sign": { + "aliases": { + "names": [ + "hryvnia" + ], + "unicodes": { + "composite": [ + "20b4" + ], + "secondary": [ + "10f6f2" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Hryvnia Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6f2", + "label": "Hryvnia Sign", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M121.9 116.2C138.3 103.1 158.7 96 179.6 96H223c27.1 0 49 21.9 49 49c0 11.5-4 22.4-11.1 31H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H155.5l-50.6 28.9c-1.7 1-3.4 2-5.1 3.1H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H52.3c-2.8 9.9-4.3 20.4-4.3 31c0 62.4 50.6 113 113 113h43.4c35.5 0 70-12.1 97.7-34.3L308 441c13.8-11 16-31.2 5-45s-31.2-16-45-5l-5.9 4.7c-16.4 13.1-36.7 20.2-57.7 20.2H161c-27.1 0-49-21.9-49-49c0-11.5 4-22.4 11.1-31H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H228.5l50.6-28.9c1.7-1 3.4-2 5.1-3.1H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H331.7c2.8-10 4.3-20.4 4.3-31c0-62.4-50.6-113-113-113H179.6c-35.5 0-70 12.1-97.7 34.3L76 71c-13.8 11-16 31.2-5 45s31.2 16 45 5l5.9-4.7z" + } + }, + "free": [ + "solid" + ] + }, + "html5": { + "changes": [ + "3.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f13b", + "label": "HTML 5 Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z" + } + }, + "free": [ + "brands" + ] + }, + "hubspot": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b2", + "label": "HubSpot", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z" + } + }, + "free": [ + "brands" + ] + }, + "hurricane": { + "aliases": { + "unicodes": { + "secondary": [ + "10f751" + ] + } + }, + "changes": [ + "5.5.0", + "5.10.1", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "coriolis effect", + "eye", + "storm", + "tropical cyclone", + "typhoon" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f751", + "label": "Hurricane", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 208C0 104.4 75.7 18.5 174.9 2.6C184 1.2 192 8.6 192 17.9V81.2c0 8.4 6.5 15.3 14.7 16.5C307 112.5 384 199 384 303.4c0 103.6-75.7 189.5-174.9 205.4c-9.2 1.5-17.1-5.9-17.1-15.2V430.2c0-8.4-6.5-15.3-14.7-16.5C77 398.9 0 312.4 0 208zm288 48A96 96 0 1 0 96 256a96 96 0 1 0 192 0zm-96-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "i": { + "aliases": { + "unicodes": { + "composite": [ + "69" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter I", + "Latin Small Letter I", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "49", + "label": "I", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96h96V416H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H192V96h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160 32z" + } + }, + "free": [ + "solid" + ] + }, + "i-cursor": { + "aliases": { + "unicodes": { + "secondary": [ + "10f246" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "editing", + "i-beam", + "type", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f246", + "label": "I Cursor", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M.1 29.3C-1.4 47 11.7 62.4 29.3 63.9l8 .7C70.5 67.3 96 95 96 128.3V224H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H96v95.7c0 33.3-25.5 61-58.7 63.8l-8 .7C11.7 449.6-1.4 465 .1 482.7s16.9 30.7 34.5 29.2l8-.7c34.1-2.8 64.2-18.9 85.4-42.9c21.2 24 51.2 40.1 85.4 42.9l8 .7c17.6 1.5 33.1-11.6 34.5-29.2s-11.6-33.1-29.2-34.5l-8-.7C185.5 444.7 160 417 160 383.7V288h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H160V128.3c0-33.3 25.5-61 58.7-63.8l8-.7c17.6-1.5 30.7-16.9 29.2-34.5S239-1.4 221.3 .1l-8 .7C179.2 3.6 149.2 19.7 128 43.7c-21.2-24-51.2-40-85.4-42.9l-8-.7C17-1.4 1.6 11.7 .1 29.3z" + } + }, + "free": [ + "solid" + ] + }, + "ice-cream": { + "aliases": { + "unicodes": { + "composite": [ + "1f368" + ], + "secondary": [ + "10f810" + ] + } + }, + "changes": [ + "5.7.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chocolate", + "cone", + "cream", + "dessert", + "frozen", + "ice", + "ice cream", + "scoop", + "sorbet", + "sweet", + "vanilla", + "yogurt" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f810", + "label": "Ice Cream", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M335.1 160c.6-5.3 .9-10.6 .9-16C336 64.5 271.5 0 192 0S48 64.5 48 144c0 5.4 .3 10.7 .9 16H48c-26.5 0-48 21.5-48 48s21.5 48 48 48h53.5 181H336c26.5 0 48-21.5 48-48s-21.5-48-48-48h-.9zM64 288L168.8 497.7c4.4 8.8 13.3 14.3 23.2 14.3s18.8-5.5 23.2-14.3L320 288H64z" + } + }, + "free": [ + "solid" + ] + }, + "icicles": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ad" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "frozen", + "hanging", + "ice", + "seasonal", + "sharp" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7ad", + "label": "Icicles", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M75.8 304.8L1 35.7c-.7-2.5-1-5-1-7.5C0 12.6 12.6 0 28.2 0H482.4C498.8 0 512 13.2 512 29.6c0 1.6-.1 3.3-.4 4.9L434.6 496.1c-1.5 9.2-9.5 15.9-18.8 15.9c-9.2 0-17.1-6.6-18.7-15.6L336 160 307.2 303.9c-1.9 9.3-10.1 16.1-19.6 16.1c-9.2 0-17.2-6.2-19.4-15.1L240 192 210.6 368.2c-1.5 9.1-9.4 15.8-18.6 15.8s-17.1-6.7-18.6-15.8L144 192 115.9 304.3c-2.3 9.2-10.6 15.7-20.1 15.7c-9.3 0-17.5-6.2-20-15.2z" + } + }, + "free": [ + "solid" + ] + }, + "icons": { + "aliases": { + "names": [ + "heart-music-camera-bolt" + ], + "unicodes": { + "secondary": [ + "10f86d" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bolt", + "emoji", + "heart", + "image", + "music", + "photo", + "symbols" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f86d", + "label": "Icons", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M500.3 7.3C507.7 13.3 512 22.4 512 32V176c0 26.5-28.7 48-64 48s-64-21.5-64-48s28.7-48 64-48V71L352 90.2V208c0 26.5-28.7 48-64 48s-64-21.5-64-48s28.7-48 64-48V64c0-15.3 10.8-28.4 25.7-31.4l160-32c9.4-1.9 19.1 .6 26.6 6.6zM74.7 304l11.8-17.8c5.9-8.9 15.9-14.2 26.6-14.2h61.7c10.7 0 20.7 5.3 26.6 14.2L213.3 304H240c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V352c0-26.5 21.5-48 48-48H74.7zM192 408a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM478.7 278.3L440.3 368H496c6.7 0 12.6 4.1 15 10.4s.6 13.3-4.4 17.7l-128 112c-5.6 4.9-13.9 5.3-19.9 .9s-8.2-12.4-5.3-19.2L391.7 400H336c-6.7 0-12.6-4.1-15-10.4s-.6-13.3 4.4-17.7l128-112c5.6-4.9 13.9-5.3 19.9-.9s8.2 12.4 5.3 19.2zm-339-59.2c-6.5 6.5-17 6.5-23 0L19.9 119.2c-28-29-26.5-76.9 5-103.9c27-23.5 68.4-19 93.4 6.5l10 10.5 9.5-10.5c25-25.5 65.9-30 93.9-6.5c31 27 32.5 74.9 4.5 103.9l-96.4 99.9z" + } + }, + "free": [ + "solid" + ] + }, + "id-badge": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2c1" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "contact", + "identification", + "license", + "profile" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2c1", + "label": "Id Badge", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zm96 320h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-32-96a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM144 64h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + }, + "regular": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M256 48V64c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H256zM0 64C0 28.7 28.7 0 64 0H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM160 320h64c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-32-96a64 64 0 1 1 128 0 64 64 0 1 1 -128 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "id-card": { + "aliases": { + "names": [ + "drivers-license" + ], + "unicodes": { + "composite": [ + "f2c3" + ], + "secondary": [ + "10f2c2" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.0.3", + "5.8.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contact", + "demographics", + "document", + "identification", + "issued", + "profile", + "registration" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2c2", + "label": "Id Card", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 96l576 0c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96zm0 32V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128H0zM64 405.3c0-29.5 23.9-53.3 53.3-53.3H234.7c29.5 0 53.3 23.9 53.3 53.3c0 5.9-4.8 10.7-10.7 10.7H74.7c-5.9 0-10.7-4.8-10.7-10.7zM176 192a64 64 0 1 1 0 128 64 64 0 1 1 0-128zm176 16c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16zm0 64c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H368c-8.8 0-16-7.2-16-16z" + }, + "regular": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M528 160V416c0 8.8-7.2 16-16 16H320c0-44.2-35.8-80-80-80H176c-44.2 0-80 35.8-80 80H64c-8.8 0-16-7.2-16-16V160H528zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM272 256a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zm104-48c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H376zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H376z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "id-card-clip": { + "aliases": { + "names": [ + "id-card-alt" + ], + "unicodes": { + "secondary": [ + "10f47f" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "contact", + "demographics", + "document", + "identification", + "issued", + "profile" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f47f", + "label": "Id Card Clip", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M256 0h64c17.7 0 32 14.3 32 32V96c0 17.7-14.3 32-32 32H256c-17.7 0-32-14.3-32-32V32c0-17.7 14.3-32 32-32zM64 64H192v48c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48V64H512c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128C0 92.7 28.7 64 64 64zM176 437.3c0 5.9 4.8 10.7 10.7 10.7H389.3c5.9 0 10.7-4.8 10.7-10.7c0-29.5-23.9-53.3-53.3-53.3H229.3c-29.5 0-53.3 23.9-53.3 53.3zM288 352a64 64 0 1 0 0-128 64 64 0 1 0 0 128z" + } + }, + "free": [ + "solid" + ] + }, + "ideal": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e013", + "label": "iDeal", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M125.61,165.48a49.07,49.07,0,1,0,49.06,49.06A49.08,49.08,0,0,0,125.61,165.48ZM86.15,425.84h78.94V285.32H86.15Zm151.46-211.6c0-20-10-22.53-18.74-22.53H204.82V237.5h14.05C228.62,237.5,237.61,234.69,237.61,214.24Zm201.69,46V168.93h22.75V237.5h33.69C486.5,113.08,388.61,86.19,299.67,86.19H204.84V169h14c25.6,0,41.5,17.35,41.5,45.26,0,28.81-15.52,46-41.5,46h-14V425.88h94.83c144.61,0,194.94-67.16,196.72-165.64Zm-109.75,0H273.3V169h54.43v22.73H296v10.58h30V225H296V237.5h33.51Zm74.66,0-5.16-17.67H369.31l-5.18,17.67H340.47L368,168.92h32.35l27.53,91.34ZM299.65,32H32V480H299.65c161.85,0,251-79.73,251-224.52C550.62,172,518,32,299.65,32Zm0,426.92H53.07V53.07H299.65c142.1,0,229.9,64.61,229.9,202.41C529.55,389.57,448.55,458.92,299.65,458.92Zm83.86-264.85L376,219.88H392.4l-7.52-25.81Z" + } + }, + "free": [ + "brands" + ] + }, + "igloo": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7ae" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dome", + "dwelling", + "eskimo", + "home", + "house", + "ice", + "snow" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7ae", + "label": "Igloo", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M320 33.8V160H48.5C100.2 82.8 188.1 32 288 32c10.8 0 21.5 .6 32 1.8zM352 160V39.1C424.9 55.7 487.2 99.8 527.5 160H352zM29.9 192H96V320H0c0-46 10.8-89.4 29.9-128zM192 320H128V192H448V320H384v32H576v80c0 26.5-21.5 48-48 48H352V352c0-35.3-28.7-64-64-64s-64 28.7-64 64V480H48c-26.5 0-48-21.5-48-48V352H192V320zm288 0V192h66.1c19.2 38.6 29.9 82 29.9 128H480z" + } + }, + "free": [ + "solid" + ] + }, + "image": { + "aliases": { + "unicodes": { + "secondary": [ + "10f03e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "album", + "landscape", + "photo", + "picture" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f03e", + "label": "Image", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM323.8 202.5c-4.5-6.6-11.9-10.5-19.8-10.5s-15.4 3.9-19.8 10.5l-87 127.6L170.7 297c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6h96 32H424c8.9 0 17.1-4.9 21.2-12.8s3.6-17.4-1.4-24.7l-120-176zM112 192a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + }, + "regular": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 80c8.8 0 16 7.2 16 16V415.8l-5-6.5-136-176c-4.5-5.9-11.6-9.3-19-9.3s-14.4 3.4-19 9.3L202 340.7l-30.5-42.7C167 291.7 159.8 288 152 288s-15 3.7-19.5 10.1l-80 112L48 416.3l0-.3V96c0-8.8 7.2-16 16-16H448zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm80 192a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "image-portrait": { + "aliases": { + "names": [ + "portrait" + ], + "unicodes": { + "secondary": [ + "10f3e0" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.3", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "id", + "image", + "photo", + "picture", + "selfie" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3e0", + "label": "Image Portrait", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 64c0-35.3-28.7-64-64-64H64C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64l0-384zM128 192a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM80 356.6c0-37.9 30.7-68.6 68.6-68.6h86.9c37.9 0 68.6 30.7 68.6 68.6c0 15.1-12.3 27.4-27.4 27.4H107.4C92.3 384 80 371.7 80 356.6z" + } + }, + "free": [ + "solid" + ] + }, + "images": { + "aliases": { + "unicodes": { + "secondary": [ + "10f302" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "album", + "landscape", + "photo", + "picture" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f302", + "label": "Images", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M160 32c-35.3 0-64 28.7-64 64V320c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H160zM396 138.7l96 144c4.9 7.4 5.4 16.8 1.2 24.6S480.9 320 472 320H328 280 200c-9.2 0-17.6-5.3-21.6-13.6s-2.9-18.2 2.9-25.4l64-80c4.6-5.7 11.4-9 18.7-9s14.2 3.3 18.7 9l17.3 21.6 56-84C360.5 132 368 128 376 128s15.5 4 20 10.7zM192 128a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM48 120c0-13.3-10.7-24-24-24S0 106.7 0 120V344c0 75.1 60.9 136 136 136H456c13.3 0 24-10.7 24-24s-10.7-24-24-24H136c-48.6 0-88-39.4-88-88V120z" + }, + "regular": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M160 80H512c8.8 0 16 7.2 16 16V320c0 8.8-7.2 16-16 16H490.8L388.1 178.9c-4.4-6.8-12-10.9-20.1-10.9s-15.7 4.1-20.1 10.9l-52.2 79.8-12.4-16.9c-4.5-6.2-11.7-9.8-19.4-9.8s-14.8 3.6-19.4 9.8L175.6 336H160c-8.8 0-16-7.2-16-16V96c0-8.8 7.2-16 16-16zM96 96V320c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H160c-35.3 0-64 28.7-64 64zM48 120c0-13.3-10.7-24-24-24S0 106.7 0 120V344c0 75.1 60.9 136 136 136H456c13.3 0 24-10.7 24-24s-10.7-24-24-24H136c-48.6 0-88-39.4-88-88V120zm208 24a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "imdb": { + "changes": [ + "4.7.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2d8", + "label": "IMDB", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M89.5 323.6H53.93V186.2H89.5V323.6zM156.1 250.5L165.2 186.2H211.5V323.6H180.5V230.9L167.1 323.6H145.8L132.8 232.9L132.7 323.6H101.5V186.2H147.6C148.1 194.5 150.4 204.3 151.9 215.6L156.1 250.5zM223.7 323.6V186.2H250.3C267.3 186.2 277.3 187.1 283.3 188.6C289.4 190.3 294 192.8 297.2 196.5C300.3 199.8 302.3 203.1 303 208.5C303.9 212.9 304.4 221.6 304.4 234.7V282.9C304.4 295.2 303.7 303.4 302.5 307.6C301.4 311.7 299.4 315 296.5 317.3C293.7 319.7 290.1 321.4 285.8 322.3C281.6 323.1 275.2 323.6 266.7 323.6H223.7zM259.2 209.7V299.1C264.3 299.1 267.5 298.1 268.6 296.8C269.7 294.8 270.4 289.2 270.4 280.1V226.8C270.4 220.6 270.3 216.6 269.7 214.8C269.4 213 268.5 211.8 267.1 210.1C265.7 210.1 263 209.7 259.2 209.7V209.7zM316.5 323.6V186.2H350.6V230.1C353.5 227.7 356.7 225.2 360.1 223.5C363.7 222 368.9 221.1 372.9 221.1C377.7 221.1 381.8 221.9 385.2 223.3C388.6 224.8 391.2 226.8 393.2 229.5C394.9 232.1 395.9 234.8 396.3 237.3C396.7 239.9 396.1 245.3 396.1 253.5V292.1C396.1 300.3 396.3 306.4 395.3 310.5C394.2 314.5 391.5 318.1 387.5 320.1C383.4 324 378.6 325.4 372.9 325.4C368.9 325.4 363.7 324.5 360.2 322.9C356.7 321.1 353.5 318.4 350.6 314.9L348.5 323.6L316.5 323.6zM361.6 302.9C362.3 301.1 362.6 296.9 362.6 290.4V255C362.6 249.4 362.3 245.5 361.5 243.8C360.8 241.9 357.8 241.1 355.7 241.1C353.7 241.1 352.3 241.9 351.6 243.4C351 244.9 350.6 248.8 350.6 255V291.4C350.6 297.5 351 301.4 351.8 303C352.4 304.7 353.9 305.5 355.9 305.5C358.1 305.5 360.1 304.7 361.6 302.9L361.6 302.9zM418.4 32.04C434.1 33.27 447.1 47.28 447.1 63.92V448.1C447.1 464.5 435.2 478.5 418.9 479.1C418.6 479.1 418.4 480 418.1 480H29.88C29.6 480 29.32 479.1 29.04 479.9C13.31 478.5 1.093 466.1 0 449.7L.0186 61.78C1.081 45.88 13.82 33.09 30.26 31.1H417.7C417.9 31.1 418.2 32.01 418.4 32.04L418.4 32.04zM30.27 41.26C19 42.01 10.02 51.01 9.257 62.4V449.7C9.63 455.1 11.91 460.2 15.7 464C19.48 467.9 24.51 470.3 29.89 470.7H418.1C429.6 469.7 438.7 459.1 438.7 448.1V63.91C438.7 58.17 436.6 52.65 432.7 48.45C428.8 44.24 423.4 41.67 417.7 41.26L30.27 41.26z" + } + }, + "free": [ + "brands" + ] + }, + "inbox": { + "aliases": { + "unicodes": { + "secondary": [ + "10f01c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "desk", + "email", + "mail", + "message" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f01c", + "label": "Inbox", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M121 32C91.6 32 66 52 58.9 80.5L1.9 308.4C.6 313.5 0 318.7 0 323.9V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V323.9c0-5.2-.6-10.4-1.9-15.5l-57-227.9C446 52 420.4 32 391 32H121zm0 64H391l48 192H387.8c-12.1 0-23.2 6.8-28.6 17.7l-14.3 28.6c-5.4 10.8-16.5 17.7-28.6 17.7H195.8c-12.1 0-23.2-6.8-28.6-17.7l-14.3-28.6c-5.4-10.8-16.5-17.7-28.6-17.7H73L121 96z" + } + }, + "free": [ + "solid" + ] + }, + "indent": { + "aliases": { + "unicodes": { + "secondary": [ + "10f03c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "align", + "justify", + "paragraph", + "tab" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f03c", + "label": "Indent", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64zM192 192c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32zm32 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zM0 448c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM127.8 268.6L25.8 347.9C15.3 356.1 0 348.6 0 335.3V176.7c0-13.3 15.3-20.8 25.8-12.6l101.9 79.3c8.2 6.4 8.2 18.9 0 25.3z" + } + }, + "free": [ + "solid" + ] + }, + "indian-rupee-sign": { + "aliases": { + "names": [ + "indian-rupee", + "inr" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Indian Rupee Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e1bc", + "label": "Indian Rupee Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H96h16H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H231.8c9.6 14.4 16.7 30.6 20.7 48H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H252.4c-13.2 58.3-61.9 103.2-122.2 110.9L274.6 422c14.4 10.3 17.7 30.3 7.4 44.6s-30.3 17.7-44.6 7.4L13.4 314C2.1 306-2.7 291.5 1.5 278.2S18.1 256 32 256h80c32.8 0 61-19.7 73.3-48H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H185.3C173 115.7 144.8 96 112 96H96 32C14.3 96 0 81.7 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "industry": { + "aliases": { + "unicodes": { + "secondary": [ + "10f275" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "factory", + "industrial", + "manufacturing", + "mill", + "warehouse" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f275", + "label": "Industry", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64V304v48 80c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V304 152.2c0-18.2-19.4-29.7-35.4-21.1L320 215.4V152.2c0-18.2-19.4-29.7-35.4-21.1L128 215.4V64c0-17.7-14.3-32-32-32H32z" + } + }, + "free": [ + "solid" + ] + }, + "infinity": { + "aliases": { + "unicodes": { + "composite": [ + "221e", + "267e" + ], + "secondary": [ + "10f534" + ] + } + }, + "changes": [ + "5.0.13", + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Infinity", + "eternity", + "forever", + "infinity", + "math", + "unbounded", + "universal" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f534", + "label": "Infinity", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 241.1C0 161 65 96 145.1 96c38.5 0 75.4 15.3 102.6 42.5L320 210.7l72.2-72.2C419.5 111.3 456.4 96 494.9 96C575 96 640 161 640 241.1v29.7C640 351 575 416 494.9 416c-38.5 0-75.4-15.3-102.6-42.5L320 301.3l-72.2 72.2C220.5 400.7 183.6 416 145.1 416C65 416 0 351 0 270.9V241.1zM274.7 256l-72.2-72.2c-15.2-15.2-35.9-23.8-57.4-23.8C100.3 160 64 196.3 64 241.1v29.7c0 44.8 36.3 81.1 81.1 81.1c21.5 0 42.2-8.5 57.4-23.8L274.7 256zm90.5 0l72.2 72.2c15.2 15.2 35.9 23.8 57.4 23.8c44.8 0 81.1-36.3 81.1-81.1V241.1c0-44.8-36.3-81.1-81.1-81.1c-21.5 0-42.2 8.5-57.4 23.8L365.3 256z" + } + }, + "free": [ + "solid" + ] + }, + "info": { + "aliases": { + "unicodes": { + "secondary": [ + "10f129" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "details", + "help", + "information", + "more", + "support" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f129", + "label": "Info", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 192, + 512 + ], + "width": 192, + "height": 512, + "path": "M48 80a48 48 0 1 1 96 0A48 48 0 1 1 48 80zM0 224c0-17.7 14.3-32 32-32H96c17.7 0 32 14.3 32 32V448h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H64V256H32c-17.7 0-32-14.3-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "instagram": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f16d", + "label": "Instagram", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" + } + }, + "free": [ + "brands" + ] + }, + "instalod": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e081", + "label": "InstaLOD", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M153.384,480H387.113L502.554,275.765,204.229,333.211ZM504.726,240.078,387.113,32H155.669L360.23,267.9ZM124.386,48.809,7.274,256,123.236,461.154,225.627,165.561Z" + } + }, + "free": [ + "brands" + ] + }, + "intercom": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "customer", + "messenger" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7af", + "label": "Intercom", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zm-108.3 82.1c0-19.8 29.9-19.8 29.9 0v199.5c0 19.8-29.9 19.8-29.9 0V114.1zm-74.6-7.5c0-19.8 29.9-19.8 29.9 0v216.5c0 19.8-29.9 19.8-29.9 0V106.6zm-74.7 7.5c0-19.8 29.9-19.8 29.9 0v199.5c0 19.8-29.9 19.8-29.9 0V114.1zM59.7 144c0-19.8 29.9-19.8 29.9 0v134.3c0 19.8-29.9 19.8-29.9 0V144zm323.4 227.8c-72.8 63-241.7 65.4-318.1 0-15-12.8 4.4-35.5 19.4-22.7 65.9 55.3 216.1 53.9 279.3 0 14.9-12.9 34.3 9.8 19.4 22.7zm5.2-93.5c0 19.8-29.9 19.8-29.9 0V144c0-19.8 29.9-19.8 29.9 0v134.3z" + } + }, + "free": [ + "brands" + ] + }, + "internet-explorer": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "ie" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f26b", + "label": "Internet-explorer", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M483.049 159.706c10.855-24.575 21.424-60.438 21.424-87.871 0-72.722-79.641-98.371-209.673-38.577-107.632-7.181-211.221 73.67-237.098 186.457 30.852-34.862 78.271-82.298 121.977-101.158C125.404 166.85 79.128 228.002 43.992 291.725 23.246 329.651 0 390.94 0 436.747c0 98.575 92.854 86.5 180.251 42.006 31.423 15.43 66.559 15.573 101.695 15.573 97.124 0 184.249-54.294 216.814-146.022H377.927c-52.509 88.593-196.819 52.996-196.819-47.436H509.9c6.407-43.581-1.655-95.715-26.851-141.162zM64.559 346.877c17.711 51.15 53.703 95.871 100.266 123.304-88.741 48.94-173.267 29.096-100.266-123.304zm115.977-108.873c2-55.151 50.276-94.871 103.98-94.871 53.418 0 101.981 39.72 103.981 94.871H180.536zm184.536-187.6c21.425-10.287 48.563-22.003 72.558-22.003 31.422 0 54.274 21.717 54.274 53.722 0 20.003-7.427 49.007-14.569 67.867-26.28-42.292-65.986-81.584-112.263-99.586z" + } + }, + "free": [ + "brands" + ] + }, + "invision": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "design", + "interface" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7b0", + "label": "InVision", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M407.4 32H40.6C18.2 32 0 50.2 0 72.6v366.8C0 461.8 18.2 480 40.6 480h366.8c22.4 0 40.6-18.2 40.6-40.6V72.6c0-22.4-18.2-40.6-40.6-40.6zM176.1 145.6c.4 23.4-22.4 27.3-26.6 27.4-14.9 0-27.1-12-27.1-27 .1-35.2 53.1-35.5 53.7-.4zM332.8 377c-65.6 0-34.1-74-25-106.6 14.1-46.4-45.2-59-59.9.7l-25.8 103.3H177l8.1-32.5c-31.5 51.8-94.6 44.4-94.6-4.3.1-14.3.9-14 23-104.1H81.7l9.7-35.6h76.4c-33.6 133.7-32.6 126.9-32.9 138.2 0 20.9 40.9 13.5 57.4-23.2l19.8-79.4h-32.3l9.7-35.6h68.8l-8.9 40.5c40.5-75.5 127.9-47.8 101.8 38-14.2 51.1-14.6 50.7-14.9 58.8 0 15.5 17.5 22.6 31.8-16.9L386 325c-10.5 36.7-29.4 52-53.2 52z" + } + }, + "free": [ + "brands" + ] + }, + "ioxhost": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f208", + "label": "ioxhost", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z" + } + }, + "free": [ + "brands" + ] + }, + "italic": { + "aliases": { + "unicodes": { + "secondary": [ + "10f033" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "emphasis", + "font", + "format", + "text", + "type" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f033", + "label": "Italic", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M128 64c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H293.3L160 416h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H90.7L224 96H160c-17.7 0-32-14.3-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "itch-io": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f83a", + "label": "itch.io", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M71.92 34.77C50.2 47.67 7.4 96.84 7 109.73v21.34c0 27.06 25.29 50.84 48.25 50.84 27.57 0 50.54-22.85 50.54-50 0 27.12 22.18 50 49.76 50s49-22.85 49-50c0 27.12 23.59 50 51.16 50h.5c27.57 0 51.16-22.85 51.16-50 0 27.12 21.47 50 49 50s49.76-22.85 49.76-50c0 27.12 23 50 50.54 50 23 0 48.25-23.78 48.25-50.84v-21.34c-.4-12.9-43.2-62.07-64.92-75C372.56 32.4 325.76 32 256 32S91.14 33.1 71.92 34.77zm132.32 134.39c-22 38.4-77.9 38.71-99.85.25-13.17 23.14-43.17 32.07-56 27.66-3.87 40.15-13.67 237.13 17.73 269.15 80 18.67 302.08 18.12 379.76 0 31.65-32.27 21.32-232 17.75-269.15-12.92 4.44-42.88-4.6-56-27.66-22 38.52-77.85 38.1-99.85-.24-7.1 12.49-23.05 28.94-51.76 28.94a57.54 57.54 0 0 1-51.75-28.94zm-41.58 53.77c16.47 0 31.09 0 49.22 19.78a436.91 436.91 0 0 1 88.18 0C318.22 223 332.85 223 349.31 223c52.33 0 65.22 77.53 83.87 144.45 17.26 62.15-5.52 63.67-33.95 63.73-42.15-1.57-65.49-32.18-65.49-62.79-39.25 6.43-101.93 8.79-155.55 0 0 30.61-23.34 61.22-65.49 62.79-28.42-.06-51.2-1.58-33.94-63.73 18.67-67 31.56-144.45 83.88-144.45zM256 270.79s-44.38 40.77-52.35 55.21l29-1.17v25.32c0 1.55 21.34.16 23.33.16 11.65.54 23.31 1 23.31-.16v-25.28l29 1.17c-8-14.48-52.35-55.24-52.35-55.24z" + } + }, + "free": [ + "brands" + ] + }, + "itunes": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b4", + "label": "iTunes", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1.5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7.9-127 2.6-133.7.4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6.4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z" + } + }, + "free": [ + "brands" + ] + }, + "itunes-note": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b5", + "label": "Itunes Note", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2.8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6.2 344.5 1.1 326-1.8 338.5z" + } + }, + "free": [ + "brands" + ] + }, + "j": { + "aliases": { + "unicodes": { + "composite": [ + "6a" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter J", + "Latin Small Letter J", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "4a", + "label": "J", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M288 32c17.7 0 32 14.3 32 32V320c0 88.4-71.6 160-160 160S0 408.4 0 320V288c0-17.7 14.3-32 32-32s32 14.3 32 32v32c0 53 43 96 96 96s96-43 96-96V64c0-17.7 14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "jar": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "jam", + "jelly", + "storage" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e516", + "label": "Jar", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32 32C32 14.3 46.3 0 64 0H256c17.7 0 32 14.3 32 32s-14.3 32-32 32H64C46.3 64 32 49.7 32 32zM0 160c0-35.3 28.7-64 64-64H256c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V160zm96 64c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32H224c17.7 0 32-14.3 32-32V256c0-17.7-14.3-32-32-32H96z" + } + }, + "free": [ + "solid" + ] + }, + "jar-wheat": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flour", + "storage" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e517", + "label": "Jar Wheat", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32 32C32 14.3 46.3 0 64 0H256c17.7 0 32 14.3 32 32s-14.3 32-32 32H64C46.3 64 32 49.7 32 32zM0 160c0-35.3 28.7-64 64-64H256c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V160zm112 0H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 198 90 224 122.2 224H144h32 21.8c32.1 0 58.2-26 58.2-58.2c0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7c-11.7-13.3-28.9-21.7-48-21.7zm48 117.7c-11.7-13.3-28.9-21.7-48-21.7H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 294 90 320 122.2 320H144h32 21.8c32.1 0 58.2-26 58.2-58.2c0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7zM112 352H69.8c-3.2 0-5.8 2.6-5.8 5.8C64 390 90 416 122.2 416H144v32c0 8.8 7.2 16 16 16s16-7.2 16-16V416h21.8c32.1 0 58.2-26 58.2-58.2c0-3.2-2.6-5.8-5.8-5.8H208c-19.1 0-36.3 8.4-48 21.7c-11.7-13.3-28.9-21.7-48-21.7z" + } + }, + "free": [ + "solid" + ] + }, + "java": { + "changes": [ + "5.0.10", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4e4", + "label": "Java", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M277.74 312.9c9.8-6.7 23.4-12.5 23.4-12.5s-38.7 7-77.2 10.2c-47.1 3.9-97.7 4.7-123.1 1.3-60.1-8 33-30.1 33-30.1s-36.1-2.4-80.6 19c-52.5 25.4 130 37 224.5 12.1zm-85.4-32.1c-19-42.7-83.1-80.2 0-145.8C296 53.2 242.84 0 242.84 0c21.5 84.5-75.6 110.1-110.7 162.6-23.9 35.9 11.7 74.4 60.2 118.2zm114.6-176.2c.1 0-175.2 43.8-91.5 140.2 24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3zm-6.1 270.5a12.19 12.19 0 0 1-2 2.6c128.3-33.7 81.1-118.9 19.8-97.3a17.33 17.33 0 0 0-8.2 6.3 70.45 70.45 0 0 1 11-3c31-6.5 75.5 41.5-20.6 91.4zM348 437.4s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6.7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2C232.84 509.4 401 461.3 348 437.4zM124.44 396c-78.7 22 47.9 67.4 148.1 24.5a185.89 185.89 0 0 1-28.2-13.8c-44.7 8.5-65.4 9.1-106 4.5-33.5-3.8-13.9-15.2-13.9-15.2zm179.8 97.2c-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6 92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7zM260.64 353c-59.2 11.4-93.5 11.1-136.8 6.6-33.5-3.5-11.6-19.7-11.6-19.7-86.8 28.8 48.2 61.4 169.5 25.9a60.37 60.37 0 0 1-21.1-12.8z" + } + }, + "free": [ + "brands" + ] + }, + "jedi": { + "aliases": { + "unicodes": { + "secondary": [ + "10f669" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crest", + "force", + "sith", + "skywalker", + "star wars", + "yoda" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f669", + "label": "Jedi", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M230 315.7l-21.2-31.9c-2.1-3.2-1.7-7.4 1-10.1s6.9-3.1 10.1-1l29.5 19.7c2.1 1.4 4.9 0 5-2.6L263.7 8c.1-4.5 3.8-8 8.3-8s8.1 3.5 8.3 8l9.4 281.9c.1 2.5 2.9 3.9 5 2.6l29.5-19.7c3.2-2.1 7.4-1.7 10.1 1s3.1 6.9 1 10.1L314 315.7c-1.3 1.9-.2 4.5 2 4.9l37.6 7.5c3.7 .7 6.4 4 6.4 7.8s-2.7 7.1-6.4 7.8L316 351.4c-2.2 .4-3.3 3-2 4.9l21.2 31.9c2.1 3.2 1.7 7.4-1 10.1s-6.9 3.1-10.1 1l-26.3-17.6c-2.2-1.4-5.1 .2-5 2.8l2.1 61.5C354.6 435.2 400 382.9 400 320c0-37-15.7-70.4-40.8-93.7c-7-6.5-6.5-18.6 1-24.4C394.1 175.5 416 134.3 416 88c0-16.8-2.9-33-8.2-48c-4.6-13 10.2-30 21.4-22c53.5 38 92.7 94.8 107.8 160.7c.5 2.1-.2 4.3-1.7 5.9l-28.4 28.4c-4 4-1.2 10.9 4.5 10.9h26c3.4 0 6.2 2.6 6.3 6c.1 3.3 .2 6.6 .2 10c0 17.5-1.7 34.7-4.8 51.3c-.2 1.2-.9 2.4-1.7 3.3l-46.5 46.5c-4 4-1.2 10.9 4.5 10.9H510c4.6 0 7.7 4.8 5.7 9C471.2 450.5 378.8 512 272 512S72.8 450.5 28.3 361c-2.1-4.2 1-9 5.7-9H48.5c5.7 0 8.6-6.9 4.5-10.9L6.6 294.6c-.9-.9-1.5-2-1.7-3.3C1.7 274.7 0 257.5 0 240c0-3.3 .1-6.7 .2-10c.1-3.4 2.9-6 6.3-6h26c5.7 0 8.6-6.9 4.5-10.9L8.6 184.6c-1.5-1.5-2.2-3.8-1.7-5.9C22.1 112.8 61.3 56 114.8 18c11.3-8 26 8.9 21.4 22c-5.3 15-8.2 31.2-8.2 48c0 46.3 21.9 87.5 55.8 113.9c7.5 5.8 8 17.9 1 24.4C159.7 249.6 144 283 144 320c0 62.9 45.4 115.2 105.1 126l2.1-61.5c.1-2.6-2.8-4.2-5-2.8l-26.3 17.6c-3.2 2.1-7.4 1.7-10.1-1s-3.1-6.9-1-10.1L230 356.3c1.3-1.9 .2-4.5-2-4.9l-37.6-7.5c-3.7-.7-6.4-4-6.4-7.8s2.7-7.1 6.4-7.8l37.6-7.5c2.2-.4 3.3-3 2-4.9z" + } + }, + "free": [ + "solid" + ] + }, + "jedi-order": { + "changes": [ + "5.0.12", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "star wars" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f50e", + "label": "Jedi Order", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M398.5 373.6c95.9-122.1 17.2-233.1 17.2-233.1 45.4 85.8-41.4 170.5-41.4 170.5 105-171.5-60.5-271.5-60.5-271.5 96.9 72.7-10.1 190.7-10.1 190.7 85.8 158.4-68.6 230.1-68.6 230.1s-.4-16.9-2.2-85.7c4.3 4.5 34.5 36.2 34.5 36.2l-24.2-47.4 62.6-9.1-62.6-9.1 20.2-55.5-31.4 45.9c-2.2-87.7-7.8-305.1-7.9-306.9v-2.4 1-1 2.4c0 1-5.6 219-7.9 306.9l-31.4-45.9 20.2 55.5-62.6 9.1 62.6 9.1-24.2 47.4 34.5-36.2c-1.8 68.8-2.2 85.7-2.2 85.7s-154.4-71.7-68.6-230.1c0 0-107-118.1-10.1-190.7 0 0-165.5 99.9-60.5 271.5 0 0-86.8-84.8-41.4-170.5 0 0-78.7 111 17.2 233.1 0 0-26.2-16.1-49.4-77.7 0 0 16.9 183.3 222 185.7h4.1c205-2.4 222-185.7 222-185.7-23.6 61.5-49.9 77.7-49.9 77.7z" + } + }, + "free": [ + "brands" + ] + }, + "jenkins": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b6", + "label": "Jenkis", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8.2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2.7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8.7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4.7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4.7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7.3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2.5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8.7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1.6-16.5zm-17.2-20c-16.8.8-26-1.2-38.3-10.8.2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3.8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5.7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2.5-.4.8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5.4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9.8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8.6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1.8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7.5 0 1 0 1.4.1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9.9-36.6-17.1 11.9.7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z" + } + }, + "free": [ + "brands" + ] + }, + "jet-fighter": { + "aliases": { + "names": [ + "fighter-jet" + ], + "unicodes": { + "secondary": [ + "10f0fb" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airforce", + "airplane", + "airport", + "fast", + "fly", + "goose", + "marines", + "maverick", + "military", + "plane", + "quick", + "top gun", + "transportation", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0fb", + "label": "Jet Fighter", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M160 24c0-13.3 10.7-24 24-24H296c13.3 0 24 10.7 24 24s-10.7 24-24 24H280L384 192H500.4c7.7 0 15.3 1.4 22.5 4.1L625 234.4c9 3.4 15 12 15 21.6s-6 18.2-15 21.6L522.9 315.9c-7.2 2.7-14.8 4.1-22.5 4.1H384L280 464h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V320H160l-54.6 54.6c-6 6-14.1 9.4-22.6 9.4H64c-17.7 0-32-14.3-32-32V288c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32H82.7c8.5 0 16.6 3.4 22.6 9.4L160 192h32V48h-8c-13.3 0-24-10.7-24-24zM80 240c-8.8 0-16 7.2-16 16s7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16H80z" + } + }, + "free": [ + "solid" + ] + }, + "jet-fighter-up": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airforce", + "airplane", + "airport", + "fast", + "fly", + "goose", + "marines", + "maverick", + "military", + "plane", + "quick", + "top gun", + "transportation", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e518", + "label": "Jet Fighter Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M270.7 9.7C268.2 3.8 262.4 0 256 0s-12.2 3.8-14.7 9.7L197.2 112.6c-3.4 8-5.2 16.5-5.2 25.2v77l-144 84V280c0-13.3-10.7-24-24-24s-24 10.7-24 24v56 32 24c0 13.3 10.7 24 24 24s24-10.7 24-24v-8H192v32.7L133.5 468c-3.5 3-5.5 7.4-5.5 12v16c0 8.8 7.2 16 16 16h96V448c0-8.8 7.2-16 16-16s16 7.2 16 16v64h96c8.8 0 16-7.2 16-16V480c0-4.6-2-9-5.5-12L320 416.7V384H464v8c0 13.3 10.7 24 24 24s24-10.7 24-24V368 336 280c0-13.3-10.7-24-24-24s-24 10.7-24 24v18.8l-144-84v-77c0-8.7-1.8-17.2-5.2-25.2L270.7 9.7z" + } + }, + "free": [ + "solid" + ] + }, + "jira": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7b1", + "label": "Jira", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M490 241.7C417.1 169 320.6 71.8 248.5 0 83 164.9 6 241.7 6 241.7c-7.9 7.9-7.9 20.7 0 28.7C138.8 402.7 67.8 331.9 248.5 512c379.4-378 15.7-16.7 241.5-241.7 8-7.9 8-20.7 0-28.6zm-241.5 90l-76-75.7 76-75.7 76 75.7-76 75.7z" + } + }, + "free": [ + "brands" + ] + }, + "joget": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b7", + "label": "Joget", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M378.1 45C337.6 19.9 292.6 8 248.2 8 165 8 83.8 49.9 36.9 125.9c-71.9 116.6-35.6 269.3 81 341.2s269.3 35.6 341.2-80.9c71.9-116.6 35.6-269.4-81-341.2zm51.8 323.2c-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6zm-200.8-86.3c-55.5-1.4-81.7-20.8-58.5-48.2s51.1-40.7 68.9-51.2c17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9zm183.8-54.8c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5 31.9-14 13.4-24.6c-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5z" + } + }, + "free": [ + "brands" + ] + }, + "joint": { + "aliases": { + "unicodes": { + "secondary": [ + "10f595" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blunt", + "cannabis", + "doobie", + "drugs", + "marijuana", + "roach", + "smoke", + "smoking", + "spliff" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f595", + "label": "Joint", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M448 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43c0 55.2 21.9 108.1 60.9 147.1l21 21c9 9 14.1 21.2 14.1 33.9v11c0 17.7 14.3 32 32 32s32-14.3 32-32V245c0-29.7-11.8-58.2-32.8-79.2l-21-21C463.2 117.8 448 81.2 448 43V32zM576 256c0 17.7 14.3 32 32 32s32-14.3 32-32V245c0-55.2-21.9-108.1-60.9-147.1l-21-21c-9-9-14.1-21.2-14.1-33.9V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43c0 29.7 11.8 58.2 32.8 79.2l21 21c27 27 42.2 63.6 42.2 101.8v11zM229.8 360c-4.7-2.3-10-2.7-15.2-2c-37.8 5.6-75.2 14.3-106.9 22.8C81.3 388 58.3 395.1 42 400.4c-8.2 2.7-14.7 4.9-19.2 6.5c-2.3 .8-4 1.4-5.2 1.8l-1.3 .5C6.8 412.5 0 421.4 0 432s6.8 19.5 16.3 22.7l1.3 .5c1.2 .4 3 1.1 5.2 1.8c4.5 1.6 11 3.8 19.2 6.5c16.3 5.4 39.2 12.5 65.7 19.6C160.3 497.3 228.8 512 288 512h67.3c4.1 0 6.3-5.1 3.6-8.3L256.5 380.8c-7.4-8.9-16.5-15.9-26.7-20.8zM445 512h19 51.3c4.1 0 6.3-5.1 3.6-8.3L416.5 380.8C401.3 362.5 378.8 352 355 352H336 288c-1.1 0-2.3 0-3.4 0c-4.1 0-6.2 5.1-3.5 8.3L383.5 483.2C398.7 501.5 421.2 512 445 512zm-3.9-151.7L543.5 483.2c14.6 17.5 35.9 27.9 58.6 28.7c21.1-1.1 37.9-18.6 37.9-39.9V392c0-22.1-17.9-40-40-40H444.7c-4.1 0-6.3 5.1-3.6 8.3z" + } + }, + "free": [ + "solid" + ] + }, + "joomla": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1aa", + "label": "Joomla Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1.6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6.6 120.7.6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z" + } + }, + "free": [ + "brands" + ] + }, + "js": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b8", + "label": "JavaScript (JS)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" + } + }, + "free": [ + "brands" + ] + }, + "jsfiddle": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1cc", + "label": "jsFiddle", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M510.634 237.462c-4.727-2.621-5.664-5.748-6.381-10.776-2.352-16.488-3.539-33.619-9.097-49.095-35.895-99.957-153.99-143.386-246.849-91.646-27.37 15.25-48.971 36.369-65.493 63.903-3.184-1.508-5.458-2.71-7.824-3.686-30.102-12.421-59.049-10.121-85.331 9.167-25.531 18.737-36.422 44.548-32.676 76.408.355 3.025-1.967 7.621-4.514 9.545-39.712 29.992-56.031 78.065-41.902 124.615 13.831 45.569 57.514 79.796 105.608 81.433 30.291 1.031 60.637.546 90.959.539 84.041-.021 168.09.531 252.12-.48 52.664-.634 96.108-36.873 108.212-87.293 11.54-48.074-11.144-97.3-56.832-122.634zm21.107 156.88c-18.23 22.432-42.343 35.253-71.28 35.65-56.874.781-113.767.23-170.652.23 0 .7-163.028.159-163.728.154-43.861-.332-76.739-19.766-95.175-59.995-18.902-41.245-4.004-90.848 34.186-116.106 9.182-6.073 12.505-11.566 10.096-23.136-5.49-26.361 4.453-47.956 26.42-62.981 22.987-15.723 47.422-16.146 72.034-3.083 10.269 5.45 14.607 11.564 22.198-2.527 14.222-26.399 34.557-46.727 60.671-61.294 97.46-54.366 228.37 7.568 230.24 132.697.122 8.15 2.412 12.428 9.848 15.894 57.56 26.829 74.456 96.122 35.142 144.497zm-87.789-80.499c-5.848 31.157-34.622 55.096-66.666 55.095-16.953-.001-32.058-6.545-44.079-17.705-27.697-25.713-71.141-74.98-95.937-93.387-20.056-14.888-41.99-12.333-60.272 3.782-49.996 44.071 15.859 121.775 67.063 77.188 4.548-3.96 7.84-9.543 12.744-12.844 8.184-5.509 20.766-.884 13.168 10.622-17.358 26.284-49.33 38.197-78.863 29.301-28.897-8.704-48.84-35.968-48.626-70.179 1.225-22.485 12.364-43.06 35.414-55.965 22.575-12.638 46.369-13.146 66.991 2.474C295.68 280.7 320.467 323.97 352.185 343.47c24.558 15.099 54.254 7.363 68.823-17.506 28.83-49.209-34.592-105.016-78.868-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.975 6.811-17.333-4.113-12.809-10.353 20.703-28.554 50.464-40.44 83.271-28.214 31.429 11.714 49.108 44.366 42.76 78.186z" + } + }, + "free": [ + "brands" + ] + }, + "jug-detergent": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "detergent", + "laundry", + "soap", + "wash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e519", + "label": "Jug Detergent", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 24c0-13.3 10.7-24 24-24h80c13.3 0 24 10.7 24 24V48h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H88C74.7 96 64 85.3 64 72s10.7-24 24-24h8V24zM0 256c0-70.7 57.3-128 128-128H256c70.7 0 128 57.3 128 128V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256zm256 0v96c0 17.7 14.3 32 32 32s32-14.3 32-32V256c0-17.7-14.3-32-32-32s-32 14.3-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "k": { + "aliases": { + "unicodes": { + "composite": [ + "6b" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter K", + "Latin Small Letter K", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "4b", + "label": "K", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M311 86.3c12.3-12.7 12-32.9-.7-45.2s-32.9-12-45.2 .7l-155.2 160L64 249V64c0-17.7-14.3-32-32-32S0 46.3 0 64V328 448c0 17.7 14.3 32 32 32s32-14.3 32-32V341l64.7-66.7 133 192c10.1 14.5 30 18.1 44.5 8.1s18.1-30 8.1-44.5L174.1 227.4 311 86.3z" + } + }, + "free": [ + "solid" + ] + }, + "kaaba": { + "aliases": { + "unicodes": { + "composite": [ + "1f54b" + ], + "secondary": [ + "10f66b" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Muslim", + "building", + "cube", + "islam", + "kaaba", + "muslim", + "religion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f66b", + "label": "Kaaba", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M60 120l228 71.2L516 120 288 48.8 60 120zM278.5 1.5c6.2-1.9 12.9-1.9 19.1 0l256 80C566.9 85.6 576 98 576 112v16 0 21.2L292.8 237.7c-3.1 1-6.4 1-9.5 0L0 149.2V128 112C0 98 9.1 85.6 22.5 81.5l256-80zm23.9 266.8L576 182.8v46.5l-52.8 16.5c-8.4 2.6-13.1 11.6-10.5 20s11.6 13.1 20 10.5L576 262.8V400c0 14-9.1 26.4-22.5 30.5l-256 80c-6.2 1.9-12.9 1.9-19.1 0l-256-80C9.1 426.4 0 414 0 400V262.8l43.2 13.5c8.4 2.6 17.4-2.1 20-10.5s-2.1-17.4-10.5-20L0 229.2V182.8l273.7 85.5c9.3 2.9 19.3 2.9 28.6 0zm-185.5-2.6c-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20l64 20c8.4 2.6 17.4-2.1 20-10.5s-2.1-17.4-10.5-20l-64-20zm352 30.5c8.4-2.6 13.1-11.6 10.5-20s-11.6-13.1-20-10.5l-64 20c-8.4 2.6-13.1 11.6-10.5 20s11.6 13.1 20 10.5l64-20zm-224 9.5c-8.4-2.6-17.4 2.1-20 10.5s2.1 17.4 10.5 20l38.5 12c9.3 2.9 19.3 2.9 28.6 0l38.5-12c8.4-2.6 13.1-11.6 10.5-20s-11.6-13.1-20-10.5l-38.5 12c-3.1 1-6.4 1-9.5 0l-38.5-12z" + } + }, + "free": [ + "solid" + ] + }, + "kaggle": { + "changes": [ + "5.2.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5fa", + "label": "Kaggle", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M304.2 501.5L158.4 320.3 298.2 185c2.6-2.7 1.7-10.5-5.3-10.5h-69.2c-3.5 0-7 1.8-10.5 5.3L80.9 313.5V7.5q0-7.5-7.5-7.5H21.5Q14 0 14 7.5v497q0 7.5 7.5 7.5h51.9q7.5 0 7.5-7.5v-109l30.8-29.3 110.5 140.6c3 3.5 6.5 5.3 10.5 5.3h66.9q5.25 0 6-3z" + } + }, + "free": [ + "brands" + ] + }, + "key": { + "aliases": { + "unicodes": { + "composite": [ + "1f511" + ], + "secondary": [ + "10f084" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "key", + "lock", + "password", + "private", + "secret", + "unlock" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f084", + "label": "Key", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M336 352c97.2 0 176-78.8 176-176S433.2 0 336 0S160 78.8 160 176c0 18.7 2.9 36.8 8.3 53.7L7 391c-4.5 4.5-7 10.6-7 17v80c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V448h40c13.3 0 24-10.7 24-24V384h40c6.4 0 12.5-2.5 17-7l33.3-33.3c16.9 5.4 35 8.3 53.7 8.3zM376 96a40 40 0 1 1 0 80 40 40 0 1 1 0-80z" + } + }, + "free": [ + "solid" + ] + }, + "keybase": { + "changes": [ + "5.0.11", + "5.8.0", + "5.10.2", + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f5", + "label": "Keybase", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M286.17 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18zm111.92-147.6c-9.5-14.62-39.37-52.45-87.26-73.71q-9.1-4.06-18.38-7.27a78.43 78.43 0 0 0-47.88-104.13c-12.41-4.1-23.33-6-32.41-5.77-.6-2-1.89-11 9.4-35L198.66 32l-5.48 7.56c-8.69 12.06-16.92 23.55-24.34 34.89a51 51 0 0 0-8.29-1.25c-41.53-2.45-39-2.33-41.06-2.33-50.61 0-50.75 52.12-50.75 45.88l-2.36 36.68c-1.61 27 19.75 50.21 47.63 51.85l8.93.54a214 214 0 0 0-46.29 35.54C14 304.66 14 374 14 429.77v33.64l23.32-29.8a148.6 148.6 0 0 0 14.56 37.56c5.78 10.13 14.87 9.45 19.64 7.33 4.21-1.87 10-6.92 3.75-20.11a178.29 178.29 0 0 1-15.76-53.13l46.82-59.83-24.66 74.11c58.23-42.4 157.38-61.76 236.25-38.59 34.2 10.05 67.45.69 84.74-23.84.72-1 1.2-2.16 1.85-3.22a156.09 156.09 0 0 1 2.8 28.43c0 23.3-3.69 52.93-14.88 81.64-2.52 6.46 1.76 14.5 8.6 15.74 7.42 1.57 15.33-3.1 18.37-11.15C429 443 434 414 434 382.32c0-38.58-13-77.46-35.91-110.92zM142.37 128.58l-15.7-.93-1.39 21.79 13.13.78a93 93 0 0 0 .32 19.57l-22.38-1.34a12.28 12.28 0 0 1-11.76-12.79L107 119c1-12.17 13.87-11.27 13.26-11.32l29.11 1.73a144.35 144.35 0 0 0-7 19.17zm148.42 172.18a10.51 10.51 0 0 1-14.35-1.39l-9.68-11.49-34.42 27a8.09 8.09 0 0 1-11.13-1.08l-15.78-18.64a7.38 7.38 0 0 1 1.34-10.34l34.57-27.18-14.14-16.74-17.09 13.45a7.75 7.75 0 0 1-10.59-1s-3.72-4.42-3.8-4.53a7.38 7.38 0 0 1 1.37-10.34L214 225.19s-18.51-22-18.6-22.14a9.56 9.56 0 0 1 1.74-13.42 10.38 10.38 0 0 1 14.3 1.37l81.09 96.32a9.58 9.58 0 0 1-1.74 13.44zM187.44 419a18 18 0 1 0 18 18 18 18 0 0 0-18-18z" + } + }, + "free": [ + "brands" + ] + }, + "keyboard": { + "aliases": { + "unicodes": { + "composite": [ + "2328" + ], + "secondary": [ + "10f11c" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accessory", + "computer", + "edit", + "input", + "keyboard", + "text", + "type", + "write" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f11c", + "label": "Keyboard", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm16 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM64 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V240zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm80-176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V144zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16zM160 336c0-8.8 7.2-16 16-16H400c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V336zM272 128h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM256 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V240zM368 128h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM352 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V240zM464 128h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16zM448 240c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V240zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H464c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16z" + }, + "regular": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 112c-8.8 0-16 7.2-16 16V384c0 8.8 7.2 16 16 16H512c8.8 0 16-7.2 16-16V128c0-8.8-7.2-16-16-16H64zM0 128C0 92.7 28.7 64 64 64H512c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM176 320H400c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm-72-72c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H120c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H120c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16zm64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H200c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H200c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16zm64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H280c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H280c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16zm64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H360c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H360c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16zm64 96c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H440c-8.8 0-16-7.2-16-16V248zm16-96h16c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H440c-8.8 0-16-7.2-16-16V168c0-8.8 7.2-16 16-16z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "keycdn": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ba", + "label": "KeyCDN", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5.7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4.3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3.3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2.7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3.1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9.4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1.8-57.3 24.8-58.2 58.3zM256 160" + } + }, + "free": [ + "brands" + ] + }, + "khanda": { + "aliases": { + "unicodes": { + "composite": [ + "262c" + ], + "secondary": [ + "10f66d" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Adi Shakti", + "chakkar", + "sikh", + "sikhism", + "sword" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f66d", + "label": "Khanda", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M246.8 3.7c5.9-4.9 14.6-4.9 20.5 0l48 40c5.9 4.9 7.5 13.2 3.8 19.9l0 0 0 0 0 0 0 0-.1 .1-.3 .6c-.3 .5-.7 1.3-1.2 2.3c-1 2-2.6 5-4.4 8.6c-.5 .9-.9 1.9-1.4 2.9C345.9 97.4 369 134 369 176s-23.1 78.6-57.3 97.8c.5 1 1 2 1.4 2.9c1.8 3.7 3.3 6.6 4.4 8.6c.5 1 .9 1.8 1.2 2.3l.3 .6 .1 .1 0 0 0 0c3.6 6.7 2 15-3.8 19.9L273 343.5v19.8l35.6-24.5 41.1-28.2c42.8-29.4 68.4-78 68.4-130c0-31.1-9.2-61.6-26.5-87.5l-2.8-4.2c-4-6-3.5-14 1.3-19.5s12.7-7 19.2-3.7L402.1 80c7.2-14.3 7.2-14.3 7.2-14.3l0 0 0 0 .1 0 .3 .2 1 .5c.8 .4 2 1.1 3.5 1.9c2.9 1.7 7 4.1 11.8 7.3c9.6 6.4 22.5 16.1 35.4 29c25.7 25.7 52.7 65.6 52.7 119.3c0 53.1-26.4 100.5-51.2 133.6c-12.6 16.7-25.1 30.3-34.5 39.7c-4.7 4.7-8.7 8.4-11.5 10.9c-1.4 1.3-2.5 2.2-3.3 2.9l-.9 .8-.3 .2-.1 .1 0 0 0 0s0 0-10.2-12.3l10.2 12.3c-5.1 4.3-12.4 4.9-18.2 1.6l-75.6-43-32.7 22.5 45.5 31.3c1.8-.4 3.7-.7 5.7-.7c13.3 0 24 10.7 24 24s-10.7 24-24 24c-12.2 0-22.3-9.1-23.8-21L273 423.4v28.9c9.6 5.5 16 15.9 16 27.7c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-11.8 6.4-22.2 16-27.7V424.1l-40.3 27.7C198.8 463.3 188.9 472 177 472c-13.3 0-24-10.7-24-24s10.7-24 24-24c2.2 0 4.4 .3 6.5 .9l45.8-31.5-32.7-22.5-75.6 43c-5.8 3.3-13 2.7-18.2-1.6L113 400c-10.2 12.3-10.2 12.3-10.3 12.3l0 0 0 0-.1-.1-.3-.2-.9-.8c-.8-.7-1.9-1.7-3.3-2.9c-2.8-2.5-6.7-6.2-11.5-10.9c-9.4-9.4-21.9-23-34.5-39.7C27.4 324.5 1 277.1 1 224c0-53.7 26.9-93.6 52.7-119.3c12.9-12.9 25.8-22.6 35.4-29C94 72.5 98 70 100.9 68.4c1.5-.8 2.6-1.5 3.5-1.9l1-.5 .3-.2 .1 0 0 0 0 0s0 0 7.2 14.3l-7.2-14.3c6.5-3.2 14.3-1.7 19.2 3.7s5.3 13.4 1.3 19.5l-2.8 4.2C106.2 119 97 149.5 97 180.6c0 51.9 25.6 100.6 68.4 130l41.1 28.2L241 362.6V343.5l-42.2-35.2c-5.9-4.9-7.5-13.2-3.8-19.9l0 0 0 0 0 0 .1-.1 .3-.6c.3-.5 .7-1.3 1.2-2.3c1-2 2.6-5 4.4-8.6c.5-.9 .9-1.9 1.4-2.9C168.1 254.6 145 218 145 176s23.1-78.6 57.3-97.8c-.5-1-1-2-1.4-2.9c-1.8-3.7-3.3-6.6-4.4-8.6c-.5-1-.9-1.8-1.2-2.3l-.3-.6-.1-.1 0 0 0 0 0 0c-3.6-6.7-2-15 3.8-19.9l48-40zM221.2 122.9c-17 11.5-28.2 31-28.2 53.1s11.2 41.6 28.2 53.1C228 210.2 233 190.9 233 176s-5-34.2-11.8-53.1zm71.5 106.2c17-11.5 28.2-31 28.2-53.1s-11.2-41.6-28.2-53.1C286 141.8 281 161.1 281 176s5 34.2 11.8 53.1z" + } + }, + "free": [ + "solid" + ] + }, + "kickstarter": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3bb", + "label": "Kickstarter", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z" + } + }, + "free": [ + "brands" + ] + }, + "kickstarter-k": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3bc", + "label": "Kickstarter K", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z" + } + }, + "free": [ + "brands" + ] + }, + "kip-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Kip Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e1c4", + "label": "Kip Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M340.8 88.3c13.4-11.5 15-31.7 3.5-45.1s-31.7-15-45.1-3.5L128 186.4V64c0-17.7-14.3-32-32-32S64 46.3 64 64V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V325.6L299.2 472.3c13.4 11.5 33.6 9.9 45.1-3.5s9.9-33.6-3.5-45.1L182.5 288H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H182.5L340.8 88.3z" + } + }, + "free": [ + "solid" + ] + }, + "kit-medical": { + "aliases": { + "names": [ + "first-aid" + ], + "unicodes": { + "secondary": [ + "10f479" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "emergency", + "emt", + "health", + "medical", + "rescue" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f479", + "label": "Kit Medical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H96V32H64zm64 0V480H448V32H128zM512 480c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H480V480h32zM256 176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H320v48c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V288H208c-8.8 0-16-7.2-16-16V240c0-8.8 7.2-16 16-16h48V176z" + } + }, + "free": [ + "solid" + ] + }, + "kitchen-set": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chef", + "cook", + "cup", + "kitchen", + "pan", + "pot", + "skillet" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e51a", + "label": "Kitchen Set", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M240 144A96 96 0 1 0 48 144a96 96 0 1 0 192 0zm44.4 32C269.9 240.1 212.5 288 144 288C64.5 288 0 223.5 0 144S64.5 0 144 0c68.5 0 125.9 47.9 140.4 112h71.8c8.8-9.8 21.6-16 35.8-16H496c26.5 0 48 21.5 48 48s-21.5 48-48 48H392c-14.2 0-27-6.2-35.8-16H284.4zM144 80a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM400 240c13.3 0 24 10.7 24 24v8h96c13.3 0 24 10.7 24 24s-10.7 24-24 24H280c-13.3 0-24-10.7-24-24s10.7-24 24-24h96v-8c0-13.3 10.7-24 24-24zM288 464V352H512V464c0 26.5-21.5 48-48 48H336c-26.5 0-48-21.5-48-48zM48 320h80 16 32c26.5 0 48 21.5 48 48s-21.5 48-48 48H160c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V336c0-8.8 7.2-16 16-16zm128 64c8.8 0 16-7.2 16-16s-7.2-16-16-16H160v32h16zM24 464H200c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "kiwi-bird": { + "aliases": { + "unicodes": { + "secondary": [ + "10f535" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bird", + "fauna", + "new zealand" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f535", + "label": "Kiwi Bird", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M291.2 388.4c31.2-18.8 64.7-36.4 101.1-36.4H448c4.6 0 9.1-.2 13.6-.7l85.3 121.9c4 5.7 11.3 8.2 17.9 6.1s11.2-8.3 11.2-15.3V224c0-70.7-57.3-128-128-128H392.3c-36.4 0-69.9-17.6-101.1-36.4C262.3 42.1 228.3 32 192 32C86 32 0 118 0 224c0 71.1 38.6 133.1 96 166.3V456c0 13.3 10.7 24 24 24s24-10.7 24-24V410c15.3 3.9 31.4 6 48 6c5.4 0 10.7-.2 16-.7V456c0 13.3 10.7 24 24 24s24-10.7 24-24V405.1c12.4-4.4 24.2-10 35.2-16.7zM448 200a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + }, + "free": [ + "solid" + ] + }, + "korvue": { + "changes": [ + "5.0.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42f", + "label": "KORVUE", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 446, + 512 + ], + "width": 446, + "height": 512, + "path": "M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z" + } + }, + "free": [ + "brands" + ] + }, + "l": { + "aliases": { + "unicodes": { + "composite": [ + "6c" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter L", + "Latin Small Letter L", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "4c", + "label": "L", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32c17.7 0 32 14.3 32 32V416H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "land-mine-on": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bomb", + "danger", + "explosion", + "war" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e51b", + "label": "Land Mine On", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M312 24V168c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24s24 10.7 24 24zM160 320c0-17.7 14.3-32 32-32H384c17.7 0 32 14.3 32 32v32H160V320zM82.7 410.5c8.1-16.3 24.8-26.5 42.9-26.5H450.3c18.2 0 34.8 10.3 42.9 26.5l27.6 55.2C531.5 487 516 512 492.2 512H83.8c-23.8 0-39.3-25-28.6-46.3l27.6-55.2zM4.3 138.3c7.5-10.9 22.5-13.6 33.4-6.1l104 72c10.9 7.5 13.6 22.5 6.1 33.4s-22.5 13.6-33.4 6.1l-104-72c-10.9-7.5-13.6-22.5-6.1-33.4zm534.1-6.1c10.9-7.5 25.8-4.8 33.4 6.1s4.8 25.8-6.1 33.4l-104 72c-10.9 7.5-25.8 4.8-33.4-6.1s-4.8-25.8 6.1-33.4l104-72z" + } + }, + "free": [ + "solid" + ] + }, + "landmark": { + "aliases": { + "unicodes": { + "composite": [ + "1f3db" + ], + "secondary": [ + "10f66f" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "classical", + "historic", + "memorable", + "monument", + "museum", + "politics" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f66f", + "label": "Landmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M240.1 4.2c9.8-5.6 21.9-5.6 31.8 0l171.8 98.1L448 104l0 .9 47.9 27.4c12.6 7.2 18.8 22 15.1 36s-16.4 23.8-30.9 23.8H32c-14.5 0-27.2-9.8-30.9-23.8s2.5-28.8 15.1-36L64 104.9V104l4.4-1.6L240.1 4.2zM64 224h64V416h40V224h64V416h48V224h64V416h40V224h64V420.3c.6 .3 1.2 .7 1.8 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1V224z" + } + }, + "free": [ + "solid" + ] + }, + "landmark-dome": { + "aliases": { + "names": [ + "landmark-alt" + ], + "unicodes": { + "secondary": [ + "10f752" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "historic", + "memorable", + "monument", + "politics" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f752", + "label": "Landmark Dome", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M248 0h16c13.3 0 24 10.7 24 24V34.7C368.4 48.1 431.9 111.6 445.3 192H448c17.7 0 32 14.3 32 32s-14.3 32-32 32H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h2.7C80.1 111.6 143.6 48.1 224 34.7V24c0-13.3 10.7-24 24-24zM64 288h64V416h40V288h64V416h48V288h64V416h40V288h64V420.3c.6 .3 1.2 .7 1.7 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1V288z" + } + }, + "free": [ + "solid" + ] + }, + "landmark-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "capitol", + "flag", + "landmark", + "memorial" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e51c", + "label": "Landmark Flag", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M272 0h80c8.8 0 16 7.2 16 16V80c0 8.8-7.2 16-16 16H272v32H464c17.7 0 32 14.3 32 32s-14.3 32-32 32H48c-17.7 0-32-14.3-32-32s14.3-32 32-32H240V16c0-8.8 7.2-16 16-16h16zM64 224h64V416h40V224h64V416h48V224h64V416h40V224h64V420.3c.6 .3 1.2 .7 1.8 1.1l48 32c11.7 7.8 17 22.4 12.9 35.9S494.1 512 480 512H32c-14.1 0-26.5-9.2-30.6-22.7s1.1-28.1 12.9-35.9l48-32c.6-.4 1.2-.7 1.8-1.1V224z" + } + }, + "free": [ + "solid" + ] + }, + "language": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1ab" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dialect", + "idiom", + "localize", + "speech", + "translate", + "vernacular" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1ab", + "label": "Language", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H256h48 16H576c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H320 304 256 64c-35.3 0-64-28.7-64-64V128zm320 0V384H576V128H320zM178.3 175.9c-3.2-7.2-10.4-11.9-18.3-11.9s-15.1 4.7-18.3 11.9l-64 144c-4.5 10.1 .1 21.9 10.2 26.4s21.9-.1 26.4-10.2l8.9-20.1h73.6l8.9 20.1c4.5 10.1 16.3 14.6 26.4 10.2s14.6-16.3 10.2-26.4l-64-144zM160 233.2L179 276H141l19-42.8zM448 164c11 0 20 9 20 20v4h44 16c11 0 20 9 20 20s-9 20-20 20h-2l-1.6 4.5c-8.9 24.4-22.4 46.6-39.6 65.4c.9 .6 1.8 1.1 2.7 1.6l18.9 11.3c9.5 5.7 12.5 18 6.9 27.4s-18 12.5-27.4 6.9l-18.9-11.3c-4.5-2.7-8.8-5.5-13.1-8.5c-10.6 7.5-21.9 14-34 19.4l-3.6 1.6c-10.1 4.5-21.9-.1-26.4-10.2s.1-21.9 10.2-26.4l3.6-1.6c6.4-2.9 12.6-6.1 18.5-9.8l-12.2-12.2c-7.8-7.8-7.8-20.5 0-28.3s20.5-7.8 28.3 0l14.6 14.6 .5 .5c12.4-13.1 22.5-28.3 29.8-45H448 376c-11 0-20-9-20-20s9-20 20-20h52v-4c0-11 9-20 20-20z" + } + }, + "free": [ + "solid" + ] + }, + "laptop": { + "aliases": { + "unicodes": { + "composite": [ + "1f4bb" + ], + "secondary": [ + "10f109" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "dell", + "demo", + "device", + "laptop", + "mac", + "macbook", + "machine", + "pc", + "personal" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f109", + "label": "Laptop", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 32C92.7 32 64 60.7 64 96V352h64V96H512V352h64V96c0-35.3-28.7-64-64-64H128zM19.2 384C8.6 384 0 392.6 0 403.2C0 445.6 34.4 480 76.8 480H563.2c42.4 0 76.8-34.4 76.8-76.8c0-10.6-8.6-19.2-19.2-19.2H19.2z" + } + }, + "free": [ + "solid" + ] + }, + "laptop-code": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5fc" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "dell", + "demo", + "develop", + "device", + "mac", + "macbook", + "machine", + "pc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5fc", + "label": "Laptop Code", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 96c0-35.3 28.7-64 64-64H512c35.3 0 64 28.7 64 64V352H512V96H128V352H64V96zM0 403.2C0 392.6 8.6 384 19.2 384H620.8c10.6 0 19.2 8.6 19.2 19.2c0 42.4-34.4 76.8-76.8 76.8H76.8C34.4 480 0 445.6 0 403.2zM281 209l-31 31 31 31c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-48-48c-9.4-9.4-9.4-24.6 0-33.9l48-48c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM393 175l48 48c9.4 9.4 9.4 24.6 0 33.9l-48 48c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l31-31-31-31c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z" + } + }, + "free": [ + "solid" + ] + }, + "laptop-file": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "education", + "laptop", + "learning", + "remote work" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e51d", + "label": "Laptop File", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 0H48C21.5 0 0 21.5 0 48V368c0 26.5 21.5 48 48 48H162.7c6.6-18.6 24.4-32 45.3-32V272c0-44.2 35.8-80 80-80h32V128H224c-17.7 0-32-14.3-32-32V0zm96 224c-26.5 0-48 21.5-48 48v16 96 32H208c-8.8 0-16 7.2-16 16v16c0 35.3 28.7 64 64 64H576c35.3 0 64-28.7 64-64V432c0-8.8-7.2-16-16-16H592V288c0-35.3-28.7-64-64-64H320 304 288zm32 64H528V416H304V288h16zM224 0V96h96L224 0z" + } + }, + "free": [ + "solid" + ] + }, + "laptop-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f812" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "device", + "ehr", + "electronic health records", + "history" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f812", + "label": "Laptop Medical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 96c0-35.3 28.7-64 64-64H512c35.3 0 64 28.7 64 64V352H512V96H128V352H64V96zM0 403.2C0 392.6 8.6 384 19.2 384H620.8c10.6 0 19.2 8.6 19.2 19.2c0 42.4-34.4 76.8-76.8 76.8H76.8C34.4 480 0 445.6 0 403.2zM288 160c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H352v48c0 8.8-7.2 16-16 16H304c-8.8 0-16-7.2-16-16V272H240c-8.8 0-16-7.2-16-16V224c0-8.8 7.2-16 16-16h48V160z" + } + }, + "free": [ + "solid" + ] + }, + "laravel": { + "changes": [ + "5.0.0", + "5.0.3", + "5.11.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3bd", + "label": "Laravel", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504.4,115.83a5.72,5.72,0,0,0-.28-.68,8.52,8.52,0,0,0-.53-1.25,6,6,0,0,0-.54-.71,9.36,9.36,0,0,0-.72-.94c-.23-.22-.52-.4-.77-.6a8.84,8.84,0,0,0-.9-.68L404.4,55.55a8,8,0,0,0-8,0L300.12,111h0a8.07,8.07,0,0,0-.88.69,7.68,7.68,0,0,0-.78.6,8.23,8.23,0,0,0-.72.93c-.17.24-.39.45-.54.71a9.7,9.7,0,0,0-.52,1.25c-.08.23-.21.44-.28.68a8.08,8.08,0,0,0-.28,2.08V223.18l-80.22,46.19V63.44a7.8,7.8,0,0,0-.28-2.09c-.06-.24-.2-.45-.28-.68a8.35,8.35,0,0,0-.52-1.24c-.14-.26-.37-.47-.54-.72a9.36,9.36,0,0,0-.72-.94,9.46,9.46,0,0,0-.78-.6,9.8,9.8,0,0,0-.88-.68h0L115.61,1.07a8,8,0,0,0-8,0L11.34,56.49h0a6.52,6.52,0,0,0-.88.69,7.81,7.81,0,0,0-.79.6,8.15,8.15,0,0,0-.71.93c-.18.25-.4.46-.55.72a7.88,7.88,0,0,0-.51,1.24,6.46,6.46,0,0,0-.29.67,8.18,8.18,0,0,0-.28,2.1v329.7a8,8,0,0,0,4,6.95l192.5,110.84a8.83,8.83,0,0,0,1.33.54c.21.08.41.2.63.26a7.92,7.92,0,0,0,4.1,0c.2-.05.37-.16.55-.22a8.6,8.6,0,0,0,1.4-.58L404.4,400.09a8,8,0,0,0,4-6.95V287.88l92.24-53.11a8,8,0,0,0,4-7V117.92A8.63,8.63,0,0,0,504.4,115.83ZM111.6,17.28h0l80.19,46.15-80.2,46.18L31.41,63.44Zm88.25,60V278.6l-46.53,26.79-33.69,19.4V123.5l46.53-26.79Zm0,412.78L23.37,388.5V77.32L57.06,96.7l46.52,26.8V338.68a6.94,6.94,0,0,0,.12.9,8,8,0,0,0,.16,1.18h0a5.92,5.92,0,0,0,.38.9,6.38,6.38,0,0,0,.42,1v0a8.54,8.54,0,0,0,.6.78,7.62,7.62,0,0,0,.66.84l0,0c.23.22.52.38.77.58a8.93,8.93,0,0,0,.86.66l0,0,0,0,92.19,52.18Zm8-106.17-80.06-45.32,84.09-48.41,92.26-53.11,80.13,46.13-58.8,33.56Zm184.52,4.57L215.88,490.11V397.8L346.6,323.2l45.77-26.15Zm0-119.13L358.68,250l-46.53-26.79V131.79l33.69,19.4L392.37,178Zm8-105.28-80.2-46.17,80.2-46.16,80.18,46.15Zm8,105.28V178L455,151.19l33.68-19.4v91.39h0Z" + } + }, + "free": [ + "brands" + ] + }, + "lari-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Lari Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e1c8", + "label": "Lari Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M144 32c17.7 0 32 14.3 32 32V96.7c5.3-.4 10.6-.7 16-.7s10.7 .2 16 .7V64c0-17.7 14.3-32 32-32s32 14.3 32 32v49.4c54.9 25.2 95.8 75.5 108.2 136.2c3.5 17.3-7.7 34.2-25 37.7s-34.2-7.7-37.7-25c-6.1-29.9-22.5-55.9-45.4-74.3V256c0 17.7-14.3 32-32 32s-32-14.3-32-32V161c-5.2-.7-10.6-1-16-1s-10.8 .3-16 1v95c0 17.7-14.3 32-32 32s-32-14.3-32-32V188.1C82.7 211.5 64 247.6 64 288c0 70.7 57.3 128 128 128H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H192 32c-17.7 0-32-14.3-32-32s14.3-32 32-32H48.9C18.5 382 0 337.2 0 288c0-77.5 45.9-144.3 112-174.6V64c0-17.7 14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "lastfm": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f202", + "label": "last.fm", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z" + } + }, + "free": [ + "brands" + ] + }, + "layer-group": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5fd" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrange", + "develop", + "layers", + "map", + "stack" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5fd", + "label": "Layer Group", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321837, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M264.5 5.2c14.9-6.9 32.1-6.9 47 0l218.6 101c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 149.8C37.4 145.8 32 137.3 32 128s5.4-17.9 13.9-21.8L264.5 5.2zM476.9 209.6l53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 277.8C37.4 273.8 32 265.3 32 256s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0l152-70.2zm-152 198.2l152-70.2 53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 405.8C37.4 401.8 32 393.3 32 384s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0z" + } + }, + "free": [ + "solid" + ] + }, + "leaf": { + "aliases": { + "unicodes": { + "secondary": [ + "10f06c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eco", + "flora", + "nature", + "plant", + "vegan" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f06c", + "label": "Leaf", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M272 96c-78.6 0-145.1 51.5-167.7 122.5c33.6-17 71.5-26.5 111.7-26.5h88c8.8 0 16 7.2 16 16s-7.2 16-16 16H288 216s0 0 0 0c-16.6 0-32.7 1.9-48.3 5.4c-25.9 5.9-49.9 16.4-71.4 30.7c0 0 0 0 0 0C38.3 298.8 0 364.9 0 440v16c0 13.3 10.7 24 24 24s24-10.7 24-24V440c0-48.7 20.7-92.5 53.8-123.2C121.6 392.3 190.3 448 272 448l1 0c132.1-.7 239-130.9 239-291.4c0-42.6-7.5-83.1-21.1-119.6c-2.6-6.9-12.7-6.6-16.2-.1C455.9 72.1 418.7 96 376 96L272 96z" + } + }, + "free": [ + "solid" + ] + }, + "leanpub": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f212", + "label": "Leanpub", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M386.539 111.485l15.096 248.955-10.979-.275c-36.232-.824-71.64 8.783-102.657 27.997-31.016-19.214-66.424-27.997-102.657-27.997-45.564 0-82.07 10.705-123.516 27.723L93.117 129.6c28.546-11.803 61.484-18.115 92.226-18.115 41.173 0 73.836 13.175 102.657 42.544 27.723-28.271 59.013-41.721 98.539-42.544zM569.07 448c-25.526 0-47.485-5.215-70.542-15.645-34.31-15.645-69.993-24.978-107.871-24.978-38.977 0-74.934 12.901-102.657 40.623-27.723-27.723-63.68-40.623-102.657-40.623-37.878 0-73.561 9.333-107.871 24.978C55.239 442.236 32.731 448 8.303 448H6.93L49.475 98.859C88.726 76.626 136.486 64 181.775 64 218.83 64 256.984 71.685 288 93.095 319.016 71.685 357.17 64 394.225 64c45.289 0 93.049 12.626 132.3 34.859L569.07 448zm-43.368-44.741l-34.036-280.246c-30.742-13.999-67.248-21.41-101.009-21.41-38.428 0-74.385 12.077-102.657 38.702-28.272-26.625-64.228-38.702-102.657-38.702-33.761 0-70.267 7.411-101.009 21.41L50.298 403.259c47.211-19.487 82.894-33.486 135.045-33.486 37.604 0 70.817 9.606 102.657 29.644 31.84-20.038 65.052-29.644 102.657-29.644 52.151 0 87.834 13.999 135.045 33.486z" + } + }, + "free": [ + "brands" + ] + }, + "left-long": { + "aliases": { + "names": [ + "long-arrow-alt-left" + ], + "unicodes": { + "secondary": [ + "10f30a" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "long-arrow-left", + "previous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f30a", + "label": "Left Long", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M177.5 414c-8.8 3.8-19 2-26-4.6l-144-136C2.7 268.9 0 262.6 0 256s2.7-12.9 7.5-17.4l144-136c7-6.6 17.2-8.4 26-4.6s14.5 12.5 14.5 22l0 72 288 0c17.7 0 32 14.3 32 32l0 64c0 17.7-14.3 32-32 32l-288 0 0 72c0 9.6-5.7 18.2-14.5 22z" + } + }, + "free": [ + "solid" + ] + }, + "left-right": { + "aliases": { + "names": [ + "arrows-alt-h" + ], + "unicodes": { + "composite": [ + "2194" + ], + "secondary": [ + "10f337" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows-h", + "expand", + "horizontal", + "landscape", + "left-right arrow", + "resize", + "wide" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f337", + "label": "Left Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504.3 273.6c4.9-4.5 7.7-10.9 7.7-17.6s-2.8-13-7.7-17.6l-112-104c-7-6.5-17.2-8.2-25.9-4.4s-14.4 12.5-14.4 22l0 56-192 0 0-56c0-9.5-5.7-18.2-14.4-22s-18.9-2.1-25.9 4.4l-112 104C2.8 243 0 249.3 0 256s2.8 13 7.7 17.6l112 104c7 6.5 17.2 8.2 25.9 4.4s14.4-12.5 14.4-22l0-56 192 0 0 56c0 9.5 5.7 18.2 14.4 22s18.9 2.1 25.9-4.4l112-104z" + } + }, + "free": [ + "solid" + ] + }, + "lemon": { + "aliases": { + "unicodes": { + "composite": [ + "1f34b" + ], + "secondary": [ + "10f094" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "citrus", + "fruit", + "lemon", + "lemonade", + "lime", + "tart" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f094", + "label": "Lemon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 96c0-35.3-28.7-64-64-64c-6.6 0-13 1-19 2.9c-22.5 7-48.1 14.9-71 9c-75.2-19.1-156.4 11-213.7 68.3S-7.2 250.8 11.9 326c5.8 22.9-2 48.4-9 71C1 403 0 409.4 0 416c0 35.3 28.7 64 64 64c6.6 0 13-1 19.1-2.9c22.5-7 48.1-14.9 71-9c75.2 19.1 156.4-11 213.7-68.3s87.5-138.5 68.3-213.7c-5.8-22.9 2-48.4 9-71c1.9-6 2.9-12.4 2.9-19.1zM212.5 127.4c-54.6 16-101.1 62.5-117.1 117.1C92.9 253 84 257.8 75.5 255.4S62.2 244 64.6 235.5c19.1-65.1 73.7-119.8 138.9-138.9c8.5-2.5 17.4 2.4 19.9 10.9s-2.4 17.4-10.9 19.9z" + }, + "regular": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M368 80c-3.2 0-6.2 .4-8.9 1.3C340 86.8 313 91.9 284.8 84.6C227.4 69.7 160.2 92 110.1 142.1S37.7 259.4 52.6 316.8c7.3 28.2 2.2 55.2-3.3 74.3c-.8 2.8-1.3 5.8-1.3 8.9c0 17.7 14.3 32 32 32c3.2 0 6.2-.4 8.9-1.3c19.1-5.5 46.1-10.7 74.3-3.3c57.4 14.9 124.6-7.4 174.7-57.5s72.4-117.3 57.5-174.7c-7.3-28.2-2.2-55.2 3.3-74.3c.8-2.8 1.3-5.8 1.3-8.9c0-17.7-14.3-32-32-32zm0-48c44.2 0 80 35.8 80 80c0 7.7-1.1 15.2-3.1 22.3c-4.6 15.8-7.1 32.9-3 48.9c20.1 77.6-10.9 161.5-70 220.7s-143.1 90.2-220.7 70c-16-4.1-33-1.6-48.9 3c-7.1 2-14.6 3.1-22.3 3.1c-44.2 0-80-35.8-80-80c0-7.7 1.1-15.2 3.1-22.3c4.6-15.8 7.1-32.9 3-48.9C-14 251.3 17 167.3 76.2 108.2S219.3 18 296.8 38.1c16 4.1 33 1.6 48.9-3c7.1-2 14.6-3.1 22.3-3.1zM246.7 167c-52 15.2-96.5 59.7-111.7 111.7c-3.7 12.7-17.1 20-29.8 16.3s-20-17.1-16.3-29.8c19.8-67.7 76.6-124.5 144.3-144.3c12.7-3.7 26.1 3.6 29.8 16.3s-3.6 26.1-16.3 29.8z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "less": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41d", + "label": "Less", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5.5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1.8-4.6.8-6.2.8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4.6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z" + } + }, + "free": [ + "brands" + ] + }, + "less-than": { + "aliases": { + "unicodes": { + "composite": [ + "f536" + ], + "primary": [ + "f536" + ], + "secondary": [ + "103c", + "10f536" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Less-Than Sign", + "arithmetic", + "compare", + "math" + ] + }, + "styles": [ + "solid" + ], + "unicode": "3c", + "label": "Less Than", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M380.6 81.7c7.9 15.8 1.5 35-14.3 42.9L103.6 256 366.3 387.4c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-320-160C6.8 279.2 0 268.1 0 256s6.8-23.2 17.7-28.6l320-160c15.8-7.9 35-1.5 42.9 14.3z" + } + }, + "free": [ + "solid" + ] + }, + "less-than-equal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f537" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "compare", + "math" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f537", + "label": "Less Than Equal", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M395.9 93.7c16.4-6.6 24.4-25.2 17.8-41.6s-25.2-24.4-41.6-17.8l-320 128C40 167.1 32 178.9 32 192s8 24.9 20.1 29.7l320 128c16.4 6.6 35-1.4 41.6-17.8s-1.4-35-17.8-41.6L150.2 192 395.9 93.7zM32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + }, + "free": [ + "solid" + ] + }, + "life-ring": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1cd" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "coast guard", + "help", + "overboard", + "save", + "support" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1cd", + "label": "Life Ring", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M367.2 412.5C335.9 434.9 297.5 448 256 448s-79.9-13.1-111.2-35.5l58-58c15.8 8.6 34 13.5 53.3 13.5s37.4-4.9 53.3-13.5l58 58zm90.7 .8c33.8-43.4 54-98 54-157.3s-20.2-113.9-54-157.3c9-12.5 7.9-30.1-3.4-41.3S425.8 45 413.3 54C369.9 20.2 315.3 0 256 0S142.1 20.2 98.7 54c-12.5-9-30.1-7.9-41.3 3.4S45 86.2 54 98.7C20.2 142.1 0 196.7 0 256s20.2 113.9 54 157.3c-9 12.5-7.9 30.1 3.4 41.3S86.2 467 98.7 458c43.4 33.8 98 54 157.3 54s113.9-20.2 157.3-54c12.5 9 30.1 7.9 41.3-3.4s12.4-28.8 3.4-41.3zm-45.5-46.1l-58-58c8.6-15.8 13.5-34 13.5-53.3s-4.9-37.4-13.5-53.3l58-58C434.9 176.1 448 214.5 448 256s-13.1 79.9-35.5 111.2zM367.2 99.5l-58 58c-15.8-8.6-34-13.5-53.3-13.5s-37.4 4.9-53.3 13.5l-58-58C176.1 77.1 214.5 64 256 64s79.9 13.1 111.2 35.5zM157.5 309.3l-58 58C77.1 335.9 64 297.5 64 256s13.1-79.9 35.5-111.2l58 58c-8.6 15.8-13.5 34-13.5 53.3s4.9 37.4 13.5 53.3zM208 256a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z" + }, + "regular": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M385.1 419.1C349.7 447.2 304.8 464 256 464s-93.7-16.8-129.1-44.9l80.4-80.4c14.3 8.4 31 13.3 48.8 13.3s34.5-4.8 48.8-13.3l80.4 80.4zm68.1 .2C489.9 374.9 512 318.1 512 256s-22.1-118.9-58.8-163.3L465 81c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L419.3 58.8C374.9 22.1 318.1 0 256 0S137.1 22.1 92.7 58.8L81 47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L58.8 92.7C22.1 137.1 0 193.9 0 256s22.1 118.9 58.8 163.3L47 431c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l11.8-11.8C137.1 489.9 193.9 512 256 512s118.9-22.1 163.3-58.8L431 465c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-11.8-11.8zm-34.1-34.1l-80.4-80.4c8.4-14.3 13.3-31 13.3-48.8s-4.8-34.5-13.3-48.8l80.4-80.4C447.2 162.3 464 207.2 464 256s-16.8 93.7-44.9 129.1zM385.1 92.9l-80.4 80.4c-14.3-8.4-31-13.3-48.8-13.3s-34.5 4.8-48.8 13.3L126.9 92.9C162.3 64.8 207.2 48 256 48s93.7 16.8 129.1 44.9zM173.3 304.8L92.9 385.1C64.8 349.7 48 304.8 48 256s16.8-93.7 44.9-129.1l80.4 80.4c-8.4 14.3-13.3 31-13.3 48.8s4.8 34.5 13.3 48.8zM208 256a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "lightbulb": { + "aliases": { + "unicodes": { + "composite": [ + "1f4a1" + ], + "secondary": [ + "10f0eb" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bulb", + "comic", + "electric", + "energy", + "idea", + "inspiration", + "light", + "light bulb" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0eb", + "label": "Lightbulb", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M256 384c9.6-31.9 29.5-59.1 49.2-86.2l0 0c5.2-7.1 10.4-14.2 15.4-21.4c19.8-28.5 31.4-63 31.4-100.3C352 78.8 273.2 0 176 0S0 78.8 0 176c0 37.3 11.6 71.9 31.4 100.3c5 7.2 10.2 14.3 15.4 21.4l0 0C66.5 324.9 86.4 352.1 96 384H256zM176 512c44.2 0 80-35.8 80-80V416H96v16c0 44.2 35.8 80 80 80zM96 176c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-61.9 50.1-112 112-112c8.8 0 16 7.2 16 16s-7.2 16-16 16c-44.2 0-80 35.8-80 80z" + }, + "regular": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M281.2 248.9C295.6 228.3 304 203.2 304 176c0-70.7-57.3-128-128-128S48 105.3 48 176c0 27.2 8.4 52.3 22.8 72.9c3.7 5.3 8.1 11.3 12.8 17.7l0 0c12.9 17.7 28.3 38.9 39.8 59.8c10.4 19 15.7 38.8 18.3 57.5H93c-2.2-12-5.9-23.7-11.8-34.5c-9.9-18-22.2-34.9-34.5-51.8l0 0 0 0c-5.2-7.1-10.4-14.2-15.4-21.4C11.6 247.9 0 213.3 0 176C0 78.8 78.8 0 176 0s176 78.8 176 176c0 37.3-11.6 71.9-31.4 100.3c-5 7.2-10.2 14.3-15.4 21.4l0 0 0 0c-12.3 16.8-24.6 33.7-34.5 51.8c-5.9 10.8-9.6 22.5-11.8 34.5H210.4c2.6-18.7 7.9-38.6 18.3-57.5c11.5-20.9 26.9-42.1 39.8-59.8l0 0 0 0 0 0c4.7-6.4 9-12.4 12.7-17.7zM176 128c-26.5 0-48 21.5-48 48c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16s-7.2 16-16 16zm0 384c-44.2 0-80-35.8-80-80V416H256v16c0 44.2-35.8 80-80 80z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "line": { + "changes": [ + "5.0.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3c0", + "label": "Line", + "voted": false, + "svg": { + "brands": { + "last_modified": 1672840969, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M311 196.8v81.3c0 2.1-1.6 3.7-3.7 3.7h-13c-1.3 0-2.4-.7-3-1.5l-37.3-50.3v48.2c0 2.1-1.6 3.7-3.7 3.7h-13c-2.1 0-3.7-1.6-3.7-3.7V196.9c0-2.1 1.6-3.7 3.7-3.7h12.9c1.1 0 2.4 .6 3 1.6l37.3 50.3V196.9c0-2.1 1.6-3.7 3.7-3.7h13c2.1-.1 3.8 1.6 3.8 3.5zm-93.7-3.7h-13c-2.1 0-3.7 1.6-3.7 3.7v81.3c0 2.1 1.6 3.7 3.7 3.7h13c2.1 0 3.7-1.6 3.7-3.7V196.8c0-1.9-1.6-3.7-3.7-3.7zm-31.4 68.1H150.3V196.8c0-2.1-1.6-3.7-3.7-3.7h-13c-2.1 0-3.7 1.6-3.7 3.7v81.3c0 1 .3 1.8 1 2.5c.7 .6 1.5 1 2.5 1h52.2c2.1 0 3.7-1.6 3.7-3.7v-13c0-1.9-1.6-3.7-3.5-3.7zm193.7-68.1H327.3c-1.9 0-3.7 1.6-3.7 3.7v81.3c0 1.9 1.6 3.7 3.7 3.7h52.2c2.1 0 3.7-1.6 3.7-3.7V265c0-2.1-1.6-3.7-3.7-3.7H344V247.7h35.5c2.1 0 3.7-1.6 3.7-3.7V230.9c0-2.1-1.6-3.7-3.7-3.7H344V213.5h35.5c2.1 0 3.7-1.6 3.7-3.7v-13c-.1-1.9-1.7-3.7-3.7-3.7zM512 93.4V419.4c-.1 51.2-42.1 92.7-93.4 92.6H92.6C41.4 511.9-.1 469.8 0 418.6V92.6C.1 41.4 42.2-.1 93.4 0H419.4c51.2 .1 92.7 42.1 92.6 93.4zM441.6 233.5c0-83.4-83.7-151.3-186.4-151.3s-186.4 67.9-186.4 151.3c0 74.7 66.3 137.4 155.9 149.3c21.8 4.7 19.3 12.7 14.4 42.1c-.8 4.7-3.8 18.4 16.1 10.1s107.3-63.2 146.5-108.2c27-29.7 39.9-59.8 39.9-93.1z" + } + }, + "free": [ + "brands" + ] + }, + "lines-leaning": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "canted", + "domino", + "falling", + "resilience", + "resilient", + "tipped" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e51e", + "label": "Lines Leaning", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M190.4 74.1c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2l-128 384c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l128-384zm70.9-41.7c-17.4-2.9-33.9 8.9-36.8 26.3l-64 384c-2.9 17.4 8.9 33.9 26.3 36.8s33.9-8.9 36.8-26.3l64-384c2.9-17.4-8.9-33.9-26.3-36.8zM352 32c-17.7 0-32 14.3-32 32V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "link": { + "aliases": { + "names": [ + "chain" + ], + "unicodes": { + "composite": [ + "1f517" + ], + "secondary": [ + "10f0c1" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attach", + "attachment", + "chain", + "connect", + "lin", + "link" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c1", + "label": "Link", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M562.8 267.7c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114L405.3 334.8c-31.5 31.5-82.5 31.5-114 0c-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C189.5 251.2 196 330 246 380c56.5 56.5 148 56.5 204.5 0L562.8 267.7zM43.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C57 372 57 321 88.5 289.5L200.7 177.2c31.5-31.5 82.5-31.5 114 0c27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C416.5 260.8 410 182 360 132c-56.5-56.5-148-56.5-204.5 0L43.2 244.3z" + } + }, + "free": [ + "solid" + ] + }, + "link-slash": { + "aliases": { + "names": [ + "chain-broken", + "chain-slash", + "unlink" + ], + "unicodes": { + "secondary": [ + "10f127" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attachment", + "chain", + "chain-broken", + "remove" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f127", + "label": "Link Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L489.3 358.2l90.5-90.5c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114l-96 96-31.9-25C430.9 239.6 420.1 175.1 377 132c-52.2-52.3-134.5-56.2-191.3-11.7L38.8 5.1zM239 162c30.1-14.9 67.7-9.9 92.8 15.3c20 20 27.5 48.3 21.7 74.5L239 162zM406.6 416.4L220.9 270c-2.1 39.8 12.2 80.1 42.2 110c38.9 38.9 94.4 51 143.6 36.3zm-290-228.5L60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5l61.8-61.8-50.6-39.9z" + } + }, + "free": [ + "solid" + ] + }, + "linkedin": { + "changes": [ + "1.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linkedin-square" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f08c", + "label": "LinkedIn", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z" + } + }, + "free": [ + "brands" + ] + }, + "linkedin-in": { + "changes": [ + "2.0.0", + "5.0.0", + "5.4.1", + "5.8.0", + "5.8.1" + ], + "ligatures": [], + "search": { + "terms": [ + "linkedin" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f0e1", + "label": "LinkedIn In", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z" + } + }, + "free": [ + "brands" + ] + }, + "linode": { + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2b8", + "label": "Linode", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M366.036,186.867l-59.5,36.871-.838,36.871-29.329-19.273-39.384,24.3c2.238,55.211,2.483,59.271,2.51,59.5l-97.2,65.359L127.214,285.748l108.1-62.01L195.09,197.761l-75.417,38.547L98.723,93.015,227.771,43.574,136.432,0,10.737,39.385,38.39,174.3l41.9,32.681L48.445,222.062,69.394,323.457,98.723,351.11,77.774,363.679l16.76,78.769L160.733,512c-10.8-74.842-11.658-78.641-11.725-78.773l77.925-55.3c16.759-12.57,15.083-10.894,15.083-10.894l.838,24.3,33.519,28.491-.838-77.093,46.927-33.519,26.815-18.435-2.514,36.033,25.139,17.6,6.7-74.579,58.657-43.575Z" + } + }, + "free": [ + "brands" + ] + }, + "linux": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "tux" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f17c", + "label": "Linux", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M220.8 123.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm-21.9 1.7c1.2 0 2-1.2 3-1.7 1.1-.6 3.1-.4 3.5-1.6.2-.4-.2-.9-.6-1.1-1.6-.9-3.8-.6-5.5.1-1.3.6-3.4 1.5-3.2 2.9.1 1 1.8 1.5 2.8 1.4zM420 403.8c-3.6-4-5.3-11.6-7.2-19.7-1.8-8.1-3.9-16.8-10.5-22.4-1.3-1.1-2.6-2.1-4-2.9-1.3-.8-2.7-1.5-4.1-2 9.2-27.3 5.6-54.5-3.7-79.1-11.4-30.1-31.3-56.4-46.5-74.4-17.1-21.5-33.7-41.9-33.4-72C311.1 85.4 315.7.1 234.8 0 132.4-.2 158 103.4 156.9 135.2c-1.7 23.4-6.4 41.8-22.5 64.7-18.9 22.5-45.5 58.8-58.1 96.7-6 17.9-8.8 36.1-6.2 53.3-6.5 5.8-11.4 14.7-16.6 20.2-4.2 4.3-10.3 5.9-17 8.3s-14 6-18.5 14.5c-2.1 3.9-2.8 8.1-2.8 12.4 0 3.9.6 7.9 1.2 11.8 1.2 8.1 2.5 15.7.8 20.8-5.2 14.4-5.9 24.4-2.2 31.7 3.8 7.3 11.4 10.5 20.1 12.3 17.3 3.6 40.8 2.7 59.3 12.5 19.8 10.4 39.9 14.1 55.9 10.4 11.6-2.6 21.1-9.6 25.9-20.2 12.5-.1 26.3-5.4 48.3-6.6 14.9-1.2 33.6 5.3 55.1 4.1.6 2.3 1.4 4.6 2.5 6.7v.1c8.3 16.7 23.8 24.3 40.3 23 16.6-1.3 34.1-11 48.3-27.9 13.6-16.4 36-23.2 50.9-32.2 7.4-4.5 13.4-10.1 13.9-18.3.4-8.2-4.4-17.3-15.5-29.7zM223.7 87.3c9.8-22.2 34.2-21.8 44-.4 6.5 14.2 3.6 30.9-4.3 40.4-1.6-.8-5.9-2.6-12.6-4.9 1.1-1.2 3.1-2.7 3.9-4.6 4.8-11.8-.2-27-9.1-27.3-7.3-.5-13.9 10.8-11.8 23-4.1-2-9.4-3.5-13-4.4-1-6.9-.3-14.6 2.9-21.8zM183 75.8c10.1 0 20.8 14.2 19.1 33.5-3.5 1-7.1 2.5-10.2 4.6 1.2-8.9-3.3-20.1-9.6-19.6-8.4.7-9.8 21.2-1.8 28.1 1 .8 1.9-.2-5.9 5.5-15.6-14.6-10.5-52.1 8.4-52.1zm-13.6 60.7c6.2-4.6 13.6-10 14.1-10.5 4.7-4.4 13.5-14.2 27.9-14.2 7.1 0 15.6 2.3 25.9 8.9 6.3 4.1 11.3 4.4 22.6 9.3 8.4 3.5 13.7 9.7 10.5 18.2-2.6 7.1-11 14.4-22.7 18.1-11.1 3.6-19.8 16-38.2 14.9-3.9-.2-7-1-9.6-2.1-8-3.5-12.2-10.4-20-15-8.6-4.8-13.2-10.4-14.7-15.3-1.4-4.9 0-9 4.2-12.3zm3.3 334c-2.7 35.1-43.9 34.4-75.3 18-29.9-15.8-68.6-6.5-76.5-21.9-2.4-4.7-2.4-12.7 2.6-26.4v-.2c2.4-7.6.6-16-.6-23.9-1.2-7.8-1.8-15 .9-20 3.5-6.7 8.5-9.1 14.8-11.3 10.3-3.7 11.8-3.4 19.6-9.9 5.5-5.7 9.5-12.9 14.3-18 5.1-5.5 10-8.1 17.7-6.9 8.1 1.2 15.1 6.8 21.9 16l19.6 35.6c9.5 19.9 43.1 48.4 41 68.9zm-1.4-25.9c-4.1-6.6-9.6-13.6-14.4-19.6 7.1 0 14.2-2.2 16.7-8.9 2.3-6.2 0-14.9-7.4-24.9-13.5-18.2-38.3-32.5-38.3-32.5-13.5-8.4-21.1-18.7-24.6-29.9s-3-23.3-.3-35.2c5.2-22.9 18.6-45.2 27.2-59.2 2.3-1.7.8 3.2-8.7 20.8-8.5 16.1-24.4 53.3-2.6 82.4.6-20.7 5.5-41.8 13.8-61.5 12-27.4 37.3-74.9 39.3-112.7 1.1.8 4.6 3.2 6.2 4.1 4.6 2.7 8.1 6.7 12.6 10.3 12.4 10 28.5 9.2 42.4 1.2 6.2-3.5 11.2-7.5 15.9-9 9.9-3.1 17.8-8.6 22.3-15 7.7 30.4 25.7 74.3 37.2 95.7 6.1 11.4 18.3 35.5 23.6 64.6 3.3-.1 7 .4 10.9 1.4 13.8-35.7-11.7-74.2-23.3-84.9-4.7-4.6-4.9-6.6-2.6-6.5 12.6 11.2 29.2 33.7 35.2 59 2.8 11.6 3.3 23.7.4 35.7 16.4 6.8 35.9 17.9 30.7 34.8-2.2-.1-3.2 0-4.2 0 3.2-10.1-3.9-17.6-22.8-26.1-19.6-8.6-36-8.6-38.3 12.5-12.1 4.2-18.3 14.7-21.4 27.3-2.8 11.2-3.6 24.7-4.4 39.9-.5 7.7-3.6 18-6.8 29-32.1 22.9-76.7 32.9-114.3 7.2zm257.4-11.5c-.9 16.8-41.2 19.9-63.2 46.5-13.2 15.7-29.4 24.4-43.6 25.5s-26.5-4.8-33.7-19.3c-4.7-11.1-2.4-23.1 1.1-36.3 3.7-14.2 9.2-28.8 9.9-40.6.8-15.2 1.7-28.5 4.2-38.7 2.6-10.3 6.6-17.2 13.7-21.1.3-.2.7-.3 1-.5.8 13.2 7.3 26.6 18.8 29.5 12.6 3.3 30.7-7.5 38.4-16.3 9-.3 15.7-.9 22.6 5.1 9.9 8.5 7.1 30.3 17.1 41.6 10.6 11.6 14 19.5 13.7 24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4s5.9-6.3 3.1-6.6-2.6 2.6-6 5.1c-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2s-18.7-4.8-24.9-9.7c-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z" + } + }, + "free": [ + "brands" + ] + }, + "lira-sign": { + "aliases": { + "unicodes": { + "composite": [ + "20a4" + ], + "secondary": [ + "10f195" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Lira Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f195", + "label": "Lira Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M112 160.4c0-35.5 28.8-64.4 64.4-64.4c6.9 0 13.8 1.1 20.4 3.3l81.2 27.1c16.8 5.6 34.9-3.5 40.5-20.2s-3.5-34.9-20.2-40.5L217 38.6c-13.1-4.4-26.8-6.6-40.6-6.6C105.5 32 48 89.5 48 160.4V192H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H46c-2.2 10.5-6.1 20.6-11.7 29.9L4.6 431.5c-5.9 9.9-6.1 22.2-.4 32.2S20.5 480 32 480H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H88.5l.7-1.1c11.6-19.3 18.9-40.7 21.6-62.9H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V256H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V160.4z" + } + }, + "free": [ + "solid" + ] + }, + "list": { + "aliases": { + "names": [ + "list-squares" + ], + "unicodes": { + "secondary": [ + "10f03a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f03a", + "label": "List", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M40 48C26.7 48 16 58.7 16 72v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V72c0-13.3-10.7-24-24-24H40zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM16 232v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V232c0-13.3-10.7-24-24-24H40c-13.3 0-24 10.7-24 24zM40 368c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24H88c13.3 0 24-10.7 24-24V392c0-13.3-10.7-24-24-24H40z" + } + }, + "free": [ + "solid" + ] + }, + "list-check": { + "aliases": { + "names": [ + "tasks" + ], + "unicodes": { + "secondary": [ + "10f0ae" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "downloading", + "downloads", + "loading", + "progress", + "project management", + "settings", + "to do" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ae", + "label": "List Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M152.1 38.2c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 113C-2.3 103.6-2.3 88.4 7 79s24.6-9.4 33.9 0l22.1 22.1 55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zm0 160c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 273c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22.1 22.1 55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zM224 96c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zm0 160c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H256c-17.7 0-32-14.3-32-32zM160 416c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H192c-17.7 0-32-14.3-32-32zM48 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + }, + "free": [ + "solid" + ] + }, + "list-ol": { + "aliases": { + "names": [ + "list-1-2", + "list-numeric" + ], + "unicodes": { + "secondary": [ + "10f0cb" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "numbers", + "ol", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0cb", + "label": "List Ol", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M24 56c0-13.3 10.7-24 24-24H80c13.3 0 24 10.7 24 24V176h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H40c-13.3 0-24-10.7-24-24s10.7-24 24-24H56V80H48C34.7 80 24 69.3 24 56zM86.7 341.2c-6.5-7.4-18.3-6.9-24 1.2L51.5 357.9c-7.7 10.8-22.7 13.3-33.5 5.6s-13.3-22.7-5.6-33.5l11.1-15.6c23.7-33.2 72.3-35.6 99.2-4.9c21.3 24.4 20.8 60.9-1.1 84.7L86.8 432H120c13.3 0 24 10.7 24 24s-10.7 24-24 24H32c-9.5 0-18.2-5.6-22-14.4s-2.1-18.9 4.3-25.9l72-78c5.3-5.8 5.4-14.6 .3-20.5zM224 64H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H224c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "list-ul": { + "aliases": { + "names": [ + "list-dots" + ], + "unicodes": { + "secondary": [ + "10f0ca" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ca", + "label": "List Ul", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 144a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H192zM64 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm48-208a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + }, + "free": [ + "solid" + ] + }, + "litecoin-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e1d3", + "label": "Litecoin Sign", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M128 64c0-17.7-14.3-32-32-32S64 46.3 64 64V213.6L23.2 225.2c-17 4.9-26.8 22.6-22 39.6s22.6 26.8 39.6 22L64 280.1V448c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V261.9l136.8-39.1c17-4.9 26.8-22.6 22-39.6s-22.6-26.8-39.6-22L128 195.3V64z" + } + }, + "free": [ + "solid" + ] + }, + "location-arrow": { + "aliases": { + "unicodes": { + "secondary": [ + "10f124" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "compass", + "coordinate", + "direction", + "gps", + "map", + "navigation", + "place" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f124", + "label": "Location Arrow", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M413.6 92.1c4.9-11.9 2.1-25.6-7-34.7s-22.8-11.9-34.7-7l-352 144C5.7 200.2-2.3 215.2 .6 230.2s16.1 25.8 31.4 25.8H208V432c0 15.3 10.8 28.4 25.8 31.4s30-5.1 35.8-19.3l144-352z" + } + }, + "free": [ + "solid" + ] + }, + "location-crosshairs": { + "aliases": { + "names": [ + "location" + ], + "unicodes": { + "secondary": [ + "10f601" + ] + } + }, + "changes": [ + "5.2.0", + "5.11.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinate", + "direction", + "gps", + "location", + "map", + "navigation", + "place", + "where" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f601", + "label": "Location Crosshairs", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 0c17.7 0 32 14.3 32 32V66.7C368.4 80.1 431.9 143.6 445.3 224H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H445.3C431.9 368.4 368.4 431.9 288 445.3V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.3C143.6 431.9 80.1 368.4 66.7 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H66.7C80.1 143.6 143.6 80.1 224 66.7V32c0-17.7 14.3-32 32-32zM128 256a128 128 0 1 0 256 0 128 128 0 1 0 -256 0zm128-80a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + }, + "free": [ + "solid" + ] + }, + "location-dot": { + "aliases": { + "names": [ + "map-marker-alt" + ], + "unicodes": { + "secondary": [ + "10f3c5" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3c5", + "label": "Location Dot", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + }, + "free": [ + "solid" + ] + }, + "location-pin": { + "aliases": { + "names": [ + "map-marker" + ], + "unicodes": { + "secondary": [ + "10f041" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f041", + "label": "Location Pin", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 192c0 87.4-117 243-168.3 307.2c-12.3 15.3-35.1 15.3-47.4 0C117 435 0 279.4 0 192C0 86 86 0 192 0S384 86 384 192z" + } + }, + "free": [ + "solid" + ] + }, + "location-pin-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "lockdown", + "map", + "quarantine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e51f", + "label": "Location Pin Lock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M215.7 499.2c11-13.8 25.1-31.7 40.3-52.3V352c0-23.7 12.9-44.4 32-55.4V272c0-55.6 40.5-101.7 93.6-110.5C367 70 287.7 0 192 0C86 0 0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 128a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM400 240c17.7 0 32 14.3 32 32v48H368V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H480c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "lock": { + "aliases": { + "unicodes": { + "composite": [ + "1f512" + ], + "secondary": [ + "10f023" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "closed", + "lock", + "locked", + "open", + "password", + "private", + "protect", + "security" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f023", + "label": "Lock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M144 144v48H304V144c0-44.2-35.8-80-80-80s-80 35.8-80 80zM80 192V144C80 64.5 144.5 0 224 0s144 64.5 144 144v48h16c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80z" + } + }, + "free": [ + "solid" + ] + }, + "lock-open": { + "aliases": { + "unicodes": { + "secondary": [ + "10f3c1" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "open", + "password", + "private", + "protect", + "security", + "unlock" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3c1", + "label": "Lock Open", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M352 144c0-44.2 35.8-80 80-80s80 35.8 80 80v48c0 17.7 14.3 32 32 32s32-14.3 32-32V144C576 64.5 511.5 0 432 0S288 64.5 288 144v48H64c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V256c0-35.3-28.7-64-64-64H352V144z" + } + }, + "free": [ + "solid" + ] + }, + "locust": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "horde", + "infestation", + "locust", + "plague", + "swarm" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e520", + "label": "Locust", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M312 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h16c98.7 0 180.6 71.4 197 165.4c-9-3.5-18.8-5.4-29-5.4H431.8l-41.8-97.5c-3.4-7.9-10.8-13.4-19.3-14.4s-17 2.7-22.1 9.6l-40.9 55.5-21.7-50.7c-3.3-7.8-10.5-13.2-18.9-14.3s-16.7 2.3-22 8.9l-240 304c-8.2 10.4-6.4 25.5 4 33.7s25.5 6.4 33.7-4l79.4-100.5 43 16.4-40.5 55c-7.9 10.7-5.6 25.7 5.1 33.6s25.7 5.6 33.6-5.1L215.1 400h74.5l-29.3 42.3c-7.5 10.9-4.8 25.8 6.1 33.4s25.8 4.8 33.4-6.1L348 400h80.4l38.8 67.9c6.6 11.5 21.2 15.5 32.7 8.9s15.5-21.2 8.9-32.7L483.6 400H496c44.1 0 79.8-35.7 80-79.7c0-.1 0-.2 0-.3V280C576 143 465 32 328 32H312zm50.5 168l17.1 40H333l29.5-40zm-87.7 38.1l-1.4 1.9H225.1l32.7-41.5 16.9 39.5zM88.8 240C57.4 240 32 265.4 32 296.8c0 15.5 6.3 30 16.9 40.4L126.7 240H88.8zM496 288a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + }, + "free": [ + "solid" + ] + }, + "lungs": { + "aliases": { + "unicodes": { + "composite": [ + "1fac1" + ], + "secondary": [ + "10f604" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air", + "breath", + "covid-19", + "exhalation", + "inhalation", + "lungs", + "organ", + "respiration", + "respiratory" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f604", + "label": "Lungs", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0c17.7 0 32 14.3 32 32V164.1c0 16.4 8.4 31.7 22.2 40.5l9.8 6.2V165.3C384 127 415 96 453.3 96c21.7 0 42.8 10.2 55.8 28.8c15.4 22.1 44.3 65.4 71 116.9c26.5 50.9 52.4 112.5 59.6 170.3c.2 1.3 .2 2.6 .2 4v7c0 49.1-39.8 89-89 89c-7.3 0-14.5-.9-21.6-2.7l-72.7-18.2C414 480.5 384 442.1 384 398V325l90.5 57.6c7.5 4.7 17.3 2.5 22.1-4.9s2.5-17.3-4.9-22.1L384 287.1v-.4l-44.1-28.1c-7.3-4.6-13.9-10.1-19.9-16.1c-5.9 6-12.6 11.5-19.9 16.1L256 286.7 161.2 347l-13.5 8.6c0 0 0 0-.1 0c-7.4 4.8-9.6 14.6-4.8 22.1c4.7 7.5 14.6 9.7 22.1 4.9l91.1-58V398c0 44.1-30 82.5-72.7 93.1l-72.7 18.2c-7.1 1.8-14.3 2.7-21.6 2.7c-49.1 0-89-39.8-89-89v-7c0-1.3 .1-2.7 .2-4c7.2-57.9 33.1-119.4 59.6-170.3c26.8-51.5 55.6-94.8 71-116.9c13-18.6 34-28.8 55.8-28.8C225 96 256 127 256 165.3v45.5l9.8-6.2c13.8-8.8 22.2-24.1 22.2-40.5V32c0-17.7 14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "lungs-virus": { + "aliases": { + "unicodes": { + "secondary": [ + "10e067" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "coronavirus", + "covid-19", + "flu", + "infection", + "pandemic", + "respiratory", + "sick" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e067", + "label": "Lungs Virus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0c17.7 0 32 14.3 32 32V156.2c-8.5-7.6-19.7-12.2-32-12.2s-23.5 4.6-32 12.2V32c0-17.7 14.3-32 32-32zM444.5 195.5c-16.4-16.4-41.8-18.5-60.5-6.1V165.3C384 127 415 96 453.3 96c21.7 0 42.8 10.2 55.8 28.8c15.4 22.1 44.3 65.4 71 116.9c26.5 50.9 52.4 112.5 59.6 170.3c.2 1.3 .2 2.6 .2 4v7c0 49.1-39.8 89-89 89c-7.3 0-14.5-.9-21.6-2.7l-72.7-18.2c-20.9-5.2-38.7-17.1-51.5-32.9c14 1.5 28.5-3 39.2-13.8l-22.6-22.6 22.6 22.6c18.7-18.7 18.7-49.1 0-67.9c-1.1-1.1-1.4-2-1.5-2.5c-.1-.8-.1-1.8 .4-2.9s1.2-1.9 1.8-2.3c.5-.3 1.3-.8 2.9-.8c26.5 0 48-21.5 48-48s-21.5-48-48-48c-1.6 0-2.4-.4-2.9-.8c-.6-.4-1.3-1.2-1.8-2.3s-.5-2.2-.4-2.9c.1-.6 .4-1.4 1.5-2.5c18.7-18.7 18.7-49.1 0-67.9zM421.8 421.8c-6.2 6.2-16.4 6.2-22.6 0C375.9 398.5 336 415 336 448c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C241.5 375.9 225 336 192 336c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C264.1 241.5 304 225 304 192c0-8.8 7.2-16 16-16s16 7.2 16 16c0 33 39.9 49.5 63.2 26.2c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C398.5 264.1 415 304 448 304c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2c6.2 6.2 6.2 16.4 0 22.6zM183.3 491.2l-72.7 18.2c-7.1 1.8-14.3 2.7-21.6 2.7c-49.1 0-89-39.8-89-89v-7c0-1.3 .1-2.7 .2-4c7.2-57.9 33.1-119.4 59.6-170.3c26.8-51.5 55.6-94.8 71-116.9c13-18.6 34-28.8 55.8-28.8C225 96 256 127 256 165.3v24.1c-18.6-12.4-44-10.3-60.5 6.1c-18.7 18.7-18.7 49.1 0 67.9c1.1 1.1 1.4 2 1.5 2.5c.1 .8 .1 1.8-.4 2.9s-1.2 1.9-1.8 2.3c-.5 .3-1.3 .8-2.9 .8c-26.5 0-48 21.5-48 48s21.5 48 48 48c1.6 0 2.4 .4 2.9 .8c.6 .4 1.3 1.2 1.8 2.3s.5 2.2 .4 2.9c-.1 .6-.4 1.4-1.5 2.5c-18.7 18.7-18.7 49.1 0 67.9c10.7 10.7 25.3 15.3 39.2 13.8c-12.8 15.9-30.6 27.7-51.5 32.9zM296 320a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm72 32a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + }, + "free": [ + "solid" + ] + }, + "lyft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3c3", + "label": "lyft", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z" + } + }, + "free": [ + "brands" + ] + }, + "m": { + "aliases": { + "unicodes": { + "composite": [ + "6d" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter M", + "Latin Small Letter M", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "4d", + "label": "M", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M22.7 33.4c13.5-4.1 28.1 1.1 35.9 12.9L224 294.3 389.4 46.2c7.8-11.7 22.4-17 35.9-12.9S448 49.9 448 64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V169.7L250.6 369.8c-5.9 8.9-15.9 14.2-26.6 14.2s-20.7-5.3-26.6-14.2L64 169.7V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 49.9 9.2 37.5 22.7 33.4z" + } + }, + "free": [ + "solid" + ] + }, + "magento": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3c4", + "label": "Magento", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6.1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z" + } + }, + "free": [ + "brands" + ] + }, + "magnet": { + "aliases": { + "unicodes": { + "composite": [ + "1f9f2" + ], + "secondary": [ + "10f076" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Attract", + "attraction", + "horseshoe", + "lodestone", + "magnet", + "magnetic", + "tool" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f076", + "label": "Magnet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 160v96C0 379.7 100.3 480 224 480s224-100.3 224-224V160H320v96c0 53-43 96-96 96s-96-43-96-96V160H0zm0-32H128V64c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v64zm320 0H448V64c0-17.7-14.3-32-32-32H352c-17.7 0-32 14.3-32 32v64z" + } + }, + "free": [ + "solid" + ] + }, + "magnifying-glass": { + "aliases": { + "names": [ + "search" + ], + "unicodes": { + "composite": [ + "1f50d" + ], + "secondary": [ + "10f002" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "find", + "glass", + "magnify", + "magnifying", + "magnifying glass tilted left", + "preview", + "search", + "tool", + "zoom" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f002", + "label": "Magnifying Glass", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z" + } + }, + "free": [ + "solid" + ] + }, + "magnifying-glass-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "find", + "next", + "search" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e521", + "label": "Magnifying Glass Arrow Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM241 119c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l31 31H120c-13.3 0-24 10.7-24 24s10.7 24 24 24H238.1l-31 31c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9l-72-72z" + } + }, + "free": [ + "solid" + ] + }, + "magnifying-glass-chart": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "analysis", + "chart" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e522", + "label": "Magnifying Glass Chart", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zm-312 8v64c0 13.3 10.7 24 24 24s24-10.7 24-24l0-64c0-13.3-10.7-24-24-24s-24 10.7-24 24zm80-96V280c0 13.3 10.7 24 24 24s24-10.7 24-24V120c0-13.3-10.7-24-24-24s-24 10.7-24 24zm80 64v96c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24s-24 10.7-24 24z" + } + }, + "free": [ + "solid" + ] + }, + "magnifying-glass-dollar": { + "aliases": { + "names": [ + "search-dollar" + ], + "unicodes": { + "secondary": [ + "10f688" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "find", + "magnify", + "money", + "preview", + "zoom" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f688", + "label": "Magnifying Glass Dollar", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM228 104c0-11-9-20-20-20s-20 9-20 20v14c-7.6 1.7-15.2 4.4-22.2 8.5c-13.9 8.3-25.9 22.8-25.8 43.9c.1 20.3 12 33.1 24.7 40.7c11 6.6 24.7 10.8 35.6 14l1.7 .5c12.6 3.8 21.8 6.8 28 10.7c5.1 3.2 5.8 5.4 5.9 8.2c.1 5-1.8 8-5.9 10.5c-5 3.1-12.9 5-21.4 4.7c-11.1-.4-21.5-3.9-35.1-8.5c-2.3-.8-4.7-1.6-7.2-2.4c-10.5-3.5-21.8 2.2-25.3 12.6s2.2 21.8 12.6 25.3c1.9 .6 4 1.3 6.1 2.1l0 0 0 0c8.3 2.9 17.9 6.2 28.2 8.4V312c0 11 9 20 20 20s20-9 20-20V298.2c8-1.7 16-4.5 23.2-9c14.3-8.9 25.1-24.1 24.8-45c-.3-20.3-11.7-33.4-24.6-41.6c-11.5-7.2-25.9-11.6-37.1-15l-.7-.2c-12.8-3.9-21.9-6.7-28.3-10.5c-5.2-3.1-5.3-4.9-5.3-6.7c0-3.7 1.4-6.5 6.2-9.3c5.4-3.2 13.6-5.1 21.5-5c9.6 .1 20.2 2.2 31.2 5.2c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-6.5-1.7-13.7-3.4-21.1-4.7V104z" + } + }, + "free": [ + "solid" + ] + }, + "magnifying-glass-location": { + "aliases": { + "names": [ + "search-location" + ], + "unicodes": { + "secondary": [ + "10f689" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "find", + "magnify", + "preview", + "zoom" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f689", + "label": "Magnifying Glass Location", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM288 176c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 48.8 46.5 111.6 68.6 138.6c6 7.3 16.8 7.3 22.7 0c22.1-27 68.6-89.8 68.6-138.6zm-112 0a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + }, + "free": [ + "solid" + ] + }, + "magnifying-glass-minus": { + "aliases": { + "names": [ + "search-minus" + ], + "unicodes": { + "secondary": [ + "10f010" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "minify", + "negative", + "smaller", + "zoom", + "zoom out" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f010", + "label": "Magnifying Glass Minus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM136 184c-13.3 0-24 10.7-24 24s10.7 24 24 24H280c13.3 0 24-10.7 24-24s-10.7-24-24-24H136z" + } + }, + "free": [ + "solid" + ] + }, + "magnifying-glass-plus": { + "aliases": { + "names": [ + "search-plus" + ], + "unicodes": { + "secondary": [ + "10f00e" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "magnify", + "positive", + "zoom", + "zoom in" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f00e", + "label": "Magnifying Glass Plus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM184 296c0 13.3 10.7 24 24 24s24-10.7 24-24V232h64c13.3 0 24-10.7 24-24s-10.7-24-24-24H232V120c0-13.3-10.7-24-24-24s-24 10.7-24 24v64H120c-13.3 0-24 10.7-24 24s10.7 24 24 24h64v64z" + } + }, + "free": [ + "solid" + ] + }, + "mailchimp": { + "changes": [ + "5.1.0", + "5.7.0", + "5.8.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f59e", + "label": "Mailchimp", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M330.61 243.52a36.15 36.15 0 0 1 9.3 0c1.66-3.83 1.95-10.43.45-17.61-2.23-10.67-5.25-17.14-11.48-16.13s-6.47 8.74-4.24 19.42c1.26 6 3.49 11.14 6 14.32zM277.05 252c4.47 2 7.2 3.26 8.28 2.13 1.89-1.94-3.48-9.39-12.12-13.09a31.44 31.44 0 0 0-30.61 3.68c-3 2.18-5.81 5.22-5.41 7.06.85 3.74 10-2.71 22.6-3.48 7-.44 12.8 1.75 17.26 3.71zm-9 5.13c-9.07 1.42-15 6.53-13.47 10.1.9.34 1.17.81 5.21-.81a37 37 0 0 1 18.72-1.95c2.92.34 4.31.52 4.94-.49 1.46-2.22-5.71-8-15.39-6.85zm54.17 17.1c3.38-6.87-10.9-13.93-14.3-7s10.92 13.88 14.32 6.97zm15.66-20.47c-7.66-.13-7.95 15.8-.26 15.93s7.98-15.81.28-15.96zm-218.79 78.9c-1.32.31-6 1.45-8.47-2.35-5.2-8 11.11-20.38 3-35.77-9.1-17.47-27.82-13.54-35.05-5.54-8.71 9.6-8.72 23.54-5 24.08 4.27.57 4.08-6.47 7.38-11.63a12.83 12.83 0 0 1 17.85-3.72c11.59 7.59 1.37 17.76 2.28 28.62 1.39 16.68 18.42 16.37 21.58 9a2.08 2.08 0 0 0-.2-2.33c.03.89.68-1.3-3.35-.39zm299.72-17.07c-3.35-11.73-2.57-9.22-6.78-20.52 2.45-3.67 15.29-24-3.07-43.25-10.4-10.92-33.9-16.54-41.1-18.54-1.5-11.39 4.65-58.7-21.52-83 20.79-21.55 33.76-45.29 33.73-65.65-.06-39.16-48.15-51-107.42-26.47l-12.55 5.33c-.06-.05-22.71-22.27-23.05-22.57C169.5-18-41.77 216.81 25.78 273.85l14.76 12.51a72.49 72.49 0 0 0-4.1 33.5c3.36 33.4 36 60.42 67.53 60.38 57.73 133.06 267.9 133.28 322.29 3 1.74-4.47 9.11-24.61 9.11-42.38s-10.09-25.27-16.53-25.27zm-316 48.16c-22.82-.61-47.46-21.15-49.91-45.51-6.17-61.31 74.26-75.27 84-12.33 4.54 29.64-4.67 58.49-34.12 57.81zM84.3 249.55C69.14 252.5 55.78 261.09 47.6 273c-4.88-4.07-14-12-15.59-15-13.01-24.85 14.24-73 33.3-100.21C112.42 90.56 186.19 39.68 220.36 48.91c5.55 1.57 23.94 22.89 23.94 22.89s-34.15 18.94-65.8 45.35c-42.66 32.85-74.89 80.59-94.2 132.4zM323.18 350.7s-35.74 5.3-69.51-7.07c6.21-20.16 27 6.1 96.4-13.81 15.29-4.38 35.37-13 51-25.35a102.85 102.85 0 0 1 7.12 24.28c3.66-.66 14.25-.52 11.44 18.1-3.29 19.87-11.73 36-25.93 50.84A106.86 106.86 0 0 1 362.55 421a132.45 132.45 0 0 1-20.34 8.58c-53.51 17.48-108.3-1.74-126-43a66.33 66.33 0 0 1-3.55-9.74c-7.53-27.2-1.14-59.83 18.84-80.37 1.23-1.31 2.48-2.85 2.48-4.79a8.45 8.45 0 0 0-1.92-4.54c-7-10.13-31.19-27.4-26.33-60.83 3.5-24 24.49-40.91 44.07-39.91l5 .29c8.48.5 15.89 1.59 22.88 1.88 11.69.5 22.2-1.19 34.64-11.56 4.2-3.5 7.57-6.54 13.26-7.51a17.45 17.45 0 0 1 13.6 2.24c10 6.64 11.4 22.73 11.92 34.49.29 6.72 1.1 23 1.38 27.63.63 10.67 3.43 12.17 9.11 14 3.19 1.05 6.15 1.83 10.51 3.06 13.21 3.71 21 7.48 26 12.31a16.38 16.38 0 0 1 4.74 9.29c1.56 11.37-8.82 25.4-36.31 38.16-46.71 21.68-93.68 14.45-100.48 13.68-20.15-2.71-31.63 23.32-19.55 41.15 22.64 33.41 122.4 20 151.37-21.35.69-1 .12-1.59-.73-1-41.77 28.58-97.06 38.21-128.46 26-4.77-1.85-14.73-6.44-15.94-16.67 43.6 13.49 71 .74 71 .74s2.03-2.79-.56-2.53zm-68.47-5.7zm-83.4-187.5c16.74-19.35 37.36-36.18 55.83-45.63a.73.73 0 0 1 1 1c-1.46 2.66-4.29 8.34-5.19 12.65a.75.75 0 0 0 1.16.79c11.49-7.83 31.48-16.22 49-17.3a.77.77 0 0 1 .52 1.38 41.86 41.86 0 0 0-7.71 7.74.75.75 0 0 0 .59 1.19c12.31.09 29.66 4.4 41 10.74.76.43.22 1.91-.64 1.72-69.55-15.94-123.08 18.53-134.5 26.83a.76.76 0 0 1-1-1.12z" + } + }, + "free": [ + "brands" + ] + }, + "manat-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Manat Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e1d5", + "label": "Manat Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 32c-17.7 0-32 14.3-32 32V98.7C69.2 113.9 0 192.9 0 288V448c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-59.6 40.8-109.8 96-124V448c0 17.7 14.3 32 32 32s32-14.3 32-32V164c55.2 14.2 96 64.3 96 124V448c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-95.1-69.2-174.1-160-189.3V64c0-17.7-14.3-32-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "mandalorian": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f50f", + "label": "Mandalorian", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M232.27 511.89c-1-3.26-1.69-15.83-1.39-24.58.55-15.89 1-24.72 1.4-28.76.64-6.2 2.87-20.72 3.28-21.38.6-1 .4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-1-11.43a92.38 92.38 0 0 0-.34-12.71c-2-13-3.46-27.7-3.25-33.9s.43-7.15 2.06-9.67c3.05-4.71 6.51-14 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74a109.54 109.54 0 0 1 4.42-15.05c2.27-6.25 2.49-15.39.37-15.39-.3 0-1.38 1.22-2.41 2.71s-4.76 4.8-8.29 7.36c-8.37 6.08-11.7 9.39-12.66 12.58s-1 7.23-.16 7.76c.34.21 1.29 2.4 2.11 4.88a28.83 28.83 0 0 1 .72 15.36c-.39 1.77-1 5.47-1.46 8.23s-1 6.46-1.25 8.22a9.85 9.85 0 0 1-1.55 4.26c-1 1-1.14.91-2.05-.53a14.87 14.87 0 0 1-1.44-4.75c-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-1-21a14.24 14.24 0 0 0 1.67-4.61c0-2.39-2.2-5.32-7.41-9.89-7-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3-2.6 9.11-3 22l-.34 12.19 2 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56s.95 22.75 2 24.71c.36.66.51 1.35.34 1.52s.41 2.09 1.29 4.27a38.14 38.14 0 0 1 2.06 9 91 91 0 0 0 1.71 10.37c2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 58-2 61.21-.12 2-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64.73-8.07-4.91-12.52-9.49-3.75-3.87-4-4.79-2.83-9.95.7-3 2.26-18.29 3.33-32.62.36-4.78.81-10.5 1-12.71.83-9.37 1.66-20.35 2.61-34.78.56-8.46 1.33-16.44 1.72-17.73s.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6-6.07-11.84-12.3-12.91-13.85l-1.95-2.81.75-10.9c1.09-15.71 1.1-48.57 0-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-11-1.9-23.85-14.55-6.15-6-12.34-12-13.75-13.19-2.81-2.42-2.79-2-.56-9.63l1.35-4.65-1.69-3a32.22 32.22 0 0 0-2.59-4.07c-1.33-1.51-5.5-10.89-6-13.49a4.24 4.24 0 0 1 .87-3.9c2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1 9.41 5 1.34 4.79 1.37 9.79.1 18.55a101.2 101.2 0 0 0-1 11.11c0 4 .19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52a18.67 18.67 0 0 1 4.72 2.85c11.17 10.72 18.62 16.18 22.95 16.85 5.18.8 8 4.54 10 13.39 1.31 5.65 4 11.14 5.46 11.14a9.38 9.38 0 0 0 3.33-1.39c2-1.22 2.25-1.73 2.25-4.18a132.88 132.88 0 0 0-2-17.84c-.37-1.66-.78-4.06-.93-5.35s-.61-3.85-1-5.69c-2.55-11.16-3.65-15.46-4.1-16-1.55-2-4.08-10.2-4.93-15.92-1.64-11.11-4-14.23-12.91-17.39A43.15 43.15 0 0 1 165.24 78c-1.15-1-4-3.22-6.35-5.06s-4.41-3.53-4.6-3.76a22.7 22.7 0 0 0-2.69-2c-6.24-4.22-8.84-7-11.26-12l-2.44-5-.22-13-.22-13 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2 8.53-.19 10.12 0 11.66 1.56s1.36 6.4-.29 8.5a6.66 6.66 0 0 0-1.34 2.32c0 .58-2.61 4.91-5.42 9a30.39 30.39 0 0 0-2.37 6.82c20.44 13.39 21.55 3.77 14.07 29L194 66.92c3.11-8.66 6.47-17.26 8.61-26.22.29-7.63-12-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15.88.22 4.16-.35 7.37-1.28a45.3 45.3 0 0 1 7.55-1.68 29.57 29.57 0 0 0 6-1.29c3.65-1.11 4.5-1.17 6.35-.4a29.54 29.54 0 0 0 5.82 1.36 18.18 18.18 0 0 1 6 1.91 22.67 22.67 0 0 0 5 2.17c2.51.68 3 .57 7.05-1.67l4.35-2.4L268.32 5c10.44-.4 10.81-.47 15.26-2.68L288.16 0l2.46 1.43c1.76 1 3.14 2.73 4.85 6 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39a35.76 35.76 0 0 0 2.1 5.91 13.55 13.55 0 0 1 1.31 4c.31 4.33 0 5.3-2.41 6.92-2.17 1.47-7 7.91-7 9.34a14.77 14.77 0 0 1-1.07 3c-5 11.51-6.76 13.56-14.26 17-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26a18.33 18.33 0 0 1-4.09 3.71 13.62 13.62 0 0 0-4.38 4.78 5.89 5.89 0 0 1-2.49 2.91 6.88 6.88 0 0 0-2.45 1.71 67.62 67.62 0 0 1-7 5.38c-3.33 2.34-6.87 5-7.87 6A7.27 7.27 0 0 1 224 100a5.76 5.76 0 0 0-2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6a36.45 36.45 0 0 0 1.42 5.88c1.32 3.8 1.31 7.86 0 10.57s-.89 6.65 1.35 9.59c2 2.63 2.16 4.56.71 8.84a33.45 33.45 0 0 0-1.06 8.91c0 4.88.22 6.28 1.46 8.38s1.82 2.48 3.24 2.32c2-.23 2.3-1.05 4.71-12.12 2.18-10 3.71-11.92 13.76-17.08 2.94-1.51 7.46-4 10-5.44s6.79-3.69 9.37-4.91a40.09 40.09 0 0 0 15.22-11.67c7.11-8.79 10-16.22 12.85-33.3a18.37 18.37 0 0 1 2.86-7.73 20.39 20.39 0 0 0 2.89-7.31c1-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09.11 8.42c.06 4.63.47 9.53.92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8-2.18 3.11-6.46 13-8.76 20.26l-2.29 7.22-7 6.49c-3.83 3.57-8 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 10a14.62 14.62 0 0 0 1.59 7.26 42 42 0 0 1 2.09 4.83 9.28 9.28 0 0 0 1.57 2.89c1.4 1.59 1.92 16.12.83 23.22-.68 4.48-3.63 12-4.7 12-1.79 0-4.06 9.27-5.07 20.74-.18 2-.62 5.94-1 8.7s-1 10-1.35 16.05c-.77 12.22-.19 18.77 2 23.15 3.41 6.69.52 12.69-11 22.84l-4 3.49.07 5.19a40.81 40.81 0 0 0 1.14 8.87c4.61 16 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27.63 44.15a61.31 61.31 0 0 1 1.08 7c.17 2 .66 5.33 1.08 7.36.47 2.26.78 11 .79 22.74v19.06l-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3-17.66-3-21.3 0-4.23 1-6 5.28-9.13s4.86-3.14 5.48-.72c.28 1.1 1.45 5.62 2.6 10 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-1 7.07-1.17 12.39-1 28.43.17 19.4-.64 35.73-2 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-71-37.58a101 101 0 0 1-1.73-10.79 100.5 100.5 0 0 0-1.73-10.79 37.53 37.53 0 0 1-1-6.49c-.31-3.19-.91-7.46-1.33-9.48-1-4.79-3.35-19.35-3.42-21.07 0-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29 1-1 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83s-.49 9.87-.67 11.71-.61 9.36-.94 16.72c-.79 17.41-1.94 31.29-2.65 32a.62.62 0 0 1-1-.14zm-87.18-266.59c21.07 12.79 17.84 14.15 28.49 17.66 13 4.29 18.87 7.13 23.15 16.87C111.6 233.28 86.25 255 78.55 268c-31 52-6 101.59 62.75 87.21-14.18 29.23-78 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.66zm210.79 179c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-68 3-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.61 92.46 149.36 4.3 70.64-78.7 91.18-105.29 61.71z" + } + }, + "free": [ + "brands" + ] + }, + "map": { + "aliases": { + "unicodes": { + "composite": [ + "1f5fa", + "f278" + ], + "secondary": [ + "10f279" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel", + "world", + "world map" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f279", + "label": "Map", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 476.1L192 421.2V35.9L384 90.8V476.1zm32-1.2V88.4L543.1 37.5c15.8-6.3 32.9 5.3 32.9 22.3V394.6c0 9.8-6 18.6-15.1 22.3L416 474.8zM15.1 95.1L160 37.2V423.6L32.9 474.5C17.1 480.8 0 469.2 0 452.2V117.4c0-9.8 6-18.6 15.1-22.3z" + }, + "regular": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M565.6 36.2C572.1 40.7 576 48.1 576 56V392c0 10-6.2 18.9-15.5 22.4l-168 64c-5.2 2-10.9 2.1-16.1 .3L192.5 417.5l-160 61c-7.4 2.8-15.7 1.8-22.2-2.7S0 463.9 0 456V120c0-10 6.2-18.9 15.5-22.4l168-64c5.2-2 10.9-2.1 16.1-.3L383.5 94.5l160-61c7.4-2.8 15.7-1.8 22.2 2.7zM48 136.5V421.2l120-45.7V90.8L48 136.5zM360 422.7V137.3l-144-48V374.7l144 48zm48-1.5l120-45.7V90.8L408 136.5V421.2z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "map-location": { + "aliases": { + "names": [ + "map-marked" + ], + "unicodes": { + "secondary": [ + "10f59f" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f59f", + "label": "Map Location", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M302.8 312C334.9 271.9 408 174.6 408 120C408 53.7 354.3 0 288 0S168 53.7 168 120c0 54.6 73.1 151.9 105.2 192c7.7 9.6 22 9.6 29.6 0zM416 503l144.9-58c9.1-3.6 15.1-12.5 15.1-22.3V152c0-17-17.1-28.6-32.9-22.3l-116 46.4c-.5 1.2-1 2.5-1.5 3.7c-2.9 6.8-6.1 13.7-9.6 20.6V503zM15.1 187.3C6 191 0 199.8 0 209.6V480.4c0 17 17.1 28.6 32.9 22.3L160 451.8V200.4c-3.5-6.9-6.7-13.8-9.6-20.6c-5.6-13.2-10.4-27.4-12.8-41.5l-122.6 49zM384 255c-20.5 31.3-42.3 59.6-56.2 77c-20.5 25.6-59.1 25.6-79.6 0c-13.9-17.4-35.7-45.7-56.2-77V449.4l192 54.9V255z" + } + }, + "free": [ + "solid" + ] + }, + "map-location-dot": { + "aliases": { + "names": [ + "map-marked-alt" + ], + "unicodes": { + "secondary": [ + "10f5a0" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "navigation", + "paper", + "pin", + "place", + "point of interest", + "position", + "route", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5a0", + "label": "Map Location Dot", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M408 120c0 54.6-73.1 151.9-105.2 192c-7.7 9.6-22 9.6-29.6 0C241.1 271.9 168 174.6 168 120C168 53.7 221.7 0 288 0s120 53.7 120 120zm8 80.4c3.5-6.9 6.7-13.8 9.6-20.6c.5-1.2 1-2.5 1.5-3.7l116-46.4C558.9 123.4 576 135 576 152V422.8c0 9.8-6 18.6-15.1 22.3L416 503V200.4zM137.6 138.3c2.4 14.1 7.2 28.3 12.8 41.5c2.9 6.8 6.1 13.7 9.6 20.6V451.8L32.9 502.7C17.1 509 0 497.4 0 480.4V209.6c0-9.8 6-18.6 15.1-22.3l122.6-49zM327.8 332c13.9-17.4 35.7-45.7 56.2-77V504.3L192 449.4V255c20.5 31.3 42.3 59.6 56.2 77c20.5 25.6 59.1 25.6 79.6 0zM288 152a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + }, + "free": [ + "solid" + ] + }, + "map-pin": { + "aliases": { + "unicodes": { + "composite": [ + "1f4cd" + ], + "secondary": [ + "10f276" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "agree", + "coordinates", + "destination", + "gps", + "localize", + "location", + "map", + "marker", + "navigation", + "pin", + "place", + "position", + "pushpin", + "round pushpin", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f276", + "label": "Map Pin", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M32 144a144 144 0 1 1 288 0A144 144 0 1 1 32 144zM176 80c8.8 0 16-7.2 16-16s-7.2-16-16-16c-53 0-96 43-96 96c0 8.8 7.2 16 16 16s16-7.2 16-16c0-35.3 28.7-64 64-64zM144 480V317.1c10.4 1.9 21.1 2.9 32 2.9s21.6-1 32-2.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "markdown": { + "changes": [ + "5.2.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f60f", + "label": "Markdown", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M593.8 59.1H46.2C20.7 59.1 0 79.8 0 105.2v301.5c0 25.5 20.7 46.2 46.2 46.2h547.7c25.5 0 46.2-20.7 46.1-46.1V105.2c0-25.4-20.7-46.1-46.2-46.1zM338.5 360.6H277v-120l-61.5 76.9-61.5-76.9v120H92.3V151.4h61.5l61.5 76.9 61.5-76.9h61.5v209.2zm135.3 3.1L381.5 256H443V151.4h61.5V256H566z" + } + }, + "free": [ + "brands" + ] + }, + "marker": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5a1" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "sharpie", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5a1", + "label": "Marker", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M481 31C445.1-4.8 386.9-4.8 351 31l-15 15L322.9 33C294.8 4.9 249.2 4.9 221.1 33L135 119c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0L255 66.9c9.4-9.4 24.6-9.4 33.9 0L302.1 80 186.3 195.7 316.3 325.7 481 161c35.9-35.9 35.9-94.1 0-129.9zM293.7 348.3L163.7 218.3 99.5 282.5c-48 48-80.8 109.2-94.1 175.8l-5 25c-1.6 7.9 .9 16 6.6 21.7s13.8 8.1 21.7 6.6l25-5c66.6-13.3 127.8-46.1 175.8-94.1l64.2-64.2z" + } + }, + "free": [ + "solid" + ] + }, + "mars": { + "aliases": { + "unicodes": { + "composite": [ + "2642" + ], + "secondary": [ + "10f222" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gender", + "male", + "male sign", + "man" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f222", + "label": "Mars", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M289.8 46.8c3.7-9 12.5-14.8 22.2-14.8H424c13.3 0 24 10.7 24 24V168c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-33.4-33.4L321 204.2c19.5 28.4 31 62.7 31 99.8c0 97.2-78.8 176-176 176S0 401.2 0 304s78.8-176 176-176c37 0 71.4 11.4 99.8 31l52.6-52.6L295 73c-6.9-6.9-8.9-17.2-5.2-26.2zM400 80l0 0h0v0zM176 416a112 112 0 1 0 0-224 112 112 0 1 0 0 224z" + } + }, + "free": [ + "solid" + ] + }, + "mars-and-venus": { + "aliases": { + "unicodes": { + "composite": [ + "26a5" + ], + "secondary": [ + "10f224" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Male and Female Sign", + "female", + "gender", + "intersex", + "male", + "transgender" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f224", + "label": "Mars And Venus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M321.8 14.8C325.5 5.8 334.3 0 344 0H456c13.3 0 24 10.7 24 24V136c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39-24.7 24.7C391 163.3 400 192.6 400 224c0 80.2-59.1 146.7-136.1 158.2c0 .6 .1 1.2 .1 1.8v.4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .3 .4 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3h24c13.3 0 24 10.7 24 24s-10.7 24-24 24H264v.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0l-24 0-24 0v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V486 486v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V485 485v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V484v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V483v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V481v-.1-.1-.1-.1-.1-.1-.1-.1V480v-.1-.1-.1-.1-.1-.1-.1V479v-.1-.1-.1-.1-.1-.1-.1V478v-.1-.1-.1-.1-.1-.1V477v-.1-.1-.1-.1-.1-.1V476v-.1-.1-.1-.1-.1-.1V475v-.1-.2-.2-.2-.2-.2V474v-.2-.2-.2-.2-.2V473v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V470v-.2-.2-.2-.2-.2V469v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V467v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V463v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V459v-.2-.2-.2-.2-.2-.2-.2-.2V457v-.2-.2-.2-.2V456H192c-13.3 0-24-10.7-24-24s10.7-24 24-24h24v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3V403v-.3-.3V402v-.3-.3V401v-.3-.3V400v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.4-.3-.4-.4-.4-.4V393v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V388v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V384c0-.6 0-1.2 .1-1.8C139.1 370.7 80 304.2 80 224c0-88.4 71.6-160 160-160c39.6 0 75.9 14.4 103.8 38.2L366.1 80 327 41c-6.9-6.9-8.9-17.2-5.2-26.2zM432 48l0 0h0v0zM240 488h24c0 13.3-10.7 24-24 24s-24-10.7-24-24h24zm96-264a96 96 0 1 0 -192 0 96 96 0 1 0 192 0z" + } + }, + "free": [ + "solid" + ] + }, + "mars-and-venus-burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gender", + "violence" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e523", + "label": "Mars And Venus Burst", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M504 0c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l39 39-22.2 22.2C475.9 78.4 439.6 64 400 64c-88.4 0-160 71.6-160 160c0 80.2 59.1 146.7 136.1 158.2c0 .6-.1 1.2-.1 1.8v.4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .4 .3 .4 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3 .3H352c-13.3 0-24 10.7-24 24s10.7 24 24 24h24v.2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .2 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 .1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0l24 0H376c0 13.3 10.7 24 24 24s24-10.7 24-24H400l24 0v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V486 486v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V485 485v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V484v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V483v-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1-.1V481v-.1-.1-.1-.1-.1-.1-.1-.1V480v-.1-.1-.1-.1-.1-.1-.1V479v-.1-.1-.1-.1-.1-.1-.1V478v-.1-.1-.1-.1-.1-.1V477v-.1-.1-.1-.1-.1-.1V476v-.1-.1-.1-.1-.1-.1V475v-.1-.2-.2-.2-.2-.2V474v-.2-.2-.2-.2-.2V473v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V470v-.2-.2-.2-.2-.2V469v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V467v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V463v-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2-.2V459v-.2-.2-.2-.2-.2-.2-.2-.2V457v-.2-.2-.2-.2V456h24c13.3 0 24-10.7 24-24s-10.7-24-24-24H424v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3V403v-.3-.3V402v-.3-.3V401v-.3-.3V400v-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.3-.4-.3-.4-.4-.4-.4V393v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V388v-.4-.4-.4-.4-.4-.4-.4-.4-.4-.4V384c0-.6 0-1.2-.1-1.8c77-11.6 136.1-78 136.1-158.2c0-31.4-9-60.7-24.7-85.4L560 113.9l39 39c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V24c0-13.3-10.7-24-24-24H504zM400 128a96 96 0 1 1 0 192 96 96 0 1 1 0-192zM190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74L55.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L10.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L90.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6L176 286.1l58.6 53.9c4.1 3.8 9.9 5.1 15.2 3.6C223.6 310.8 208 269.2 208 224c0-60.8 28.3-115 72.4-150.2L220.3 92.1l-29.4-74z" + } + }, + "free": [ + "solid" + ] + }, + "mars-double": { + "aliases": { + "unicodes": { + "composite": [ + "26a3" + ], + "secondary": [ + "10f227" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Doubled Male Sign", + "gay", + "gender", + "male", + "men" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f227", + "label": "Mars Double", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M312 32c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l33.4 33.4L275.8 159c-28.4-19.5-62.7-31-99.8-31C78.8 128 0 206.8 0 304s78.8 176 176 176s176-78.8 176-176c0-37-11.4-71.4-31-99.8l52.6-52.6L407 185c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V56c0-13.3-10.7-24-24-24H312zm88 48h0v0l0 0zM64 304a112 112 0 1 1 224 0A112 112 0 1 1 64 304zM368 480c97.2 0 176-78.8 176-176c0-37-11.4-71.4-31-99.8l52.6-52.6L599 185c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V56c0-13.3-10.7-24-24-24H504c-9.7 0-18.5 5.8-22.2 14.8c-1.2 2.9-1.8 6-1.8 9l0 .2v.2c0 6.2 2.5 12.2 7 16.8l33.4 33.4L480 146.7V168c0 22.6-13.6 43.1-34.6 51.7c-.8 .3-1.7 .7-2.5 1C465.7 241.2 480 270.9 480 304c0 61.9-50.1 112-112 112c-5.4 0-10.8-.4-16-1.1c-12.9 20.4-29.1 38.3-48.1 53.1c19.8 7.8 41.4 12 64 12z" + } + }, + "free": [ + "solid" + ] + }, + "mars-stroke": { + "aliases": { + "unicodes": { + "composite": [ + "26a6" + ], + "secondary": [ + "10f229" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Male with Stroke Sign", + "gender", + "transgender" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f229", + "label": "Mars Stroke", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M376 0c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l33.4 33.4L370.3 96.4 345 71c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l25.4 25.4L307.8 159c-28.4-19.5-62.7-31-99.8-31c-97.2 0-176 78.8-176 176s78.8 176 176 176s176-78.8 176-176c0-37-11.4-71.4-31-99.8l28.6-28.6L407 201c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-25.4-25.4 22.1-22.1L471 153c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V24c0-13.3-10.7-24-24-24H376zm88 48h0v0l0 0zM96 304a112 112 0 1 1 224 0A112 112 0 1 1 96 304z" + } + }, + "free": [ + "solid" + ] + }, + "mars-stroke-right": { + "aliases": { + "names": [ + "mars-stroke-h" + ], + "unicodes": { + "composite": [ + "26a9" + ], + "secondary": [ + "10f22b" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Horizontal Male with Stroke Sign", + "gender" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f22b", + "label": "Mars Stroke Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 368a112 112 0 1 0 0-224 112 112 0 1 0 0 224zm174.4-88C354.7 365.8 281.1 432 192 432C94.8 432 16 353.2 16 256S94.8 80 192 80c89.1 0 162.7 66.2 174.4 152H400V176c0-13.3 10.7-24 24-24s24 10.7 24 24v56h32V176c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l80 80c9.4 9.4 9.4 24.6 0 33.9l-80 80c-6.9 6.9-17.2 8.9-26.2 5.2s-14.8-12.5-14.8-22.2V280H448v56c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H366.4z" + } + }, + "free": [ + "solid" + ] + }, + "mars-stroke-up": { + "aliases": { + "names": [ + "mars-stroke-v" + ], + "unicodes": { + "composite": [ + "26a8" + ], + "secondary": [ + "10f22a" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Vertical Male with Stroke Sign", + "gender" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f22a", + "label": "Mars Stroke Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M148.7 4.7c6.2-6.2 16.4-6.2 22.6 0l64 64c4.6 4.6 5.9 11.5 3.5 17.4s-8.3 9.9-14.8 9.9H184v24h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H184v24c0 .6 0 1.2-.1 1.8c77 11.6 136.1 78 136.1 158.2c0 88.4-71.6 160-160 160S0 440.4 0 352c0-80.2 59.1-146.7 136.1-158.2c0-.6-.1-1.2-.1-1.8V168H104c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V96H96c-6.5 0-12.3-3.9-14.8-9.9s-1.1-12.9 3.5-17.4l64-64zM256 352A96 96 0 1 0 64 352a96 96 0 1 0 192 0z" + } + }, + "free": [ + "solid" + ] + }, + "martini-glass": { + "aliases": { + "names": [ + "glass-martini-alt" + ], + "unicodes": { + "composite": [ + "1f378" + ], + "secondary": [ + "10f57b" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "cocktail", + "cocktail glass", + "drink", + "glass", + "liquor" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f57b", + "label": "Martini Glass", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 0C19.1 0 7.4 7.8 2.4 19.8s-2.2 25.7 6.9 34.9L224 269.3V448H160c-17.7 0-32 14.3-32 32s14.3 32 32 32h96 96c17.7 0 32-14.3 32-32s-14.3-32-32-32H288V269.3L502.6 54.6c9.2-9.2 11.9-22.9 6.9-34.9S492.9 0 480 0H32zM173.3 128l-64-64H402.7l-64 64H173.3z" + } + }, + "free": [ + "solid" + ] + }, + "martini-glass-citrus": { + "aliases": { + "names": [ + "cocktail" + ], + "unicodes": { + "secondary": [ + "10f561" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "beverage", + "drink", + "gin", + "glass", + "margarita", + "martini", + "vodka" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f561", + "label": "Martini Glass Citrus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M432 240c53 0 96-43 96-96s-43-96-96-96c-35.5 0-66.6 19.3-83.2 48H296.2C316 40.1 369.3 0 432 0c79.5 0 144 64.5 144 144s-64.5 144-144 144c-27.7 0-53.5-7.8-75.5-21.3l35.4-35.4c12.2 5.6 25.8 8.7 40.1 8.7zM1.8 142.8C5.5 133.8 14.3 128 24 128H392c9.7 0 18.5 5.8 22.2 14.8s1.7 19.3-5.2 26.2l-177 177V464h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H208 120c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V345.9L7 169c-6.9-6.9-8.9-17.2-5.2-26.2z" + } + }, + "free": [ + "solid" + ] + }, + "martini-glass-empty": { + "aliases": { + "names": [ + "glass-martini" + ], + "unicodes": { + "secondary": [ + "10f000" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.1.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "drink", + "liquor" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f000", + "label": "Martini Glass Empty", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 0C19.1 0 7.4 7.8 2.4 19.8s-2.2 25.7 6.9 34.9L224 269.3V448H160c-17.7 0-32 14.3-32 32s14.3 32 32 32h96 96c17.7 0 32-14.3 32-32s-14.3-32-32-32H288V269.3L502.6 54.6c9.2-9.2 11.9-22.9 6.9-34.9S492.9 0 480 0H32zM256 210.7L109.3 64H402.7L256 210.7z" + } + }, + "free": [ + "solid" + ] + }, + "mask": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6fa" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carnivale", + "costume", + "disguise", + "halloween", + "secret", + "super hero" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6fa", + "label": "Mask", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 64C64 64 0 160 0 272S80 448 176 448h8.4c24.2 0 46.4-13.7 57.2-35.4l23.2-46.3c4.4-8.8 13.3-14.3 23.2-14.3s18.8 5.5 23.2 14.3l23.2 46.3c10.8 21.7 33 35.4 57.2 35.4H400c96 0 176-64 176-176s-64-208-288-208zM96 256a64 64 0 1 1 128 0A64 64 0 1 1 96 256zm320-64a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + }, + "free": [ + "solid" + ] + }, + "mask-face": { + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "coronavirus", + "covid-19", + "filter", + "flu", + "infection", + "pandemic", + "respirator", + "virus" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e1d7", + "label": "Mask Face", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 64c-27.2 0-53.8 8-76.4 23.1l-37.1 24.8c-15.8 10.5-34.3 16.1-53.3 16.1H144 128 56c-30.9 0-56 25.1-56 56v85c0 55.1 37.5 103.1 90.9 116.4l108 27C233.8 435 275.4 448 320 448s86.2-13 121.1-35.5l108-27C602.5 372.1 640 324.1 640 269V184c0-30.9-25.1-56-56-56H512 496h-9.2c-19 0-37.5-5.6-53.3-16.1L396.4 87.1C373.8 72 347.2 64 320 64zM132.3 346.3l-29.8-7.4C70.5 330.9 48 302.1 48 269V184c0-4.4 3.6-8 8-8H96v48c0 45.1 13.4 87.2 36.3 122.3zm405.1-7.4l-29.8 7.4c23-35.2 36.3-77.2 36.3-122.3V176h40c4.4 0 8 3.6 8 8v85c0 33-22.5 61.8-54.5 69.9zM192 208c0-8.8 7.2-16 16-16H432c8.8 0 16 7.2 16 16s-7.2 16-16 16H208c-8.8 0-16-7.2-16-16zm16 48H432c8.8 0 16 7.2 16 16s-7.2 16-16 16H208c-8.8 0-16-7.2-16-16s7.2-16 16-16zm16 80c0-8.8 7.2-16 16-16H400c8.8 0 16 7.2 16 16s-7.2 16-16 16H240c-8.8 0-16-7.2-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "mask-ventilator": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "breath", + "gas", + "mask", + "oxygen", + "respirator", + "ventilator" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e524", + "label": "Mask Ventilator", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M159.1 176C139.4 219.2 128 264.7 128 300.8c0 15.9 2.2 31.4 6.3 46l-31.8-7.9C70.5 330.9 48 302.1 48 269V184c0-4.4 3.6-8 8-8H159.1zm26-48H56c-30.9 0-56 25.1-56 56v85c0 55.1 37.5 103.1 90.9 116.4l71.3 17.8c22.7 30.5 55.4 54.1 93.8 66.6V393.3c-19.7-16.4-32-40.3-32-66.9c0-49.5 43-134.4 96-134.4c52.5 0 96 84.9 96 134.4c0 26.7-12.4 50.4-32 66.8v76.6c38-12.6 70.6-36 93.5-66.4l71.6-17.9C602.5 372.1 640 324.1 640 269V184c0-30.9-25.1-56-56-56H454.5C419.7 73.8 372.1 32 320 32c-52.6 0-100.2 41.8-134.9 96zm295.6 48H584c4.4 0 8 3.6 8 8v85c0 33-22.5 61.8-54.5 69.9l-31.8 8c4.2-14.7 6.4-30.1 6.4-46.1c0-36.1-11.6-81.6-31.3-124.8zM288 320V512h64V320c0-17.7-14.3-32-32-32s-32 14.3-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "masks-theater": { + "aliases": { + "names": [ + "theater-masks" + ], + "unicodes": { + "composite": [ + "1f3ad" + ], + "secondary": [ + "10f630" + ] + } + }, + "changes": [ + "5.2.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "comedy", + "mask", + "perform", + "performing", + "performing arts", + "theater", + "theatre", + "tragedy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f630", + "label": "Masks Theater", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M74.6 373.2c41.7 36.1 108 82.5 166.1 73.7c6.1-.9 12.1-2.5 18-4.5c-9.2-12.3-17.3-24.4-24.2-35.4c-21.9-35-28.8-75.2-25.9-113.6c-20.6 4.1-39.2 13-54.7 25.4c-6.5 5.2-16.3 1.3-14.8-7c6.4-33.5 33-60.9 68.2-66.3c2.6-.4 5.3-.7 7.9-.8l19.4-131.3c2-13.8 8-32.7 25-45.9C278.2 53.2 310.5 37 363.2 32.2c-.8-.7-1.6-1.4-2.4-2.1C340.6 14.5 288.4-11.5 175.7 5.6S20.5 63 5.7 83.9C0 91.9-.8 102 .6 111.8L24.8 276.1c5.5 37.3 21.5 72.6 49.8 97.2zm87.7-219.6c4.4-3.1 10.8-2 11.8 3.3c.1 .5 .2 1.1 .3 1.6c3.2 21.8-11.6 42-33.1 45.3s-41.5-11.8-44.7-33.5c-.1-.5-.1-1.1-.2-1.6c-.6-5.4 5.2-8.4 10.3-6.7c9 3 18.8 3.9 28.7 2.4s19.1-5.3 26.8-10.8zM261.6 390c29.4 46.9 79.5 110.9 137.6 119.7s124.5-37.5 166.1-73.7c28.3-24.5 44.3-59.8 49.8-97.2l24.2-164.3c1.4-9.8 .6-19.9-5.1-27.9c-14.8-20.9-57.3-61.2-170-78.3S299.4 77.2 279.2 92.8c-7.8 6-11.5 15.4-12.9 25.2L242.1 282.3c-5.5 37.3-.4 75.8 19.6 107.7zM404.5 235.3c-7.7-5.5-16.8-9.3-26.8-10.8s-19.8-.6-28.7 2.4c-5.1 1.7-10.9-1.3-10.3-6.7c.1-.5 .1-1.1 .2-1.6c3.2-21.8 23.2-36.8 44.7-33.5s36.3 23.5 33.1 45.3c-.1 .5-.2 1.1-.3 1.6c-1 5.3-7.4 6.4-11.8 3.3zm136.2 15.5c-1 5.3-7.4 6.4-11.8 3.3c-7.7-5.5-16.8-9.3-26.8-10.8s-19.8-.6-28.7 2.4c-5.1 1.7-10.9-1.3-10.3-6.7c.1-.5 .1-1.1 .2-1.6c3.2-21.8 23.2-36.8 44.7-33.5s36.3 23.5 33.1 45.3c-.1 .5-.2 1.1-.3 1.6zM530 350.2c-19.6 44.7-66.8 72.5-116.8 64.9s-87.1-48.2-93-96.7c-1-8.3 8.9-12.1 15.2-6.7c23.9 20.8 53.6 35.3 87 40.3s66.1 .1 94.9-12.8c7.6-3.4 16 3.2 12.6 10.9z" + } + }, + "free": [ + "solid" + ] + }, + "mastodon": { + "changes": [ + "5.0.11", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f6", + "label": "Mastodon", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M433 179.11c0-97.2-63.71-125.7-63.71-125.7-62.52-28.7-228.56-28.4-290.48 0 0 0-63.72 28.5-63.72 125.7 0 115.7-6.6 259.4 105.63 289.1 40.51 10.7 75.32 13 103.33 11.4 50.81-2.8 79.32-18.1 79.32-18.1l-1.7-36.9s-36.31 11.4-77.12 10.1c-40.41-1.4-83-4.4-89.63-54a102.54 102.54 0 0 1-.9-13.9c85.63 20.9 158.65 9.1 178.75 6.7 56.12-6.7 105-41.3 111.23-72.9 9.8-49.8 9-121.5 9-121.5zm-75.12 125.2h-46.63v-114.2c0-49.7-64-51.6-64 6.9v62.5h-46.33V197c0-58.5-64-56.6-64-6.9v114.2H90.19c0-122.1-5.2-147.9 18.41-175 25.9-28.9 79.82-30.8 103.83 6.1l11.6 19.5 11.6-19.5c24.11-37.1 78.12-34.8 103.83-6.1 23.71 27.3 18.4 53 18.4 175z" + } + }, + "free": [ + "brands" + ] + }, + "mattress-pillow": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air mattress", + "mattress", + "pillow", + "rest", + "sleep" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e525", + "label": "Mattress Pillow", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 64H64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H256V64zm32 384H576c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H288V448zM64 160c0-17.7 14.3-32 32-32h64c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160z" + } + }, + "free": [ + "solid" + ] + }, + "maxcdn": { + "changes": [ + "3.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f136", + "label": "MaxCDN", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M461.1 442.7h-97.4L415.6 200c2.3-10.2.9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z" + } + }, + "free": [ + "brands" + ] + }, + "maximize": { + "aliases": { + "names": [ + "expand-arrows-alt" + ], + "unicodes": { + "secondary": [ + "10f31e" + ] + } + }, + "changes": [ + "5.0.0", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bigger", + "enlarge", + "fullscreen", + "move", + "resize" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f31e", + "label": "Maximize", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M168 32H24C10.7 32 0 42.7 0 56V200c0 9.7 5.8 18.5 14.8 22.2s19.3 1.7 26.2-5.2l40-40 79 79L81 335 41 295c-6.9-6.9-17.2-8.9-26.2-5.2S0 302.3 0 312V456c0 13.3 10.7 24 24 24H168c9.7 0 18.5-5.8 22.2-14.8s1.7-19.3-5.2-26.2l-40-40 79-79 79 79-40 40c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8H424c13.3 0 24-10.7 24-24V312c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2l-40 40-79-79 79-79 40 40c6.9 6.9 17.2 8.9 26.2 5.2s14.8-12.5 14.8-22.2V56c0-13.3-10.7-24-24-24H280c-9.7 0-18.5 5.8-22.2 14.8s-1.7 19.3 5.2 26.2l40 40-79 79-79-79 40-40c6.9-6.9 8.9-17.2 5.2-26.2S177.7 32 168 32z" + } + }, + "free": [ + "solid" + ] + }, + "mdb": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f8ca", + "label": "Material Design for Bootstrap", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M17.37 160.41L7 352h43.91l5.59-79.83L84.43 352h44.71l25.54-77.43 4.79 77.43H205l-12.79-191.59H146.7L106 277.74 63.67 160.41zm281 0h-47.9V352h47.9s95 .8 94.2-95.79c-.78-94.21-94.18-95.78-94.18-95.78zm-1.2 146.46V204.78s46 4.27 46.8 50.57-46.78 51.54-46.78 51.54zm238.29-74.24a56.16 56.16 0 0 0 8-38.31c-5.34-35.76-55.08-34.32-55.08-34.32h-51.9v191.58H482s87 4.79 87-63.85c0-43.14-33.52-55.08-33.52-55.08zm-51.9-31.94s13.57-1.59 16 9.59c1.43 6.66-4 12-4 12h-12v-21.57zm-.1 109.46l.1-24.92V267h.08s41.58-4.73 41.19 22.43c-.33 25.65-41.35 20.74-41.35 20.74z" + } + }, + "free": [ + "brands" + ] + }, + "medal": { + "aliases": { + "unicodes": { + "composite": [ + "1f3c5" + ], + "secondary": [ + "10f5a2" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "award", + "medal", + "ribbon", + "sports medal", + "star", + "trophy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5a2", + "label": "Medal", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M4.1 38.2C1.4 34.2 0 29.4 0 24.6C0 11 11 0 24.6 0H133.9c11.2 0 21.7 5.9 27.4 15.5l68.5 114.1c-48.2 6.1-91.3 28.6-123.4 61.9L4.1 38.2zm503.7 0L405.6 191.5c-32.1-33.3-75.2-55.8-123.4-61.9L350.7 15.5C356.5 5.9 366.9 0 378.1 0H487.4C501 0 512 11 512 24.6c0 4.8-1.4 9.6-4.1 13.6zM80 336a176 176 0 1 1 352 0A176 176 0 1 1 80 336zm184.4-94.9c-3.4-7-13.3-7-16.8 0l-22.4 45.4c-1.4 2.8-4 4.7-7 5.1L168 298.9c-7.7 1.1-10.7 10.5-5.2 16l36.3 35.4c2.2 2.2 3.2 5.2 2.7 8.3l-8.6 49.9c-1.3 7.6 6.7 13.5 13.6 9.9l44.8-23.6c2.7-1.4 6-1.4 8.7 0l44.8 23.6c6.9 3.6 14.9-2.2 13.6-9.9l-8.6-49.9c-.5-3 .5-6.1 2.7-8.3l36.3-35.4c5.6-5.4 2.5-14.8-5.2-16l-50.1-7.3c-3-.4-5.7-2.4-7-5.1l-22.4-45.4z" + } + }, + "free": [ + "solid" + ] + }, + "medapps": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3c6", + "label": "MedApps", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7.2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z" + } + }, + "free": [ + "brands" + ] + }, + "medium": { + "aliases": { + "names": [ + "medium-m" + ], + "unicodes": { + "composite": [ + "f3c7" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f23a", + "label": "Medium", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M180.5,74.262C80.813,74.262,0,155.633,0,256S80.819,437.738,180.5,437.738,361,356.373,361,256,280.191,74.262,180.5,74.262Zm288.25,10.646c-49.845,0-90.245,76.619-90.245,171.095s40.406,171.1,90.251,171.1,90.251-76.619,90.251-171.1H559C559,161.5,518.6,84.908,468.752,84.908Zm139.506,17.821c-17.526,0-31.735,68.628-31.735,153.274s14.2,153.274,31.735,153.274S640,340.631,640,256C640,171.351,625.785,102.729,608.258,102.729Z" + } + }, + "free": [ + "brands" + ] + }, + "medrt": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3c8", + "label": "MRT", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 544, + 512 + ], + "width": 544, + "height": 512, + "path": "M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z" + } + }, + "free": [ + "brands" + ] + }, + "meetup": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2e0", + "label": "Meetup", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1.9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9.6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3.9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z" + } + }, + "free": [ + "brands" + ] + }, + "megaport": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5a3", + "label": "Megaport", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M214.5 209.6v66.2l33.5 33.5 33.3-33.3v-66.4l-33.4-33.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm145.1 414.4L367 441.6l-26-19.2v-65.5l-33.4-33.4-33.4 33.4v65.5L248 441.6l-26.1-19.2v-65.5l-33.4-33.4-33.5 33.4v65.5l-26.1 19.2-26.1-19.2v-87l59.5-59.5V188l59.5-59.5V52.9l26.1-19.2L274 52.9v75.6l59.5 59.5v87.6l59.7 59.7v87.1z" + } + }, + "free": [ + "brands" + ] + }, + "memory": { + "aliases": { + "unicodes": { + "secondary": [ + "10f538" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "DIMM", + "RAM", + "hardware", + "storage", + "technology" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f538", + "label": "Memory", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128v7.4c0 6.8 4.4 12.6 10.1 16.3C23.3 160.3 32 175.1 32 192s-8.7 31.7-21.9 40.3C4.4 236 0 241.8 0 248.6V320H576V248.6c0-6.8-4.4-12.6-10.1-16.3C552.7 223.7 544 208.9 544 192s8.7-31.7 21.9-40.3c5.7-3.7 10.1-9.5 10.1-16.3V128c0-35.3-28.7-64-64-64H64zM576 352H0v64c0 17.7 14.3 32 32 32H80V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h96V416c0-8.8 7.2-16 16-16s16 7.2 16 16v32h48c17.7 0 32-14.3 32-32V352zM192 160v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32zm128 0v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32zm128 0v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "mendeley": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f7b3", + "label": "Mendeley", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M624.6 325.2c-12.3-12.4-29.7-19.2-48.4-17.2-43.3-1-49.7-34.9-37.5-98.8 22.8-57.5-14.9-131.5-87.4-130.8-77.4.7-81.7 82-130.9 82-48.1 0-54-81.3-130.9-82-72.9-.8-110.1 73.3-87.4 130.8 12.2 63.9 5.8 97.8-37.5 98.8-21.2-2.3-37 6.5-53 22.5-19.9 19.7-19.3 94.8 42.6 102.6 47.1 5.9 81.6-42.9 61.2-87.8-47.3-103.7 185.9-106.1 146.5-8.2-.1.1-.2.2-.3.4-26.8 42.8 6.8 97.4 58.8 95.2 52.1 2.1 85.4-52.6 58.8-95.2-.1-.2-.2-.3-.3-.4-39.4-97.9 193.8-95.5 146.5 8.2-4.6 10-6.7 21.3-5.7 33 4.9 53.4 68.7 74.1 104.9 35.2 17.8-14.8 23.1-65.6 0-88.3zm-303.9-19.1h-.6c-43.4 0-62.8-37.5-62.8-62.8 0-34.7 28.2-62.8 62.8-62.8h.6c34.7 0 62.8 28.1 62.8 62.8 0 25-19.2 62.8-62.8 62.8z" + } + }, + "free": [ + "brands" + ] + }, + "menorah": { + "aliases": { + "unicodes": { + "secondary": [ + "10f676" + ] + } + }, + "changes": [ + "5.3.0", + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "candle", + "hanukkah", + "jewish", + "judaism", + "light" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f676", + "label": "Menorah", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M20.8 7.4C22.8 2.9 27.1 0 32 0s9.2 2.9 11.2 7.4L61.3 49.7c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32S0 81.7 0 64V62.8c0-4.5 .9-8.9 2.7-13.1L20.8 7.4zm96 0C118.8 2.9 123.1 0 128 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1L116.8 7.4zm77.8 42.4L212.8 7.4C214.8 2.9 219.1 0 224 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1zM308.8 7.4C310.8 2.9 315.1 0 320 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1L308.8 7.4zm77.8 42.4L404.8 7.4C406.8 2.9 411.1 0 416 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1zM500.8 7.4C502.8 2.9 507.1 0 512 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1L500.8 7.4zm77.8 42.4L596.8 7.4C598.8 2.9 603.1 0 608 0s9.2 2.9 11.2 7.4l18.2 42.4c1.8 4.1 2.7 8.6 2.7 13.1V64c0 17.7-14.3 32-32 32s-32-14.3-32-32V62.8c0-4.5 .9-8.9 2.7-13.1zM32 128c17.7 0 32 14.3 32 32V288c0 17.7 14.3 32 32 32H288V160c0-17.7 14.3-32 32-32s32 14.3 32 32V320H544c17.7 0 32-14.3 32-32V160c0-17.7 14.3-32 32-32s32 14.3 32 32V288c0 53-43 96-96 96H352v64H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 160c-17.7 0-32-14.3-32-32s14.3-32 32-32H288V384H96c-53 0-96-43-96-96V160c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96 32H96V256 160c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96 32H192V256 160c0-17.7 14.3-32 32-32zm192 0c17.7 0 32 14.3 32 32v96 32H384V256 160c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96 32H480V256 160c0-17.7 14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "mercury": { + "aliases": { + "unicodes": { + "composite": [ + "263f" + ], + "secondary": [ + "10f223" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Mercury", + "gender", + "hybrid", + "transgender" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f223", + "label": "Mercury", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M56.1 7C69.8-4 90-1.8 101 12c17.6 22 44.7 36 75 36s57.3-14 75-36c11.1-13.8 31.2-16 45-5s16 31.2 5 45c-7.8 9.7-16.6 18.4-26.4 26.1C321.3 109.7 352 163.3 352 224c0 89.1-66.2 162.7-152 174.4V424h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H200v16c0 13.3-10.7 24-24 24s-24-10.7-24-24V472H120c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V398.4C66.2 386.7 0 313.1 0 224C0 163.3 30.7 109.7 77.5 78.1C67.7 70.5 58.9 61.7 51.1 52c-11.1-13.8-8.8-33.9 5-45zM64 224a112 112 0 1 0 224 0A112 112 0 1 0 64 224z" + } + }, + "free": [ + "solid" + ] + }, + "message": { + "aliases": { + "names": [ + "comment-alt" + ], + "unicodes": { + "secondary": [ + "10f27a" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bubble", + "chat", + "commenting", + "conversation", + "feedback", + "message", + "note", + "notification", + "sms", + "speech", + "texting" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f27a", + "label": "Message", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V352c0 35.3 28.7 64 64 64h96v80c0 6.1 3.4 11.6 8.8 14.3s11.9 2.1 16.8-1.5L309.3 416H448c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 368c26.5 0 48 21.5 48 48v16l72.5-54.4c8.3-6.2 18.4-9.6 28.8-9.6H448c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H64c-8.8 0-16 7.2-16 16V352c0 8.8 7.2 16 16 16h96zm48 124l-.2 .2-5.1 3.8-17.1 12.8c-4.8 3.6-11.3 4.2-16.8 1.5s-8.8-8.2-8.8-14.3V474.7v-6.4V468v-4V416H112 64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0H448c35.3 0 64 28.7 64 64V352c0 35.3-28.7 64-64 64H309.3L208 492z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "meta": { + "changes": [ + "6.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e49b", + "label": "Meta", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 317.9C640 409.2 600.6 466.4 529.7 466.4C467.1 466.4 433.9 431.8 372.8 329.8L341.4 277.2C333.1 264.7 326.9 253 320.2 242.2C300.1 276 273.1 325.2 273.1 325.2C206.1 441.8 168.5 466.4 116.2 466.4C43.42 466.4 0 409.1 0 320.5C0 177.5 79.78 42.4 183.9 42.4C234.1 42.4 277.7 67.08 328.7 131.9C365.8 81.8 406.8 42.4 459.3 42.4C558.4 42.4 640 168.1 640 317.9H640zM287.4 192.2C244.5 130.1 216.5 111.7 183 111.7C121.1 111.7 69.22 217.8 69.22 321.7C69.22 370.2 87.7 397.4 118.8 397.4C149 397.4 167.8 378.4 222 293.6C222 293.6 246.7 254.5 287.4 192.2V192.2zM531.2 397.4C563.4 397.4 578.1 369.9 578.1 322.5C578.1 198.3 523.8 97.08 454.9 97.08C421.7 97.08 393.8 123 360 175.1C369.4 188.9 379.1 204.1 389.3 220.5L426.8 282.9C485.5 377 500.3 397.4 531.2 397.4L531.2 397.4z" + } + }, + "free": [ + "brands" + ] + }, + "meteor": { + "aliases": { + "unicodes": { + "composite": [ + "2604" + ], + "secondary": [ + "10f753" + ] + } + }, + "changes": [ + "5.5.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "armageddon", + "asteroid", + "comet", + "shooting star", + "space" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f753", + "label": "Meteor", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M493.7 .9L299.4 75.6l2.3-29.3c1-12.8-12.8-21.5-24-15.1L101.3 133.4C38.6 169.7 0 236.6 0 309C0 421.1 90.9 512 203 512c72.4 0 139.4-38.6 175.7-101.3L480.8 234.3c6.5-11.1-2.2-25-15.1-24l-29.3 2.3L511.1 18.3c.6-1.5 .9-3.2 .9-4.8C512 6 506 0 498.5 0c-1.7 0-3.3 .3-4.8 .9zM192 192a128 128 0 1 1 0 256 128 128 0 1 1 0-256zm0 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm16 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + }, + "free": [ + "solid" + ] + }, + "microblog": { + "changes": [ + "5.12.0", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e01a", + "label": "Micro.blog", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M399.36,362.23c29.49-34.69,47.1-78.34,47.1-125.79C446.46,123.49,346.86,32,224,32S1.54,123.49,1.54,236.44,101.14,440.87,224,440.87a239.28,239.28,0,0,0,79.44-13.44,7.18,7.18,0,0,1,8.12,2.56c18.58,25.09,47.61,42.74,79.89,49.92a4.42,4.42,0,0,0,5.22-3.43,4.37,4.37,0,0,0-.85-3.62,87,87,0,0,1,3.69-110.69ZM329.52,212.4l-57.3,43.49L293,324.75a6.5,6.5,0,0,1-9.94,7.22L224,290.92,164.94,332a6.51,6.51,0,0,1-9.95-7.22l20.79-68.86-57.3-43.49a6.5,6.5,0,0,1,3.8-11.68l71.88-1.51,23.66-67.92a6.5,6.5,0,0,1,12.28,0l23.66,67.92,71.88,1.51a6.5,6.5,0,0,1,3.88,11.68Z" + } + }, + "free": [ + "brands" + ] + }, + "microchip": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2db" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cpu", + "hardware", + "processor", + "technology" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2db", + "label": "Microchip", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64c-35.3 0-64 28.7-64 64H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H64v56H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H64v56H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H64c0 35.3 28.7 64 64 64v40c0 13.3 10.7 24 24 24s24-10.7 24-24V448h56v40c0 13.3 10.7 24 24 24s24-10.7 24-24V448h56v40c0 13.3 10.7 24 24 24s24-10.7 24-24V448c35.3 0 64-28.7 64-64h40c13.3 0 24-10.7 24-24s-10.7-24-24-24H448V280h40c13.3 0 24-10.7 24-24s-10.7-24-24-24H448V176h40c13.3 0 24-10.7 24-24s-10.7-24-24-24H448c0-35.3-28.7-64-64-64V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H280V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H176V24zM160 128H352c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32zm192 32H160V352H352V160z" + } + }, + "free": [ + "solid" + ] + }, + "microphone": { + "aliases": { + "unicodes": { + "secondary": [ + "10f130" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "address", + "audio", + "information", + "podcast", + "public", + "record", + "sing", + "sound", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f130", + "label": "Microphone", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M176 0C123 0 80 43 80 96V256c0 53 43 96 96 96s96-43 96-96V96c0-53-43-96-96-96zM48 216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 89.1 66.2 162.7 152 174.4V464H104c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H200V430.4c85.8-11.7 152-85.3 152-174.4V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 70.7-57.3 128-128 128s-128-57.3-128-128V216z" + } + }, + "free": [ + "solid" + ] + }, + "microphone-lines": { + "aliases": { + "names": [ + "microphone-alt" + ], + "unicodes": { + "composite": [ + "1f399" + ], + "secondary": [ + "10f3c9" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "mic", + "microphone", + "music", + "podcast", + "record", + "sing", + "sound", + "studio", + "studio microphone", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3c9", + "label": "Microphone Lines", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M80 96V256c0 53 43 96 96 96s96-43 96-96H192c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V192H192c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V128H192c-8.8 0-16-7.2-16-16s7.2-16 16-16h80c0-53-43-96-96-96S80 43 80 96zM304 240v16c0 70.7-57.3 128-128 128s-128-57.3-128-128V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 89.1 66.2 162.7 152 174.4V464H104c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H200V430.4c85.8-11.7 152-85.3 152-174.4V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v24z" + } + }, + "free": [ + "solid" + ] + }, + "microphone-lines-slash": { + "aliases": { + "names": [ + "microphone-alt-slash" + ], + "unicodes": { + "secondary": [ + "10f539" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "disable", + "mute", + "podcast", + "record", + "sing", + "sound", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f539", + "label": "Microphone Lines Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c15.2-26 23.9-56.3 23.9-88.7V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v24 16c0 21.2-5.1 41.1-14.2 58.7L416 300.8V256H358.9l-34.5-27c2.9-3.1 7-5 11.6-5h80V192H336c-8.8 0-16-7.2-16-16s7.2-16 16-16h80V128H336c-8.8 0-16-7.2-16-16s7.2-16 16-16h80c0-53-43-96-96-96s-96 43-96 96v54.3L38.8 5.1zm362.5 407l-43.1-33.9C346.1 382 333.3 384 320 384c-70.7 0-128-57.3-128-128v-8.7L144.7 210c-.5 1.9-.7 3.9-.7 6v40c0 89.1 66.2 162.7 152 174.4V464H248c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V430.4c20.4-2.8 39.7-9.1 57.3-18.2z" + } + }, + "free": [ + "solid" + ] + }, + "microphone-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f131" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "disable", + "mute", + "podcast", + "record", + "sing", + "sound", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f131", + "label": "Microphone Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c15.2-26 23.9-56.3 23.9-88.7V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v40c0 21.2-5.1 41.1-14.2 58.7L416 300.8V96c0-53-43-96-96-96s-96 43-96 96v54.3L38.8 5.1zM344 430.4c20.4-2.8 39.7-9.1 57.3-18.2l-43.1-33.9C346.1 382 333.3 384 320 384c-70.7 0-128-57.3-128-128v-8.7L144.7 210c-.5 1.9-.7 3.9-.7 6v40c0 89.1 66.2 162.7 152 174.4V464H248c-13.3 0-24 10.7-24 24s10.7 24 24 24h72 72c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V430.4z" + } + }, + "free": [ + "solid" + ] + }, + "microscope": { + "aliases": { + "unicodes": { + "composite": [ + "1f52c" + ], + "secondary": [ + "10f610" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "electron", + "lens", + "microscope", + "optics", + "science", + "shrink", + "testing", + "tool" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f610", + "label": "Microscope", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 32c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32c17.7 0 32 14.3 32 32V288c0 17.7-14.3 32-32 32c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32c-17.7 0-32-14.3-32-32V64c0-17.7 14.3-32 32-32zM32 448H320c70.7 0 128-57.3 128-128s-57.3-128-128-128V128c106 0 192 86 192 192c0 49.2-18.5 94-48.9 128H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm80-64H304c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "microsoft": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ca", + "label": "Microsoft", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z" + } + }, + "free": [ + "brands" + ] + }, + "mill-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Mill Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e1ed", + "label": "Mill Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M302.1 42.8c5.9-16.6-2.7-35-19.4-40.9s-35 2.7-40.9 19.4L208 116.1c-5.7 4-11.1 8.5-16 13.5C171.7 108.9 143.3 96 112 96c-19.5 0-37.8 5-53.7 13.7C52.5 101.4 42.9 96 32 96C14.3 96 0 110.3 0 128v80V416c0 17.7 14.3 32 32 32s32-14.3 32-32V208c0-26.5 21.5-48 48-48s48 21.5 48 48v42.5L81.9 469.2c-5.9 16.6 2.7 35 19.4 40.9s35-2.7 40.9-19.4l21.4-60C168.9 441 179.6 448 192 448c17.7 0 32-14.3 32-32V261.5l35.7-100c3.9-1 8.1-1.6 12.3-1.6c26.5 0 48 21.5 48 48V416c0 17.7 14.3 32 32 32s32-14.3 32-32V208c0-58.2-44.3-106-101.1-111.5l19.2-53.8z" + } + }, + "free": [ + "solid" + ] + }, + "minimize": { + "aliases": { + "names": [ + "compress-arrows-alt" + ], + "unicodes": { + "secondary": [ + "10f78c" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "fullscreen", + "minimize", + "move", + "resize", + "shrink", + "smaller" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f78c", + "label": "Minimize", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M456 224H312c-13.3 0-24-10.7-24-24V56c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l40 40L442.3 5.7C446 2 450.9 0 456 0s10 2 13.7 5.7l36.7 36.7C510 46 512 50.9 512 56s-2 10-5.7 13.7L433 143l40 40c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8zm0 64c9.7 0 18.5 5.8 22.2 14.8s1.7 19.3-5.2 26.2l-40 40 73.4 73.4c3.6 3.6 5.7 8.5 5.7 13.7s-2 10-5.7 13.7l-36.7 36.7C466 510 461.1 512 456 512s-10-2-13.7-5.7L369 433l-40 40c-6.9 6.9-17.2 8.9-26.2 5.2s-14.8-12.5-14.8-22.2V312c0-13.3 10.7-24 24-24H456zm-256 0c13.3 0 24 10.7 24 24V456c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-40-40L69.7 506.3C66 510 61.1 512 56 512s-10-2-13.7-5.7L5.7 469.7C2 466 0 461.1 0 456s2-10 5.7-13.7L79 369 39 329c-6.9-6.9-8.9-17.2-5.2-26.2s12.5-14.8 22.2-14.8H200zM56 224c-9.7 0-18.5-5.8-22.2-14.8s-1.7-19.3 5.2-26.2l40-40L5.7 69.7C2 66 0 61.1 0 56s2-10 5.7-13.7L42.3 5.7C46 2 50.9 0 56 0s10 2 13.7 5.7L143 79l40-40c6.9-6.9 17.2-8.9 26.2-5.2s14.8 12.5 14.8 22.2V200c0 13.3-10.7 24-24 24H56z" + } + }, + "free": [ + "solid" + ] + }, + "minus": { + "aliases": { + "names": [ + "subtract" + ], + "unicodes": { + "composite": [ + "2013", + "2212", + "2796" + ], + "secondary": [ + "10f068" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "En Dash", + "Minus Sign", + "collapse", + "delete", + "hide", + "math", + "minify", + "minus", + "negative", + "remove", + "sign", + "trash", + "−" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f068", + "label": "Minus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M416 256c0 17.7-14.3 32-32 32L32 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "mitten": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7b5" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing", + "cold", + "glove", + "hands", + "knitted", + "seasonal", + "warmth" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7b5", + "label": "Mitten", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 384H64L5.4 178.9C1.8 166.4 0 153.4 0 140.3C0 62.8 62.8 0 140.3 0h3.4c66 0 123.5 44.9 139.5 108.9l31.4 125.8 17.6-20.1C344.8 200.2 362.9 192 382 192h2.8c34.9 0 63.3 28.3 63.3 63.3c0 15.9-6 31.2-16.8 42.9L352 384zM32 448c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V448z" + } + }, + "free": [ + "solid" + ] + }, + "mix": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3cb", + "label": "Mix", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z" + } + }, + "free": [ + "brands" + ] + }, + "mixcloud": { + "changes": [ + "4.5.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f289", + "label": "Mixcloud", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M212.98 346.566H179.789V195.114L185.973 173.47H175.262L137.127 346.566H76.1069L37.7323 173.47H27.276L33.1913 195.114V346.566H0V165H65.6506L102.248 338.096H110.747L147.329 165H212.98L212.98 346.566ZM544.459 283.589L458.434 345.655V307.534L531.329 255.776L458.434 204.017V165.896L544.459 228.231H553.721L640 165.896V204.017L566.866 255.776L640 307.549V345.655L553.721 283.589H544.459ZM430.157 272.311H248.113V239.255H430.157V272.311Z" + } + }, + "free": [ + "brands" + ] + }, + "mixer": { + "changes": [ + "5.12.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e056", + "label": "Mixer", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M114.57,76.07a45.71,45.71,0,0,0-67.51-6.41c-17.58,16.18-19,43.52-4.75,62.77l91.78,123L41.76,379.58c-14.23,19.25-13.11,46.59,4.74,62.77A45.71,45.71,0,0,0,114,435.94L242.89,262.7a12.14,12.14,0,0,0,0-14.23ZM470.24,379.58,377.91,255.45l91.78-123c14.22-19.25,12.83-46.59-4.75-62.77a45.71,45.71,0,0,0-67.51,6.41l-128,172.12a12.14,12.14,0,0,0,0,14.23L398,435.94a45.71,45.71,0,0,0,67.51,6.41C483.35,426.17,484.47,398.83,470.24,379.58Z" + } + }, + "free": [ + "brands" + ] + }, + "mizuni": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3cc", + "label": "Mizuni", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z" + } + }, + "free": [ + "brands" + ] + }, + "mobile": { + "aliases": { + "names": [ + "mobile-android", + "mobile-phone" + ], + "unicodes": { + "composite": [ + "1f4f1" + ], + "secondary": [ + "10f3ce" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "android", + "call", + "cell", + "cell phone", + "device", + "mobile", + "mobile phone", + "number", + "phone", + "screen", + "telephone", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3ce", + "label": "Mobile", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zm80 432h64c8.8 0 16 7.2 16 16s-7.2 16-16 16H144c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "mobile-button": { + "aliases": { + "unicodes": { + "secondary": [ + "10f10b" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "call", + "cell phone", + "device", + "iphone", + "number", + "screen", + "telephone" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f10b", + "label": "Mobile button", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H288c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM176 400a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "mobile-retro": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cellphone", + "cellular", + "phone" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e527", + "label": "Mobile Retro", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H256c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zm64 96v64c0 17.7 14.3 32 32 32H224c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32zM80 352a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm24 56a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm56-56a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm24 56a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm56-56a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm24 56a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM128 48c-8.8 0-16 7.2-16 16s7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16H128z" + } + }, + "free": [ + "solid" + ] + }, + "mobile-screen": { + "aliases": { + "names": [ + "mobile-android-alt" + ], + "unicodes": { + "secondary": [ + "10f3cf" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "android", + "call", + "cell phone", + "device", + "number", + "screen", + "telephone", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3cf", + "label": "Mobile screen", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H288c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM128 448c0 8.8 7.2 16 16 16h64c8.8 0 16-7.2 16-16s-7.2-16-16-16H144c-8.8 0-16 7.2-16 16zM288 64H64V384H288V64z" + } + }, + "free": [ + "solid" + ] + }, + "mobile-screen-button": { + "aliases": { + "names": [ + "mobile-alt" + ], + "unicodes": { + "secondary": [ + "10f3cd" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "call", + "cell phone", + "device", + "iphone", + "number", + "screen", + "telephone" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3cd", + "label": "Mobile Screen Button", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H288c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM208 448a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM288 64H64V384H288V64z" + } + }, + "free": [ + "solid" + ] + }, + "modx": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f285", + "label": "MODX", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z" + } + }, + "free": [ + "brands" + ] + }, + "monero": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d0", + "label": "Monero", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z" + } + }, + "free": [ + "brands" + ] + }, + "money-bill": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0d6" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d6", + "label": "Money Bill", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm64 320H64V320c35.3 0 64 28.7 64 64zM64 192V128h64c0 35.3-28.7 64-64 64zM448 384c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM288 160a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + } + }, + "free": [ + "solid" + ] + }, + "money-bill-1": { + "aliases": { + "names": [ + "money-bill-alt" + ], + "unicodes": { + "secondary": [ + "10f3d1" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f3d1", + "label": "Money Bill 1", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm64 320H64V320c35.3 0 64 28.7 64 64zM64 192V128h64c0 35.3-28.7 64-64 64zM448 384c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM176 256a112 112 0 1 1 224 0 112 112 0 1 1 -224 0zm76-48c0 9.7 6.9 17.7 16 19.6V276h-4c-11 0-20 9-20 20s9 20 20 20h24 24c11 0 20-9 20-20s-9-20-20-20h-4V208c0-11-9-20-20-20H272c-11 0-20 9-20 20z" + }, + "regular": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 112c0 35.3-28.7 64-64 64V336c35.3 0 64 28.7 64 64H464c0-35.3 28.7-64 64-64V176c-35.3 0-64-28.7-64-64H112zM0 128C0 92.7 28.7 64 64 64H512c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM176 256a112 112 0 1 1 224 0 112 112 0 1 1 -224 0zm80-48c0 8.8 7.2 16 16 16v64h-8c-8.8 0-16 7.2-16 16s7.2 16 16 16h24 24c8.8 0 16-7.2 16-16s-7.2-16-16-16h-8V208c0-8.8-7.2-16-16-16H272c-8.8 0-16 7.2-16 16z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "money-bill-1-wave": { + "aliases": { + "names": [ + "money-bill-wave-alt" + ], + "unicodes": { + "secondary": [ + "10f53b" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f53b", + "label": "Money Bill 1 Wave", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 112.5V422.3c0 18 10.1 35 27 41.3c87 32.5 174 10.3 261-11.9c79.8-20.3 159.6-40.7 239.3-18.9c23 6.3 48.7-9.5 48.7-33.4V89.7c0-18-10.1-35-27-41.3C462 15.9 375 38.1 288 60.3C208.2 80.6 128.4 100.9 48.7 79.1C25.6 72.8 0 88.6 0 112.5zM128 416H64V352c35.3 0 64 28.7 64 64zM64 224V160h64c0 35.3-28.7 64-64 64zM448 352c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM384 256c0 61.9-43 112-96 112s-96-50.1-96-112s43-112 96-112s96 50.1 96 112zM252 208c0 9.7 6.9 17.7 16 19.6V276h-4c-11 0-20 9-20 20s9 20 20 20h24 24c11 0 20-9 20-20s-9-20-20-20h-4V208c0-11-9-20-20-20H272c-11 0-20 9-20 20z" + } + }, + "free": [ + "solid" + ] + }, + "money-bill-transfer": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "conversion", + "deposit", + "money", + "transfer", + "withdrawal" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e528", + "label": "Money Bill Transfer", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M535 41c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l64 64c4.5 4.5 7 10.6 7 17s-2.5 12.5-7 17l-64 64c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l23-23L384 112c-13.3 0-24-10.7-24-24s10.7-24 24-24l174.1 0L535 41zM105 377l-23 23L256 400c13.3 0 24 10.7 24 24s-10.7 24-24 24L81.9 448l23 23c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L7 441c-4.5-4.5-7-10.6-7-17s2.5-12.5 7-17l64-64c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9zM96 64H337.9c-3.7 7.2-5.9 15.3-5.9 24c0 28.7 23.3 52 52 52l117.4 0c-4 17 .6 35.5 13.8 48.8c20.3 20.3 53.2 20.3 73.5 0L608 169.5V384c0 35.3-28.7 64-64 64H302.1c3.7-7.2 5.9-15.3 5.9-24c0-28.7-23.3-52-52-52l-117.4 0c4-17-.6-35.5-13.8-48.8c-20.3-20.3-53.2-20.3-73.5 0L32 342.5V128c0-35.3 28.7-64 64-64zm64 64H96v64c35.3 0 64-28.7 64-64zM544 320c-35.3 0-64 28.7-64 64h64V320zM320 352a96 96 0 1 0 0-192 96 96 0 1 0 0 192z" + } + }, + "free": [ + "solid" + ] + }, + "money-bill-trend-up": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "bonds", + "inflation", + "market", + "stocks", + "trade" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e529", + "label": "Money Bill Trend Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M470.7 9.4c3 3.1 5.3 6.6 6.9 10.3s2.4 7.8 2.4 12.2l0 .1v0 96c0 17.7-14.3 32-32 32s-32-14.3-32-32V109.3L310.6 214.6c-11.8 11.8-30.8 12.6-43.5 1.7L176 138.1 84.8 216.3c-13.4 11.5-33.6 9.9-45.1-3.5s-9.9-33.6 3.5-45.1l112-96c12-10.3 29.7-10.3 41.7 0l89.5 76.7L370.7 64H352c-17.7 0-32-14.3-32-32s14.3-32 32-32h96 0c8.8 0 16.8 3.6 22.6 9.3l.1 .1zM0 304c0-26.5 21.5-48 48-48H464c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V304zM48 416v48H96c0-26.5-21.5-48-48-48zM96 304H48v48c26.5 0 48-21.5 48-48zM464 416c-26.5 0-48 21.5-48 48h48V416zM416 304c0 26.5 21.5 48 48 48V304H416zm-96 80a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + }, + "free": [ + "solid" + ] + }, + "money-bill-wave": { + "aliases": { + "unicodes": { + "secondary": [ + "10f53a" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buy", + "cash", + "checkout", + "money", + "payment", + "price", + "purchase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f53a", + "label": "Money Bill Wave", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 112.5V422.3c0 18 10.1 35 27 41.3c87 32.5 174 10.3 261-11.9c79.8-20.3 159.6-40.7 239.3-18.9c23 6.3 48.7-9.5 48.7-33.4V89.7c0-18-10.1-35-27-41.3C462 15.9 375 38.1 288 60.3C208.2 80.6 128.4 100.9 48.7 79.1C25.6 72.8 0 88.6 0 112.5zM288 352c-44.2 0-80-43-80-96s35.8-96 80-96s80 43 80 96s-35.8 96-80 96zM64 352c35.3 0 64 28.7 64 64H64V352zm64-208c0 35.3-28.7 64-64 64V144h64zM512 304v64H448c0-35.3 28.7-64 64-64zM448 96h64v64c-35.3 0-64-28.7-64-64z" + } + }, + "free": [ + "solid" + ] + }, + "money-bill-wheat": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agribusiness", + "agriculture", + "farming", + "food", + "livelihood", + "subsidy" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e52a", + "label": "Money Bill Wheat", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 0c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80c0-8.8 7.2-16 16-16zM56 16h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56C42.7 64 32 53.3 32 40s10.7-24 24-24zM24 88H136c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24S10.7 88 24 88zm8 96c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24zM272 16c0-8.8 7.2-16 16-16c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80zM400 0c44.2 0 80 35.8 80 80c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80c0-8.8 7.2-16 16-16zm80 144c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM352 128c8.8 0 16 7.2 16 16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80zm-96 16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM0 304c0-26.5 21.5-48 48-48H464c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V304zM48 416v48H96c0-26.5-21.5-48-48-48zM96 304H48v48c26.5 0 48-21.5 48-48zM464 416c-26.5 0-48 21.5-48 48h48V416zM416 304c0 26.5 21.5 48 48 48V304H416zm-96 80a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + }, + "free": [ + "solid" + ] + }, + "money-bills": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atm", + "cash", + "money", + "moolah" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e1f3", + "label": "Money Bills", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 96V320c0 35.3 28.7 64 64 64H576c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H160c-35.3 0-64 28.7-64 64zm64 160c35.3 0 64 28.7 64 64H160V256zM224 96c0 35.3-28.7 64-64 64V96h64zM576 256v64H512c0-35.3 28.7-64 64-64zM512 96h64v64c-35.3 0-64-28.7-64-64zM288 208a80 80 0 1 1 160 0 80 80 0 1 1 -160 0zM48 120c0-13.3-10.7-24-24-24S0 106.7 0 120V360c0 66.3 53.7 120 120 120H520c13.3 0 24-10.7 24-24s-10.7-24-24-24H120c-39.8 0-72-32.2-72-72V120z" + } + }, + "free": [ + "solid" + ] + }, + "money-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f53c" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank check", + "buy", + "checkout", + "cheque", + "money", + "payment", + "price", + "purchase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f53c", + "label": "Money Check", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm48 160H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zM96 336c0-8.8 7.2-16 16-16H464c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16zM376 160h80c13.3 0 24 10.7 24 24v48c0 13.3-10.7 24-24 24H376c-13.3 0-24-10.7-24-24V184c0-13.3 10.7-24 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "money-check-dollar": { + "aliases": { + "names": [ + "money-check-alt" + ], + "unicodes": { + "secondary": [ + "10f53d" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank check", + "buy", + "checkout", + "cheque", + "money", + "payment", + "price", + "purchase" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f53d", + "label": "Money Check Dollar", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zM272 192H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H272c-8.8 0-16-7.2-16-16s7.2-16 16-16zM256 304c0-8.8 7.2-16 16-16H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H272c-8.8 0-16-7.2-16-16zM164 152v13.9c7.5 1.2 14.6 2.9 21.1 4.7c10.7 2.8 17 13.8 14.2 24.5s-13.8 17-24.5 14.2c-11-2.9-21.6-5-31.2-5.2c-7.9-.1-16 1.8-21.5 5c-4.8 2.8-6.2 5.6-6.2 9.3c0 1.8 .1 3.5 5.3 6.7c6.3 3.8 15.5 6.7 28.3 10.5l.7 .2c11.2 3.4 25.6 7.7 37.1 15c12.9 8.1 24.3 21.3 24.6 41.6c.3 20.9-10.5 36.1-24.8 45c-7.2 4.5-15.2 7.3-23.2 9V360c0 11-9 20-20 20s-20-9-20-20V345.4c-10.3-2.2-20-5.5-28.2-8.4l0 0 0 0c-2.1-.7-4.1-1.4-6.1-2.1c-10.5-3.5-16.1-14.8-12.6-25.3s14.8-16.1 25.3-12.6c2.5 .8 4.9 1.7 7.2 2.4c13.6 4.6 24 8.1 35.1 8.5c8.6 .3 16.5-1.6 21.4-4.7c4.1-2.5 6-5.5 5.9-10.5c0-2.9-.8-5-5.9-8.2c-6.3-4-15.4-6.9-28-10.7l-1.7-.5c-10.9-3.3-24.6-7.4-35.6-14c-12.7-7.7-24.6-20.5-24.7-40.7c-.1-21.1 11.8-35.7 25.8-43.9c6.9-4.1 14.5-6.8 22.2-8.5V152c0-11 9-20 20-20s20 9 20 20z" + } + }, + "free": [ + "solid" + ] + }, + "monument": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5a6" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "historic", + "landmark", + "memorable" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5a6", + "label": "Monument", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M180.7 4.7c6.2-6.2 16.4-6.2 22.6 0l80 80c2.5 2.5 4.1 5.8 4.6 9.3l40.2 322H55.9L96.1 94c.4-3.5 2-6.8 4.6-9.3l80-80zM152 272c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H152zM32 448H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "moon": { + "aliases": { + "unicodes": { + "composite": [ + "1f319", + "23fe" + ], + "secondary": [ + "10f186" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Power Sleep Symbol", + "contrast", + "crescent", + "crescent moon", + "dark", + "lunar", + "moon", + "night" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f186", + "label": "Moon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M223.5 32C100 32 0 132.3 0 256S100 480 223.5 480c60.6 0 115.5-24.2 155.8-63.4c5-4.9 6.3-12.5 3.1-18.7s-10.1-9.7-17-8.5c-9.8 1.7-19.8 2.6-30.1 2.6c-96.9 0-175.5-78.8-175.5-176c0-65.8 36-123.1 89.3-153.3c6.1-3.5 9.2-10.5 7.7-17.3s-7.3-11.9-14.3-12.5c-6.3-.5-12.6-.8-19-.8z" + }, + "regular": { + "last_modified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M144.7 98.7c-21 34.1-33.1 74.3-33.1 117.3c0 98 62.8 181.4 150.4 211.7c-12.4 2.8-25.3 4.3-38.6 4.3C126.6 432 48 353.3 48 256c0-68.9 39.4-128.4 96.8-157.3zm62.1-66C91.1 41.2 0 137.9 0 256C0 379.7 100 480 223.5 480c47.8 0 92-15 128.4-40.6c1.9-1.3 3.7-2.7 5.5-4c4.8-3.6 9.4-7.4 13.9-11.4c2.7-2.4 5.3-4.8 7.9-7.3c5-4.9 6.3-12.5 3.1-18.7s-10.1-9.7-17-8.5c-3.7 .6-7.4 1.2-11.1 1.6c-5 .5-10.1 .9-15.3 1c-1.2 0-2.5 0-3.7 0c-.1 0-.2 0-.3 0c-96.8-.2-175.2-78.9-175.2-176c0-54.8 24.9-103.7 64.1-136c1-.9 2.1-1.7 3.2-2.6c4-3.2 8.2-6.2 12.5-9c3.1-2 6.3-4 9.6-5.8c6.1-3.5 9.2-10.5 7.7-17.3s-7.3-11.9-14.3-12.5c-3.6-.3-7.1-.5-10.7-.6c-2.7-.1-5.5-.1-8.2-.1c-3.3 0-6.5 .1-9.8 .2c-2.3 .1-4.6 .2-6.9 .4z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "mortar-pestle": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5a7" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crush", + "culinary", + "grind", + "medical", + "mix", + "pharmacy", + "prescription", + "spices" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5a7", + "label": "Mortar Pestle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M504.3 11.1C493.3-1.6 474.5-3.7 461 6.2L252.3 160H397.3L502.6 54.6c11.8-11.8 12.6-30.8 1.6-43.5zM32 192c-17.7 0-32 14.3-32 32s14.3 32 32 32c0 82.5 43.4 147.7 123.9 176.2c-11.1 13.9-19.4 30.3-23.9 48.1C127.6 497.4 142.3 512 160 512H352c17.7 0 32.4-14.6 28.1-31.7c-4.5-17.8-12.8-34.1-23.9-48.1C436.6 403.7 480 338.5 480 256c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + }, + "free": [ + "solid" + ] + }, + "mosque": { + "aliases": { + "unicodes": { + "composite": [ + "1f54c" + ], + "secondary": [ + "10f678" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Muslim", + "building", + "islam", + "landmark", + "mosque", + "muslim", + "religion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f678", + "label": "Mosque", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M400 0c5 0 9.8 2.4 12.8 6.4c34.7 46.3 78.1 74.9 133.5 111.5l0 0 0 0c5.2 3.4 10.5 7 16 10.6c28.9 19.2 45.7 51.7 45.7 86.1c0 28.6-11.3 54.5-29.8 73.4H221.8c-18.4-19-29.8-44.9-29.8-73.4c0-34.4 16.7-66.9 45.7-86.1c5.4-3.6 10.8-7.1 16-10.6l0 0 0 0C309.1 81.3 352.5 52.7 387.2 6.4c3-4 7.8-6.4 12.8-6.4zM288 512V440c0-13.3-10.7-24-24-24s-24 10.7-24 24v72H192c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32H608c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H560V440c0-13.3-10.7-24-24-24s-24 10.7-24 24v72H448V454c0-19-8.4-37-23-49.2L400 384l-25 20.8C360.4 417 352 435 352 454v58H288zM70.4 5.2c5.7-4.3 13.5-4.3 19.2 0l16 12C139.8 42.9 160 83.2 160 126v2H0v-2C0 83.2 20.2 42.9 54.4 17.2l16-12zM0 160H160V296.6c-19.1 11.1-32 31.7-32 55.4V480c0 9.6 2.1 18.6 5.8 26.8c-6.6 3.4-14 5.2-21.8 5.2H48c-26.5 0-48-21.5-48-48V176 160z" + } + }, + "free": [ + "solid" + ] + }, + "mosquito": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bite", + "bug", + "mosquito", + "west nile" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e52b", + "label": "Mosquito", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M463.7 505.9c9.8-8.9 10.7-24.3 2.1-34.3l-42.1-49 0-54.7c0-5.5-1.8-10.8-5.1-15.1L352 266.3l0-.3L485.4 387.8C542.4 447.6 640 405.2 640 320.6c0-47.9-34-88.3-79.4-94.2l-153-23.9 40.8-40.9c7.8-7.8 9.4-20.1 3.9-29.8L428.5 90.1l38.2-50.9c8-10.6 6.1-25.9-4.3-34.1s-25.2-6.3-33.2 4.4l-48 63.9c-5.9 7.9-6.6 18.6-1.7 27.2L402.2 140 352 190.3l0-38.2c0-14.9-10.2-27.4-24-31l0-57.2c0-4.4-3.6-8-8-8s-8 3.6-8 8l0 57.2c-13.8 3.6-24 16.1-24 31l0 38.1L237.8 140l22.6-39.5c4.9-8.6 4.2-19.3-1.7-27.2l-48-63.9c-8-10.6-22.8-12.6-33.2-4.4s-12.2 23.5-4.3 34.1l38.2 50.9-23.9 41.7c-5.5 9.7-3.9 22 3.9 29.8l40.8 40.9-153 23.9C34 232.3 0 272.7 0 320.6c0 84.6 97.6 127 154.6 67.1L288 266l0 .3-66.5 86.4c-3.3 4.3-5.1 9.6-5.1 15.1l0 54.7-42.1 49c-8.6 10.1-7.7 25.5 2.1 34.3s24.7 7.9 33.4-2.1l48-55.9c3.8-4.4 5.9-10.2 5.9-16.1l0-55.4L288 344.7l0 63.1c0 17.7 14.3 32 32 32s32-14.3 32-32l0-63.1 24.3 31.6 0 55.4c0 5.9 2.1 11.7 5.9 16.1l48 55.9c8.6 10.1 23.6 11 33.4 2.1z" + } + }, + "free": [ + "solid" + ] + }, + "mosquito-net": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bite", + "malaria", + "mosquito", + "net" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e52c", + "label": "Mosquito Net", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M168.8 462.3c-7.9-4-11.1-13.6-7.2-21.5L192 380.2l0-44.2c0-4.2 1.7-8.3 4.7-11.3L256 265.4V242.2L139.2 344C87.8 395.3 0 358.9 0 286.3c0-41.1 30.6-75.8 71.4-80.9l159.9-23.9-49.6-41.3c-5.1-4.2-7-11.1-4.9-17.4l13.9-41.7-29-58.1c-4-7.9-.7-17.5 7.2-21.5s17.5-.7 21.5 7.2l32 64c1.9 3.8 2.2 8.2 .9 12.2l-12.5 37.6L256 160.5V137.9c0-14.9 10.1-27.3 23.8-31V63.7c0-4.5 3.7-8.2 8.2-8.2s8.2 3.7 8.2 8.2V107c13.7 3.6 23.8 16.1 23.8 31v22.6l45.4-37.8L352.8 85.1c-1.3-4-1-8.4 .9-12.2l32-64c4-7.9 13.6-11.1 21.5-7.2s11.1 13.6 7.2 21.5l-29 58.1 13.9 41.7c2.1 6.2 .1 13.1-4.9 17.4l-49.6 41.3 159.9 23.9c22.5 2.8 41.8 14.6 54.7 31.4c-2.7 2.6-5.2 5.4-7.3 8.6c-8.6-12.9-23.3-21.5-40-21.5s-31.4 8.5-40 21.5c-8.6-12.9-23.3-21.5-40-21.5c-21.7 0-40 14.3-45.9 34.1c-10.7 3.2-19.8 10.1-25.9 19.2l-40.2-35v23.1l32.4 32.4c-.3 2-.4 4.1-.4 6.2c0 16.7 8.5 31.4 21.5 40c-4 2.6-7.5 5.9-10.6 9.5L320 310.6v50c0 17.7-14.3 32-32 32s-32-14.3-32-32v-50l-32 32 0 41.4c0 2.5-.6 4.9-1.7 7.2l-32 64c-4 7.9-13.6 11.1-21.5 7.2zM512 256c8.8 0 16 7.2 16 16v16h48V272c0-8.8 7.2-16 16-16s16 7.2 16 16v16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H608v48h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H608v48h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H608v16c0 8.8-7.2 16-16 16s-16-7.2-16-16V480H528v16c0 8.8-7.2 16-16 16s-16-7.2-16-16V480H448v16c0 8.8-7.2 16-16 16s-16-7.2-16-16V480H400c-8.8 0-16-7.2-16-16s7.2-16 16-16h16V400H400c-8.8 0-16-7.2-16-16s7.2-16 16-16h16V320H400c-8.8 0-16-7.2-16-16s7.2-16 16-16h16V272c0-8.8 7.2-16 16-16s16 7.2 16 16v16h48V272c0-8.8 7.2-16 16-16zm16 112h48V320H528v48zm0 80h48V400H528v48zM448 320v48h48V320H448zm0 80v48h48V400H448z" + } + }, + "free": [ + "solid" + ] + }, + "motorcycle": { + "aliases": { + "unicodes": { + "composite": [ + "1f3cd" + ], + "secondary": [ + "10f21c" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bike", + "machine", + "motorcycle", + "racing", + "transportation", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f21c", + "label": "Motorcycle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M280 32c-13.3 0-24 10.7-24 24s10.7 24 24 24h57.7l16.4 30.3L256 192l-45.3-45.3c-12-12-28.3-18.7-45.3-18.7H64c-17.7 0-32 14.3-32 32v32h96c88.4 0 160 71.6 160 160c0 11-1.1 21.7-3.2 32h70.4c-2.1-10.3-3.2-21-3.2-32c0-52.2 25-98.6 63.7-127.8l15.4 28.6C402.4 276.3 384 312 384 352c0 70.7 57.3 128 128 128s128-57.3 128-128s-57.3-128-128-128c-13.5 0-26.5 2.1-38.7 6L418.2 128H480c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H459.6c-7.5 0-14.7 2.6-20.5 7.4L391.7 78.9l-14-26c-7-12.9-20.5-21-35.2-21H280zM462.7 311.2l28.2 52.2c6.3 11.7 20.9 16 32.5 9.7s16-20.9 9.7-32.5l-28.2-52.2c2.3-.3 4.7-.4 7.1-.4c35.3 0 64 28.7 64 64s-28.7 64-64 64s-64-28.7-64-64c0-15.5 5.5-29.7 14.7-40.8zM187.3 376c-9.5 23.5-32.5 40-59.3 40c-35.3 0-64-28.7-64-64s28.7-64 64-64c26.9 0 49.9 16.5 59.3 40h66.4C242.5 268.8 190.5 224 128 224C57.3 224 0 281.3 0 352s57.3 128 128 128c62.5 0 114.5-44.8 125.8-104H187.3zM128 384a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "mound": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barrier", + "hill", + "pitcher", + "speedbump" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e52d", + "label": "Mound", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M113.1 179.2C142.8 127.7 197.6 96 257 96s114.2 31.7 143.9 83.2L509.4 368c12.3 21.3-3.1 48-27.7 48H32.3c-24.6 0-40-26.6-27.7-48L113.1 179.2z" + } + }, + "free": [ + "solid" + ] + }, + "mountain": { + "aliases": { + "unicodes": { + "composite": [ + "1f3d4" + ], + "secondary": [ + "10f6fc" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "glacier", + "hiking", + "hill", + "landscape", + "mountain", + "snow", + "snow-capped mountain", + "travel", + "view" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6fc", + "label": "Mountain", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669918857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 32c12.5 0 24.1 6.4 30.7 17L503.4 394.4c5.6 8.9 8.6 19.2 8.6 29.7c0 30.9-25 55.9-55.9 55.9H55.9C25 480 0 455 0 424.1c0-10.5 3-20.8 8.6-29.7L225.2 49c6.6-10.6 18.3-17 30.8-17zm65 192L256 120.4 176.9 246.5l18.3 24.4c6.4 8.5 19.2 8.5 25.6 0l25.6-34.1c6-8.1 15.5-12.8 25.6-12.8h49z" + } + }, + "free": [ + "solid" + ] + }, + "mountain-city": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "location", + "rural", + "urban" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e52e", + "label": "Mountain City", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M336 0c-26.5 0-48 21.5-48 48v92.1l71.4 118.4c2.5-1.6 5.4-2.5 8.6-2.5h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16h-3.5l73.8 122.4c12.4 20.6 12.9 46.3 1.2 67.3c-.4 .8-.9 1.6-1.4 2.3H592c26.5 0 48-21.5 48-48V240c0-26.5-21.5-48-48-48H568V120c0-13.3-10.7-24-24-24s-24 10.7-24 24v72H480V48c0-26.5-21.5-48-48-48H336zm32 64h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V80c0-8.8 7.2-16 16-16zM352 176c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16V176zm160 96c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V272zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H528c-8.8 0-16-7.2-16-16V368c0-8.8 7.2-16 16-16zM224 188.9L283.8 288H223l-48 64-24.6-41.2L224 188.9zm29.4-44.2C247.1 134.3 236 128 224 128s-23.1 6.3-29.4 16.7L5.1 458.9c-6.5 10.8-6.7 24.3-.7 35.3S22 512 34.5 512H413.5c12.5 0 24-6.8 30.1-17.8s5.8-24.5-.7-35.3L253.4 144.7z" + } + }, + "free": [ + "solid" + ] + }, + "mountain-sun": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "country", + "hiking", + "landscape", + "rural", + "travel", + "view" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e52f", + "label": "Mountain Sun", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M560 160A80 80 0 1 0 560 0a80 80 0 1 0 0 160zM55.9 512H381.1h75H578.9c33.8 0 61.1-27.4 61.1-61.1c0-11.2-3.1-22.2-8.9-31.8l-132-216.3C495 196.1 487.8 192 480 192s-15 4.1-19.1 10.7l-48.2 79L286.8 81c-6.6-10.6-18.3-17-30.8-17s-24.1 6.4-30.8 17L8.6 426.4C3 435.3 0 445.6 0 456.1C0 487 25 512 55.9 512z" + } + }, + "free": [ + "solid" + ] + }, + "mug-hot": { + "aliases": { + "unicodes": { + "composite": [ + "2615" + ], + "secondary": [ + "10f7b6" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beverage", + "caliente", + "cocoa", + "coffee", + "cup", + "drink", + "holiday", + "hot", + "hot beverage", + "hot chocolate", + "steam", + "steaming", + "tea", + "warmth" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7b6", + "label": "Mug Hot", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M88 0C74.7 0 64 10.7 64 24c0 38.9 23.4 59.4 39.1 73.1l1.1 1C120.5 112.3 128 119.9 128 136c0 13.3 10.7 24 24 24s24-10.7 24-24c0-38.9-23.4-59.4-39.1-73.1l-1.1-1C119.5 47.7 112 40.1 112 24c0-13.3-10.7-24-24-24zM32 192c-17.7 0-32 14.3-32 32V416c0 53 43 96 96 96H288c53 0 96-43 96-96h16c61.9 0 112-50.1 112-112s-50.1-112-112-112H352 32zm352 64h16c26.5 0 48 21.5 48 48s-21.5 48-48 48H384V256zM224 24c0-13.3-10.7-24-24-24s-24 10.7-24 24c0 38.9 23.4 59.4 39.1 73.1l1.1 1C232.5 112.3 240 119.9 240 136c0 13.3 10.7 24 24 24s24-10.7 24-24c0-38.9-23.4-59.4-39.1-73.1l-1.1-1C231.5 47.7 224 40.1 224 24z" + } + }, + "free": [ + "solid" + ] + }, + "mug-saucer": { + "aliases": { + "names": [ + "coffee" + ], + "unicodes": { + "secondary": [ + "10f0f4" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beverage", + "breakfast", + "cafe", + "drink", + "fall", + "morning", + "mug", + "seasonal", + "tea" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0f4", + "label": "Mug Saucer", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 64c0-17.7 14.3-32 32-32H448h64c70.7 0 128 57.3 128 128s-57.3 128-128 128H480c0 53-43 96-96 96H192c-53 0-96-43-96-96V64zM480 224h32c35.3 0 64-28.7 64-64s-28.7-64-64-64H480V224zM32 416H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "music": { + "aliases": { + "unicodes": { + "composite": [ + "1f3b5" + ], + "secondary": [ + "10f001" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.2.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "lyrics", + "melody", + "music", + "musical note", + "note", + "sing", + "sound" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f001", + "label": "Music", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M499.1 6.3c8.1 6 12.9 15.6 12.9 25.7v72V368c0 44.2-43 80-96 80s-96-35.8-96-80s43-80 96-80c11.2 0 22 1.6 32 4.6V147L192 223.8V432c0 44.2-43 80-96 80s-96-35.8-96-80s43-80 96-80c11.2 0 22 1.6 32 4.6V200 128c0-14.1 9.3-26.6 22.8-30.7l320-96c9.7-2.9 20.2-1.1 28.3 5z" + } + }, + "free": [ + "solid" + ] + }, + "n": { + "aliases": { + "unicodes": { + "composite": [ + "6e" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter N", + "Latin Small Letter N", + "letter", + "nay", + "no" + ] + }, + "styles": [ + "solid" + ], + "unicode": "4e", + "label": "N", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M21.1 33.9c12.7-4.6 26.9-.7 35.5 9.6L320 359.6V64c0-17.7 14.3-32 32-32s32 14.3 32 32V448c0 13.5-8.4 25.5-21.1 30.1s-26.9 .7-35.5-9.6L64 152.4V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V64C0 50.5 8.4 38.5 21.1 33.9z" + } + }, + "free": [ + "solid" + ] + }, + "naira-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Naira Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e1f6", + "label": "Naira Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M122.6 46.3c-7.8-11.7-22.4-17-35.9-12.9S64 49.9 64 64V256H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V320H228.2l97.2 145.8c7.8 11.7 22.4 17 35.9 12.9s22.7-16.5 22.7-30.6V320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H384V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V256H262.5L122.6 46.3zM305.1 320H320v22.3L305.1 320zM185.5 256H128V169.7L185.5 256z" + } + }, + "free": [ + "solid" + ] + }, + "napster": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d2", + "label": "Napster", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9.1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1.1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7.2-158.2V93.2c-17.3.5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5.1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z" + } + }, + "free": [ + "brands" + ] + }, + "neos": { + "changes": [ + "5.2.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f612", + "label": "Neos", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M415.44 512h-95.11L212.12 357.46v91.1L125.69 512H28V29.82L68.47 0h108.05l123.74 176.13V63.45L386.69 0h97.69v461.5zM38.77 35.27V496l72-52.88V194l215.5 307.64h84.79l52.35-38.17h-78.27L69 13zm82.54 466.61l80-58.78v-101l-79.76-114.4v220.94L49 501.89h72.34zM80.63 10.77l310.6 442.57h82.37V10.77h-79.75v317.56L170.91 10.77zM311 191.65l72 102.81V15.93l-72 53v122.72z" + } + }, + "free": [ + "brands" + ] + }, + "network-wired": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6ff" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "connect", + "ethernet", + "internet", + "intranet" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6ff", + "label": "Network Wired", + "voted": true, + "svg": { + "solid": { + "last_modified": 1660321846, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 64H384v64H256V64zM240 0c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48h48v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96v32H80c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H240c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H192V288H448v32H400c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H560c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H512V288h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V192h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H240zM96 448V384H224v64H96zm320-64H544v64H416V384z" + } + }, + "free": [ + "solid" + ] + }, + "neuter": { + "aliases": { + "unicodes": { + "composite": [ + "26b2" + ], + "secondary": [ + "10f22c" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Neuter", + "gender" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f22c", + "label": "Neuter", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 176a112 112 0 1 1 224 0A112 112 0 1 1 64 176zM208 349.1c81.9-15 144-86.8 144-173.1C352 78.8 273.2 0 176 0S0 78.8 0 176c0 86.3 62.1 158.1 144 173.1V480c0 17.7 14.3 32 32 32s32-14.3 32-32V349.1z" + } + }, + "free": [ + "solid" + ] + }, + "newspaper": { + "aliases": { + "unicodes": { + "composite": [ + "1f4f0" + ], + "secondary": [ + "10f1ea" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "article", + "editorial", + "headline", + "journal", + "journalism", + "news", + "newspaper", + "paper", + "press" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1ea", + "label": "Newspaper", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 96c0-35.3 28.7-64 64-64H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H80c-44.2 0-80-35.8-80-80V128c0-17.7 14.3-32 32-32s32 14.3 32 32V400c0 8.8 7.2 16 16 16s16-7.2 16-16V96zm64 24v80c0 13.3 10.7 24 24 24H424c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24H184c-13.3 0-24 10.7-24 24zm0 184c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm160 0c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H336c-8.8 0-16 7.2-16 16zM160 400c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16zm160 0c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16H336c-8.8 0-16 7.2-16 16z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M168 80c-13.3 0-24 10.7-24 24V408c0 8.4-1.4 16.5-4.1 24H440c13.3 0 24-10.7 24-24V104c0-13.3-10.7-24-24-24H168zM72 432c13.3 0 24-10.7 24-24V104c0-39.8 32.2-72 72-72H440c39.8 0 72 32.2 72 72V408c0 39.8-32.2 72-72 72H72c-39.8 0-72-32.2-72-72V112C0 98.7 10.7 88 24 88s24 10.7 24 24V408c0 13.3 10.7 24 24 24zM176 136c0-13.3 10.7-24 24-24H408c13.3 0 24 10.7 24 24v80c0 13.3-10.7 24-24 24H200c-13.3 0-24-10.7-24-24V136zm24 136h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24s10.7-24 24-24zm144 0h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H344c-13.3 0-24-10.7-24-24s10.7-24 24-24zM200 352h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H200c-13.3 0-24-10.7-24-24s10.7-24 24-24zm144 0h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H344c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "nfc-directional": { + "changes": [ + "6.1.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connect", + "data", + "near field communication", + "nfc", + "scan", + "signal", + "transfer", + "wireless" + ] + }, + "styles": [ + "brands" + ], + "unicode": "e530", + "label": "NFC Directional", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M211.8 488.6C213.4 491.1 213.9 494.2 213.2 497.1C212.6 500 210.8 502.6 208.3 504.2C205.7 505.8 202.7 506.3 199.7 505.7C138.3 491.8 84.1 455.8 47.53 404.5C10.97 353.2-5.395 290.3 1.57 227.7C8.536 165 38.34 107.2 85.29 65.21C132.2 23.2 193-.0131 256 0C257.5 0 258.1 .2931 260.3 .8627C261.7 1.432 262.1 2.267 264 3.319C265.1 4.371 265.9 5.619 266.5 6.993C267 8.367 267.3 9.839 267.3 11.32V112.3L291.8 86.39C292.8 85.31 294 84.44 295.4 83.84C296.7 83.23 298.2 82.9 299.7 82.86C301.2 82.81 302.6 83.06 304 83.59C305.4 84.12 306.7 84.92 307.8 85.94C308.8 86.96 309.7 88.18 310.3 89.54C310.9 90.89 311.3 92.35 311.3 93.84C311.3 95.32 311.1 96.8 310.6 98.18C310 99.57 309.2 100.8 308.2 101.9L264.2 148.5C263.1 149.6 261.9 150.5 260.5 151.1C259 151.7 257.5 152 255.1 152C254.5 152 252.9 151.7 251.5 151.1C250.1 150.5 248.8 149.6 247.8 148.5L203.7 101.9C201.7 99.74 200.6 96.83 200.7 93.84C200.7 90.84 202 87.1 204.2 85.94C206.4 83.88 209.3 82.77 212.3 82.86C215.3 82.94 218.1 84.21 220.2 86.39L244.7 112.4V22.89C188.3 25.64 134.9 48.73 94.23 87.87C53.58 127 28.49 179.6 23.61 235.8C18.73 292 34.38 348.1 67.68 393.7C100.1 439.2 149.7 471.2 204.7 483.6C207.6 484.3 210.2 486.1 211.8 488.6L211.8 488.6zM171.4 126.1C170.6 127.4 169.5 128.5 168.3 129.3C147.8 143.2 131.1 161.9 119.5 183.8C107.9 205.7 101.8 230.1 101.8 254.9C101.8 279.7 107.9 304.1 119.5 325.1C131.1 347.9 147.8 366.6 168.3 380.5C170.8 382.2 172.5 384.8 173 387.8C173.6 390.7 172.1 393.8 171.3 396.2C169.6 398.7 166.1 400.4 164 400.1C161.1 401.5 158 400.9 155.6 399.2C132 383.2 112.8 361.7 99.46 336.5C86.15 311.4 79.19 283.4 79.19 254.9C79.19 226.5 86.15 198.4 99.46 173.3C112.8 148.1 132 126.6 155.6 110.6C156.8 109.8 158.2 109.2 159.6 108.8C161.1 108.5 162.6 108.5 164.1 108.8C165.5 109 166.9 109.6 168.2 110.4C169.5 111.2 170.5 112.3 171.4 113.5C172.2 114.7 172.8 116.1 173.1 117.6C173.4 119.1 173.4 120.6 173.1 122C172.8 123.5 172.3 124.9 171.4 126.1H171.4zM340.9 383.5C341.7 382.3 342.8 381.2 343.1 380.4V380.3C364.4 366.3 381.1 347.6 392.7 325.7C404.2 303.9 410.2 279.5 410.2 254.8C410.2 230.1 404.2 205.7 392.7 183.8C381.1 161.1 364.4 143.3 343.1 129.3C342.8 128.5 341.7 127.4 340.9 126.2C340.1 124.9 339.5 123.5 339.3 122.1C338.1 120.6 339 119.1 339.3 117.7C339.6 116.2 340.2 114.8 341 113.6C341.9 112.4 342.1 111.3 344.2 110.5C345.4 109.7 346.8 109.2 348.3 108.9C349.8 108.6 351.2 108.6 352.7 108.9C354.2 109.2 355.5 109.8 356.8 110.7C380.2 126.7 399.5 148.2 412.7 173.3C426 198.4 432.1 226.4 432.1 254.8C432.1 283.3 426 311.3 412.7 336.4C399.5 361.5 380.2 383 356.8 399C355.5 399.9 354.2 400.5 352.7 400.8C351.2 401.1 349.8 401.1 348.3 400.8C346.8 400.5 345.4 399.1 344.2 399.2C342.1 398.4 341.9 397.3 341 396.1C340.2 394.9 339.6 393.5 339.3 392C339 390.6 338.1 389.1 339.3 387.6C339.5 386.2 340.1 384.8 340.9 383.5V383.5zM312.3 6.307C368.5 19.04 418.7 50.28 455 95.01C485.4 132.6 504.6 178 510.3 226C515.9 274 507.9 322.7 487.1 366.3C466.2 409.9 433.5 446.8 392.6 472.6C351.7 498.3 304.4 512 256 512C254.5 512 253.1 511.7 251.7 511.1C250.3 510.6 249.1 509.7 248 508.7C246.1 507.6 246.1 506.4 245.6 505C245 503.6 244.7 502.2 244.7 500.7V401.5L220.2 427.5C218.1 429.7 215.3 430.1 212.3 431.1C209.3 431.2 206.4 430 204.2 427.1C202 425.9 200.7 423.1 200.7 420.1C200.6 417.1 201.7 414.2 203.7 412L247.8 365.4C249.1 363.2 252.9 362 255.1 362C259.1 362 262 363.2 264.2 365.4L308.2 412C310.3 414.2 311.4 417.1 311.3 420.1C311.2 423.1 309.9 425.9 307.8 427.1C305.6 430 302.7 431.2 299.7 431.1C296.7 430.1 293.8 429.7 291.8 427.5L267.3 401.6V489.1C323.7 486.3 377.1 463.3 417.8 424.1C458.5 384.1 483.6 332.4 488.5 276.2C493.3 219.1 477.7 163.9 444.4 118.3C411.1 72.75 362.4 40.79 307.4 28.36C305.9 28.03 304.6 27.42 303.3 26.57C302.1 25.71 301.1 24.63 300.3 23.37C299.5 22.12 298.1 20.72 298.7 19.26C298.5 17.8 298.5 16.3 298.8 14.85C299.2 13.41 299.8 12.04 300.6 10.82C301.5 9.61 302.6 8.577 303.8 7.784C305.1 6.99 306.5 6.451 307.9 6.198C309.4 5.945 310.9 5.982 312.3 6.307L312.3 6.307zM353.1 256.1C353.1 287.5 335.6 317.2 303.8 339.6C301.7 341.1 299 341.9 296.4 341.6C293.7 341.4 291.2 340.3 289.4 338.4L219.3 268.6C217.1 266.5 215.1 263.6 215.9 260.6C215.9 257.6 217.1 254.7 219.2 252.6C221.4 250.5 224.2 249.3 227.2 249.3C230.2 249.3 233.1 250.5 235.2 252.6L298.3 315.4C319.1 298.3 330.5 277.5 330.5 256.1C330.5 232.2 316.4 209.1 290.8 191C288.3 189.3 286.7 186.7 286.2 183.7C285.7 180.8 286.3 177.7 288.1 175.3C289.8 172.8 292.4 171.2 295.4 170.7C298.3 170.2 301.4 170.8 303.8 172.6C335.6 195 353.1 224.7 353.1 256.1V256.1zM216.7 341.5C213.7 342 210.7 341.3 208.2 339.6C176.5 317.2 158.1 287.5 158.1 256.1C158.1 224.7 176.5 195 208.2 172.6C210.4 171 213.1 170.3 215.7 170.5C218.4 170.8 220.8 171.9 222.7 173.8L292.8 243.6C294.9 245.7 296.1 248.6 296.1 251.6C296.1 254.6 294.1 257.4 292.8 259.6C290.7 261.7 287.8 262.9 284.9 262.9C281.9 262.9 278.1 261.7 276.9 259.6L213.8 196.7C192.9 214 181.6 234.7 181.6 256.1C181.6 279.1 195.7 303.1 221.3 321.1C223.7 322.9 225.4 325.5 225.9 328.5C226.4 331.4 225.7 334.4 224 336.9C222.3 339.3 219.6 341 216.7 341.5L216.7 341.5z" + } + }, + "free": [ + "brands" + ] + }, + "nfc-symbol": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connect", + "data", + "near field communication", + "nfc", + "scan", + "signal", + "transfer", + "wireless" + ] + }, + "styles": [ + "brands" + ], + "unicode": "e531", + "label": "Nfc Symbol", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M392.9 32.43C400.6 31.1 408.6 32.89 414.1 37.41C498.2 96.14 544 173.7 544 255.1C544 338.2 498.2 415.9 414.1 474.6C409.3 478.6 402.4 480.5 395.5 479.9C388.5 479.3 382 476.3 377.1 471.4L193.7 288.7C188.1 283.2 185 275.7 184.1 267.8C184.1 260 188.1 252.5 193.6 246.9C199.2 241.4 206.7 238.2 214.5 238.2C222.4 238.2 229.9 241.3 235.4 246.8L400.5 411.2C455.1 366.5 484.8 312 484.8 255.1C484.8 193.5 447.9 132.9 380.9 85.76C374.5 81.24 370.1 74.35 368.8 66.62C367.4 58.89 369.2 50.94 373.8 44.53C378.3 38.12 385.2 33.77 392.9 32.43V32.43zM186.9 479.6C179.2 480.9 171.3 479.1 164.8 474.6C81.67 415.9 35.84 338.2 35.84 255.1C35.84 173.7 81.67 96.14 164.8 37.41C170.5 33.4 177.4 31.53 184.4 32.12C191.3 32.71 197.8 35.72 202.7 40.63L386.1 223.3C391.7 228.8 394.8 236.3 394.8 244.2C394.9 251.1 391.8 259.5 386.2 265.1C380.7 270.6 373.2 273.8 365.3 273.8C357.5 273.8 349.1 270.7 344.4 265.2L179.3 100.7C124.7 145.9 95.03 199.9 95.03 255.1C95.03 318.5 131.9 379.1 198.1 426.2C205.4 430.8 209.7 437.6 211.1 445.4C212.4 453.1 210.6 461.1 206.1 467.5C201.6 473.9 194.7 478.2 186.9 479.6V479.6z" + } + }, + "free": [ + "brands" + ] + }, + "nimblr": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5a8", + "label": "Nimblr", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M246.6 299.29c15.57 0 27.15 11.46 27.15 27s-11.62 27-27.15 27c-15.7 0-27.15-11.57-27.15-27s11.55-27 27.15-27zM113 326.25c0-15.61 11.68-27 27.15-27s27.15 11.46 27.15 27-11.47 27-27.15 27c-15.44 0-27.15-11.31-27.15-27M191.76 159C157 159 89.45 178.77 59.25 227L14 0v335.48C14 433.13 93.61 512 191.76 512s177.76-78.95 177.76-176.52S290.13 159 191.76 159zm0 308.12c-73.27 0-132.51-58.9-132.51-131.59s59.24-131.59 132.51-131.59 132.51 58.86 132.51 131.54S265 467.07 191.76 467.07z" + } + }, + "free": [ + "brands" + ] + }, + "node": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f419", + "label": "Node.js", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4.1l14.8 8.8c.5.3 1.3.3 1.8 0L375 408c.5-.3.9-.9.9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6.3-.9 1-.9 1.6v66.7c0 .6.4 1.2.9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9.7-1.7 1.7-1.7h7.3c.9 0 1.7.7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6.2.8.8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5.3-.4.5-.8.4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7.7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7.1 1.8 1.2 2.1 2.8.1 1 .3 2.7.6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3.4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3.7 2.5 1.8 3.2 1.1.7 2.5.7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6.3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1.7 2.6.7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6.3-.9.9-.9 1.6v24.3c0 .7.4 1.3.9 1.6l21 12.1c.6.3 1.3.3 1.8 0l21-12.1c.6-.3.9-.9.9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3.7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1.7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4.3-.7.7-.7 1.2v13.6c0 .5.3 1 .7 1.2l11.8 6.8c.4.3 1 .3 1.4 0L584 235c.4-.3.7-.7.7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7.1-.5.2-1.1.2-1.7zm-74.3-124.9l-.8.5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z" + } + }, + "free": [ + "brands" + ] + }, + "node-js": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d3", + "label": "Node.js JS", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6.4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2.7 376.3.7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8.5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z" + } + }, + "free": [ + "brands" + ] + }, + "not-equal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f53e" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "compare", + "math" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f53e", + "label": "Not Equal", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M353.8 37.4c14.7 9.8 18.7 29.7 8.9 44.4L321.1 144H384c17.7 0 32 14.3 32 32s-14.3 32-32 32H278.5l-64 96H384c17.7 0 32 14.3 32 32s-14.3 32-32 32H171.8l-65.2 97.7c-9.8 14.7-29.7 18.7-44.4 8.9s-18.7-29.7-8.9-44.4L94.9 368H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H137.5l64-96H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H244.2l65.2-97.7c9.8-14.7 29.7-18.7 44.4-8.9z" + } + }, + "free": [ + "solid" + ] + }, + "notdef": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "close", + "missing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e1fe", + "label": "Notdef", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 390.3L153.5 256 64 121.7V390.3zM102.5 448H281.5L192 313.7 102.5 448zm128-192L320 390.3V121.7L230.5 256zM281.5 64H102.5L192 198.3 281.5 64zM0 48C0 21.5 21.5 0 48 0H336c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48z" + } + }, + "free": [ + "solid" + ] + }, + "note-sticky": { + "aliases": { + "names": [ + "sticky-note" + ], + "unicodes": { + "composite": [ + "f24a" + ], + "secondary": [ + "10f249" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "message", + "note", + "paper", + "reminder", + "sticker" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f249", + "label": "Note Sticky", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H288V368c0-26.5 21.5-48 48-48H448V96c0-35.3-28.7-64-64-64H64zM448 352H402.7 336c-8.8 0-16 7.2-16 16v66.7V480l32-32 64-64 32-32z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H288V352c0-17.7 14.3-32 32-32h80V96c0-8.8-7.2-16-16-16H64zM288 480H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V320v5.5c0 17-6.7 33.3-18.7 45.3l-90.5 90.5c-12 12-28.3 18.7-45.3 18.7H288z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "notes-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f481" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clipboard", + "doctor", + "ehr", + "health", + "history", + "records" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f481", + "label": "Notes Medical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 352V96c0-35.3 28.7-64 64-64H416c35.3 0 64 28.7 64 64V293.5c0 17-6.7 33.3-18.7 45.3l-58.5 58.5c-12 12-28.3 18.7-45.3 18.7H160c-35.3 0-64-28.7-64-64zM272 128c-8.8 0-16 7.2-16 16v48H208c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V256h48c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H320V144c0-8.8-7.2-16-16-16H272zm24 336c13.3 0 24 10.7 24 24s-10.7 24-24 24H136C60.9 512 0 451.1 0 376V152c0-13.3 10.7-24 24-24s24 10.7 24 24l0 224c0 48.6 39.4 88 88 88H296z" + } + }, + "free": [ + "solid" + ] + }, + "npm": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d4", + "label": "npm", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z" + } + }, + "free": [ + "brands" + ] + }, + "ns8": { + "changes": [ + "5.0.0", + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d5", + "label": "NS8", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M104.324,269.172h26.067V242.994H104.324Zm52.466-26.178-.055-26.178v-.941a39.325,39.325,0,0,0-78.644.941v.166h26.4v-.166a12.98,12.98,0,0,1,25.956,0v26.178Zm52.356,25.846a91.1,91.1,0,0,1-91.1,91.1h-.609a91.1,91.1,0,0,1-91.1-91.1H0v.166A117.33,117.33,0,0,0,117.44,386.28h.775A117.331,117.331,0,0,0,235.49,268.84V242.828H209.146Zm-157.233,0a65.362,65.362,0,0,0,130.723,0H156.292a39.023,39.023,0,0,1-78.035,0V242.883H51.968v-26.62A65.42,65.42,0,0,1,182.8,217.48v25.293h26.344V217.48a91.761,91.761,0,0,0-183.522,0v25.4H51.913Zm418.4-71.173c13.67,0,24.573,6.642,30.052,18.264l.719,1.549,23.245-11.511-.609-1.439c-8.025-19.26-28.5-31.27-53.407-31.27-23.134,0-43.611,11.4-50.972,28.447-.123,26.876-.158,23.9,0,24.85,4.7,11.013,14.555,19.37,28.668,24.241a102.033,102.033,0,0,0,19.813,3.984c5.479.72,10.626,1.384,15.829,3.1,6.364,2.1,10.46,5.257,12.84,9.851v9.851c-3.708,7.527-13.781,12.342-25.791,12.342-14.334,0-25.956-6.918-31.933-19.039l-.72-1.494L415.026,280.9l.553,1.439c7.915,19.426,29.609,32.044,55.289,32.044,23.632,0,44.608-11.4,52.3-28.447l.166-25.9-.166-.664c-4.87-11.014-15.219-19.647-28.944-24.241-7.693-2.712-14.335-3.6-20.7-4.427a83.777,83.777,0,0,1-14.832-2.878c-6.31-1.937-10.4-5.092-12.619-9.63v-8.412C449.45,202.427,458.969,197.667,470.315,197.667ZM287.568,311.344h26.067v-68.4H287.568Zm352.266-53.3c-2.933-6.254-8.3-12.01-15.441-16.714A37.99,37.99,0,0,0,637.4,226l.166-25.347-.166-.664C630.038,184,610.667,173.26,589.25,173.26S548.461,184,541.1,199.992l-.166,25.347.166.664a39.643,39.643,0,0,0,13.006,15.331c-7.2,4.7-12.508,10.46-15.441,16.714l-.166,28.889.166.72c7.582,15.994,27.893,26.731,50.585,26.731s43.057-10.737,50.584-26.731l.166-28.89Zm-73.22-50.806c3.6-6.31,12.563-10.516,22.58-10.516s19.038,4.206,22.636,10.516v13.725c-3.542,6.2-12.563,10.349-22.636,10.349s-19.094-4.15-22.58-10.349Zm47.319,72.169c-3.764,6.641-13.338,10.9-24.683,10.9-11.125,0-20.976-4.372-24.684-10.9V263.25c3.708-6.309,13.5-10.515,24.684-10.515,11.345,0,20.919,4.15,24.683,10.515ZM376.4,265.962l-59.827-89.713h-29v40.623h26.51v.387l62.539,94.085H402.3V176.249H376.4Z" + } + }, + "free": [ + "brands" + ] + }, + "nutritionix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d6", + "label": "Nutritionix", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 400, + 512 + ], + "width": 400, + "height": 512, + "path": "M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z" + } + }, + "free": [ + "brands" + ] + }, + "o": { + "aliases": { + "unicodes": { + "composite": [ + "6f" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter O", + "Latin Small Letter O", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "4f", + "label": "O", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 96a160 160 0 1 0 0 320 160 160 0 1 0 0-320zM448 256A224 224 0 1 1 0 256a224 224 0 1 1 448 0z" + } + }, + "free": [ + "solid" + ] + }, + "object-group": { + "aliases": { + "unicodes": { + "secondary": [ + "10f247" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "combine", + "copy", + "design", + "merge", + "select" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f247", + "label": "Object Group", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M32 119.4C12.9 108.4 0 87.7 0 64C0 28.7 28.7 0 64 0c23.7 0 44.4 12.9 55.4 32H456.6C467.6 12.9 488.3 0 512 0c35.3 0 64 28.7 64 64c0 23.7-12.9 44.4-32 55.4V392.6c19.1 11.1 32 31.7 32 55.4c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H119.4c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V119.4zM456.6 96H119.4c-5.6 9.7-13.7 17.8-23.4 23.4V392.6c9.7 5.6 17.8 13.7 23.4 23.4H456.6c5.6-9.7 13.7-17.8 23.4-23.4V119.4c-9.7-5.6-17.8-13.7-23.4-23.4zM128 160c0-17.7 14.3-32 32-32H288c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V160zM256 320h32c35.3 0 64-28.7 64-64V224h64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H288c-17.7 0-32-14.3-32-32V320z" + }, + "regular": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M16 115.8C6.2 107 0 94.2 0 80C0 53.5 21.5 32 48 32c14.2 0 27 6.2 35.8 16H428.2c8.8-9.8 21.6-16 35.8-16c26.5 0 48 21.5 48 48c0 14.2-6.2 27-16 35.8V396.2c9.8 8.8 16 21.6 16 35.8c0 26.5-21.5 48-48 48c-14.2 0-27-6.2-35.8-16H83.8C75 473.8 62.2 480 48 480c-26.5 0-48-21.5-48-48c0-14.2 6.2-27 16-35.8V115.8zM93.3 96c-4.8 13.6-15.6 24.4-29.3 29.3V386.7c13.6 4.8 24.4 15.6 29.3 29.3H418.7c4.8-13.6 15.6-24.4 29.3-29.3V125.3c-13.6-4.8-24.4-15.6-29.3-29.3H93.3zM96 160c0-17.7 14.3-32 32-32H256c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V160zM224 320h32c35.3 0 64-28.7 64-64V224h64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H256c-17.7 0-32-14.3-32-32V320z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "object-ungroup": { + "aliases": { + "unicodes": { + "secondary": [ + "10f248" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copy", + "design", + "merge", + "select", + "separate" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f248", + "label": "Object Ungroup", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 119.4C12.9 108.4 0 87.7 0 64C0 28.7 28.7 0 64 0c23.7 0 44.4 12.9 55.4 32H328.6C339.6 12.9 360.3 0 384 0c35.3 0 64 28.7 64 64c0 23.7-12.9 44.4-32 55.4V232.6c19.1 11.1 32 31.7 32 55.4c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H119.4c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V119.4zM119.4 96c-5.6 9.7-13.7 17.8-23.4 23.4V232.6c9.7 5.6 17.8 13.7 23.4 23.4H328.6c5.6-9.7 13.7-17.8 23.4-23.4V119.4c-9.7-5.6-17.8-13.7-23.4-23.4H119.4zm192 384c-11.1 19.1-31.7 32-55.4 32c-35.3 0-64-28.7-64-64c0-23.7 12.9-44.4 32-55.4V352h64v40.6c9.7 5.6 17.8 13.7 23.4 23.4H520.6c5.6-9.7 13.7-17.8 23.4-23.4V279.4c-9.7-5.6-17.8-13.7-23.4-23.4h-46c-5.4-15.4-14.6-28.9-26.5-39.6V192h72.6c11.1-19.1 31.7-32 55.4-32c35.3 0 64 28.7 64 64c0 23.7-12.9 44.4-32 55.4V392.6c19.1 11.1 32 31.7 32 55.4c0 35.3-28.7 64-64 64c-23.7 0-44.4-12.9-55.4-32H311.4z" + }, + "regular": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48.2 66.8c-.1-.8-.2-1.7-.2-2.5c0-.1 0-.1 0-.2c0-8.8 7.2-16 16-16c.9 0 1.9 .1 2.8 .2C74.3 49.5 80 56.1 80 64c0 8.8-7.2 16-16 16c-7.9 0-14.5-5.7-15.8-13.2zM0 64c0 26.9 16.5 49.9 40 59.3V228.7C16.5 238.1 0 261.1 0 288c0 35.3 28.7 64 64 64c26.9 0 49.9-16.5 59.3-40H324.7c9.5 23.5 32.5 40 59.3 40c35.3 0 64-28.7 64-64c0-26.9-16.5-49.9-40-59.3V123.3c23.5-9.5 40-32.5 40-59.3c0-35.3-28.7-64-64-64c-26.9 0-49.9 16.5-59.3 40H123.3C113.9 16.5 90.9 0 64 0C28.7 0 0 28.7 0 64zm368 0a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM324.7 88c6.5 16 19.3 28.9 35.3 35.3V228.7c-16 6.5-28.9 19.3-35.3 35.3H123.3c-6.5-16-19.3-28.9-35.3-35.3V123.3c16-6.5 28.9-19.3 35.3-35.3H324.7zM384 272a16 16 0 1 1 0 32 16 16 0 1 1 0-32zM80 288c0 7.9-5.7 14.5-13.2 15.8c-.8 .1-1.7 .2-2.5 .2l-.2 0c-8.8 0-16-7.2-16-16c0-.9 .1-1.9 .2-2.8C49.5 277.7 56.1 272 64 272c8.8 0 16 7.2 16 16zm391.3-40h45.4c6.5 16 19.3 28.9 35.3 35.3V388.7c-16 6.5-28.9 19.3-35.3 35.3H315.3c-6.5-16-19.3-28.9-35.3-35.3V352H232v36.7c-23.5 9.5-40 32.5-40 59.3c0 35.3 28.7 64 64 64c26.9 0 49.9-16.5 59.3-40H516.7c9.5 23.5 32.5 40 59.3 40c35.3 0 64-28.7 64-64c0-26.9-16.5-49.9-40-59.3V283.3c23.5-9.5 40-32.5 40-59.3c0-35.3-28.7-64-64-64c-26.9 0-49.9 16.5-59.3 40H448v16.4c9.8 8.8 17.8 19.5 23.3 31.6zm88.9-26.7a16 16 0 1 1 31.5 5.5 16 16 0 1 1 -31.5-5.5zM271.8 450.7a16 16 0 1 1 -31.5-5.5 16 16 0 1 1 31.5 5.5zm301.5 13c-7.5-1.3-13.2-7.9-13.2-15.8c0-8.8 7.2-16 16-16c7.9 0 14.5 5.7 15.8 13.2l0 .1c.1 .9 .2 1.8 .2 2.7c0 8.8-7.2 16-16 16c-.9 0-1.9-.1-2.8-.2z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "octopus-deploy": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e082", + "label": "Octopus Deploy", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M455.6,349.2c-45.891-39.09-36.67-77.877-16.095-128.11C475.16,134.04,415.967,34.14,329.93,8.3,237.04-19.6,134.252,24.341,99.677,117.147a180.862,180.862,0,0,0-10.988,73.544c1.733,29.543,14.717,52.97,24.09,80.3,17.2,50.161-28.1,92.743-66.662,117.582-46.806,30.2-36.319,39.857-8.428,41.858,23.378,1.68,44.478-4.548,65.265-15.045,9.2-4.647,40.687-18.931,45.13-28.588C135.9,413.388,111.122,459.5,126.621,488.9c19.1,36.229,67.112-31.77,76.709-45.812,8.591-12.572,42.963-81.279,63.627-46.926,18.865,31.361,8.6,76.391,35.738,104.622,32.854,34.2,51.155-18.312,51.412-44.221.163-16.411-6.1-95.852,29.9-59.944C405.428,418,436.912,467.8,472.568,463.642c38.736-4.516-22.123-67.967-28.262-78.695,5.393,4.279,53.665,34.128,53.818,9.52C498.234,375.678,468.039,359.8,455.6,349.2Z" + } + }, + "free": [ + "brands" + ] + }, + "odnoklassniki": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f263", + "label": "Odnoklassniki", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z" + } + }, + "free": [ + "brands" + ] + }, + "odysee": { + "changes": [ + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e5c6", + "label": "Odysee", + "voted": false, + "svg": { + "brands": { + "last_modified": 1667828915, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M406.7 463c-42.3 30.8-94.4 49-150.7 49C144.9 512 50.3 441.2 14.9 342.2c2.4 1.7 5.9 3.6 7.9 4.4c16.3 7.4 40.1-5.4 62.9-28.7c6.9-6.9 14.4-12.4 22.8-17.3c18.3-11.9 37.6-20.8 58.4-27.2c0 0 22.3 34.2 43.1 74.8s-22.3 54-27.2 54c-.3 0-.8 0-1.5-.1c-11-.5-70-3-56 51.1c14.9 57.4 97.5 36.6 139.6 8.9s31.7-118.3 31.7-118.3c41.1-6.4 54 37.1 57.9 59.4c.8 4.6 1.1 9.9 1.4 15.5c1.1 21.2 2.3 45.6 35.3 46.4c5.3 0 10.6-.8 15.5-2zm-95.3-23.7c-2-.5-3.5-2.5-3-5c1-2.5 3-3.5 5-3s3.5 3 3 5s-2.5 3.5-5 3zm-207-95.6c1.5-.5 3.5 1 4 3c0 2-1 4-3 4c-1.5 .5-3.5-1-4-3c-.5-1.5 1-3.5 3-4zM451.8 421C489.3 376.4 512 318.8 512 256c0-67.5-26.1-128.9-68.8-174.7c-.1 23.5-6.1 48.2-16.8 69.2c-11.9 20.3-49 58.9-69.8 78.7c-.7 .3-1.1 .9-1.5 1.4c-.2 .2-.3 .4-.5 .6c-5 6.9-4 16.8 3 21.8c21.3 15.8 56.4 45.6 59.4 72.8c3.5 34.9 27.9 75.6 34.2 86.2l0 0c.8 1.3 1.3 2.1 1.4 2.4c0 2.2-.4 4.3-.8 6.5zM390.7 251c-.5 3 1 5.9 4 6.4s5.9-1 6.4-4s-1-5.9-4-6.4c-3-1-5.9 1-6.4 4zm61.4-60.9l-11.4 5.4-3 12.9-5.4-11.4-12.9-3 11.4-5.4 3-12.9 5.4 11.4 12.9 3zM395.5 41.3c-16.2 8.2-22.1 32.8-29 61.4l0 0c-.3 1.4-.7 2.8-1 4.2c-9.5 38.5-30.6 37.6-41.7 37.2c-1.1 0-2-.1-2.9-.1c-5.1 0-6-4-8.9-17.1c-2.6-12.1-6.9-32-17.9-63.6C271.4-2.5 211.4 13.9 165.9 41.1C110.6 74.2 131.5 143 146.1 190.5c.7 2.2 1.4 4.4 2 6.6c-4 4-13.8 7.5-26 11.9c-12.1 4.3-26.6 9.5-40.3 16.9C47.9 243.9 11.5 274.9 2 288.5C.7 277.8 0 267 0 256C0 114.6 114.6 0 256 0c51.4 0 99.4 15.2 139.5 41.3zM58.9 189.6c-1.5-2-4.5-3-6.4-1.5s-3 4.5-1.5 6.4s4.5 3 6.4 1.5c2.5-1.5 3-4.5 1.5-6.4zM327.3 64.9c2-1.5 5-.5 6.4 1.5c1.5 2.5 1 5.4-1.5 6.4c-2 1.5-5 .5-6.4-1.5s-.5-5 1.5-6.4zM95.1 105c-.5 1.5 .5 3 2 3c1.5 .5 3-.5 3-2c.5-1.5-.5-3-2-3s-3 .5-3 2zm84.7-.5c-3.5-43.1 37.1-54 37.1-54c44.1-15.4 56 5.9 66.4 37.6s3 42.6-38.6 58.9s-61.9-4.5-64.9-42.6zm89.6 14.9h1c2.5 0 5-2 5-5c2-6.9 1-14.4-2-20.8c-1.5-2-4-3.5-6.4-2.5c-3 1-4.5 4-3.5 6.9c2 4.5 3 9.9 1.5 14.9c-.5 3 1.5 5.9 4.5 6.4zm-9.9-41.6c-2 0-4-1-5-3s-2-3.5-3-5c-2-2-2-5.4 0-7.4s5.4-2 7.4 0c2 2.5 3.5 5 5 7.4s.5 5.9-2.5 7.4c-.6 0-1 .2-1.3 .3c-.2 .1-.4 .2-.6 .2z" + } + }, + "free": [ + "brands" + ] + }, + "oil-can": { + "aliases": { + "unicodes": { + "secondary": [ + "10f613" + ] + } + }, + "changes": [ + "5.2.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "crude", + "gasoline", + "grease", + "lubricate", + "petroleum" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f613", + "label": "Oil Can", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 128c17.7 0 32-14.3 32-32s-14.3-32-32-32H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v32H144 96 48c-26.5 0-48 21.5-48 48v64.8c0 19 11.2 36.2 28.5 43.9l67.5 30V368c0 26.5 21.5 48 48 48H403.1c18.4 0 35.8-7.9 48-21.7L633.5 187.7c12.3-13.9-.3-35.4-18.4-31.5L448 192l-50.5-25.2c-8.9-4.4-18.7-6.8-28.6-6.8H288V128h32zM96 208v86.1L48 272.8V208H96z" + } + }, + "free": [ + "solid" + ] + }, + "oil-well": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drill", + "oil", + "rig" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e532", + "label": "Oil Well", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M528.3 61.3c-11.4-42.7-55.3-68-98-56.6L414.9 8.8C397.8 13.4 387.7 31 392.3 48l24.5 91.4L308.5 167.5l-6.3-18.1C297.7 136.6 285.6 128 272 128s-25.7 8.6-30.2 21.4l-13.6 39L96 222.6V184c0-13.3-10.7-24-24-24s-24 10.7-24 24V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H406.7L340 257.5l-62.2 16.1L305.3 352H238.7L265 277l-74.6 19.3L137.3 448H96V288.8l337.4-87.5 25.2 94c4.6 17.1 22.1 27.2 39.2 22.6l15.5-4.1c42.7-11.4 68-55.3 56.6-98L528.3 61.3zM205.1 448l11.2-32H327.7l11.2 32H205.1z" + } + }, + "free": [ + "solid" + ] + }, + "old-republic": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [ + "politics", + "star wars" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f510", + "label": "Old Republic", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M235.76 10.23c7.5-.31 15-.28 22.5-.09 3.61.14 7.2.4 10.79.73 4.92.27 9.79 1.03 14.67 1.62 2.93.43 5.83.98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83.57 3.14 1.04 6.3 1.4 9.47.55 3.83.94 7.69 1.18 11.56.83 8.34.84 16.73.77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.503 246.503 0 0 1-56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66.91-9.34 1.73-14.03 2.48-5.25.66-10.5 1.44-15.79 1.74-6.69.66-13.41.84-20.12.81-6.82.03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49.14-3.51.34-7.01.7-10.51.31-3.17.46-6.37.92-9.52.41-2.81.65-5.65 1.16-8.44.7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23.1-18.43.99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.69-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8.11 7.14.38 14.28 1.22 21.37.62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91.29 5.81.61 8.72.9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.26 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75.13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1.9 3.02.66 6.2.69 9.31.02 4.1-.04 8.2.03 12.3.14 3.54-.02 7.09.11 10.63.08 2.38.02 4.76.05 7.14.16 5.77.06 11.53.15 17.3.11 2.91.02 5.82.13 8.74.03 1.63.13 3.28-.03 4.91-.91.12-1.82.18-2.73.16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73.84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.37-20.12c2.74.74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57.41 4.54.44 9.09.45 13.64.07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51.69-7.08 1.08-10.66 1.21-1.85.06-3.72.16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73.14-7.45.1-11.17.19-7.02.02-14.05.21-21.07.03-2.38-.03-4.76.03-7.14.17-5.07-.04-10.14.14-15.21.1-2.99-.24-6.04.51-8.96.66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46.86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61.93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07.32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.34-.01 221.02 0 1.35-.08 2.7.04 4.04.13 1.48.82 2.83 1.47 4.15.86 1.66 1.78 3.34 3.18 4.62.85.77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57.96-1.51 1.68-3.16 2.28-4.85.76-2.13.44-4.42.54-6.63.14-4.03-.02-8.06.14-12.09.03-5.89.03-11.77.06-17.66.14-3.62.03-7.24.11-10.86.15-4.03-.02-8.06.14-12.09.03-5.99.03-11.98.07-17.97.14-3.62.02-7.24.11-10.86.14-3.93-.02-7.86.14-11.78.03-5.99.03-11.98.06-17.97.16-3.94-.01-7.88.19-11.82.29 1.44.13 2.92.22 4.38.19 3.61.42 7.23.76 10.84.32 3.44.44 6.89.86 10.32.37 3.1.51 6.22.95 9.31.57 4.09.87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21.27.25.55.51.88.71.6.25 1.31-.07 1.7-.57.71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31.7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11.75 19.56 1.85 3.69.58 7.4 1.17 11.13 1.41 3.74.1 7.48.05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46.37 2.96.46 4.45.6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66.24-9.32.36-13.98.36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11.73 6.32.47 9.47.81 2.77.28 5.56.2 8.34.3 5.05.06 10.11.04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83.61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52.67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13.56-3.98.83-7.99 1.31-11.97.87-10.64 1.9-21.27 2.24-31.94.08-1.86.24-3.71.25-5.57.01-4.35.25-8.69.22-13.03-.01-2.38-.01-4.76 0-7.13.05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64.07-2.99.7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06.71-.12 1.07-.19.19 1.79.09 3.58.1 5.37v38.13c-.01 1.74.13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32.09-4.98-.03-.03-.39-.26-.91.16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54.04-.56.02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2.06 15.3-.12 3.36-.13 6.73.08 10.09-.07.12-.39.26-.77.37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36.05.72.12 1.08.2.98 3.85 1.73 7.76 2.71 11.61.36 1.42.56 2.88 1.03 4.27 2.53.18 5.07-.01 7.61.05 5.16.12 10.33.12 15.49.07.76-.01 1.52.03 2.28.08-.04.36-.07.72-.1 1.08-1.82.83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57.17-1.12.42-1.67.64-.15.55-.18 1.12-.12 1.69.87.48 1.82.81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6.38.13.78.27 1.13.49.4.27.23.79.15 1.18-1.66.13-3.31.03-4.97.04-5.17.01-10.33-.01-15.5.01-1.61.03-3.22-.02-4.82.21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36.01-.71.02-1.06.06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58.11-5.37zM65.05 168.33c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83.96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67.99 2.9 1.59 5.91 2.17 8.92.15.75.22 1.52.16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11.78-8.29.99-12.46 1.08-10.25.24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43.11-6.18.25-12.37 1.07-18.5.4-2.86.67-5.74 1.15-8.6.98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.73-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05.02 1.76.07 3.52.11 5.29.13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51.25-2.99.53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05.63-2.87 1.04-5.78 1.52-8.68.87-6.09 1.59-12.22 1.68-18.38.12-6.65.14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z" + } + }, + "free": [ + "brands" + ] + }, + "om": { + "aliases": { + "unicodes": { + "composite": [ + "1f549" + ], + "secondary": [ + "10f679" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Hindu", + "buddhism", + "hinduism", + "jainism", + "mantra", + "om", + "religion" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f679", + "label": "Om", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M379.3 4.7c-6.2-6.2-16.4-6.2-22.6 0l-16 16c-6.2 6.2-6.2 16.4 0 22.6l16 16c6.2 6.2 16.4 6.2 22.6 0l16-16c6.2-6.2 6.2-16.4 0-22.6l-16-16zM115.2 169.6c8-6 17.9-9.6 28.8-9.6c26.5 0 48 21.5 48 48s-21.5 48-48 48H109.8c-7.6 0-13.8 6.2-13.8 13.8c0 1.5 .2 2.9 .7 4.4l8 24c4.4 13.1 16.6 21.9 30.4 21.9H144h16c35.3 0 64 28.7 64 64s-28.7 64-64 64c-50.8 0-82.7-21.5-102.2-42.8c-9.9-10.8-16.6-21.6-20.9-29.7c-2.1-4-3.6-7.3-4.5-9.6c-.5-1.1-.8-2-1-2.5l-.2-.5 0-.1c-2.6-7.8-10.7-12.3-18.7-10.5C4.4 354.2-.9 361.8 .1 370L16 368C.1 370 .1 370 .1 370l0 0 0 0 0 .1 .1 .4c0 .3 .1 .8 .2 1.3c.2 1.1 .4 2.7 .8 4.6c.8 3.9 2 9.4 3.9 15.9c3.8 13 10.3 30.4 21.3 48C48.7 476.2 89.4 512 160 512c70.7 0 128-57.3 128-128c0-23.3-6.2-45.2-17.1-64h22.6c25.5 0 49.9-10.1 67.9-28.1l26.5-26.5c6-6 14.1-9.4 22.6-9.4H416c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32c-25.7 0-41.4-12.5-51.2-25.6c-5-6.7-8.4-13.4-10.5-18.6c-1.1-2.5-1.8-4.6-2.2-6c-.2-.7-.4-1.2-.5-1.5l-.1-.3 0 0c0 0 0 0 0 0c-1.9-7.3-8.6-12.4-16.2-12.1c-7.6 .3-13.9 5.9-15.1 13.4L336 368c-15.8-2.6-15.8-2.6-15.8-2.6l0 0 0 0 0 .1-.1 .3c0 .3-.1 .6-.2 1.1c-.1 .9-.3 2.1-.4 3.6c-.3 3-.6 7.3-.6 12.4c0 10.1 1.1 23.9 5.8 38.1c4.8 14.3 13.4 29.3 28.6 40.7C368.7 473.3 389.3 480 416 480c53 0 96-43 96-96V288c0-53-43-96-96-96h-5.5c-25.5 0-49.9 10.1-67.9 28.1l-26.5 26.5c-6 6-14.1 9.4-22.6 9.4H245.2c6.9-14.5 10.8-30.8 10.8-48c0-61.9-50.1-112-112-112c-25.2 0-48.5 8.3-67.2 22.4c-14.1 10.6-17 30.7-6.4 44.8s30.7 17 44.8 6.4zM280.9 66.7c-6-4-14-3.5-19.5 1.3s-7 12.7-3.7 19.2L272 80c-14.3 7.2-14.3 7.2-14.3 7.2l0 0 0 0 0 .1 .1 .2 .4 .7c.3 .6 .8 1.4 1.4 2.4c1.2 2 2.9 4.8 5.1 8.2c4.4 6.7 11.1 15.5 20 24.4C302.4 141.1 330.3 160 368 160c31.2 0 56.6-10.4 73.9-20.2c8.7-5 15.6-9.9 20.4-13.8c2.4-1.9 4.3-3.6 5.7-4.9c.7-.6 1.3-1.2 1.7-1.6l.6-.5 .2-.2 .1-.1 0 0 0 0c0 0 0 0-22.6-22.6l22.6 22.6c12.5-12.5 12.5-32.8 0-45.3c-12.4-12.4-32.6-12.5-45.1-.2c-.1 .1-.2 .2-.5 .4c-.5 .5-1.5 1.3-2.8 2.4c-2.7 2.2-6.8 5.2-12.1 8.2C399.4 90.4 384.8 96 368 96c-20.8 0-42.4-7-59.5-14.6c-8.4-3.7-15.4-7.5-20.3-10.3c-2.4-1.4-4.3-2.5-5.6-3.3c-.6-.4-1.1-.7-1.4-.9l-.3-.2 0 0 0 0 0 0z" + } + }, + "free": [ + "solid" + ] + }, + "opencart": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f23d", + "label": "OpenCart", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z" + } + }, + "free": [ + "brands" + ] + }, + "openid": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f19b", + "label": "OpenID", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z" + } + }, + "free": [ + "brands" + ] + }, + "opera": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f26a", + "label": "Opera", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1.3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z" + } + }, + "free": [ + "brands" + ] + }, + "optin-monster": { + "changes": [ + "4.4.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f23c", + "label": "Optin Monster", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M572.6 421.4c5.6-9.5 4.7-15.2-5.4-11.6-3-4.9-7-9.5-11.1-13.8 2.9-9.7-.7-14.2-10.8-9.2-4.6-3.2-10.3-6.5-15.9-9.2 0-15.1-11.6-11.6-17.6-5.7-10.4-1.5-18.7-.3-26.8 5.7.3-6.5.3-13 .3-19.7 12.6 0 40.2-11 45.9-36.2 1.4-6.8 1.6-13.8-.3-21.9-3-13.5-14.3-21.3-25.1-25.7-.8-5.9-7.6-14.3-14.9-15.9s-12.4 4.9-14.1 10.3c-8.5 0-19.2 2.8-21.1 8.4-5.4-.5-11.1-1.4-16.8-1.9 2.7-1.9 5.4-3.5 8.4-4.6 5.4-9.2 14.6-11.4 25.7-11.6V256c19.5-.5 43-5.9 53.8-18.1 12.7-13.8 14.6-37.3 12.4-55.1-2.4-17.3-9.7-37.6-24.6-48.1-8.4-5.9-21.6-.8-22.7 9.5-2.2 19.6 1.2 30-38.6 25.1-10.3-23.8-24.6-44.6-42.7-60C341 49.6 242.9 55.5 166.4 71.7c19.7 4.6 41.1 8.6 59.7 16.5-26.2 2.4-52.7 11.3-76.2 23.2-32.8 17-44 29.9-56.7 42.4 14.9-2.2 28.9-5.1 43.8-3.8-9.7 5.4-18.4 12.2-26.5 20-25.8.9-23.8-5.3-26.2-25.9-1.1-10.5-14.3-15.4-22.7-9.7-28.1 19.9-33.5 79.9-12.2 103.5 10.8 12.2 35.1 17.3 54.9 17.8-.3 1.1-.3 1.9-.3 2.7 10.8.5 19.5 2.7 24.6 11.6 3 1.1 5.7 2.7 8.1 4.6-5.4.5-11.1 1.4-16.5 1.9-3.3-6.6-13.7-8.1-21.1-8.1-1.6-5.7-6.5-12.2-14.1-10.3-6.8 1.9-14.1 10-14.9 15.9-22.5 9.5-30.1 26.8-25.1 47.6 5.3 24.8 33 36.2 45.9 36.2v19.7c-6.6-5-14.3-7.5-26.8-5.7-5.5-5.5-17.3-10.1-17.3 5.7-5.9 2.7-11.4 5.9-15.9 9.2-9.8-4.9-13.6-1.7-11.1 9.2-4.1 4.3-7.8 8.6-11.1 13.8-10.2-3.7-11 2.2-5.4 11.6-1.1 3.5-1.6 7-1.9 10.8-.5 31.6 44.6 64 73.5 65.1 17.3.5 34.6-8.4 43-23.5 113.2 4.9 226.7 4.1 340.2 0 8.1 15.1 25.4 24.3 42.7 23.5 29.2-1.1 74.3-33.5 73.5-65.1.2-3.7-.7-7.2-1.7-10.7zm-73.8-254c1.1-3 2.4-8.4 2.4-14.6 0-5.9 6.8-8.1 14.1-.8 11.1 11.6 14.9 40.5 13.8 51.1-4.1-13.6-13-29-30.3-35.7zm-4.6 6.7c19.5 6.2 28.6 27.6 29.7 48.9-1.1 2.7-3 5.4-4.9 7.6-5.7 5.9-15.4 10-26.2 12.2 4.3-21.3.3-47.3-12.7-63 4.9-.8 10.9-2.4 14.1-5.7zm-24.1 6.8c13.8 11.9 20 39.2 14.1 63.5-4.1.5-8.1.8-11.6.8-1.9-21.9-6.8-44-14.3-64.6 3.7.3 8.1.3 11.8.3zM47.5 203c-1.1-10.5 2.4-39.5 13.8-51.1 7-7.3 14.1-5.1 14.1.8 0 6.2 1.4 11.6 2.4 14.6-17.3 6.8-26.2 22.2-30.3 35.7zm9.7 27.6c-1.9-2.2-3.5-4.9-4.9-7.6 1.4-21.3 10.3-42.7 29.7-48.9 3.2 3.2 9.2 4.9 14.1 5.7-13 15.7-17 41.6-12.7 63-10.8-2.2-20.5-6-26.2-12.2zm47.9 14.6c-4.1 0-8.1-.3-12.7-.8-4.6-18.6-1.9-38.9 5.4-53v.3l12.2-5.1c4.9-1.9 9.7-3.8 14.9-4.9-10.7 19.7-17.4 41.3-19.8 63.5zm184-162.7c41.9 0 76.2 34 76.2 75.9 0 42.2-34.3 76.2-76.2 76.2s-76.2-34-76.2-76.2c0-41.8 34.3-75.9 76.2-75.9zm115.6 174.3c-.3 17.8-7 48.9-23 57-13.2 6.6-6.5-7.5-16.5-58.1 13.3.3 26.6.3 39.5 1.1zm-54-1.6c.8 4.9 3.8 40.3-1.6 41.9-11.6 3.5-40 4.3-51.1-1.1-4.1-3-4.6-35.9-4.3-41.1v.3c18.9-.3 38.1-.3 57 0zM278.3 309c-13 3.5-41.6 4.1-54.6-1.6-6.5-2.7-3.8-42.4-1.9-51.6 19.2-.5 38.4-.5 57.8-.8v.3c1.1 8.3 3.3 51.2-1.3 53.7zm-106.5-51.1c12.2-.8 24.6-1.4 36.8-1.6-2.4 15.4-3 43.5-4.9 52.2-1.1 6.8-4.3 6.8-9.7 4.3-21.9-9.8-27.6-35.2-22.2-54.9zm-35.4 31.3c7.8-1.1 15.7-1.9 23.5-2.7 1.6 6.2 3.8 11.9 7 17.6 10 17 44 35.7 45.1 7 6.2 14.9 40.8 12.2 54.9 10.8 15.7-1.4 23.8-1.4 26.8-14.3 12.4 4.3 30.8 4.1 44 3 11.3-.8 20.8-.5 24.6-8.9 1.1 5.1 1.9 11.6 4.6 16.8 10.8 21.3 37.3 1.4 46.8-31.6 8.6.8 17.6 1.9 26.5 2.7-.4 1.3-3.8 7.3 7.3 11.6-47.6 47-95.7 87.8-163.2 107-63.2-20.8-112.1-59.5-155.9-106.5 9.6-3.4 10.4-8.8 8-12.5zm-21.6 172.5c-3.8 17.8-21.9 29.7-39.7 28.9-19.2-.8-46.5-17-59.2-36.5-2.7-31.1 43.8-61.3 66.2-54.6 14.9 4.3 27.8 30.8 33.5 54 0 3-.3 5.7-.8 8.2zm-8.7-66c-.5-13.5-.5-27-.3-40.5h.3c2.7-1.6 5.7-3.8 7.8-6.5 6.5-1.6 13-5.1 15.1-9.2 3.3-7.1-7-7.5-5.4-12.4 2.7-1.1 5.7-2.2 7.8-3.5 29.2 29.2 58.6 56.5 97.3 77-36.8 11.3-72.4 27.6-105.9 47-1.2-18.6-7.7-35.9-16.7-51.9zm337.6 64.6c-103 3.5-206.2 4.1-309.4 0 0 .3 0 .3-.3.3v-.3h.3c35.1-21.6 72.2-39.2 112.4-50.8 11.6 5.1 23 9.5 34.9 13.2 2.2.8 2.2.8 4.3 0 14.3-4.1 28.4-9.2 42.2-15.4 41.5 11.7 78.8 31.7 115.6 53zm10.5-12.4c-35.9-19.5-73-35.9-111.9-47.6 38.1-20 71.9-47.3 103.5-76.7 2.2 1.4 4.6 2.4 7.6 3.2 0 .8.3 1.9.5 2.4-4.6 2.7-7.8 6.2-5.9 10.3 2.2 3.8 8.6 7.6 15.1 8.9 2.4 2.7 5.1 5.1 8.1 6.8 0 13.8-.3 27.6-.8 41.3l.3-.3c-9.3 15.9-15.5 37-16.5 51.7zm105.9 6.2c-12.7 19.5-40 35.7-59.2 36.5-19.3.9-40.5-13.2-40.5-37 5.7-23.2 18.9-49.7 33.5-54 22.7-6.9 69.2 23.4 66.2 54.5zM372.9 75.2c-3.8-72.1-100.8-79.7-126-23.5 44.6-24.3 90.3-15.7 126 23.5zM74.8 407.1c-15.7 1.6-49.5 25.4-49.5 43.2 0 11.6 15.7 19.5 32.2 14.9 12.2-3.2 31.1-17.6 35.9-27.3 6-11.6-3.7-32.7-18.6-30.8zm215.9-176.2c28.6 0 51.9-21.6 51.9-48.4 0-36.1-40.5-58.1-72.2-44.3 9.5 3 16.5 11.6 16.5 21.6 0 23.3-33.3 32-46.5 11.3-7.3 34.1 19.4 59.8 50.3 59.8zM68 474.1c.5 6.5 12.2 12.7 21.6 9.5 6.8-2.7 14.6-10.5 17.3-16.2 3-7-1.1-20-9.7-18.4-8.9 1.6-29.7 16.7-29.2 25.1zm433.2-67c-14.9-1.9-24.6 19.2-18.9 30.8 4.9 9.7 24.1 24.1 36.2 27.3 16.5 4.6 32.2-3.2 32.2-14.9 0-17.8-33.8-41.6-49.5-43.2zM478.8 449c-8.4-1.6-12.4 11.3-9.5 18.4 2.4 5.7 10.3 13.5 17.3 16.2 9.2 3.2 21.1-3 21.3-9.5.9-8.4-20.2-23.5-29.1-25.1z" + } + }, + "free": [ + "brands" + ] + }, + "orcid": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f8d2", + "label": "ORCID", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M294.75 188.19h-45.92V342h47.47c67.62 0 83.12-51.34 83.12-76.91 0-41.64-26.54-76.9-84.67-76.9zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-80.79 360.76h-29.84v-207.5h29.84zm-14.92-231.14a19.57 19.57 0 1 1 19.57-19.57 19.64 19.64 0 0 1-19.57 19.57zM300 369h-81V161.26h80.6c76.73 0 110.44 54.83 110.44 103.85C410 318.39 368.38 369 300 369z" + } + }, + "free": [ + "brands" + ] + }, + "osi": { + "changes": [ + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41a", + "label": "Open Source Initiative", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M8 266.44C10.3 130.64 105.4 34 221.8 18.34c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7q-26.7-69.45-53.4-139c-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8a71.47 71.47 0 0 0-64.5-82.2c-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4q-26.85 69.9-53.7 139.9c-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119-24.9-49.2-25.2-87.7-26.8-108.7zm20.9-1.9c.4 6.6.6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4.8 5.6-2.3q22.35-58.65 45-117.3c1.3-3.3.6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6a91.64 91.64 0 0 1 45.2 90.4c-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6q22.8 58.8 45.2 117.7c1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161-13.7-117.5-119.4-214.8-255.5-198-106.1 13-195.3 102.5-197.1 225.8z" + } + }, + "free": [ + "brands" + ] + }, + "otter": { + "aliases": { + "unicodes": { + "composite": [ + "1f9a6" + ], + "secondary": [ + "10f700" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "badger", + "fauna", + "fishing", + "fur", + "mammal", + "marten", + "otter", + "playful" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f700", + "label": "Otter", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M181.5 197.1l12.9 6.4c5.9 3 12.4 4.5 19.1 4.5c23.5 0 42.6-19.1 42.6-42.6V144c0-35.3-28.7-64-64-64H128c-35.3 0-64 28.7-64 64v21.4c0 23.5 19.1 42.6 42.6 42.6c6.6 0 13.1-1.5 19.1-4.5l12.9-6.4 8.4-4.2L135.1 185c-4.5-3-7.1-8-7.1-13.3V168c0-13.3 10.7-24 24-24h16c13.3 0 24 10.7 24 24v3.7c0 5.3-2.7 10.3-7.1 13.3l-11.8 7.9 8.4 4.2zm-8.6 49.4L160 240l-12.9 6.4c-12.6 6.3-26.5 9.6-40.5 9.6c-3.6 0-7.1-.2-10.6-.6v.6c0 35.3 28.7 64 64 64h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384V336 320c0-23.7 12.9-44.4 32-55.4c9.4-5.4 20.3-8.6 32-8.6V240c0-26.5 21.5-48 48-48c8.8 0 16 7.2 16 16v32 16 48c0 8.8 7.2 16 16 16s16-7.2 16-16V204.3c0-48.2-30.8-91-76.6-106.3l-8.5-2.8c-8-2.7-12.6-11.1-10.4-19.3s10.3-13.2 18.6-11.6l19.9 4C576 86.1 640 164.2 640 254.9l0 1.1h0c0 123.7-100.3 224-224 224h-1.1H256h-.6C132 480 32 380 32 256.6V256 216.8c-10.1-14.6-16-32.3-16-51.4V144l0-1.4C6.7 139.3 0 130.5 0 120c0-13.3 10.7-24 24-24h2.8C44.8 58.2 83.3 32 128 32h64c44.7 0 83.2 26.2 101.2 64H296c13.3 0 24 10.7 24 24c0 10.5-6.7 19.3-16 22.6l0 1.4v21.4c0 1.4 0 2.8-.1 4.3c12-6.2 25.7-9.6 40.1-9.6h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-13.3 0-24 10.7-24 24v8h56.4c-15.2 17-24.4 39.4-24.4 64H320c-42.3 0-78.2-27.4-91-65.3c-5.1 .9-10.3 1.3-15.6 1.3c-14.1 0-27.9-3.3-40.5-9.6zM96 128a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm112 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + } + }, + "free": [ + "solid" + ] + }, + "outdent": { + "aliases": { + "names": [ + "dedent" + ], + "unicodes": { + "secondary": [ + "10f03b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "align", + "justify", + "paragraph", + "tab" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f03b", + "label": "Outdent", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M6 64C6 46.3 20.3 32 38 32H422c17.7 0 32 14.3 32 32s-14.3 32-32 32H38C20.3 96 6 81.7 6 64zM198 192c0-17.7 14.3-32 32-32H422c17.7 0 32 14.3 32 32s-14.3 32-32 32H230c-17.7 0-32-14.3-32-32zm32 96H422c17.7 0 32 14.3 32 32s-14.3 32-32 32H230c-17.7 0-32-14.3-32-32s14.3-32 32-32zM6 448c0-17.7 14.3-32 32-32H422c17.7 0 32 14.3 32 32s-14.3 32-32 32H38c-17.7 0-32-14.3-32-32zm.2-179.4c-8.2-6.4-8.2-18.9 0-25.3l101.9-79.3c10.5-8.2 25.8-.7 25.8 12.6V335.3c0 13.3-15.3 20.8-25.8 12.6L6.2 268.6z" + } + }, + "free": [ + "solid" + ] + }, + "p": { + "aliases": { + "unicodes": { + "composite": [ + "70" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter P", + "Latin Small Letter P", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "50", + "label": "P", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32h96c88.4 0 160 71.6 160 160s-71.6 160-160 160H64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V320 96zM64 288h96c53 0 96-43 96-96s-43-96-96-96H64V288z" + } + }, + "free": [ + "solid" + ] + }, + "padlet": { + "changes": [ + "6.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e4a0", + "label": "Padlet", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M297.9 0L298 .001C305.6 .1078 312.4 4.72 315.5 11.78L447.5 320.3L447.8 320.2L448 320.6L445.2 330.6L402.3 488.6C398.6 504.8 382.6 514.9 366.5 511.2L298.1 495.6L229.6 511.2C213.5 514.9 197.5 504.8 193.8 488.6L150.9 330.6L148.2 320.6L148.3 320.2L280.4 11.78C283.4 4.797 290.3 .1837 297.9 .0006L297.9 0zM160.1 322.1L291.1 361.2L298 483.7L305.9 362.2L436.5 322.9L436.7 322.8L305.7 347.9L297.1 27.72L291.9 347.9L160.1 322.1zM426 222.6L520.4 181.6H594.2L437.2 429.2L468.8 320.2L426 222.6zM597.5 181.4L638.9 257.6C642.9 265.1 635 273.5 627.3 269.8L579.7 247.1L597.5 181.4zM127.3 318.5L158.7 430L1.61 154.5C-4.292 144.1 7.128 132.5 17.55 138.3L169.4 222.5L127.3 318.5z" + } + }, + "free": [ + "brands" + ] + }, + "page4": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d7", + "label": "page4 Corporation", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z" + } + }, + "free": [ + "brands" + ] + }, + "pagelines": { + "changes": [ + "4.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eco", + "flora", + "leaf", + "leaves", + "nature", + "plant", + "tree" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f18c", + "label": "Pagelines", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4.5 1.6.5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z" + } + }, + "free": [ + "brands" + ] + }, + "pager": { + "aliases": { + "unicodes": { + "composite": [ + "1f4df" + ], + "secondary": [ + "10f815" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beeper", + "cell phone", + "communication", + "page", + "pager" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f815", + "label": "Pager", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H448c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zm64 32v64c0 17.7 14.3 32 32 32H416c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32H96c-17.7 0-32 14.3-32 32zM80 320c-13.3 0-24 10.7-24 24s10.7 24 24 24h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H80zm136 0c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c13.3 0 24-10.7 24-24s-10.7-24-24-24H216z" + } + }, + "free": [ + "solid" + ] + }, + "paint-roller": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5aa" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrylic", + "art", + "brush", + "color", + "fill", + "paint", + "pigment", + "watercolor" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5aa", + "label": "Paint Roller", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H352c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM160 352c0-17.7 14.3-32 32-32V304c0-44.2 35.8-80 80-80H416c17.7 0 32-14.3 32-32V160 69.5c37.3 13.2 64 48.7 64 90.5v32c0 53-43 96-96 96H272c-8.8 0-16 7.2-16 16v16c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V352z" + } + }, + "free": [ + "solid" + ] + }, + "paintbrush": { + "aliases": { + "names": [ + "paint-brush" + ], + "unicodes": { + "composite": [ + "1f58c" + ], + "secondary": [ + "10f1fc" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrylic", + "art", + "brush", + "color", + "fill", + "paint", + "paintbrush", + "painting", + "pigment", + "watercolor" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1fc", + "label": "Paintbrush", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M339.3 367.1c27.3-3.9 51.9-19.4 67.2-42.9L568.2 74.1c12.6-19.5 9.4-45.3-7.6-61.2S517.7-4.4 499.1 9.6L262.4 187.2c-24 18-38.2 46.1-38.4 76.1L339.3 367.1zm-19.6 25.4l-116-104.4C143.9 290.3 96 339.6 96 400c0 3.9 .2 7.8 .6 11.6C98.4 429.1 86.4 448 68.8 448H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H208c61.9 0 112-50.1 112-112c0-2.5-.1-5-.2-7.5z" + } + }, + "free": [ + "solid" + ] + }, + "palette": { + "aliases": { + "unicodes": { + "composite": [ + "1f3a8" + ], + "secondary": [ + "10f53f" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "acrylic", + "art", + "artist palette", + "brush", + "color", + "fill", + "museum", + "paint", + "painting", + "palette", + "pigment", + "watercolor" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f53f", + "label": "Palette", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256c0 .9 0 1.8 0 2.7c-.4 36.5-33.6 61.3-70.1 61.3H344c-26.5 0-48 21.5-48 48c0 3.4 .4 6.7 1 9.9c2.1 10.2 6.5 20 10.8 29.9c6.1 13.8 12.1 27.5 12.1 42c0 31.8-21.6 60.7-53.4 62c-3.5 .1-7 .2-10.6 .2C114.6 512 0 397.4 0 256S114.6 0 256 0S512 114.6 512 256zM128 288a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0-96a32 32 0 1 0 0-64 32 32 0 1 0 0 64zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm96 96a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "palfed": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d8", + "label": "Palfed", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8.7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4.9 74.4 2.7 100v.2c.2 3.4.6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4.2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9.2 2.5.4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z" + } + }, + "free": [ + "brands" + ] + }, + "pallet": { + "aliases": { + "unicodes": { + "secondary": [ + "10f482" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "box", + "inventory", + "shipping", + "warehouse" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f482", + "label": "Pallet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 320c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v64H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H96 320 544h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H576V384h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H544 320 96 32zm96 64H288v64H128V384zm224 0H512v64H352V384z" + } + }, + "free": [ + "solid" + ] + }, + "panorama": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "image", + "landscape", + "photo", + "wide" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e209", + "label": "Panorama", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M45.6 32C20.4 32 0 52.4 0 77.6V434.4C0 459.6 20.4 480 45.6 480c5.1 0 10-.8 14.7-2.4C74.6 472.8 177.6 440 320 440s245.4 32.8 259.6 37.6c4.7 1.6 9.7 2.4 14.7 2.4c25.2 0 45.6-20.4 45.6-45.6V77.6C640 52.4 619.6 32 594.4 32c-5 0-10 .8-14.7 2.4C565.4 39.2 462.4 72 320 72S74.6 39.2 60.4 34.4C55.6 32.8 50.7 32 45.6 32zM96 160a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm272 0c7.9 0 15.4 3.9 19.8 10.5L512.3 353c5.4 8 5.6 18.4 .4 26.5s-14.7 12.3-24.2 10.7C442.7 382.4 385.2 376 320 376c-65.6 0-123.4 6.5-169.3 14.4c-9.8 1.7-19.7-2.9-24.7-11.5s-4.3-19.4 1.9-27.2L197.3 265c4.6-5.7 11.4-9 18.7-9s14.2 3.3 18.7 9l26.4 33.1 87-127.6c4.5-6.6 11.9-10.5 19.8-10.5z" + } + }, + "free": [ + "solid" + ] + }, + "paper-plane": { + "aliases": { + "unicodes": { + "composite": [ + "f1d9" + ], + "secondary": [ + "10f1d8" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air", + "float", + "fold", + "mail", + "paper", + "send" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f1d8", + "label": "Paper Plane", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480V396.4c0-4 1.5-7.8 4.2-10.7L331.8 202.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8 17.7 316.6C7.1 311.3 .3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M16.1 260.2c-22.6 12.9-20.5 47.3 3.6 57.3L160 376V479.3c0 18.1 14.6 32.7 32.7 32.7c9.7 0 18.9-4.3 25.1-11.8l62-74.3 123.9 51.6c18.9 7.9 40.8-4.5 43.9-24.7l64-416c1.9-12.1-3.4-24.3-13.5-31.2s-23.3-7.5-34-1.4l-448 256zm52.1 25.5L409.7 90.6 190.1 336l1.2 1L68.2 285.7zM403.3 425.4L236.7 355.9 450.8 116.6 403.3 425.4z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "paperclip": { + "aliases": { + "unicodes": { + "composite": [ + "1f4ce" + ], + "secondary": [ + "10f0c6" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "attach", + "attachment", + "connect", + "link", + "papercli", + "paperclip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c6", + "label": "Paperclip", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M360.2 83.8c-24.4-24.4-64-24.4-88.4 0l-184 184c-42.1 42.1-42.1 110.3 0 152.4s110.3 42.1 152.4 0l152-152c10.9-10.9 28.7-10.9 39.6 0s10.9 28.7 0 39.6l-152 152c-64 64-167.6 64-231.6 0s-64-167.6 0-231.6l184-184c46.3-46.3 121.3-46.3 167.6 0s46.3 121.3 0 167.6l-176 176c-28.6 28.6-75 28.6-103.6 0s-28.6-75 0-103.6l144-144c10.9-10.9 28.7-10.9 39.6 0s10.9 28.7 0 39.6l-144 144c-6.7 6.7-6.7 17.7 0 24.4s17.7 6.7 24.4 0l176-176c24.4-24.4 24.4-64 0-88.4z" + } + }, + "free": [ + "solid" + ] + }, + "parachute-box": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4cd" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aid", + "assistance", + "goods", + "relief", + "rescue", + "supplies" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4cd", + "label": "Parachute Box", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M380.5 192c.3-5.3 .5-10.6 .5-16c0-51-15.9-96-40.2-127.6C316.5 16.9 285.2 0 253 0s-63.5 16.9-87.8 48.4C140.9 80 125 125 125 176c0 5.4 .2 10.7 .5 16H237V320H205c-7 0-13.7 1.5-19.7 4.2L65.2 192H93.5c-.3-5.3-.5-10.6-.5-16c0-64 22.2-121.2 57.1-159.3C59 49.3 15.6 122.6 1.2 173.6C-1.5 183.1 6 192 15.9 192h6L162.2 346.3c-3.3 6.5-5.2 13.9-5.2 21.7v96c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48V368c0-7.8-1.9-15.2-5.2-21.7L484.1 192h6c9.9 0 17.4-8.9 14.7-18.4C490.4 122.6 447 49.3 355.9 16.7C390.8 54.8 413 112.1 413 176c0 5.4-.2 10.7-.5 16h28.3L320.7 324.2c-6-2.7-12.7-4.2-19.7-4.2H269V192H380.5z" + } + }, + "free": [ + "solid" + ] + }, + "paragraph": { + "aliases": { + "unicodes": { + "composite": [ + "b6" + ], + "secondary": [ + "10f1dd" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pilcrow Sign", + "edit", + "format", + "text", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1dd", + "label": "Paragraph", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M192 32h64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H384l0 352c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-352H288V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H192c-88.4 0-160-71.6-160-160s71.6-160 160-160z" + } + }, + "free": [ + "solid" + ] + }, + "passport": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5ab" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "document", + "id", + "identification", + "issued", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ab", + "label": "Passport", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM183 278.8c-27.9-13.2-48.4-39.4-53.7-70.8h39.1c1.6 30.4 7.7 53.8 14.6 70.8zm41.3 9.2l-.3 0-.3 0c-2.4-3.5-5.7-8.9-9.1-16.5c-6-13.6-12.4-34.3-14.2-63.5h47.1c-1.8 29.2-8.1 49.9-14.2 63.5c-3.4 7.6-6.7 13-9.1 16.5zm40.7-9.2c6.8-17.1 12.9-40.4 14.6-70.8h39.1c-5.3 31.4-25.8 57.6-53.7 70.8zM279.6 176c-1.6-30.4-7.7-53.8-14.6-70.8c27.9 13.2 48.4 39.4 53.7 70.8H279.6zM223.7 96l.3 0 .3 0c2.4 3.5 5.7 8.9 9.1 16.5c6 13.6 12.4 34.3 14.2 63.5H200.5c1.8-29.2 8.1-49.9 14.2-63.5c3.4-7.6 6.7-13 9.1-16.5zM183 105.2c-6.8 17.1-12.9 40.4-14.6 70.8H129.3c5.3-31.4 25.8-57.6 53.7-70.8zM352 192A128 128 0 1 0 96 192a128 128 0 1 0 256 0zM112 384c-8.8 0-16 7.2-16 16s7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H112z" + } + }, + "free": [ + "solid" + ] + }, + "paste": { + "aliases": { + "names": [ + "file-clipboard" + ], + "unicodes": { + "secondary": [ + "10f0ea" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clipboard", + "copy", + "document", + "paper" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0ea", + "label": "Paste", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 0c-23.7 0-44.4 12.9-55.4 32H48C21.5 32 0 53.5 0 80V400c0 26.5 21.5 48 48 48H192V176c0-44.2 35.8-80 80-80h48V80c0-26.5-21.5-48-48-48H215.4C204.4 12.9 183.7 0 160 0zM272 128c-26.5 0-48 21.5-48 48V448v16c0 26.5 21.5 48 48 48H464c26.5 0 48-21.5 48-48V256H416c-17.7 0-32-14.3-32-32V128H320 272zM160 40a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm256 88v96h96l-96-96z" + }, + "regular": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M80 96v16c0 17.7 14.3 32 32 32h60.8c16.6-28.7 47.6-48 83.2-48h62c-7.1-27.6-32.2-48-62-48H215.4C211.6 20.9 188.2 0 160 0s-51.6 20.9-55.4 48H64C28.7 48 0 76.7 0 112V384c0 35.3 28.7 64 64 64h96V400H64c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H80zm64-40a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zM256 464c-8.8 0-16-7.2-16-16V192c0-8.8 7.2-16 16-16H384v48c0 17.7 14.3 32 32 32h48V448c0 8.8-7.2 16-16 16H256zm192 48c35.3 0 64-28.7 64-64V227.9c0-12.7-5.1-24.9-14.1-33.9l-51.9-51.9c-9-9-21.2-14.1-33.9-14.1H256c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H448z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "patreon": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3d9", + "label": "Patreon", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z" + } + }, + "free": [ + "brands" + ] + }, + "pause": { + "aliases": { + "unicodes": { + "composite": [ + "23f8" + ], + "secondary": [ + "10f04c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bar", + "double", + "hold", + "pause", + "pause button", + "vertical", + "wait" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f04c", + "label": "Pause", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M48 64C21.5 64 0 85.5 0 112V400c0 26.5 21.5 48 48 48H80c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H48zm192 0c-26.5 0-48 21.5-48 48V400c0 26.5 21.5 48 48 48h32c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48H240z" + } + }, + "free": [ + "solid" + ] + }, + "paw": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1b0" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "cat", + "dog", + "pet", + "print" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1b0", + "label": "Paw", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5s.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3S-2.7 179.3 21.8 165.3s59.7 .9 78.5 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7c-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2C84.9 480 64 459.1 64 433.3v-1.6c0-10.4 1.6-20.8 5.2-30.5zM421.8 282.7c-24.5-14-29.1-51.7-10.2-84.1s54-47.3 78.5-33.3s29.1 51.7 10.2 84.1s-54 47.3-78.5 33.3zM310.1 189.7c-32.3-10.6-46.9-53.9-32.6-96.8s52.1-69.1 84.4-58.5s46.9 53.9 32.6 96.8s-52.1 69.1-84.4 58.5z" + } + }, + "free": [ + "solid" + ] + }, + "paypal": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1ed", + "label": "Paypal", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4.7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9.7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z" + } + }, + "free": [ + "brands" + ] + }, + "peace": { + "aliases": { + "unicodes": { + "composite": [ + "262e" + ], + "secondary": [ + "10f67c" + ] + } + }, + "changes": [ + "5.3.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "peace", + "peace symbol", + "serenity", + "tranquility", + "truce", + "war" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f67c", + "label": "Peace", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 445.3V323.5l-94.3 77.1c26.1 22.8 58.5 38.7 94.3 44.7zM89.2 351.1L224 240.8V66.7C133.2 81.9 64 160.9 64 256c0 34.6 9.2 67.1 25.2 95.1zm293.1 49.5L288 323.5V445.3c35.7-6 68.1-21.9 94.3-44.7zm40.6-49.5c16-28 25.2-60.5 25.2-95.1c0-95.1-69.2-174.1-160-189.3V240.8L422.8 351.1zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256z" + } + }, + "free": [ + "solid" + ] + }, + "pen": { + "aliases": { + "unicodes": { + "composite": [ + "1f58a" + ], + "secondary": [ + "10f304" + ] + } + }, + "changes": [ + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ballpoint", + "design", + "edit", + "pen", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f304", + "label": "Pen", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M362.7 19.3L314.3 67.7 444.3 197.7l48.4-48.4c25-25 25-65.5 0-90.5L453.3 19.3c-25-25-65.5-25-90.5 0zm-71 71L58.6 323.5c-10.4 10.4-18 23.3-22.2 37.4L1 481.2C-1.5 489.7 .8 498.8 7 505s15.3 8.5 23.7 6.1l120.3-35.4c14.1-4.2 27-11.8 37.4-22.2L421.7 220.3 291.7 90.3z" + } + }, + "free": [ + "solid" + ] + }, + "pen-clip": { + "aliases": { + "names": [ + "pen-alt" + ], + "unicodes": { + "secondary": [ + "10f305" + ] + } + }, + "changes": [ + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f305", + "label": "Pen Clip", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M453.3 19.3l39.4 39.4c25 25 25 65.5 0 90.5l-52.1 52.1 0 0-1-1 0 0-16-16-96-96-17-17 52.1-52.1c25-25 65.5-25 90.5 0zM241 114.9c-9.4-9.4-24.6-9.4-33.9 0L105 217c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L173.1 81c28.1-28.1 73.7-28.1 101.8 0L288 94.1l17 17 96 96 16 16 1 1-17 17L229.5 412.5c-48 48-109.2 80.8-175.8 94.1l-25 5c-7.9 1.6-16-.9-21.7-6.6s-8.1-13.8-6.6-21.7l5-25c13.3-66.6 46.1-127.8 94.1-175.8L254.1 128 241 114.9z" + } + }, + "free": [ + "solid" + ] + }, + "pen-fancy": { + "aliases": { + "unicodes": { + "composite": [ + "1f58b", + "2712" + ], + "secondary": [ + "10f5ac" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "black nib", + "design", + "edit", + "fountain", + "fountain pen", + "nib", + "pen", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ac", + "label": "Pen Fancy", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M373.5 27.1C388.5 9.9 410.2 0 433 0c43.6 0 79 35.4 79 79c0 22.8-9.9 44.6-27.1 59.6L277.7 319l-10.3-10.3-64-64L193 234.3 373.5 27.1zM170.3 256.9l10.4 10.4 64 64 10.4 10.4-19.2 83.4c-3.9 17.1-16.9 30.7-33.8 35.4L24.4 510.3l95.4-95.4c2.6 .7 5.4 1.1 8.3 1.1c17.7 0 32-14.3 32-32s-14.3-32-32-32s-32 14.3-32 32c0 2.9 .4 5.6 1.1 8.3L1.7 487.6 51.5 310c4.7-16.9 18.3-29.9 35.4-33.8l83.4-19.2z" + } + }, + "free": [ + "solid" + ] + }, + "pen-nib": { + "aliases": { + "unicodes": { + "composite": [ + "2711" + ], + "secondary": [ + "10f5ad" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "edit", + "fountain pen", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ad", + "label": "Pen Nib", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M366.4 18.3L310.7 74.1 435.9 199.3l55.7-55.7c21.9-21.9 21.9-57.3 0-79.2L445.6 18.3c-21.9-21.9-57.3-21.9-79.2 0zM286 94.6l-9.2 2.8L132.7 140.6c-19.9 6-35.7 21.2-42.3 41L1.8 445.8c-3.8 11.3-1 23.9 7.3 32.4L162.7 324.7c-3-6.3-4.7-13.3-4.7-20.7c0-26.5 21.5-48 48-48s48 21.5 48 48s-21.5 48-48 48c-7.4 0-14.4-1.7-20.7-4.7L31.7 500.9c8.6 8.3 21.1 11.2 32.4 7.3l264.3-88.6c19.7-6.6 35-22.4 41-42.3l43.2-144.1 2.8-9.2L286 94.6z" + } + }, + "free": [ + "solid" + ] + }, + "pen-ruler": { + "aliases": { + "names": [ + "pencil-ruler" + ], + "unicodes": { + "secondary": [ + "10f5ae" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "draw", + "pencil" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ae", + "label": "Pen Ruler", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M469.3 19.3l23.4 23.4c25 25 25 65.5 0 90.5l-56.4 56.4L322.3 75.7l56.4-56.4c25-25 65.5-25 90.5 0zM44.9 353.2L299.7 98.3 413.7 212.3 158.8 467.1c-6.7 6.7-15.1 11.6-24.2 14.2l-104 29.7c-8.4 2.4-17.4 .1-23.6-6.1s-8.5-15.2-6.1-23.6l29.7-104c2.6-9.2 7.5-17.5 14.2-24.2zM249.4 103.4L103.4 249.4 16 161.9c-18.7-18.7-18.7-49.1 0-67.9L94.1 16c18.7-18.7 49.1-18.7 67.9 0l19.8 19.8c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1l45.1 45.1zM408.6 262.6l45.1 45.1c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1L496 350.1c18.7 18.7 18.7 49.1 0 67.9L417.9 496c-18.7 18.7-49.1 18.7-67.9 0l-87.4-87.4L408.6 262.6z" + } + }, + "free": [ + "solid" + ] + }, + "pen-to-square": { + "aliases": { + "names": [ + "edit" + ], + "unicodes": { + "secondary": [ + "10f044" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "pen", + "pencil", + "update", + "write" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f044", + "label": "Pen To Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M471.6 21.7c-21.9-21.9-57.3-21.9-79.2 0L362.3 51.7l97.9 97.9 30.1-30.1c21.9-21.9 21.9-57.3 0-79.2L471.6 21.7zm-299.2 220c-6.1 6.1-10.8 13.6-13.5 21.9l-29.6 88.8c-2.9 8.6-.6 18.1 5.8 24.6s15.9 8.7 24.6 5.8l88.8-29.6c8.2-2.8 15.7-7.4 21.9-13.5L437.7 172.3 339.7 74.3 172.4 241.7zM96 64C43 64 0 107 0 160V416c0 53 43 96 96 96H352c53 0 96-43 96-96V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H96z" + }, + "regular": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M441 58.9L453.1 71c9.4 9.4 9.4 24.6 0 33.9L424 134.1 377.9 88 407 58.9c9.4-9.4 24.6-9.4 33.9 0zM209.8 256.2L344 121.9 390.1 168 255.8 302.2c-2.9 2.9-6.5 5-10.4 6.1l-58.5 16.7 16.7-58.5c1.1-3.9 3.2-7.5 6.1-10.4zM373.1 25L175.8 222.2c-8.7 8.7-15 19.4-18.3 31.1l-28.6 100c-2.4 8.4-.1 17.4 6.1 23.6s15.2 8.5 23.6 6.1l100-28.6c11.8-3.4 22.5-9.7 31.1-18.3L487 138.9c28.1-28.1 28.1-73.7 0-101.8L474.9 25C446.8-3.1 401.2-3.1 373.1 25zM88 64C39.4 64 0 103.4 0 152V424c0 48.6 39.4 88 88 88H360c48.6 0 88-39.4 88-88V312c0-13.3-10.7-24-24-24s-24 10.7-24 24V424c0 22.1-17.9 40-40 40H88c-22.1 0-40-17.9-40-40V152c0-22.1 17.9-40 40-40H200c13.3 0 24-10.7 24-24s-10.7-24-24-24H88z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "pencil": { + "aliases": { + "names": [ + "pencil-alt" + ], + "unicodes": { + "composite": [ + "270f", + "f040" + ], + "primary": [ + "f040" + ], + "secondary": [ + "10f040", + "10f303" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Lower Left Pencil", + "design", + "draw", + "edit", + "lead", + "pencil", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f303", + "label": "Pencil", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M410.3 231l11.3-11.3-33.9-33.9-62.1-62.1L291.7 89.8l-11.3 11.3-22.6 22.6L58.6 322.9c-10.4 10.4-18 23.3-22.2 37.4L1 480.7c-2.5 8.4-.2 17.5 6.1 23.7s15.3 8.5 23.7 6.1l120.3-35.4c14.1-4.2 27-11.8 37.4-22.2L387.7 253.7 410.3 231zM160 399.4l-9.1 22.7c-4 3.1-8.5 5.4-13.3 6.9L59.4 452l23-78.1c1.4-4.9 3.8-9.4 6.9-13.3l22.7-9.1v32c0 8.8 7.2 16 16 16h32zM362.7 18.7L348.3 33.2 325.7 55.8 314.3 67.1l33.9 33.9 62.1 62.1 33.9 33.9 11.3-11.3 22.6-22.6 14.5-14.5c25-25 25-65.5 0-90.5L453.3 18.7c-25-25-65.5-25-90.5 0zm-47.4 168l-144 144c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l144-144c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + }, + "free": [ + "solid" + ] + }, + "people-arrows": { + "aliases": { + "names": [ + "people-arrows-left-right" + ], + "unicodes": { + "secondary": [ + "10e068" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "distance", + "isolation", + "separate", + "social distancing", + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e068", + "label": "People Arrows", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M43 64a64 64 0 1 1 128 0A64 64 0 1 1 43 64zM4.9 233.4C8.3 191.9 43 160 84.6 160h44.8c27 0 51 13.4 65.5 34.1c-2.7 1.9-5.2 4-7.5 6.3l-64 64c-21.9 21.9-21.9 57.3 0 79.2L171 391.2V464c0 26.5-21.5 48-48 48H91c-26.5 0-48-21.5-48-48V348.3C16.5 338.8-1.7 312.4 .8 282.7l4.1-49.3zM427 64a64 64 0 1 1 128 0A64 64 0 1 1 427 64zM410.6 200.4c-2.3-2.3-4.9-4.4-7.5-6.3c14.5-20.7 38.6-34.1 65.5-34.1h44.8c41.6 0 76.3 31.9 79.7 73.4l4.1 49.3c2.5 29.8-15.7 56.1-42.2 65.6V464c0 26.5-21.5 48-48 48H475c-26.5 0-48-21.5-48-48V391.2l47.6-47.6c21.9-21.9 21.9-57.3 0-79.2l-64-64zM251 240v32h96V240c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l64 64c9.4 9.4 9.4 24.6 0 33.9l-64 64c-6.9 6.9-17.2 8.9-26.2 5.2s-14.8-12.5-14.8-22.2V336H251v32c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-64-64c-9.4-9.4-9.4-24.6 0-33.9l64-64c6.9-6.9 17.2-8.9 26.2-5.2s14.8 12.5 14.8 22.2z" + } + }, + "free": [ + "solid" + ] + }, + "people-carry-box": { + "aliases": { + "names": [ + "people-carry" + ], + "unicodes": { + "secondary": [ + "10f4ce" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4ce", + "label": "People Carry Box", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M80 48a48 48 0 1 1 96 0A48 48 0 1 1 80 48zm64 193.7v65.1l51 51c7.1 7.1 11.8 16.2 13.4 26.1l15.2 90.9c2.9 17.4-8.9 33.9-26.3 36.8s-33.9-8.9-36.8-26.3l-14.3-85.9L66.8 320C54.8 308 48 291.7 48 274.7V186.6c0-32.4 26.2-58.6 58.6-58.6c24.1 0 46.5 12 59.9 32l47.4 71.1 10.1 5V160c0-17.7 14.3-32 32-32H384c17.7 0 32 14.3 32 32v76.2l10.1-5L473.5 160c13.3-20 35.8-32 59.9-32c32.4 0 58.6 26.2 58.6 58.6v88.1c0 17-6.7 33.3-18.7 45.3l-79.4 79.4-14.3 85.9c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l15.2-90.9c1.6-9.9 6.3-19 13.4-26.1l51-51V241.7l-19 28.5c-4.6 7-11 12.6-18.5 16.3l-59.6 29.8c-2.4 1.3-4.9 2.2-7.6 2.8c-2.6 .6-5.3 .9-7.9 .8H256.7c-2.5 .1-5-.2-7.5-.7c-2.9-.6-5.6-1.6-8.1-3l-59.5-29.8c-7.5-3.7-13.8-9.4-18.5-16.3l-19-28.5zM2.3 468.1L50.1 348.6l49.2 49.2-37.6 94c-6.6 16.4-25.2 24.4-41.6 17.8S-4.3 484.5 2.3 468.1zM512 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm77.9 348.6l47.8 119.5c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8l-37.6-94 49.2-49.2z" + } + }, + "free": [ + "solid" + ] + }, + "people-group": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "family", + "group", + "team" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e533", + "label": "People Group", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M72 88a56 56 0 1 1 112 0A56 56 0 1 1 72 88zM64 245.7C54 256.9 48 271.8 48 288s6 31.1 16 42.3V245.7zm144.4-49.3C178.7 222.7 160 261.2 160 304c0 34.3 12 65.8 32 90.5V416c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V389.2C26.2 371.2 0 332.7 0 288c0-61.9 50.1-112 112-112h32c24 0 46.2 7.5 64.4 20.3zM448 416V394.5c20-24.7 32-56.2 32-90.5c0-42.8-18.7-81.3-48.4-107.7C449.8 183.5 472 176 496 176h32c61.9 0 112 50.1 112 112c0 44.7-26.2 83.2-64 101.2V416c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32zm8-328a56 56 0 1 1 112 0A56 56 0 1 1 456 88zM576 245.7v84.7c10-11.3 16-26.1 16-42.3s-6-31.1-16-42.3zM320 32a64 64 0 1 1 0 128 64 64 0 1 1 0-128zM240 304c0 16.2 6 31 16 42.3V261.7c-10 11.3-16 26.1-16 42.3zm144-42.3v84.7c10-11.3 16-26.1 16-42.3s-6-31.1-16-42.3zM448 304c0 44.7-26.2 83.2-64 101.2V448c0 17.7-14.3 32-32 32H288c-17.7 0-32-14.3-32-32V405.2c-37.8-18-64-56.5-64-101.2c0-61.9 50.1-112 112-112h32c61.9 0 112 50.1 112 112z" + } + }, + "free": [ + "solid" + ] + }, + "people-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "group", + "need" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e534", + "label": "People Line", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M360 72a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zM144 208a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM496 208a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM200 313.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-36.3-67.5c1.7-1.7 3.2-3.6 4.3-5.8L264 217.5V272c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V217.5l26.9 49.9c1.2 2.2 2.6 4.1 4.3 5.8l-36.3 67.5c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L440 313.5V352c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V313.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3H486.2c-16.3 0-31.9 4.5-45.4 12.6l-33.6-62.3c-15.3-28.5-45.1-46.3-77.5-46.3H310.2c-32.4 0-62.1 17.8-77.5 46.3l-33.6 62.3c-13.5-8.1-29.1-12.6-45.4-12.6H134.2c-32.4 0-62.1 17.8-77.5 46.3L18.9 340.6c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L88 313.5V352c0 17.7 14.3 32 32 32h48c17.7 0 32-14.3 32-32V313.5z" + } + }, + "free": [ + "solid" + ] + }, + "people-pulling": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forced return", + "yanking" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e535", + "label": "People Pulling", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M80 96A48 48 0 1 0 80 0a48 48 0 1 0 0 96zM64 128c-35.3 0-64 28.7-64 64V320c0 17.7 14.3 32 32 32c9.8 0 18.5-4.4 24.4-11.2L80.4 485.3c2.9 17.4 19.4 29.2 36.8 26.3s29.2-19.4 26.3-36.8L123.1 352h15.7l30 134.9c3.8 17.3 20.9 28.1 38.2 24.3s28.1-20.9 24.3-38.2l-57.3-258 116.3 53.8c.5 .3 1.1 .5 1.6 .7c8.6 3.6 18 3.1 25.9-.7c3.4-1.6 6.6-3.9 9.3-6.7c3.1-3.2 5.5-7 7.1-11.4c.1-.3 .2-.7 .3-1l2.5-7.5c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L537 232.7l-15.3-36.8C504.5 154.8 464.3 128 419.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-24.4 10.9-44.6 29-58.1 51.6L157.3 136.9C144.7 131 130.9 128 117 128H64zM464 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM349.7 335.6l-25 62.4-59.4 59.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L372.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6z" + } + }, + "free": [ + "solid" + ] + }, + "people-robbery": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "criminal", + "hands up", + "looting", + "robbery", + "steal" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e536", + "label": "People Robbery", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M480.2 59.1C470.1 99.6 433.7 128 392 128s-78.1-28.4-88.2-68.9L295 24.2C290.8 7.1 273.4-3.3 256.2 1S228.7 22.6 233 39.8l8.7 34.9c11 44 40.2 79.6 78.3 99.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V174.3c38.1-20 67.3-55.6 78.3-99.6L551 39.8c4.3-17.1-6.1-34.5-23.3-38.8S493.2 7.1 489 24.2l-8.7 34.9zM392 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM72 96A48 48 0 1 0 72 0a48 48 0 1 0 0 96zm-8 32c-35.3 0-64 28.7-64 64v96l0 .6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352H80V480c0 17.7 14.3 32 32 32s32-14.3 32-32V252.7l13 20.5c5.9 9.2 16.1 14.9 27 14.9h48c17.7 0 32-14.3 32-32s-14.3-32-32-32H201.6l-37.4-58.9C149.6 142 124.1 128 96.7 128H64z" + } + }, + "free": [ + "solid" + ] + }, + "people-roof": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "family", + "group", + "manage", + "people", + "safe", + "shelter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e537", + "label": "People Roof", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M335.5 4l288 160c15.4 8.6 21 28.1 12.4 43.5s-28.1 21-43.5 12.4L320 68.6 47.5 220c-15.4 8.6-34.9 3-43.5-12.4s-3-34.9 12.4-43.5L304.5 4c9.7-5.4 21.4-5.4 31.1 0zM320 160a40 40 0 1 1 0 80 40 40 0 1 1 0-80zM144 256a40 40 0 1 1 0 80 40 40 0 1 1 0-80zm312 40a40 40 0 1 1 80 0 40 40 0 1 1 -80 0zM226.9 491.4L200 441.5V480c0 17.7-14.3 32-32 32H120c-17.7 0-32-14.3-32-32V441.5L61.1 491.4c-6.3 11.7-20.8 16-32.5 9.8s-16-20.8-9.8-32.5l37.9-70.3c15.3-28.5 45.1-46.3 77.5-46.3h19.5c16.3 0 31.9 4.5 45.4 12.6l33.6-62.3c15.3-28.5 45.1-46.3 77.5-46.3h19.5c32.4 0 62.1 17.8 77.5 46.3l33.6 62.3c13.5-8.1 29.1-12.6 45.4-12.6h19.5c32.4 0 62.1 17.8 77.5 46.3l37.9 70.3c6.3 11.7 1.9 26.2-9.8 32.5s-26.2 1.9-32.5-9.8L552 441.5V480c0 17.7-14.3 32-32 32H472c-17.7 0-32-14.3-32-32V441.5l-26.9 49.9c-6.3 11.7-20.8 16-32.5 9.8s-16-20.8-9.8-32.5l36.3-67.5c-1.7-1.7-3.2-3.6-4.3-5.8L376 345.5V400c0 17.7-14.3 32-32 32H296c-17.7 0-32-14.3-32-32V345.5l-26.9 49.9c-1.2 2.2-2.6 4.1-4.3 5.8l36.3 67.5c6.3 11.7 1.9 26.2-9.8 32.5s-26.2 1.9-32.5-9.8z" + } + }, + "free": [ + "solid" + ] + }, + "pepper-hot": { + "aliases": { + "unicodes": { + "composite": [ + "1f336" + ], + "secondary": [ + "10f816" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buffalo wings", + "capsicum", + "chili", + "chilli", + "habanero", + "hot", + "hot pepper", + "jalapeno", + "mexican", + "pepper", + "spicy", + "tabasco", + "vegetable" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f816", + "label": "Pepper Hot", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M428.3 3c11.6-6.4 26.2-2.3 32.6 9.3l4.8 8.7c19.3 34.7 19.8 75.7 3.4 110C495.8 159.6 512 197.9 512 240c0 18.5-3.1 36.3-8.9 52.8c-6.1 17.3-28.5 16.3-36.8-.1l-11.7-23.4c-4.1-8.1-12.4-13.3-21.5-13.3H360c-13.3 0-24-10.7-24-24V152c0-13.3-10.7-24-24-24l-17.1 0c-21.3 0-30-23.9-10.8-32.9C304.7 85.4 327.7 80 352 80c28.3 0 54.8 7.3 77.8 20.2c5.5-18.2 3.7-38.4-6-55.8L419 35.7c-6.4-11.6-2.3-26.2 9.3-32.6zM171.2 345.5L264 160l40 0v80c0 26.5 21.5 48 48 48h76.2l23.9 47.8C372.3 443.9 244.3 512 103.2 512H44.4C19.9 512 0 492.1 0 467.6c0-20.8 14.5-38.8 34.8-43.3l49.8-11.1c37.6-8.4 69.5-33.2 86.7-67.7z" + } + }, + "free": [ + "solid" + ] + }, + "perbyte": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e083", + "label": "PerByte", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M305.314,284.578H246.6V383.3h58.711q24.423,0,38.193-13.77t13.77-36.11q0-21.826-14.032-35.335T305.314,284.578ZM149.435,128.7H90.724v98.723h58.711q24.42,0,38.19-13.773t13.77-36.107q0-21.826-14.029-35.338T149.435,128.7ZM366.647,32H81.353A81.445,81.445,0,0,0,0,113.352V398.647A81.445,81.445,0,0,0,81.353,480H366.647A81.445,81.445,0,0,0,448,398.647V113.352A81.445,81.445,0,0,0,366.647,32Zm63.635,366.647a63.706,63.706,0,0,1-63.635,63.635H81.353a63.706,63.706,0,0,1-63.635-63.635V113.352A63.706,63.706,0,0,1,81.353,49.718H366.647a63.706,63.706,0,0,1,63.635,63.634ZM305.314,128.7H246.6v98.723h58.711q24.423,0,38.193-13.773t13.77-36.107q0-21.826-14.032-35.338T305.314,128.7Z" + } + }, + "free": [ + "brands" + ] + }, + "percent": { + "aliases": { + "names": [ + "percentage" + ], + "unicodes": { + "composite": [ + "f295", + "f541" + ], + "primary": [ + "f295", + "f541" + ], + "secondary": [ + "1025", + "10f295", + "10f541" + ] + } + }, + "changes": [ + "4.5.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Percent Sign", + "discount", + "fraction", + "proportion", + "rate", + "ratio" + ] + }, + "styles": [ + "solid" + ], + "unicode": "25", + "label": "Percent", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M374.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-320 320c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l320-320zM128 128A64 64 0 1 0 0 128a64 64 0 1 0 128 0zM384 384a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + }, + "free": [ + "solid" + ] + }, + "periscope": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3da", + "label": "Periscope", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3.1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z" + } + }, + "free": [ + "brands" + ] + }, + "person": { + "aliases": { + "names": [ + "male" + ], + "unicodes": { + "composite": [ + "1f9cd" + ], + "secondary": [ + "10f183" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "man", + "person standing", + "stand", + "standing", + "woman" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f183", + "label": "Person", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152z" + } + }, + "free": [ + "solid" + ] + }, + "person-arrow-down-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ground", + "indigenous", + "native" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e538", + "label": "Person Arrow Down To Line", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8 352V352h16v96H184zm-64 0H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H152h80H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H264V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6H177.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L120 256.9V448zM464 64V306.7l-25.4-25.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l80 80c12.5 12.5 32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L528 306.7V64c0-17.7-14.3-32-32-32s-32 14.3-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "person-arrow-up-from-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "population", + "rise" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e539", + "label": "Person Arrow Up From Line", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8 352V352h16v96H184zm-64 0H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H152h80H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H264V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6H177.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L120 256.9V448zM598.6 121.4l-80-80c-12.5-12.5-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L464 141.3 464 384c0 17.7 14.3 32 32 32s32-14.3 32-32V141.3l25.4 25.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z" + } + }, + "free": [ + "solid" + ] + }, + "person-biking": { + "aliases": { + "names": [ + "biking" + ], + "unicodes": { + "composite": [ + "1f6b4" + ], + "secondary": [ + "10f84a" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bicycle", + "bike", + "biking", + "cyclist", + "pedal", + "person biking", + "summer", + "wheel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f84a", + "label": "Person Biking", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M400 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm27.2 64l-61.8-48.8c-17.3-13.6-41.7-13.8-59.1-.3l-83.1 64.2c-30.7 23.8-28.5 70.8 4.3 91.6L288 305.1V416c0 17.7 14.3 32 32 32s32-14.3 32-32V288c0-10.7-5.3-20.7-14.2-26.6L295 232.9l60.3-48.5L396 217c5.7 4.5 12.7 7 20 7h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H427.2zM56 384a72 72 0 1 1 144 0A72 72 0 1 1 56 384zm200 0A128 128 0 1 0 0 384a128 128 0 1 0 256 0zm184 0a72 72 0 1 1 144 0 72 72 0 1 1 -144 0zm200 0a128 128 0 1 0 -256 0 128 128 0 1 0 256 0z" + } + }, + "free": [ + "solid" + ] + }, + "person-booth": { + "aliases": { + "unicodes": { + "secondary": [ + "10f756" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "changing room", + "curtain", + "vote", + "voting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f756", + "label": "Person Booth", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V192h64V32zm320 0c0-17.7-14.3-32-32-32s-32 14.3-32 32V480c0 17.7 14.3 32 32 32s32-14.3 32-32V32zM224 512c17.7 0 32-14.3 32-32V320H192V480c0 17.7 14.3 32 32 32zM320 0c-9.3 0-18.1 4-24.2 11s-8.8 16.3-7.5 25.5l31.2 218.6L288.6 409.7c-3.5 17.3 7.8 34.2 25.1 37.7s34.2-7.8 37.7-25.1l.7-3.6c1.3 16.4 15.1 29.4 31.9 29.4c17.7 0 32-14.3 32-32c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H320zM112 80A48 48 0 1 0 16 80a48 48 0 1 0 96 0zm0 261.3V269.3l4.7 4.7c9 9 21.2 14.1 33.9 14.1H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H157.3l-41.6-41.6c-14.3-14.3-33.8-22.4-54-22.4C27.6 160 0 187.6 0 221.6v55.7l0 .9V480c0 17.7 14.3 32 32 32s32-14.3 32-32V384l32 42.7V480c0 17.7 14.3 32 32 32s32-14.3 32-32V421.3c0-10.4-3.4-20.5-9.6-28.8L112 341.3z" + } + }, + "free": [ + "solid" + ] + }, + "person-breastfeeding": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baby", + "child", + "infant", + "mother", + "nutrition", + "sustenance" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e53a", + "label": "Person Breastfeeding", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0a80 80 0 1 1 0 160A80 80 0 1 1 224 0zM436.8 382.8L373.5 462c-16.6 20.7-46.8 24.1-67.5 7.5c-17.6-14.1-22.7-38.1-13.5-57.7l-.7-.1c-38.9-5.6-74.3-25.1-99.7-54.8V320c0-17.7-14.3-32-32-32s-32 14.3-32 32v48c0 .8 0 1.6 .1 2.4l101.4 50.7c23.7 11.9 33.3 40.7 21.5 64.4s-40.7 33.3-64.4 21.5L27.2 427.3c-1.1-.5-2.2-1.1-3.3-1.7c-4.9-2.8-9.2-6.4-12.6-10.6c-4.6-5.4-7.8-11.7-9.6-18.4c-3.3-12-1.9-25.2 4.8-36.6c.6-1.1 1.3-2.2 2-3.2L75.6 256.1c26.7-40.1 71.7-64.1 119.8-64.1h75.2c46.5 0 90.1 22.5 117.2 60.3l50.7 70.9c2.2 3 4 6.1 5.5 9.4c2.9 6.7 4.3 13.8 4 20.8c-.3 10.6-4.2 21-11.2 29.4zM320 332a44 44 0 1 0 -88 0 44 44 0 1 0 88 0z" + } + }, + "free": [ + "solid" + ] + }, + "person-burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abuse", + "accident", + "crash", + "explode", + "violence" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e53b", + "label": "Person Burst", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M480 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8 384V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V256.9l28.6 47.5c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-58.3-97c-17.4-28.9-48.6-46.6-82.3-46.6H465.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L408 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32zM190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74L55.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L10.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L90.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6L176 286.1l58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 50.5-7.8 24.4-40.5-55.2-38L315 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3L220.3 92.1l-29.4-74z" + } + }, + "free": [ + "solid" + ] + }, + "person-cane": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aging", + "cane", + "elderly", + "old", + "staff" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e53c", + "label": "Person Cane", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M240 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm-8 187.3l47.4 57.1c11.3 13.6 31.5 15.5 45.1 4.2s15.5-31.5 4.2-45.1l-73.7-88.9c-18.2-22-45.3-34.7-73.9-34.7H145.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L88 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V235.3zM320 376c0-4.4 3.6-8 8-8s8 3.6 8 8V488c0 13.3 10.7 24 24 24s24-10.7 24-24V376c0-30.9-25.1-56-56-56s-56 25.1-56 56v8c0 13.3 10.7 24 24 24s24-10.7 24-24v-8z" + } + }, + "free": [ + "solid" + ] + }, + "person-chalkboard": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blackboard", + "instructor", + "keynote", + "lesson", + "presentation", + "teacher" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e53d", + "label": "Person Chalkboard", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8 384V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V192h56 64 16c17.7 0 32-14.3 32-32s-14.3-32-32-32H384V64H576V256H384V224H320v48c0 26.5 21.5 48 48 48H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H368c-26.5 0-48 21.5-48 48v80H243.1 177.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9L120 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "person-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "approved", + "not affected", + "ok", + "okay" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e53e", + "label": "Person Circle Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zm136 16a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L416 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + }, + "free": [ + "solid" + ] + }, + "person-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "alert", + "lost", + "missing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e53f", + "label": "Person Circle Exclamation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "person-circle-minus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "remove" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e540", + "label": "Person Circle Minus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zm136 16a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm224 0c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16s7.2 16 16 16H496c8.8 0 16-7.2 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "person-circle-plus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "found" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e541", + "label": "Person Circle Plus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm16 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v48H368c-8.8 0-16 7.2-16 16s7.2 16 16 16h48v48c0 8.8 7.2 16 16 16s16-7.2 16-16V384h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H448V304z" + } + }, + "free": [ + "solid" + ] + }, + "person-circle-question": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "lost", + "missing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e542", + "label": "Person Circle Question", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zM368 321.6V328c0 8.8 7.2 16 16 16s16-7.2 16-16v-6.4c0-5.3 4.3-9.6 9.6-9.6h40.5c7.7 0 13.9 6.2 13.9 13.9c0 5.2-2.9 9.9-7.4 12.3l-32 16.8c-5.3 2.8-8.6 8.2-8.6 14.2V384c0 8.8 7.2 16 16 16s16-7.2 16-16v-5.1l23.5-12.3c15.1-7.9 24.5-23.6 24.5-40.6c0-25.4-20.6-45.9-45.9-45.9H409.6c-23 0-41.6 18.6-41.6 41.6z" + } + }, + "free": [ + "solid" + ] + }, + "person-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dead", + "removed" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e543", + "label": "Person Circle Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9L59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l44.9 74.7c-16.1 17.6-28.6 38.5-36.6 61.5c-1.9-1.8-3.5-3.9-4.9-6.3L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H152zM432 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm59.3 107.3c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L432 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L409.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L432 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L454.6 368l36.7-36.7z" + } + }, + "free": [ + "solid" + ] + }, + "person-digging": { + "aliases": { + "names": [ + "digging" + ], + "unicodes": { + "secondary": [ + "10f85e" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bury", + "construction", + "debris", + "dig", + "men at work" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f85e", + "label": "Person Digging", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M208 64a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM9.8 214.8c5.1-12.2 19.1-18 31.4-12.9L60.7 210l22.9-38.1C99.9 144.6 129.3 128 161 128c51.4 0 97 32.9 113.3 81.7l34.6 103.7 79.3 33.1 34.2-45.6c6.4-8.5 16.6-13.3 27.2-12.8s20.3 6.4 25.8 15.5l96 160c5.9 9.9 6.1 22.2 .4 32.2s-16.3 16.2-27.8 16.2H288c-11.1 0-21.4-5.7-27.2-15.2s-6.4-21.2-1.4-31.1l16-32c5.4-10.8 16.5-17.7 28.6-17.7h32l22.5-30L22.8 246.2c-12.2-5.1-18-19.1-12.9-31.4zm82.8 91.8l112 48c11.8 5 19.4 16.6 19.4 29.4v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V405.1l-60.6-26-37 111c-5.6 16.8-23.7 25.8-40.5 20.2S-3.9 486.6 1.6 469.9l48-144 11-33 32 13.7z" + } + }, + "free": [ + "solid" + ] + }, + "person-dots-from-line": { + "aliases": { + "names": [ + "diagnoses" + ], + "unicodes": { + "secondary": [ + "10f470" + ] + } + }, + "changes": [ + "5.0.7", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "allergy", + "diagnosis" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f470", + "label": "Person Dots From Line", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 176A88 88 0 1 0 288 0a88 88 0 1 0 0 176zM78.7 372.9c15-12.5 50-34.4 97.3-50.1V432H400V322.7c47.3 15.8 82.3 37.7 97.3 50.1c20.4 17 50.6 14.2 67.6-6.1s14.2-50.6-6.1-67.6c-12-10-30.1-22.5-53.2-35C497.2 278.4 481.7 288 464 288c-26.5 0-48-21.5-48-48c0-4.3 .6-8.4 1.6-12.4C379.1 215.9 335.3 208 288 208c-60.2 0-114.9 12.9-160 29.9c0 .7 0 1.4 0 2.1c0 26.5-21.5 48-48 48c-11.8 0-22.7-4.3-31-11.4c-13.1 8.1-23.7 15.9-31.7 22.5c-20.4 17-23.1 47.2-6.1 67.6s47.2 23.1 67.6 6.1zM24 464c-13.3 0-24 10.7-24 24s10.7 24 24 24H552c13.3 0 24-10.7 24-24s-10.7-24-24-24H24zM224 280a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zm104 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM96 240a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm368 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + }, + "free": [ + "solid" + ] + }, + "person-dress": { + "aliases": { + "names": [ + "female" + ], + "unicodes": { + "secondary": [ + "10f182" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "man", + "skirt", + "woman" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f182", + "label": "Person Dress", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM88 384H70.2c-10.9 0-18.6-10.7-15.2-21.1L93.3 248.1 59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l53.6-89.2c20.3-33.7 56.7-54.3 96-54.3h11.6c39.3 0 75.7 20.6 96 54.3l53.6 89.2c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9l-33.9-56.3L265 362.9c3.5 10.4-4.3 21.1-15.2 21.1H232v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H152v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384z" + } + }, + "free": [ + "solid" + ] + }, + "person-dress-burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abuse", + "accident", + "crash", + "explode", + "violence" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e544", + "label": "Person Dress Burst", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M528 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM390.2 384H408v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h16v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h17.8c10.9 0 18.6-10.7 15.2-21.1L546.7 248.1l33.9 56.3c9.1 15.1 28.8 20 43.9 10.9s20-28.8 10.9-43.9l-53.6-89.2c-20.2-33.7-56.7-54.3-96-54.3H474.2c-39.3 0-75.7 20.6-96 54.3l-53.6 89.2c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9l33.9-56.3L375 362.9c-3.5 10.4 4.3 21.1 15.2 21.1zM190.9 18.1C188.4 12 182.6 8 176 8s-12.4 4-14.9 10.1l-29.4 74L55.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1L10.9 206.4c-5.4 3.7-8 10.3-6.5 16.7s6.7 11.2 13.1 12.2l78.7 12.2L90.6 327c-.5 6.5 3.1 12.7 9 15.5s12.9 1.8 17.8-2.6L176 286.1l58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 50.5-7.8 24.4-40.5-55.2-38L315 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3L220.3 92.1l-29.4-74z" + } + }, + "free": [ + "solid" + ] + }, + "person-drowning": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drown", + "emergency", + "swim" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e545", + "label": "Person Drowning", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M192 64c0-17.7-14.3-32-32-32s-32 14.3-32 32V96.2c0 54.1 23.5 104 62.2 138.3l-21 146.7c7.8 2.1 15.5 3.3 22.8 3.3c21.1 0 42-8.5 59.2-20.3c22.1-15.5 51.6-15.5 73.7 0c12.4 8.5 26.1 14.8 39.7 18l17.7-97.6c10.7-1.2 21.3-3.1 31.9-5.5l105-23.9c17.2-3.9 28-21.1 24.1-38.3s-21.1-28-38.3-24.1L400 216.6c-41 9.3-83.7 7.5-123.7-5.2c-50.2-16-84.3-62.6-84.3-115.3V64zM320 192a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM306.5 389.9c-11.1-7.9-25.9-7.9-37 0C247 405.4 219.5 416 192 416c-26.9 0-55.3-10.8-77.4-26.1l0 0c-11.9-8.5-28.1-7.8-39.2 1.7c-14.4 11.9-32.5 21-50.6 25.2c-17.2 4-27.9 21.2-23.9 38.4s21.2 27.9 38.4 23.9c24.5-5.7 44.9-16.5 58.2-25C126.5 469.7 159 480 192 480c31.9 0 60.6-9.9 80.4-18.9c5.8-2.7 11.1-5.3 15.6-7.7c4.5 2.4 9.7 5.1 15.6 7.7c19.8 9 48.6 18.9 80.4 18.9c33 0 65.5-10.3 94.5-25.8c13.4 8.4 33.7 19.3 58.2 25c17.2 4 34.4-6.7 38.4-23.9s-6.7-34.4-23.9-38.4c-18.1-4.2-36.2-13.3-50.6-25.2c-11.1-9.4-27.3-10.1-39.2-1.7l0 0C439.4 405.2 410.9 416 384 416c-27.5 0-55-10.6-77.5-26.1z" + } + }, + "free": [ + "solid" + ] + }, + "person-falling": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accident", + "fall", + "trip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e546", + "label": "Person Falling", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M256 0c17.7 0 32 14.3 32 32l0 9.8c0 54.6-27.9 104.6-72.5 133.6l.2 .3L272.5 256l87.5 0c15.1 0 29.3 7.1 38.4 19.2l43.2 57.6c10.6 14.1 7.7 34.2-6.4 44.8s-34.2 7.7-44.8-6.4L352 320l-96 0h-1.4l92.3 142.6c9.6 14.8 5.4 34.6-9.5 44.3s-34.6 5.4-44.3-9.5L132.5 249.2c-2.9 9.2-4.5 19-4.5 29l0 73.8c0 17.7-14.3 32-32 32s-32-14.3-32-32V278.2c0-65.1 39.6-123.7 100.1-147.9C200.3 115.8 224 80.8 224 41.8l0-9.8c0-17.7 14.3-32 32-32zM80 32a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + }, + "free": [ + "solid" + ] + }, + "person-falling-burst": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accident", + "crash", + "death", + "fall", + "homicide", + "murder" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e547", + "label": "Person Falling Burst", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 9.8c0 39-23.7 74-59.9 88.4C71.6 154.5 32 213 32 278.2V352c0 17.7 14.3 32 32 32s32-14.3 32-32l0-73.8c0-10 1.6-19.8 4.5-29L261.1 497.4c9.6 14.8 29.4 19.1 44.3 9.5s19.1-29.4 9.5-44.3L222.6 320H224l80 0 38.4 51.2c10.6 14.1 30.7 17 44.8 6.4s17-30.7 6.4-44.8l-43.2-57.6C341.3 263.1 327.1 256 312 256l-71.5 0-56.8-80.2-.2-.3c44.7-29 72.5-79 72.5-133.6l0-9.8zM96 80A48 48 0 1 0 0 80a48 48 0 1 0 96 0zM464 286.1l58.6 53.9c4.8 4.4 11.9 5.5 17.8 2.6s9.5-9 9-15.5l-5.6-79.4 78.7-12.2c6.5-1 11.7-5.9 13.1-12.2s-1.1-13-6.5-16.7l-65.6-45.1L603 92.2c3.3-5.7 2.7-12.8-1.4-17.9s-10.9-7.2-17.2-5.3L508.3 92.1l-29.4-74C476.4 12 470.6 8 464 8s-12.4 4-14.9 10.1l-29.4 74L343.6 68.9c-6.3-1.9-13.1 .2-17.2 5.3s-4.6 12.2-1.4 17.9l39.5 69.1-65.6 45.1c-5.4 3.7-8 10.3-6.5 16.7c.1 .3 .1 .6 .2 .8l19.4 0c20.1 0 39.2 7.5 53.8 20.8l18.4 2.9L383 265.3l36.2 48.3c2.1 2.8 3.9 5.7 5.5 8.6L464 286.1z" + } + }, + "free": [ + "solid" + ] + }, + "person-half-dress": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gender", + "man", + "restroom", + "transgender", + "woman" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e548", + "label": "Person Half Dress", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm8 352V128h6.9c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L232 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352h0zM58.2 182.3c19.9-33.1 55.3-53.5 93.8-54.3V384h0v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H70.2c-10.9 0-18.6-10.7-15.2-21.1L93.3 248.1 59.4 304.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l53.6-89.2z" + } + }, + "free": [ + "solid" + ] + }, + "person-harassing": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "abuse", + "scream", + "shame", + "shout", + "yell" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e549", + "label": "Person Harassing", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM59.4 304.5L88 256.9V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352h16V480c0 17.7 14.3 32 32 32s32-14.3 32-32V235.3l47.4 57.1c11.3 13.6 31.5 15.5 45.1 4.2s15.5-31.5 4.2-45.1l-73.7-88.9c-18.2-22-45.3-34.7-73.9-34.7H145.1c-33.7 0-64.9 17.7-82.3 46.6l-58.3 97c-9.1 15.1-4.2 34.8 10.9 43.9s34.8 4.2 43.9-10.9zM480 240a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM464 344v58.7l-41.4-41.4c-7.3-7.3-17.6-10.6-27.8-9s-18.9 8.1-23.5 17.3l-48 96c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3L408.8 438l54.7 54.7c12.4 12.4 29.1 19.3 46.6 19.3c36.4 0 65.9-29.5 65.9-65.9V344c0-30.9-25.1-56-56-56s-56 25.1-56 56zM288 48c0 8.8 7.2 16 16 16h56c8.8 0 16-7.2 16-16s-7.2-16-16-16H304c-8.8 0-16 7.2-16 16zm-.8 49.7c-7.9-4-17.5-.7-21.5 7.2s-.7 17.5 7.2 21.5l48 24c7.9 4 17.5 .7 21.5-7.2s.7-17.5-7.2-21.5l-48-24z" + } + }, + "free": [ + "solid" + ] + }, + "person-hiking": { + "aliases": { + "names": [ + "hiking" + ], + "unicodes": { + "secondary": [ + "10f6ec" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "autumn", + "fall", + "hike", + "mountain", + "outdoors", + "summer", + "walk" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6ec", + "label": "Person Hiking", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm51.3 182.7L224.2 307l49.7 49.7c9 9 14.1 21.2 14.1 33.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V397.3l-73.9-73.9c-15.8-15.8-22.2-38.6-16.9-60.3l20.4-84c8.3-34.1 42.7-54.9 76.7-46.4c19 4.8 35.6 16.4 46.4 32.7L305.1 208H336V184c0-13.3 10.7-24 24-24s24 10.7 24 24v55.8c0 .1 0 .2 0 .2s0 .2 0 .2V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V272H296.6c-16 0-31-8-39.9-21.4l-13.3-20zM81.1 471.9L117.3 334c3 4.2 6.4 8.2 10.1 11.9l41.9 41.9L142.9 488.1c-4.5 17.1-22 27.3-39.1 22.8s-27.3-22-22.8-39.1zm55.5-346L101.4 266.5c-3 12.1-14.9 19.9-27.2 17.9l-47.9-8c-14-2.3-22.9-16.3-19.2-30L31.9 155c9.5-34.8 41.1-59 77.2-59h4.2c15.6 0 27.1 14.7 23.3 29.8z" + } + }, + "free": [ + "solid" + ] + }, + "person-military-pointing": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "army", + "customs", + "guard" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e54a", + "label": "Person Military Pointing", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M214.9 14.1C202 15.2 192 26 192 39c0 13.8 11.2 25 25 25H368c8.8 0 16-7.2 16-16V17.4C384 8 376 .7 366.7 1.4L214.9 14.1zM208 112c0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H209.6c-1 5.2-1.6 10.5-1.6 16zM40 224c-22.1 0-40 17.9-40 40s17.9 40 40 40H192v89.4L354.8 230.5c-13.3-4.3-27.3-6.5-41.6-6.5H208 40zm345.7 20.9L214.6 416H384V369.7l53.6 90.6c11.2 19 35.8 25.3 54.8 14.1s25.3-35.8 14.1-54.8L430.3 290.8c-11.2-18.9-26.6-34.5-44.6-45.9zM192 448v32c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32V448H192z" + } + }, + "free": [ + "solid" + ] + }, + "person-military-rifle": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "armed forces", + "army", + "military", + "rifle", + "war" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e54b", + "label": "Person Military Rifle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M128 39c0-13 10-23.8 22.9-24.9L302.7 1.4C312 .7 320 8 320 17.4V48c0 8.8-7.2 16-16 16H153c-13.8 0-25-11.2-25-25zm17.6 57H302.4c1 5.2 1.6 10.5 1.6 16c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-5.5 .6-10.8 1.6-16zm228 364.3L320 369.7V480c0 1.3-.1 2.5-.2 3.8L145.5 234.9c16.6-7.1 34.6-10.9 53.3-10.9h50.4c15.9 0 31.3 2.8 45.8 7.9L389.9 67.7c-7.7-4.4-10.3-14.2-5.9-21.9s14.2-10.3 21.9-5.9l13.9 8 13.9 8c7.7 4.4 10.3 14.2 5.9 21.9L384 173.9l1.6 .9c15.3 8.8 20.6 28.4 11.7 43.7L360.6 282c2 2.8 3.9 5.8 5.7 8.8l76.1 128.8c11.2 19 4.9 43.5-14.1 54.8s-43.5 4.9-54.8-14.1zM288 512H160c-17.7 0-32-14.3-32-32V369.7L74.4 460.3c-11.2 19-35.8 25.3-54.8 14.1S-5.7 438.7 5.6 419.7L81.7 290.8c9.4-15.8 21.7-29.3 36-40L299.1 510c-3.5 1.3-7.2 2-11.1 2zM264 320a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + }, + "free": [ + "solid" + ] + }, + "person-military-to-person": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "civilian", + "coordination", + "military" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e54c", + "label": "Person Military To Person", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M67.1 11.7c-8 .9-14.1 7.7-14.1 15.8c0 8.7 7 15.8 15.8 15.9H173.5c8.3-.1 14.9-6.8 14.9-15.1V15.1c0-9-7.8-16-16.7-15L67.1 11.7zM178.6 73.5H62.9c-1.5 5.3-2.4 11-2.4 16.8c0 33.3 27 60.2 60.2 60.2s60.2-27 60.2-60.2c0-5.8-.8-11.5-2.4-16.8zM30.4 240.9v30.1c0 16.6 13.5 30.1 30.1 30.1H180.9c1.7 0 3.3-.1 4.9-.4L50.1 196.4c-12.1 11-19.7 26.9-19.7 44.6zm179.1 40c1.1-3.1 1.6-6.4 1.6-9.9V240.9c0-33.3-27-60.2-60.2-60.2H90.6c-3.5 0-7 .3-10.3 .9l129.1 99.3zM361.6 150.6a60.2 60.2 0 1 0 0-120.5 60.2 60.2 0 1 0 0 120.5zm-30.1 30.1c-33.3 0-60.2 27-60.2 60.2v30.1c0 16.6 13.5 30.1 30.1 30.1H421.9c16.6 0 30.1-13.5 30.1-30.1V240.9c0-33.3-27-60.2-60.2-60.2H331.5zM203.3 423.6c4.9-4.3 7.7-10.5 7.7-17s-2.8-12.7-7.7-17l-60.2-52.7c-6.7-5.8-16.1-7.2-24.2-3.6s-13.3 11.7-13.3 20.6V384l-82.8 0C10.3 384 .2 394.1 .2 406.6s10.1 22.6 22.6 22.6l82.8 0v30.1c0 8.9 5.2 16.9 13.3 20.6s17.5 2.3 24.2-3.6l60.2-52.7zm67.9-17c0 6.5 2.8 12.7 7.7 17l60.2 53.1c6.7 5.9 16.1 7.3 24.2 3.6s13.3-11.7 13.3-20.6l0-30.5 82.8 0c12.5 0 22.6-10.1 22.6-22.6s-10.1-22.6-22.6-22.6l-82.8 0 0-30.1c0-8.9-5.2-16.9-13.3-20.6s-17.5-2.3-24.2 3.6L279 389.6c-4.9 4.3-7.7 10.5-7.7 17z" + } + }, + "free": [ + "solid" + ] + }, + "person-praying": { + "aliases": { + "names": [ + "pray" + ], + "unicodes": { + "composite": [ + "1f6d0" + ], + "secondary": [ + "10f683" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "kneel", + "place of worship", + "religion", + "thank", + "worship" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f683", + "label": "Person Praying", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 64A64 64 0 1 0 192 64a64 64 0 1 0 128 0zM200.7 264l22.9 31.5c6.5 8.9 16.3 14.7 27.2 16.1s21.9-1.7 30.4-8.7l88-72c17.1-14 19.6-39.2 5.6-56.3s-39.2-19.6-56.3-5.6l-55.2 45.2-26.2-36C221.6 156.7 196.6 144 170 144c-30.9 0-59.2 17.1-73.6 44.4L47.8 280.9c-20.2 38.5-9.4 85.9 25.6 111.8L126.6 432H40c-22.1 0-40 17.9-40 40s17.9 40 40 40H248c17.3 0 32.6-11.1 38-27.5s-.3-34.4-14.2-44.7L155.7 354l45-90z" + } + }, + "free": [ + "solid" + ] + }, + "person-pregnant": { + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baby", + "birth", + "child", + "pregnant", + "pregnant woman", + "woman" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e31e", + "label": "Person Pregnant", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM88 383c-13.8-3.6-24-16.1-24-31V296.9l-4.6 7.6c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c15-24.9 40.3-41.5 68.7-45.6c4.1-.6 8.2-1 12.5-1h1.1 12.5H160c1.4 0 2.8 .1 4.1 .3c35.7 2.9 65.4 29.3 72.1 65l6.1 32.5c44.3 8.6 77.7 47.5 77.7 94.3v32c0 17.7-14.3 32-32 32H272 232v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384h-8-8v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V383z" + } + }, + "free": [ + "solid" + ] + }, + "person-rays": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "focus", + "shine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e54d", + "label": "Person Rays", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V256.9l-28.6 47.5c-9.1 15.1-28.8 20-43.9 10.9s-20-28.8-10.9-43.9l58.3-97c17.4-28.9 48.6-46.6 82.3-46.6h29.7c33.7 0 64.9 17.7 82.3 46.6l58.3 97c9.1 15.1 4.2 34.8-10.9 43.9s-34.8 4.2-43.9-10.9L328 256.9V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H248zM7 7C16.4-2.3 31.6-2.3 41 7l80 80c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L7 41C-2.3 31.6-2.3 16.4 7 7zM471 7c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-80 80c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L471 7zM7 505c-9.4-9.4-9.4-24.6 0-33.9l80-80c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L41 505c-9.4 9.4-24.6 9.4-33.9 0zm464 0l-80-80c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l80 80c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0z" + } + }, + "free": [ + "solid" + ] + }, + "person-rifle": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "army", + "combatant", + "gun", + "military", + "rifle", + "war" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e54e", + "label": "Person Rifle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M249.2 192c25.4 0 49.8 7.1 70.8 19.9V512H128V337.7L74.4 428.3c-11.2 19-35.8 25.3-54.8 14.1S-5.7 406.7 5.6 387.7L81.7 258.8c24.5-41.4 69-66.8 117.1-66.8h50.4zM144 80a80 80 0 1 1 160 0A80 80 0 1 1 144 80zM432 0c8.8 0 16 7.2 16 16V132.3c9.6 5.5 16 15.9 16 27.7V269.3l16-5.3V208c0-8.8 7.2-16 16-16h16c8.8 0 16 7.2 16 16v84.5c0 6.9-4.4 13-10.9 15.2L464 325.3V352h48c8.8 0 16 7.2 16 16v16c0 8.8-7.2 16-16 16H468l23 92.1c2.5 10.1-5.1 19.9-15.5 19.9H416c-8.8 0-16-7.2-16-16V400H384c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32V160c0-11.8 6.4-22.2 16-27.7V32c-8.8 0-16-7.2-16-16s7.2-16 16-16h16 16z" + } + }, + "free": [ + "solid" + ] + }, + "person-running": { + "aliases": { + "names": [ + "running" + ], + "unicodes": { + "composite": [ + "1f3c3" + ], + "secondary": [ + "10f70c" + ] + } + }, + "changes": [ + "5.4.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exit", + "flee", + "marathon", + "person running", + "race", + "running" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f70c", + "label": "Person Running", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M320 48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM125.7 175.5c9.9-9.9 23.4-15.5 37.5-15.5c1.9 0 3.8 .1 5.6 .3L137.6 254c-9.3 28 1.7 58.8 26.8 74.5l86.2 53.9-25.4 88.8c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l28.7-100.4c5.9-20.6-2.6-42.6-20.7-53.9L238 299l30.9-82.4 5.1 12.3C289 264.7 323.9 288 362.7 288H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H362.7c-12.9 0-24.6-7.8-29.5-19.7l-6.3-15c-14.6-35.1-44.1-61.9-80.5-73.1l-48.7-15c-11.1-3.4-22.7-5.2-34.4-5.2c-31 0-60.8 12.3-82.7 34.3L57.4 153.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l23.1-23.1zM91.2 352H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h69.6c19 0 36.2-11.2 43.9-28.5L157 361.6l-9.5-6c-17.5-10.9-30.5-26.8-37.9-44.9L91.2 352z" + } + }, + "free": [ + "solid" + ] + }, + "person-shelter": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "house", + "inside", + "roof", + "safe", + "safety", + "shelter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e54f", + "label": "Person Shelter", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M271.9 4.2c-9.8-5.6-21.9-5.6-31.8 0l-224 128C6.2 137.9 0 148.5 0 160V480c0 17.7 14.3 32 32 32s32-14.3 32-32V178.6L256 68.9 448 178.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-11.5-6.2-22.1-16.1-27.8l-224-128zM256 208a40 40 0 1 0 0-80 40 40 0 1 0 0 80zm-8 280V400h16v88c0 13.3 10.7 24 24 24s24-10.7 24-24V313.5l26.9 49.9c6.3 11.7 20.8 16 32.5 9.8s16-20.8 9.8-32.5l-37.9-70.3c-15.3-28.5-45.1-46.3-77.5-46.3H246.2c-32.4 0-62.1 17.8-77.5 46.3l-37.9 70.3c-6.3 11.7-1.9 26.2 9.8 32.5s26.2 1.9 32.5-9.8L200 313.5V488c0 13.3 10.7 24 24 24s24-10.7 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "person-skating": { + "aliases": { + "names": [ + "skating" + ], + "unicodes": { + "secondary": [ + "10f7c5" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "figure skating", + "ice", + "olympics", + "rink", + "skate", + "winter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7c5", + "label": "Person Skating", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM128 128c0-17.7 14.3-32 32-32H319.4c43.6 0 64.6 53.4 32.8 83.1l-74.4 69.4 60.2 60.2c9 9 14.1 21.2 14.1 33.9V416c0 17.7-14.3 32-32 32s-32-14.3-32-32V349.3l-77.9-77.8c-26.6-26.6-24.6-70.3 4.3-94.4l20.4-17H160c-17.7 0-32-14.3-32-32zM81.4 353.4l86.9-86.9c4.6 10 11 19.3 19.3 27.5l21.8 21.8-82.7 82.7c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3zm322.5 95.1c8.6 2.1 13.8 10.8 11.6 19.4l-.4 1.7c-6.2 24.9-28.6 42.4-54.3 42.4H272c-8.8 0-16-7.2-16-16s7.2-16 16-16h88.8c11 0 20.6-7.5 23.3-18.2l.4-1.7c2.1-8.6 10.8-13.8 19.4-11.6zM135.2 478.3l-6.2 3.1c-21.6 10.8-47.6 6.6-64.6-10.5L4.7 411.3c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l59.6 59.6c7.3 7.3 18.5 9.1 27.7 4.5l6.2-3.1c7.9-4 17.5-.7 21.5 7.2s.7 17.5-7.2 21.5z" + } + }, + "free": [ + "solid" + ] + }, + "person-skiing": { + "aliases": { + "names": [ + "skiing" + ], + "unicodes": { + "composite": [ + "26f7" + ], + "secondary": [ + "10f7c9" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "downhill", + "olympics", + "ski", + "skier", + "snow", + "winter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7c9", + "label": "Person Skiing", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M380.7 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM2.7 268.9c6.1-11.8 20.6-16.3 32.4-10.2L232.7 361.3l46.2-69.2-75.1-75.1c-14.6-14.6-20.4-33.9-18.4-52.1l108.8 52 39.3 39.3c16.2 16.2 18.7 41.5 6 60.6L289.8 391l128.7 66.8c13.6 7.1 29.8 7.2 43.6 .3l15.2-7.6c11.9-5.9 26.3-1.1 32.2 10.7s1.1 26.3-10.7 32.2l-15.2 7.6c-27.5 13.7-59.9 13.5-87.2-.7L12.9 301.3C1.2 295.2-3.4 280.7 2.7 268.9zM118.9 65.6L137 74.2l8.7-17.4c4-7.9 13.6-11.1 21.5-7.2s11.1 13.6 7.2 21.5l-8.5 16.9 54.7 26.2c1.5-.7 3.1-1.4 4.7-2.1l83.4-33.4c34.2-13.7 72.8 4.2 84.5 39.2l17.1 51.2 52.1 26.1c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-58.1-29c-11.4-5.7-20-15.7-24.1-27.8l-5.8-17.3-27.3 12.1-6.8 3-6.7-3.2L151.5 116.7l-9.2 18.4c-4 7.9-13.6 11.1-21.5 7.2s-11.1-13.6-7.2-21.5l9-18-17.6-8.4c-8-3.8-11.3-13.4-7.5-21.3s13.4-11.3 21.3-7.5z" + } + }, + "free": [ + "solid" + ] + }, + "person-skiing-nordic": { + "aliases": { + "names": [ + "skiing-nordic" + ], + "unicodes": { + "secondary": [ + "10f7ca" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cross country", + "olympics", + "winter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7ca", + "label": "Person Skiing Nordic", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M336 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM227.2 160c1.9 0 3.8 .1 5.6 .3L201.6 254c-9.3 28 1.7 58.8 26.8 74.5l86.2 53.9L291.3 464H202.8l41.1-88.1-32.4-20.3c-7.8-4.9-14.7-10.7-20.6-17.3L132.2 464H99.7l54.2-257.6c4.6-1.5 9-4.1 12.7-7.8l23.1-23.1c9.9-9.9 23.4-15.5 37.5-15.5zM121.4 198.6c.4 .4 .8 .8 1.3 1.2L67 464H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H159.3c.4 0 .9 0 1.3 0H319.3c.5 0 1 0 1.4 0H504c39.8 0 72-32.2 72-72v-8c0-13.3-10.7-24-24-24s-24 10.7-24 24v8c0 13.3-10.7 24-24 24H434.6l27.6-179.3c10.5-5.2 17.8-16.1 17.8-28.7c0-17.7-14.3-32-32-32H426.7c-12.9 0-24.6-7.8-29.5-19.7l-6.3-15c-14.6-35.1-44.1-61.9-80.5-73.1l-48.7-15c-11.1-3.4-22.7-5.2-34.4-5.2c-31 0-60.8 12.3-82.7 34.3l-23.1 23.1c-12.5 12.5-12.5 32.8 0 45.3zm308 89.4L402.3 464H357.8l21.6-75.6c5.9-20.6-2.6-42.6-20.7-53.9L302 299l30.9-82.4 5.1 12.3C353 264.7 387.9 288 426.7 288h2.7z" + } + }, + "free": [ + "solid" + ] + }, + "person-snowboarding": { + "aliases": { + "names": [ + "snowboarding" + ], + "unicodes": { + "composite": [ + "1f3c2" + ], + "secondary": [ + "10f7ce" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "olympics", + "ski", + "snow", + "snowboard", + "snowboarder", + "winter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7ce", + "label": "Person Snowboarding", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M209.7 3.4c15.8-7.9 35-1.5 42.9 14.3l25 50 42.4 8.5c19.5 3.9 37.8 12.3 53.5 24.5l126.1 98.1c14 10.9 16.5 31 5.6 44.9s-31 16.5-44.9 5.6l-72.1-56.1-71.5 31.8 33.1 27.6c23.2 19.3 33.5 50 26.7 79.4l-17.4 75.2c-2.2 9.4-8.2 16.8-16.1 21l86.5 33.1c4.6 1.8 9.4 2.6 14.3 2.6H472c13.3 0 24 10.7 24 24s-10.7 24-24 24H443.8c-10.8 0-21.4-2-31.5-5.8L60.1 371.3c-11.5-4.4-22-11.2-30.8-20L7 329c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22.4 22.4c4 4 8.7 7.1 14 9.1l22.4 8.6c-.8-1.6-1.5-3.2-2.1-4.9c-5.6-16.8 3.5-34.9 20.2-40.5L192 264.9l0-53.2c0-24.2 13.7-46.4 35.4-57.2l45.2-22.6-7.5-1.5c-19.4-3.9-35.9-16.5-44.7-34.1l-25-50c-7.9-15.8-1.5-35 14.3-42.9zM139 350.1l159 60.9c-2.1-5.6-2.6-11.9-1.1-18.2l17.4-75.2c1.4-5.9-.7-12-5.4-15.9l-52.8-44 0 18.8c0 20.7-13.2 39-32.8 45.5L139 350.1zM432 0a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + }, + "free": [ + "solid" + ] + }, + "person-swimming": { + "aliases": { + "names": [ + "swimmer" + ], + "unicodes": { + "composite": [ + "1f3ca" + ], + "secondary": [ + "10f5c4" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ocean", + "person swimming", + "pool", + "sea", + "swim", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5c4", + "label": "Person Swimming", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M309.5 178.4L447.9 297.1c-1.6 .9-3.2 2-4.8 3c-18 12.4-40.1 20.3-59.2 20.3c-19.6 0-40.8-7.7-59.2-20.3c-22.1-15.5-51.6-15.5-73.7 0c-17.1 11.8-38 20.3-59.2 20.3c-10.1 0-21.1-2.2-31.9-6.2C163.1 193.2 262.2 96 384 96h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H384c-26.9 0-52.3 6.6-74.5 18.4zM160 160A64 64 0 1 1 32 160a64 64 0 1 1 128 0zM306.5 325.9C329 341.4 356.5 352 384 352c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 405.7 417 416 384 416c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 341.2 165.1 352 192 352c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + }, + "free": [ + "solid" + ] + }, + "person-through-window": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "door", + "exit", + "forced entry", + "leave", + "robbery", + "steal", + "window" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e5a9", + "label": "Person Through Window", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 64l224 0 0 9.8c0 39-23.7 74-59.9 88.4C167.6 186.5 128 245 128 310.2l0 73.8s0 0 0 0H64V64zm288 0l224 0V384H508.3l-3.7-4.5-75.2-90.2c-9.1-10.9-22.6-17.3-36.9-17.3l-71.1 0-41-63.1c-.3-.5-.6-1-1-1.4c44.7-29 72.5-79 72.5-133.6l0-9.8zm73 320H379.2l42.7 64H592c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48V400c0 26.5 21.5 48 48 48H308.2l33.2 49.8c9.8 14.7 29.7 18.7 44.4 8.9s18.7-29.7 8.9-44.4L310.5 336l74.6 0 40 48zm-159.5 0H192s0 0 0 0l0-73.8c0-10.2 1.6-20.1 4.7-29.5L265.5 384zM192 128a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + }, + "free": [ + "solid" + ] + }, + "person-walking": { + "aliases": { + "names": [ + "walking" + ], + "unicodes": { + "composite": [ + "1f6b6" + ], + "secondary": [ + "10f554" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crosswalk", + "exercise", + "hike", + "move", + "person walking", + "walk", + "walking" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f554", + "label": "Person Walking", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M160 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM126.5 199.3c-1 .4-1.9 .8-2.9 1.2l-8 3.5c-16.4 7.3-29 21.2-34.7 38.2l-2.6 7.8c-5.6 16.8-23.7 25.8-40.5 20.2s-25.8-23.7-20.2-40.5l2.6-7.8c11.4-34.1 36.6-61.9 69.4-76.5l8-3.5c20.8-9.2 43.3-14 66.1-14c44.6 0 84.8 26.8 101.9 67.9L281 232.7l21.4 10.7c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3L247 287.3c-10.3-5.2-18.4-13.8-22.8-24.5l-9.6-23-19.3 65.5 49.5 54c5.4 5.9 9.2 13 11.2 20.8l23 92.1c4.3 17.1-6.1 34.5-23.3 38.8s-34.5-6.1-38.8-23.3l-22-88.1-70.7-77.1c-14.8-16.1-20.3-38.6-14.7-59.7l16.9-63.5zM68.7 398l25-62.4c2.1 3 4.5 5.8 7 8.6l40.7 44.4-14.5 36.2c-2.4 6-6 11.5-10.6 16.1L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L68.7 398z" + } + }, + "free": [ + "solid" + ] + }, + "person-walking-arrow-loop-left": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "population return", + "return" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e551", + "label": "Person Walking Arrow Loop Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM123.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8C248.5 154.8 208.3 128 163.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1L68.7 398 9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L116.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zm347.7 119c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L461.3 384H480c88.4 0 160-71.6 160-160s-71.6-160-160-160L352 64c-17.7 0-32 14.3-32 32s14.3 32 32 32l128 0c53 0 96 43 96 96s-43 96-96 96H461.3l25.4-25.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-80 80c-12.5 12.5-12.5 32.8 0 45.3l80 80z" + } + }, + "free": [ + "solid" + ] + }, + "person-walking-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exit", + "internally displaced", + "leave", + "refugee" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e552", + "label": "Person Walking Arrow Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM123.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8C248.5 154.8 208.3 128 163.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1L68.7 398 9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L116.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zM550.6 153.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L530.7 224H384c-17.7 0-32 14.3-32 32s14.3 32 32 32H530.7l-25.4 25.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3l-80-80z" + } + }, + "free": [ + "solid" + ] + }, + "person-walking-dashed-line-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exit", + "refugee" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e553", + "label": "Person Walking Dashed Line Arrow Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM123.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L281 232.7l-15.3-36.8C248.5 154.8 208.3 128 163.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1L68.7 398 9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L116.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zM550.6 153.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L530.7 224H384c-17.7 0-32 14.3-32 32s14.3 32 32 32H530.7l-25.4 25.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l80-80c12.5-12.5 12.5-32.8 0-45.3l-80-80zM392 0c-13.3 0-24 10.7-24 24V72c0 13.3 10.7 24 24 24s24-10.7 24-24V24c0-13.3-10.7-24-24-24zm24 152c0-13.3-10.7-24-24-24s-24 10.7-24 24v16c0 13.3 10.7 24 24 24s24-10.7 24-24V152zM392 320c-13.3 0-24 10.7-24 24v16c0 13.3 10.7 24 24 24s24-10.7 24-24V344c0-13.3-10.7-24-24-24zm24 120c0-13.3-10.7-24-24-24s-24 10.7-24 24v48c0 13.3 10.7 24 24 24s24-10.7 24-24V440z" + } + }, + "free": [ + "solid" + ] + }, + "person-walking-luggage": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "baggage", + "briefcase", + "carry-on", + "deployment", + "rolling" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e554", + "label": "Person Walking Luggage", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M400 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM315.7 200.5c1-.4 1.9-.8 2.9-1.2l-16.9 63.5c-5.6 21.1-.1 43.6 14.7 59.7l70.7 77.1 22 88.1c4.3 17.1 21.7 27.6 38.8 23.3s27.6-21.7 23.3-38.8l-23-92.1c-1.9-7.8-5.8-14.9-11.2-20.8l-49.5-54 19.3-65.5 9.6 23c4.4 10.6 12.5 19.3 22.8 24.5l26.7 13.3c15.8 7.9 35 1.5 42.9-14.3s1.5-35-14.3-42.9L473 232.7l-15.3-36.8C440.5 154.8 400.3 128 355.7 128c-22.8 0-45.3 4.8-66.1 14l-8 3.5c-32.9 14.6-58.1 42.4-69.4 76.5l-2.6 7.8c-5.6 16.8 3.5 34.9 20.2 40.5s34.9-3.5 40.5-20.2l2.6-7.8c5.7-17.1 18.3-30.9 34.7-38.2l8-3.5zm-30 135.1l-25 62.4-59.4 59.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L308.3 441c4.6-4.6 8.2-10.1 10.6-16.1l14.5-36.2-40.7-44.4c-2.5-2.7-4.8-5.6-7-8.6zM224 274.1c-7.7-4.4-17.4-1.8-21.9 5.9l-32 55.4L115.7 304c-15.3-8.8-34.9-3.6-43.7 11.7L8 426.6c-8.8 15.3-3.6 34.9 11.7 43.7l55.4 32c15.3 8.8 34.9 3.6 43.7-11.7l64-110.9c1.5-2.6 2.6-5.2 3.3-8L229.9 296c4.4-7.7 1.8-17.4-5.9-21.9z" + } + }, + "free": [ + "solid" + ] + }, + "person-walking-with-cane": { + "aliases": { + "names": [ + "blind" + ], + "unicodes": { + "secondary": [ + "10f29d" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blind", + "cane" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f29d", + "label": "Person Walking With Cane", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M144 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-8.4 32c-36.4 0-69.6 20.5-85.9 53.1L3.4 273.7c-7.9 15.8-1.5 35 14.3 42.9s35 1.5 42.9-14.3L96 231.6v43.2c0 17 6.7 33.3 18.7 45.3L192 397.3V480c0 17.7 14.3 32 32 32s32-14.3 32-32V390.6c0-12.7-5.1-24.9-14.1-33.9L192 306.7V213.3l70.4 93.9c10.6 14.1 30.7 17 44.8 6.4s17-30.7 6.4-44.8L236.8 166.4C218.7 142.2 190.2 128 160 128H135.6zM96.3 346.8L65 472.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l22-88.2L96.3 346.8zM418.8 505.1c5 7.3 15 9.1 22.3 4s9.1-15 4-22.3L326.9 316.1c-2.8 3.8-6.1 7.3-10.1 10.3c-5 3.8-10.5 6.4-16.2 7.9L418.8 505.1z" + } + }, + "free": [ + "solid" + ] + }, + "peseta-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Peseta Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e221", + "label": "Peseta Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64v96c-17.7 0-32 14.3-32 32s14.3 32 32 32l0 96V448c0 17.7 14.3 32 32 32s32-14.3 32-32V352h96c77.4 0 142-55 156.8-128H352c17.7 0 32-14.3 32-32s-14.3-32-32-32h-3.2C334 87 269.4 32 192 32H64zM282.5 160H96V96h96c41.8 0 77.4 26.7 90.5 64zM96 224H282.5c-13.2 37.3-48.7 64-90.5 64H96V224z" + } + }, + "free": [ + "solid" + ] + }, + "peso-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Peso Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e222", + "label": "Peso Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 32C46.3 32 32 46.3 32 64v64c-17.7 0-32 14.3-32 32s14.3 32 32 32l0 32c-17.7 0-32 14.3-32 32s14.3 32 32 32l0 64v96c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c68.4 0 127.7-39 156.8-96H352c17.7 0 32-14.3 32-32s-14.3-32-32-32h-.7c.5-5.3 .7-10.6 .7-16s-.2-10.7-.7-16h.7c17.7 0 32-14.3 32-32s-14.3-32-32-32H332.8C303.7 71 244.4 32 176 32H64zm190.4 96H96V96h80c30.5 0 58.2 12.2 78.4 32zM96 192H286.9c.7 5.2 1.1 10.6 1.1 16s-.4 10.8-1.1 16H96V192zm158.4 96c-20.2 19.8-47.9 32-78.4 32H96V288H254.4z" + } + }, + "free": [ + "solid" + ] + }, + "phabricator": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3db", + "label": "Phabricator", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4.5.2 28.9.2 28.9l-9.1 9.1s-29.2-.9-29.7.4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5.5 29.5.5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4.6 20.7-23.5 20.7-23.5l13.1.2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2.9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3.8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1.1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z" + } + }, + "free": [ + "brands" + ] + }, + "phoenix-framework": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3dc", + "label": "Phoenix Framework", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4.1-.8.2-1.1.3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8.6-1.5 1.2-2.2 1.8.1.2.1.3.2.5.8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7.3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1.2-.3.3-.4.5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6.1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2.1-.2 2.1.6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4.2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7.3.2.4.5.7.9-.5 0-.7.1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1.2-.1.4-.2.6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2.1-.3.1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7.4-.1.9 0 1.5.3-.6.4-1.2.9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4.6-.8.9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5.1-.1.2 0 .4.4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7.5-.2.8-.4 1.1-.4 13.1.1 26.1.7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z" + } + }, + "free": [ + "brands" + ] + }, + "phoenix-squadron": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f511", + "label": "Phoenix Squadron", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 63.38C142.49 27.25 201.55 7.31 260.51 8.81c29.58-.38 59.11 5.37 86.91 15.33-24.13-4.63-49-6.34-73.38-2.45C231.17 27 191 48.84 162.21 80.87c5.67-1 10.78-3.67 16-5.86 18.14-7.87 37.49-13.26 57.23-14.83 19.74-2.13 39.64-.43 59.28 1.92-14.42 2.79-29.12 4.57-43 9.59-34.43 11.07-65.27 33.16-86.3 62.63-13.8 19.71-23.63 42.86-24.67 67.13-.35 16.49 5.22 34.81 19.83 44a53.27 53.27 0 0 0 37.52 6.74c15.45-2.46 30.07-8.64 43.6-16.33 11.52-6.82 22.67-14.55 32-24.25 3.79-3.22 2.53-8.45 2.62-12.79-2.12-.34-4.38-1.11-6.3.3a203 203 0 0 1-35.82 15.37c-20 6.17-42.16 8.46-62.1.78 12.79 1.73 26.06.31 37.74-5.44 20.23-9.72 36.81-25.2 54.44-38.77a526.57 526.57 0 0 1 88.9-55.31c25.71-12 52.94-22.78 81.57-24.12-15.63 13.72-32.15 26.52-46.78 41.38-14.51 14-27.46 29.5-40.11 45.18-3.52 4.6-8.95 6.94-13.58 10.16a150.7 150.7 0 0 0-51.89 60.1c-9.33 19.68-14.5 41.85-11.77 63.65 1.94 13.69 8.71 27.59 20.9 34.91 12.9 8 29.05 8.07 43.48 5.1 32.8-7.45 61.43-28.89 81-55.84 20.44-27.52 30.52-62.2 29.16-96.35-.52-7.5-1.57-15-1.66-22.49 8 19.48 14.82 39.71 16.65 60.83 2 14.28.75 28.76-1.62 42.9-1.91 11-5.67 21.51-7.78 32.43a165 165 0 0 0 39.34-81.07 183.64 183.64 0 0 0-14.21-104.64c20.78 32 32.34 69.58 35.71 107.48.49 12.73.49 25.51 0 38.23A243.21 243.21 0 0 1 482 371.34c-26.12 47.34-68 85.63-117.19 108-78.29 36.23-174.68 31.32-248-14.68A248.34 248.34 0 0 1 25.36 366 238.34 238.34 0 0 1 0 273.08v-31.34C3.93 172 40.87 105.82 96 63.38m222 80.33a79.13 79.13 0 0 0 16-4.48c5-1.77 9.24-5.94 10.32-11.22-8.96 4.99-17.98 9.92-26.32 15.7z" + } + }, + "free": [ + "brands" + ] + }, + "phone": { + "aliases": { + "unicodes": { + "composite": [ + "1f4de", + "1f57b" + ], + "secondary": [ + "10f095" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Left Hand Telephone Receiver", + "call", + "earphone", + "number", + "phone", + "receiver", + "support", + "telephone", + "telephone receiver", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f095", + "label": "Phone", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z" + } + }, + "free": [ + "solid" + ] + }, + "phone-flip": { + "aliases": { + "names": [ + "phone-alt" + ], + "unicodes": { + "composite": [ + "1f57d" + ], + "secondary": [ + "10f879" + ] + } + }, + "changes": [ + "5.9.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right Hand Telephone Receiver", + "call", + "earphone", + "number", + "support", + "telephone", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f879", + "label": "Phone Flip", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M347.1 24.6c7.7-18.6 28-28.5 47.4-23.2l88 24C499.9 30.2 512 46 512 64c0 247.4-200.6 448-448 448c-18 0-33.8-12.1-38.6-29.5l-24-88c-5.3-19.4 4.6-39.7 23.2-47.4l96-40c16.3-6.8 35.2-2.1 46.3 11.6L207.3 368c70.4-33.3 127.4-90.3 160.7-160.7L318.7 167c-13.7-11.2-18.4-30-11.6-46.3l40-96z" + } + }, + "free": [ + "solid" + ] + }, + "phone-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f3dd" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "cancel", + "earphone", + "mute", + "number", + "support", + "telephone", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3dd", + "label": "Phone Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M228.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C76.1 30.2 64 46 64 64c0 107.4 37.8 206 100.8 283.1L9.2 469.1c-10.4 8.2-12.3 23.3-4.1 33.7s23.3 12.3 33.7 4.1l592-464c10.4-8.2 12.3-23.3 4.1-33.7s-23.3-12.3-33.7-4.1L253 278c-17.8-21.5-32.9-45.2-45-70.7L257.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96zm96.8 319l-91.3 72C310.7 476 407.1 512 512 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L368.7 368c-15-7.1-29.3-15.2-43-24.3z" + } + }, + "free": [ + "solid" + ] + }, + "phone-volume": { + "aliases": { + "names": [ + "volume-control-phone" + ], + "unicodes": { + "secondary": [ + "10f2a0" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.0.3", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "sound", + "support", + "telephone", + "voice", + "volume-control-phone" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2a0", + "label": "Phone Volume", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M280 0C408.1 0 512 103.9 512 232c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-101.6-82.4-184-184-184c-13.3 0-24-10.7-24-24s10.7-24 24-24zm8 192a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm-32-72c0-13.3 10.7-24 24-24c75.1 0 136 60.9 136 136c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-48.6-39.4-88-88-88c-13.3 0-24-10.7-24-24zM117.5 1.4c19.4-5.3 39.7 4.6 47.4 23.2l40 96c6.8 16.3 2.1 35.2-11.6 46.3L144 207.3c33.3 70.4 90.3 127.4 160.7 160.7L345 318.7c11.2-13.7 30-18.4 46.3-11.6l96 40c18.6 7.7 28.5 28 23.2 47.4l-24 88C481.8 499.9 466 512 448 512C200.6 512 0 311.4 0 64C0 46 12.1 30.2 29.5 25.4l88-24z" + } + }, + "free": [ + "solid" + ] + }, + "photo-film": { + "aliases": { + "names": [ + "photo-video" + ], + "unicodes": { + "secondary": [ + "10f87c" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "av", + "film", + "image", + "library", + "media" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f87c", + "label": "Photo Film", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 0H576c35.3 0 64 28.7 64 64V288c0 35.3-28.7 64-64 64H256c-35.3 0-64-28.7-64-64V64c0-35.3 28.7-64 64-64zM476 106.7C471.5 100 464 96 456 96s-15.5 4-20 10.7l-56 84L362.7 169c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6h80 48H552c8.9 0 17-4.9 21.2-12.7s3.7-17.3-1.2-24.6l-96-144zM336 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM64 128h96V384v32c0 17.7 14.3 32 32 32H320c17.7 0 32-14.3 32-32V384H512v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192c0-35.3 28.7-64 64-64zm8 64c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16H88c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H72zm0 104c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16H88c8.8 0 16-7.2 16-16V312c0-8.8-7.2-16-16-16H72zm0 104c-8.8 0-16 7.2-16 16v16c0 8.8 7.2 16 16 16H88c8.8 0 16-7.2 16-16V416c0-8.8-7.2-16-16-16H72zm336 16v16c0 8.8 7.2 16 16 16h16c8.8 0 16-7.2 16-16V416c0-8.8-7.2-16-16-16H424c-8.8 0-16 7.2-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "php": { + "changes": [ + "5.0.5" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f457", + "label": "PHP", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z" + } + }, + "free": [ + "brands" + ] + }, + "pied-piper": { + "changes": [ + "4.6.0", + "5.0.0", + "5.0.10", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2ae", + "label": "Pied Piper Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 480, + 512 + ], + "width": 480, + "height": 512, + "path": "M455.93,23.2C429.23,30,387.79,51.69,341.35,90.66A206,206,0,0,0,240,64C125.13,64,32,157.12,32,272s93.13,208,208,208,208-93.13,208-208a207.25,207.25,0,0,0-58.75-144.81,155.35,155.35,0,0,0-17,27.4A176.16,176.16,0,0,1,417.1,272c0,97.66-79.44,177.11-177.09,177.11a175.81,175.81,0,0,1-87.63-23.4c82.94-107.33,150.79-37.77,184.31-226.65,5.79-32.62,28-94.26,126.23-160.18C471,33.45,465.35,20.8,455.93,23.2ZM125,406.4A176.66,176.66,0,0,1,62.9,272C62.9,174.34,142.35,94.9,240,94.9a174,174,0,0,1,76.63,17.75C250.64,174.76,189.77,265.52,125,406.4Z" + } + }, + "free": [ + "brands" + ] + }, + "pied-piper-alt": { + "changes": [ + "4.1.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a8", + "label": "Alternate Pied Piper Logo (Old)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9zm135.9 197.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM340.8 177c6.6 2.8 11.5 9.2 22.7 22.1 2-1.4 7.5-5.2 7.5-8.6 0-4.9-11.8-13.2-13.2-23 11.2-5.7 25.2-6 37.6-8.9 68.1-16.4 116.3-52.9 146.8-116.7C548.3 29.3 554 16.1 554.6 2l-2 2.6c-28.4 50-33 63.2-81.3 100-31.9 24.4-69.2 40.2-106.6 54.6l-6.3-.3v-21.8c-19.6 1.6-19.7-14.6-31.6-23-18.7 20.6-31.6 40.8-58.9 51.1-12.7 4.8-19.6 10-25.9 21.8 34.9-16.4 91.2-13.5 98.8-10zM555.5 0l-.6 1.1-.3.9.6-.6zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9.6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46.1v27.2l11.8-3.4-2.9-23.8zm-68.7-150.4l24.1 61.2 21-13.8-31.3-50.9zm84.4 154.9l2 12.4c9-1.5 58.4-6.6 58.4-14.1 0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3z" + } + }, + "free": [ + "brands" + ] + }, + "pied-piper-hat": { + "changes": [ + "5.0.10" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f4e5", + "label": "Pied Piper Hat (Old)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9.6 2.8.8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1.6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z" + } + }, + "free": [ + "brands" + ] + }, + "pied-piper-pp": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a7", + "label": "Pied Piper PP Logo (Old)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4.2-9.6.7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z" + } + }, + "free": [ + "brands" + ] + }, + "piggy-bank": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4d3" + ] + } + }, + "changes": [ + "5.0.9", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "save", + "savings" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4d3", + "label": "Piggy Bank", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M400 96l0 .7c-5.3-.4-10.6-.7-16-.7H256c-16.5 0-32.5 2.1-47.8 6c-.1-2-.2-4-.2-6c0-53 43-96 96-96s96 43 96 96zm-16 32c3.5 0 7 .1 10.4 .3c4.2 .3 8.4 .7 12.6 1.3C424.6 109.1 450.8 96 480 96h32l-18.8 75.1c15.8 14.8 28.7 32.8 37.5 52.9H544c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H512c-9.1 12.1-19.9 22.9-32 32v64c0 17.7-14.3 32-32 32H416c-17.7 0-32-14.3-32-32V448H256v32c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V416c-34.9-26.2-58.7-66.3-63.2-112H68c-37.6 0-68-30.4-68-68s30.4-68 68-68h4c13.3 0 24 10.7 24 24s-10.7 24-24 24H68c-11 0-20 9-20 20s9 20 20 20H99.2c12.1-59.8 57.7-107.5 116.3-122.8c12.9-3.4 26.5-5.2 40.5-5.2H384zm64 136a24 24 0 1 0 -48 0 24 24 0 1 0 48 0z" + } + }, + "free": [ + "solid" + ] + }, + "pills": { + "aliases": { + "unicodes": { + "secondary": [ + "10f484" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine", + "prescription", + "tablets" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f484", + "label": "Pills", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 96c-26.5 0-48 21.5-48 48V256h96V144c0-26.5-21.5-48-48-48zM0 144C0 82.1 50.1 32 112 32s112 50.1 112 112V368c0 61.9-50.1 112-112 112S0 429.9 0 368V144zM554.9 399.4c-7.1 12.3-23.7 13.1-33.8 3.1L333.5 214.9c-10-10-9.3-26.7 3.1-33.8C360 167.7 387.1 160 416 160c88.4 0 160 71.6 160 160c0 28.9-7.7 56-21.1 79.4zm-59.5 59.5C472 472.3 444.9 480 416 480c-88.4 0-160-71.6-160-160c0-28.9 7.7-56 21.1-79.4c7.1-12.3 23.7-13.1 33.8-3.1L498.5 425.1c10 10 9.3 26.7-3.1 33.8z" + } + }, + "free": [ + "solid" + ] + }, + "pinterest": { + "changes": [ + "2.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f0d2", + "label": "Pinterest", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3.8-3.4 5-20.3 6.9-28.1.6-2.5.3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z" + } + }, + "free": [ + "brands" + ] + }, + "pinterest-p": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f231", + "label": "Pinterest P", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z" + } + }, + "free": [ + "brands" + ] + }, + "pix": { + "changes": [ + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e43a", + "label": "Pix", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M242.4 292.5C247.8 287.1 257.1 287.1 262.5 292.5L339.5 369.5C353.7 383.7 372.6 391.5 392.6 391.5H407.7L310.6 488.6C280.3 518.1 231.1 518.1 200.8 488.6L103.3 391.2H112.6C132.6 391.2 151.5 383.4 165.7 369.2L242.4 292.5zM262.5 218.9C256.1 224.4 247.9 224.5 242.4 218.9L165.7 142.2C151.5 127.1 132.6 120.2 112.6 120.2H103.3L200.7 22.76C231.1-7.586 280.3-7.586 310.6 22.76L407.8 119.9H392.6C372.6 119.9 353.7 127.7 339.5 141.9L262.5 218.9zM112.6 142.7C126.4 142.7 139.1 148.3 149.7 158.1L226.4 234.8C233.6 241.1 243 245.6 252.5 245.6C261.9 245.6 271.3 241.1 278.5 234.8L355.5 157.8C365.3 148.1 378.8 142.5 392.6 142.5H430.3L488.6 200.8C518.9 231.1 518.9 280.3 488.6 310.6L430.3 368.9H392.6C378.8 368.9 365.3 363.3 355.5 353.5L278.5 276.5C264.6 262.6 240.3 262.6 226.4 276.6L149.7 353.2C139.1 363 126.4 368.6 112.6 368.6H80.78L22.76 310.6C-7.586 280.3-7.586 231.1 22.76 200.8L80.78 142.7H112.6z" + } + }, + "free": [ + "brands" + ] + }, + "pizza-slice": { + "aliases": { + "unicodes": { + "secondary": [ + "10f818" + ] + } + }, + "changes": [ + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cheese", + "chicago", + "italian", + "mozzarella", + "new york", + "pepperoni", + "pie", + "slice", + "teenage mutant ninja turtles", + "tomato" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f818", + "label": "Pizza Slice", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M169.7 .9c-22.8-1.6-41.9 14-47.5 34.7L110.4 80c.5 0 1.1 0 1.6 0c176.7 0 320 143.3 320 320c0 .5 0 1.1 0 1.6l44.4-11.8c20.8-5.5 36.3-24.7 34.7-47.5C498.5 159.5 352.5 13.5 169.7 .9zM399.8 410.2c.1-3.4 .2-6.8 .2-10.2c0-159.1-128.9-288-288-288c-3.4 0-6.8 .1-10.2 .2L.5 491.9c-1.5 5.5 .1 11.4 4.1 15.4s9.9 5.6 15.4 4.1L399.8 410.2zM176 208a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm64 128a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM96 384a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + }, + "free": [ + "solid" + ] + }, + "place-of-worship": { + "aliases": { + "unicodes": { + "secondary": [ + "10f67f" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "church", + "holy", + "mosque", + "synagogue" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f67f", + "label": "Place Of Worship", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 109.3V217.6L183.3 242c-14.5 8.7-23.3 24.3-23.3 41.2V512h96V416c0-35.3 28.7-64 64-64s64 28.7 64 64v96h96V283.2c0-16.9-8.8-32.5-23.3-41.2L416 217.6V109.3c0-8.5-3.4-16.6-9.4-22.6L331.3 11.3c-6.2-6.2-16.4-6.2-22.6 0L233.4 86.6c-6 6-9.4 14.1-9.4 22.6zM24.9 330.3C9.5 338.8 0 354.9 0 372.4V464c0 26.5 21.5 48 48 48h80V273.6L24.9 330.3zM592 512c26.5 0 48-21.5 48-48V372.4c0-17.5-9.5-33.6-24.9-42.1L512 273.6V512h80z" + } + }, + "free": [ + "solid" + ] + }, + "plane": { + "aliases": { + "unicodes": { + "secondary": [ + "10f072" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "destination", + "fly", + "location", + "mode", + "travel", + "trip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f072", + "label": "Plane", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M482.3 192c34.2 0 93.7 29 93.7 64c0 36-59.5 64-93.7 64l-116.6 0L265.2 495.9c-5.7 10-16.3 16.1-27.8 16.1l-56.2 0c-10.6 0-18.3-10.2-15.4-20.4l49-171.6L112 320 68.8 377.6c-3 4-7.8 6.4-12.8 6.4l-42 0c-7.8 0-14-6.3-14-14c0-1.3 .2-2.6 .5-3.9L32 256 .5 145.9c-.4-1.3-.5-2.6-.5-3.9c0-7.8 6.3-14 14-14l42 0c5 0 9.8 2.4 12.8 6.4L112 192l102.9 0-49-171.6C162.9 10.2 170.6 0 181.2 0l56.2 0c11.5 0 22.1 6.2 27.8 16.1L365.7 192l116.6 0z" + } + }, + "free": [ + "solid" + ] + }, + "plane-arrival": { + "aliases": { + "unicodes": { + "composite": [ + "1f6ec" + ], + "secondary": [ + "10f5af" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aeroplane", + "airplane", + "airplane arrival", + "airport", + "arrivals", + "arriving", + "destination", + "fly", + "land", + "landing", + "location", + "mode", + "travel", + "trip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5af", + "label": "Plane Arrival", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M.3 166.9L0 68C0 57.7 9.5 50.1 19.5 52.3l35.6 7.9c10.6 2.3 19.2 9.9 23 20L96 128l127.3 37.6L181.8 20.4C178.9 10.2 186.6 0 197.2 0h40.1c11.6 0 22.2 6.2 27.9 16.3l109 193.8 107.2 31.7c15.9 4.7 30.8 12.5 43.7 22.8l34.4 27.6c24 19.2 18.1 57.3-10.7 68.2c-41.2 15.6-86.2 18.1-128.8 7L121.7 289.8c-11.1-2.9-21.2-8.7-29.3-16.9L9.5 189.4c-5.9-6-9.3-14-9.3-22.5zM32 448H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm96-80a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm128-16a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "plane-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "flight", + "fly", + "not affected", + "ok", + "okay", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e555", + "label": "Plane Circle Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49 0 70.9-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14c1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3 .4 2.6 .5 3.9 .5c6 0 11.1-3.7 13.1-9C344.5 470.7 320 422.2 320 368c0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + }, + "free": [ + "solid" + ] + }, + "plane-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "airplane", + "airport", + "flight", + "fly", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e556", + "label": "Plane Circle Exclamation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49 0 70.9-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14c1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3 .4 2.6 .5 3.9 .5c6 0 11.1-3.7 13.1-9C344.5 470.7 320 422.2 320 368c0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "plane-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "destroy", + "flight", + "fly", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e557", + "label": "Plane Circle Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M256 0c-35 0-64 59.5-64 93.7v84.6L8.1 283.4c-5 2.8-8.1 8.2-8.1 13.9v65.5c0 10.6 10.2 18.3 20.4 15.4l171.6-49 0 70.9-57.6 43.2c-4 3-6.4 7.8-6.4 12.8v42c0 7.8 6.3 14 14 14c1.3 0 2.6-.2 3.9-.5L256 480l110.1 31.5c1.3 .4 2.6 .5 3.9 .5c6 0 11.1-3.7 13.1-9C344.5 470.7 320 422.2 320 368c0-60.6 30.6-114 77.1-145.6L320 178.3V93.7C320 59.5 292 0 256 0zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L518.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + }, + "free": [ + "solid" + ] + }, + "plane-departure": { + "aliases": { + "unicodes": { + "composite": [ + "1f6eb" + ], + "secondary": [ + "10f5b0" + ] + } + }, + "changes": [ + "5.1.0", + "5.8.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aeroplane", + "airplane", + "airplane departure", + "airport", + "check-in", + "departing", + "departure", + "departures", + "destination", + "fly", + "location", + "mode", + "take off", + "taking off", + "travel", + "trip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5b0", + "label": "Plane Departure", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M381 114.9L186.1 41.8c-16.7-6.2-35.2-5.3-51.1 2.7L89.1 67.4C78 73 77.2 88.5 87.6 95.2l146.9 94.5L136 240 77.8 214.1c-8.7-3.9-18.8-3.7-27.3 .6L18.3 230.8c-9.3 4.7-11.8 16.8-5 24.7l73.1 85.3c6.1 7.1 15 11.2 24.3 11.2H248.4c5 0 9.9-1.2 14.3-3.4L535.6 212.2c46.5-23.3 82.5-63.3 100.8-112C645.9 75 627.2 48 600.2 48H542.8c-20.2 0-40.2 4.8-58.2 14L381 114.9zM0 480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "plane-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "closed", + "flight", + "fly", + "lockdown", + "quarantine", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e558", + "label": "Plane Lock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 93.7C192 59.5 221 0 256 0c36 0 64 59.5 64 93.7v84.6l101.8 58.2C418 247.6 416 259.6 416 272v24.6c-17.9 10.4-30.3 29.1-31.8 50.9L320 329.1V400l57.6 43.2c4 3 6.4 7.8 6.4 12.8v24 18c0 7.8-6.3 14-14 14c-1.3 0-2.6-.2-3.9-.5L256 480 145.9 511.5c-1.3 .4-2.6 .5-3.9 .5c-7.8 0-14-6.3-14-14V456c0-5 2.4-9.8 6.4-12.8L192 400l0-70.9-171.6 49C10.2 381.1 0 373.4 0 362.8V297.3c0-5.7 3.1-11 8.1-13.9L192 178.3V93.7zM528 240c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z" + } + }, + "free": [ + "solid" + ] + }, + "plane-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e069" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane mode", + "airport", + "canceled", + "covid-19", + "delayed", + "grounded", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e069", + "label": "Plane Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M514.3 192c34.2 0 93.7 29 93.7 64c0 36-59.5 64-93.7 64H440.6L630.8 469.1c10.4 8.2 12.3 23.3 4.1 33.7s-23.3 12.3-33.7 4.1L9.2 42.9C-1.2 34.7-3.1 19.6 5.1 9.2S28.4-3.1 38.8 5.1L238.1 161.3 197.8 20.4C194.9 10.2 202.6 0 213.2 0h56.2c11.5 0 22.1 6.2 27.8 16.1L397.7 192l116.6 0zM41.5 128.7l321 252.9L297.2 495.9c-5.7 10-16.3 16.1-27.8 16.1l-56.2 0c-10.6 0-18.3-10.2-15.4-20.4l49-171.6H144l-43.2 57.6c-3 4-7.8 6.4-12.8 6.4H46c-7.8 0-14-6.3-14-14c0-1.3 .2-2.6 .5-3.9L64 256 32.5 145.9c-.4-1.3-.5-2.6-.5-3.9c0-6.2 4-11.4 9.5-13.3z" + } + }, + "free": [ + "solid" + ] + }, + "plane-up": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "airport", + "internet", + "signal", + "sky", + "wifi", + "wireless" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e22d", + "label": "Plane Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 93.7C192 59.5 221 0 256 0c36 0 64 59.5 64 93.7l0 66.3L497.8 278.5c8.9 5.9 14.2 15.9 14.2 26.6v56.7c0 10.9-10.7 18.6-21.1 15.2L320 320v80l57.6 43.2c4 3 6.4 7.8 6.4 12.8v42c0 7.8-6.3 14-14 14c-1.3 0-2.6-.2-3.9-.5L256 480 145.9 511.5c-1.3 .4-2.6 .5-3.9 .5c-7.8 0-14-6.3-14-14V456c0-5 2.4-9.8 6.4-12.8L192 400V320L21.1 377C10.7 380.4 0 372.7 0 361.8V305.1c0-10.7 5.3-20.7 14.2-26.6L192 160V93.7z" + } + }, + "free": [ + "solid" + ] + }, + "plant-wilt": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drought", + "planting", + "vegetation", + "wilt" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e5aa", + "label": "Plant Wilt", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 120c0-30.9 25.1-56 56-56s56 25.1 56 56v13c-29.3 10-48 34.5-48 70.1c0 27.9 25.3 74.8 66 111.6c3.8 3.5 8.9 5.3 14 5.3s10.2-1.8 14-5.3c40.7-36.8 66-83.7 66-111.6c0-35.6-18.7-60.2-48-70.1V120C464 53.7 410.3 0 344 0S224 53.7 224 120v21.8C207.3 133 188.2 128 168 128c-66.3 0-120 53.7-120 120v13c-29.3 10-48 34.5-48 70.1C0 359 25.3 405.9 66 442.7c3.8 3.5 8.9 5.3 14 5.3s10.2-1.8 14-5.3c40.7-36.8 66-83.7 66-111.6c0-35.6-18.7-60.2-48-70.1V248c0-30.9 25.1-56 56-56s56 25.1 56 56v32V480c0 17.7 14.3 32 32 32s32-14.3 32-32V280 248 120z" + } + }, + "free": [ + "solid" + ] + }, + "plate-wheat": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bowl", + "hunger", + "rations", + "wheat" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e55a", + "label": "Plate Wheat", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 32c44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80V48c0-8.8 7.2-16 16-16zM56 64h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24s10.7-24 24-24zM24 136H136c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24s10.7-24 24-24zm8 96c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24s-10.7 24-24 24H56c-13.3 0-24-10.7-24-24zM272 48c0-8.8 7.2-16 16-16c44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80V48zM400 32c44.2 0 80 35.8 80 80v16c0 8.8-7.2 16-16 16c-44.2 0-80-35.8-80-80V48c0-8.8 7.2-16 16-16zm80 160v16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16V256c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM352 176c8.8 0 16 7.2 16 16v16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16V256c0-44.2 35.8-80 80-80zm-96 16v16c0 44.2-35.8 80-80 80c-8.8 0-16-7.2-16-16V256c0-44.2 35.8-80 80-80c8.8 0 16 7.2 16 16zM3.5 347.6C1.6 332.9 13 320 27.8 320H484.2c14.8 0 26.2 12.9 24.4 27.6C502.3 397.8 464.2 437 416 446v2c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32v-2c-48.2-9-86.3-48.2-92.5-98.4z" + } + }, + "free": [ + "solid" + ] + }, + "play": { + "aliases": { + "unicodes": { + "composite": [ + "25b6" + ], + "secondary": [ + "10f04b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "audio", + "music", + "play", + "play button", + "playing", + "right", + "sound", + "start", + "triangle", + "video" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f04b", + "label": "Play", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80V432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z" + } + }, + "free": [ + "solid" + ] + }, + "playstation": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3df", + "label": "PlayStation", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9.6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z" + } + }, + "free": [ + "brands" + ] + }, + "plug": { + "aliases": { + "unicodes": { + "composite": [ + "1f50c" + ], + "secondary": [ + "10f1e6" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connect", + "electric", + "electric plug", + "electricity", + "online", + "plug", + "power" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1e6", + "label": "Plug", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8C297 398 352 333.4 352 256V224c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + }, + "free": [ + "solid" + ] + }, + "plug-circle-bolt": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "electricity", + "plug", + "power" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e55b", + "label": "Plug Circle Bolt", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm47.9-225c4.3 3.7 5.4 9.9 2.6 14.9L452.4 356H488c5.2 0 9.8 3.3 11.4 8.2s-.1 10.3-4.2 13.4l-96 72c-4.5 3.4-10.8 3.2-15.1-.6s-5.4-9.9-2.6-14.9L411.6 380H376c-5.2 0-9.8-3.3-11.4-8.2s.1-10.3 4.2-13.4l96-72c4.5-3.4 10.8-3.2 15.1 .6z" + } + }, + "free": [ + "solid" + ] + }, + "plug-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "electricity", + "not affected", + "ok", + "okay", + "plug", + "power" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e55c", + "label": "Plug Circle Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM576 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-76.7-43.3c6.2 6.2 6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L416 385.4l60.7-60.7c6.2-6.2 16.4-6.2 22.6 0z" + } + }, + "free": [ + "solid" + ] + }, + "plug-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "electric", + "electricity", + "plug", + "power" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e55d", + "label": "Plug Circle Exclamation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "plug-circle-minus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "electricity", + "plug", + "power" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e55e", + "label": "Plug Circle Minus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM576 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-64 0c0 8.8-7.2 16-16 16l-128 0c-8.8 0-16-7.2-16-16s7.2-16 16-16H496c8.8 0 16 7.2 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "plug-circle-plus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "electric", + "electricity", + "plug", + "power" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e55f", + "label": "Plug Circle Plus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm16-208v48h48c8.8 0 16 7.2 16 16s-7.2 16-16 16H448v48c0 8.8-7.2 16-16 16s-16-7.2-16-16V384H368c-8.8 0-16-7.2-16-16s7.2-16 16-16h48V304c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "plug-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destroy", + "electric", + "electricity", + "outage", + "plug", + "power" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e560", + "label": "Plug Circle Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 0C78.3 0 64 14.3 64 32v96h64V32c0-17.7-14.3-32-32-32zM288 0c-17.7 0-32 14.3-32 32v96h64V32c0-17.7-14.3-32-32-32zM32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32v32c0 77.4 55 142 128 156.8V480c0 17.7 14.3 32 32 32s32-14.3 32-32V412.8c12.3-2.5 24.1-6.4 35.1-11.5c-2.1-10.8-3.1-21.9-3.1-33.3c0-80.3 53.8-148 127.3-169.2c.5-2.2 .7-4.5 .7-6.8c0-17.7-14.3-32-32-32H32zM432 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm59.3-180.7L454.6 368l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L432 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L409.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L432 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6z" + } + }, + "free": [ + "solid" + ] + }, + "plus": { + "aliases": { + "names": [ + "add" + ], + "unicodes": { + "composite": [ + "2795", + "f067" + ], + "primary": [ + "f067" + ], + "secondary": [ + "102b", + "10f067" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "+", + "Plus Sign", + "add", + "create", + "expand", + "math", + "new", + "plus", + "positive", + "shape", + "sign" + ] + }, + "styles": [ + "solid" + ], + "unicode": "2b", + "label": "Plus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M240 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H176V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H240V80z" + } + }, + "free": [ + "solid" + ] + }, + "plus-minus": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Plus-Minus Sign", + "add", + "math", + "subtract" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e43c", + "label": "Plus Minus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M224 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V144H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H160V320c0 17.7 14.3 32 32 32s32-14.3 32-32V208H336c17.7 0 32-14.3 32-32s-14.3-32-32-32H224V32zM0 480c0 17.7 14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "podcast": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2ce" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "broadcast", + "music", + "sound" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2ce", + "label": "Podcast", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M319.4 372c48.5-31.3 80.6-85.9 80.6-148c0-97.2-78.8-176-176-176S48 126.8 48 224c0 62.1 32.1 116.6 80.6 148c1.2 17.3 4 38 7.2 57.1l.2 1C56 395.8 0 316.5 0 224C0 100.3 100.3 0 224 0S448 100.3 448 224c0 92.5-56 171.9-136 206.1l.2-1.1c3.1-19.2 6-39.8 7.2-57zm-2.3-38.1c-1.6-5.7-3.9-11.1-7-16.2c-5.8-9.7-13.5-17-21.9-22.4c19.5-17.6 31.8-43 31.8-71.3c0-53-43-96-96-96s-96 43-96 96c0 28.3 12.3 53.8 31.8 71.3c-8.4 5.4-16.1 12.7-21.9 22.4c-3.1 5.1-5.4 10.5-7 16.2C99.8 307.5 80 268 80 224c0-79.5 64.5-144 144-144s144 64.5 144 144c0 44-19.8 83.5-50.9 109.9zM224 312c32.9 0 64 8.6 64 43.8c0 33-12.9 104.1-20.6 132.9c-5.1 19-24.5 23.4-43.4 23.4s-38.2-4.4-43.4-23.4c-7.8-28.5-20.6-99.7-20.6-132.8c0-35.1 31.1-43.8 64-43.8zm0-144a56 56 0 1 1 0 112 56 56 0 1 1 0-112z" + } + }, + "free": [ + "solid" + ] + }, + "poo": { + "aliases": { + "unicodes": { + "composite": [ + "1f4a9" + ], + "secondary": [ + "10f2fe" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crap", + "dung", + "face", + "monster", + "pile of poo", + "poo", + "poop", + "shit", + "smile", + "turd" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2fe", + "label": "Poo", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M268.9 .9c-5.5-.7-11 1.4-14.5 5.7s-4.6 10.1-2.8 15.4c2.8 8.2 4.3 16.9 4.3 26.1c0 44.1-35.7 79.9-79.8 80H160c-35.3 0-64 28.7-64 64c0 19.1 8.4 36.3 21.7 48H104c-39.8 0-72 32.2-72 72c0 23.2 11 43.8 28 57c-34.1 5.7-60 35.3-60 71c0 39.8 32.2 72 72 72H440c39.8 0 72-32.2 72-72c0-35.7-25.9-65.3-60-71c17-13.2 28-33.8 28-57c0-39.8-32.2-72-72-72H394.3c13.3-11.7 21.7-28.9 21.7-48c0-35.3-28.7-64-64-64h-5.5c3.5-10 5.5-20.8 5.5-32c0-48.6-36.2-88.8-83.1-95.1zM192 256a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm96 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm64 108.3c0 2.4-.7 4.8-2.2 6.7c-8.2 10.5-39.5 45-93.8 45s-85.6-34.6-93.8-45c-1.5-1.9-2.2-4.3-2.2-6.7c0-6.8 5.5-12.3 12.3-12.3H339.7c6.8 0 12.3 5.5 12.3 12.3z" + } + }, + "free": [ + "solid" + ] + }, + "poo-storm": { + "aliases": { + "names": [ + "poo-bolt" + ], + "unicodes": { + "secondary": [ + "10f75a" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bolt", + "cloud", + "euphemism", + "lightning", + "mess", + "poop", + "shit", + "turd" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f75a", + "label": "Poo Storm", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M236.9 .2c-5.5-.7-11 1.4-14.5 5.7s-4.6 10.1-2.8 15.3c2.8 8.2 4.3 16.9 4.3 26.1c0 21.7-8.5 37.2-21.9 47.6c-13.8 10.8-34 17-57.8 17H128c-35.3 0-64 28.7-64 64c0 12.2 3.4 23.5 9.3 33.2C31.7 216.2 0 252.4 0 296c0 41 28 75.4 65.8 85.2c-5.3-18.5 1-38.5 16.2-50.7l160-128c17.6-14.1 42.6-14 60.2 .2s22.8 38.6 12.8 58.8L285.7 320H304c20.4 0 38.5 12.9 45.3 32.1c3.7 10.6 3.5 21.8 0 31.9H360c48.6 0 88-39.4 88-88c0-43.6-31.7-79.8-73.3-86.8c5.9-9.7 9.3-21.1 9.3-33.2c0-35.3-28.7-64-64-64h-1.4c.9-5.4 1.4-10.9 1.4-16.6c0-48.7-36.1-88.9-83.1-95.2zm45.1 227.4c-5.8-4.7-14.2-4.7-20.1-.1l-160 128c-5.3 4.2-7.4 11.4-5.1 17.8s8.3 10.7 15.1 10.7h70.1L129.7 488.8c-3.4 6.7-1.6 14.9 4.3 19.6s14.2 4.7 20.1 .1l160-128c5.3-4.2 7.4-11.4 5.1-17.8s-8.3-10.7-15.1-10.7H233.9l52.4-104.8c3.4-6.7 1.6-14.9-4.2-19.6z" + } + }, + "free": [ + "solid" + ] + }, + "poop": { + "aliases": { + "unicodes": { + "secondary": [ + "10f619" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crap", + "poop", + "shit", + "smile", + "turd" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f619", + "label": "Poop", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M254.4 6.6c3.5-4.3 9-6.5 14.5-5.7C315.8 7.2 352 47.4 352 96c0 11.2-1.9 22-5.5 32H352c35.3 0 64 28.7 64 64c0 19.1-8.4 36.3-21.7 48H408c39.8 0 72 32.2 72 72c0 23.2-11 43.8-28 57c34.1 5.7 60 35.3 60 71c0 39.8-32.2 72-72 72H72c-39.8 0-72-32.2-72-72c0-35.7 25.9-65.3 60-71c-17-13.2-28-33.8-28-57c0-39.8 32.2-72 72-72h13.7C104.4 228.3 96 211.1 96 192c0-35.3 28.7-64 64-64h16.2c44.1-.1 79.8-35.9 79.8-80c0-9.2-1.5-17.9-4.3-26.1c-1.8-5.2-.8-11.1 2.8-15.4z" + } + }, + "free": [ + "solid" + ] + }, + "power-off": { + "aliases": { + "unicodes": { + "composite": [ + "23fb" + ], + "secondary": [ + "10f011" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Power Symbol", + "cancel", + "computer", + "on", + "reboot", + "restart" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f011", + "label": "Power Off", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321856, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V256c0 17.7 14.3 32 32 32s32-14.3 32-32V32zM143.5 120.6c13.6-11.3 15.4-31.5 4.1-45.1s-31.5-15.4-45.1-4.1C49.7 115.4 16 181.8 16 256c0 132.5 107.5 240 240 240s240-107.5 240-240c0-74.2-33.8-140.6-86.6-184.6c-13.6-11.3-33.8-9.4-45.1 4.1s-9.4 33.8 4.1 45.1c38.9 32.3 63.5 81 63.5 135.4c0 97.2-78.8 176-176 176s-176-78.8-176-176c0-54.4 24.7-103.1 63.5-135.4z" + } + }, + "free": [ + "solid" + ] + }, + "prescription": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5b1" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "pharmacy", + "rx" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5b1", + "label": "Prescription", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 0C14.3 0 0 14.3 0 32V192v96c0 17.7 14.3 32 32 32s32-14.3 32-32V224h50.7l128 128L137.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L288 397.3 393.4 502.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L333.3 352 438.6 246.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 306.7l-85.8-85.8C251.4 209.1 288 164.8 288 112C288 50.1 237.9 0 176 0H32zM176 160H64V64H176c26.5 0 48 21.5 48 48s-21.5 48-48 48z" + } + }, + "free": [ + "solid" + ] + }, + "prescription-bottle": { + "aliases": { + "unicodes": { + "secondary": [ + "10f485" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "pharmacy", + "rx" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f485", + "label": "Prescription Bottle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H352c17.7 0 32 14.3 32 32V64c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64V32zm32 96H352V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V416H144c8.8 0 16-7.2 16-16s-7.2-16-16-16H32V320H144c8.8 0 16-7.2 16-16s-7.2-16-16-16H32V224H144c8.8 0 16-7.2 16-16s-7.2-16-16-16H32V128z" + } + }, + "free": [ + "solid" + ] + }, + "prescription-bottle-medical": { + "aliases": { + "names": [ + "prescription-bottle-alt" + ], + "unicodes": { + "secondary": [ + "10f486" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medical", + "medicine", + "pharmacy", + "rx" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f486", + "label": "Prescription Bottle Medical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H352c17.7 0 32 14.3 32 32V64c0 17.7-14.3 32-32 32H32C14.3 96 0 81.7 0 64V32zm32 96H352V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V128zM160 240v48H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V352h48c8.8 0 16-7.2 16-16V304c0-8.8-7.2-16-16-16H224V240c0-8.8-7.2-16-16-16H176c-8.8 0-16 7.2-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "print": { + "aliases": { + "unicodes": { + "composite": [ + "1f5a8", + "1f5b6", + "2399" + ], + "secondary": [ + "10f02f" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Print Screen Symbol", + "Printer Icon", + "business", + "computer", + "copy", + "document", + "office", + "paper", + "printer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f02f", + "label": "Print", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 0C92.7 0 64 28.7 64 64v96h64V64H354.7L384 93.3V160h64V93.3c0-17-6.7-33.3-18.7-45.3L400 18.7C388 6.7 371.7 0 354.7 0H128zM384 352v32 64H128V384 368 352H384zm64 32h32c17.7 0 32-14.3 32-32V256c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v96c0 17.7 14.3 32 32 32H64v64c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V384zM432 248a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + }, + "free": [ + "solid" + ] + }, + "product-hunt": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f288", + "label": "Product Hunt", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z" + } + }, + "free": [ + "brands" + ] + }, + "pump-medical": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06a" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anti-bacterial", + "clean", + "covid-19", + "disinfect", + "hygiene", + "medical grade", + "sanitizer", + "soap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e06a", + "label": "Pump Medical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 32v96H224V96h60.1c4.2 0 8.3 1.7 11.3 4.7l33.9 33.9c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L340.7 55.4c-15-15-35.4-23.4-56.6-23.4H224c0-17.7-14.3-32-32-32H128C110.3 0 96 14.3 96 32zM85.4 160c-33.3 0-61 25.5-63.8 58.7L3 442.7C-.1 480 29.3 512 66.8 512H253.2c37.4 0 66.9-32 63.8-69.3l-18.7-224c-2.8-33.2-30.5-58.7-63.8-58.7H85.4zM184 280v32h32c13.3 0 24 10.7 24 24s-10.7 24-24 24H184v32c0 13.3-10.7 24-24 24s-24-10.7-24-24V360H104c-13.3 0-24-10.7-24-24s10.7-24 24-24h32V280c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + }, + "free": [ + "solid" + ] + }, + "pump-soap": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06b" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anti-bacterial", + "clean", + "covid-19", + "disinfect", + "hygiene", + "sanitizer", + "soap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e06b", + "label": "Pump Soap", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 32v96H224V96h60.1c4.2 0 8.3 1.7 11.3 4.7l33.9 33.9c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L340.7 55.4c-15-15-35.4-23.4-56.6-23.4H224c0-17.7-14.3-32-32-32H128C110.3 0 96 14.3 96 32zM85.4 160c-33.3 0-61 25.5-63.8 58.7L3 442.7C-.1 480 29.3 512 66.8 512H253.2c37.4 0 66.9-32 63.8-69.3l-18.7-224c-2.8-33.2-30.5-58.7-63.8-58.7H85.4zM224 360c0 35.3-28.7 56-64 56s-64-20.7-64-56c0-32.5 37-80.9 50.9-97.9c3.2-3.9 8.1-6.1 13.1-6.1s9.9 2.2 13.1 6.1C187 279.1 224 327.5 224 360z" + } + }, + "free": [ + "solid" + ] + }, + "pushed": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e1", + "label": "Pushed", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 432, + 512 + ], + "width": 432, + "height": 512, + "path": "M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z" + } + }, + "free": [ + "brands" + ] + }, + "puzzle-piece": { + "aliases": { + "unicodes": { + "composite": [ + "1f9e9" + ], + "secondary": [ + "10f12e" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add-on", + "addon", + "clue", + "game", + "interlocking", + "jigsaw", + "piece", + "puzzle", + "puzzle piece", + "section" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f12e", + "label": "Puzzle Piece", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321857, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 104.8c0-9.2-5.8-17.3-13.2-22.8C167.2 73.3 160 61.3 160 48c0-26.5 28.7-48 64-48s64 21.5 64 48c0 13.3-7.2 25.3-18.8 34c-7.4 5.5-13.2 13.6-13.2 22.8c0 12.8 10.4 23.2 23.2 23.2H336c26.5 0 48 21.5 48 48v56.8c0 12.8 10.4 23.2 23.2 23.2c9.2 0 17.3-5.8 22.8-13.2c8.7-11.6 20.7-18.8 34-18.8c26.5 0 48 28.7 48 64s-21.5 64-48 64c-13.3 0-25.3-7.2-34-18.8c-5.5-7.4-13.6-13.2-22.8-13.2c-12.8 0-23.2 10.4-23.2 23.2V464c0 26.5-21.5 48-48 48H279.2c-12.8 0-23.2-10.4-23.2-23.2c0-9.2 5.8-17.3 13.2-22.8c11.6-8.7 18.8-20.7 18.8-34c0-26.5-28.7-48-64-48s-64 21.5-64 48c0 13.3 7.2 25.3 18.8 34c7.4 5.5 13.2 13.6 13.2 22.8c0 12.8-10.4 23.2-23.2 23.2H48c-26.5 0-48-21.5-48-48V343.2C0 330.4 10.4 320 23.2 320c9.2 0 17.3 5.8 22.8 13.2C54.7 344.8 66.7 352 80 352c26.5 0 48-28.7 48-64s-21.5-64-48-64c-13.3 0-25.3 7.2-34 18.8C40.5 250.2 32.4 256 23.2 256C10.4 256 0 245.6 0 232.8V176c0-26.5 21.5-48 48-48H168.8c12.8 0 23.2-10.4 23.2-23.2z" + } + }, + "free": [ + "solid" + ] + }, + "python": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e2", + "label": "Python", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4.1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8.1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3.1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z" + } + }, + "free": [ + "brands" + ] + }, + "q": { + "aliases": { + "unicodes": { + "composite": [ + "71" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter Q", + "Latin Small Letter Q", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "51", + "label": "Q", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 256c0 88.4 71.6 160 160 160c28.9 0 56-7.7 79.4-21.1l-72-86.4c-11.3-13.6-9.5-33.8 4.1-45.1s33.8-9.5 45.1 4.1l70.9 85.1C371.9 325.8 384 292.3 384 256c0-88.4-71.6-160-160-160S64 167.6 64 256zM344.9 444.6C310 467 268.5 480 224 480C100.3 480 0 379.7 0 256S100.3 32 224 32s224 100.3 224 224c0 56.1-20.6 107.4-54.7 146.7l47.3 56.8c11.3 13.6 9.5 33.8-4.1 45.1s-33.8 9.5-45.1-4.1l-46.6-55.9z" + } + }, + "free": [ + "solid" + ] + }, + "qq": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d6", + "label": "QQ", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M433.754 420.445c-11.526 1.393-44.86-52.741-44.86-52.741 0 31.345-16.136 72.247-51.051 101.786 16.842 5.192 54.843 19.167 45.803 34.421-7.316 12.343-125.51 7.881-159.632 4.037-34.122 3.844-152.316 8.306-159.632-4.037-9.045-15.25 28.918-29.214 45.783-34.415-34.92-29.539-51.059-70.445-51.059-101.792 0 0-33.334 54.134-44.859 52.741-5.37-.65-12.424-29.644 9.347-99.704 10.261-33.024 21.995-60.478 40.144-105.779C60.683 98.063 108.982.006 224 0c113.737.006 163.156 96.133 160.264 214.963 18.118 45.223 29.912 72.85 40.144 105.778 21.768 70.06 14.716 99.053 9.346 99.704z" + } + }, + "free": [ + "brands" + ] + }, + "qrcode": { + "aliases": { + "unicodes": { + "secondary": [ + "10f029" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barcode", + "info", + "information", + "scan" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f029", + "label": "Qrcode", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 80C0 53.5 21.5 32 48 32h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80zM64 96v64h64V96H64zM0 336c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V336zm64 16v64h64V352H64zM304 32h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H304c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48zm80 64H320v64h64V96zM256 304c0-8.8 7.2-16 16-16h64c8.8 0 16 7.2 16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s7.2-16 16-16s16 7.2 16 16v96c0 8.8-7.2 16-16 16H368c-8.8 0-16-7.2-16-16s-7.2-16-16-16s-16 7.2-16 16v64c0 8.8-7.2 16-16 16H272c-8.8 0-16-7.2-16-16V304zM368 480a16 16 0 1 1 0-32 16 16 0 1 1 0 32zm64 0a16 16 0 1 1 0-32 16 16 0 1 1 0 32z" + } + }, + "free": [ + "solid" + ] + }, + "question": { + "aliases": { + "unicodes": { + "composite": [ + "2753", + "2754", + "f128" + ], + "primary": [ + "f128" + ], + "secondary": [ + "103f", + "10f128" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "?", + "Question Mark", + "help", + "information", + "mark", + "outlined", + "punctuation", + "question", + "red question mark", + "support", + "unknown", + "white question mark" + ] + }, + "styles": [ + "solid" + ], + "unicode": "3f", + "label": "Question", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 160c0-35.3 28.7-64 64-64h32c35.3 0 64 28.7 64 64v3.6c0 21.8-11.1 42.1-29.4 53.8l-42.2 27.1c-25.2 16.2-40.4 44.1-40.4 74V320c0 17.7 14.3 32 32 32s32-14.3 32-32v-1.4c0-8.2 4.2-15.8 11-20.2l42.2-27.1c36.6-23.6 58.8-64.1 58.8-107.7V160c0-70.7-57.3-128-128-128H128C57.3 32 0 89.3 0 160c0 17.7 14.3 32 32 32s32-14.3 32-32zm80 320a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + }, + "free": [ + "solid" + ] + }, + "quinscape": { + "changes": [ + "5.0.5", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f459", + "label": "QuinScape", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M313.6 474.6h-1a158.1 158.1 0 0 1 0-316.2c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C501.1 117.5 391.6 8 256.5 8S12 117.5 12 252.6s109.5 244.6 244.5 244.6a237.36 237.36 0 0 0 70.4-10.1c-5.2-3.5-8.9-8.1-13.3-12.5zm-.1-.1l.4.1zm78.4-168.9a99.2 99.2 0 1 0 99.2 99.2 99.18 99.18 0 0 0-99.2-99.2z" + } + }, + "free": [ + "brands" + ] + }, + "quora": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2c4", + "label": "Quora", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7.1 41.8-5.4 75.6-16.7 100.5z" + } + }, + "free": [ + "brands" + ] + }, + "quote-left": { + "aliases": { + "names": [ + "quote-left-alt" + ], + "unicodes": { + "composite": [ + "201c" + ], + "secondary": [ + "10f10d" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Left Double Quotation Mark", + "mention", + "note", + "phrase", + "text", + "type" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f10d", + "label": "Quote Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 216C0 149.7 53.7 96 120 96h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320 288 216zm256 0c0-66.3 53.7-120 120-120h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H320c-35.3 0-64-28.7-64-64V320 288 216z" + } + }, + "free": [ + "solid" + ] + }, + "quote-right": { + "aliases": { + "names": [ + "quote-right-alt" + ], + "unicodes": { + "composite": [ + "201d" + ], + "secondary": [ + "10f10e" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Right Double Quotation Mark", + "mention", + "note", + "phrase", + "text", + "type" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f10e", + "label": "Quote Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 296c0 66.3-53.7 120-120 120h-8c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H320c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72zm-256 0c0 66.3-53.7 120-120 120H64c-17.7 0-32-14.3-32-32s14.3-32 32-32h8c30.9 0 56-25.1 56-56v-8H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h64c35.3 0 64 28.7 64 64v32 32 72z" + } + }, + "free": [ + "solid" + ] + }, + "r": { + "aliases": { + "unicodes": { + "composite": [ + "72" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter R", + "Latin Small Letter R", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "52", + "label": "R", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V288 448c0 17.7 14.3 32 32 32s32-14.3 32-32V320h95.3L261.8 466.4c10.1 14.5 30.1 18 44.6 7.9s18-30.1 7.9-44.6L230.1 309.5C282.8 288.1 320 236.4 320 176c0-79.5-64.5-144-144-144H64zM176 256H64V96H176c44.2 0 80 35.8 80 80s-35.8 80-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "r-project": { + "changes": [ + "5.0.11", + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f7", + "label": "R Project", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 581, + 512 + ], + "width": 581, + "height": 512, + "path": "M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z" + } + }, + "free": [ + "brands" + ] + }, + "radiation": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7b9" + ] + } + }, + "changes": [ + "5.6.0", + "5.8.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "danger", + "dangerous", + "deadly", + "hazard", + "nuclear", + "radioactive", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7b9", + "label": "Radiation", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M215 186.7c-23.9 13.8-40 39.7-40 69.3L31 256c-17.7 0-32.2-14.4-30-31.9C9.7 154 46.8 92.7 100.3 52c14.1-10.7 33.8-5.3 42.7 10l72 124.7zM255 336c14.6 0 28.2-3.9 40-10.7l72 124.8c8.8 15.3 3.7 35.1-12.6 41.9c-30.6 12.9-64.2 20-99.4 20s-68.9-7.1-99.4-20c-16.3-6.9-21.4-26.6-12.6-41.9l72-124.8c11.8 6.8 25.4 10.7 40 10.7zm224-80l-144 0c0-29.6-16.1-55.5-40-69.3L367 62c8.8-15.3 28.6-20.7 42.7-10c53.6 40.7 90.6 102 99.4 172.1c2.2 17.5-12.4 31.9-30 31.9zM257 208a48 48 0 1 1 -2 96 48 48 0 1 1 2-96z" + } + }, + "free": [ + "solid" + ] + }, + "radio": { + "aliases": { + "unicodes": { + "composite": [ + "1f4fb" + ], + "secondary": [ + "10f8d7" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "am", + "broadcast", + "fm", + "frequency", + "music", + "news", + "radio", + "receiver", + "transmitter", + "tuner", + "video" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f8d7", + "label": "Radio", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M494.8 47c12.7-3.7 20-17.1 16.3-29.8S494-2.8 481.2 1L51.7 126.9c-9.4 2.7-17.9 7.3-25.1 13.2C10.5 151.7 0 170.6 0 192v4V304 448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H218.5L494.8 47zM368 240a80 80 0 1 1 0 160 80 80 0 1 1 0-160zM80 256c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16zM64 320c0-8.8 7.2-16 16-16H208c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm16 64c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H96c-8.8 0-16-7.2-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "rainbow": { + "aliases": { + "unicodes": { + "composite": [ + "1f308" + ], + "secondary": [ + "10f75b" + ] + } + }, + "changes": [ + "5.5.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "gold", + "leprechaun", + "prism", + "rain", + "rainbow", + "sky" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f75b", + "label": "Rainbow", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 96C178.6 96 64 210.6 64 352v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352C0 175.3 143.3 32 320 32s320 143.3 320 320v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352C576 210.6 461.4 96 320 96zm0 192c-35.3 0-64 28.7-64 64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-70.7 57.3-128 128-128s128 57.3 128 128v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-35.3-28.7-64-64-64zM160 352v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-123.7 100.3-224 224-224s224 100.3 224 224v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352c0-88.4-71.6-160-160-160s-160 71.6-160 160z" + } + }, + "free": [ + "solid" + ] + }, + "ranking-star": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "first place", + "podium", + "rank", + "win" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e561", + "label": "Ranking Star", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321857, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M353.8 54.1L330.2 6.3c-3.9-8.3-16.1-8.6-20.4 0L286.2 54.1l-52.3 7.5c-9.3 1.4-13.3 12.9-6.4 19.8l38 37-9 52.1c-1.4 9.3 8.2 16.5 16.8 12.2l46.9-24.8 46.6 24.4c8.6 4.3 18.3-2.9 16.8-12.2l-9-52.1 38-36.6c6.8-6.8 2.9-18.3-6.4-19.8l-52.3-7.5zM256 256c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H384c17.7 0 32-14.3 32-32V288c0-17.7-14.3-32-32-32H256zM32 320c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H160c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32H32zm416 96v64c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V416c0-17.7-14.3-32-32-32H480c-17.7 0-32 14.3-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "raspberry-pi": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f7bb", + "label": "Raspberry Pi", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 407, + 512 + ], + "width": 407, + "height": 512, + "path": "M372 232.5l-3.7-6.5c.1-46.4-21.4-65.3-46.5-79.7 7.6-2 15.4-3.6 17.6-13.2 13.1-3.3 15.8-9.4 17.1-15.8 3.4-2.3 14.8-8.7 13.6-19.7 6.4-4.4 10-10.1 8.1-18.1 6.9-7.5 8.7-13.7 5.8-19.4 8.3-10.3 4.6-15.6 1.1-20.9 6.2-11.2.7-23.2-16.6-21.2-6.9-10.1-21.9-7.8-24.2-7.8-2.6-3.2-6-6-16.5-4.7-6.8-6.1-14.4-5-22.3-2.1-9.3-7.3-15.5-1.4-22.6.8C271.6.6 269 5.5 263.5 7.6c-12.3-2.6-16.1 3-22 8.9l-6.9-.1c-18.6 10.8-27.8 32.8-31.1 44.1-3.3-11.3-12.5-33.3-31.1-44.1l-6.9.1c-5.9-5.9-9.7-11.5-22-8.9-5.6-2-8.1-7-19.4-3.4-4.6-1.4-8.9-4.4-13.9-4.3-2.6.1-5.5 1-8.7 3.5-7.9-3-15.5-4-22.3 2.1-10.5-1.3-14 1.4-16.5 4.7-2.3 0-17.3-2.3-24.2 7.8C21.2 16 15.8 28 22 39.2c-3.5 5.4-7.2 10.7 1.1 20.9-2.9 5.7-1.1 11.9 5.8 19.4-1.8 8 1.8 13.7 8.1 18.1-1.2 11 10.2 17.4 13.6 19.7 1.3 6.4 4 12.4 17.1 15.8 2.2 9.5 10 11.2 17.6 13.2-25.1 14.4-46.6 33.3-46.5 79.7l-3.7 6.5c-28.8 17.2-54.7 72.7-14.2 117.7 2.6 14.1 7.1 24.2 11 35.4 5.9 45.2 44.5 66.3 54.6 68.8 14.9 11.2 30.8 21.8 52.2 29.2C159 504.2 181 512 203 512h1c22.1 0 44-7.8 64.2-28.4 21.5-7.4 37.3-18 52.2-29.2 10.2-2.5 48.7-23.6 54.6-68.8 3.9-11.2 8.4-21.3 11-35.4 40.6-45.1 14.7-100.5-14-117.7zm-22.2-8c-1.5 18.7-98.9-65.1-82.1-67.9 45.7-7.5 83.6 19.2 82.1 67.9zm-43 93.1c-24.5 15.8-59.8 5.6-78.8-22.8s-14.6-64.2 9.9-80c24.5-15.8 59.8-5.6 78.8 22.8s14.6 64.2-9.9 80zM238.9 29.3c.8 4.2 1.8 6.8 2.9 7.6 5.4-5.8 9.8-11.7 16.8-17.3 0 3.3-1.7 6.8 2.5 9.4 3.7-5 8.8-9.5 15.5-13.3-3.2 5.6-.6 7.3 1.2 9.6 5.1-4.4 10-8.8 19.4-12.3-2.6 3.1-6.2 6.2-2.4 9.8 5.3-3.3 10.6-6.6 23.1-8.9-2.8 3.1-8.7 6.3-5.1 9.4 6.6-2.5 14-4.4 22.1-5.4-3.9 3.2-7.1 6.3-3.9 8.8 7.1-2.2 16.9-5.1 26.4-2.6l-6 6.1c-.7.8 14.1.6 23.9.8-3.6 5-7.2 9.7-9.3 18.2 1 1 5.8.4 10.4 0-4.7 9.9-12.8 12.3-14.7 16.6 2.9 2.2 6.8 1.6 11.2.1-3.4 6.9-10.4 11.7-16 17.3 1.4 1 3.9 1.6 9.7.9-5.2 5.5-11.4 10.5-18.8 15 1.3 1.5 5.8 1.5 10 1.6-6.7 6.5-15.3 9.9-23.4 14.2 4 2.7 6.9 2.1 10 2.1-5.7 4.7-15.4 7.1-24.4 10 1.7 2.7 3.4 3.4 7.1 4.1-9.5 5.3-23.2 2.9-27 5.6.9 2.7 3.6 4.4 6.7 5.8-15.4.9-57.3-.6-65.4-32.3 15.7-17.3 44.4-37.5 93.7-62.6-38.4 12.8-73 30-102 53.5-34.3-15.9-10.8-55.9 5.8-71.8zm-34.4 114.6c24.2-.3 54.1 17.8 54 34.7-.1 15-21 27.1-53.8 26.9-32.1-.4-53.7-15.2-53.6-29.8 0-11.9 26.2-32.5 53.4-31.8zm-123-12.8c3.7-.7 5.4-1.5 7.1-4.1-9-2.8-18.7-5.3-24.4-10 3.1 0 6 .7 10-2.1-8.1-4.3-16.7-7.7-23.4-14.2 4.2-.1 8.7 0 10-1.6-7.4-4.5-13.6-9.5-18.8-15 5.8.7 8.3.1 9.7-.9-5.6-5.6-12.7-10.4-16-17.3 4.3 1.5 8.3 2 11.2-.1-1.9-4.2-10-6.7-14.7-16.6 4.6.4 9.4 1 10.4 0-2.1-8.5-5.8-13.3-9.3-18.2 9.8-.1 24.6 0 23.9-.8l-6-6.1c9.5-2.5 19.3.4 26.4 2.6 3.2-2.5-.1-5.6-3.9-8.8 8.1 1.1 15.4 2.9 22.1 5.4 3.5-3.1-2.3-6.3-5.1-9.4 12.5 2.3 17.8 5.6 23.1 8.9 3.8-3.6.2-6.7-2.4-9.8 9.4 3.4 14.3 7.9 19.4 12.3 1.7-2.3 4.4-4 1.2-9.6 6.7 3.8 11.8 8.3 15.5 13.3 4.1-2.6 2.5-6.2 2.5-9.4 7 5.6 11.4 11.5 16.8 17.3 1.1-.8 2-3.4 2.9-7.6 16.6 15.9 40.1 55.9 6 71.8-29-23.5-63.6-40.7-102-53.5 49.3 25 78 45.3 93.7 62.6-8 31.8-50 33.2-65.4 32.3 3.1-1.4 5.8-3.2 6.7-5.8-4-2.8-17.6-.4-27.2-5.6zm60.1 24.1c16.8 2.8-80.6 86.5-82.1 67.9-1.5-48.7 36.5-75.5 82.1-67.9zM38.2 342c-23.7-18.8-31.3-73.7 12.6-98.3 26.5-7 9 107.8-12.6 98.3zm91 98.2c-13.3 7.9-45.8 4.7-68.8-27.9-15.5-27.4-13.5-55.2-2.6-63.4 16.3-9.8 41.5 3.4 60.9 25.6 16.9 20 24.6 55.3 10.5 65.7zm-26.4-119.7c-24.5-15.8-28.9-51.6-9.9-80s54.3-38.6 78.8-22.8 28.9 51.6 9.9 80c-19.1 28.4-54.4 38.6-78.8 22.8zM205 496c-29.4 1.2-58.2-23.7-57.8-32.3-.4-12.7 35.8-22.6 59.3-22 23.7-1 55.6 7.5 55.7 18.9.5 11-28.8 35.9-57.2 35.4zm58.9-124.9c.2 29.7-26.2 53.8-58.8 54-32.6.2-59.2-23.8-59.4-53.4v-.6c-.2-29.7 26.2-53.8 58.8-54 32.6-.2 59.2 23.8 59.4 53.4v.6zm82.2 42.7c-25.3 34.6-59.6 35.9-72.3 26.3-13.3-12.4-3.2-50.9 15.1-72 20.9-23.3 43.3-38.5 58.9-26.6 10.5 10.3 16.7 49.1-1.7 72.3zm22.9-73.2c-21.5 9.4-39-105.3-12.6-98.3 43.9 24.7 36.3 79.6 12.6 98.3z" + } + }, + "free": [ + "brands" + ] + }, + "ravelry": { + "changes": [ + "4.7.0", + "5.0.0", + "5.15.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2d9", + "label": "Ravelry", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M498.252,234.223c-1.208-10.34-1.7-20.826-3.746-31a310.306,310.306,0,0,0-9.622-36.6,184.068,184.068,0,0,0-30.874-57.5,251.154,251.154,0,0,0-18.818-21.689,237.362,237.362,0,0,0-47.113-36.116A240.8,240.8,0,0,0,331.356,26.65c-11.018-3.1-22.272-5.431-33.515-7.615-6.78-1.314-13.749-1.667-20.627-2.482-.316-.036-.6-.358-.9-.553q-16.143.009-32.288.006c-2.41.389-4.808.925-7.236,1.15a179.331,179.331,0,0,0-34.256,7.1,221.5,221.5,0,0,0-39.768,16.355,281.385,281.385,0,0,0-38.08,24.158c-6.167,4.61-12.268,9.36-17.974,14.518C96.539,88.494,86.34,97.72,76.785,107.555a243.878,243.878,0,0,0-33.648,43.95,206.488,206.488,0,0,0-20.494,44.6,198.2,198.2,0,0,0-7.691,34.759A201.13,201.13,0,0,0,13.4,266.385a299.716,299.716,0,0,0,4.425,40.24,226.865,226.865,0,0,0,16.73,53.3,210.543,210.543,0,0,0,24,39.528,213.589,213.589,0,0,0,26.358,28.416A251.313,251.313,0,0,0,126.7,458.455a287.831,287.831,0,0,0,55.9,25.277,269.5,269.5,0,0,0,40.641,9.835c6.071,1.01,12.275,1.253,18.412,1.873a4.149,4.149,0,0,1,1.19.56h32.289c2.507-.389,5-.937,7.527-1.143,16.336-1.332,32.107-5.335,47.489-10.717A219.992,219.992,0,0,0,379.1,460.322c9.749-6.447,19.395-13.077,28.737-20.1,5.785-4.348,10.988-9.5,16.3-14.457,3.964-3.7,7.764-7.578,11.51-11.5a232.162,232.162,0,0,0,31.427-41.639c9.542-16.045,17.355-32.905,22.3-50.926,2.859-10.413,4.947-21.045,7.017-31.652,1.032-5.279,1.251-10.723,1.87-16.087.036-.317.358-.6.552-.9V236.005A9.757,9.757,0,0,1,498.252,234.223Zm-161.117-1.15s-16.572-2.98-28.47-2.98c-27.2,0-33.57,14.9-33.57,37.04V360.8H201.582V170.062H275.1v31.931c8.924-26.822,26.771-36.189,62.04-36.189Z" + } + }, + "free": [ + "brands" + ] + }, + "react": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41b", + "label": "React", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1.9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2.6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zM167.2 307.5c5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5 4.6 8.8 9.3 17.5 14.3 26.1zm-30.3-120.3c14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26-6.3-14.9-11.6-29.5-16-43.6zm27.4 68.9c6.6-13.8 13.8-27.3 21.4-40.6s15.8-26.2 24.4-38.9c15-1.1 30.3-1.7 45.9-1.7s31 .6 45.9 1.7c8.5 12.6 16.6 25.5 24.3 38.7s14.9 26.7 21.7 40.4c-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6s-30.9-.5-45.6-1.4c-8.7-12.7-16.9-25.7-24.6-39s-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6.4 19.5.6 29.5.6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8.9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zm-149.7-15c25.3 0 45.8-20.5 45.8-45.8s-20.5-45.8-45.8-45.8c-25.3 0-45.8 20.5-45.8 45.8s20.5 45.8 45.8 45.8z" + } + }, + "free": [ + "brands" + ] + }, + "reacteurope": { + "changes": [ + "5.5.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f75d", + "label": "ReactEurope", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M250.6 211.74l5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.1-.1-2.3-6.8-2.3 6.8-7.2.1 5.7 4.3zm63.7 0l5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.2-.1-2.3-6.8-2.3 6.8-7.2.1 5.7 4.3zm-91.3 50.5h-3.4c-4.8 0-3.8 4-3.8 12.1 0 4.7-2.3 6.1-5.8 6.1s-5.8-1.4-5.8-6.1v-36.6c0-4.7 2.3-6.1 5.8-6.1s5.8 1.4 5.8 6.1c0 7.2-.7 10.5 3.8 10.5h3.4c4.7-.1 3.8-3.9 3.8-12.3 0-9.9-6.7-14.1-16.8-14.1h-.2c-10.1 0-16.8 4.2-16.8 14.1V276c0 10.4 6.7 14.1 16.8 14.1h.2c10.1 0 16.8-3.8 16.8-14.1 0-9.86 1.1-13.76-3.8-13.76zm-80.7 17.4h-14.7v-19.3H139c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-11.4v-18.3H142c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-21.7c-2.4-.1-3.7 1.3-3.7 3.8v59.1c0 2.5 1.3 3.8 3.8 3.8h21.9c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8zm-42-18.5c4.6-2 7.3-6 7.3-12.4v-11.9c0-10.1-6.7-14.1-16.8-14.1H77.4c-2.5 0-3.8 1.3-3.8 3.8v59.1c0 2.5 1.3 3.8 3.8 3.8h3.4c2.5 0 3.8-1.3 3.8-3.8v-22.9h5.6l7.4 23.5a4.1 4.1 0 0 0 4.3 3.2h3.3c2.8 0 4-1.8 3.2-4.4zm-3.8-14c0 4.8-2.5 6.1-6.1 6.1h-5.8v-20.9h5.8c3.6 0 6.1 1.3 6.1 6.1zM176 226a3.82 3.82 0 0 0-4.2-3.4h-6.9a3.68 3.68 0 0 0-4 3.4l-11 59.2c-.5 2.7.9 4.1 3.4 4.1h3a3.74 3.74 0 0 0 4.1-3.5l1.8-11.3h12.2l1.8 11.3a3.74 3.74 0 0 0 4.1 3.5h3.5c2.6 0 3.9-1.4 3.4-4.1zm-12.3 39.3l4.7-29.7 4.7 29.7zm89.3 20.2v-53.2h7.5c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-25.8c-2.5 0-3.8 1.3-3.8 3.8v2.1c0 2.5 1.3 3.8 3.8 3.8h7.3v53.2c0 2.5 1.3 3.8 3.8 3.8h3.4c2.5.04 3.8-1.3 3.8-3.76zm248-.8h-19.4V258h16.1a1.89 1.89 0 0 0 2-2v-.8a1.89 1.89 0 0 0-2-2h-16.1v-25.8h19.1a1.89 1.89 0 0 0 2-2v-.8a1.77 1.77 0 0 0-2-1.9h-22.2a1.62 1.62 0 0 0-2 1.8v63a1.81 1.81 0 0 0 2 1.9H501a1.81 1.81 0 0 0 2-1.9v-.8a1.84 1.84 0 0 0-2-1.96zm-93.1-62.9h-.8c-10.1 0-15.3 4.7-15.3 14.1V276c0 9.3 5.2 14.1 15.3 14.1h.8c10.1 0 15.3-4.8 15.3-14.1v-40.1c0-9.36-5.2-14.06-15.3-14.06zm10.2 52.4c-.1 8-3 11.1-10.5 11.1s-10.5-3.1-10.5-11.1v-36.6c0-7.9 3-11.1 10.5-11.1s10.5 3.2 10.5 11.1zm-46.5-14.5c6.1-1.6 9.2-6.1 9.2-13.3v-9.7c0-9.4-5.2-14.1-15.3-14.1h-13.7a1.81 1.81 0 0 0-2 1.9v63a1.81 1.81 0 0 0 2 1.9h1.2a1.74 1.74 0 0 0 1.9-1.9v-26.9h11.6l10.4 27.2a2.32 2.32 0 0 0 2.3 1.5h1.5c1.4 0 2-1 1.5-2.3zm-6.4-3.9H355v-28.5h10.2c7.5 0 10.5 3.1 10.5 11.1v6.4c0 7.84-3 11.04-10.5 11.04zm85.9-33.1h-13.7a1.62 1.62 0 0 0-2 1.8v63a1.81 1.81 0 0 0 2 1.9h1.2a1.74 1.74 0 0 0 1.9-1.9v-26.1h10.6c10.1 0 15.3-4.8 15.3-14.1v-10.5c0-9.4-5.2-14.1-15.3-14.1zm10.2 22.8c0 7.9-3 11.1-10.5 11.1h-10.2v-29.2h10.2c7.5-.1 10.5 3.1 10.5 11zM259.5 308l-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm227.6-136.1a364.42 364.42 0 0 0-35.6-11.3c19.6-78 11.6-134.7-22.3-153.9C394.7-12.66 343.3 11 291 61.94q5.1 4.95 10.2 10.2c82.5-80 119.6-53.5 120.9-52.8 22.4 12.7 36 55.8 15.5 137.8a587.83 587.83 0 0 0-84.6-13C281.1 43.64 212.4 2 170.8 2 140 2 127 23 123.2 29.74c-18.1 32-13.3 84.2.1 133.8-70.5 20.3-120.7 54.1-120.3 95 .5 59.6 103.2 87.8 122.1 92.8-20.5 81.9-10.1 135.6 22.3 153.9 28 15.8 75.1 6 138.2-55.2q-5.1-4.95-10.2-10.2c-82.5 80-119.7 53.5-120.9 52.8-22.3-12.6-36-55.6-15.5-137.9 12.4 2.9 41.8 9.5 84.6 13 71.9 100.4 140.6 142 182.1 142 30.8 0 43.8-21 47.6-27.7 18-31.9 13.3-84.1-.1-133.8 152.3-43.8 156.2-130.2 33.9-176.3zM135.9 36.84c2.9-5.1 11.9-20.3 34.9-20.3 36.8 0 98.8 39.6 163.3 126.2a714 714 0 0 0-93.9.9 547.76 547.76 0 0 1 42.2-52.4Q277.3 86 272.2 81a598.25 598.25 0 0 0-50.7 64.2 569.69 569.69 0 0 0-84.4 14.6c-.2-1.4-24.3-82.2-1.2-123zm304.8 438.3c-2.9 5.1-11.8 20.3-34.9 20.3-36.7 0-98.7-39.4-163.3-126.2a695.38 695.38 0 0 0 93.9-.9 547.76 547.76 0 0 1-42.2 52.4q5.1 5.25 10.2 10.2a588.47 588.47 0 0 0 50.7-64.2c47.3-4.7 80.3-13.5 84.4-14.6 22.7 84.4 4.5 117 1.2 123zm9.1-138.6c-3.6-11.9-7.7-24.1-12.4-36.4a12.67 12.67 0 0 1-10.7-5.7l-.1.1a19.61 19.61 0 0 1-5.4 3.6c5.7 14.3 10.6 28.4 14.7 42.2a535.3 535.3 0 0 1-72 13c3.5-5.3 17.2-26.2 32.2-54.2a24.6 24.6 0 0 1-6-3.2c-1.1 1.2-3.6 4.2-10.9 4.2-6.2 11.2-17.4 30.9-33.9 55.2a711.91 711.91 0 0 1-112.4 1c-7.9-11.2-21.5-31.1-36.8-57.8a21 21 0 0 1-3-1.5c-1.9 1.6-3.9 3.2-12.6 3.2 6.3 11.2 17.5 30.7 33.8 54.6a548.81 548.81 0 0 1-72.2-11.7q5.85-21 14.1-42.9c-3.2 0-5.4.2-8.4-1a17.58 17.58 0 0 1-6.9 1c-4.9 13.4-9.1 26.5-12.7 39.4C-31.7 297-12.1 216 126.7 175.64c3.6 11.9 7.7 24.1 12.4 36.4 10.4 0 12.9 3.4 14.4 5.3a12 12 0 0 1 2.3-2.2c-5.8-14.7-10.9-29.2-15.2-43.3 7-1.8 32.4-8.4 72-13-15.9 24.3-26.7 43.9-32.8 55.3a14.22 14.22 0 0 1 6.4 8 23.42 23.42 0 0 1 10.2-8.4c6.5-11.7 17.9-31.9 34.8-56.9a711.72 711.72 0 0 1 112.4-1c31.5 44.6 28.9 48.1 42.5 64.5a21.42 21.42 0 0 1 10.4-7.4c-6.4-11.4-17.6-31-34.3-55.5 40.4 4.1 65 10 72.2 11.7-4 14.4-8.9 29.2-14.6 44.2a20.74 20.74 0 0 1 6.8 4.3l.1.1a12.72 12.72 0 0 1 8.9-5.6c4.9-13.4 9.2-26.6 12.8-39.5a359.71 359.71 0 0 1 34.5 11c106.1 39.9 74 87.9 72.6 90.4-19.8 35.1-80.1 55.2-105.7 62.5zm-114.4-114h-1.2a1.74 1.74 0 0 0-1.9 1.9v49.8c0 7.9-2.6 11.1-10.1 11.1s-10.1-3.1-10.1-11.1v-49.8a1.69 1.69 0 0 0-1.9-1.9H309a1.81 1.81 0 0 0-2 1.9v51.5c0 9.6 5 14.1 15.1 14.1h.4c10.1 0 15.1-4.6 15.1-14.1v-51.5a2 2 0 0 0-2.2-1.9zM321.7 308l-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm-31.1 7.4l-2.3-6.8-2.3 6.8-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm5.1-30.8h-19.4v-26.7h16.1a1.89 1.89 0 0 0 2-2v-.8a1.89 1.89 0 0 0-2-2h-16.1v-25.8h19.1a1.89 1.89 0 0 0 2-2v-.8a1.77 1.77 0 0 0-2-1.9h-22.2a1.81 1.81 0 0 0-2 1.9v63a1.81 1.81 0 0 0 2 1.9h22.5a1.77 1.77 0 0 0 2-1.9v-.8a1.83 1.83 0 0 0-2-2.06zm-7.4-99.4L286 192l-7.1.1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.1-.1z" + } + }, + "free": [ + "brands" + ] + }, + "readme": { + "changes": [ + "5.0.9", + "5.0.10" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4d5", + "label": "ReadMe", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z" + } + }, + "free": [ + "brands" + ] + }, + "rebel": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d0", + "label": "Rebel Alliance", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1.8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7.8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4.6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5.8-2.8.8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z" + } + }, + "free": [ + "brands" + ] + }, + "receipt": { + "aliases": { + "unicodes": { + "composite": [ + "1f9fe" + ], + "secondary": [ + "10f543" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accounting", + "bookkeeping", + "check", + "evidence", + "invoice", + "money", + "pay", + "proof", + "receipt", + "table" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f543", + "label": "Receipt", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M14 2.2C22.5-1.7 32.5-.3 39.6 5.8L80 40.4 120.4 5.8c9-7.7 22.3-7.7 31.2 0L192 40.4 232.4 5.8c9-7.7 22.2-7.7 31.2 0L304 40.4 344.4 5.8c7.1-6.1 17.1-7.5 25.6-3.6s14 12.4 14 21.8V488c0 9.4-5.5 17.9-14 21.8s-18.5 2.5-25.6-3.6L304 471.6l-40.4 34.6c-9 7.7-22.2 7.7-31.2 0L192 471.6l-40.4 34.6c-9 7.7-22.3 7.7-31.2 0L80 471.6 39.6 506.2c-7.1 6.1-17.1 7.5-25.6 3.6S0 497.4 0 488V24C0 14.6 5.5 6.1 14 2.2zM96 144c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96zM80 352c0 8.8 7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zM96 240c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96z" + } + }, + "free": [ + "solid" + ] + }, + "record-vinyl": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8d9" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "LP", + "album", + "analog", + "music", + "phonograph", + "sound" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f8d9", + "label": "Record Vinyl", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256-96a96 96 0 1 1 0 192 96 96 0 1 1 0-192zm0 224a128 128 0 1 0 0-256 128 128 0 1 0 0 256zm0-96a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "rectangle-ad": { + "aliases": { + "names": [ + "ad" + ], + "unicodes": { + "secondary": [ + "10f641" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "advertisement", + "media", + "newspaper", + "promotion", + "publicity" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f641", + "label": "Rectangle Ad", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM229.5 173.3l72 144c5.9 11.9 1.1 26.3-10.7 32.2s-26.3 1.1-32.2-10.7L253.2 328H162.8l-5.4 10.7c-5.9 11.9-20.3 16.7-32.2 10.7s-16.7-20.3-10.7-32.2l72-144c4.1-8.1 12.4-13.3 21.5-13.3s17.4 5.1 21.5 13.3zM208 237.7L186.8 280h42.3L208 237.7zM392 256a24 24 0 1 0 0 48 24 24 0 1 0 0-48zm24-43.9V184c0-13.3 10.7-24 24-24s24 10.7 24 24v96 48c0 13.3-10.7 24-24 24c-6.6 0-12.6-2.7-17-7c-9.4 4.5-19.9 7-31 7c-39.8 0-72-32.2-72-72s32.2-72 72-72c8.4 0 16.5 1.4 24 4.1z" + } + }, + "free": [ + "solid" + ] + }, + "rectangle-list": { + "aliases": { + "names": [ + "list-alt" + ], + "unicodes": { + "secondary": [ + "10f022" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f022", + "label": "Rectangle List", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H512c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zM128 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm32-128a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM128 384a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm96-248c-13.3 0-24 10.7-24 24s10.7 24 24 24H448c13.3 0 24-10.7 24-24s-10.7-24-24-24H224zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24H448c13.3 0 24-10.7 24-24s-10.7-24-24-24H224zm0 96c-13.3 0-24 10.7-24 24s10.7 24 24 24H448c13.3 0 24-10.7 24-24s-10.7-24-24-24H224z" + }, + "regular": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16V416c0 8.8 7.2 16 16 16H512c8.8 0 16-7.2 16-16V96c0-8.8-7.2-16-16-16H64zM0 96C0 60.7 28.7 32 64 32H512c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm96 64a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm104 0c0-13.3 10.7-24 24-24H448c13.3 0 24 10.7 24 24s-10.7 24-24 24H224c-13.3 0-24-10.7-24-24zm0 96c0-13.3 10.7-24 24-24H448c13.3 0 24 10.7 24 24s-10.7 24-24 24H224c-13.3 0-24-10.7-24-24zm0 96c0-13.3 10.7-24 24-24H448c13.3 0 24 10.7 24 24s-10.7 24-24 24H224c-13.3 0-24-10.7-24-24zm-72-64a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM96 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "rectangle-xmark": { + "aliases": { + "names": [ + "rectangle-times", + "times-rectangle", + "window-close" + ], + "unicodes": { + "composite": [ + "f2d4" + ], + "secondary": [ + "10f410" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "cancel", + "computer", + "development" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f410", + "label": "Rectangle Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321858, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM175 175c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + }, + "regular": { + "last_modified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M175 175C184.4 165.7 199.6 165.7 208.1 175L255.1 222.1L303 175C312.4 165.7 327.6 165.7 336.1 175C346.3 184.4 346.3 199.6 336.1 208.1L289.9 255.1L336.1 303C346.3 312.4 346.3 327.6 336.1 336.1C327.6 346.3 312.4 346.3 303 336.1L255.1 289.9L208.1 336.1C199.6 346.3 184.4 346.3 175 336.1C165.7 327.6 165.7 312.4 175 303L222.1 255.1L175 208.1C165.7 199.6 165.7 184.4 175 175V175zM0 96C0 60.65 28.65 32 64 32H448C483.3 32 512 60.65 512 96V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H448C456.8 432 464 424.8 464 416V96C464 87.16 456.8 80 448 80H64C55.16 80 48 87.16 48 96z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "recycle": { + "aliases": { + "unicodes": { + "composite": [ + "2672", + "267a", + "267b" + ], + "secondary": [ + "10f1b8" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Recycling Symbol For Generic Materials", + "Universal Recycling Symbol", + "Waste", + "compost", + "garbage", + "recycle", + "recycling symbol", + "reuse", + "trash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1b8", + "label": "Recycle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M174.7 45.1C192.2 17 223 0 256 0s63.8 17 81.3 45.1l38.6 61.7 27-15.6c8.4-4.9 18.9-4.2 26.6 1.7s11.1 15.9 8.6 25.3l-23.4 87.4c-3.4 12.8-16.6 20.4-29.4 17l-87.4-23.4c-9.4-2.5-16.3-10.4-17.6-20s3.4-19.1 11.8-23.9l28.4-16.4L283 79c-5.8-9.3-16-15-27-15s-21.2 5.7-27 15l-17.5 28c-9.2 14.8-28.6 19.5-43.6 10.5c-15.3-9.2-20.2-29.2-10.7-44.4l17.5-28zM429.5 251.9c15-9 34.4-4.3 43.6 10.5l24.4 39.1c9.4 15.1 14.4 32.4 14.6 50.2c.3 53.1-42.7 96.4-95.8 96.4L320 448v32c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-64-64c-9.4-9.4-9.4-24.6 0-33.9l64-64c6.9-6.9 17.2-8.9 26.2-5.2s14.8 12.5 14.8 22.2v32l96.2 0c17.6 0 31.9-14.4 31.8-32c0-5.9-1.7-11.7-4.8-16.7l-24.4-39.1c-9.5-15.2-4.7-35.2 10.7-44.4zm-364.6-31L36 204.2c-8.4-4.9-13.1-14.3-11.8-23.9s8.2-17.5 17.6-20l87.4-23.4c12.8-3.4 26 4.2 29.4 17L182 241.2c2.5 9.4-.9 19.3-8.6 25.3s-18.2 6.6-26.6 1.7l-26.5-15.3L68.8 335.3c-3.1 5-4.8 10.8-4.8 16.7c-.1 17.6 14.2 32 31.8 32l32.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-32.2 0C42.7 448-.3 404.8 0 351.6c.1-17.8 5.1-35.1 14.6-50.2l50.3-80.5z" + } + }, + "free": [ + "solid" + ] + }, + "red-river": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e3", + "label": "red river", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z" + } + }, + "free": [ + "brands" + ] + }, + "reddit": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a1", + "label": "reddit Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z" + } + }, + "free": [ + "brands" + ] + }, + "reddit-alien": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f281", + "label": "reddit Alien", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z" + } + }, + "free": [ + "brands" + ] + }, + "redhat": { + "changes": [ + "5.6.0", + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7bc", + "label": "Redhat", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M341.52 285.56c33.65 0 82.34-6.94 82.34-47 .22-6.74.86-1.82-20.88-96.24-4.62-19.15-8.68-27.84-42.31-44.65-26.09-13.34-82.92-35.37-99.73-35.37-15.66 0-20.2 20.17-38.87 20.17-18 0-31.31-15.06-48.12-15.06-16.14 0-26.66 11-34.78 33.62-27.5 77.55-26.28 74.27-26.12 78.27 0 24.8 97.64 106.11 228.47 106.11M429 254.84c4.65 22 4.65 24.35 4.65 27.25 0 37.66-42.33 58.56-98 58.56-125.74.08-235.91-73.65-235.91-122.33a49.55 49.55 0 0 1 4.06-19.72C58.56 200.86 0 208.93 0 260.63c0 84.67 200.63 189 359.49 189 121.79 0 152.51-55.08 152.51-98.58 0-34.21-29.59-73.05-82.93-96.24" + } + }, + "free": [ + "brands" + ] + }, + "registered": { + "aliases": { + "unicodes": { + "composite": [ + "ae" + ], + "secondary": [ + "10f25d" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copyright", + "mark", + "r", + "registered", + "trademark" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f25d", + "label": "Registered", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM160 152c0-13.3 10.7-24 24-24h88c44.2 0 80 35.8 80 80c0 28-14.4 52.7-36.3 67l34.1 75.1c5.5 12.1 .1 26.3-11.9 31.8s-26.3 .1-31.8-11.9L268.9 288H208v72c0 13.3-10.7 24-24 24s-24-10.7-24-24V264 152zm48 88h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H208v64z" + }, + "regular": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 48a208 208 0 1 1 0 416 208 208 0 1 1 0-416zm0 464A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM160 152V264v96c0 13.3 10.7 24 24 24s24-10.7 24-24V288h60.9l37.2 81.9c5.5 12.1 19.7 17.4 31.8 11.9s17.4-19.7 11.9-31.8L315.7 275c21.8-14.3 36.3-39 36.3-67c0-44.2-35.8-80-80-80H184c-13.3 0-24 10.7-24 24zm48 88V176h64c17.7 0 32 14.3 32 32s-14.3 32-32 32H208z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "renren": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f18b", + "label": "Renren", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z" + } + }, + "free": [ + "brands" + ] + }, + "repeat": { + "aliases": { + "unicodes": { + "composite": [ + "1f501" + ], + "secondary": [ + "10f363" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "clockwise", + "flip", + "reload", + "repeat", + "repeat button", + "rewind", + "switch" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f363", + "label": "Repeat", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 224c0 17.7 14.3 32 32 32s32-14.3 32-32c0-53 43-96 96-96H320v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9S320 19.1 320 32V64H160C71.6 64 0 135.6 0 224zm512 64c0-17.7-14.3-32-32-32s-32 14.3-32 32c0 53-43 96-96 96H192V352c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V448H352c88.4 0 160-71.6 160-160z" + } + }, + "free": [ + "solid" + ] + }, + "reply": { + "aliases": { + "names": [ + "mail-reply" + ], + "unicodes": { + "composite": [ + "f112" + ], + "secondary": [ + "10f3e5" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mail", + "message", + "respond" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3e5", + "label": "Reply", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M205 34.8c11.5 5.1 19 16.6 19 29.2v64H336c97.2 0 176 78.8 176 176c0 113.3-81.5 163.9-100.2 174.1c-2.5 1.4-5.3 1.9-8.1 1.9c-10.9 0-19.7-8.9-19.7-19.7c0-7.5 4.3-14.4 9.8-19.5c9.4-8.8 22.2-26.4 22.2-56.7c0-53-43-96-96-96H224v64c0 12.6-7.4 24.1-19 29.2s-25 3-34.4-5.4l-160-144C3.9 225.7 0 217.1 0 208s3.9-17.7 10.6-23.8l160-144c9.4-8.5 22.9-10.6 34.4-5.4z" + } + }, + "free": [ + "solid" + ] + }, + "reply-all": { + "aliases": { + "names": [ + "mail-reply-all" + ], + "unicodes": { + "secondary": [ + "10f122" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mail", + "message", + "respond" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f122", + "label": "Reply All", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M209.4 39.5c-9.1-9.6-24.3-10-33.9-.9L33.8 173.2c-19.9 18.9-19.9 50.7 0 69.6L175.5 377.4c9.6 9.1 24.8 8.7 33.9-.9s8.7-24.8-.9-33.9L66.8 208 208.5 73.4c9.6-9.1 10-24.3 .9-33.9zM352 64c0-12.6-7.4-24.1-19-29.2s-25-3-34.4 5.4l-160 144c-6.7 6.1-10.6 14.7-10.6 23.8s3.9 17.7 10.6 23.8l160 144c9.4 8.5 22.9 10.6 34.4 5.4s19-16.6 19-29.2V288h32c53 0 96 43 96 96c0 30.4-12.8 47.9-22.2 56.7c-5.5 5.1-9.8 12-9.8 19.5c0 10.9 8.8 19.7 19.7 19.7c2.8 0 5.6-.6 8.1-1.9C494.5 467.9 576 417.3 576 304c0-97.2-78.8-176-176-176H352V64z" + } + }, + "free": [ + "solid" + ] + }, + "replyd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e6", + "label": "replyd", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9.5-4.4.7-8.6.7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z" + } + }, + "free": [ + "brands" + ] + }, + "republican": { + "aliases": { + "unicodes": { + "secondary": [ + "10f75e" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "conservative", + "election", + "elephant", + "politics", + "republican party", + "right", + "right-wing", + "usa" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f75e", + "label": "Republican", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 192C0 103.6 71.6 32 160 32H384c88.4 0 160 71.6 160 160v64H0V192zm415.9-64c-2.4 0-4.7 1.3-5.7 3.4l-12.6 24.6-28.2 4c-2.4 .3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3 .6 4.7 2.5 6s4.6 1.6 6.7 .5l25.2-12.8 25.2 12.8c2.2 1.1 4.8 .9 6.7-.5s3-3.7 2.5-6l-4.8-27.1L466 170.5c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4-12.6-24.6c-1.1-2.1-3.3-3.4-5.7-3.4zm-138.3 3.4c-1.1-2.1-3.3-3.4-5.7-3.4s-4.7 1.3-5.7 3.4l-12.6 24.6-28.2 4c-2.4 .3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3 .6 4.7 2.5 6s4.6 1.6 6.7 .5l25.2-12.8 25.2 12.8c2.2 1.1 4.8 .9 6.7-.5s3-3.7 2.5-6l-4.8-27.1L322 170.5c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4-12.6-24.6zM127.9 128c-2.4 0-4.7 1.3-5.7 3.4l-12.6 24.6-28.2 4c-2.4 .3-4.4 2-5.2 4.2s-.1 4.7 1.6 6.3l20.4 19.2-4.8 27.1c-.4 2.3 .6 4.7 2.5 6s4.6 1.6 6.7 .5l25.2-12.8 25.2 12.8c2.2 1.1 4.8 .9 6.7-.5s3-3.7 2.5-6l-4.8-27.1L178 170.5c1.7-1.6 2.4-4.1 1.6-6.3s-2.8-3.9-5.2-4.2l-28.2-4-12.6-24.6c-1.1-2.1-3.3-3.4-5.7-3.4zm.1 160H320h96 32 64 32v32 80c0 8.8 7.2 16 16 16s16-7.2 16-16V352c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 44.2-35.8 80-80 80s-80-35.8-80-80V352H448v32 64c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V384H128v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V384 288H128z" + } + }, + "free": [ + "solid" + ] + }, + "researchgate": { + "changes": [ + "5.0.11" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f8", + "label": "Researchgate", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z" + } + }, + "free": [ + "brands" + ] + }, + "resolving": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e7", + "label": "Resolving", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z" + } + }, + "free": [ + "brands" + ] + }, + "restroom": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7bd" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "toilet", + "water closet", + "wc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7bd", + "label": "Restroom", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M80 48a48 48 0 1 1 96 0A48 48 0 1 1 80 48zm40 304V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V325.2c-8.1 9.2-21.1 13.2-33.5 9.4c-16.9-5.3-26.3-23.2-21-40.1l30.9-99.1C44.9 155.3 82 128 124 128h8c42 0 79.1 27.3 91.6 67.4l30.9 99.1c5.3 16.9-4.1 34.8-21 40.1c-12.4 3.9-25.4-.2-33.5-9.4V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V352H120zM320 0c13.3 0 24 10.7 24 24V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V24c0-13.3 10.7-24 24-24zM464 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM440 480V384H422.2c-10.9 0-18.6-10.7-15.2-21.1l9-26.9c-3.2 0-6.4-.5-9.5-1.5c-16.9-5.3-26.3-23.2-21-40.1l29.7-95.2C428.4 156.9 467.6 128 512 128s83.6 28.9 96.8 71.2l29.7 95.2c5.3 16.9-4.1 34.8-21 40.1c-3.2 1-6.4 1.5-9.5 1.5l9 26.9c3.5 10.4-4.3 21.1-15.2 21.1H584v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384H504v96c0 17.7-14.3 32-32 32s-32-14.3-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "retweet": { + "aliases": { + "unicodes": { + "secondary": [ + "10f079" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refresh", + "reload", + "share", + "swap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f079", + "label": "Retweet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M272 416c17.7 0 32-14.3 32-32s-14.3-32-32-32H160c-17.7 0-32-14.3-32-32V192h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8l32 0 0 128c0 53 43 96 96 96H272zM304 96c-17.7 0-32 14.3-32 32s14.3 32 32 32l112 0c17.7 0 32 14.3 32 32l0 128H416c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8l-32 0V192c0-53-43-96-96-96L304 96z" + } + }, + "free": [ + "solid" + ] + }, + "rev": { + "changes": [ + "5.1.0", + "5.1.1", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5b2", + "label": "Rev.io", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M289.67 274.89a65.57 65.57 0 1 1-65.56-65.56 65.64 65.64 0 0 1 65.56 65.56zm139.55-5.05h-.13a204.69 204.69 0 0 0-74.32-153l-45.38 26.2a157.07 157.07 0 0 1 71.81 131.84C381.2 361.5 310.73 432 224.11 432S67 361.5 67 274.88c0-81.88 63-149.27 143-156.43v39.12l108.77-62.79L210 32v38.32c-106.7 7.25-191 96-191 204.57 0 111.59 89.12 202.29 200.06 205v.11h210.16V269.84z" + } + }, + "free": [ + "brands" + ] + }, + "ribbon": { + "aliases": { + "unicodes": { + "composite": [ + "1f397" + ], + "secondary": [ + "10f4d6" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "badge", + "cause", + "celebration", + "lapel", + "pin", + "reminder", + "reminder ribbon", + "ribbon" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4d6", + "label": "Ribbon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M315.2 322.8l0 0-133.9-146 0 0L128 118.6c7.8-5.1 37-22.6 78-22.6s70.2 17.4 78 22.6L227.7 180l85.6 93.4 27.4-29.8c16.3-17.7 25.3-40.9 25.3-65V149.1c0-19-5.6-37.5-16.1-53.3L309.8 35.6C294.9 13.4 269.9 0 243.2 0h-76c-25.8 0-50.1 12.5-65.1 33.5L63.9 87C52.3 103.2 46 122.8 46 142.8V164c0 23.2 8.4 45.6 23.6 63.1l56 64.2 0 0 83.3 95.6 0 0 91.8 105.3c10 11.5 26.8 14.3 40 6.8l54.5-31.1c17.8-10.2 21.6-34.3 7.7-49.4l-87.7-95.7zM187.2 410.6l-83.3-95.6L9.1 418.5C-4.8 433.6-1 457.7 16.8 467.9l55.1 31.5c13 7.4 29.3 4.9 39.4-6.1l75.9-82.6z" + } + }, + "free": [ + "solid" + ] + }, + "right-from-bracket": { + "aliases": { + "names": [ + "sign-out-alt" + ], + "unicodes": { + "secondary": [ + "10f2f5" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "exit", + "leave", + "log out", + "logout", + "sign-out" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2f5", + "label": "Right From Bracket", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M377.9 105.9L500.7 228.7c7.2 7.2 11.3 17.1 11.3 27.3s-4.1 20.1-11.3 27.3L377.9 406.1c-6.4 6.4-15 9.9-24 9.9c-18.7 0-33.9-15.2-33.9-33.9l0-62.1-128 0c-17.7 0-32-14.3-32-32l0-64c0-17.7 14.3-32 32-32l128 0 0-62.1c0-18.7 15.2-33.9 33.9-33.9c9 0 17.6 3.6 24 9.9zM160 96L96 96c-17.7 0-32 14.3-32 32l0 256c0 17.7 14.3 32 32 32l64 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-64 0c-53 0-96-43-96-96L0 128C0 75 43 32 96 32l64 0c17.7 0 32 14.3 32 32s-14.3 32-32 32z" + } + }, + "free": [ + "solid" + ] + }, + "right-left": { + "aliases": { + "names": [ + "exchange-alt" + ], + "unicodes": { + "secondary": [ + "10f362" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "exchange", + "reciprocate", + "return", + "swap", + "transfer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f362", + "label": "Right Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 96l320 0V32c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l96 96c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-96 96c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V160L32 160c-17.7 0-32-14.3-32-32s14.3-32 32-32zM480 352c17.7 0 32 14.3 32 32s-14.3 32-32 32H160v64c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-96-96c-6-6-9.4-14.1-9.4-22.6s3.4-16.6 9.4-22.6l96-96c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 64H480z" + } + }, + "free": [ + "solid" + ] + }, + "right-long": { + "aliases": { + "names": [ + "long-arrow-alt-right" + ], + "unicodes": { + "secondary": [ + "10f30b" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "long-arrow-right", + "next" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f30b", + "label": "Right Long", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M334.5 414c8.8 3.8 19 2 26-4.6l144-136c4.8-4.5 7.5-10.8 7.5-17.4s-2.7-12.9-7.5-17.4l-144-136c-7-6.6-17.2-8.4-26-4.6s-14.5 12.5-14.5 22l0 72L32 192c-17.7 0-32 14.3-32 32l0 64c0 17.7 14.3 32 32 32l288 0 0 72c0 9.6 5.7 18.2 14.5 22z" + } + }, + "free": [ + "solid" + ] + }, + "right-to-bracket": { + "aliases": { + "names": [ + "sign-in-alt" + ], + "unicodes": { + "secondary": [ + "10f2f6" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "enter", + "join", + "log in", + "login", + "sign in", + "sign up", + "sign-in", + "signin", + "signup" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2f6", + "label": "Right To Bracket", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M217.9 105.9L340.7 228.7c7.2 7.2 11.3 17.1 11.3 27.3s-4.1 20.1-11.3 27.3L217.9 406.1c-6.4 6.4-15 9.9-24 9.9c-18.7 0-33.9-15.2-33.9-33.9l0-62.1L32 320c-17.7 0-32-14.3-32-32l0-64c0-17.7 14.3-32 32-32l128 0 0-62.1c0-18.7 15.2-33.9 33.9-33.9c9 0 17.6 3.6 24 9.9zM352 416l64 0c17.7 0 32-14.3 32-32l0-256c0-17.7-14.3-32-32-32l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l64 0c53 0 96 43 96 96l0 256c0 53-43 96-96 96l-64 0c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "ring": { + "aliases": { + "unicodes": { + "secondary": [ + "10f70b" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "Gollum", + "band", + "binding", + "d&d", + "dnd", + "engagement", + "fantasy", + "gold", + "jewelry", + "marriage", + "precious" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f70b", + "label": "Ring", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 208c0 7.8 4.4 18.7 17.1 30.3C126.5 214.1 188.9 200 256 200s129.5 14.1 174.9 38.3C443.6 226.7 448 215.8 448 208c0-12.3-10.8-32-47.9-50.6C364.9 139.8 314 128 256 128s-108.9 11.8-144.1 29.4C74.8 176 64 195.7 64 208zm192 40c-47 0-89.3 7.6-122.9 19.7C166.3 280.2 208.8 288 256 288s89.7-7.8 122.9-20.3C345.3 255.6 303 248 256 248zM0 208c0-49.6 39.4-85.8 83.3-107.8C129.1 77.3 190.3 64 256 64s126.9 13.3 172.7 36.2c43.9 22 83.3 58.2 83.3 107.8v96c0 49.6-39.4 85.8-83.3 107.8C382.9 434.7 321.7 448 256 448s-126.9-13.3-172.7-36.2C39.4 389.8 0 353.6 0 304V208z" + } + }, + "free": [ + "solid" + ] + }, + "road": { + "aliases": { + "unicodes": { + "composite": [ + "1f6e3" + ], + "secondary": [ + "10f018" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "highway", + "map", + "motorway", + "pavement", + "road", + "route", + "street", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f018", + "label": "Road", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M256 32H181.2c-27.1 0-51.3 17.1-60.3 42.6L3.1 407.2C1.1 413 0 419.2 0 425.4C0 455.5 24.5 480 54.6 480H256V416c0-17.7 14.3-32 32-32s32 14.3 32 32v64H521.4c30.2 0 54.6-24.5 54.6-54.6c0-6.2-1.1-12.4-3.1-18.2L455.1 74.6C446 49.1 421.9 32 394.8 32H320V96c0 17.7-14.3 32-32 32s-32-14.3-32-32V32zm64 192v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "road-barrier": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "border", + "no entry", + "roadblock" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e562", + "label": "Road Barrier", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V266.3L149.2 96H64V64c0-17.7-14.3-32-32-32zM405.2 96H330.8l-5.4 10.7L234.8 288h74.3l5.4-10.7L405.2 96zM362.8 288h74.3l5.4-10.7L533.2 96H458.8l-5.4 10.7L362.8 288zM202.8 96l-5.4 10.7L106.8 288h74.3l5.4-10.7L277.2 96H202.8zm288 192H576V448c0 17.7 14.3 32 32 32s32-14.3 32-32V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v53.7L490.8 288z" + } + }, + "free": [ + "solid" + ] + }, + "road-bridge": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bridge", + "infrastructure", + "road", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e563", + "label": "Road Bridge", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M352 0H608c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H352c-17.7 0-32-14.3-32-32V32c0-17.7 14.3-32 32-32zM480 200c-13.3 0-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24V224c0-13.3-10.7-24-24-24zm24 184c0-13.3-10.7-24-24-24s-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24V384zM480 40c-13.3 0-24 10.7-24 24v64c0 13.3 10.7 24 24 24s24-10.7 24-24V64c0-13.3-10.7-24-24-24zM32 96H288v64H248v64h40v96c-53 0-96 43-96 96v64c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V416c0-53-43-96-96-96V224H72V160H32c-17.7 0-32-14.3-32-32s14.3-32 32-32zm168 64H120v64h80V160z" + } + }, + "free": [ + "solid" + ] + }, + "road-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "freeway", + "highway", + "not affected", + "ok", + "okay", + "pavement", + "road" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e564", + "label": "Road Circle Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M213.2 32H288V96c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2c-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32c2.3 0 4.6-.3 6.8-.7c-4.5 15.5-6.8 31.8-6.8 48.7c0 5.4 .2 10.7 .7 16l-.7 0c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32zM352 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L480 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + }, + "free": [ + "solid" + ] + }, + "road-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "freeway", + "highway", + "pavement", + "road" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e565", + "label": "Road Circle Exclamation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M213.2 32H288V96c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2c-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32c2.3 0 4.6-.3 6.8-.7c-4.5 15.5-6.8 31.8-6.8 48.7c0 5.4 .2 10.7 .7 16l-.7 0c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32zM496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm0 240a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0-192c-8.8 0-16 7.2-16 16v80c0 8.8 7.2 16 16 16s16-7.2 16-16V288c0-8.8-7.2-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "road-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destroy", + "freeway", + "highway", + "pavement", + "road" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e566", + "label": "Road Circle Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M213.2 32H288V96c0 17.7 14.3 32 32 32s32-14.3 32-32V32h74.8c27.1 0 51.3 17.1 60.3 42.6l42.7 120.6c-10.9-2.1-22.2-3.2-33.8-3.2c-59.5 0-112.1 29.6-144 74.8V224c0-17.7-14.3-32-32-32s-32 14.3-32 32v64c0 17.7 14.3 32 32 32c2.3 0 4.6-.3 6.8-.7c-4.5 15.5-6.8 31.8-6.8 48.7c0 5.4 .2 10.7 .7 16l-.7 0c-17.7 0-32 14.3-32 32v64H86.6C56.5 480 32 455.5 32 425.4c0-6.2 1.1-12.4 3.1-18.2L152.9 74.6C162 49.1 186.1 32 213.2 32zM496 224a144 144 0 1 1 0 288 144 144 0 1 1 0-288zm22.6 144l36.7-36.7c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0L496 345.4l-36.7-36.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L473.4 368l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L496 390.6l36.7 36.7c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L518.6 368z" + } + }, + "free": [ + "solid" + ] + }, + "road-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "freeway", + "highway", + "lockdown", + "pavement", + "quarantine", + "road" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e567", + "label": "Road Lock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 32H213.2c-27.1 0-51.3 17.1-60.3 42.6L35.1 407.2c-2.1 5.9-3.1 12-3.1 18.2C32 455.5 56.5 480 86.6 480H288V416c0-17.7 14.3-32 32-32s32 14.3 32 32v64h32V352c0-23.7 12.9-44.4 32-55.4V272c0-58.3 44.6-106.2 101.5-111.5L487.1 74.6C478 49.1 453.9 32 426.8 32H352V96c0 17.7-14.3 32-32 32s-32-14.3-32-32V32zm64 192v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32s32 14.3 32 32zm176 16c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "road-spikes": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barrier", + "roadblock", + "spikes" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e568", + "label": "Road Spikes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 116.8c0-15.8 20.5-22 29.3-8.9L192 256V116.8c0-15.8 20.5-22 29.3-8.9L320 256V116.8c0-15.8 20.5-22 29.3-8.9L448 256V116.8c0-15.8 20.5-22 29.3-8.9L606.8 302.2c14.2 21.3-1.1 49.7-26.6 49.7H512 448 384 320 256 192 64V116.8zM32 384H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "robot": { + "aliases": { + "unicodes": { + "composite": [ + "1f916" + ], + "secondary": [ + "10f544" + ] + } + }, + "changes": [ + "5.0.13", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "android", + "automate", + "computer", + "cyborg", + "face", + "monster", + "robot" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f544", + "label": "Robot", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M320 0c17.7 0 32 14.3 32 32V96H472c39.8 0 72 32.2 72 72V440c0 39.8-32.2 72-72 72H168c-39.8 0-72-32.2-72-72V168c0-39.8 32.2-72 72-72H288V32c0-17.7 14.3-32 32-32zM208 384c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H208zm96 0c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H304zm96 0c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H400zM264 256a40 40 0 1 0 -80 0 40 40 0 1 0 80 0zm152 40a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM48 224H64V416H48c-26.5 0-48-21.5-48-48V272c0-26.5 21.5-48 48-48zm544 0c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H576V224h16z" + } + }, + "free": [ + "solid" + ] + }, + "rocket": { + "aliases": { + "unicodes": { + "secondary": [ + "10f135" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.7.0", + "5.12.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "aircraft", + "app", + "jet", + "launch", + "nasa", + "space" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f135", + "label": "Rocket", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M156.6 384.9L125.7 354c-8.5-8.5-11.5-20.8-7.7-32.2c3-8.9 7-20.5 11.8-33.8L24 288c-8.6 0-16.6-4.6-20.9-12.1s-4.2-16.7 .2-24.1l52.5-88.5c13-21.9 36.5-35.3 61.9-35.3l82.3 0c2.4-4 4.8-7.7 7.2-11.3C289.1-4.1 411.1-8.1 483.9 5.3c11.6 2.1 20.6 11.2 22.8 22.8c13.4 72.9 9.3 194.8-111.4 276.7c-3.5 2.4-7.3 4.8-11.3 7.2v82.3c0 25.4-13.4 49-35.3 61.9l-88.5 52.5c-7.4 4.4-16.6 4.5-24.1 .2s-12.1-12.2-12.1-20.9V380.8c-14.1 4.9-26.4 8.9-35.7 11.9c-11.2 3.6-23.4 .5-31.8-7.8zM384 168a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + }, + "free": [ + "solid" + ] + }, + "rocketchat": { + "changes": [ + "5.0.0", + "5.4.2", + "5.8.0", + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e8", + "label": "Rocket.Chat", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M284.046,224.8a34.114,34.114,0,1,0,34.317,34.113A34.217,34.217,0,0,0,284.046,224.8Zm-110.45,0a34.114,34.114,0,1,0,34.317,34.113A34.217,34.217,0,0,0,173.6,224.8Zm220.923,0a34.114,34.114,0,1,0,34.317,34.113A34.215,34.215,0,0,0,394.519,224.8Zm153.807-55.319c-15.535-24.172-37.31-45.57-64.681-63.618-52.886-34.817-122.374-54-195.666-54a405.975,405.975,0,0,0-72.032,6.357,238.524,238.524,0,0,0-49.51-36.588C99.684-11.7,40.859.711,11.135,11.421A14.291,14.291,0,0,0,5.58,34.782C26.542,56.458,61.222,99.3,52.7,138.252c-33.142,33.9-51.112,74.776-51.112,117.337,0,43.372,17.97,84.248,51.112,118.148,8.526,38.956-26.154,81.816-47.116,103.491a14.284,14.284,0,0,0,5.555,23.34c29.724,10.709,88.549,23.147,155.324-10.2a238.679,238.679,0,0,0,49.51-36.589A405.972,405.972,0,0,0,288,460.14c73.313,0,142.8-19.159,195.667-53.975,27.371-18.049,49.145-39.426,64.679-63.619,17.309-26.923,26.07-55.916,26.07-86.125C574.394,225.4,565.634,196.43,548.326,169.485ZM284.987,409.9a345.65,345.65,0,0,1-89.446-11.5l-20.129,19.393a184.366,184.366,0,0,1-37.138,27.585,145.767,145.767,0,0,1-52.522,14.87c.983-1.771,1.881-3.563,2.842-5.356q30.258-55.68,16.325-100.078c-32.992-25.962-52.778-59.2-52.778-95.4,0-83.1,104.254-150.469,232.846-150.469s232.867,67.373,232.867,150.469C517.854,342.525,413.6,409.9,284.987,409.9Z" + } + }, + "free": [ + "brands" + ] + }, + "rockrms": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3e9", + "label": "Rockrms", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2.2-74.2.2l101.5 118.9z" + } + }, + "free": [ + "brands" + ] + }, + "rotate": { + "aliases": { + "names": [ + "sync-alt" + ], + "unicodes": { + "composite": [ + "1f504" + ], + "secondary": [ + "10f2f1" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anticlockwise", + "arrow", + "counterclockwise", + "counterclockwise arrows button", + "exchange", + "refresh", + "reload", + "rotate", + "swap", + "withershins" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2f1", + "label": "Rotate", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M126.9 142.9c62.2-62.2 162.7-62.5 225.3-1L311 183c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8H447.5c0 0 0 0 0 0H456c13.3 0 24-10.7 24-24V72c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2L397.4 96.6c-87.6-86.5-228.7-86.2-315.8 1C57.2 122 39.6 150.7 28.8 181.4c-5.9 16.7 2.9 34.9 19.5 40.8s34.9-2.9 40.8-19.5c7.7-21.8 20.2-42.3 37.8-59.8zM0 312v7.6 .7V440c0 9.7 5.8 18.5 14.8 22.2s19.3 1.7 26.2-5.2l41.6-41.6c87.6 86.5 228.7 86.2 315.8-1c24.4-24.4 42.1-53.1 52.9-83.7c5.9-16.7-2.9-34.9-19.5-40.8s-34.9 2.9-40.8 19.5c-7.7 21.8-20.2 42.3-37.8 59.8c-62.2 62.2-162.7 62.5-225.3 1L169 329c6.9-6.9 8.9-17.2 5.2-26.2s-12.5-14.8-22.2-14.8H32.4h-.7H24c-13.3 0-24 10.7-24 24z" + } + }, + "free": [ + "solid" + ] + }, + "rotate-left": { + "aliases": { + "names": [ + "rotate-back", + "rotate-backward", + "undo-alt" + ], + "unicodes": { + "secondary": [ + "10f2ea" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "exchange", + "oops", + "return", + "swap" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2ea", + "label": "Rotate Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32.5 224H24c-13.3 0-24-10.7-24-24V72c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2L82.6 96.6c87.6-86.5 228.7-86.2 315.8 1c87.5 87.5 87.5 229.3 0 316.8s-229.3 87.5-316.8 0c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0c62.5 62.5 163.8 62.5 226.3 0s62.5-163.8 0-226.3c-62.2-62.2-162.7-62.5-225.3-1L169 183c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8H32.5z" + } + }, + "free": [ + "solid" + ] + }, + "rotate-right": { + "aliases": { + "names": [ + "redo-alt", + "rotate-forward" + ], + "unicodes": { + "secondary": [ + "10f2f9" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "refresh", + "reload", + "repeat" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2f9", + "label": "Rotate Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M447.5 224H456c13.3 0 24-10.7 24-24V72c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2L397.4 96.6c-87.6-86.5-228.7-86.2-315.8 1c-87.5 87.5-87.5 229.3 0 316.8s229.3 87.5 316.8 0c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3c62.2-62.2 162.7-62.5 225.3-1L311 183c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8H447.5z" + } + }, + "free": [ + "solid" + ] + }, + "route": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4d7" + ] + } + }, + "changes": [ + "5.0.9", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "navigation", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4d7", + "label": "Route", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 96c0 50.2-59.1 125.1-84.6 155c-3.8 4.4-9.4 6.1-14.5 5H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c53 0 96 43 96 96s-43 96-96 96H139.6c8.7-9.9 19.3-22.6 30-36.8c6.3-8.4 12.8-17.6 19-27.2H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-53 0-96-43-96-96s43-96 96-96h39.8c-21-31.5-39.8-67.7-39.8-96c0-53 43-96 96-96s96 43 96 96zM117.1 489.1c-3.8 4.3-7.2 8.1-10.1 11.3l-1.8 2-.2-.2c-6 4.6-14.6 4-20-1.8C59.8 473 0 402.5 0 352c0-53 43-96 96-96s96 43 96 96c0 30-21.1 67-43.5 97.9c-10.7 14.7-21.7 28-30.8 38.5l-.6 .7zM128 352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM416 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "rss": { + "aliases": { + "names": [ + "feed" + ], + "unicodes": { + "secondary": [ + "10f09e" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blog", + "feed", + "journal", + "news", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f09e", + "label": "Rss", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32c229.8 0 416 186.2 416 416c0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96C14.3 96 0 81.7 0 64zM0 416a64 64 0 1 1 128 0A64 64 0 1 1 0 416zM32 160c159.1 0 288 128.9 288 288c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "ruble-sign": { + "aliases": { + "names": [ + "rouble", + "rub", + "ruble" + ], + "unicodes": { + "composite": [ + "20bd" + ], + "secondary": [ + "10f158" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Ruble Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f158", + "label": "Ruble Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 32C78.3 32 64 46.3 64 64V256H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v32c0 17.7 14.3 32 32 32s32-14.3 32-32V416H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V320H240c79.5 0 144-64.5 144-144s-64.5-144-144-144H96zM240 256H128V96H240c44.2 0 80 35.8 80 80s-35.8 80-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "rug": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blanket", + "carpet", + "rug", + "textile" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e569", + "label": "Rug", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M24 64H56 80V88v88 80 80 88 24H56 24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V360H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V280H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V200H24c-13.3 0-24-10.7-24-24s10.7-24 24-24h8V112H24C10.7 112 0 101.3 0 88S10.7 64 24 64zm88 0H528V448H112V64zM640 88c0 13.3-10.7 24-24 24h-8v40h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v32h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v32h8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8v40h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H584 560V424 336 256 176 88 64h24 32c13.3 0 24 10.7 24 24z" + } + }, + "free": [ + "solid" + ] + }, + "ruler": { + "aliases": { + "unicodes": { + "composite": [ + "1f4cf" + ], + "secondary": [ + "10f545" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning", + "ruler", + "straight edge", + "straight ruler" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f545", + "label": "Ruler", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M174.9 494.1c-18.7 18.7-49.1 18.7-67.9 0L14.9 401.9c-18.7-18.7-18.7-49.1 0-67.9l50.7-50.7 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 50.7-50.7c18.7-18.7 49.1-18.7 67.9 0l92.1 92.1c18.7 18.7 18.7 49.1 0 67.9L174.9 494.1z" + } + }, + "free": [ + "solid" + ] + }, + "ruler-combined": { + "aliases": { + "unicodes": { + "secondary": [ + "10f546" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f546", + "label": "Ruler Combined", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M.2 468.9C2.7 493.1 23.1 512 48 512l96 0 320 0c26.5 0 48-21.5 48-48l0-96c0-26.5-21.5-48-48-48l-48 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-80 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l80 0 0-64-80 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l80 0 0-64-80 0c-8.8 0-16-7.2-16-16s7.2-16 16-16l80 0 0-48c0-26.5-21.5-48-48-48L48 0C21.5 0 0 21.5 0 48L0 368l0 96c0 1.7 .1 3.3 .2 4.9z" + } + }, + "free": [ + "solid" + ] + }, + "ruler-horizontal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f547" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f547", + "label": "Ruler Horizontal", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 336c0 26.5 21.5 48 48 48l544 0c26.5 0 48-21.5 48-48l0-160c0-26.5-21.5-48-48-48l-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0 0 80c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-80-64 0c-26.5 0-48 21.5-48 48L0 336z" + } + }, + "free": [ + "solid" + ] + }, + "ruler-vertical": { + "aliases": { + "unicodes": { + "secondary": [ + "10f548" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "draft", + "length", + "measure", + "planning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f548", + "label": "Ruler Vertical", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H208c26.5 0 48 21.5 48 48V96H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v64H176c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48z" + } + }, + "free": [ + "solid" + ] + }, + "rupee-sign": { + "aliases": { + "names": [ + "rupee" + ], + "unicodes": { + "composite": [ + "20a8" + ], + "secondary": [ + "10f156" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Rupee Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f156", + "label": "Rupee Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256zm256.5 16.4c-.9 6 0 8.7 .4 9.8c.4 1.1 1.4 2.6 4.2 4.9c7.2 5.7 18.7 10 37.9 16.8l1.3 .5c16 5.6 38.7 13.6 55.7 28.1c9.5 8.1 17.9 18.6 23.1 32.3c5.1 13.7 6.1 28.5 3.8 44c-4.2 28.1-20.5 49.3-43.8 60.9c-22.1 11-48.1 12.5-73.2 8l-.2 0 0 0c-9.3-1.8-20.5-5.7-29.3-9c-6-2.3-12.6-4.9-17.7-6.9l0 0c-2.5-1-4.6-1.8-6.3-2.5c-16.5-6.4-24.6-25-18.2-41.4s25-24.6 41.4-18.2c2.6 1 5.2 2 7.9 3.1l0 0c4.8 1.9 9.8 3.9 15.4 6c8.8 3.3 15.3 5.4 18.7 6c15.7 2.8 26.7 .8 32.9-2.3c5-2.5 8-6 9.1-13c1-6.9 .2-10.5-.5-12.3c-.6-1.7-1.8-3.6-4.5-5.9c-6.9-5.8-18.2-10.4-36.9-17l-3-1.1c-15.5-5.4-37-13-53.3-25.9c-9.5-7.5-18.3-17.6-23.7-31c-5.4-13.4-6.6-28-4.4-43.2c8.5-57.1 67-78 116.9-68.9c6.9 1.3 27.3 5.8 35.4 8.4c16.9 5.2 26.3 23.2 21.1 40.1s-23.2 26.3-40.1 21.1c-4.7-1.4-22.3-5.5-27.9-6.5c-14.6-2.7-25.8-.4-32.6 3.2c-6.3 3.3-8.9 7.6-9.5 12z" + } + }, + "free": [ + "solid" + ] + }, + "rupiah-sign": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e23d", + "label": "Rupiah Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256zm256-96h80c61.9 0 112 50.1 112 112s-50.1 112-112 112H352v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V352 192c0-17.7 14.3-32 32-32zm80 160c26.5 0 48-21.5 48-48s-21.5-48-48-48H352v96h48z" + } + }, + "free": [ + "solid" + ] + }, + "rust": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e07a", + "label": "Rust", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M508.52,249.75,486.7,236.24c-.17-2-.34-3.93-.55-5.88l18.72-17.5a7.35,7.35,0,0,0-2.44-12.25l-24-9c-.54-1.88-1.08-3.78-1.67-5.64l15-20.83a7.35,7.35,0,0,0-4.79-11.54l-25.42-4.15c-.9-1.73-1.79-3.45-2.73-5.15l10.68-23.42a7.35,7.35,0,0,0-6.95-10.39l-25.82.91q-1.79-2.22-3.61-4.4L439,81.84A7.36,7.36,0,0,0,430.16,73L405,78.93q-2.17-1.83-4.4-3.61l.91-25.82a7.35,7.35,0,0,0-10.39-7L367.7,53.23c-1.7-.94-3.43-1.84-5.15-2.73L358.4,25.08a7.35,7.35,0,0,0-11.54-4.79L326,35.26c-1.86-.59-3.75-1.13-5.64-1.67l-9-24a7.35,7.35,0,0,0-12.25-2.44l-17.5,18.72c-1.95-.21-3.91-.38-5.88-.55L262.25,3.48a7.35,7.35,0,0,0-12.5,0L236.24,25.3c-2,.17-3.93.34-5.88.55L212.86,7.13a7.35,7.35,0,0,0-12.25,2.44l-9,24c-1.89.55-3.79,1.08-5.66,1.68l-20.82-15a7.35,7.35,0,0,0-11.54,4.79l-4.15,25.41c-1.73.9-3.45,1.79-5.16,2.73L120.88,42.55a7.35,7.35,0,0,0-10.39,7l.92,25.81c-1.49,1.19-3,2.39-4.42,3.61L81.84,73A7.36,7.36,0,0,0,73,81.84L78.93,107c-1.23,1.45-2.43,2.93-3.62,4.41l-25.81-.91a7.42,7.42,0,0,0-6.37,3.26,7.35,7.35,0,0,0-.57,7.13l10.66,23.41c-.94,1.7-1.83,3.43-2.73,5.16L25.08,153.6a7.35,7.35,0,0,0-4.79,11.54l15,20.82c-.59,1.87-1.13,3.77-1.68,5.66l-24,9a7.35,7.35,0,0,0-2.44,12.25l18.72,17.5c-.21,1.95-.38,3.91-.55,5.88L3.48,249.75a7.35,7.35,0,0,0,0,12.5L25.3,275.76c.17,2,.34,3.92.55,5.87L7.13,299.13a7.35,7.35,0,0,0,2.44,12.25l24,9c.55,1.89,1.08,3.78,1.68,5.65l-15,20.83a7.35,7.35,0,0,0,4.79,11.54l25.42,4.15c.9,1.72,1.79,3.45,2.73,5.14L42.56,391.12a7.35,7.35,0,0,0,.57,7.13,7.13,7.13,0,0,0,6.37,3.26l25.83-.91q1.77,2.22,3.6,4.4L73,430.16A7.36,7.36,0,0,0,81.84,439L107,433.07q2.18,1.83,4.41,3.61l-.92,25.82a7.35,7.35,0,0,0,10.39,6.95l23.43-10.68c1.69.94,3.42,1.83,5.14,2.73l4.15,25.42a7.34,7.34,0,0,0,11.54,4.78l20.83-15c1.86.6,3.76,1.13,5.65,1.68l9,24a7.36,7.36,0,0,0,12.25,2.44l17.5-18.72c1.95.21,3.92.38,5.88.55l13.51,21.82a7.35,7.35,0,0,0,12.5,0l13.51-21.82c2-.17,3.93-.34,5.88-.56l17.5,18.73a7.36,7.36,0,0,0,12.25-2.44l9-24c1.89-.55,3.78-1.08,5.65-1.68l20.82,15a7.34,7.34,0,0,0,11.54-4.78l4.15-25.42c1.72-.9,3.45-1.79,5.15-2.73l23.42,10.68a7.35,7.35,0,0,0,10.39-6.95l-.91-25.82q2.22-1.79,4.4-3.61L430.16,439a7.36,7.36,0,0,0,8.84-8.84L433.07,405q1.83-2.17,3.61-4.4l25.82.91a7.23,7.23,0,0,0,6.37-3.26,7.35,7.35,0,0,0,.58-7.13L458.77,367.7c.94-1.7,1.83-3.43,2.73-5.15l25.42-4.15a7.35,7.35,0,0,0,4.79-11.54l-15-20.83c.59-1.87,1.13-3.76,1.67-5.65l24-9a7.35,7.35,0,0,0,2.44-12.25l-18.72-17.5c.21-1.95.38-3.91.55-5.87l21.82-13.51a7.35,7.35,0,0,0,0-12.5Zm-151,129.08A13.91,13.91,0,0,0,341,389.51l-7.64,35.67A187.51,187.51,0,0,1,177,424.44l-7.64-35.66a13.87,13.87,0,0,0-16.46-10.68l-31.51,6.76a187.38,187.38,0,0,1-16.26-19.21H258.3c1.72,0,2.89-.29,2.89-1.91V309.55c0-1.57-1.17-1.91-2.89-1.91H213.47l.05-34.35H262c4.41,0,23.66,1.28,29.79,25.87,1.91,7.55,6.17,32.14,9.06,40,2.89,8.82,14.6,26.46,27.1,26.46H407a187.3,187.3,0,0,1-17.34,20.09Zm25.77,34.49A15.24,15.24,0,1,1,368,398.08h.44A15.23,15.23,0,0,1,383.24,413.32Zm-225.62-.68a15.24,15.24,0,1,1-15.25-15.25h.45A15.25,15.25,0,0,1,157.62,412.64ZM69.57,234.15l32.83-14.6a13.88,13.88,0,0,0,7.06-18.33L102.69,186h26.56V305.73H75.65A187.65,187.65,0,0,1,69.57,234.15ZM58.31,198.09a15.24,15.24,0,0,1,15.23-15.25H74a15.24,15.24,0,1,1-15.67,15.24Zm155.16,24.49.05-35.32h63.26c3.28,0,23.07,3.77,23.07,18.62,0,12.29-15.19,16.7-27.68,16.7ZM399,306.71c-9.8,1.13-20.63-4.12-22-10.09-5.78-32.49-15.39-39.4-30.57-51.4,18.86-11.95,38.46-29.64,38.46-53.26,0-25.52-17.49-41.59-29.4-49.48-16.76-11-35.28-13.23-40.27-13.23H116.32A187.49,187.49,0,0,1,221.21,70.06l23.47,24.6a13.82,13.82,0,0,0,19.6.44l26.26-25a187.51,187.51,0,0,1,128.37,91.43l-18,40.57A14,14,0,0,0,408,220.43l34.59,15.33a187.12,187.12,0,0,1,.4,32.54H423.71c-1.91,0-2.69,1.27-2.69,3.13v8.82C421,301,409.31,305.58,399,306.71ZM240,60.21A15.24,15.24,0,0,1,255.21,45h.45A15.24,15.24,0,1,1,240,60.21ZM436.84,214a15.24,15.24,0,1,1,0-30.48h.44a15.24,15.24,0,0,1-.44,30.48Z" + } + }, + "free": [ + "brands" + ] + }, + "s": { + "aliases": { + "unicodes": { + "composite": [ + "73" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter S", + "Latin Small Letter S", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "53", + "label": "S", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M99.1 105.4C79 114 68.2 127.2 65.2 144.8c-2.4 14.1-.7 23.2 2 29.4c2.8 6.3 7.9 12.4 16.7 18.6c19.2 13.4 48.3 22.1 84.9 32.5c1 .3 1.9 .6 2.9 .8c32.7 9.3 72 20.6 100.9 40.7c15.7 10.9 29.9 25.5 38.6 45.1c8.8 19.8 10.8 42 6.6 66.3c-7.3 42.5-35.3 71.7-71.8 87.3c-35.4 15.2-79.1 17.9-123.7 10.9l-.2 0 0 0c-24-3.9-62.7-17.1-87.6-25.6c-4.8-1.7-9.2-3.1-12.8-4.3C5.1 440.8-3.9 422.7 1.6 405.9s23.7-25.8 40.5-20.3c4.9 1.6 10.2 3.4 15.9 5.4c25.4 8.6 56.4 19.2 74.4 22.1c36.8 5.7 67.5 2.5 88.5-6.5c20.1-8.6 30.8-21.8 33.9-39.4c2.4-14.1 .7-23.2-2-29.4c-2.8-6.3-7.9-12.4-16.7-18.6c-19.2-13.4-48.3-22.1-84.9-32.5c-1-.3-1.9-.6-2.9-.8c-32.7-9.3-72-20.6-100.9-40.7c-15.7-10.9-29.9-25.5-38.6-45.1c-8.8-19.8-10.8-42-6.6-66.3l31.5 5.5L2.1 133.9C9.4 91.4 37.4 62.2 73.9 46.6c35.4-15.2 79.1-17.9 123.7-10.9c13 2 52.4 9.6 66.6 13.4c17.1 4.5 27.2 22.1 22.7 39.2s-22.1 27.2-39.1 22.7c-11.2-3-48.2-10.2-60.1-12l4.9-31.5-4.9 31.5c-36.9-5.8-67.5-2.5-88.6 6.5z" + } + }, + "free": [ + "solid" + ] + }, + "sack-dollar": { + "aliases": { + "unicodes": { + "composite": [ + "1f4b0" + ], + "secondary": [ + "10f81d" + ] + } + }, + "changes": [ + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "burlap", + "cash", + "dollar", + "money", + "money bag", + "moneybag", + "robber", + "santa", + "usd" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f81d", + "label": "Sack Dollar", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M320 96H192L144.6 24.9C137.5 14.2 145.1 0 157.9 0H354.1c12.8 0 20.4 14.2 13.3 24.9L320 96zM192 128H320c3.8 2.5 8.1 5.3 13 8.4C389.7 172.7 512 250.9 512 416c0 53-43 96-96 96H96c-53 0-96-43-96-96C0 250.9 122.3 172.7 179 136.4l0 0 0 0c4.8-3.1 9.2-5.9 13-8.4zm84 88c0-11-9-20-20-20s-20 9-20 20v14c-7.6 1.7-15.2 4.4-22.2 8.5c-13.9 8.3-25.9 22.8-25.8 43.9c.1 20.3 12 33.1 24.7 40.7c11 6.6 24.7 10.8 35.6 14l1.7 .5c12.6 3.8 21.8 6.8 28 10.7c5.1 3.2 5.8 5.4 5.9 8.2c.1 5-1.8 8-5.9 10.5c-5 3.1-12.9 5-21.4 4.7c-11.1-.4-21.5-3.9-35.1-8.5c-2.3-.8-4.7-1.6-7.2-2.4c-10.5-3.5-21.8 2.2-25.3 12.6s2.2 21.8 12.6 25.3c1.9 .6 4 1.3 6.1 2.1l0 0 0 0c8.3 2.9 17.9 6.2 28.2 8.4V424c0 11 9 20 20 20s20-9 20-20V410.2c8-1.7 16-4.5 23.2-9c14.3-8.9 25.1-24.1 24.8-45c-.3-20.3-11.7-33.4-24.6-41.6c-11.5-7.2-25.9-11.6-37.1-15l0 0-.7-.2c-12.8-3.9-21.9-6.7-28.3-10.5c-5.2-3.1-5.3-4.9-5.3-6.7c0-3.7 1.4-6.5 6.2-9.3c5.4-3.2 13.6-5.1 21.5-5c9.6 .1 20.2 2.2 31.2 5.2c10.7 2.8 21.6-3.5 24.5-14.2s-3.5-21.6-14.2-24.5c-6.5-1.7-13.7-3.4-21.1-4.7V216z" + } + }, + "free": [ + "solid" + ] + }, + "sack-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bag", + "burlap", + "rations" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e56a", + "label": "Sack Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 96H320l47.4-71.1C374.5 14.2 366.9 0 354.1 0H157.9c-12.8 0-20.4 14.2-13.3 24.9L192 96zm128 32H192c-3.8 2.5-8.1 5.3-13 8.4l0 0 0 0C122.3 172.7 0 250.9 0 416c0 53 43 96 96 96H416c53 0 96-43 96-96c0-165.1-122.3-243.3-179-279.6c-4.8-3.1-9.2-5.9-13-8.4zM289.9 336l47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47z" + } + }, + "free": [ + "solid" + ] + }, + "safari": { + "changes": [ + "4.4.0", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f267", + "label": "Safari", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M274.69,274.69l-37.38-37.38L166,346ZM256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8ZM411.85,182.79l14.78-6.13A8,8,0,0,1,437.08,181h0a8,8,0,0,1-4.33,10.46L418,197.57a8,8,0,0,1-10.45-4.33h0A8,8,0,0,1,411.85,182.79ZM314.43,94l6.12-14.78A8,8,0,0,1,331,74.92h0a8,8,0,0,1,4.33,10.45l-6.13,14.78a8,8,0,0,1-10.45,4.33h0A8,8,0,0,1,314.43,94ZM256,60h0a8,8,0,0,1,8,8V84a8,8,0,0,1-8,8h0a8,8,0,0,1-8-8V68A8,8,0,0,1,256,60ZM181,74.92a8,8,0,0,1,10.46,4.33L197.57,94a8,8,0,1,1-14.78,6.12l-6.13-14.78A8,8,0,0,1,181,74.92Zm-63.58,42.49h0a8,8,0,0,1,11.31,0L140,128.72A8,8,0,0,1,140,140h0a8,8,0,0,1-11.31,0l-11.31-11.31A8,8,0,0,1,117.41,117.41ZM60,256h0a8,8,0,0,1,8-8H84a8,8,0,0,1,8,8h0a8,8,0,0,1-8,8H68A8,8,0,0,1,60,256Zm40.15,73.21-14.78,6.13A8,8,0,0,1,74.92,331h0a8,8,0,0,1,4.33-10.46L94,314.43a8,8,0,0,1,10.45,4.33h0A8,8,0,0,1,100.15,329.21Zm4.33-136h0A8,8,0,0,1,94,197.57l-14.78-6.12A8,8,0,0,1,74.92,181h0a8,8,0,0,1,10.45-4.33l14.78,6.13A8,8,0,0,1,104.48,193.24ZM197.57,418l-6.12,14.78a8,8,0,0,1-14.79-6.12l6.13-14.78A8,8,0,1,1,197.57,418ZM264,444a8,8,0,0,1-8,8h0a8,8,0,0,1-8-8V428a8,8,0,0,1,8-8h0a8,8,0,0,1,8,8Zm67-6.92h0a8,8,0,0,1-10.46-4.33L314.43,418a8,8,0,0,1,4.33-10.45h0a8,8,0,0,1,10.45,4.33l6.13,14.78A8,8,0,0,1,331,437.08Zm63.58-42.49h0a8,8,0,0,1-11.31,0L372,383.28A8,8,0,0,1,372,372h0a8,8,0,0,1,11.31,0l11.31,11.31A8,8,0,0,1,394.59,394.59ZM286.25,286.25,110.34,401.66,225.75,225.75,401.66,110.34ZM437.08,331h0a8,8,0,0,1-10.45,4.33l-14.78-6.13a8,8,0,0,1-4.33-10.45h0A8,8,0,0,1,418,314.43l14.78,6.12A8,8,0,0,1,437.08,331ZM444,264H428a8,8,0,0,1-8-8h0a8,8,0,0,1,8-8h16a8,8,0,0,1,8,8h0A8,8,0,0,1,444,264Z" + } + }, + "free": [ + "brands" + ] + }, + "sailboat": { + "changes": [ + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dinghy", + "mast", + "sailboat", + "sailing", + "yacht" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e445", + "label": "Sailboat", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M251 16c0-7 4.5-13.2 11.2-15.3s13.9 .4 17.9 6.1l224 320c3.4 4.9 3.8 11.3 1.1 16.6s-8.2 8.6-14.2 8.6H267c-8.8 0-16-7.2-16-16V16zM207.1 96.5c7 1.9 11.9 8.2 11.9 15.5V336c0 8.8-7.2 16-16 16H75c-5.7 0-11-3-13.8-8s-2.9-11-.1-16l128-224c3.6-6.3 11-9.4 18-7.5zM.7 404.3C-2.2 394.1 5.5 384 16.1 384H549.9c10.6 0 18.3 10.1 15.4 20.3l-4 14.3C545.7 473.9 495.4 512 438 512H128C70.6 512 20.3 473.9 4.7 418.7l-4-14.3z" + } + }, + "free": [ + "solid" + ] + }, + "salesforce": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f83b", + "label": "Salesforce", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M248.89 245.64h-26.35c.69-5.16 3.32-14.12 13.64-14.12 6.75 0 11.97 3.82 12.71 14.12zm136.66-13.88c-.47 0-14.11-1.77-14.11 20s13.63 20 14.11 20c13 0 14.11-13.54 14.11-20 0-21.76-13.66-20-14.11-20zm-243.22 23.76a8.63 8.63 0 0 0-3.29 7.29c0 4.78 2.08 6.05 3.29 7.05 4.7 3.7 15.07 2.12 20.93.95v-16.94c-5.32-1.07-16.73-1.96-20.93 1.65zM640 232c0 87.58-80 154.39-165.36 136.43-18.37 33-70.73 70.75-132.2 41.63-41.16 96.05-177.89 92.18-213.81-5.17C8.91 428.78-50.19 266.52 53.36 205.61 18.61 126.18 76 32 167.67 32a124.24 124.24 0 0 1 98.56 48.7c20.7-21.4 49.4-34.81 81.15-34.81 42.34 0 79 23.52 98.8 58.57C539 63.78 640 132.69 640 232zm-519.55 31.8c0-11.76-11.69-15.17-17.87-17.17-5.27-2.11-13.41-3.51-13.41-8.94 0-9.46 17-6.66 25.17-2.12 0 0 1.17.71 1.64-.47.24-.7 2.36-6.58 2.59-7.29a1.13 1.13 0 0 0-.7-1.41c-12.33-7.63-40.7-8.51-40.7 12.7 0 12.46 11.49 15.44 17.88 17.17 4.72 1.58 13.17 3 13.17 8.7 0 4-3.53 7.06-9.17 7.06a31.76 31.76 0 0 1-19-6.35c-.47-.23-1.42-.71-1.65.71l-2.4 7.47c-.47.94.23 1.18.23 1.41 1.75 1.4 10.3 6.59 22.82 6.59 13.17 0 21.4-7.06 21.4-18.11zm32-42.58c-10.13 0-18.66 3.17-21.4 5.18a1 1 0 0 0-.24 1.41l2.59 7.06a1 1 0 0 0 1.18.7c.65 0 6.8-4 16.93-4 4 0 7.06.71 9.18 2.36 3.6 2.8 3.06 8.29 3.06 10.58-4.79-.3-19.11-3.44-29.41 3.76a16.92 16.92 0 0 0-7.34 14.54c0 5.9 1.51 10.4 6.59 14.35 12.24 8.16 36.28 2 38.1 1.41 1.58-.32 3.53-.66 3.53-1.88v-33.88c.04-4.61.32-21.64-22.78-21.64zM199 200.24a1.11 1.11 0 0 0-1.18-1.18H188a1.11 1.11 0 0 0-1.17 1.18v79a1.11 1.11 0 0 0 1.17 1.18h9.88a1.11 1.11 0 0 0 1.18-1.18zm55.75 28.93c-2.1-2.31-6.79-7.53-17.65-7.53-3.51 0-14.16.23-20.7 8.94-6.35 7.63-6.58 18.11-6.58 21.41 0 3.12.15 14.26 7.06 21.17 2.64 2.91 9.06 8.23 22.81 8.23 10.82 0 16.47-2.35 18.58-3.76.47-.24.71-.71.24-1.88l-2.35-6.83a1.26 1.26 0 0 0-1.41-.7c-2.59.94-6.35 2.82-15.29 2.82-17.42 0-16.85-14.74-16.94-16.7h37.17a1.23 1.23 0 0 0 1.17-.94c-.29 0 2.07-14.7-6.09-24.23zm36.69 52.69c13.17 0 21.41-7.06 21.41-18.11 0-11.76-11.7-15.17-17.88-17.17-4.14-1.66-13.41-3.38-13.41-8.94 0-3.76 3.29-6.35 8.47-6.35a38.11 38.11 0 0 1 16.7 4.23s1.18.71 1.65-.47c.23-.7 2.35-6.58 2.58-7.29a1.13 1.13 0 0 0-.7-1.41c-7.91-4.9-16.74-4.94-20.23-4.94-12 0-20.46 7.29-20.46 17.64 0 12.46 11.48 15.44 17.87 17.17 6.11 2 13.17 3.26 13.17 8.7 0 4-3.52 7.06-9.17 7.06a31.8 31.8 0 0 1-19-6.35 1 1 0 0 0-1.65.71l-2.35 7.52c-.47.94.23 1.18.23 1.41 1.72 1.4 10.33 6.59 22.79 6.59zM357.09 224c0-.71-.24-1.18-1.18-1.18h-11.76c0-.14.94-8.94 4.47-12.47 4.16-4.15 11.76-1.64 12-1.64 1.17.47 1.41 0 1.64-.47l2.83-7.77c.7-.94 0-1.17-.24-1.41-5.09-2-17.35-2.87-24.46 4.24-5.48 5.48-7 13.92-8 19.52h-8.47a1.28 1.28 0 0 0-1.17 1.18l-1.42 7.76c0 .7.24 1.17 1.18 1.17h8.23c-8.51 47.9-8.75 50.21-10.35 55.52-1.08 3.62-3.29 6.9-5.88 7.76-.09 0-3.88 1.68-9.64-.24 0 0-.94-.47-1.41.71-.24.71-2.59 6.82-2.83 7.53s0 1.41.47 1.41c5.11 2 13 1.77 17.88 0 6.28-2.28 9.72-7.89 11.53-12.94 2.75-7.71 2.81-9.79 11.76-59.74h12.23a1.29 1.29 0 0 0 1.18-1.18zm53.39 16c-.56-1.68-5.1-18.11-25.17-18.11-15.25 0-23 10-25.16 18.11-1 3-3.18 14 0 23.52.09.3 4.41 18.12 25.16 18.12 14.95 0 22.9-9.61 25.17-18.12 3.21-9.61 1.01-20.52 0-23.52zm45.4-16.7c-5-1.65-16.62-1.9-22.11 5.41v-4.47a1.11 1.11 0 0 0-1.18-1.17h-9.4a1.11 1.11 0 0 0-1.18 1.17v55.28a1.12 1.12 0 0 0 1.18 1.18h9.64a1.12 1.12 0 0 0 1.18-1.18v-27.77c0-2.91.05-11.37 4.46-15.05 4.9-4.9 12-3.36 13.41-3.06a1.57 1.57 0 0 0 1.41-.94 74 74 0 0 0 3.06-8 1.16 1.16 0 0 0-.47-1.41zm46.81 54.1l-2.12-7.29c-.47-1.18-1.41-.71-1.41-.71-4.23 1.82-10.15 1.89-11.29 1.89-4.64 0-17.17-1.13-17.17-19.76 0-6.23 1.85-19.76 16.47-19.76a34.85 34.85 0 0 1 11.52 1.65s.94.47 1.18-.71c.94-2.59 1.64-4.47 2.59-7.53.23-.94-.47-1.17-.71-1.17-11.59-3.87-22.34-2.53-27.76 0-1.59.74-16.23 6.49-16.23 27.52 0 2.9-.58 30.11 28.94 30.11a44.45 44.45 0 0 0 15.52-2.83 1.3 1.3 0 0 0 .47-1.42zm53.87-39.52c-.8-3-5.37-16.23-22.35-16.23-16 0-23.52 10.11-25.64 18.59a38.58 38.58 0 0 0-1.65 11.76c0 25.87 18.84 29.4 29.88 29.4 10.82 0 16.46-2.35 18.58-3.76.47-.24.71-.71.24-1.88l-2.36-6.83a1.26 1.26 0 0 0-1.41-.7c-2.59.94-6.35 2.82-15.29 2.82-17.42 0-16.85-14.74-16.93-16.7h37.16a1.25 1.25 0 0 0 1.18-.94c-.24-.01.94-7.07-1.41-15.54zm-23.29-6.35c-10.33 0-13 9-13.64 14.12H546c-.88-11.92-7.62-14.13-12.73-14.13z" + } + }, + "free": [ + "brands" + ] + }, + "sass": { + "changes": [ + "5.0.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41e", + "label": "Sass", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M301.84 378.92c-.3.6-.6 1.08 0 0zm249.13-87a131.16 131.16 0 0 0-58 13.5c-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.3-6.7-24 2.5-25.29 5.9a122.83 122.83 0 0 0-5.3 19.1c-2.3 11.7-25.79 53.5-39.09 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.29-6.7-24 2.5-25.3 5.9-2.7 11.4-5.3 19.1-33.89 77.3-42.08 95.4c-4.2 9.2-7.8 16.6-10.4 21.6-.4.8-.7 1.3-.9 1.7.3-.5.5-1 .5-.8-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4.3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2s-1.4 2-1.4 2 10.1-42.4-19.39-42.4c-18.4 0-44 20.2-56.58 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.79-38.2-101.87-65.2-99.07-116.5 1-18.7 7.5-67.8 127.07-127.4 98-48.8 176.35-35.4 189.84-5.6 19.4 42.5-41.89 121.6-143.66 133-38.79 4.3-59.18-10.7-64.28-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.79 28.9 18.7 6.1 64.18 9.5 119.17-11.8 61.78-23.8 109.87-90.1 95.77-145.6C386.52 18.32 293-.18 204.57 31.22c-52.69 18.7-109.67 48.1-150.66 86.4-48.69 45.6-56.48 85.3-53.28 101.9 11.39 58.9 92.57 97.3 125.06 125.7-1.6.9-3.1 1.7-4.5 2.5-16.29 8.1-78.18 40.5-93.67 74.7-17.5 38.8 2.9 66.6 16.29 70.4 41.79 11.6 84.58-9.3 107.57-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.29-4.9 16.39-9.4 23.49-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.49 5 15.39 5 13.8 0 20-11.4 26.89-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.39 0 18.79-12.1 23-18.3v.1s.2-.4.7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.59-46 16.2-31.8 31.69-71.5 31.69-71.5a201.24 201.24 0 0 0 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2a.31.31 0 0 0 .1.2c-3 4-6.4 8.3-9.9 12.5-12.79 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.69 2.5 11.5-.8 19.6-3.6 23.5-5.4a82.2 82.2 0 0 0 20.19-10.6c12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5C434.8 301.72 450.1 270 450.1 270a201.24 201.24 0 0 0 6.2 25.8c2.4 8.1 7.09 17 11.39 25.7-18.59 15.1-30.09 32.6-34.09 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5a79.46 79.46 0 0 0 21.59-11.1c12.5-9.2 24.59-22.1 23.79-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.09-10.2 62.09-7.2 55.68 6.5 66.58 41.3 64.48 55.8s-13.8 22.6-17.7 25-5.1 3.3-4.8 5.1c.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.19-11.8 30.29-38.7 1.6-34-31.09-71.4-89-71.1zm-429.18 144.7c-18.39 20.1-44.19 27.7-55.28 21.3C54.61 451 59.31 421.42 82 400c13.8-13 31.59-25 43.39-32.4 2.7-1.6 6.6-4 11.4-6.9.8-.5 1.2-.7 1.2-.7.9-.6 1.9-1.1 2.9-1.7 8.29 30.4.3 57.2-19.1 78.3zm134.36-91.4c-6.4 15.7-19.89 55.7-28.09 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.09-11.3 21.19-14.9 23.79-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.89-13.9 0 .5.1 1 .1 1.6-.13 17.9-17.32 30-25.12 34.8zm85.58-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.59-15.3 19-24.5a36.18 36.18 0 0 1 1.9 10.8c-.1 22.5-16.2 30.9-25.89 34.4z" + } + }, + "free": [ + "brands" + ] + }, + "satellite": { + "aliases": { + "unicodes": { + "composite": [ + "1f6f0" + ], + "secondary": [ + "10f7bf" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.1", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "communications", + "hardware", + "orbit", + "satellite", + "space" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7bf", + "label": "Satellite", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M233 7c-9.4-9.4-24.6-9.4-33.9 0l-96 96c-9.4 9.4-9.4 24.6 0 33.9l89.4 89.4-15.5 15.5C152.3 230.4 124.9 224 96 224c-31.7 0-61.5 7.7-87.8 21.2c-9 4.7-10.3 16.7-3.1 23.8L112.7 376.7 96.3 393.1c-2.6-.7-5.4-1.1-8.3-1.1c-17.7 0-32 14.3-32 32s14.3 32 32 32s32-14.3 32-32c0-2.9-.4-5.6-1.1-8.3l16.4-16.4L242.9 506.9c7.2 7.2 19.2 5.9 23.8-3.1C280.3 477.5 288 447.7 288 416c0-28.9-6.4-56.3-17.8-80.9l15.5-15.5L375 409c9.4 9.4 24.6 9.4 33.9 0l96-96c9.4-9.4 9.4-24.6 0-33.9l-89.4-89.4 55-55c12.5-12.5 12.5-32.8 0-45.3l-48-48c-12.5-12.5-32.8-12.5-45.3 0l-55 55L233 7zm159 351l-72.4-72.4 62.1-62.1L454.1 296 392 358.1zM226.3 192.4L153.9 120 216 57.9l72.4 72.4-62.1 62.1z" + } + }, + "free": [ + "solid" + ] + }, + "satellite-dish": { + "aliases": { + "unicodes": { + "composite": [ + "1f4e1" + ], + "secondary": [ + "10f7c0" + ] + } + }, + "changes": [ + "5.6.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "SETI", + "antenna", + "communications", + "dish", + "hardware", + "radar", + "receiver", + "satellite", + "satellite antenna", + "saucer", + "signal", + "space" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7c0", + "label": "Satellite Dish", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 32c0-17.7 14.3-32 32-32C383.1 0 512 128.9 512 288c0 17.7-14.3 32-32 32s-32-14.3-32-32C448 164.3 347.7 64 224 64c-17.7 0-32-14.3-32-32zM60.6 220.6L164.7 324.7l28.4-28.4c-.7-2.6-1.1-5.4-1.1-8.3c0-17.7 14.3-32 32-32s32 14.3 32 32s-14.3 32-32 32c-2.9 0-5.6-.4-8.3-1.1l-28.4 28.4L291.4 451.4c14.5 14.5 11.8 38.8-7.3 46.3C260.5 506.9 234.9 512 208 512C93.1 512 0 418.9 0 304c0-26.9 5.1-52.5 14.4-76.1c7.5-19 31.8-21.8 46.3-7.3zM224 96c106 0 192 86 192 192c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-70.7-57.3-128-128-128c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "scale-balanced": { + "aliases": { + "names": [ + "balance-scale" + ], + "unicodes": { + "composite": [ + "2696" + ], + "secondary": [ + "10f24e" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Libra", + "balance", + "balance scale", + "balanced", + "justice", + "law", + "legal", + "measure", + "rule", + "scale", + "weight", + "zodiac" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f24e", + "label": "Scale Balanced", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M384 32H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H398.4c-5.2 25.8-22.9 47.1-46.4 57.3V448H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 128c-17.7 0-32-14.3-32-32s14.3-32 32-32H288V153.3c-23.5-10.3-41.2-31.6-46.4-57.3H128c-17.7 0-32-14.3-32-32s14.3-32 32-32H256c14.6-19.4 37.8-32 64-32s49.4 12.6 64 32zm55.6 288H584.4L512 195.8 439.6 320zM512 416c-62.9 0-115.2-34-126-78.9c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C627.2 382 574.9 416 512 416zM126.8 195.8L54.4 320H199.3L126.8 195.8zM.9 337.1c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C242 382 189.7 416 126.8 416S11.7 382 .9 337.1z" + } + }, + "free": [ + "solid" + ] + }, + "scale-unbalanced": { + "aliases": { + "names": [ + "balance-scale-left" + ], + "unicodes": { + "secondary": [ + "10f515" + ] + } + }, + "changes": [ + "5.0.13", + "5.9.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "justice", + "legal", + "measure", + "unbalanced", + "weight" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f515", + "label": "Scale Unbalanced", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M521.1 62.4c16.8-5.6 25.8-23.7 20.2-40.5S517.6-3.9 500.9 1.6l-113 37.7C374 15.8 348.3 0 319 0c-44.2 0-80 35.8-80 80c0 3 .2 5.9 .5 8.8L116.9 129.6c-16.8 5.6-25.8 23.7-20.2 40.5s23.7 25.8 40.5 20.2l135.5-45.2c4.5 3.2 9.3 5.9 14.4 8.2V480c0 17.7 14.3 32 32 32H511c17.7 0 32-14.3 32-32s-14.3-32-32-32H351V153.3c21-9.2 37.2-27 44.2-49l125.9-42zM438.6 288L511 163.8 583.4 288H438.6zM511 384c62.9 0 115.2-34 126-78.9c2.6-11-1-22.3-6.7-32.1L535.1 109.8c-5-8.6-14.2-13.8-24.1-13.8s-19.1 5.3-24.1 13.8L391.7 273.1c-5.7 9.8-9.3 21.1-6.7 32.1C395.8 350 448.1 384 511 384zM128.2 291.8L200.6 416H55.7l72.4-124.2zM2.2 433.1C13 478 65.3 512 128.2 512s115.2-34 126-78.9c2.6-11-1-22.3-6.7-32.1L152.2 237.8c-5-8.6-14.2-13.8-24.1-13.8s-19.1 5.3-24.1 13.8L8.9 401.1c-5.7 9.8-9.3 21.1-6.7 32.1z" + } + }, + "free": [ + "solid" + ] + }, + "scale-unbalanced-flip": { + "aliases": { + "names": [ + "balance-scale-right" + ], + "unicodes": { + "secondary": [ + "10f516" + ] + } + }, + "changes": [ + "5.0.13", + "5.9.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "justice", + "legal", + "measure", + "unbalanced", + "weight" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f516", + "label": "Scale Unbalanced Flip", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M116.9 62.4c-16.8-5.6-25.8-23.7-20.2-40.5s23.7-25.8 40.5-20.2l113 37.7C264 15.8 289.7 0 319 0c44.2 0 80 35.8 80 80c0 3-.2 5.9-.5 8.8l122.6 40.9c16.8 5.6 25.8 23.7 20.2 40.5s-23.7 25.8-40.5 20.2L365.4 145.2c-4.5 3.2-9.3 5.9-14.4 8.2V480c0 17.7-14.3 32-32 32H127c-17.7 0-32-14.3-32-32s14.3-32 32-32H287V153.3c-21-9.2-37.2-27-44.2-49l-125.9-42zM199.4 288L127 163.8 54.6 288H199.4zM127 384C64.1 384 11.8 350 1 305.1c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C242.2 350 189.9 384 127 384zm382.8-92.2L437.4 416H582.3L509.8 291.8zm126 141.3C625 478 572.7 512 509.8 512s-115.2-34-126-78.9c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1z" + } + }, + "free": [ + "solid" + ] + }, + "schlix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ea", + "label": "SCHLIX", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2.4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z" + } + }, + "free": [ + "brands" + ] + }, + "school": { + "aliases": { + "unicodes": { + "composite": [ + "1f3eb" + ], + "secondary": [ + "10f549" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "education", + "learn", + "school", + "student", + "teacher" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f549", + "label": "School", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H592c26.5 0 48-21.5 48-48V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM256 416c0-35.3 28.7-64 64-64s64 28.7 64 64v96H256V416zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm400 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H512c-8.8 0-16-7.2-16-16V208zM96 320h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm400 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H512c-8.8 0-16-7.2-16-16V336zM232 176a88 88 0 1 1 176 0 88 88 0 1 1 -176 0zm88-48c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "school-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "not affected", + "ok", + "okay", + "schoolhouse" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e56b", + "label": "School Circle Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H320v0H256V416c0-35.3 28.7-64 64-64l.3 0h.5c3.4-37.7 18.7-72.1 42.2-99.1C350.2 260 335.6 264 320 264c-48.6 0-88-39.4-88-88s39.4-88 88-88s88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4c29-21 64.6-33.4 103.1-33.4c59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM320 128c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16zM640 368a144 144 0 1 0 -288 0 144 144 0 1 0 288 0zm-99.3-43.3c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6l-72 72c-6.2 6.2-16.4 6.2-22.6 0l-40-40c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L480 385.4l60.7-60.7z" + } + }, + "free": [ + "solid" + ] + }, + "school-circle-exclamation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "schoolhouse" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e56c", + "label": "School Circle Exclamation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H320v0H256V416c0-35.3 28.7-64 64-64l.3 0h.5c3.4-37.7 18.7-72.1 42.2-99.1C350.2 260 335.6 264 320 264c-48.6 0-88-39.4-88-88s39.4-88 88-88s88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4c29-21 64.6-33.4 103.1-33.4c59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM320 128c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "school-circle-xmark": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "destroy", + "schoolhouse" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e56d", + "label": "School Circle Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M337.8 5.4C327-1.8 313-1.8 302.2 5.4L166.3 96H48C21.5 96 0 117.5 0 144V464c0 26.5 21.5 48 48 48H320v0H256V416c0-35.3 28.7-64 64-64l.3 0h.5c3.4-37.7 18.7-72.1 42.2-99.1C350.2 260 335.6 264 320 264c-48.6 0-88-39.4-88-88s39.4-88 88-88s88 39.4 88 88c0 18.3-5.6 35.3-15.1 49.4c29-21 64.6-33.4 103.1-33.4c59.5 0 112.1 29.6 144 74.8V144c0-26.5-21.5-48-48-48H473.7L337.8 5.4zM96 192h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V208c0-8.8 7.2-16 16-16zm0 128h32c8.8 0 16 7.2 16 16v64c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zM320 128c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V144c0-8.8-7.2-16-16-16zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm22.6-144l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L496 390.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L473.4 368l-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L496 345.4l36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L518.6 368z" + } + }, + "free": [ + "solid" + ] + }, + "school-flag": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "educate", + "flag", + "school", + "schoolhouse" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e56e", + "label": "School Flag", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 0H400c8.8 0 16 7.2 16 16V80c0 8.8-7.2 16-16 16H320.7l89.6 64H512c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H336V400c0-26.5-21.5-48-48-48s-48 21.5-48 48V512H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64H165.7L256 95.5V32c0-17.7 14.3-32 32-32zm48 240a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM80 224c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H80zm368 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V240c0-8.8-7.2-16-16-16H464c-8.8 0-16 7.2-16 16zM80 352c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H80zm384 0c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H464z" + } + }, + "free": [ + "solid" + ] + }, + "school-lock": { + "changes": [ + "6.1.0", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "closed", + "lockdown", + "quarantine", + "schoolhouse" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e56f", + "label": "School Lock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M302.2 5.4c10.7-7.2 24.8-7.2 35.5 0L473.7 96H592c26.5 0 48 21.5 48 48V272c0-61.9-50.1-112-112-112s-112 50.1-112 112v24.6c-19.1 11.1-32 31.7-32 55.4H320.3l-.3 0c-35.3 0-64 28.7-64 64v96h64v0H48c-26.5 0-48-21.5-48-48V144c0-26.5 21.5-48 48-48H166.3L302.2 5.4zM80 208v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V208c0-8.8-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zm0 128v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V336c0-8.8-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zm240-72a88 88 0 1 0 0-176 88 88 0 1 0 0 176zm16-120v16h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H320c-8.8 0-16-7.2-16-16V144c0-8.8 7.2-16 16-16s16 7.2 16 16zm192 96c-17.7 0-32 14.3-32 32v48h64V272c0-17.7-14.3-32-32-32zm-80 32c0-44.2 35.8-80 80-80s80 35.8 80 80v48c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H448c-17.7 0-32-14.3-32-32V352c0-17.7 14.3-32 32-32V272z" + } + }, + "free": [ + "solid" + ] + }, + "scissors": { + "aliases": { + "names": [ + "cut" + ], + "unicodes": { + "composite": [ + "2700", + "2702", + "2704" + ], + "secondary": [ + "10f0c4" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Safety Scissors", + "White Scissors", + "clip", + "cutting", + "scissors", + "snip", + "tool" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c4", + "label": "Scissors", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 192l-39.5-39.5c4.9-12.6 7.5-26.2 7.5-40.5C224 50.1 173.9 0 112 0S0 50.1 0 112s50.1 112 112 112c14.3 0 27.9-2.7 40.5-7.5L192 256l-39.5 39.5c-12.6-4.9-26.2-7.5-40.5-7.5C50.1 288 0 338.1 0 400s50.1 112 112 112s112-50.1 112-112c0-14.3-2.7-27.9-7.5-40.5L499.2 76.8c7.1-7.1 7.1-18.5 0-25.6c-28.3-28.3-74.1-28.3-102.4 0L256 192zm22.6 150.6L396.8 460.8c28.3 28.3 74.1 28.3 102.4 0c7.1-7.1 7.1-18.5 0-25.6L342.6 278.6l-64 64zM64 112a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm48 240a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + }, + "free": [ + "solid" + ] + }, + "screenpal": { + "changes": [ + "6.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e570", + "label": "Screenpal", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M233.5 22.49C233.5 10.07 243.6 0 256 0C268.4 0 278.5 10.07 278.5 22.49C278.5 34.91 268.4 44.98 256 44.98C243.6 44.98 233.5 34.91 233.5 22.49zM313.4 259C313.4 290.7 287.7 316.4 256 316.4C224.3 316.4 198.6 290.7 198.6 259C198.6 227.3 224.3 201.6 256 201.6C287.7 201.6 313.4 227.3 313.4 259zM337.2 350C359.5 330.1 373.7 302.7 377.1 273H496.6C493.1 334.4 466.2 392.2 421.4 434.4C376.7 476.6 317.5 500.2 256 500.2C194.5 500.2 135.3 476.6 90.56 434.4C45.83 392.2 18.94 334.4 15.39 273H135.1C138.5 302.7 152.7 330.1 175 350C197.3 369.9 226.2 380.9 256.1 380.9C285.1 380.9 314.8 369.9 337.2 350zM73.14 140.3C73.54 152.7 63.81 163.1 51.39 163.5C38.97 163.9 28.59 154.2 28.18 141.8C27.78 129.3 37.52 118.9 49.94 118.5C62.35 118.1 72.74 127.9 73.14 140.3zM438.9 141C438.9 128.6 448.9 118.5 461.4 118.5C473.8 118.5 483.8 128.6 483.8 141C483.8 153.5 473.8 163.5 461.4 163.5C448.9 163.5 438.9 153.5 438.9 141zM317.9 95.27C300.6 109.1 278.7 118.1 256 118.1C233.3 118.1 211.4 109.1 194.1 95.27C176.8 80.55 165.3 60.18 161.7 37.78C176.8 31.37 192.5 26.52 208.6 23.31C208.6 35.88 213.6 47.93 222.5 56.82C231.4 65.7 243.4 70.7 256 70.7C268.6 70.7 280.6 65.7 289.5 56.82C298.4 47.93 303.4 35.88 303.4 23.31C319.5 26.52 335.2 31.37 350.3 37.78C346.7 60.18 335.2 80.55 317.9 95.27H317.9zM82.78 231C61.42 238.6 38.06 238.4 16.86 230.4C18.82 214.1 22.46 198.1 27.71 182.5C33.1 185.6 39.05 187.6 45.22 188.5C51.39 189.3 57.67 188.9 63.68 187.3C69.69 185.6 75.33 182.9 80.27 179.1C85.21 175.3 89.36 170.6 92.47 165.2C95.58 159.8 97.61 153.8 98.42 147.7C99.23 141.5 98.83 135.2 97.22 129.2C95.61 123.2 92.83 117.6 89.04 112.6C85.25 107.7 80.53 103.5 75.14 100.4C85.96 88.11 98.01 76.94 111.1 67.07C128.7 81.42 140.6 101.6 144.7 123.9C148.8 146.2 144.8 169.3 133.5 188.9C122.1 208.5 104.1 223.4 82.78 231V231zM429.2 231.1C407.9 223.5 389.9 208.5 378.5 188.9C367.2 169.3 363.3 146.2 367.4 123.9C371.5 101.7 383.4 81.54 400.9 67.19C414 77.04 426.1 88.21 436.9 100.5C426.2 106.9 418.5 117.2 415.4 129.3C412.2 141.3 413.1 154.1 420.2 164.9C426.4 175.7 436.6 183.6 448.6 186.9C460.6 190.2 473.5 188.6 484.3 182.6C489.6 198.1 493.2 214.2 495.2 230.4C473.1 238.5 450.6 238.7 429.2 231.1L429.2 231.1z" + } + }, + "free": [ + "brands" + ] + }, + "screwdriver": { + "aliases": { + "unicodes": { + "composite": [ + "1fa9b" + ], + "secondary": [ + "10f54a" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "fix", + "mechanic", + "repair", + "screw", + "screwdriver", + "settings", + "tool" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f54a", + "label": "Screwdriver", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M465 7c-8.5-8.5-22-9.4-31.6-2.1l-104 80c-5.9 4.5-9.4 11.6-9.4 19v54.1l-85.6 85.6c6.7 4.2 13 9.3 18.8 15.1s10.9 12.2 15.1 18.8L353.9 192H408c7.5 0 14.5-3.5 19-9.4l80-104c7.4-9.6 6.5-23.1-2.1-31.6L465 7zM121.4 281.4l-112 112c-12.5 12.5-12.5 32.8 0 45.3l64 64c12.5 12.5 32.8 12.5 45.3 0l112-112c30.2-30.2 30.2-79.1 0-109.3s-79.1-30.2-109.3 0z" + } + }, + "free": [ + "solid" + ] + }, + "screwdriver-wrench": { + "aliases": { + "names": [ + "tools" + ], + "unicodes": { + "secondary": [ + "10f7d9" + ] + } + }, + "changes": [ + "5.6.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "fix", + "repair", + "screwdriver", + "settings", + "tools", + "wrench" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7d9", + "label": "Screwdriver Wrench", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M78.6 5C69.1-2.4 55.6-1.5 47 7L7 47c-8.5 8.5-9.4 22-2.1 31.6l80 104c4.5 5.9 11.6 9.4 19 9.4h54.1l109 109c-14.7 29-10 65.4 14.3 89.6l112 112c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-112-112c-24.2-24.2-60.6-29-89.6-14.3l-109-109V104c0-7.5-3.5-14.5-9.4-19L78.6 5zM19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L233.7 374.3c-7.8-20.9-9-43.6-3.6-65.1l-61.7-61.7L19.9 396.1zM512 144c0-10.5-1.1-20.7-3.2-30.5c-2.4-11.2-16.1-14.1-24.2-6l-63.9 63.9c-3 3-7.1 4.7-11.3 4.7H352c-8.8 0-16-7.2-16-16V102.6c0-4.2 1.7-8.3 4.7-11.3l63.9-63.9c8.1-8.1 5.2-21.8-6-24.2C388.7 1.1 378.5 0 368 0C288.5 0 224 64.5 224 144l0 .8 85.3 85.3c36-9.1 75.8 .5 104 28.7L429 274.5c49-23 83-72.8 83-130.5zM56 432a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + }, + "free": [ + "solid" + ] + }, + "scribd": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f28a", + "label": "Scribd", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9.6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9.2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z" + } + }, + "free": [ + "brands" + ] + }, + "scroll": { + "aliases": { + "unicodes": { + "composite": [ + "1f4dc" + ], + "secondary": [ + "10f70e" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "announcement", + "d&d", + "dnd", + "fantasy", + "paper", + "script", + "scroll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f70e", + "label": "Scroll", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 80v48c0 17.7 14.3 32 32 32H48 96V80c0-26.5-21.5-48-48-48S0 53.5 0 80zM112 32c10 13.4 16 30 16 48V384c0 35.3 28.7 64 64 64s64-28.7 64-64v-5.3c0-32.4 26.3-58.7 58.7-58.7H480V128c0-53-43-96-96-96H112zM464 480c61.9 0 112-50.1 112-112c0-8.8-7.2-16-16-16H314.7c-14.7 0-26.7 11.9-26.7 26.7V384c0 53-43 96-96 96H368h96z" + } + }, + "free": [ + "solid" + ] + }, + "scroll-torah": { + "aliases": { + "names": [ + "torah" + ], + "unicodes": { + "secondary": [ + "10f6a0" + ] + } + }, + "changes": [ + "5.3.0", + "5.7.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "book", + "jewish", + "judaism", + "religion", + "scroll" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6a0", + "label": "Scroll Torah", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 480V32C96 14.3 74.5 0 48 0S0 14.3 0 32V480c0 17.7 21.5 32 48 32s48-14.3 48-32zM512 32H128V480H512V32zM592 0c-26.5 0-48 14.3-48 32V480c0 17.7 21.5 32 48 32s48-14.3 48-32V32c0-17.7-21.5-32-48-32zM196 313.7c0-3.2 .9-6.4 2.5-9.2L226.7 256l-28.3-48.5c-1.6-2.8-2.5-6-2.5-9.2c0-10.1 8.2-18.3 18.3-18.3H271l31.4-53.9c3.6-6.3 10.3-10.1 17.6-10.1s13.9 3.8 17.6 10.1L369 180h56.7c10.1 0 18.3 8.2 18.3 18.3c0 3.2-.9 6.4-2.5 9.2L413.3 256l28.3 48.5c1.6 2.8 2.5 6 2.5 9.2c0 10.1-8.2 18.3-18.3 18.3H369l-31.4 53.9c-3.6 6.3-10.3 10.1-17.6 10.1s-13.9-3.8-17.6-10.1L271 332H214.3c-10.1 0-18.3-8.2-18.3-18.3zm124 54.7L341.2 332H298.8L320 368.4zM254.5 256l30.3 52h70.4l30.3-52-30.3-52H284.8l-30.3 52zm144.9 23.8L383 308h32.8l-16.4-28.2zM415.8 204H383l16.4 28.2L415.8 204zM320 143.6L298.8 180h42.4L320 143.6zM224.2 204l16.4 28.2L257 204H224.2zM257 308l-16.4-28.2L224.2 308H257z" + } + }, + "free": [ + "solid" + ] + }, + "sd-card": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7c2" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "image", + "memory", + "photo", + "save" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7c2", + "label": "Sd Card", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M320 0H141.3C124.3 0 108 6.7 96 18.7L18.7 96C6.7 108 0 124.3 0 141.3V448c0 35.3 28.7 64 64 64H320c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64zM160 88v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24zm80 0v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24zm80 0v48c0 13.3-10.7 24-24 24s-24-10.7-24-24V88c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + }, + "free": [ + "solid" + ] + }, + "searchengin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3eb", + "label": "Searchengin", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 460, + 512 + ], + "width": 460, + "height": 512, + "path": "M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z" + } + }, + "free": [ + "brands" + ] + }, + "section": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Section Sign", + "law", + "legal", + "silcrow" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e447", + "label": "Section", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M64.9 96C67.1 84.4 73.7 76.2 86 70.6c13.8-6.2 34.8-8.9 61.2-4.5c8.8 1.4 36.1 7.1 44.1 9.3c17 4.8 34.7-5.1 39.5-22.2s-5.1-34.7-22.2-39.5c-11.1-3.1-41-9.2-50.9-10.8C123-2.7 88.3-.6 59.7 12.3C29.9 25.8 7.5 50.9 1.6 86.5c-.1 .5-.2 1.1-.2 1.6c-2.2 19.7 .3 37.9 8.1 54.1c7.7 16.1 19.4 28 32 36.9c.6 .5 1.3 .9 2 1.4C22.3 194.2 6.5 215.1 1.7 243c-.1 .6-.2 1.1-.2 1.7c-2.3 19.3 .4 37.1 8.4 53c7.9 15.6 19.8 27 32.3 35.5c22.4 15.2 51.9 24 75.4 31l0 0 3.7 1.1c27.2 8.2 46.9 14.6 59.4 23.8c5.5 4 8.2 7.6 9.5 10.9c1.3 3.2 2.6 8.6 .9 18.1c-1.7 10.1-7.7 18-20.7 23.5c-14 6-35.4 8.5-62 4.4c-12.8-2.1-35.1-9.7-54.1-16.2l0 0c-4.3-1.5-8.5-2.9-12.3-4.2C25.3 420 7.2 429.1 1.6 445.8s3.5 34.9 20.3 40.5c2.6 .8 5.7 1.9 9.2 3.1c18.6 6.3 48.5 16.6 67.3 19.6l0 0 .2 0c34.5 5.4 68.8 3.4 97.2-8.7c29.4-12.6 52.5-36.5 58.5-71.5c3.3-19.3 1.9-37.4-5-53.9c-6.3-15-16.4-26.4-27.6-35.2c16.5-13.9 28.5-33.2 32.6-58.2c3.2-19.8 1.9-38.3-4.8-55.1c-6.7-16.8-17.8-29.4-30.2-39c-22.8-17.6-53.6-27.4-77.7-35l-1.4-.5c-27.4-8.7-47.8-15.3-61.5-25c-6.1-4.4-9.5-8.5-11.4-12.4c-1.8-3.7-3.2-9.3-2.3-18.5zm76.7 208.5c-.2-.1-.4-.1-.6-.2l-1.4-.4c-27.4-8.2-47.9-14.5-61.7-23.8c-6.2-4.2-9.3-7.9-11-11.3c-1.5-3-2.9-7.7-2.1-15.7c1.9-9.7 7.9-17.3 20.5-22.7c14-6 35.4-8.5 62.1-4.3l16.4 2.6c6.3 2.9 11.7 6 16.2 9.5c5.5 4.2 8.4 8.2 10 12.2c1.6 4 2.8 10.4 1.1 20.9c-2.4 14.7-12.8 26.4-37.1 31l-12.4 2.3z" + } + }, + "free": [ + "solid" + ] + }, + "seedling": { + "aliases": { + "names": [ + "sprout" + ], + "unicodes": { + "composite": [ + "1f331" + ], + "secondary": [ + "10f4d8" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "environment", + "flora", + "grow", + "plant", + "sapling", + "seedling", + "vegan", + "young" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4d8", + "label": "Seedling", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 32c0 113.6-84.6 207.5-194.2 222c-7.1-53.4-30.6-101.6-65.3-139.3C290.8 46.3 364 0 448 0h32c17.7 0 32 14.3 32 32zM0 96C0 78.3 14.3 64 32 64H64c123.7 0 224 100.3 224 224v32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V320C100.3 320 0 219.7 0 96z" + } + }, + "free": [ + "solid" + ] + }, + "sellcast": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "eercast" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f2da", + "label": "Sellcast", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8.1.1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8.1.1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z" + } + }, + "free": [ + "brands" + ] + }, + "sellsy": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f213", + "label": "Sellsy", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M539.71 237.308c3.064-12.257 4.29-24.821 4.29-37.384C544 107.382 468.618 32 376.076 32c-77.22 0-144.634 53.012-163.02 127.781-15.322-13.176-34.934-20.53-55.157-20.53-46.271 0-83.962 37.69-83.962 83.961 0 7.354.92 15.015 3.065 22.369-42.9 20.225-70.785 63.738-70.785 111.234C6.216 424.843 61.68 480 129.401 480h381.198c67.72 0 123.184-55.157 123.184-123.184.001-56.384-38.916-106.025-94.073-119.508zM199.88 401.554c0 8.274-7.048 15.321-15.321 15.321H153.61c-8.274 0-15.321-7.048-15.321-15.321V290.626c0-8.273 7.048-15.321 15.321-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v110.928zm89.477 0c0 8.274-7.048 15.321-15.322 15.321h-30.949c-8.274 0-15.321-7.048-15.321-15.321V270.096c0-8.274 7.048-15.321 15.321-15.321h30.949c8.274 0 15.322 7.048 15.322 15.321v131.458zm89.477 0c0 8.274-7.047 15.321-15.321 15.321h-30.949c-8.274 0-15.322-7.048-15.322-15.321V238.84c0-8.274 7.048-15.321 15.322-15.321h30.949c8.274 0 15.321 7.048 15.321 15.321v162.714zm87.027 0c0 8.274-7.048 15.321-15.322 15.321h-28.497c-8.274 0-15.321-7.048-15.321-15.321V176.941c0-8.579 7.047-15.628 15.321-15.628h28.497c8.274 0 15.322 7.048 15.322 15.628v224.613z" + } + }, + "free": [ + "brands" + ] + }, + "server": { + "aliases": { + "unicodes": { + "secondary": [ + "10f233" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "cpu", + "database", + "hardware", + "network" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f233", + "label": "Server", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm48 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM64 288c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V352c0-35.3-28.7-64-64-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm56 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + }, + "free": [ + "solid" + ] + }, + "servicestack": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ec", + "label": "Servicestack", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z" + } + }, + "free": [ + "brands" + ] + }, + "shapes": { + "aliases": { + "names": [ + "triangle-circle-square" + ], + "unicodes": { + "secondary": [ + "10f61f" + ] + } + }, + "changes": [ + "5.2.0", + "5.12.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "build", + "circle", + "square", + "triangle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f61f", + "label": "Shapes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M315.4 15.5C309.7 5.9 299.2 0 288 0s-21.7 5.9-27.4 15.5l-96 160c-5.9 9.9-6.1 22.2-.4 32.2s16.3 16.2 27.8 16.2H384c11.5 0 22.2-6.2 27.8-16.2s5.5-22.3-.4-32.2l-96-160zM288 312V456c0 22.1 17.9 40 40 40H472c22.1 0 40-17.9 40-40V312c0-22.1-17.9-40-40-40H328c-22.1 0-40 17.9-40 40zM128 512a128 128 0 1 0 0-256 128 128 0 1 0 0 256z" + } + }, + "free": [ + "solid" + ] + }, + "share": { + "aliases": { + "names": [ + "arrow-turn-right", + "mail-forward" + ], + "unicodes": { + "secondary": [ + "10f064" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f064", + "label": "Share", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M307 34.8c-11.5 5.1-19 16.6-19 29.2v64H176C78.8 128 0 206.8 0 304C0 417.3 81.5 467.9 100.2 478.1c2.5 1.4 5.3 1.9 8.1 1.9c10.9 0 19.7-8.9 19.7-19.7c0-7.5-4.3-14.4-9.8-19.5C108.8 431.9 96 414.4 96 384c0-53 43-96 96-96h96v64c0 12.6 7.4 24.1 19 29.2s25 3 34.4-5.4l160-144c6.7-6.1 10.6-14.7 10.6-23.8s-3.8-17.7-10.6-23.8l-160-144c-9.4-8.5-22.9-10.6-34.4-5.4z" + } + }, + "free": [ + "solid" + ] + }, + "share-from-square": { + "aliases": { + "names": [ + "share-square" + ], + "unicodes": { + "composite": [ + "f045" + ], + "secondary": [ + "10f14d" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f14d", + "label": "Share From Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M352 224H305.5c-45 0-81.5 36.5-81.5 81.5c0 22.3 10.3 34.3 19.2 40.5c6.8 4.7 12.8 12 12.8 20.3c0 9.8-8 17.8-17.8 17.8h-2.5c-2.4 0-4.8-.4-7.1-1.4C210.8 374.8 128 333.4 128 240c0-79.5 64.5-144 144-144h80V34.7C352 15.5 367.5 0 386.7 0c8.6 0 16.8 3.2 23.2 8.9L548.1 133.3c7.6 6.8 11.9 16.5 11.9 26.7s-4.3 19.9-11.9 26.7l-139 125.1c-5.9 5.3-13.5 8.2-21.4 8.2H384c-17.7 0-32-14.3-32-32V224zM80 96c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16H400c8.8 0 16-7.2 16-16V384c0-17.7 14.3-32 32-32s32 14.3 32 32v48c0 44.2-35.8 80-80 80H80c-44.2 0-80-35.8-80-80V112C0 67.8 35.8 32 80 32h48c17.7 0 32 14.3 32 32s-14.3 32-32 32H80z" + }, + "regular": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M400 255.4V240 208c0-8.8-7.2-16-16-16H352 336 289.5c-50.9 0-93.9 33.5-108.3 79.6c-3.3-9.4-5.2-19.8-5.2-31.6c0-61.9 50.1-112 112-112h48 16 32c8.8 0 16-7.2 16-16V80 64.6L506 160 400 255.4zM336 240h16v48c0 17.7 14.3 32 32 32h3.7c7.9 0 15.5-2.9 21.4-8.2l139-125.1c7.6-6.8 11.9-16.5 11.9-26.7s-4.3-19.9-11.9-26.7L409.9 8.9C403.5 3.2 395.3 0 386.7 0C367.5 0 352 15.5 352 34.7V80H336 304 288c-88.4 0-160 71.6-160 160c0 60.4 34.6 99.1 63.9 120.9c5.9 4.4 11.5 8.1 16.7 11.2c4.4 2.7 8.5 4.9 11.9 6.6c3.4 1.7 6.2 3 8.2 3.9c2.2 1 4.6 1.4 7.1 1.4h2.5c9.8 0 17.8-8 17.8-17.8c0-7.8-5.3-14.7-11.6-19.5l0 0c-.4-.3-.7-.5-1.1-.8c-1.7-1.1-3.4-2.5-5-4.1c-.8-.8-1.7-1.6-2.5-2.6s-1.6-1.9-2.4-2.9c-1.8-2.5-3.5-5.3-5-8.5c-2.6-6-4.3-13.3-4.3-22.4c0-36.1 29.3-65.5 65.5-65.5H304h32zM72 32C32.2 32 0 64.2 0 104V440c0 39.8 32.2 72 72 72H408c39.8 0 72-32.2 72-72V376c0-13.3-10.7-24-24-24s-24 10.7-24 24v64c0 13.3-10.7 24-24 24H72c-13.3 0-24-10.7-24-24V104c0-13.3 10.7-24 24-24h64c13.3 0 24-10.7 24-24s-10.7-24-24-24H72z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "share-nodes": { + "aliases": { + "names": [ + "share-alt" + ], + "unicodes": { + "secondary": [ + "10f1e0" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1e0", + "label": "Share Nodes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321862, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M352 224c53 0 96-43 96-96s-43-96-96-96s-96 43-96 96c0 4 .2 8 .7 11.9l-94.1 47C145.4 170.2 121.9 160 96 160c-53 0-96 43-96 96s43 96 96 96c25.9 0 49.4-10.2 66.6-26.9l94.1 47c-.5 3.9-.7 7.8-.7 11.9c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-25.9 0-49.4 10.2-66.6 26.9l-94.1-47c.5-3.9 .7-7.8 .7-11.9s-.2-8-.7-11.9l94.1-47C302.6 213.8 326.1 224 352 224z" + } + }, + "free": [ + "solid" + ] + }, + "sheet-plastic": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "plastic", + "plastic wrap", + "protect", + "tarp", + "tarpaulin", + "waterproof" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e571", + "label": "Sheet Plastic", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 448c0 35.3 28.7 64 64 64H224V384c0-17.7 14.3-32 32-32H384V64c0-35.3-28.7-64-64-64H64C28.7 0 0 28.7 0 64V448zM171.3 75.3l-96 96c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l96-96c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6zm96 32l-160 160c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l160-160c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6zM384 384H256V512L384 384z" + } + }, + "free": [ + "solid" + ] + }, + "shekel-sign": { + "aliases": { + "names": [ + "ils", + "shekel", + "sheqel", + "sheqel-sign" + ], + "unicodes": { + "composite": [ + "20aa" + ], + "secondary": [ + "10f20b" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "New Sheqel Sign", + "currency", + "ils", + "money" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f20b", + "label": "Shekel Sign", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64V448c0 17.7 14.3 32 32 32s32-14.3 32-32V96H192c35.3 0 64 28.7 64 64V320c0 17.7 14.3 32 32 32s32-14.3 32-32V160c0-70.7-57.3-128-128-128H32zM320 480c70.7 0 128-57.3 128-128V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V352c0 35.3-28.7 64-64 64H192V192c0-17.7-14.3-32-32-32s-32 14.3-32 32V448c0 17.7 14.3 32 32 32H320z" + } + }, + "free": [ + "solid" + ] + }, + "shield": { + "aliases": { + "names": [ + "shield-blank" + ], + "unicodes": { + "composite": [ + "1f6e1" + ], + "secondary": [ + "10f132" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "armor", + "award", + "block", + "cleric", + "defend", + "defense", + "holy", + "paladin", + "protect", + "safety", + "security", + "shield", + "weapon", + "winner" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f132", + "label": "Shield", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M240 0c4.6 0 9.2 1 13.4 2.9L441.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.6 363.2c-16.7 8-36.1 8-52.8 0C41.3 420.7 .5 239.2 0 140c-.1-26.2 16.3-47.9 38.3-57.2L226.7 2.9C230.8 1 235.4 0 240 0z" + } + }, + "free": [ + "solid" + ] + }, + "shield-cat": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "feline", + "pet", + "protect", + "safety", + "veterinary" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e572", + "label": "Shield Cat", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M253.4 2.9C249.2 1 244.7 0 240 0s-9.2 1-13.4 2.9L38.3 82.8C16.3 92.1-.1 113.8 0 140c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C438.7 420.7 479.5 239.2 480 140c.1-26.2-16.3-47.9-38.3-57.2L253.4 2.9zM144 154.4c0-5.8 4.7-10.4 10.4-10.4h.2c3.4 0 6.5 1.6 8.5 4.3l40 53.3c3 4 7.8 6.4 12.8 6.4h48c5 0 9.8-2.4 12.8-6.4l40-53.3c2-2.7 5.2-4.3 8.5-4.3h.2c5.8 0 10.4 4.7 10.4 10.4V272c0 53-43 96-96 96s-96-43-96-96V154.4zM200 288a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm96-16a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + }, + "free": [ + "solid" + ] + }, + "shield-dog": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "animal", + "canine", + "pet", + "protect", + "safety", + "veterinary" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e573", + "label": "Shield Dog", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M253.4 2.9C249.2 1 244.7 0 240 0s-9.2 1-13.4 2.9L38.3 82.8C16.3 92.1-.1 113.8 0 140c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C438.7 420.7 479.5 239.2 480 140c.1-26.2-16.3-47.9-38.3-57.2L253.4 2.9zM144.9 286.2c4.8 1.2 9.9 1.8 15.1 1.8c35.3 0 64-28.7 64-64V160h44.2c12.1 0 23.2 6.8 28.6 17.7L304 192h64c8.8 0 16 7.2 16 16v32c0 44.2-35.8 80-80 80H256v50.7c0 7.3-5.9 13.3-13.3 13.3c-1.8 0-3.6-.4-5.2-1.1l-98.7-42.3c-6.6-2.8-10.8-9.3-10.8-16.4c0-2.8 .6-5.5 1.9-8l15-30zM144 160h40 8v32 32c0 17.7-14.3 32-32 32s-32-14.3-32-32V176c0-8.8 7.2-16 16-16zm128 48a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + }, + "free": [ + "solid" + ] + }, + "shield-halved": { + "aliases": { + "names": [ + "shield-alt" + ], + "unicodes": { + "secondary": [ + "10f3ed" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "armor", + "award", + "block", + "cleric", + "defend", + "defense", + "holy", + "paladin", + "security", + "shield", + "weapon", + "winner" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3ed", + "label": "Shield Halved", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M240 0c4.6 0 9.2 1 13.4 2.9L441.7 82.8c22 9.3 38.4 31 38.3 57.2c-.5 99.2-41.3 280.7-213.7 363.2c-16.7 8-36.1 8-52.8 0C41.3 420.7 .5 239.2 0 140c-.1-26.2 16.3-47.9 38.3-57.2L226.7 2.9C230.8 1 235.4 0 240 0zm0 66.8V444.8C378 378 415.1 230.1 416 141.4L240 66.8l0 0z" + } + }, + "free": [ + "solid" + ] + }, + "shield-heart": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "love", + "protect", + "safe", + "safety", + "shield" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e574", + "label": "Shield Heart", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M253.4 2.9C249.2 1 244.7 0 240 0s-9.2 1-13.4 2.9L38.3 82.8C16.3 92.1-.1 113.8 0 140c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C438.7 420.7 479.5 239.2 480 140c.1-26.2-16.3-47.9-38.3-57.2L253.4 2.9zM128 221.3c0-33.8 27.4-61.3 61.3-61.3c16.2 0 31.8 6.5 43.3 17.9l7.4 7.4 7.4-7.4c11.5-11.5 27.1-17.9 43.3-17.9c33.8 0 61.3 27.4 61.3 61.3c0 16.2-6.5 31.8-17.9 43.3l-82.7 82.7c-6.2 6.2-16.4 6.2-22.6 0l-82.7-82.7c-11.5-11.5-17.9-27.1-17.9-43.3z" + } + }, + "free": [ + "solid" + ] + }, + "shield-virus": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06c" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antibodies", + "barrier", + "coronavirus", + "covid-19", + "flu", + "health", + "infection", + "pandemic", + "protect", + "safety", + "vaccine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e06c", + "label": "Shield Virus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M253.4 2.9C249.2 1 244.7 0 240 0s-9.2 1-13.4 2.9L38.3 82.8C16.3 92.1-.1 113.8 0 140c.5 99.2 41.3 280.7 213.6 363.2c16.7 8 36.1 8 52.8 0C438.7 420.7 479.5 239.2 480 140c.1-26.2-16.3-47.9-38.3-57.2L253.4 2.9zM240 112c8.8 0 16 7.2 16 16c0 33 39.9 49.5 63.2 26.2c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C318.5 200.1 335 240 368 240c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0C295.9 334.5 256 351 256 384c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C161.5 311.9 145 272 112 272c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C184.1 177.5 224 161 224 128c0-8.8 7.2-16 16-16zM216 256a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm72 32a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + }, + "free": [ + "solid" + ] + }, + "ship": { + "aliases": { + "unicodes": { + "composite": [ + "1f6a2" + ], + "secondary": [ + "10f21a" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.10.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "boat", + "passenger", + "sea", + "ship", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f21a", + "label": "Ship", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M192 32c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32V64h48c26.5 0 48 21.5 48 48V240l44.4 14.8c23.1 7.7 29.5 37.5 11.5 53.9l-101 92.6c-16.2 9.4-34.7 15.1-50.9 15.1c-19.6 0-40.8-7.7-59.2-20.3c-22.1-15.5-51.6-15.5-73.7 0c-17.1 11.8-38 20.3-59.2 20.3c-16.2 0-34.7-5.7-50.9-15.1l-101-92.6c-18-16.5-11.6-46.2 11.5-53.9L96 240V112c0-26.5 21.5-48 48-48h48V32zM160 218.7l107.8-35.9c13.1-4.4 27.3-4.4 40.5 0L416 218.7V128H160v90.7zM306.5 421.9C329 437.4 356.5 448 384 448c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 501.7 417 512 384 512c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 437.2 165.1 448 192 448c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + }, + "free": [ + "solid" + ] + }, + "shirt": { + "aliases": { + "names": [ + "t-shirt", + "tshirt" + ], + "unicodes": { + "composite": [ + "1f455" + ], + "secondary": [ + "10f553" + ] + } + }, + "changes": [ + "5.0.13", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clothing", + "fashion", + "garment", + "shirt", + "short sleeve", + "t-shirt", + "tshirt" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f553", + "label": "Shirt", + "voted": true, + "svg": { + "solid": { + "last_modified": 1660321863, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M211.8 0c7.8 0 14.3 5.7 16.7 13.2C240.8 51.9 277.1 80 320 80s79.2-28.1 91.5-66.8C413.9 5.7 420.4 0 428.2 0h12.6c22.5 0 44.2 7.9 61.5 22.3L628.5 127.4c6.6 5.5 10.7 13.5 11.4 22.1s-2.1 17.1-7.8 23.6l-56 64c-11.4 13.1-31.2 14.6-44.6 3.5L480 197.7V448c0 35.3-28.7 64-64 64H224c-35.3 0-64-28.7-64-64V197.7l-51.5 42.9c-13.3 11.1-33.1 9.6-44.6-3.5l-56-64c-5.7-6.5-8.5-15-7.8-23.6s4.8-16.6 11.4-22.1L137.7 22.3C155 7.9 176.7 0 199.2 0h12.6z" + } + }, + "free": [ + "solid" + ] + }, + "shirtsinbulk": { + "changes": [ + "4.3.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f214", + "label": "Shirts in Bulk", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M100 410.3l30.6 13.4 4.4-9.9-30.6-13.4zm39.4 17.5l30.6 13.4 4.4-9.9-30.6-13.4zm172.1-14l4.4 9.9 30.6-13.4-4.4-9.9zM179.1 445l30.3 13.7 4.4-9.9-30.3-13.4zM60.4 392.8L91 406.2l4.4-9.6-30.6-13.7zm211.4 38.5l4.4 9.9 30.6-13.4-4.4-9.9zm-39.3 17.5l4.4 9.9 30.6-13.7-4.4-9.6zm118.4-52.2l4.4 9.6 30.6-13.4-4.4-9.9zM170 46.6h-33.5v10.5H170zm-47.2 0H89.2v10.5h33.5zm-47.3 0H42.3v10.5h33.3zm141.5 0h-33.2v10.5H217zm94.5 0H278v10.5h33.5zm47.3 0h-33.5v10.5h33.5zm-94.6 0H231v10.5h33.2zm141.5 0h-33.3v10.5h33.3zM52.8 351.1H42v33.5h10.8zm70-215.9H89.2v10.5h33.5zm-70 10.6h22.8v-10.5H42v33.5h10.8zm168.9 228.6c50.5 0 91.3-40.8 91.3-91.3 0-50.2-40.8-91.3-91.3-91.3-50.2 0-91.3 41.1-91.3 91.3 0 50.5 41.1 91.3 91.3 91.3zm-48.2-111.1c0-25.4 29.5-31.8 49.6-31.8 16.9 0 29.2 5.8 44.3 12l-8.8 16.9h-.9c-6.4-9.9-24.8-13.1-35.6-13.1-9 0-29.8 1.8-29.8 14.9 0 21.6 78.5-10.2 78.5 37.9 0 25.4-31.5 31.2-51 31.2-18.1 0-32.4-2.9-47.2-12.2l9-18.4h.9c6.1 12.2 23.6 14.9 35.9 14.9 8.7 0 32.7-1.2 32.7-14.3 0-26.1-77.6 6.3-77.6-38zM52.8 178.4H42V212h10.8zm342.4 206.2H406v-33.5h-10.8zM52.8 307.9H42v33.5h10.8zM0 3.7v406l221.7 98.6L448 409.7V3.7zm418.8 387.1L222 476.5 29.2 390.8V120.7h389.7v270.1zm0-299.3H29.2V32.9h389.7v58.6zm-366 130.1H42v33.5h10.8zm0 43.2H42v33.5h10.8zM170 135.2h-33.5v10.5H170zm225.2 163.1H406v-33.5h-10.8zm0-43.2H406v-33.5h-10.8zM217 135.2h-33.2v10.5H217zM395.2 212H406v-33.5h-10.8zm0 129.5H406V308h-10.8zm-131-206.3H231v10.5h33.2zm47.3 0H278v10.5h33.5zm83.7 33.6H406v-33.5h-33.5v10.5h22.8zm-36.4-33.6h-33.5v10.5h33.5z" + } + }, + "free": [ + "brands" + ] + }, + "shoe-prints": { + "aliases": { + "unicodes": { + "secondary": [ + "10f54b" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "feet", + "footprints", + "steps", + "walk" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f54b", + "label": "Shoe Prints", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M416 0C352.3 0 256 32 256 32V160c48 0 76 16 104 32s56 32 104 32c56.4 0 176-16 176-96S512 0 416 0zM128 96c0 35.3 28.7 64 64 64h32V32H192c-35.3 0-64 28.7-64 64zM288 512c96 0 224-48 224-128s-119.6-96-176-96c-48 0-76 16-104 32s-56 32-104 32V480s96.3 32 160 32zM0 416c0 35.3 28.7 64 64 64H96V352H64c-35.3 0-64 28.7-64 64z" + } + }, + "free": [ + "solid" + ] + }, + "shop": { + "aliases": { + "names": [ + "store-alt" + ], + "unicodes": { + "secondary": [ + "10f54f" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bodega", + "building", + "buy", + "market", + "purchase", + "shopping", + "store" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f54f", + "label": "Shop", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M36.8 192H603.2c20.3 0 36.8-16.5 36.8-36.8c0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4L6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192zM64 224V384v80c0 26.5 21.5 48 48 48H336c26.5 0 48-21.5 48-48V384 224H320V384H128V224H64zm448 0V480c0 17.7 14.3 32 32 32s32-14.3 32-32V224H512z" + } + }, + "free": [ + "solid" + ] + }, + "shop-lock": { + "changes": [ + "6.0.0", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bodega", + "building", + "buy", + "closed", + "lock", + "lockdown", + "market", + "purchase", + "quarantine", + "shop", + "shopping", + "store" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4a5", + "label": "Shop Lock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M36.8 192H449.6c20.2-19.8 47.9-32 78.4-32c30.5 0 58.1 12.2 78.3 31.9c18.9-1.6 33.7-17.4 33.7-36.7c0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4L6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192zM384 224H320V384H128V224H64V384v80c0 26.5 21.5 48 48 48H336c26.5 0 48-21.5 48-48V384 352 224zm144 16c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "shop-slash": { + "aliases": { + "names": [ + "store-alt-slash" + ], + "unicodes": { + "secondary": [ + "10e070" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "buy", + "closed", + "covid-19", + "purchase", + "shopping" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e070", + "label": "Shop Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-54.8-43V224H512V376L384 275.7V224H320v1.5L277.2 192H603.2c20.3 0 36.8-16.5 36.8-36.8c0-7.3-2.2-14.4-6.2-20.4L558.2 21.4C549.3 8 534.4 0 518.3 0H121.7c-16 0-31 8-39.9 21.4L74.1 32.8 38.8 5.1zM36.8 192h85L21 112.5 6.2 134.7c-4 6.1-6.2 13.2-6.2 20.4C0 175.5 16.5 192 36.8 192zM320 384H128V224H64V384v80c0 26.5 21.5 48 48 48H336c26.5 0 48-21.5 48-48V398.5l-64-50.4V384z" + } + }, + "free": [ + "solid" + ] + }, + "shopify": { + "changes": [ + "5.12.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e057", + "label": "Shopify", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M388.32,104.1a4.66,4.66,0,0,0-4.4-4c-2,0-37.23-.8-37.23-.8s-21.61-20.82-29.62-28.83V503.2L442.76,472S388.72,106.5,388.32,104.1ZM288.65,70.47a116.67,116.67,0,0,0-7.21-17.61C271,32.85,255.42,22,237,22a15,15,0,0,0-4,.4c-.4-.8-1.2-1.2-1.6-2C223.4,11.63,213,7.63,200.58,8c-24,.8-48,18-67.25,48.83-13.61,21.62-24,48.84-26.82,70.06-27.62,8.4-46.83,14.41-47.23,14.81-14,4.4-14.41,4.8-16,18-1.2,10-38,291.82-38,291.82L307.86,504V65.67a41.66,41.66,0,0,0-4.4.4S297.86,67.67,288.65,70.47ZM233.41,87.69c-16,4.8-33.63,10.4-50.84,15.61,4.8-18.82,14.41-37.63,25.62-50,4.4-4.4,10.41-9.61,17.21-12.81C232.21,54.86,233.81,74.48,233.41,87.69ZM200.58,24.44A27.49,27.49,0,0,1,215,28c-6.4,3.2-12.81,8.41-18.81,14.41-15.21,16.42-26.82,42-31.62,66.45-14.42,4.41-28.83,8.81-42,12.81C131.33,83.28,163.75,25.24,200.58,24.44ZM154.15,244.61c1.6,25.61,69.25,31.22,73.25,91.66,2.8,47.64-25.22,80.06-65.65,82.47-48.83,3.2-75.65-25.62-75.65-25.62l10.4-44s26.82,20.42,48.44,18.82c14-.8,19.22-12.41,18.81-20.42-2-33.62-57.24-31.62-60.84-86.86-3.2-46.44,27.22-93.27,94.47-97.68,26-1.6,39.23,4.81,39.23,4.81L221.4,225.39s-17.21-8-37.63-6.4C154.15,221,153.75,239.8,154.15,244.61ZM249.42,82.88c0-12-1.6-29.22-7.21-43.63,18.42,3.6,27.22,24,31.23,36.43Q262.63,78.68,249.42,82.88Z" + } + }, + "free": [ + "brands" + ] + }, + "shopware": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5b5", + "label": "Shopware", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M403.5 455.41A246.17 246.17 0 0 1 256 504C118.81 504 8 393 8 256 8 118.81 119 8 256 8a247.39 247.39 0 0 1 165.7 63.5 3.57 3.57 0 0 1-2.86 6.18A418.62 418.62 0 0 0 362.13 74c-129.36 0-222.4 53.47-222.4 155.35 0 109 92.13 145.88 176.83 178.73 33.64 13 65.4 25.36 87 41.59a3.58 3.58 0 0 1 0 5.72zM503 233.09a3.64 3.64 0 0 0-1.27-2.44c-51.76-43-93.62-60.48-144.48-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62 112.34 84.49 31.07 11.59 63.19 23.57 92.68 39.93a3.57 3.57 0 0 0 5-1.82A249 249 0 0 0 503 233.09z" + } + }, + "free": [ + "brands" + ] + }, + "shower": { + "aliases": { + "unicodes": { + "composite": [ + "1f6bf" + ], + "secondary": [ + "10f2cc" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bath", + "clean", + "faucet", + "shower", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2cc", + "label": "Shower", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 131.9C64 112.1 80.1 96 99.9 96c9.5 0 18.6 3.8 25.4 10.5l16.2 16.2c-21 38.9-17.4 87.5 10.9 123L151 247c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0L345 121c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-1.3 1.3c-35.5-28.3-84.1-31.9-123-10.9L170.5 61.3C151.8 42.5 126.4 32 99.9 32C44.7 32 0 76.7 0 131.9V448c0 17.7 14.3 32 32 32s32-14.3 32-32V131.9zM256 352a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm64 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0-128a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm64 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0-128a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm64 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm32-32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "shrimp": { + "aliases": { + "unicodes": { + "composite": [ + "1f990" + ] + } + }, + "changes": [ + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "allergy", + "crustacean", + "prawn", + "seafood", + "shellfish", + "shrimp", + "tail" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e448", + "label": "Shrimp", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96s28.7 64 64 64h1c3.7 88.9 77 160 167 160h56V128H264 88.8 64c-17.7 0-32-14.3-32-32s14.3-32 32-32H464c8.8 0 16-7.2 16-16s-7.2-16-16-16H64zM224 456c0 13.3 10.7 24 24 24h72V407.8l-64.1-22.4c-12.5-4.4-26.2 2.2-30.6 14.7s2.2 26.2 14.7 30.6l4.5 1.6C233 433.9 224 443.9 224 456zm128 23.3c36.4-3.3 69.5-17.6 96.1-39.6l-86.5-34.6c-3 1.8-6.2 3.2-9.6 4.3v69.9zM472.6 415c24.6-30.3 39.4-68.9 39.4-111c0-12.3-1.3-24.3-3.7-35.9L382.8 355.1c.8 3.4 1.2 7 1.2 10.6c0 4.6-.7 9-1.9 13.1L472.6 415zM336 128H320V320h18.3c9.9 0 19.1 3.2 26.6 8.5l133.5-92.4C471.8 172.6 409.1 128 336 128zM168 192a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + }, + "free": [ + "solid" + ] + }, + "shuffle": { + "aliases": { + "names": [ + "random" + ], + "unicodes": { + "composite": [ + "1f500" + ], + "secondary": [ + "10f074" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "crossed", + "shuffle", + "shuffle tracks button", + "sort", + "swap", + "switch", + "transfer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f074", + "label": "Shuffle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M403.8 34.4c12-5 25.7-2.2 34.9 6.9l64 64c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-64 64c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V160H352c-10.1 0-19.6 4.7-25.6 12.8L284 229.3 244 176l31.2-41.6C293.3 110.2 321.8 96 352 96h32V64c0-12.9 7.8-24.6 19.8-29.6zM164 282.7L204 336l-31.2 41.6C154.7 401.8 126.2 416 96 416H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96c10.1 0 19.6-4.7 25.6-12.8L164 282.7zm274.6 188c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V416H352c-30.2 0-58.7-14.2-76.8-38.4L121.6 172.8c-6-8.1-15.5-12.8-25.6-12.8H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H96c30.2 0 58.7 14.2 76.8 38.4L326.4 339.2c6 8.1 15.5 12.8 25.6 12.8h32V320c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l64 64c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-64 64z" + } + }, + "free": [ + "solid" + ] + }, + "shuttle-space": { + "aliases": { + "names": [ + "space-shuttle" + ], + "unicodes": { + "secondary": [ + "10f197" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "astronaut", + "machine", + "nasa", + "rocket", + "space", + "transportation" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f197", + "label": "Shuttle Space", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M130 480c40.6 0 80.4-11 115.2-31.9L352 384l-224 0 0 96h2zM352 128L245.2 63.9C210.4 43 170.6 32 130 32h-2v96l224 0zM96 128l0-96H80C53.5 32 32 53.5 32 80v48h8c-22.1 0-40 17.9-40 40v16V328v16c0 22.1 17.9 40 40 40H32v48c0 26.5 21.5 48 48 48H96l0-96h8c26.2 0 49.4-12.6 64-32H456c69.3 0 135-22.7 179.2-81.6c6.4-8.5 6.4-20.3 0-28.8C591 182.7 525.3 160 456 160H168c-14.6-19.4-37.8-32-64-32l-8 0zM512 243.6v24.9c0 19.6-15.9 35.6-35.6 35.6c-2.5 0-4.4-2-4.4-4.4V212.4c0-2.5 2-4.4 4.4-4.4c19.6 0 35.6 15.9 35.6 35.6z" + } + }, + "free": [ + "solid" + ] + }, + "sign-hanging": { + "aliases": { + "names": [ + "sign" + ], + "unicodes": { + "secondary": [ + "10f4d9" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "real estate", + "signage", + "wayfinding" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4d9", + "label": "Sign Hanging", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 0c17.7 0 32 14.3 32 32V64l352 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-352 0V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V128H32C14.3 128 0 113.7 0 96S14.3 64 32 64H64V32C64 14.3 78.3 0 96 0zm96 160H448c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V192c0-17.7 14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "signal": { + "aliases": { + "names": [ + "signal-5", + "signal-perfect" + ], + "unicodes": { + "composite": [ + "1f4f6" + ], + "secondary": [ + "10f012" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "antenna", + "antenna bars", + "bar", + "bars", + "cell", + "graph", + "mobile", + "online", + "phone", + "reception", + "status" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f012", + "label": "Signal", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M544 0c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V32c0-17.7 14.3-32 32-32zM416 96c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V128c0-17.7 14.3-32 32-32zM320 224V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V224c0-17.7 14.3-32 32-32s32 14.3 32 32zM160 288c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V320c0-17.7 14.3-32 32-32zM64 416v64c0 17.7-14.3 32-32 32s-32-14.3-32-32V416c0-17.7 14.3-32 32-32s32 14.3 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "signature": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5b7" + ] + } + }, + "changes": [ + "5.1.0", + "5.6.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "John Hancock", + "cursive", + "name", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5b7", + "label": "Signature", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 128c0-17.7 14.3-32 32-32s32 14.3 32 32v7.8c0 27.7-2.4 55.3-7.1 82.5l-84.4 25.3c-40.6 12.2-68.4 49.6-68.4 92v71.9c0 40 32.5 72.5 72.5 72.5c26 0 50-13.9 62.9-36.5l13.9-24.3c26.8-47 46.5-97.7 58.4-150.5l94.4-28.3-12.5 37.5c-3.3 9.8-1.6 20.5 4.4 28.8s15.7 13.3 26 13.3H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H460.4l18-53.9c3.8-11.3 .9-23.8-7.4-32.4s-20.7-11.8-32.2-8.4L316.4 198.1c2.4-20.7 3.6-41.4 3.6-62.3V128c0-53-43-96-96-96s-96 43-96 96v32c0 17.7 14.3 32 32 32s32-14.3 32-32V128zm-9.2 177l49-14.7c-10.4 33.8-24.5 66.4-42.1 97.2l-13.9 24.3c-1.5 2.6-4.3 4.3-7.4 4.3c-4.7 0-8.5-3.8-8.5-8.5V335.6c0-14.1 9.3-26.6 22.8-30.7zM24 368c-13.3 0-24 10.7-24 24s10.7 24 24 24H64.3c-.2-2.8-.3-5.6-.3-8.5V368H24zm592 48c13.3 0 24-10.7 24-24s-10.7-24-24-24H305.9c-6.7 16.3-14.2 32.3-22.3 48H616z" + } + }, + "free": [ + "solid" + ] + }, + "signs-post": { + "aliases": { + "names": [ + "map-signs" + ], + "unicodes": { + "secondary": [ + "10f277" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "directory", + "map", + "signage", + "wayfinding" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f277", + "label": "Signs Post", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M218 32H58C40.3 32 26 46.3 26 64v64c0 17.7 14.3 32 32 32H435.4c4.2 0 8.3-1.7 11.3-4.7l48-48c6.2-6.2 6.2-16.4 0-22.6l-48-48c-3-3-7.1-4.7-11.3-4.7H282c0-17.7-14.3-32-32-32s-32 14.3-32 32zM474 256c0-17.7-14.3-32-32-32H282V192H218v32H64.6c-4.2 0-8.3 1.7-11.3 4.7l-48 48c-6.2 6.2-6.2 16.4 0 22.6l48 48c3 3 7.1 4.7 11.3 4.7H442c17.7 0 32-14.3 32-32V256zM282 480V384H218v96c0 17.7 14.3 32 32 32s32-14.3 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "sim-card": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7c4" + ] + } + }, + "changes": [ + "5.6.0", + "5.8.2", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hard drive", + "hardware", + "portable", + "storage", + "technology", + "tiny" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7c4", + "label": "Sim Card", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 0H242.7c17 0 33.3 6.7 45.3 18.7L365.3 96c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0zM96 192c-17.7 0-32 14.3-32 32v32h64V192H96zM64 352h80 96 80V288H240 144 64v64zM320 224c0-17.7-14.3-32-32-32H256v64h64V224zM160 192v64h64V192H160zM288 448c17.7 0 32-14.3 32-32V384H256v64h32zM160 384v64h64V384H160zM64 416c0 17.7 14.3 32 32 32h32V384H64v32z" + } + }, + "free": [ + "solid" + ] + }, + "simplybuilt": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f215", + "label": "SimplyBuilt", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z" + } + }, + "free": [ + "brands" + ] + }, + "sink": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06d" + ] + } + }, + "changes": [ + "5.13.0", + "5.13.1", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "covid-19", + "faucet", + "kitchen", + "wash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e06d", + "label": "Sink", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 96c0-17.7 14.3-32 32-32s32 14.3 32 32s14.3 32 32 32s32-14.3 32-32c0-53-43-96-96-96s-96 43-96 96V288H160V264c0-30.9-25.1-56-56-56H56c-13.3 0-24 10.7-24 24s10.7 24 24 24h48c4.4 0 8 3.6 8 8v24H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H256 480c17.7 0 32-14.3 32-32s-14.3-32-32-32H400V264c0-4.4 3.6-8 8-8h56c13.3 0 24-10.7 24-24s-10.7-24-24-24H408c-30.9 0-56 25.1-56 56v24H288V96zM480 416V384H32v32c0 53 43 96 96 96H384c53 0 96-43 96-96z" + } + }, + "free": [ + "solid" + ] + }, + "sistrix": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3ee", + "label": "SISTRIX", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z" + } + }, + "free": [ + "brands" + ] + }, + "sitemap": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0e8" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directory", + "hierarchy", + "ia", + "information architecture", + "organization" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0e8", + "label": "Sitemap", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M208 80c0-26.5 21.5-48 48-48h64c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48h-8v40H464c30.9 0 56 25.1 56 56v32h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H464c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48h8V288c0-4.4-3.6-8-8-8H312v40h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H256c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48h8V280H112c-4.4 0-8 3.6-8 8v32h8c26.5 0 48 21.5 48 48v64c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V368c0-26.5 21.5-48 48-48h8V288c0-30.9 25.1-56 56-56H264V192h-8c-26.5 0-48-21.5-48-48V80z" + } + }, + "free": [ + "solid" + ] + }, + "sith": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f512", + "label": "Sith", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32l69.71 118.75-58.86-11.52 69.84 91.03a146.741 146.741 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.75-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.78 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.75 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21.78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.21 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.21 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.87s89.65 34.18 123.84 0c34.18-34.18 34.19-89.68 0-123.87-17.09-17.09-39.5-25.61-61.92-25.61z" + } + }, + "free": [ + "brands" + ] + }, + "sitrox": { + "changes": [ + "6.0.0-beta2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e44a", + "label": "Sitrox", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M212.439 0.00846128V0H448V128H64C64 57.6008 141.755 0.475338 212.439 0.00846128ZM237.256 192V192.007C307.135 192.475 384 249.6 384 320H210.809V319.995C140.915 319.563 64 262.424 64 192H237.256ZM235.565 511.993C306.251 511.521 384 454.399 384 384H0V512H235.565V511.993Z" + } + }, + "free": [ + "brands" + ] + }, + "sketch": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "app", + "design", + "interface" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7c6", + "label": "Sketch", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M27.5 162.2L9 187.1h90.5l6.9-130.7-78.9 105.8zM396.3 45.7L267.7 32l135.7 147.2-7.1-133.5zM112.2 218.3l-11.2-22H9.9L234.8 458zm2-31.2h284l-81.5-88.5L256.3 33zm297.3 9.1L277.6 458l224.8-261.7h-90.9zM415.4 69L406 56.4l.9 17.3 6.1 113.4h90.3zM113.5 93.5l-4.6 85.6L244.7 32 116.1 45.7zm287.7 102.7h-290l42.4 82.9L256.3 480l144.9-283.8z" + } + }, + "free": [ + "brands" + ] + }, + "skull": { + "aliases": { + "unicodes": { + "composite": [ + "1f480" + ], + "secondary": [ + "10f54c" + ] + } + }, + "changes": [ + "5.0.13", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bones", + "death", + "face", + "fairy tale", + "monster", + "skeleton", + "skull", + "x-ray", + "yorick" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f54c", + "label": "Skull", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 398.9c58.5-41.1 96-104.1 96-174.9C512 100.3 397.4 0 256 0S0 100.3 0 224c0 70.7 37.5 133.8 96 174.9c0 .4 0 .7 0 1.1v64c0 26.5 21.5 48 48 48h48V464c0-8.8 7.2-16 16-16s16 7.2 16 16v48h64V464c0-8.8 7.2-16 16-16s16 7.2 16 16v48h48c26.5 0 48-21.5 48-48V400c0-.4 0-.7 0-1.1zM96 256a64 64 0 1 1 128 0A64 64 0 1 1 96 256zm256-64a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + }, + "free": [ + "solid" + ] + }, + "skull-crossbones": { + "aliases": { + "unicodes": { + "composite": [ + "1f571", + "2620" + ], + "secondary": [ + "10f714" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Skull and Crossbones", + "Dungeons & Dragons", + "alert", + "bones", + "crossbones", + "d&d", + "danger", + "dangerous area", + "dead", + "deadly", + "death", + "dnd", + "face", + "fantasy", + "halloween", + "holiday", + "jolly-roger", + "monster", + "pirate", + "poison", + "skeleton", + "skull", + "skull and crossbones", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f714", + "label": "Skull Crossbones", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824572, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M368 128c0 44.4-25.4 83.5-64 106.4V256c0 17.7-14.3 32-32 32H176c-17.7 0-32-14.3-32-32V234.4c-38.6-23-64-62.1-64-106.4C80 57.3 144.5 0 224 0s144 57.3 144 128zM168 176a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm144-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM3.4 273.7c7.9-15.8 27.1-22.2 42.9-14.3L224 348.2l177.7-88.8c15.8-7.9 35-1.5 42.9 14.3s1.5 35-14.3 42.9L295.6 384l134.8 67.4c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3L224 419.8 46.3 508.6c-15.8 7.9-35 1.5-42.9-14.3s-1.5-35 14.3-42.9L152.4 384 17.7 316.6C1.9 308.7-4.5 289.5 3.4 273.7z" + } + }, + "free": [ + "solid" + ] + }, + "skyatlas": { + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f216", + "label": "skyatlas", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4.1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z" + } + }, + "free": [ + "brands" + ] + }, + "skype": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f17e", + "label": "Skype", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z" + } + }, + "free": [ + "brands" + ] + }, + "slack": { + "aliases": { + "names": [ + "slack-hash" + ], + "unicodes": { + "composite": [ + "f3ef" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchor", + "hash", + "hashtag" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f198", + "label": "Slack Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1c0-25.9 21.16-47.06 47.06-47.06h47.06v47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.84c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V315.1zm47.06-188.98c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06H164.9zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.96 0 222.8 0 196.9s21.16-47.06 47.06-47.06H164.9zm188.98 47.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06h-47.06V196.9zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06V196.9zM283.1 385.88c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06v-47.06h47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06 0-25.9 21.16-47.06 47.06-47.06h117.84c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06H283.1z" + } + }, + "free": [ + "brands" + ] + }, + "slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f715" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "close", + "mute", + "off", + "stop", + "x" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f715", + "label": "Slash", + "voted": true, + "svg": { + "solid": { + "last_modified": 1660321865, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M5.1 9.2C13.3-1.2 28.4-3.1 38.8 5.1l592 464c10.4 8.2 12.3 23.3 4.1 33.7s-23.3 12.3-33.7 4.1L9.2 42.9C-1.2 34.7-3.1 19.6 5.1 9.2z" + } + }, + "free": [ + "solid" + ] + }, + "sleigh": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7cc" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "christmas", + "claus", + "fly", + "holiday", + "santa", + "sled", + "snow", + "xmas" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7cc", + "label": "Sleigh", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96V256c0 53 43 96 96 96v32h64V352H384v32h64V352c53 0 96-43 96-96V160c17.7 0 32-14.3 32-32s-14.3-32-32-32H512 480c-17.7 0-32 14.3-32 32v41.3c0 30.2-24.5 54.7-54.7 54.7c-75.5 0-145.6-38.9-185.6-102.9l-4.3-6.9C174.2 67.6 125 37.6 70.7 32.7c-2.2-.5-4.4-.7-6.7-.7H55 32zM640 384c0-17.7-14.3-32-32-32s-32 14.3-32 32v8c0 13.3-10.7 24-24 24H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H552c48.6 0 88-39.4 88-88v-8z" + } + }, + "free": [ + "solid" + ] + }, + "sliders": { + "aliases": { + "names": [ + "sliders-h" + ], + "unicodes": { + "secondary": [ + "10f1de" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.0.11", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "adjust", + "settings", + "sliders", + "toggle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1de", + "label": "Sliders", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 416c0-17.7 14.3-32 32-32l54.7 0c12.3-28.3 40.5-48 73.3-48s61 19.7 73.3 48L480 384c17.7 0 32 14.3 32 32s-14.3 32-32 32l-246.7 0c-12.3 28.3-40.5 48-73.3 48s-61-19.7-73.3-48L32 448c-17.7 0-32-14.3-32-32zm192 0a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM384 256a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm-32-80c32.8 0 61 19.7 73.3 48l54.7 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-54.7 0c-12.3 28.3-40.5 48-73.3 48s-61-19.7-73.3-48L32 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l246.7 0c12.3-28.3 40.5-48 73.3-48zM192 64a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm73.3 0L480 64c17.7 0 32 14.3 32 32s-14.3 32-32 32l-214.7 0c-12.3 28.3-40.5 48-73.3 48s-61-19.7-73.3-48L32 128C14.3 128 0 113.7 0 96S14.3 64 32 64l86.7 0C131 35.7 159.2 16 192 16s61 19.7 73.3 48z" + } + }, + "free": [ + "solid" + ] + }, + "slideshare": { + "changes": [ + "4.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1e7", + "label": "Slideshare", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M187.7 153.7c-34 0-61.7 25.7-61.7 57.7 0 31.7 27.7 57.7 61.7 57.7s61.7-26 61.7-57.7c0-32-27.7-57.7-61.7-57.7zm143.4 0c-34 0-61.7 25.7-61.7 57.7 0 31.7 27.7 57.7 61.7 57.7 34.3 0 61.7-26 61.7-57.7.1-32-27.4-57.7-61.7-57.7zm156.6 90l-6 4.3V49.7c0-27.4-20.6-49.7-46-49.7H76.6c-25.4 0-46 22.3-46 49.7V248c-2-1.4-4.3-2.9-6.3-4.3-15.1-10.6-25.1 4-16 17.7 18.3 22.6 53.1 50.3 106.3 72C58.3 525.1 252 555.7 248.9 457.5c0-.7.3-56.6.3-96.6 5.1 1.1 9.4 2.3 13.7 3.1 0 39.7.3 92.8.3 93.5-3.1 98.3 190.6 67.7 134.3-124 53.1-21.7 88-49.4 106.3-72 9.1-13.8-.9-28.3-16.1-17.8zm-30.5 19.2c-68.9 37.4-128.3 31.1-160.6 29.7-23.7-.9-32.6 9.1-33.7 24.9-10.3-7.7-18.6-15.5-20.3-17.1-5.1-5.4-13.7-8-27.1-7.7-31.7 1.1-89.7 7.4-157.4-28V72.3c0-34.9 8.9-45.7 40.6-45.7h317.7c30.3 0 40.9 12.9 40.9 45.7v190.6z" + } + }, + "free": [ + "brands" + ] + }, + "smog": { + "aliases": { + "unicodes": { + "secondary": [ + "10f75f" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dragon", + "fog", + "haze", + "pollution", + "smoke", + "weather" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f75f", + "label": "Smog", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 144c0 79.5 64.5 144 144 144H299.3c22.6 19.9 52.2 32 84.7 32s62.1-12.1 84.7-32H496c61.9 0 112-50.1 112-112s-50.1-112-112-112c-10.7 0-21 1.5-30.8 4.3C443.8 27.7 401.1 0 352 0c-32.6 0-62.4 12.2-85.1 32.3C242.1 12.1 210.5 0 176 0C96.5 0 32 64.5 32 144zM616 368H280c-13.3 0-24 10.7-24 24s10.7 24 24 24H616c13.3 0 24-10.7 24-24s-10.7-24-24-24zm-64 96H440c-13.3 0-24 10.7-24 24s10.7 24 24 24H552c13.3 0 24-10.7 24-24s-10.7-24-24-24zm-192 0H24c-13.3 0-24 10.7-24 24s10.7 24 24 24H360c13.3 0 24-10.7 24-24s-10.7-24-24-24zM224 392c0-13.3-10.7-24-24-24H96c-13.3 0-24 10.7-24 24s10.7 24 24 24H200c13.3 0 24-10.7 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "smoking": { + "aliases": { + "unicodes": { + "composite": [ + "1f6ac" + ], + "secondary": [ + "10f48d" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancer", + "cigarette", + "nicotine", + "smoking", + "smoking status", + "tobacco" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f48d", + "label": "Smoking", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M448 32V43c0 38.2 15.2 74.8 42.2 101.8l21 21c21 21 32.8 49.5 32.8 79.2v11c0 17.7-14.3 32-32 32s-32-14.3-32-32V245c0-12.7-5.1-24.9-14.1-33.9l-21-21C405.9 151.1 384 98.1 384 43V32c0-17.7 14.3-32 32-32s32 14.3 32 32zM576 256V245c0-38.2-15.2-74.8-42.2-101.8l-21-21c-21-21-32.8-49.5-32.8-79.2V32c0-17.7 14.3-32 32-32s32 14.3 32 32V43c0 12.7 5.1 24.9 14.1 33.9l21 21c39 39 60.9 91.9 60.9 147.1v11c0 17.7-14.3 32-32 32s-32-14.3-32-32zM0 416c0-35.3 28.7-64 64-64H416c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H64c-35.3 0-64-28.7-64-64V416zm224 0v32H384V416H224zm288-64c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384c0-17.7 14.3-32 32-32zm96 0c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384c0-17.7 14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "snapchat": { + "aliases": { + "names": [ + "snapchat-ghost" + ], + "unicodes": { + "composite": [ + "f2ac" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2ab", + "label": "Snapchat", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M496.926,366.6c-3.373-9.176-9.8-14.086-17.112-18.153-1.376-.806-2.641-1.451-3.72-1.947-2.182-1.128-4.414-2.22-6.634-3.373-22.8-12.09-40.609-27.341-52.959-45.42a102.889,102.889,0,0,1-9.089-16.12c-1.054-3.013-1-4.724-.248-6.287a10.221,10.221,0,0,1,2.914-3.038c3.918-2.591,7.96-5.22,10.7-6.993,4.885-3.162,8.754-5.667,11.246-7.44,9.362-6.547,15.909-13.5,20-21.278a42.371,42.371,0,0,0,2.1-35.191c-6.2-16.318-21.613-26.449-40.287-26.449a55.543,55.543,0,0,0-11.718,1.24c-1.029.224-2.059.459-3.063.72.174-11.16-.074-22.94-1.066-34.534-3.522-40.758-17.794-62.123-32.674-79.16A130.167,130.167,0,0,0,332.1,36.443C309.515,23.547,283.91,17,256,17S202.6,23.547,180,36.443a129.735,129.735,0,0,0-33.281,26.783c-14.88,17.038-29.152,38.44-32.673,79.161-.992,11.594-1.24,23.435-1.079,34.533-1-.26-2.021-.5-3.051-.719a55.461,55.461,0,0,0-11.717-1.24c-18.687,0-34.125,10.131-40.3,26.449a42.423,42.423,0,0,0,2.046,35.228c4.105,7.774,10.652,14.731,20.014,21.278,2.48,1.736,6.361,4.24,11.246,7.44,2.641,1.711,6.5,4.216,10.28,6.72a11.054,11.054,0,0,1,3.3,3.311c.794,1.624.818,3.373-.36,6.6a102.02,102.02,0,0,1-8.94,15.785c-12.077,17.669-29.363,32.648-51.434,44.639C32.355,348.608,20.2,352.75,15.069,366.7c-3.868,10.528-1.339,22.506,8.494,32.6a49.137,49.137,0,0,0,12.4,9.387,134.337,134.337,0,0,0,30.342,12.139,20.024,20.024,0,0,1,6.126,2.741c3.583,3.137,3.075,7.861,7.849,14.78a34.468,34.468,0,0,0,8.977,9.127c10.019,6.919,21.278,7.353,33.207,7.811,10.776.41,22.989.881,36.939,5.481,5.778,1.91,11.78,5.605,18.736,9.92C194.842,480.951,217.707,495,255.973,495s61.292-14.123,78.118-24.428c6.907-4.24,12.872-7.9,18.489-9.758,13.949-4.613,26.163-5.072,36.939-5.481,11.928-.459,23.187-.893,33.206-7.812a34.584,34.584,0,0,0,10.218-11.16c3.434-5.84,3.348-9.919,6.572-12.771a18.971,18.971,0,0,1,5.753-2.629A134.893,134.893,0,0,0,476.02,408.71a48.344,48.344,0,0,0,13.019-10.193l.124-.149C498.389,388.5,500.708,376.867,496.926,366.6Zm-34.013,18.277c-20.745,11.458-34.533,10.23-45.259,17.137-9.114,5.865-3.72,18.513-10.342,23.076-8.134,5.617-32.177-.4-63.239,9.858-25.618,8.469-41.961,32.822-88.038,32.822s-62.036-24.3-88.076-32.884c-31-10.255-55.092-4.241-63.239-9.858-6.609-4.563-1.24-17.211-10.341-23.076-10.739-6.907-24.527-5.679-45.26-17.075-13.206-7.291-5.716-11.8-1.314-13.937,75.143-36.381,87.133-92.552,87.666-96.719.645-5.046,1.364-9.014-4.191-14.148-5.369-4.96-29.189-19.7-35.8-24.316-10.937-7.638-15.748-15.264-12.2-24.638,2.48-6.485,8.531-8.928,14.879-8.928a27.643,27.643,0,0,1,5.965.67c12,2.6,23.659,8.617,30.392,10.242a10.749,10.749,0,0,0,2.48.335c3.6,0,4.86-1.811,4.612-5.927-.768-13.132-2.628-38.725-.558-62.644,2.84-32.909,13.442-49.215,26.04-63.636,6.051-6.932,34.484-36.976,88.857-36.976s82.88,29.92,88.931,36.827c12.611,14.421,23.225,30.727,26.04,63.636,2.071,23.919.285,49.525-.558,62.644-.285,4.327,1.017,5.927,4.613,5.927a10.648,10.648,0,0,0,2.48-.335c6.745-1.624,18.4-7.638,30.4-10.242a27.641,27.641,0,0,1,5.964-.67c6.386,0,12.4,2.48,14.88,8.928,3.546,9.374-1.24,17-12.189,24.639-6.609,4.612-30.429,19.343-35.8,24.315-5.568,5.134-4.836,9.1-4.191,14.149.533,4.228,12.511,60.4,87.666,96.718C468.629,373.011,476.119,377.524,462.913,384.877Z" + } + }, + "free": [ + "brands" + ] + }, + "snowflake": { + "aliases": { + "unicodes": { + "composite": [ + "2744", + "2746" + ], + "secondary": [ + "10f2dc" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Heavy Chevron Snowflake", + "cold", + "precipitation", + "rain", + "snow", + "snowfall", + "snowflake", + "winter" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2dc", + "label": "Snowflake", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 0c17.7 0 32 14.3 32 32V62.1l15-15c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-49 49v70.3l61.4-35.8 17.7-66.1c3.4-12.8 16.6-20.4 29.4-17s20.4 16.6 17 29.4l-5.2 19.3 23.6-13.8c15.3-8.9 34.9-3.7 43.8 11.5s3.8 34.9-11.5 43.8l-25.3 14.8 21.7 5.8c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17l-67.7-18.1L287.5 256l60.9 35.5 67.7-18.1c12.8-3.4 26 4.2 29.4 17s-4.2 26-17 29.4l-21.7 5.8 25.3 14.8c15.3 8.9 20.4 28.5 11.5 43.8s-28.5 20.4-43.8 11.5l-23.6-13.8 5.2 19.3c3.4 12.8-4.2 26-17 29.4s-26-4.2-29.4-17l-17.7-66.1L256 311.7v70.3l49 49c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-15-15V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V449.9l-15 15c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l49-49V311.7l-61.4 35.8-17.7 66.1c-3.4 12.8-16.6 20.4-29.4 17s-20.4-16.6-17-29.4l5.2-19.3L48.1 395.6c-15.3 8.9-34.9 3.7-43.8-11.5s-3.7-34.9 11.5-43.8l25.3-14.8-21.7-5.8c-12.8-3.4-20.4-16.6-17-29.4s16.6-20.4 29.4-17l67.7 18.1L160.5 256 99.6 220.5 31.9 238.6c-12.8 3.4-26-4.2-29.4-17s4.2-26 17-29.4l21.7-5.8L15.9 171.6C.6 162.7-4.5 143.1 4.4 127.9s28.5-20.4 43.8-11.5l23.6 13.8-5.2-19.3c-3.4-12.8 4.2-26 17-29.4s26 4.2 29.4 17l17.7 66.1L192 200.3V129.9L143 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l15 15V32c0-17.7 14.3-32 32-32z" + }, + "regular": { + "last_modified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M223 0c13.3 0 24 10.7 24 24V70.1l23-23c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-57 57v76.5l66.2-38.2 20.9-77.8c3.4-12.8 16.6-20.4 29.4-17s20.4 16.6 17 29.4L372 142.2l37.1-21.4c11.5-6.6 26.2-2.7 32.8 8.8s2.7 26.2-8.8 32.8L396 183.8l31.5 8.4c12.8 3.4 20.4 16.6 17 29.4s-16.6 20.4-29.4 17l-77.8-20.9L271 256l66.2 38.2 77.8-20.9c12.8-3.4 26 4.2 29.4 17s-4.2 26-17 29.4L396 328.2l37.1 21.4c11.5 6.6 15.4 21.3 8.8 32.8s-21.3 15.4-32.8 8.8L372 369.8l8.4 31.5c3.4 12.8-4.2 26-17 29.4s-26-4.2-29.4-17l-20.9-77.8L247 297.6v76.5l57 57c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-23-23V488c0 13.3-10.7 24-24 24s-24-10.7-24-24V441.9l-23 23c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l57-57V297.6l-66.2 38.2-20.9 77.8c-3.4 12.8-16.6 20.4-29.4 17s-20.4-16.6-17-29.4L74 369.8 36.9 391.2c-11.5 6.6-26.2 2.7-32.8-8.8s-2.7-26.2 8.8-32.8L50 328.2l-31.5-8.4c-12.8-3.4-20.4-16.6-17-29.4s16.6-20.4 29.4-17l77.8 20.9L175 256l-66.2-38.2L30.9 238.6c-12.8 3.4-26-4.2-29.4-17s4.2-26 17-29.4L50 183.8 12.9 162.4c-11.5-6.6-15.4-21.3-8.8-32.8s21.3-15.4 32.8-8.8L74 142.2l-8.4-31.5c-3.4-12.8 4.2-26 17-29.4s26 4.2 29.4 17l20.9 77.8L199 214.4V137.9L142 81c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l23 23V24c0-13.3 10.7-24 24-24z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "snowman": { + "aliases": { + "unicodes": { + "composite": [ + "2603", + "26c4" + ], + "secondary": [ + "10f7d0" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "decoration", + "frost", + "frosty", + "holiday", + "snow", + "snowman", + "snowman without snow" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7d0", + "label": "Snowman", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M341.1 140.6c-2 3.9-1.6 8.6 1.2 12c7 8.5 12.9 18.1 17.2 28.4L408 160.2V120c0-13.3 10.7-24 24-24s24 10.7 24 24v19.6l22.5-9.7c12.2-5.2 26.3 .4 31.5 12.6s-.4 26.3-12.6 31.5l-56 24-73.6 31.5c-.5 9.5-2.1 18.6-4.8 27.3c-1.2 3.8-.1 8 2.8 10.8C396.7 296.9 416 338.2 416 384c0 44.7-18.3 85-47.8 114.1c-9.9 9.7-23.7 13.9-37.5 13.9H181.3c-13.9 0-27.7-4.2-37.5-13.9C114.3 469 96 428.7 96 384c0-45.8 19.3-87.1 50.1-116.3c2.9-2.8 4-6.9 2.8-10.8c-2.7-8.7-4.3-17.9-4.8-27.3L70.5 198.1l-56-24C2.4 168.8-3.3 154.7 1.9 142.5s19.3-17.8 31.5-12.6L56 139.6V120c0-13.3 10.7-24 24-24s24 10.7 24 24v40.2L152.6 181c4.3-10.3 10.1-19.9 17.2-28.4c2.8-3.4 3.3-8.1 1.2-12C164 127.2 160 112.1 160 96c0-53 43-96 96-96s96 43 96 96c0 16.1-4 31.2-10.9 44.6zM224 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm48 128a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm-16 80a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm16 48a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zM288 96a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm-48 24v3.2c0 3.2 .8 6.3 2.3 9l9 16.9c.9 1.7 2.7 2.8 4.7 2.8s3.8-1.1 4.7-2.8l9-16.9c1.5-2.8 2.3-5.9 2.3-9V120c0-8.8-7.2-16-16-16s-16 7.2-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "snowplow": { + "aliases": { + "unicodes": { + "secondary": [ + "10f7d2" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clean up", + "cold", + "road", + "storm", + "winter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7d2", + "label": "Snowplow", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M298.9 64l68.6 160H256l-64-64V64H298.9zM445.1 242.7l-87.4-204C347.6 15.3 324.5 0 298.9 0H176c-26.5 0-48 21.5-48 48V160H96c-17.7 0-32 14.3-32 32V298.8C26.2 316.8 0 355.3 0 400c0 61.9 50.1 112 112 112H368c61.9 0 112-50.1 112-112c0-17.2-3.9-33.5-10.8-48H512v50.7c0 17 6.7 33.3 18.7 45.3l54.6 54.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L576 402.7V320 235.2L633 164c11-13.8 8.8-33.9-5-45s-33.9-8.8-45 5l-57 71.2c-9.1 11.3-14 25.4-14 40V288H448V256.7c.1-2.4-.2-4.8-.6-7.1s-1.2-4.7-2.2-6.8zM368 352c26.5 0 48 21.5 48 48s-21.5 48-48 48H112c-26.5 0-48-21.5-48-48s21.5-48 48-48H368zM144 400a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zm216 24a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm-56-24a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM200 424a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + }, + "free": [ + "solid" + ] + }, + "soap": { + "aliases": { + "unicodes": { + "composite": [ + "1f9fc" + ], + "secondary": [ + "10e06e" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bar", + "bathing", + "bubbles", + "clean", + "cleaning", + "covid-19", + "hygiene", + "lather", + "soap", + "soapdish", + "wash" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e06e", + "label": "Soap", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM320 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM416 32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm0 160c0 27.6-11.7 52.5-30.4 70.1C422.1 275.7 448 310.8 448 352c0 53-43 96-96 96H160c-53 0-96-43-96-96s43-96 96-96h88.4c-15.2-17-24.4-39.4-24.4-64H96c-53 0-96 43-96 96V416c0 53 43 96 96 96H416c53 0 96-43 96-96V288c0-53-43-96-96-96zM160 288c-35.3 0-64 28.7-64 64s28.7 64 64 64H352c35.3 0 64-28.7 64-64s-28.7-64-64-64H320 160z" + } + }, + "free": [ + "solid" + ] + }, + "socks": { + "aliases": { + "unicodes": { + "composite": [ + "1f9e6" + ], + "secondary": [ + "10f696" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "business socks", + "business time", + "clothing", + "feet", + "flight of the conchords", + "socks", + "stocking", + "wednesday" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f696", + "label": "Socks", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M175.2 476.6c-9.7-18-15.2-38.7-15.2-60.6c0-40.3 19-78.2 51.2-102.4l64-48c8.1-6 12.8-15.5 12.8-25.6V96H128V240c0 20.1-9.5 39.1-25.6 51.2l-64 48C14.2 357.3 0 385.8 0 416c0 53 43 96 96 96c20.8 0 41-6.7 57.6-19.2l21.6-16.2zM128 64H288V48c0-14.5 3.9-28.2 10.7-39.9C291 3 281.9 0 272 0H176c-26.5 0-48 21.5-48 48V64zM320 96V240c0 20.1-9.5 39.1-25.6 51.2l-64 48C206.2 357.3 192 385.8 192 416c0 53 43 96 96 96c20.8 0 41-6.7 57.6-19.2l115.2-86.4C493 382.2 512 344.3 512 304V96H320zM512 64V48c0-26.5-21.5-48-48-48H368c-26.5 0-48 21.5-48 48V64H512z" + } + }, + "free": [ + "solid" + ] + }, + "solar-panel": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5ba" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clean", + "eco-friendly", + "energy", + "green", + "sun" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ba", + "label": "Solar Panel", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M115.2 0C84.7 0 58.5 21.5 52.5 51.4L1.3 307.4C-6.6 347 23.6 384 64 384H281v64H217c-17.7 0-32 14.3-32 32s14.3 32 32 32H409c17.7 0 32-14.3 32-32s-14.3-32-32-32H345V384H562c40.4 0 70.7-36.9 62.8-76.6l-51.2-256C567.5 21.5 541.3 0 510.8 0H115.2zM253.9 64H372.1l10.4 104h-139L253.9 64zM195.3 168H94.4L115.2 64h90.4L195.3 168zM84.8 216H190.5L180.1 320H64L84.8 216zm153.9 0H387.3l10.4 104-169.4 0 10.4-104zm196.8 0H541.2L562 320h-116L435.5 216zm96-48H430.7L420.3 64h90.4l31.4-6.3L510.8 64l20.8 104z" + } + }, + "free": [ + "solid" + ] + }, + "sort": { + "aliases": { + "names": [ + "unsorted" + ], + "unicodes": { + "secondary": [ + "10f0dc" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "filter", + "order" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0dc", + "label": "Sort", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M137.4 41.4c12.5-12.5 32.8-12.5 45.3 0l128 128c9.2 9.2 11.9 22.9 6.9 34.9s-16.6 19.8-29.6 19.8H32c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9l128-128zm0 429.3l-128-128c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8H288c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-128 128c-12.5 12.5-32.8 12.5-45.3 0z" + } + }, + "free": [ + "solid" + ] + }, + "sort-down": { + "aliases": { + "names": [ + "sort-desc" + ], + "unicodes": { + "secondary": [ + "10f0dd" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "descending", + "filter", + "order", + "sort-desc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0dd", + "label": "Sort Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M182.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8H288c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-128 128z" + } + }, + "free": [ + "solid" + ] + }, + "sort-up": { + "aliases": { + "names": [ + "sort-asc" + ], + "unicodes": { + "secondary": [ + "10f0de" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "ascending", + "filter", + "order", + "sort-asc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0de", + "label": "Sort Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M182.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8H288c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z" + } + }, + "free": [ + "solid" + ] + }, + "soundcloud": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1be", + "label": "SoundCloud", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2.8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1.6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7.6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3.1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z" + } + }, + "free": [ + "brands" + ] + }, + "sourcetree": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f7d3", + "label": "Sourcetree", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M427.2 203c0-112.1-90.9-203-203-203C112.1-.2 21.2 90.6 21 202.6A202.86 202.86 0 0 0 161.5 396v101.7a14.3 14.3 0 0 0 14.3 14.3h96.4a14.3 14.3 0 0 0 14.3-14.3V396.1A203.18 203.18 0 0 0 427.2 203zm-271.6 0c0-90.8 137.3-90.8 137.3 0-.1 89.9-137.3 91-137.3 0z" + } + }, + "free": [ + "brands" + ] + }, + "spa": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5bb" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "flora", + "massage", + "mindfulness", + "plant", + "wellness" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5bb", + "label": "Spa", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M183.1 235.3c33.7 20.7 62.9 48.1 85.8 80.5c7 9.9 13.4 20.3 19.1 31c5.7-10.8 12.1-21.1 19.1-31c22.9-32.4 52.1-59.8 85.8-80.5C437.6 207.8 490.1 192 546 192h9.9c11.1 0 20.1 9 20.1 20.1C576 360.1 456.1 480 308.1 480H288 267.9C119.9 480 0 360.1 0 212.1C0 201 9 192 20.1 192H30c55.9 0 108.4 15.8 153.1 43.3zM301.5 37.6c15.7 16.9 61.1 71.8 84.4 164.6c-38 21.6-71.4 50.8-97.9 85.6c-26.5-34.8-59.9-63.9-97.9-85.6c23.2-92.8 68.6-147.7 84.4-164.6C278 33.9 282.9 32 288 32s10 1.9 13.5 5.6z" + } + }, + "free": [ + "solid" + ] + }, + "space-awesome": { + "changes": [ + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "adventure", + "rocket", + "ship", + "shuttle" + ] + }, + "styles": [ + "brands" + ], + "unicode": "e5ac", + "label": "Space Awesome", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 256H128V512H0V352H32V320H64V288H96V256zM512 352V512H384V256H416V288H448V320H480V352H512zM320 64H352V448H320V416H192V448H160V64H192V32H224V0H288V32H320V64zM288 128H224V192H288V128z" + } + }, + "free": [ + "brands" + ] + }, + "spaghetti-monster-flying": { + "aliases": { + "names": [ + "pastafarianism" + ], + "unicodes": { + "secondary": [ + "10f67b" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agnosticism", + "atheism", + "flying spaghetti monster", + "fsm" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f67b", + "label": "Spaghetti Monster Flying", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M208 64a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm48 0c0 16.2-6 31.1-16 42.3l15.6 31.2c18.7-6 39.9-9.5 64.4-9.5s45.8 3.5 64.4 9.5L400 106.3C390 95.1 384 80.2 384 64c0-35.3 28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64c-1.7 0-3.4-.1-5.1-.2L427.8 158c21.1 13.6 37.7 30.2 51.4 46.4c7.1 8.3 13.5 16.6 19.3 24l1.4 1.8c6.3 8.1 11.6 14.8 16.7 20.4C527.3 262.3 532.7 264 536 264c2.5 0 4.3-.6 7.1-3.3c3.7-3.5 7.1-8.8 12.5-17.4l.6-.9c4.6-7.4 11-17.6 19.4-25.7c9.7-9.3 22.9-16.7 40.4-16.7c13.3 0 24 10.7 24 24s-10.7 24-24 24c-2.5 0-4.3 .6-7.1 3.3c-3.7 3.5-7.1 8.8-12.5 17.4l-.6 .9c-4.6 7.4-11 17.6-19.4 25.7c-9.7 9.3-22.9 16.7-40.4 16.7c-18.5 0-32.9-8.5-44.3-18.6c-3.1 4-6.6 8.3-10.5 12.7c1.4 4.3 2.8 8.5 4 12.5c.9 3 1.8 5.8 2.6 8.6c3 9.8 5.5 18.2 8.6 25.9c3.9 9.8 7.4 15.4 10.8 18.5c2.6 2.4 5.9 4.3 12.8 4.3c8.7 0 16.9-4.2 33.7-13.2c15-8 35.7-18.8 62.3-18.8c13.3 0 24 10.7 24 24s-10.7 24-24 24c-13.4 0-24.7 5.2-39.7 13.2c-1 .6-2.1 1.1-3.2 1.7C559.9 414 541.4 424 520 424c-18.4 0-33.6-6.1-45.5-17.2c-11.1-10.3-17.9-23.7-22.7-36c-3.6-9-6.7-19.1-9.5-28.5c-16.4 12.3-36.1 23.6-58.9 31.3c3.6 10.8 8.4 23.5 14.4 36.2c7.5 15.9 16.2 30.4 25.8 40.5C433 460.5 441.2 464 448 464c13.3 0 24 10.7 24 24s-10.7 24-24 24c-25.2 0-45-13.5-59.5-28.8c-14.5-15.4-25.7-34.9-34.2-53c-8-17-14.1-33.8-18.3-46.9c-5.2 .4-10.6 .6-16 .6s-10.8-.2-16-.6c-4.2 13-10.3 29.9-18.3 46.9c-8.5 18.1-19.8 37.6-34.2 53C237 498.5 217.2 512 192 512c-13.3 0-24-10.7-24-24s10.7-24 24-24c6.8 0 15-3.5 24.5-13.7c9.5-10.1 18.3-24.6 25.8-40.5c5.9-12.6 10.7-25.4 14.4-36.2c-22.8-7.7-42.5-19-58.9-31.3c-2.9 9.4-6 19.5-9.5 28.5c-4.8 12.2-11.6 25.6-22.7 36C153.6 417.9 138.4 424 120 424c-21.4 0-39.9-10-53.1-17.1l0 0c-1.1-.6-2.2-1.2-3.2-1.7c-15-8-26.3-13.2-39.7-13.2c-13.3 0-24-10.7-24-24s10.7-24 24-24c26.6 0 47.3 10.8 62.3 18.8c16.8 9 25 13.2 33.7 13.2c6.8 0 10.2-1.9 12.8-4.3c3.4-3.2 7-8.8 10.8-18.5c3-7.7 5.6-16.1 8.6-25.9c.8-2.7 1.7-5.6 2.6-8.6c1.2-4 2.6-8.2 4-12.5c-3.9-4.5-7.4-8.8-10.5-12.7C136.9 303.5 122.5 312 104 312c-17.5 0-30.7-7.4-40.4-16.7c-8.4-8.1-14.8-18.3-19.4-25.7l-.6-.9c-5.4-8.6-8.8-13.9-12.5-17.4c-2.8-2.7-4.6-3.3-7.1-3.3c-13.3 0-24-10.7-24-24s10.7-24 24-24c17.5 0 30.7 7.4 40.4 16.7c8.4 8.1 14.8 18.3 19.4 25.7l.6 .9c5.4 8.6 8.8 13.9 12.5 17.4c2.8 2.7 4.6 3.3 7.1 3.3c3.3 0 8.7-1.7 19.4-13.4c5.1-5.6 10.4-12.3 16.7-20.4l1.4-1.8c5.8-7.4 12.2-15.7 19.3-24c13.8-16.2 30.3-32.8 51.4-46.4l-15.1-30.2c-1.7 .1-3.4 .2-5.1 .2c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64zm208 0a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + }, + "free": [ + "solid" + ] + }, + "speakap": { + "changes": [ + "5.0.0", + "5.4.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f3", + "label": "Speakap", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 391.78C-15.41 303.59-8 167.42 80.64 87.64s224.8-73 304.21 15.24 72 224.36-16.64 304.14c-18.74 16.87 64 43.09 42 52.26-82.06 34.21-253.91 35-346.23-67.5zm213.31-211.6l38.5-40.86c-9.61-8.89-32-26.83-76.17-27.6-52.33-.91-95.86 28.3-96.77 80-.2 11.33.29 36.72 29.42 54.83 34.46 21.42 86.52 21.51 86 52.26-.37 21.28-26.42 25.81-38.59 25.6-3-.05-30.23-.46-47.61-24.62l-40 42.61c28.16 27 59 32.62 83.49 33.05 10.23.18 96.42.33 97.84-81 .28-15.81-2.07-39.72-28.86-56.59-34.36-21.64-85-19.45-84.43-49.75.41-23.25 31-25.37 37.53-25.26.43 0 26.62.26 39.62 17.37z" + } + }, + "free": [ + "brands" + ] + }, + "speaker-deck": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f83c", + "label": "Speaker Deck", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M213.86 296H100a100 100 0 0 1 0-200h132.84a40 40 0 0 1 0 80H98c-26.47 0-26.45 40 0 40h113.82a100 100 0 0 1 0 200H40a40 40 0 0 1 0-80h173.86c26.48 0 26.46-40 0-40zM298 416a120.21 120.21 0 0 0 51.11-80h64.55a19.83 19.83 0 0 0 19.66-20V196a19.83 19.83 0 0 0-19.66-20H296.42a60.77 60.77 0 0 0 0-80h136.93c43.44 0 78.65 35.82 78.65 80v160c0 44.18-35.21 80-78.65 80z" + } + }, + "free": [ + "brands" + ] + }, + "spell-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f891" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dictionary", + "edit", + "editor", + "grammar", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f891", + "label": "Spell Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M112 0C99.1 0 87.4 7.8 82.5 19.7l-66.7 160-13.3 32c-6.8 16.3 .9 35 17.2 41.8s35-.9 41.8-17.2L66.7 224h90.7l5.1 12.3c6.8 16.3 25.5 24 41.8 17.2s24-25.5 17.2-41.8l-13.3-32-66.7-160C136.6 7.8 124.9 0 112 0zm18.7 160H93.3L112 115.2 130.7 160zM256 32v96 96c0 17.7 14.3 32 32 32h80c44.2 0 80-35.8 80-80c0-23.1-9.8-43.8-25.4-58.4c6-11.2 9.4-24 9.4-37.6c0-44.2-35.8-80-80-80H288c-17.7 0-32 14.3-32 32zm96 64H320V64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16zm-32 64h32 16c8.8 0 16 7.2 16 16s-7.2 16-16 16H320V160zM566.6 310.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L352 434.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l192-192z" + } + }, + "free": [ + "solid" + ] + }, + "spider": { + "aliases": { + "unicodes": { + "composite": [ + "1f577" + ], + "secondary": [ + "10f717" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arachnid", + "bug", + "charlotte", + "crawl", + "eight", + "halloween", + "insect", + "spider" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f717", + "label": "Spider", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M158.4 32.6c4.8-12.4-1.4-26.3-13.8-31s-26.3 1.4-31 13.8L81.1 100c-7.9 20.7-3 44.1 12.7 59.7l57.4 57.4L70.8 190.3c-2.4-.8-4.3-2.7-5.1-5.1L46.8 128.4C42.6 115.8 29 109 16.4 113.2S-3 131 1.2 143.6l18.9 56.8c5.6 16.7 18.7 29.8 35.4 35.4L116.1 256 55.6 276.2c-16.7 5.6-29.8 18.7-35.4 35.4L1.2 368.4C-3 381 3.8 394.6 16.4 398.8s26.2-2.6 30.4-15.2l18.9-56.8c.8-2.4 2.7-4.3 5.1-5.1l80.4-26.8L93.7 352.3C78.1 368 73.1 391.4 81.1 412l32.5 84.6c4.8 12.4 18.6 18.5 31 13.8s18.5-18.6 13.8-31l-32.5-84.6c-1.1-3-.4-6.3 1.8-8.5L160 353.9c1 52.1 43.6 94.1 96 94.1s95-41.9 96-94.1l32.3 32.3c2.2 2.2 2.9 5.6 1.8 8.5l-32.5 84.6c-4.8 12.4 1.4 26.3 13.8 31s26.3-1.4 31-13.8L430.9 412c7.9-20.7 3-44.1-12.7-59.7l-57.4-57.4 80.4 26.8c2.4 .8 4.3 2.7 5.1 5.1l18.9 56.8c4.2 12.6 17.8 19.4 30.4 15.2s19.4-17.8 15.2-30.4l-18.9-56.8c-5.6-16.7-18.7-29.8-35.4-35.4L395.9 256l60.5-20.2c16.7-5.6 29.8-18.7 35.4-35.4l18.9-56.8c4.2-12.6-2.6-26.2-15.2-30.4s-26.2 2.6-30.4 15.2l-18.9 56.8c-.8 2.4-2.7 4.3-5.1 5.1l-80.4 26.8 57.4-57.4c15.6-15.6 20.6-39 12.7-59.7L398.4 15.4C393.6 3 379.8-3.2 367.4 1.6s-18.5 18.6-13.8 31l32.5 84.6c1.1 3 .4 6.3-1.8 8.5L336 174.1V160c0-31.8-18.6-59.3-45.5-72.2c-9.1-4.4-18.5 3.3-18.5 13.4V112c0 8.8-7.2 16-16 16s-16-7.2-16-16V101.2c0-10.1-9.4-17.7-18.5-13.4C194.6 100.7 176 128.2 176 160v14.1l-48.3-48.3c-2.2-2.2-2.9-5.6-1.8-8.5l32.5-84.6z" + } + }, + "free": [ + "solid" + ] + }, + "spinner": { + "aliases": { + "unicodes": { + "secondary": [ + "10f110" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "circle", + "loading", + "progress" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f110", + "label": "Spinner", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321866, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M304 48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zm0 416c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM48 304c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm464-48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM142.9 437c18.7-18.7 18.7-49.1 0-67.9s-49.1-18.7-67.9 0s-18.7 49.1 0 67.9s49.1 18.7 67.9 0zm0-294.2c18.7-18.7 18.7-49.1 0-67.9S93.7 56.2 75 75s-18.7 49.1 0 67.9s49.1 18.7 67.9 0zM369.1 437c18.7 18.7 49.1 18.7 67.9 0s18.7-49.1 0-67.9s-49.1-18.7-67.9 0s-18.7 49.1 0 67.9z" + } + }, + "free": [ + "solid" + ] + }, + "splotch": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5bc" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Ink", + "blob", + "blotch", + "glob", + "stain" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5bc", + "label": "Splotch", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208.5 62.3l28.1-36.9C248.8 9.4 267.8 0 288 0c28.5 0 53.6 18.7 61.8 46l17.8 59.4c10.3 34.4 36.1 62 69.8 74.6l39.8 14.9c20.9 7.9 34.8 27.9 34.8 50.2c0 16.9-7.9 32.8-21.5 42.9l-67.3 50.5c-24.3 18.2-37.2 47.9-33.8 78.1l2.5 22.7c4.3 38.7-26 72.6-65 72.6c-14.8 0-29.3-5.1-40.9-14.3l-55.3-44.3c-4.5-3.6-9.3-6.7-14.5-9.2c-15.8-7.9-33.7-10.4-51-7.3L82.4 451.9C47.8 458.2 16 431.6 16 396.5c0-13.2 4.7-26 13.1-36.2l11.2-13.4c14.6-17.4 22.6-39.4 22.6-62.1c0-18.8-5.5-37.2-15.8-53L8.8 173.5C3.1 164.7 0 154.4 0 143.9c0-33.4 30.1-58.8 63-53.2l51.3 8.7c35.9 6.1 72.2-8.2 94.2-37.1z" + } + }, + "free": [ + "solid" + ] + }, + "spoon": { + "aliases": { + "names": [ + "utensil-spoon" + ], + "unicodes": { + "composite": [ + "1f944", + "f1b1" + ], + "secondary": [ + "10f2e5" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cutlery", + "dining", + "scoop", + "silverware", + "spoon", + "tableware" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2e5", + "label": "Spoon", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M245.8 220.9c-14.5-17.6-21.8-39.2-21.8-60.8C224 80 320 0 416 0c53 0 96 43 96 96c0 96-80 192-160.2 192c-21.6 0-43.2-7.3-60.8-21.8L54.6 502.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L245.8 220.9z" + } + }, + "free": [ + "solid" + ] + }, + "spotify": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1bc", + "label": "Spotify", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z" + } + }, + "free": [ + "brands" + ] + }, + "spray-can": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5bd" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Paint", + "aerosol", + "design", + "graffiti", + "tag" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5bd", + "label": "Spray Can", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 0h64c17.7 0 32 14.3 32 32v96H96V32c0-17.7 14.3-32 32-32zM0 256c0-53 43-96 96-96H224c53 0 96 43 96 96V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V256zm240 80A80 80 0 1 0 80 336a80 80 0 1 0 160 0zM256 64a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM384 32a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm64 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm32 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM448 256a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM384 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "spray-can-sparkles": { + "aliases": { + "names": [ + "air-freshener" + ], + "unicodes": { + "secondary": [ + "10f5d0" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "car", + "clean", + "deodorize", + "fresh", + "pine", + "scent" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5d0", + "label": "Spray Can Sparkles", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 32v96H224V32c0-17.7-14.3-32-32-32H128C110.3 0 96 14.3 96 32zm0 128c-53 0-96 43-96 96V464c0 26.5 21.5 48 48 48H272c26.5 0 48-21.5 48-48V256c0-53-43-96-96-96H96zm64 96a80 80 0 1 1 0 160 80 80 0 1 1 0-160zM384 48c0-1.4-1-3-2.2-3.6L352 32 339.6 2.2C339 1 337.4 0 336 0s-3 1-3.6 2.2L320 32 290.2 44.4C289 45 288 46.6 288 48c0 1.4 1 3 2.2 3.6L320 64l12.4 29.8C333 95 334.6 96 336 96s3-1 3.6-2.2L352 64l29.8-12.4C383 51 384 49.4 384 48zm76.4 45.8C461 95 462.6 96 464 96s3-1 3.6-2.2L480 64l29.8-12.4C511 51 512 49.4 512 48c0-1.4-1-3-2.2-3.6L480 32 467.6 2.2C467 1 465.4 0 464 0s-3 1-3.6 2.2L448 32 418.2 44.4C417 45 416 46.6 416 48c0 1.4 1 3 2.2 3.6L448 64l12.4 29.8zm7.2 100.4c-.6-1.2-2.2-2.2-3.6-2.2s-3 1-3.6 2.2L448 224l-29.8 12.4c-1.2 .6-2.2 2.2-2.2 3.6c0 1.4 1 3 2.2 3.6L448 256l12.4 29.8c.6 1.2 2.2 2.2 3.6 2.2s3-1 3.6-2.2L480 256l29.8-12.4c1.2-.6 2.2-2.2 2.2-3.6c0-1.4-1-3-2.2-3.6L480 224l-12.4-29.8zM448 144c0-1.4-1-3-2.2-3.6L416 128 403.6 98.2C403 97 401.4 96 400 96s-3 1-3.6 2.2L384 128l-29.8 12.4c-1.2 .6-2.2 2.2-2.2 3.6c0 1.4 1 3 2.2 3.6L384 160l12.4 29.8c.6 1.2 2.2 2.2 3.6 2.2s3-1 3.6-2.2L416 160l29.8-12.4c1.2-.6 2.2-2.2 2.2-3.6z" + } + }, + "free": [ + "solid" + ] + }, + "square": { + "aliases": { + "unicodes": { + "composite": [ + "25a0", + "25fb", + "25fc", + "f096" + ], + "secondary": [ + "10f0c8" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Square", + "black medium square", + "block", + "box", + "geometric", + "shape", + "square", + "white medium square" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0c8", + "label": "Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321871, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96z" + }, + "regular": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 32C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H384zM384 80H64C55.16 80 48 87.16 48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "square-arrow-up-right": { + "aliases": { + "names": [ + "external-link-square" + ], + "unicodes": { + "secondary": [ + "10f14c" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "diagonal", + "new", + "open", + "send", + "share" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f14c", + "label": "Square Arrow Up Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384zM160 144c-13.3 0-24 10.7-24 24s10.7 24 24 24h94.1L119 327c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l135-135V328c0 13.3 10.7 24 24 24s24-10.7 24-24V168c0-13.3-10.7-24-24-24H160z" + } + }, + "free": [ + "solid" + ] + }, + "square-behance": { + "aliases": { + "names": [ + "behance-square" + ] + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.0.3", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1b5", + "label": "Behance Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6.1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3.3-4.8.3-7.2z" + } + }, + "free": [ + "brands" + ] + }, + "square-caret-down": { + "aliases": { + "names": [ + "caret-square-down" + ], + "unicodes": { + "secondary": [ + "10f150" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "caret-square-o-down", + "dropdown", + "expand", + "menu", + "more", + "triangle" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f150", + "label": "Square Caret Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 480c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0zM224 352c-6.7 0-13-2.8-17.6-7.7l-104-112c-6.5-7-8.2-17.2-4.4-25.9s12.5-14.4 22-14.4l208 0c9.5 0 18.2 5.7 22 14.4s2.1 18.9-4.4 25.9l-104 112c-4.5 4.9-10.9 7.7-17.6 7.7z" + }, + "regular": { + "last_modified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 432c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0zm64-16c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320zM224 352c-6.7 0-13-2.8-17.6-7.7l-104-112c-6.5-7-8.2-17.2-4.4-25.9s12.5-14.4 22-14.4l208 0c9.5 0 18.2 5.7 22 14.4s2.1 18.9-4.4 25.9l-104 112c-4.5 4.9-10.9 7.7-17.6 7.7z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "square-caret-left": { + "aliases": { + "names": [ + "caret-square-left" + ], + "unicodes": { + "secondary": [ + "10f191" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "back", + "caret-square-o-left", + "previous", + "triangle" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f191", + "label": "Square Caret Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416zM128 256c0-6.7 2.8-13 7.7-17.6l112-104c7-6.5 17.2-8.2 25.9-4.4s14.4 12.5 14.4 22l0 208c0 9.5-5.7 18.2-14.4 22s-18.9 2.1-25.9-4.4l-112-104c-4.9-4.5-7.7-10.9-7.7-17.6z" + }, + "regular": { + "last_modified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 416c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80c-8.8 0-16 7.2-16 16l0 320zm16 64c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480zm64-224c0-6.7 2.8-13 7.7-17.6l112-104c7-6.5 17.2-8.2 25.9-4.4s14.4 12.5 14.4 22l0 208c0 9.5-5.7 18.2-14.4 22s-18.9 2.1-25.9-4.4l-112-104c-4.9-4.5-7.7-10.9-7.7-17.6z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "square-caret-right": { + "aliases": { + "names": [ + "caret-square-right" + ], + "unicodes": { + "secondary": [ + "10f152" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "caret-square-o-right", + "forward", + "next", + "triangle" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f152", + "label": "Square Caret Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 96c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320zM320 256c0 6.7-2.8 13-7.7 17.6l-112 104c-7 6.5-17.2 8.2-25.9 4.4s-14.4-12.5-14.4-22l0-208c0-9.5 5.7-18.2 14.4-22s18.9-2.1 25.9 4.4l112 104c4.9 4.5 7.7 10.9 7.7 17.6z" + }, + "regular": { + "last_modified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 96c0-8.8-7.2-16-16-16L64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320zM384 32c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96C0 60.7 28.7 32 64 32l320 0zM320 256c0 6.7-2.8 13-7.7 17.6l-112 104c-7 6.5-17.2 8.2-25.9 4.4s-14.4-12.5-14.4-22l0-208c0-9.5 5.7-18.2 14.4-22s18.9-2.1 25.9 4.4l112 104c4.9 4.5 7.7 10.9 7.7 17.6z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "square-caret-up": { + "aliases": { + "names": [ + "caret-square-up" + ], + "unicodes": { + "secondary": [ + "10f151" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "caret-square-o-up", + "collapse", + "triangle", + "upload" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f151", + "label": "Square Caret Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM224 160c6.7 0 13 2.8 17.6 7.7l104 112c6.5 7 8.2 17.2 4.4 25.9s-12.5 14.4-22 14.4H120c-9.5 0-18.2-5.7-22-14.4s-2.1-18.9 4.4-25.9l104-112c4.5-4.9 10.9-7.7 17.6-7.7z" + }, + "regular": { + "last_modified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80zM0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zm224 64c6.7 0 13 2.8 17.6 7.7l104 112c6.5 7 8.2 17.2 4.4 25.9s-12.5 14.4-22 14.4l-208 0c-9.5 0-18.2-5.7-22-14.4s-2.1-18.9 4.4-25.9l104-112c4.5-4.9 10.9-7.7 17.6-7.7z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "square-check": { + "aliases": { + "names": [ + "check-square" + ], + "unicodes": { + "composite": [ + "2611", + "2705", + "f046" + ], + "secondary": [ + "10f14a" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "accept", + "agree", + "box", + "button", + "check", + "check box with check", + "check mark button", + "checkmark", + "confirm", + "correct", + "done", + "mark", + "ok", + "select", + "success", + "tick", + "todo", + "yes", + "✓" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f14a", + "label": "Square Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321868, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + }, + "regular": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M211.8 339.8C200.9 350.7 183.1 350.7 172.2 339.8L108.2 275.8C97.27 264.9 97.27 247.1 108.2 236.2C119.1 225.3 136.9 225.3 147.8 236.2L192 280.4L300.2 172.2C311.1 161.3 328.9 161.3 339.8 172.2C350.7 183.1 350.7 200.9 339.8 211.8L211.8 339.8zM0 96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80H64C55.16 80 48 87.16 48 96z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "square-dribbble": { + "aliases": { + "names": [ + "dribbble-square" + ] + }, + "changes": [ + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f397", + "label": "Dribbble Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z" + } + }, + "free": [ + "brands" + ] + }, + "square-envelope": { + "aliases": { + "names": [ + "envelope-square" + ], + "unicodes": { + "secondary": [ + "10f199" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "e-mail", + "email", + "letter", + "mail", + "message", + "notification", + "support" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f199", + "label": "Square Envelope", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM218 271.7L64.2 172.4C66 156.4 79.5 144 96 144H352c16.5 0 30 12.4 31.8 28.4L230 271.7c-1.8 1.2-3.9 1.8-6 1.8s-4.2-.6-6-1.8zm29.4 26.9L384 210.4V336c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V210.4l136.6 88.2c7 4.5 15.1 6.9 23.4 6.9s16.4-2.4 23.4-6.9z" + } + }, + "free": [ + "solid" + ] + }, + "square-facebook": { + "aliases": { + "names": [ + "facebook-square" + ] + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.8.2", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "social network" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f082", + "label": "Facebook Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z" + } + }, + "free": [ + "brands" + ] + }, + "square-font-awesome": { + "changes": [ + "5.0.0", + "5.0.1", + "6.0.0-beta1", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e5ad", + "label": "Font Awesome in Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384.5,32.5h-320c-35.3,0-64,28.7-64,64v320c0,35.3,28.7,64,64,64h320c35.3,0,64-28.7,64-64v-320 C448.5,61.2,419.8,32.5,384.5,32.5z M336.5,312.5c-31.6,11.2-41.2,16-59.8,16c-31.4,0-43.2-16-74.6-16c-10.2,0-18.2,1.6-25.6,4v-32 c7.4-2.2,15.4-4,25.6-4c31.2,0,43.2,16,74.6,16c10.2,0,17.8-1.4,27.8-4.6v-96c-10,3.2-17.6,4.6-27.8,4.6c-31.4,0-43.2-16-74.6-16 c-25.4,0-37.4,10.4-57.6,14.4v153.6c0,8.8-7.2,16-16,16c-8.8,0-16-7.2-16-16v-192c0-8.8,7.2-16,16-16c8.8,0,16,7.2,16,16v6.4 c20.2-4,32.2-14.4,57.6-14.4c31.2,0,43.2,16,74.6,16c18.6,0,28.2-4.8,59.8-16V312.5z" + } + }, + "free": [ + "brands" + ] + }, + "square-font-awesome-stroke": { + "aliases": { + "names": [ + "font-awesome-alt" + ] + }, + "changes": [ + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f35c", + "label": "Font Awesome in Square with Stroke Outline", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M201.6,152c-25.4,0-37.4,10.4-57.6,14.4V160c0-8.8-7.2-16-16-16s-16,7.2-16,16v192c0,0.8,0.1,1.6,0.2,2.4 c0.1,0.4,0.1,0.8,0.2,1.2c1.6,7.1,8,12.4,15.6,12.4s14-5.3,15.6-12.4c0.1-0.4,0.2-0.8,0.2-1.2c0.1-0.8,0.2-1.6,0.2-2.4V198.4 c4-0.8,7.7-1.8,11.2-3c14.3-4.7,26-11.4,46.4-11.4c31.4,0,43.2,16,74.6,16c8.9,0,15.9-1.1,24.2-3.5c1.2-0.3,2.4-0.7,3.6-1.1v96 c-10,3.2-17.6,4.6-27.8,4.6c-31.4,0-43.4-16-74.6-16c-10.2,0-18.2,1.8-25.6,4v32c7.4-2.4,15.4-4,25.6-4c31.4,0,43.2,16,74.6,16 c18.6,0,28.2-4.8,59.8-16V152c-31.6,11.2-41.2,16-59.8,16C244.8,168,232.8,152,201.6,152z M384,32H64C28.7,32,0,60.7,0,96v320 c0,35.3,28.7,64,64,64h320c35.3,0,64-28.7,64-64V96C448,60.7,419.3,32,384,32z M416,416c0,17.6-14.4,32-32,32H64 c-17.6,0-32-14.4-32-32V96c0-17.6,14.4-32,32-32h320c17.6,0,32,14.4,32,32V416z" + } + }, + "free": [ + "brands" + ] + }, + "square-full": { + "aliases": { + "unicodes": { + "composite": [ + "1f7e5", + "1f7e6", + "1f7e7", + "1f7e8", + "1f7e9", + "1f7ea", + "1f7eb", + "2b1b", + "2b1c" + ], + "secondary": [ + "10f45c" + ] + } + }, + "changes": [ + "5.0.5", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "black large square", + "block", + "blue", + "blue square", + "box", + "brown", + "brown square", + "geometric", + "green", + "green square", + "orange", + "orange square", + "purple", + "purple square", + "red", + "red square", + "shape", + "square", + "white large square", + "yellow", + "yellow square" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f45c", + "label": "Square Full", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660014061, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 0H512V512H0V0z" + }, + "regular": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 0V512H0V0H512zM464 48H48V464H464V48z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "square-git": { + "aliases": { + "names": [ + "git-square" + ] + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.8.2", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d2", + "label": "Git Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M100.59 334.24c48.57 3.31 58.95 2.11 58.95 11.94 0 20-65.55 20.06-65.55 1.52.01-5.09 3.29-9.4 6.6-13.46zm27.95-116.64c-32.29 0-33.75 44.47-.75 44.47 32.51 0 31.71-44.47.75-44.47zM448 80v352a48 48 0 0 1-48 48H48a48 48 0 0 1-48-48V80a48 48 0 0 1 48-48h352a48 48 0 0 1 48 48zm-227 69.31c0 14.49 8.38 22.88 22.86 22.88 14.74 0 23.13-8.39 23.13-22.88S258.62 127 243.88 127c-14.48 0-22.88 7.84-22.88 22.31zM199.18 195h-49.55c-25-6.55-81.56-4.85-81.56 46.75 0 18.8 9.4 32 21.85 38.11C74.23 294.23 66.8 301 66.8 310.6c0 6.87 2.79 13.22 11.18 16.76-8.9 8.4-14 14.48-14 25.92C64 373.35 81.53 385 127.52 385c44.22 0 69.87-16.51 69.87-45.73 0-36.67-28.23-35.32-94.77-39.38l8.38-13.43c17 4.74 74.19 6.23 74.19-42.43 0-11.69-4.83-19.82-9.4-25.67l23.38-1.78zm84.34 109.84l-13-1.78c-3.82-.51-4.07-1-4.07-5.09V192.52h-52.6l-2.79 20.57c15.75 5.55 17 4.86 17 10.17V298c0 5.62-.31 4.58-17 6.87v20.06h72.42zM384 315l-6.87-22.37c-40.93 15.37-37.85-12.41-37.85-16.73v-60.72h37.85v-25.41h-35.82c-2.87 0-2 2.52-2-38.63h-24.18c-2.79 27.7-11.68 38.88-34 41.42v22.62c20.47 0 19.82-.85 19.82 2.54v66.57c0 28.72 11.43 40.91 41.67 40.91 14.45 0 30.45-4.83 41.38-10.2z" + } + }, + "free": [ + "brands" + ] + }, + "square-github": { + "aliases": { + "names": [ + "github-square" + ] + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "octocat" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f092", + "label": "GitHub Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4.2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9.2 36.5.2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9.4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7.6 3.9 1.9.3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2.2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7.9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2.4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8.9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1.9-1.1 2.8-.9 4.3.6 1.3 1.3 1.8 3.3.9 4.1zm-9.1-9.1c-.9.6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9.9-2.4.4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5.9-.9 2.4-.4 3.5.6 1.1 1.3 1.3 2.8.4 3.5zm-6.7-7.4c-.4.9-1.7 1.1-2.8.4-1.3-.6-1.9-1.7-1.5-2.6.4-.6 1.5-.9 2.8-.4 1.3.7 1.9 1.8 1.5 2.6z" + } + }, + "free": [ + "brands" + ] + }, + "square-gitlab": { + "aliases": { + "names": [ + "gitlab-square" + ] + }, + "changes": [ + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e5ae", + "label": "Square Gitlab", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M48 32H400C426.5 32 448 53.5 448 80V432C448 458.5 426.5 480 400 480H48C21.5 480 0 458.5 0 432V80C0 53.5 21.5 32 48 32zM382.1 224.9L337.5 108.5C336.6 106.2 334.9 104.2 332.9 102.9C331.3 101.9 329.5 101.3 327.7 101.1C325.9 100.9 324 101.2 322.3 101.8C320.6 102.5 319 103.5 317.8 104.9C316.6 106.3 315.7 107.9 315.2 109.7L285 201.9H162.1L132.9 109.7C132.4 107.9 131.4 106.3 130.2 104.9C128.1 103.6 127.4 102.5 125.7 101.9C123.1 101.2 122.1 100.1 120.3 101.1C118.5 101.3 116.7 101.9 115.1 102.9C113.1 104.2 111.5 106.2 110.6 108.5L65.94 224.9L65.47 226.1C59.05 242.9 58.26 261.3 63.22 278.6C68.18 295.9 78.62 311.1 92.97 321.9L93.14 322L93.52 322.3L161.4 373.2L215.6 414.1C217.1 415.1 220.9 416.9 223.9 416.9C226.9 416.9 229.9 415.1 232.3 414.1L286.4 373.2L354.8 322L355 321.9C369.4 311 379.8 295.8 384.8 278.6C389.7 261.3 388.1 242.9 382.5 226.1L382.1 224.9z" + } + }, + "free": [ + "brands" + ] + }, + "square-google-plus": { + "aliases": { + "names": [ + "google-plus-square" + ] + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "social network" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f0d4", + "label": "Google Plus Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014470, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z" + } + }, + "free": [ + "brands" + ] + }, + "square-h": { + "aliases": { + "names": [ + "h-square" + ], + "unicodes": { + "secondary": [ + "10f0fd" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "emergency", + "hospital", + "hotel", + "letter", + "map" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0fd", + "label": "Square H", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM336 152V256 360c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H160l0 80c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-208c0-13.3 10.7-24 24-24s24 10.7 24 24v80H288V152c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + }, + "free": [ + "solid" + ] + }, + "square-hacker-news": { + "aliases": { + "names": [ + "hacker-news-square" + ] + }, + "changes": [ + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3af", + "label": "Hacker News Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1.2-.3.3-.4 0 .1 0 .3-.1.4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z" + } + }, + "free": [ + "brands" + ] + }, + "square-instagram": { + "aliases": { + "names": [ + "instagram-square" + ] + }, + "changes": [ + "5.12.1", + "5.14.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e055", + "label": "Instagram Square", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224,202.66A53.34,53.34,0,1,0,277.36,256,53.38,53.38,0,0,0,224,202.66Zm124.71-41a54,54,0,0,0-30.41-30.41c-21-8.29-71-6.43-94.3-6.43s-73.25-1.93-94.31,6.43a54,54,0,0,0-30.41,30.41c-8.28,21-6.43,71.05-6.43,94.33S91,329.26,99.32,350.33a54,54,0,0,0,30.41,30.41c21,8.29,71,6.43,94.31,6.43s73.24,1.93,94.3-6.43a54,54,0,0,0,30.41-30.41c8.35-21,6.43-71.05,6.43-94.33S357.1,182.74,348.75,161.67ZM224,338a82,82,0,1,1,82-82A81.9,81.9,0,0,1,224,338Zm85.38-148.3a19.14,19.14,0,1,1,19.13-19.14A19.1,19.1,0,0,1,309.42,189.74ZM400,32H48A48,48,0,0,0,0,80V432a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V80A48,48,0,0,0,400,32ZM382.88,322c-1.29,25.63-7.14,48.34-25.85,67s-41.4,24.63-67,25.85c-26.41,1.49-105.59,1.49-132,0-25.63-1.29-48.26-7.15-67-25.85s-24.63-41.42-25.85-67c-1.49-26.42-1.49-105.61,0-132,1.29-25.63,7.07-48.34,25.85-67s41.47-24.56,67-25.78c26.41-1.49,105.59-1.49,132,0,25.63,1.29,48.33,7.15,67,25.85s24.63,41.42,25.85,67.05C384.37,216.44,384.37,295.56,382.88,322Z" + } + }, + "free": [ + "brands" + ] + }, + "square-js": { + "aliases": { + "names": [ + "js-square" + ] + }, + "changes": [ + "5.0.0", + "5.0.3", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3b9", + "label": "JavaScript (JS) Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z" + } + }, + "free": [ + "brands" + ] + }, + "square-lastfm": { + "aliases": { + "names": [ + "lastfm-square" + ] + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.0.11", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f203", + "label": "last.fm Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5.1 36.7-30.7 50.6-76.1 50.6z" + } + }, + "free": [ + "brands" + ] + }, + "square-minus": { + "aliases": { + "names": [ + "minus-square" + ], + "unicodes": { + "composite": [ + "f147" + ], + "secondary": [ + "10f146" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "collapse", + "delete", + "hide", + "minify", + "negative", + "remove", + "shape", + "trash" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f146", + "label": "Square Minus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321869, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm88 200H296c13.3 0 24 10.7 24 24s-10.7 24-24 24H152c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + }, + "regular": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M312 232C325.3 232 336 242.7 336 256C336 269.3 325.3 280 312 280H136C122.7 280 112 269.3 112 256C112 242.7 122.7 232 136 232H312zM0 96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80H64C55.16 80 48 87.16 48 96z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "square-nfi": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "non-food item", + "supplies" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e576", + "label": "Square Nfi", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H384c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm75.7 64.6C68.8 162.5 64 168.8 64 176V336c0 8.8 7.2 16 16 16s16-7.2 16-16V233.8l66.3 110.5c3.7 6.2 11.1 9.1 18 7.2s11.7-8.2 11.7-15.4V176c0-8.8-7.2-16-16-16s-16 7.2-16 16V278.2L93.7 167.8c-3.7-6.2-11.1-9.1-18-7.2zM224 176v64 96c0 8.8 7.2 16 16 16s16-7.2 16-16V256h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H256V192h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H240c-8.8 0-16 7.2-16 16zm160 0c0-8.8-7.2-16-16-16s-16 7.2-16 16V336c0 8.8 7.2 16 16 16s16-7.2 16-16V176z" + } + }, + "free": [ + "solid" + ] + }, + "square-odnoklassniki": { + "aliases": { + "names": [ + "odnoklassniki-square" + ] + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f264", + "label": "Odnoklassniki Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z" + } + }, + "free": [ + "brands" + ] + }, + "square-parking": { + "aliases": { + "names": [ + "parking" + ], + "unicodes": { + "composite": [ + "1f17f" + ], + "secondary": [ + "10f540" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "car", + "garage", + "meter", + "parking" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f540", + "label": "Square Parking", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM192 256h48c17.7 0 32-14.3 32-32s-14.3-32-32-32H192v64zm48 64H192v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 168c0-22.1 17.9-40 40-40h72c53 0 96 43 96 96s-43 96-96 96z" + } + }, + "free": [ + "solid" + ] + }, + "square-pen": { + "aliases": { + "names": [ + "pen-square", + "pencil-square" + ], + "unicodes": { + "secondary": [ + "10f14b" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "pencil-square", + "update", + "write" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f14b", + "label": "Square Pen", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM325.8 139.7l14.4 14.4c15.6 15.6 15.6 40.9 0 56.6l-21.4 21.4-71-71 21.4-21.4c15.6-15.6 40.9-15.6 56.6 0zM119.9 289L225.1 183.8l71 71L190.9 359.9c-4.1 4.1-9.2 7-14.9 8.4l-60.1 15c-5.5 1.4-11.2-.2-15.2-4.2s-5.6-9.7-4.2-15.2l15-60.1c1.4-5.6 4.3-10.8 8.4-14.9z" + } + }, + "free": [ + "solid" + ] + }, + "square-person-confined": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "captivity", + "confined" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e577", + "label": "Square Person Confined", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm96 112a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm80 104c0-30.9 25.1-56 56-56s56 25.1 56 56V350.1c0 36.4-29.5 65.9-65.9 65.9c-17.5 0-34.3-6.9-46.6-19.3L184.8 342l-28.1 56.3c-7.9 15.8-27.1 22.2-42.9 14.3s-22.2-27.1-14.3-42.9l48-96c4.6-9.2 13.3-15.6 23.5-17.3s20.5 1.7 27.8 9L240 306.7V248z" + } + }, + "free": [ + "solid" + ] + }, + "square-phone": { + "aliases": { + "names": [ + "phone-square" + ], + "unicodes": { + "secondary": [ + "10f098" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "support", + "telephone", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f098", + "label": "Square Phone", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm90.7 96.7c9.7-2.6 19.9 2.3 23.7 11.6l20 48c3.4 8.2 1 17.6-5.8 23.2L168 231.7c16.6 35.2 45.1 63.7 80.3 80.3l20.2-24.7c5.6-6.8 15-9.2 23.2-5.8l48 20c9.3 3.9 14.2 14 11.6 23.7l-12 44C336.9 378 329 384 320 384C196.3 384 96 283.7 96 160c0-9 6-16.9 14.7-19.3l44-12z" + } + }, + "free": [ + "solid" + ] + }, + "square-phone-flip": { + "aliases": { + "names": [ + "phone-square-alt" + ], + "unicodes": { + "secondary": [ + "10f87b" + ] + } + }, + "changes": [ + "5.9.0", + "5.10.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "call", + "earphone", + "number", + "support", + "telephone", + "voice" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f87b", + "label": "Square Phone Flip", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384zm-90.7 96.7c-9.7-2.6-19.9 2.3-23.7 11.6l-20 48c-3.4 8.2-1 17.6 5.8 23.2L280 231.7c-16.6 35.2-45.1 63.7-80.3 80.3l-20.2-24.7c-5.6-6.8-15-9.2-23.2-5.8l-48 20c-9.3 3.9-14.2 14-11.6 23.7l12 44C111.1 378 119 384 128 384c123.7 0 224-100.3 224-224c0-9-6-16.9-14.7-19.3l-44-12z" + } + }, + "free": [ + "solid" + ] + }, + "square-pied-piper": { + "aliases": { + "names": [ + "pied-piper-square" + ] + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e01e", + "label": "Pied Piper Square Logo (Old)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z" + } + }, + "free": [ + "brands" + ] + }, + "square-pinterest": { + "aliases": { + "names": [ + "pinterest-square" + ] + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f0d3", + "label": "Pinterest Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3.8-3.4 5-20.1 6.8-27.8.6-2.5.3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2.8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z" + } + }, + "free": [ + "brands" + ] + }, + "square-plus": { + "aliases": { + "names": [ + "plus-square" + ], + "unicodes": { + "composite": [ + "f196" + ], + "secondary": [ + "10f0fe" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "expand", + "new", + "positive", + "shape" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f0fe", + "label": "Square Plus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321869, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM200 344V280H136c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V168c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H248v64c0 13.3-10.7 24-24 24s-24-10.7-24-24z" + }, + "regular": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M200 344V280H136C122.7 280 112 269.3 112 256C112 242.7 122.7 232 136 232H200V168C200 154.7 210.7 144 224 144C237.3 144 248 154.7 248 168V232H312C325.3 232 336 242.7 336 256C336 269.3 325.3 280 312 280H248V344C248 357.3 237.3 368 224 368C210.7 368 200 357.3 200 344zM0 96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80H64C55.16 80 48 87.16 48 96z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "square-poll-horizontal": { + "aliases": { + "names": [ + "poll-h" + ], + "unicodes": { + "secondary": [ + "10f682" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "graph", + "results", + "survey", + "trend", + "vote", + "voting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f682", + "label": "Square Poll Horizontal", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 96c0-35.3-28.7-64-64-64L64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-320zM256 160c0 17.7-14.3 32-32 32l-96 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l96 0c17.7 0 32 14.3 32 32zm64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l192 0zM192 352c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l32 0c17.7 0 32 14.3 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "square-poll-vertical": { + "aliases": { + "names": [ + "poll" + ], + "unicodes": { + "secondary": [ + "10f681" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chart", + "graph", + "results", + "survey", + "trend", + "vote", + "voting" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f681", + "label": "Square Poll Vertical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm64 192c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V256c0-17.7 14.3-32 32-32zm64-64c0-17.7 14.3-32 32-32s32 14.3 32 32V352c0 17.7-14.3 32-32 32s-32-14.3-32-32V160zM320 288c17.7 0 32 14.3 32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V320c0-17.7 14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "square-reddit": { + "aliases": { + "names": [ + "reddit-square" + ] + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a2", + "label": "reddit Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z" + } + }, + "free": [ + "brands" + ] + }, + "square-root-variable": { + "aliases": { + "names": [ + "square-root-alt" + ], + "unicodes": { + "secondary": [ + "10f698" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arithmetic", + "calculus", + "division", + "math" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f698", + "label": "Square Root Variable", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M282.6 78.1c8-27.3 33-46.1 61.4-46.1H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H344L238.7 457c-3.6 12.3-14.1 21.2-26.8 22.8s-25.1-4.6-31.5-15.6L77.6 288H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H77.6c22.8 0 43.8 12.1 55.3 31.8l65.2 111.8L282.6 78.1zM393.4 233.4c12.5-12.5 32.8-12.5 45.3 0L480 274.7l41.4-41.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L525.3 320l41.4 41.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L480 365.3l-41.4 41.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L434.7 320l-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z" + } + }, + "free": [ + "solid" + ] + }, + "square-rss": { + "aliases": { + "names": [ + "rss-square" + ], + "unicodes": { + "secondary": [ + "10f143" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blog", + "feed", + "journal", + "news", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f143", + "label": "Square Rss", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM96 136c0-13.3 10.7-24 24-24c137 0 248 111 248 248c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-110.5-89.5-200-200-200c-13.3 0-24-10.7-24-24zm0 96c0-13.3 10.7-24 24-24c83.9 0 152 68.1 152 152c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-57.4-46.6-104-104-104c-13.3 0-24-10.7-24-24zm0 120a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + }, + "free": [ + "solid" + ] + }, + "square-share-nodes": { + "aliases": { + "names": [ + "share-alt-square" + ], + "unicodes": { + "secondary": [ + "10f1e1" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "forward", + "save", + "send", + "social" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1e1", + "label": "Square Share Nodes", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321870, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM384 160c0 35.3-28.7 64-64 64c-15.4 0-29.5-5.4-40.6-14.5L194.1 256l85.3 46.5c11-9.1 25.2-14.5 40.6-14.5c35.3 0 64 28.7 64 64s-28.7 64-64 64s-64-28.7-64-64c0-2.5 .1-4.9 .4-7.3L174.5 300c-11.7 12.3-28.2 20-46.5 20c-35.3 0-64-28.7-64-64s28.7-64 64-64c18.3 0 34.8 7.7 46.5 20l81.9-44.7c-.3-2.4-.4-4.9-.4-7.3c0-35.3 28.7-64 64-64s64 28.7 64 64z" + } + }, + "free": [ + "solid" + ] + }, + "square-snapchat": { + "aliases": { + "names": [ + "snapchat-square" + ] + }, + "changes": [ + "4.6.0", + "5.0.0", + "6.0.0-beta1", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2ad", + "label": "Snapchat Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384,32H64A64,64,0,0,0,0,96V416a64,64,0,0,0,64,64H384a64,64,0,0,0,64-64V96A64,64,0,0,0,384,32Zm-3.907,319.309-.083.1a32.364,32.364,0,0,1-8.717,6.823,90.26,90.26,0,0,1-20.586,8.2,12.694,12.694,0,0,0-3.852,1.76c-2.158,1.909-2.1,4.64-4.4,8.55a23.137,23.137,0,0,1-6.84,7.471c-6.707,4.632-14.244,4.923-22.23,5.23-7.214.274-15.39.581-24.729,3.669-3.761,1.245-7.753,3.694-12.377,6.533-11.265,6.9-26.68,16.353-52.3,16.353s-40.925-9.4-52.106-16.279c-4.657-2.888-8.675-5.362-12.543-6.64-9.339-3.08-17.516-3.4-24.729-3.67-7.986-.307-15.523-.6-22.231-5.229a23.085,23.085,0,0,1-6.01-6.11c-3.2-4.632-2.855-7.8-5.254-9.895a13.428,13.428,0,0,0-4.1-1.834,89.986,89.986,0,0,1-20.313-8.127,32.905,32.905,0,0,1-8.3-6.284c-6.583-6.757-8.276-14.776-5.686-21.824,3.436-9.338,11.571-12.111,19.4-16.262,14.776-8.027,26.348-18.055,34.433-29.884a68.236,68.236,0,0,0,5.985-10.567c.789-2.158.772-3.329.241-4.416a7.386,7.386,0,0,0-2.208-2.217c-2.532-1.676-5.113-3.353-6.882-4.5-3.27-2.141-5.868-3.818-7.529-4.98-6.267-4.383-10.65-9.04-13.4-14.245a28.4,28.4,0,0,1-1.369-23.584c4.134-10.924,14.469-17.706,26.978-17.706a37.141,37.141,0,0,1,7.845.83c.689.15,1.37.307,2.042.482-.108-7.43.058-15.357.722-23.119,2.358-27.261,11.912-41.589,21.874-52.994a86.836,86.836,0,0,1,22.28-17.931C188.254,100.383,205.312,96,224,96s35.828,4.383,50.944,13.016a87.169,87.169,0,0,1,22.239,17.9c9.961,11.406,19.516,25.709,21.874,52.995a231.194,231.194,0,0,1,.713,23.118c.673-.174,1.362-.332,2.051-.481a37.131,37.131,0,0,1,7.844-.83c12.5,0,22.82,6.782,26.971,17.706a28.37,28.37,0,0,1-1.4,23.559c-2.74,5.2-7.123,9.861-13.39,14.244-1.668,1.187-4.258,2.864-7.529,4.981-1.835,1.187-4.541,2.947-7.164,4.682a6.856,6.856,0,0,0-1.951,2.034c-.506,1.046-.539,2.191.166,4.208a69.015,69.015,0,0,0,6.085,10.792c8.268,12.1,20.188,22.313,35.454,30.407,1.486.772,2.98,1.5,4.441,2.258.722.332,1.569.763,2.491,1.3,4.9,2.723,9.2,6.01,11.455,12.153C387.821,336.915,386.269,344.7,380.093,351.309Zm-16.719-18.461c-50.313-24.314-58.332-61.918-58.689-64.749-.431-3.379-.921-6.035,2.806-9.472,3.594-3.328,19.541-13.19,23.965-16.278,7.33-5.114,10.534-10.219,8.16-16.495-1.66-4.316-5.686-5.976-9.961-5.976a18.5,18.5,0,0,0-3.993.448c-8.035,1.743-15.838,5.769-20.354,6.857a7.1,7.1,0,0,1-1.66.224c-2.408,0-3.279-1.071-3.088-3.968.564-8.783,1.759-25.925.373-41.937-1.884-22.032-8.99-32.948-17.432-42.6-4.051-4.624-23.135-24.654-59.536-24.654S168.53,134.359,164.479,139c-8.434,9.654-15.531,20.57-17.432,42.6-1.386,16.013-.141,33.147.373,41.937.166,2.756-.68,3.968-3.088,3.968a7.1,7.1,0,0,1-1.66-.224c-4.507-1.087-12.31-5.113-20.346-6.856a18.494,18.494,0,0,0-3.993-.449c-4.25,0-8.3,1.636-9.961,5.977-2.374,6.276.847,11.381,8.168,16.494,4.425,3.088,20.371,12.958,23.966,16.279,3.719,3.437,3.237,6.093,2.805,9.471-.356,2.79-8.384,40.394-58.689,64.749-2.946,1.428-7.96,4.45.88,9.331,13.88,7.628,23.111,6.807,30.3,11.43,6.093,3.927,2.5,12.394,6.923,15.449,5.454,3.76,21.583-.266,42.335,6.6,17.433,5.744,28.116,22.015,58.963,22.015s41.788-16.3,58.938-21.973c20.795-6.865,36.89-2.839,42.336-6.6,4.433-3.055.822-11.522,6.923-15.448,7.181-4.624,16.411-3.8,30.3-11.472C371.36,337.355,366.346,334.333,363.374,332.848Z" + } + }, + "free": [ + "brands" + ] + }, + "square-steam": { + "aliases": { + "names": [ + "steam-square" + ] + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1b7", + "label": "Steam Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4.5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z" + } + }, + "free": [ + "brands" + ] + }, + "square-tumblr": { + "aliases": { + "names": [ + "tumblr-square" + ] + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f174", + "label": "Tumblr Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2.5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2.5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z" + } + }, + "free": [ + "brands" + ] + }, + "square-twitter": { + "aliases": { + "names": [ + "twitter-square" + ] + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [ + "social network", + "tweet" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f081", + "label": "Twitter Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z" + } + }, + "free": [ + "brands" + ] + }, + "square-up-right": { + "aliases": { + "names": [ + "external-link-square-alt" + ], + "unicodes": { + "composite": [ + "2197" + ], + "secondary": [ + "10f360" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "diagonal", + "direction", + "external-link-square", + "intercardinal", + "new", + "northeast", + "open", + "share", + "up-right arrow" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f360", + "label": "Square Up Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M384 32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96C0 60.7 28.7 32 64 32H384zM320 313.4V176c0-8.8-7.2-16-16-16H166.6c-12.5 0-22.6 10.1-22.6 22.6c0 6 2.4 11.8 6.6 16L184 232l-66.3 66.3C114 302 112 306.9 112 312s2 10 5.7 13.7l36.7 36.7c3.6 3.6 8.5 5.7 13.7 5.7s10-2 13.7-5.7L248 296l33.4 33.4c4.2 4.2 10 6.6 16 6.6c12.5 0 22.6-10.1 22.6-22.6z" + } + }, + "free": [ + "solid" + ] + }, + "square-viadeo": { + "aliases": { + "names": [ + "viadeo-square" + ] + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.7.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2aa", + "label": "Viadeo Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4.2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z" + } + }, + "free": [ + "brands" + ] + }, + "square-vimeo": { + "aliases": { + "names": [ + "vimeo-square" + ] + }, + "changes": [ + "4.0.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f194", + "label": "Vimeo Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z" + } + }, + "free": [ + "brands" + ] + }, + "square-virus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "coronavirus", + "covid-19", + "disease", + "flu", + "infection", + "pandemic" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e578", + "label": "Square Virus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM223.8 93.7c13.3 0 24 10.7 24 24c0 29.3 35.4 43.9 56.1 23.2c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9c-20.7 20.7-6 56.1 23.2 56.1c13.3 0 24 10.7 24 24s-10.7 24-24 24c-29.3 0-43.9 35.4-23.2 56.1c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0c-20.7-20.7-56.1-6-56.1 23.2c0 13.3-10.7 24-24 24s-24-10.7-24-24c0-29.3-35.4-43.9-56.1-23.2c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9c20.7-20.7 6-56.1-23.2-56.1c-13.3 0-24-10.7-24-24s10.7-24 24-24c29.3 0 43.9-35.4 23.2-56.1c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0c20.7 20.7 56.1 6 56.1-23.2c0-13.3 10.7-24 24-24zM192 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm88 32a24 24 0 1 0 -48 0 24 24 0 1 0 48 0z" + } + }, + "free": [ + "solid" + ] + }, + "square-whatsapp": { + "aliases": { + "names": [ + "whatsapp-square" + ] + }, + "changes": [ + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f40c", + "label": "What's App Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4.9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6.1 2.4.1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3.3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9.9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z" + } + }, + "free": [ + "brands" + ] + }, + "square-xing": { + "aliases": { + "names": [ + "xing-square" + ] + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f169", + "label": "Xing Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6.2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1.1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z" + } + }, + "free": [ + "brands" + ] + }, + "square-xmark": { + "aliases": { + "names": [ + "times-square", + "xmark-square" + ], + "unicodes": { + "composite": [ + "274e" + ], + "secondary": [ + "10f2d3" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "close", + "cross", + "cross mark button", + "incorrect", + "mark", + "notice", + "notification", + "notify", + "problem", + "square", + "window", + "wrong", + "x", + "×" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2d3", + "label": "Square Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321870, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm79 143c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + } + }, + "free": [ + "solid" + ] + }, + "square-youtube": { + "aliases": { + "names": [ + "youtube-square" + ], + "unicodes": { + "composite": [ + "f166" + ] + } + }, + "changes": [ + "5.0.3", + "6.1.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f431", + "label": "YouTube Square", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z" + } + }, + "free": [ + "brands" + ] + }, + "squarespace": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5be", + "label": "Squarespace", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M186.12 343.34c-9.65 9.65-9.65 25.29 0 34.94 9.65 9.65 25.29 9.65 34.94 0L378.24 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.95 445.1c19.27 19.29 50.53 19.31 69.82.04l.04-.04 119.25-119.24c38.59-38.59 38.59-101.14 0-139.72-38.59-38.59-101.15-38.59-139.72 0l-157.22 157.2zm244.53-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.18c-19.27 19.29-50.53 19.31-69.82.05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01.01c-9.65 9.64-9.66 25.28-.02 34.93l.02.02c38.58 38.57 101.14 38.57 139.72 0l157.2-157.2c9.65-9.65 9.65-25.29.01-34.93zm-261.99 87.33l157.18-157.18c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.72 290.93c-19.28 19.29-50.56 19.3-69.85.01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218.03 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02.02L28.93 186.14c-38.58 38.59-38.58 101.14 0 139.72 38.6 38.59 101.13 38.59 139.73.01zm-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.21-157.19c19.28-19.29 50.55-19.3 69.84-.02l.02.02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.13-38.59-139.72 0L81.33 238.54c-9.65 9.64-9.65 25.28-.01 34.93h.01z" + } + }, + "free": [ + "brands" + ] + }, + "stack-exchange": { + "changes": [ + "4.0.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f18d", + "label": "Stack Exchange", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z" + } + }, + "free": [ + "brands" + ] + }, + "stack-overflow": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f16c", + "label": "Stack Overflow", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014479, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M290.7 311L95 269.7 86.8 309l195.7 41zm51-87L188.2 95.7l-25.5 30.8 153.5 128.3zm-31.2 39.7L129.2 179l-16.7 36.5L293.7 300zM262 32l-32 24 119.3 160.3 32-24zm20.5 328h-200v39.7h200zm39.7 80H42.7V320h-40v160h359.5V320h-40z" + } + }, + "free": [ + "brands" + ] + }, + "stackpath": { + "changes": [ + "5.8.2" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f842", + "label": "Stackpath", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M244.6 232.4c0 8.5-4.26 20.49-21.34 20.49h-19.61v-41.47h19.61c17.13 0 21.34 12.36 21.34 20.98zM448 32v448H0V32zM151.3 287.84c0-21.24-12.12-34.54-46.72-44.85-20.57-7.41-26-10.91-26-18.63s7-14.61 20.41-14.61c14.09 0 20.79 8.45 20.79 18.35h30.7l.19-.57c.5-19.57-15.06-41.65-51.12-41.65-23.37 0-52.55 10.75-52.55 38.29 0 19.4 9.25 31.29 50.74 44.37 17.26 6.15 21.91 10.4 21.91 19.48 0 15.2-19.13 14.23-19.47 14.23-20.4 0-25.65-9.1-25.65-21.9h-30.8l-.18.56c-.68 31.32 28.38 45.22 56.63 45.22 29.98 0 51.12-13.55 51.12-38.29zm125.38-55.63c0-25.3-18.43-45.46-53.42-45.46h-51.78v138.18h32.17v-47.36h19.61c30.25 0 53.42-15.95 53.42-45.36zM297.94 325L347 186.78h-31.09L268 325zm106.52-138.22h-31.09L325.46 325h29.94z" + } + }, + "free": [ + "brands" + ] + }, + "staff-snake": { + "aliases": { + "names": [ + "rod-asclepius", + "rod-snake", + "staff-aesculapius" + ] + }, + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "asclepius", + "asklepian", + "health", + "serpent", + "wellness" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e579", + "label": "Staff Snake", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M222.6 43.2l-.2 4.8H288c53 0 96 43 96 96s-43 96-96 96H248V160h40c8.8 0 16-7.2 16-16s-7.2-16-16-16H248 220l-4.5 144H256c53 0 96 43 96 96s-43 96-96 96H240V384h16c8.8 0 16-7.2 16-16s-7.2-16-16-16H213l-3.1 99.5L208.5 495l0 1c-.3 8.9-7.6 16-16.5 16s-16.2-7.1-16.5-16l0-1-1-31H136c-22.1 0-40-17.9-40-40s17.9-40 40-40h36l-1-32H152c-53 0-96-43-96-96c0-47.6 34.6-87.1 80-94.7V256c0 8.8 7.2 16 16 16h16.5L164 128H136 122.6c-9 18.9-28.3 32-50.6 32H56c-30.9 0-56-25.1-56-56S25.1 48 56 48h8 8 89.5l-.1-4.8L161 32c0-.7 0-1.3 0-1.9c.5-16.6 14.1-30 31-30s30.5 13.4 31 30c0 .6 0 1.3 0 1.9l-.4 11.2zM64 112a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + }, + "free": [ + "solid" + ] + }, + "stairs": { + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "exit", + "steps", + "up" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e289", + "label": "Stairs", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 64c0-17.7 14.3-32 32-32H544c17.7 0 32 14.3 32 32s-14.3 32-32 32H448v96c0 17.7-14.3 32-32 32H320v96c0 17.7-14.3 32-32 32H192v96c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h96V320c0-17.7 14.3-32 32-32h96V192c0-17.7 14.3-32 32-32h96V64z" + } + }, + "free": [ + "solid" + ] + }, + "stamp": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5bf" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "art", + "certificate", + "imprint", + "rubber", + "seal" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5bf", + "label": "Stamp", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M312 201.8c0-17.4 9.2-33.2 19.9-47C344.5 138.5 352 118.1 352 96c0-53-43-96-96-96s-96 43-96 96c0 22.1 7.5 42.5 20.1 58.8c10.7 13.8 19.9 29.6 19.9 47c0 29.9-24.3 54.2-54.2 54.2H112C50.1 256 0 306.1 0 368c0 20.9 13.4 38.7 32 45.3V464c0 26.5 21.5 48 48 48H432c26.5 0 48-21.5 48-48V413.3c18.6-6.6 32-24.4 32-45.3c0-61.9-50.1-112-112-112H366.2c-29.9 0-54.2-24.3-54.2-54.2zM416 416v32H96V416H416z" + } + }, + "free": [ + "solid" + ] + }, + "stapler": { + "changes": [ + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "desktop", + "milton", + "office", + "paperclip", + "staple" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e5af", + "label": "Stapler", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 299.3V304 432c0 26.5-21.5 48-48 48H512 448 64c-17.7 0-32-14.3-32-32s14.3-32 32-32H448V368H96c-17.7 0-32-14.3-32-32V219.4L33.8 214C14.2 210.5 0 193.5 0 173.7c0-8.9 2.9-17.5 8.2-24.6l35.6-47.5C76.7 57.8 128.2 32 182.9 32c27 0 53.6 6.3 77.8 18.4L586.9 213.5C619.5 229.7 640 263 640 299.3zM448 304V288L128 230.9V304H448z" + } + }, + "free": [ + "solid" + ] + }, + "star": { + "aliases": { + "unicodes": { + "composite": [ + "2b50", + "f006" + ], + "secondary": [ + "10f005" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "favorite", + "important", + "night", + "rating", + "score", + "star" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f005", + "label": "Star", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321871, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M316.9 18C311.6 7 300.4 0 288.1 0s-23.4 7-28.8 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3s14.9-19.3 12.9-31.3L438.5 329 542.7 225.9c8.6-8.5 11.7-21.2 7.9-32.7s-13.7-19.9-25.7-21.7L381.2 150.3 316.9 18z" + }, + "regular": { + "last_modified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M287.9 0C297.1 0 305.5 5.25 309.5 13.52L378.1 154.8L531.4 177.5C540.4 178.8 547.8 185.1 550.7 193.7C553.5 202.4 551.2 211.9 544.8 218.2L433.6 328.4L459.9 483.9C461.4 492.9 457.7 502.1 450.2 507.4C442.8 512.7 432.1 513.4 424.9 509.1L287.9 435.9L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.9 115.1 483.9L142.2 328.4L31.11 218.2C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C270.4 5.249 278.7 0 287.9 0L287.9 0zM287.9 78.95L235.4 187.2C231.9 194.3 225.1 199.3 217.3 200.5L98.98 217.9L184.9 303C190.4 308.5 192.9 316.4 191.6 324.1L171.4 443.7L276.6 387.5C283.7 383.7 292.2 383.7 299.2 387.5L404.4 443.7L384.2 324.1C382.9 316.4 385.5 308.5 391 303L476.9 217.9L358.6 200.5C350.7 199.3 343.9 194.3 340.5 187.2L287.9 78.95z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "star-and-crescent": { + "aliases": { + "unicodes": { + "composite": [ + "262a" + ], + "secondary": [ + "10f699" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Muslim", + "islam", + "muslim", + "religion", + "star and crescent" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f699", + "label": "Star And Crescent", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256C0 114.6 114.6 0 256 0c33 0 64.6 6.3 93.6 17.7c7.4 2.9 11.5 10.7 9.8 18.4s-8.8 13-16.7 12.4c-4.8-.3-9.7-.5-14.6-.5c-114.9 0-208 93.1-208 208s93.1 208 208 208c4.9 0 9.8-.2 14.6-.5c7.9-.5 15 4.7 16.7 12.4s-2.4 15.5-9.8 18.4C320.6 505.7 289 512 256 512C114.6 512 0 397.4 0 256zM375.4 137.4c3.5-7.1 13.7-7.1 17.2 0l31.5 63.8c1.4 2.8 4.1 4.8 7.2 5.3l70.4 10.2c7.9 1.1 11 10.8 5.3 16.4l-50.9 49.6c-2.3 2.2-3.3 5.4-2.8 8.5l12 70.1c1.3 7.8-6.9 13.8-13.9 10.1l-63-33.1c-2.8-1.5-6.1-1.5-8.9 0l-63 33.1c-7 3.7-15.3-2.3-13.9-10.1l12-70.1c.5-3.1-.5-6.3-2.8-8.5L261 233.1c-5.7-5.6-2.6-15.2 5.3-16.4l70.4-10.2c3.1-.5 5.8-2.4 7.2-5.3l31.5-63.8z" + } + }, + "free": [ + "solid" + ] + }, + "star-half": { + "aliases": { + "unicodes": { + "composite": [ + "f123" + ], + "secondary": [ + "10f089" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "rating", + "score", + "star-half-empty", + "star-half-full" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f089", + "label": "Star Half", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321871, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 0c-12.2 .1-23.3 7-28.6 18L195 150.3 51.4 171.5c-12 1.8-22 10.2-25.7 21.7s-.7 24.2 7.9 32.7L137.8 329 113.2 474.7c-2 12 3 24.2 12.9 31.3s23 8 33.8 2.3L288 439.8V0zM429.9 512c1.1 .1 2.1 .1 3.2 0h-3.2z" + }, + "regular": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M293.3 .6123C304.2 3.118 311.9 12.82 311.9 24V408.7C311.9 417.5 307.1 425.7 299.2 429.8L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.1 115.1 483.9L142.2 328.4L31.11 218.3C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C271.2 3.46 282.4-1.893 293.3 .6127L293.3 .6123zM263.9 128.4L235.4 187.2C231.9 194.3 225.1 199.3 217.3 200.5L98.98 217.9L184.9 303C190.4 308.5 192.9 316.4 191.6 324.1L171.4 443.7L263.9 394.3L263.9 128.4z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "star-half-stroke": { + "aliases": { + "names": [ + "star-half-alt" + ], + "unicodes": { + "secondary": [ + "10f5c0" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "rating", + "score", + "star-half-empty", + "star-half-full" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f5c0", + "label": "Star Half Stroke", + "voted": true, + "svg": { + "solid": { + "last_modified": 1660321871, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 376.4l.1-.1 26.4 14.1 85.2 45.5-16.5-97.6-4.8-28.7 20.7-20.5 70.1-69.3-96.1-14.2-29.3-4.3-12.9-26.6L288.1 86.9l-.1 .3V376.4zm175.1 98.3c2 12-3 24.2-12.9 31.3s-23 8-33.8 2.3L288.1 439.8 159.8 508.3C149 514 135.9 513.1 126 506s-14.9-19.3-12.9-31.3L137.8 329 33.6 225.9c-8.6-8.5-11.7-21.2-7.9-32.7s13.7-19.9 25.7-21.7L195 150.3 259.4 18c5.4-11 16.5-18 28.8-18s23.4 7 28.8 18l64.3 132.3 143.6 21.2c12 1.8 22 10.2 25.7 21.7s.7 24.2-7.9 32.7L438.5 329l24.6 145.7z" + }, + "regular": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M378.1 154.8L531.4 177.5C540.4 178.8 547.8 185.1 550.7 193.7C553.5 202.4 551.2 211.9 544.8 218.2L433.6 328.4L459.9 483.9C461.4 492.9 457.7 502.1 450.2 507.4C442.8 512.7 432.1 513.4 424.9 509.1L287.9 435.9L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.9 115.1 483.9L142.2 328.4L31.11 218.2C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C270.4 5.249 278.7 0 287.9 0C297.1 0 305.5 5.25 309.5 13.52L378.1 154.8zM287.1 384.7C291.9 384.7 295.7 385.6 299.2 387.5L404.4 443.7L384.2 324.1C382.9 316.4 385.5 308.5 391 303L476.9 217.9L358.6 200.5C350.7 199.3 343.9 194.3 340.5 187.2L287.1 79.09L287.1 384.7z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "star-of-david": { + "aliases": { + "unicodes": { + "composite": [ + "2721" + ], + "secondary": [ + "10f69a" + ] + } + }, + "changes": [ + "5.3.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "David", + "Jew", + "Jewish", + "jewish", + "judaism", + "religion", + "star", + "star of David" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f69a", + "label": "Star Of David", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M388.2 309.5L367.1 344h42.3l-21.1-34.5zM355.4 256l-54-88H178.6l-54 88 54 88H301.4l54-88zm65.7 0l53.4 87c3.6 5.9 5.5 12.7 5.5 19.6c0 20.7-16.8 37.4-37.4 37.4H332.7l-56.2 91.5C268.8 504.3 254.9 512 240 512s-28.8-7.7-36.6-20.5L147.3 400H37.4C16.8 400 0 383.2 0 362.6c0-6.9 1.9-13.7 5.5-19.6l53.4-87L5.5 169C1.9 163.1 0 156.3 0 149.4C0 128.8 16.8 112 37.4 112H147.3l56.2-91.5C211.2 7.7 225.1 0 240 0s28.8 7.7 36.6 20.5L332.7 112H442.6c20.7 0 37.4 16.8 37.4 37.4c0 6.9-1.9 13.7-5.5 19.6l-53.4 87zm-54-88l21.1 34.5L409.4 168H367.1zM267 112L240 68l-27 44h54zM112.9 168H70.6l21.1 34.5L112.9 168zM91.8 309.5L70.6 344h42.3L91.8 309.5zM213 400l27 44 27-44H213z" + } + }, + "free": [ + "solid" + ] + }, + "star-of-life": { + "aliases": { + "unicodes": { + "secondary": [ + "10f621" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "doctor", + "emt", + "first aid", + "health", + "medical" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f621", + "label": "Star Of Life", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M186 32c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V172.9l122-70.4c15.3-8.8 34.9-3.6 43.7 11.7l16 27.7c8.8 15.3 3.6 34.9-11.7 43.7L330 256l122 70.4c15.3 8.8 20.5 28.4 11.7 43.7l-16 27.7c-8.8 15.3-28.4 20.6-43.7 11.7L282 339.1V480c0 17.7-14.3 32-32 32H218c-17.7 0-32-14.3-32-32V339.1L64 409.6c-15.3 8.8-34.9 3.6-43.7-11.7l-16-27.7C-4.5 354.8 .7 335.3 16 326.4L138 256 16 185.6C.7 176.7-4.5 157.2 4.3 141.9l16-27.7C29.1 98.8 48.7 93.6 64 102.4l122 70.4V32z" + } + }, + "free": [ + "solid" + ] + }, + "staylinked": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f5", + "label": "StayLinked", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 440, + 512 + ], + "width": 440, + "height": 512, + "path": "M382.7 292.5l2.7 2.7-170-167.3c-3.5-3.5-9.7-3.7-13.8-.5L144.3 171c-4.2 3.2-4.6 8.7-1.1 12.2l68.1 64.3c3.6 3.5 9.9 3.7 14 .5l.1-.1c4.1-3.2 10.4-3 14 .5l84 81.3c3.6 3.5 3.2 9-.9 12.2l-93.2 74c-4.2 3.3-10.5 3.1-14.2-.4L63.2 268c-3.5-3.5-9.7-3.7-13.9-.5L3.5 302.4c-4.2 3.2-4.7 8.7-1.2 12.2L211 510.7s7.4 6.8 17.3-.8l198-163.9c4-3.2 4.4-8.7.7-12.2zm54.5-83.4L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7 171.7 165.1c3.7 3.5 10.1 3.7 14.3.4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7.9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1.1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9.5l160.4 159c3.7 3.5 10 3.7 14.1.5l45.8-35.8c4.1-3.2 4.4-8.7.7-12.2z" + } + }, + "free": [ + "brands" + ] + }, + "steam": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1b6", + "label": "Steam", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014477, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3.1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z" + } + }, + "free": [ + "brands" + ] + }, + "steam-symbol": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f6", + "label": "Steam Symbol", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5.2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9.1 76.2-33.9 76.2-76.2z" + } + }, + "free": [ + "brands" + ] + }, + "sterling-sign": { + "aliases": { + "names": [ + "gbp", + "pound-sign" + ], + "unicodes": { + "composite": [ + "a3" + ], + "secondary": [ + "10f154" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pound Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f154", + "label": "Sterling Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M112 160.4c0-35.5 28.8-64.4 64.4-64.4c6.9 0 13.8 1.1 20.4 3.3l81.2 27.1c16.8 5.6 34.9-3.5 40.5-20.2s-3.5-34.9-20.2-40.5L217 38.6c-13.1-4.4-26.8-6.6-40.6-6.6C105.5 32 48 89.5 48 160.4V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v44.5c0 17.4-4.7 34.5-13.7 49.4L4.6 431.5c-5.9 9.9-6.1 22.2-.4 32.2S20.5 480 32 480H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H88.5l.7-1.1C104.1 390 112 361.5 112 332.5V288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V160.4z" + } + }, + "free": [ + "solid" + ] + }, + "stethoscope": { + "aliases": { + "unicodes": { + "composite": [ + "1fa7a" + ], + "secondary": [ + "10f0f1" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "diagnosis", + "doctor", + "general practitioner", + "heart", + "hospital", + "infirmary", + "medicine", + "office", + "outpatient", + "stethoscope" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0f1", + "label": "Stethoscope", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M126.4 21.9c5.6 16.8-3.5 34.9-20.2 40.5L80 71.1V192c0 53 43 96 96 96s96-43 96-96V71.1l-26.1-8.7c-16.8-5.6-25.8-23.7-20.2-40.5s23.7-25.8 40.5-20.2l26.1 8.7C318.4 19.1 336 43.5 336 71.1V192c0 77.2-54.6 141.6-127.3 156.7C215 404.6 262.4 448 320 448c61.9 0 112-50.1 112-112V265.3c-28.3-12.3-48-40.5-48-73.3c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V336c0 97.2-78.8 176-176 176c-92.9 0-168.9-71.9-175.5-163.1C71.2 334.2 16 269.6 16 192V71.1c0-27.5 17.6-52 43.8-60.7L85.9 1.6c16.8-5.6 34.9 3.5 40.5 20.2zM464 224a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "sticker-mule": { + "changes": [ + "5.0.0", + "5.7.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f7", + "label": "Sticker Mule", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M561.7 199.6c-1.3.3.3 0 0 0zm-6.2-77.4c-7.7-22.3-5.1-7.2-13.4-36.9-1.6-6.5-3.6-14.5-6.2-20-4.4-8.7-4.6-7.5-4.6-9.5 0-5.3 30.7-45.3 19-46.9-5.7-.6-12.2 11.6-20.6 17-8.6 4.2-8 5-10.3 5-2.6 0-5.7-3-6.2-5-2-5.7 1.9-25.9-3.6-25.9-3.6 0-12.3 24.8-17 25.8-5.2 1.3-27.9-11.4-75.1 18-25.3 13.2-86.9 65.2-87 65.3-6.7 4.7-20 4.7-35.5 16-44.4 30.1-109.6 9.4-110.7 9-110.6-26.8-128-15.2-159 11.5-20.8 17.9-23.7 36.5-24.2 38.9-4.2 20.4 5.2 48.3 6.7 64.3 1.8 19.3-2.7 17.7 7.7 98.3.5 1 4.1 0 5.1 1.5 0 8.4-3.8 12.1-4.1 13-1.5 4.5-1.5 10.5 0 16 2.3 8.2 8.2 37.2 8.2 46.9 0 41.8.4 44 2.6 49.4 3.9 10 12.5 9.1 17 12 3.1 3.5-.5 8.5 1 12.5.5 2 3.6 4 6.2 5 9.2 3.6 27 .3 29.9-2.5 1.6-1.5.5-4.5 3.1-5 5.1 0 10.8-.5 14.4-2.5 5.1-2.5 4.1-6 1.5-10.5-.4-.8-7-13.3-9.8-16-2.1-2-5.1-3-7.2-4.5-5.8-4.9-10.3-19.4-10.3-19.5-4.6-19.4-10.3-46.3-4.1-66.8 4.6-17.2 39.5-87.7 39.6-87.8 4.1-6.5 17-11.5 27.3-7 6 1.9 19.3 22 65.4 30.9 47.9 8.7 97.4-2 112.2-2 2.8 2-1.9 13-.5 38.9 0 26.4-.4 13.7-4.1 29.9-2.2 9.7 3.4 23.2-1.5 46.9-1.4 9.8-9.9 32.7-8.2 43.4.5 1 1 2 1.5 3.5.5 4.5 1.5 8.5 4.6 10 7.3 3.6 12-3.5 9.8 11.5-.7 3.1-2.6 12 1.5 15 4.4 3.7 30.6 3.4 36.5.5 2.6-1.5 1.6-4.5 6.4-7.4 1.9-.9 11.3-.4 11.3-6.5.3-1.8-9.2-19.9-9.3-20-2.6-3.5-9.2-4.5-11.3-8-6.9-10.1-1.7-52.6.5-59.4 3-11 5.6-22.4 8.7-32.4 11-42.5 10.3-50.6 16.5-68.3.8-1.8 6.4-23.1 10.3-29.9 9.3-17 21.7-32.4 33.5-47.4 18-22.9 34-46.9 52-69.8 6.1-7 8.2-13.7 18-8 10.8 5.7 21.6 7 31.9 17 14.6 12.8 10.2 18.2 11.8 22.9 1.5 5 7.7 10.5 14.9 9.5 10.4-2 13-2.5 13.4-2.5 2.6-.5 5.7-5 7.2-8 3.1-5.5 7.2-9 7.2-16.5 0-7.7-.4-2.8-20.6-52.9z" + } + }, + "free": [ + "brands" + ] + }, + "stop": { + "aliases": { + "unicodes": { + "composite": [ + "23f9" + ], + "secondary": [ + "10f04d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "block", + "box", + "square", + "stop", + "stop button" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f04d", + "label": "Stop", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H320c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128z" + } + }, + "free": [ + "solid" + ] + }, + "stopwatch": { + "aliases": { + "unicodes": { + "composite": [ + "23f1" + ], + "secondary": [ + "10f2f2" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "clock", + "reminder", + "stopwatch", + "time" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2f2", + "label": "Stopwatch", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h16V98.4C76.3 113.8 0 200 0 304C0 418.9 93.1 512 208 512s208-93.1 208-208c0-41.8-12.3-80.7-33.5-113.2l24.1-24.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L339.7 143c-28.1-23-62.2-38.8-99.7-44.6V64h16c17.7 0 32-14.3 32-32s-14.3-32-32-32H208 160zm72 192V320c0 13.3-10.7 24-24 24s-24-10.7-24-24V192c0-13.3 10.7-24 24-24s24 10.7 24 24z" + } + }, + "free": [ + "solid" + ] + }, + "stopwatch-20": { + "aliases": { + "unicodes": { + "secondary": [ + "10e06f" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ABCs", + "countdown", + "covid-19", + "happy birthday", + "i will survive", + "reminder", + "seconds", + "time", + "timer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e06f", + "label": "Stopwatch 20", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824418, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32h16V98.4C76.3 113.8 0 200 0 304C0 418.9 93.1 512 208 512s208-93.1 208-208c0-41.8-12.3-80.7-33.5-113.2l24.1-24.1c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L339.7 143c-28.1-23-62.2-38.8-99.7-44.6V64h16c17.7 0 32-14.3 32-32s-14.3-32-32-32H160zM272 204c28.7 0 52 23.3 52 52v96c0 28.7-23.3 52-52 52s-52-23.3-52-52V256c0-28.7 23.3-52 52-52zm-12 52v96c0 6.6 5.4 12 12 12s12-5.4 12-12V256c0-6.6-5.4-12-12-12s-12 5.4-12 12zM143.5 244c-5.4 0-10.2 3.5-11.9 8.6l-.6 1.7c-3.5 10.5-14.8 16.1-25.3 12.6s-16.1-14.8-12.6-25.3l.6-1.7c7.2-21.5 27.2-35.9 49.8-35.9c29 0 52.5 23.5 52.5 52.5v2.2c0 13.4-4.9 26.4-13.8 36.4l-39 43.9c-6.2 7-10 15.7-10.9 24.9H176c11 0 20 9 20 20s-9 20-20 20H112c-11 0-20-9-20-20V368.3c0-20.6 7.5-40.4 21.2-55.8l39-43.9c2.4-2.7 3.7-6.2 3.7-9.8v-2.2c0-6.9-5.6-12.5-12.5-12.5z" + } + }, + "free": [ + "solid" + ] + }, + "store": { + "aliases": { + "unicodes": { + "secondary": [ + "10f54e" + ] + } + }, + "changes": [ + "5.0.13", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bodega", + "building", + "buy", + "market", + "purchase", + "shopping", + "store" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f54e", + "label": "Store", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M531.6 103.8L474.3 13.1C469.2 5 460.1 0 450.4 0H93.6C83.9 0 74.8 5 69.7 13.1L12.3 103.8c-29.6 46.8-3.4 111.9 51.9 119.4c4 .5 8.1 .8 12.1 .8c26.1 0 49.3-11.4 65.2-29c15.9 17.6 39.1 29 65.2 29c26.1 0 49.3-11.4 65.2-29c15.9 17.6 39.1 29 65.2 29c26.2 0 49.3-11.4 65.2-29c16 17.6 39.1 29 65.2 29c4.1 0 8.1-.3 12.1-.8c55.5-7.4 81.8-72.5 52.1-119.4zM483.7 254.9l-.1 0c-5.3 .7-10.7 1.1-16.2 1.1c-12.4 0-24.3-1.9-35.4-5.3V384H112V250.6c-11.2 3.5-23.2 5.4-35.6 5.4c-5.5 0-11-.4-16.3-1.1l-.1 0c-4.1-.6-8.1-1.3-12-2.3V384v64c0 35.3 28.7 64 64 64H432c35.3 0 64-28.7 64-64V384 252.6c-4 1-8 1.8-12.3 2.3z" + } + }, + "free": [ + "solid" + ] + }, + "store-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e071" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "buy", + "closed", + "covid-19", + "purchase", + "shopping" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e071", + "label": "Store Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-86.8-68V384 252.6c-4 1-8 1.8-12.3 2.3l-.1 0c-5.3 .7-10.7 1.1-16.2 1.1c-12.4 0-24.3-1.9-35.4-5.3V350.9L301.2 210.7c7-4.4 13.3-9.7 18.8-15.7c15.9 17.6 39.1 29 65.2 29c26.2 0 49.3-11.4 65.2-29c16 17.6 39.1 29 65.2 29c4.1 0 8.1-.3 12.1-.8c55.5-7.4 81.8-72.5 52.1-119.4L522.3 13.1C517.2 5 508.1 0 498.4 0H141.6c-9.7 0-18.8 5-23.9 13.1l-22.7 36L38.8 5.1zm73.4 218.1c4 .5 8.1 .8 12.1 .8c11 0 21.4-2 31-5.6L48.9 134.5c-6.1 40.6 19.5 82.8 63.3 88.7zM160 384V250.6c-11.2 3.5-23.2 5.4-35.6 5.4c-5.5 0-11-.4-16.3-1.1l-.1 0c-4.1-.6-8.1-1.3-12-2.3V384v64c0 35.3 28.7 64 64 64H480c12.9 0 24.8-3.8 34.9-10.3L365.5 384H160z" + } + }, + "free": [ + "solid" + ] + }, + "strava": { + "changes": [ + "5.0.0", + "5.0.1", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f428", + "label": "Strava", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M158.4 0L7 292h89.2l62.2-116.1L220.1 292h88.5zm150.2 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220z" + } + }, + "free": [ + "brands" + ] + }, + "street-view": { + "aliases": { + "unicodes": { + "secondary": [ + "10f21d" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "directions", + "location", + "map", + "navigation" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f21d", + "label": "Street View", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M320 64A64 64 0 1 0 192 64a64 64 0 1 0 128 0zm-96 96c-35.3 0-64 28.7-64 64v48c0 17.7 14.3 32 32 32h1.8l11.1 99.5c1.8 16.2 15.5 28.5 31.8 28.5h38.7c16.3 0 30-12.3 31.8-28.5L318.2 304H320c17.7 0 32-14.3 32-32V224c0-35.3-28.7-64-64-64H224zM132.3 394.2c13-2.4 21.7-14.9 19.3-27.9s-14.9-21.7-27.9-19.3c-32.4 5.9-60.9 14.2-82 24.8c-10.5 5.3-20.3 11.7-27.8 19.6C6.4 399.5 0 410.5 0 424c0 21.4 15.5 36.1 29.1 45c14.7 9.6 34.3 17.3 56.4 23.4C130.2 504.7 190.4 512 256 512s125.8-7.3 170.4-19.6c22.1-6.1 41.8-13.8 56.4-23.4c13.7-8.9 29.1-23.6 29.1-45c0-13.5-6.4-24.5-14-32.6c-7.5-7.9-17.3-14.3-27.8-19.6c-21-10.6-49.5-18.9-82-24.8c-13-2.4-25.5 6.3-27.9 19.3s6.3 25.5 19.3 27.9c30.2 5.5 53.7 12.8 69 20.5c3.2 1.6 5.8 3.1 7.9 4.5c3.6 2.4 3.6 7.2 0 9.6c-8.8 5.7-23.1 11.8-43 17.3C374.3 457 318.5 464 256 464s-118.3-7-157.7-17.9c-19.9-5.5-34.2-11.6-43-17.3c-3.6-2.4-3.6-7.2 0-9.6c2.1-1.4 4.8-2.9 7.9-4.5c15.3-7.7 38.8-14.9 69-20.5z" + } + }, + "free": [ + "solid" + ] + }, + "strikethrough": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0cc" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "edit", + "font", + "format", + "text", + "type" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0cc", + "label": "Strikethrough", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M161.3 144c3.2-17.2 14-30.1 33.7-38.6c21.1-9 51.8-12.3 88.6-6.5c11.9 1.9 48.8 9.1 60.1 12c17.1 4.5 34.6-5.6 39.2-22.7s-5.6-34.6-22.7-39.2c-14.3-3.8-53.6-11.4-66.6-13.4c-44.7-7-88.3-4.2-123.7 10.9c-36.5 15.6-64.4 44.8-71.8 87.3c-.1 .6-.2 1.1-.2 1.7c-2.8 23.9 .5 45.6 10.1 64.6c4.5 9 10.2 16.9 16.7 23.9H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H270.1c-.1 0-.3-.1-.4-.1l-1.1-.3c-36-10.8-65.2-19.6-85.2-33.1c-9.3-6.3-15-12.6-18.2-19.1c-3.1-6.1-5.2-14.6-3.8-27.4zM348.9 337.2c2.7 6.5 4.4 15.8 1.9 30.1c-3 17.6-13.8 30.8-33.9 39.4c-21.1 9-51.7 12.3-88.5 6.5c-18-2.9-49.1-13.5-74.4-22.1c-5.6-1.9-11-3.7-15.9-5.4c-16.8-5.6-34.9 3.5-40.5 20.3s3.5 34.9 20.3 40.5c3.6 1.2 7.9 2.7 12.7 4.3l0 0 0 0c24.9 8.5 63.6 21.7 87.6 25.6l0 0 .2 0c44.7 7 88.3 4.2 123.7-10.9c36.5-15.6 64.4-44.8 71.8-87.3c3.6-21 2.7-40.4-3.1-58.1H335.1c7 5.6 11.4 11.2 13.9 17.2z" + } + }, + "free": [ + "solid" + ] + }, + "stripe": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f429", + "label": "Stripe", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M165 144.7l-43.3 9.2-.2 142.4c0 26.3 19.8 43.3 46.1 43.3 14.6 0 25.3-2.7 31.2-5.9v-33.8c-5.7 2.3-33.7 10.5-33.7-15.7V221h33.7v-37.8h-33.7zm89.1 51.6l-2.7-13.1H213v153.2h44.3V233.3c10.5-13.8 28.2-11.1 33.9-9.3v-40.8c-6-2.1-26.7-6-37.1 13.1zm92.3-72.3l-44.6 9.5v36.2l44.6-9.5zM44.9 228.3c0-6.9 5.8-9.6 15.1-9.7 13.5 0 30.7 4.1 44.2 11.4v-41.8c-14.7-5.8-29.4-8.1-44.1-8.1-36 0-60 18.8-60 50.2 0 49.2 67.5 41.2 67.5 62.4 0 8.2-7.1 10.9-17 10.9-14.7 0-33.7-6.1-48.6-14.2v40c16.5 7.1 33.2 10.1 48.5 10.1 36.9 0 62.3-15.8 62.3-47.8 0-52.9-67.9-43.4-67.9-63.4zM640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3.6-11.6.6-15.9zm-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4.1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6.1-51.6-29.3-79.7-60.5-79.7zm-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4.1 23.9-10.9 41.8-27.4 41.8zm-126.7 33.7h44.6V183.2h-44.6z" + } + }, + "free": [ + "brands" + ] + }, + "stripe-s": { + "changes": [ + "5.0.1", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42a", + "label": "Stripe S", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014475, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M155.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C298.3 7.2 251.1 0 203.8 0 88.1 0 11 60.4 11 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5a396.09 396.09 0 0 0 156 32.4c118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9z" + } + }, + "free": [ + "brands" + ] + }, + "stroopwafel": { + "aliases": { + "unicodes": { + "secondary": [ + "10f551" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caramel", + "cookie", + "dessert", + "sweets", + "waffle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f551", + "label": "Stroopwafel", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM312.6 63.7c-6.2-6.2-16.4-6.2-22.6 0L256 97.6 222.1 63.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l33.9 33.9-45.3 45.3-56.6-56.6c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l56.6 56.6-45.3 45.3L86.3 199.4c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6L97.6 256 63.7 289.9c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l33.9-33.9 45.3 45.3-56.6 56.6c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l56.6-56.6 45.3 45.3-33.9 33.9c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0L256 414.4l33.9 33.9c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-33.9-33.9 45.3-45.3 56.6 56.6c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-56.6-56.6 45.3-45.3 33.9 33.9c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L414.4 256l33.9-33.9c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0l-33.9 33.9-45.3-45.3 56.6-56.6c6.2-6.2 6.2-16.4 0-22.6s-16.4-6.2-22.6 0l-56.6 56.6-45.3-45.3 33.9-33.9c6.2-6.2 6.2-16.4 0-22.6zM142.9 256l45.3-45.3L233.4 256l-45.3 45.3L142.9 256zm67.9 67.9L256 278.6l45.3 45.3L256 369.1l-45.3-45.3zM278.6 256l45.3-45.3L369.1 256l-45.3 45.3L278.6 256zm22.6-67.9L256 233.4l-45.3-45.3L256 142.9l45.3 45.3z" + } + }, + "free": [ + "solid" + ] + }, + "stubber": { + "changes": [ + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e5c7", + "label": "Stubber", + "voted": false, + "svg": { + "brands": { + "last_modified": 1667828915, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M136.5 294.2l58.8 22.9c9.1-36.8 25.4-61.1 55-61.1c49.4 0 71.4 63.6 142.4 63.6c15.6 0 35.9-2.8 55.3-13.3V368c0 61.8-50.4 112-112.3 112H0l41.8-56L0 368l41.7-56L0 256.1l41.8-56L0 144.1 41.8 88 0 32H335.7C397.6 32 448 82.3 448 144.1v51.3c-9.2 36.3-25.9 60.6-55 60.6c-49.6 0-71.6-63.5-142.4-63.5c-35.9 0-95.2 14.6-114.1 101.6h0z" + } + }, + "free": [ + "brands" + ] + }, + "studiovinari": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f8", + "label": "Studio Vinari", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3.7 20.3.7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z" + } + }, + "free": [ + "brands" + ] + }, + "stumbleupon": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a4", + "label": "StumbleUpon Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z" + } + }, + "free": [ + "brands" + ] + }, + "stumbleupon-circle": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1a3", + "label": "StumbleUpon Circle", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z" + } + }, + "free": [ + "brands" + ] + }, + "subscript": { + "aliases": { + "unicodes": { + "secondary": [ + "10f12c" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "font", + "format", + "text", + "type" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f12c", + "label": "Subscript", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 64C14.3 64 0 78.3 0 96s14.3 32 32 32H47.3l89.6 128L47.3 384H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64c10.4 0 20.2-5.1 26.2-13.6L176 311.8l85.8 122.6c6 8.6 15.8 13.6 26.2 13.6h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H304.7L215.1 256l89.6-128H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H288c-10.4 0-20.2 5.1-26.2 13.6L176 200.2 90.2 77.6C84.2 69.1 74.4 64 64 64H32zM480 320c0-11.1-5.7-21.4-15.2-27.2s-21.2-6.4-31.1-1.4l-32 16c-15.8 7.9-22.2 27.1-14.3 42.9C393 361.5 404.3 368 416 368v80c-17.7 0-32 14.3-32 32s14.3 32 32 32h32 32c17.7 0 32-14.3 32-32s-14.3-32-32-32V320z" + } + }, + "free": [ + "solid" + ] + }, + "suitcase": { + "aliases": { + "unicodes": { + "composite": [ + "1f9f3" + ], + "secondary": [ + "10f0f2" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baggage", + "luggage", + "move", + "packing", + "suitcase", + "travel", + "trip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0f2", + "label": "Suitcase", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 56V96H336V56c0-4.4-3.6-8-8-8H184c-4.4 0-8 3.6-8 8zM128 96V56c0-30.9 25.1-56 56-56H328c30.9 0 56 25.1 56 56V96v32V480H128V128 96zM64 96H96V480H64c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64zM448 480H416V96h32c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64z" + } + }, + "free": [ + "solid" + ] + }, + "suitcase-medical": { + "aliases": { + "names": [ + "medkit" + ], + "unicodes": { + "secondary": [ + "10f0fa" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "first aid", + "firstaid", + "health", + "help", + "medical", + "supply", + "support" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0fa", + "label": "Suitcase Medical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M184 48H328c4.4 0 8 3.6 8 8V96H176V56c0-4.4 3.6-8 8-8zm-56 8V96v32V480H384V128 96 56c0-30.9-25.1-56-56-56H184c-30.9 0-56 25.1-56 56zM96 96H64C28.7 96 0 124.7 0 160V416c0 35.3 28.7 64 64 64H96V96zM416 480h32c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H416V480zM224 208c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v48h48c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H288v48c0 8.8-7.2 16-16 16H240c-8.8 0-16-7.2-16-16V320H176c-8.8 0-16-7.2-16-16V272c0-8.8 7.2-16 16-16h48V208z" + } + }, + "free": [ + "solid" + ] + }, + "suitcase-rolling": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5c1" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "baggage", + "luggage", + "move", + "suitcase", + "travel", + "trip" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5c1", + "label": "Suitcase Rolling", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M144 56c0-4.4 3.6-8 8-8h80c4.4 0 8 3.6 8 8v72H144V56zm176 72H288V56c0-30.9-25.1-56-56-56H152C121.1 0 96 25.1 96 56v72H64c-35.3 0-64 28.7-64 64V416c0 35.3 28.7 64 64 64c0 17.7 14.3 32 32 32s32-14.3 32-32H256c0 17.7 14.3 32 32 32s32-14.3 32-32c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64zM112 224H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 128H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "sun": { + "aliases": { + "unicodes": { + "composite": [ + "2600" + ], + "secondary": [ + "10f185" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bright", + "brighten", + "contrast", + "day", + "lighter", + "rays", + "sol", + "solar", + "star", + "sun", + "sunny", + "weather" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f185", + "label": "Sun", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M361.5 1.2c5 2.1 8.6 6.6 9.6 11.9L391 121l107.9 19.8c5.3 1 9.8 4.6 11.9 9.6s1.5 10.7-1.6 15.2L446.9 256l62.3 90.3c3.1 4.5 3.7 10.2 1.6 15.2s-6.6 8.6-11.9 9.6L391 391 371.1 498.9c-1 5.3-4.6 9.8-9.6 11.9s-10.7 1.5-15.2-1.6L256 446.9l-90.3 62.3c-4.5 3.1-10.2 3.7-15.2 1.6s-8.6-6.6-9.6-11.9L121 391 13.1 371.1c-5.3-1-9.8-4.6-11.9-9.6s-1.5-10.7 1.6-15.2L65.1 256 2.8 165.7c-3.1-4.5-3.7-10.2-1.6-15.2s6.6-8.6 11.9-9.6L121 121 140.9 13.1c1-5.3 4.6-9.8 9.6-11.9s10.7-1.5 15.2 1.6L256 65.1 346.3 2.8c4.5-3.1 10.2-3.7 15.2-1.6zM160 256a96 96 0 1 1 192 0 96 96 0 1 1 -192 0zm224 0a128 128 0 1 0 -256 0 128 128 0 1 0 256 0z" + }, + "regular": { + "last_modified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M375.7 19.7c-1.5-8-6.9-14.7-14.4-17.8s-16.1-2.2-22.8 2.4L256 61.1 173.5 4.2c-6.7-4.6-15.3-5.5-22.8-2.4s-12.9 9.8-14.4 17.8l-18.1 98.5L19.7 136.3c-8 1.5-14.7 6.9-17.8 14.4s-2.2 16.1 2.4 22.8L61.1 256 4.2 338.5c-4.6 6.7-5.5 15.3-2.4 22.8s9.8 13 17.8 14.4l98.5 18.1 18.1 98.5c1.5 8 6.9 14.7 14.4 17.8s16.1 2.2 22.8-2.4L256 450.9l82.5 56.9c6.7 4.6 15.3 5.5 22.8 2.4s12.9-9.8 14.4-17.8l18.1-98.5 98.5-18.1c8-1.5 14.7-6.9 17.8-14.4s2.2-16.1-2.4-22.8L450.9 256l56.9-82.5c4.6-6.7 5.5-15.3 2.4-22.8s-9.8-12.9-17.8-14.4l-98.5-18.1L375.7 19.7zM269.6 110l65.6-45.2 14.4 78.3c1.8 9.8 9.5 17.5 19.3 19.3l78.3 14.4L402 242.4c-5.7 8.2-5.7 19 0 27.2l45.2 65.6-78.3 14.4c-9.8 1.8-17.5 9.5-19.3 19.3l-14.4 78.3L269.6 402c-8.2-5.7-19-5.7-27.2 0l-65.6 45.2-14.4-78.3c-1.8-9.8-9.5-17.5-19.3-19.3L64.8 335.2 110 269.6c5.7-8.2 5.7-19 0-27.2L64.8 176.8l78.3-14.4c9.8-1.8 17.5-9.5 19.3-19.3l14.4-78.3L242.4 110c8.2 5.7 19 5.7 27.2 0zM256 368a112 112 0 1 0 0-224 112 112 0 1 0 0 224zM192 256a64 64 0 1 1 128 0 64 64 0 1 1 -128 0z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "sun-plant-wilt": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arid", + "droop", + "drought" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e57a", + "label": "Sun Plant Wilt", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M160 0c-6.3 0-12 3.7-14.6 9.5L120.6 64.9 63.9 43.2c-5.9-2.3-12.6-.8-17 3.6s-5.9 11.1-3.6 17l21.7 56.7L9.5 145.4C3.7 148 0 153.7 0 160s3.7 12 9.5 14.6l55.4 24.8L43.2 256.1c-2.3 5.9-.8 12.6 3.6 17s11.1 5.9 17 3.6l56.7-21.7 24.8 55.4c2.6 5.8 8.3 9.5 14.6 9.5s12-3.7 14.6-9.5l24.8-55.4 56.7 21.7c5.9 2.3 12.6 .8 17-3.6s5.9-11.1 3.6-17l-21.7-56.7 55.4-24.8c5.8-2.6 9.5-8.3 9.5-14.6s-3.7-12-9.5-14.6l-55.4-24.8 21.7-56.7c2.3-5.9 .8-12.6-3.6-17s-11.1-5.9-17-3.6L199.4 64.9 174.6 9.5C172 3.7 166.3 0 160 0zm0 96a64 64 0 1 1 0 128 64 64 0 1 1 0-128zm32 64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm312 16c0-17.7 14.3-32 32-32s32 14.3 32 32v53.4c-14.8 7.7-24 23.1-24 44.6c0 16.8 16 44 37.4 67.2c5.8 6.2 15.5 6.2 21.2 0C624 318 640 290.7 640 274c0-21.5-9.2-37-24-44.6V176c0-44.2-35.8-80-80-80s-80 35.8-80 80v22.7c-9.8-4.3-20.6-6.7-32-6.7c-44.2 0-80 35.8-80 80v21.4c-14.8 7.7-24 23.1-24 44.6c0 16.8 16 44 37.4 67.2c5.8 6.2 15.5 6.2 21.2 0C400 382 416 354.7 416 338c0-21.5-9.2-37-24-44.6V272c0-17.7 14.3-32 32-32s32 14.3 32 32v8V448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H504V280v-8V176z" + } + }, + "free": [ + "solid" + ] + }, + "superpowers": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2dd", + "label": "Superpowers", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z" + } + }, + "free": [ + "brands" + ] + }, + "superscript": { + "aliases": { + "unicodes": { + "secondary": [ + "10f12b" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "exponential", + "font", + "format", + "text", + "type" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f12b", + "label": "Superscript", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M480 32c0-11.1-5.7-21.4-15.2-27.2s-21.2-6.4-31.1-1.4l-32 16c-15.8 7.9-22.2 27.1-14.3 42.9C393 73.5 404.3 80 416 80v80c-17.7 0-32 14.3-32 32s14.3 32 32 32h32 32c17.7 0 32-14.3 32-32s-14.3-32-32-32V32zM32 64C14.3 64 0 78.3 0 96s14.3 32 32 32H47.3l89.6 128L47.3 384H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64c10.4 0 20.2-5.1 26.2-13.6L176 311.8l85.8 122.6c6 8.6 15.8 13.6 26.2 13.6h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H304.7L215.1 256l89.6-128H320c17.7 0 32-14.3 32-32s-14.3-32-32-32H288c-10.4 0-20.2 5.1-26.2 13.6L176 200.2 90.2 77.6C84.2 69.1 74.4 64 64 64H32z" + } + }, + "free": [ + "solid" + ] + }, + "supple": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f3f9", + "label": "Supple", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7.4 15.5.6 23.4.6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6.2 23.3.5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z" + } + }, + "free": [ + "brands" + ] + }, + "suse": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7d6", + "label": "Suse", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M471.08 102.66s-.3 18.3-.3 20.3c-9.1-3-74.4-24.1-135.7-26.3-51.9-1.8-122.8-4.3-223 57.3-19.4 12.4-73.9 46.1-99.6 109.7C7 277-.12 307 7 335.06a111 111 0 0 0 16.5 35.7c17.4 25 46.6 41.6 78.1 44.4 44.4 3.9 78.1-16 90-53.3 8.2-25.8 0-63.6-31.5-82.9-25.6-15.7-53.3-12.1-69.2-1.6-13.9 9.2-21.8 23.5-21.6 39.2.3 27.8 24.3 42.6 41.5 42.6a49 49 0 0 0 15.8-2.7c6.5-1.8 13.3-6.5 13.3-14.9 0-12.1-11.6-14.8-16.8-13.9-2.9.5-4.5 2-11.8 2.4-2-.2-12-3.1-12-14V316c.2-12.3 13.2-18 25.5-16.9 32.3 2.8 47.7 40.7 28.5 65.7-18.3 23.7-76.6 23.2-99.7-20.4-26-49.2 12.7-111.2 87-98.4 33.2 5.7 83.6 35.5 102.4 104.3h45.9c-5.7-17.6-8.9-68.3 42.7-68.3 56.7 0 63.9 39.9 79.8 68.3H460c-12.8-18.3-21.7-38.7-18.9-55.8 5.6-33.8 39.7-18.4 82.4-17.4 66.5.4 102.1-27 103.1-28 3.7-3.1 6.5-15.8 7-17.7 1.3-5.1-3.2-2.4-3.2-2.4-8.7 5.2-30.5 15.2-50.9 15.6-25.3.5-76.2-25.4-81.6-28.2-.3-.4.1 1.2-11-25.5 88.4 58.3 118.3 40.5 145.2 21.7.8-.6 4.3-2.9 3.6-5.7-13.8-48.1-22.4-62.7-34.5-69.6-37-21.6-125-34.7-129.2-35.3.1-.1-.9-.3-.9.7zm60.4 72.8a37.54 37.54 0 0 1 38.9-36.3c33.4 1.2 48.8 42.3 24.4 65.2-24.2 22.7-64.4 4.6-63.3-28.9zm38.6-25.3a26.27 26.27 0 1 0 25.4 27.2 26.19 26.19 0 0 0-25.4-27.2zm4.3 28.8c-15.4 0-15.4-15.6 0-15.6s15.4 15.64 0 15.64z" + } + }, + "free": [ + "brands" + ] + }, + "swatchbook": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5c3" + ] + } + }, + "changes": [ + "5.1.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Pantone", + "color", + "design", + "hue", + "palette" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5c3", + "label": "Swatchbook", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 32C0 14.3 14.3 0 32 0H160c17.7 0 32 14.3 32 32V416c0 53-43 96-96 96s-96-43-96-96V32zM223.6 425.9c.3-3.3 .4-6.6 .4-9.9V154l75.4-75.4c12.5-12.5 32.8-12.5 45.3 0l90.5 90.5c12.5 12.5 12.5 32.8 0 45.3L223.6 425.9zM182.8 512l192-192H480c17.7 0 32 14.3 32 32V480c0 17.7-14.3 32-32 32H182.8zM128 64H64v64h64V64zM64 192v64h64V192H64zM96 440a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + }, + "free": [ + "solid" + ] + }, + "swift": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f8e1", + "label": "Swift", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 156.09c0-4.51-.08-9-.2-13.52a196.31 196.31 0 0 0-2.58-29.42 99.62 99.62 0 0 0-9.22-28A94.08 94.08 0 0 0 394.84 44a99.17 99.17 0 0 0-28-9.22 195 195 0 0 0-29.43-2.59c-4.51-.12-9-.17-13.52-.2H124.14c-4.51 0-9 .08-13.52.2-2.45.07-4.91.15-7.37.27a171.68 171.68 0 0 0-22.06 2.32 103.06 103.06 0 0 0-21.21 6.1q-3.46 1.45-6.81 3.12a94.66 94.66 0 0 0-18.39 12.32c-1.88 1.61-3.69 3.28-5.43 5A93.86 93.86 0 0 0 12 85.17a99.45 99.45 0 0 0-9.22 28 196.31 196.31 0 0 0-2.54 29.4c-.13 4.51-.18 9-.21 13.52v199.83c0 4.51.08 9 .21 13.51a196.08 196.08 0 0 0 2.58 29.42 99.3 99.3 0 0 0 9.22 28A94.31 94.31 0 0 0 53.17 468a99.47 99.47 0 0 0 28 9.21 195 195 0 0 0 29.43 2.59c4.5.12 9 .17 13.52.2H323.91c4.51 0 9-.08 13.52-.2a196.59 196.59 0 0 0 29.44-2.59 99.57 99.57 0 0 0 28-9.21A94.22 94.22 0 0 0 436 426.84a99.3 99.3 0 0 0 9.22-28 194.79 194.79 0 0 0 2.59-29.42c.12-4.5.17-9 .2-13.51V172.14c-.01-5.35-.01-10.7-.01-16.05zm-69.88 241c-20-38.93-57.23-29.27-76.31-19.47-1.72 1-3.48 2-5.25 3l-.42.25c-39.5 21-92.53 22.54-145.85-.38A234.64 234.64 0 0 1 45 290.12a230.63 230.63 0 0 0 39.17 23.37c56.36 26.4 113 24.49 153 0-57-43.85-104.6-101-141.09-147.22a197.09 197.09 0 0 1-18.78-25.9c43.7 40 112.7 90.22 137.48 104.12-52.57-55.49-98.89-123.94-96.72-121.74 82.79 83.42 159.18 130.59 159.18 130.59 2.88 1.58 5 2.85 6.73 4a127.44 127.44 0 0 0 4.16-12.47c13.22-48.33-1.66-103.58-35.31-149.2C329.61 141.75 375 229.34 356.4 303.42c-.44 1.73-.95 3.4-1.44 5.09 38.52 47.4 28.04 98.17 23.13 88.59z" + } + }, + "free": [ + "brands" + ] + }, + "symfony": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f83d", + "label": "Symfony", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm133.74 143.54c-11.47.41-19.4-6.45-19.77-16.87-.27-9.18 6.68-13.44 6.53-18.85-.23-6.55-10.16-6.82-12.87-6.67-39.78 1.29-48.59 57-58.89 113.85 21.43 3.15 36.65-.72 45.14-6.22 12-7.75-3.34-15.72-1.42-24.56 4-18.16 32.55-19 32 5.3-.36 17.86-25.92 41.81-77.6 35.7-10.76 59.52-18.35 115-58.2 161.72-29 34.46-58.4 39.82-71.58 40.26-24.65.85-41-12.31-41.58-29.84-.56-17 14.45-26.26 24.31-26.59 21.89-.75 30.12 25.67 14.88 34-12.09 9.71.11 12.61 2.05 12.55 10.42-.36 17.34-5.51 22.18-9 24-20 33.24-54.86 45.35-118.35 8.19-49.66 17-78 18.23-82-16.93-12.75-27.08-28.55-49.85-34.72-15.61-4.23-25.12-.63-31.81 7.83-7.92 10-5.29 23 2.37 30.7l12.63 14c15.51 17.93 24 31.87 20.8 50.62-5.06 29.93-40.72 52.9-82.88 39.94-36-11.11-42.7-36.56-38.38-50.62 7.51-24.15 42.36-11.72 34.62 13.6-2.79 8.6-4.92 8.68-6.28 13.07-4.56 14.77 41.85 28.4 51-1.39 4.47-14.52-5.3-21.71-22.25-39.85-28.47-31.75-16-65.49 2.95-79.67C204.23 140.13 251.94 197 262 205.29c37.17-109 100.53-105.46 102.43-105.53 25.16-.81 44.19 10.59 44.83 28.65.25 7.69-4.17 22.59-19.52 23.13z" + } + }, + "free": [ + "brands" + ] + }, + "synagogue": { + "aliases": { + "unicodes": { + "composite": [ + "1f54d" + ], + "secondary": [ + "10f69b" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Jew", + "Jewish", + "building", + "jewish", + "judaism", + "religion", + "star of david", + "synagogue", + "temple" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f69b", + "label": "Synagogue", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M309.8 3.7c5.9-4.9 14.6-4.9 20.5 0l121 100.8C469.5 119.7 480 142.2 480 166V280.1 512H464 352V416c0-17.7-14.3-32-32-32s-32 14.3-32 32v96H176 160V280.1 166c0-23.7 10.5-46.3 28.8-61.5L309.8 3.7zM512 512V244.5l28.1-31.2c3-3.4 7.4-5.3 11.9-5.3s8.9 1.9 11.9 5.3l63.8 70.9c7.9 8.8 12.3 20.3 12.3 32.1V448c0 35.3-28.7 64-64 64H512zM128 244.5V512H64c-35.3 0-64-28.7-64-64V316.3c0-11.9 4.4-23.3 12.3-32.1l63.8-70.9c3-3.4 7.4-5.3 11.9-5.3s8.9 1.9 11.9 5.3L128 244.5zM327 124.3c-3.1-5.4-10.9-5.4-13.9 0l-15.9 28.1-32.3-.3c-6.2-.1-10.1 6.7-7 12.1L274.3 192l-16.4 27.8c-3.2 5.4 .7 12.1 7 12.1l32.3-.3L313 259.7c3.1 5.4 10.9 5.4 13.9 0l15.9-28.1 32.3 .3c6.2 .1 10.1-6.7 7-12.1L365.7 192l16.4-27.8c3.2-5.4-.7-12.1-7-12.1l-32.3 .3L327 124.3z" + } + }, + "free": [ + "solid" + ] + }, + "syringe": { + "aliases": { + "unicodes": { + "composite": [ + "1f489" + ], + "secondary": [ + "10f48e" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "immunizations", + "medical", + "medicine", + "needle", + "shot", + "sick", + "syringe", + "vaccinate", + "vaccine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f48e", + "label": "Syringe", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M441 7l32 32 32 32c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-15-15L417.9 128l55 55c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-72-72L295 73c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l55 55L422.1 56 407 41c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0zM210.3 155.7l61.1-61.1c.3 .3 .6 .7 1 1l16 16 56 56 56 56 16 16c.3 .3 .6 .6 1 1l-191 191c-10.5 10.5-24.7 16.4-39.6 16.4H97.9L41 505c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l57-57V325.3c0-14.9 5.9-29.1 16.4-39.6l43.3-43.3 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57z" + } + }, + "free": [ + "solid" + ] + }, + "t": { + "aliases": { + "unicodes": { + "composite": [ + "74" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter T", + "Latin Small Letter T", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "54", + "label": "T", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H160V448c0 17.7 14.3 32 32 32s32-14.3 32-32V96H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H192 32z" + } + }, + "free": [ + "solid" + ] + }, + "table": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0ce" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "data", + "excel", + "spreadsheet" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ce", + "label": "Table", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 256V160H224v96H64zm0 64H224v96H64V320zm224 96V320H448v96H288zM448 256H288V160H448v96zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" + } + }, + "free": [ + "solid" + ] + }, + "table-cells": { + "aliases": { + "names": [ + "th" + ], + "unicodes": { + "secondary": [ + "10f00a" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "boxes", + "grid", + "squares" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f00a", + "label": "Table Cells", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm88 64v64H64V96h88zm56 0h88v64H208V96zm240 0v64H360V96h88zM64 224h88v64H64V224zm232 0v64H208V224h88zm64 0h88v64H360V224zM152 352v64H64V352h88zm56 0h88v64H208V352zm240 0v64H360V352h88z" + } + }, + "free": [ + "solid" + ] + }, + "table-cells-large": { + "aliases": { + "names": [ + "th-large" + ], + "unicodes": { + "secondary": [ + "10f009" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "blocks", + "boxes", + "grid", + "squares" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f009", + "label": "Table Cells Large", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 96V224H288V96H448zm0 192V416H288V288H448zM224 224H64V96H224V224zM64 288H224V416H64V288zM64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64z" + } + }, + "free": [ + "solid" + ] + }, + "table-columns": { + "aliases": { + "names": [ + "columns" + ], + "unicodes": { + "secondary": [ + "10f0db" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "dashboard", + "organize", + "panes", + "split" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0db", + "label": "Table Columns", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm64 64V416H224V160H64zm384 0H288V416H448V160z" + } + }, + "free": [ + "solid" + ] + }, + "table-list": { + "aliases": { + "names": [ + "th-list" + ], + "unicodes": { + "secondary": [ + "10f00b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "checklist", + "completed", + "done", + "finished", + "ol", + "todo", + "ul" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f00b", + "label": "Table List", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 96C0 60.7 28.7 32 64 32H448c35.3 0 64 28.7 64 64V416c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V96zm64 0v64h64V96H64zm384 0H192v64H448V96zM64 224v64h64V224H64zm384 0H192v64H448V224zM64 352v64h64V352H64zm384 0H192v64H448V352z" + } + }, + "free": [ + "solid" + ] + }, + "table-tennis-paddle-ball": { + "aliases": { + "names": [ + "ping-pong-paddle-ball", + "table-tennis" + ], + "unicodes": { + "composite": [ + "1f3d3" + ], + "secondary": [ + "10f45d" + ] + } + }, + "changes": [ + "5.0.5", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "bat", + "game", + "paddle", + "ping pong", + "table tennis" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f45d", + "label": "Table Tennis Paddle Ball", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 288c-50.1 0-93.6 28.8-114.6 70.8L68.9 126.3l.6-.6 60.1-60.1c87.5-87.5 229.3-87.5 316.8 0c67.1 67.1 82.7 166.3 46.8 248.3C471.8 297.6 445 288 416 288zM49.3 151.9L290.1 392.7c-1.4 7.5-2.1 15.3-2.1 23.3c0 23.2 6.2 44.9 16.9 63.7c-3 .2-6.1 .3-9.2 .3H293c-33.9 0-66.5-13.5-90.5-37.5l-9.8-9.8c-13.1-13.1-34.6-12.4-46.8 1.7L88.2 501c-5.8 6.7-14.2 10.7-23 11s-17.5-3.1-23.8-9.4l-32-32C3.1 464.3-.3 455.7 0 446.9s4.3-17.2 11-23l66.6-57.7c14-12.2 14.8-33.7 1.7-46.8l-9.8-9.8C45.5 285.5 32 252.9 32 219v-2.7c0-22.8 6.1-44.9 17.3-64.3zM416 320a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + } + }, + "free": [ + "solid" + ] + }, + "tablet": { + "aliases": { + "names": [ + "tablet-android" + ], + "unicodes": { + "secondary": [ + "10f3fb" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "device", + "kindle", + "screen" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3fb", + "label": "Tablet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM176 432h96c8.8 0 16 7.2 16 16s-7.2 16-16 16H176c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "tablet-button": { + "aliases": { + "unicodes": { + "secondary": [ + "10f10a" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "device", + "ipad", + "kindle", + "screen" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f10a", + "label": "Tablet Button", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM224 400a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "tablet-screen-button": { + "aliases": { + "names": [ + "tablet-alt" + ], + "unicodes": { + "secondary": [ + "10f3fa" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "apple", + "device", + "ipad", + "kindle", + "screen" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3fa", + "label": "Tablet Screen Button", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 64C0 28.7 28.7 0 64 0H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM256 448a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM384 64H64V384H384V64z" + } + }, + "free": [ + "solid" + ] + }, + "tablets": { + "aliases": { + "unicodes": { + "secondary": [ + "10f490" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "drugs", + "medicine", + "pills", + "prescription" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f490", + "label": "Tablets", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M614.3 247c16.3-25 25.7-54.9 25.7-87C640 71.6 568.4 0 480 0c-32.1 0-61.9 9.4-87 25.7c-7.9 5.2-8.5 16.2-1.8 22.9L591.4 248.8c6.7 6.7 17.8 6.2 22.9-1.8zM567 294.3c7.9-5.2 8.5-16.2 1.8-22.9L368.6 71.2c-6.7-6.7-17.8-6.2-22.9 1.8c-16.3 25-25.7 54.9-25.7 87c0 88.4 71.6 160 160 160c32.1 0 61.9-9.4 87-25.7zM301.5 368H18.5c-9.5 0-16.9 8.2-15 17.5C18.9 457.8 83.1 512 160 512s141.1-54.2 156.5-126.5c2-9.3-5.5-17.5-15-17.5zm0-32c9.5 0 16.9-8.2 15-17.5C301.1 246.2 236.9 192 160 192S18.9 246.2 3.5 318.5c-2 9.3 5.5 17.5 15 17.5H301.5z" + } + }, + "free": [ + "solid" + ] + }, + "tachograph-digital": { + "aliases": { + "names": [ + "digital-tachograph" + ], + "unicodes": { + "secondary": [ + "10f566" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "data", + "distance", + "speed", + "tachometer" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f566", + "label": "Tachograph Digital", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H576c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm32 64H320c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32zM64 368c0-8.8 7.2-16 16-16H336c8.8 0 16 7.2 16 16s-7.2 16-16 16H80c-8.8 0-16-7.2-16-16zm320 0c0-8.8 7.2-16 16-16H560c8.8 0 16 7.2 16 16s-7.2 16-16 16H400c-8.8 0-16-7.2-16-16zM80 288a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm48 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm80-16a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm48 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0zm80-16a16 16 0 1 1 0 32 16 16 0 1 1 0-32z" + } + }, + "free": [ + "solid" + ] + }, + "tag": { + "aliases": { + "unicodes": { + "composite": [ + "1f3f7" + ], + "secondary": [ + "10f02b" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "discount", + "labe", + "label", + "price", + "shopping" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f02b", + "label": "Tag", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 80V229.5c0 17 6.7 33.3 18.7 45.3l176 176c25 25 65.5 25 90.5 0L418.7 317.3c25-25 25-65.5 0-90.5l-176-176c-12-12-28.3-18.7-45.3-18.7H48C21.5 32 0 53.5 0 80zm112 32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "tags": { + "aliases": { + "unicodes": { + "secondary": [ + "10f02c" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "discount", + "label", + "price", + "shopping" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f02c", + "label": "Tags", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M345 39.1L472.8 168.4c52.4 53 52.4 138.2 0 191.2L360.8 472.9c-9.3 9.4-24.5 9.5-33.9 .2s-9.5-24.5-.2-33.9L438.6 325.9c33.9-34.3 33.9-89.4 0-123.7L310.9 72.9c-9.3-9.4-9.2-24.6 .2-33.9s24.6-9.2 33.9 .2zM0 229.5V80C0 53.5 21.5 32 48 32H197.5c17 0 33.3 6.7 45.3 18.7l168 168c25 25 25 65.5 0 90.5L277.3 442.7c-25 25-65.5 25-90.5 0l-168-168C6.7 262.7 0 246.5 0 229.5zM144 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + }, + "free": [ + "solid" + ] + }, + "tape": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4db" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "design", + "package", + "sticky" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4db", + "label": "Tape", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M380.8 416c41.5-40.7 67.2-97.3 67.2-160C448 132.3 347.7 32 224 32S0 132.3 0 256S100.3 480 224 480H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H380.8zM224 160a96 96 0 1 1 0 192 96 96 0 1 1 0-192zm64 96a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + }, + "free": [ + "solid" + ] + }, + "tarp": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protection", + "tarp", + "tent", + "waterproof" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e57b", + "label": "Tarp", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M576 128c0-35.3-28.7-64-64-64H64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64l352 0 0-128c0-17.7 14.3-32 32-32H576V128zM448 448L576 320H448l0 128zM96 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "tarp-droplet": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protection", + "tarp", + "tent", + "waterproof" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e57c", + "label": "Tarp Droplet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M288 160c-35.3 0-64-26.9-64-60c0-24 33.7-70.1 52.2-93.5c6.1-7.7 17.5-7.7 23.6 0C318.3 29.9 352 76 352 100c0 33.1-28.7 60-64 60zM64 128H197.5c13.2 37.3 48.7 64 90.5 64s77.4-26.7 90.5-64H512c35.3 0 64 28.7 64 64V352H448c-17.7 0-32 14.3-32 32l0 128L64 512c-35.3 0-64-28.7-64-64V192c0-35.3 28.7-64 64-64zM448 512l0-128H576L448 512zM96 256a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "taxi": { + "aliases": { + "names": [ + "cab" + ], + "unicodes": { + "composite": [ + "1f696" + ], + "secondary": [ + "10f1ba" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cab", + "cabbie", + "car", + "car service", + "lyft", + "machine", + "oncoming", + "oncoming taxi", + "taxi", + "transportation", + "travel", + "uber", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1ba", + "label": "Taxi", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 0c-17.7 0-32 14.3-32 32V64c0 .1 0 .1 0 .2c-38.6 2.2-72.3 27.3-85.2 64.1L39.6 228.8C16.4 238.4 0 261.3 0 288V432v48c0 17.7 14.3 32 32 32H64c17.7 0 32-14.3 32-32V432H416v48c0 17.7 14.3 32 32 32h32c17.7 0 32-14.3 32-32V432 288c0-26.7-16.4-49.6-39.6-59.2L437.2 128.3c-12.9-36.8-46.6-62-85.2-64.1c0-.1 0-.1 0-.2V32c0-17.7-14.3-32-32-32H192zM165.4 128H346.6c13.6 0 25.7 8.6 30.2 21.4L402.9 224H109.1l26.1-74.6c4.5-12.8 16.6-21.4 30.2-21.4zM96 288a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm288 32a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + }, + "free": [ + "solid" + ] + }, + "teamspeak": { + "changes": [ + "5.0.11", + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f4f9", + "label": "TeamSpeak", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M244.2 346.79c2.4-12.3-12-30-32.4-48.7-20.9-19.2-48.2-39.1-63.4-46.6-21.7-12-41.7-1.8-46.3 22.7-5 26.2 0 51.4 14.5 73.9 10.2 15.5 25.4 22.7 43.4 24 11.6.6 52.5 2.2 61.7-1 11.9-4.3 20.1-11.8 22.5-24.3zm205 20.8a5.22 5.22 0 0 0-8.3 2.4c-8 25.4-44.7 112.5-172.1 121.5-149.7 10.5 80.3 43.6 145.4-6.4 22.7-17.4 47.6-35 46.6-85.4-.4-10.1-4.9-26.69-11.6-32.1zm62-122.4c-.3-18.9-8.6-33.4-26-42.2-2.9-1.3-5-2.7-5.9-6.4A222.64 222.64 0 0 0 438.9 103c-1.1-1.5-3.5-3.2-2.2-5 8.5-11.5-.3-18-7-24.4Q321.4-31.11 177.4 13.09c-40.1 12.3-73.9 35.6-102 67.4-4 4.3-6.7 9.1-3 14.5 3 4 1.3 6.2-1 9.3C51.6 132 38.2 162.59 32.1 196c-.7 4.3-2.9 6-6.4 7.8-14.2 7-22.5 18.5-24.9 34L0 264.29v20.9c0 30.8 21 50.4 51.8 49 7.7-.3 11.7-4.3 12-11.5 2-77.5-2.4-95.4 3.7-125.8C92.1 72.39 234.3 5 345.3 65.39 411.4 102 445.7 159 447.6 234.79c.8 28.2 0 56.5 0 84.6 0 7 2.2 12.5 9.4 14.2 24.1 5 49.2-12 53.2-36.7 2.9-17.1 1-34.5 1-51.7zm-159.6 131.5c36.5 2.8 59.3-28.5 58.4-60.5-2.1-45.2-66.2-16.5-87.8-8-73.2 28.1-45 54.9-22.2 60.8z" + } + }, + "free": [ + "brands" + ] + }, + "teeth": { + "aliases": { + "unicodes": { + "secondary": [ + "10f62e" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bite", + "dental", + "dentist", + "gums", + "mouth", + "smile", + "tooth" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f62e", + "label": "Teeth", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 128C0 75 43 32 96 32H480c53 0 96 43 96 96V384c0 53-43 96-96 96H96c-53 0-96-43-96-96V128zm176 48v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V176c0-26.5-21.5-48-48-48s-48 21.5-48 48zm176-48c-26.5 0-48 21.5-48 48v56c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V176c0-26.5-21.5-48-48-48zM48 208v24c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V208c0-26.5-21.5-48-48-48s-48 21.5-48 48zM96 384c26.5 0 48-21.5 48-48V312c0-13.3-10.7-24-24-24H72c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48zm80-48c0 26.5 21.5 48 48 48s48-21.5 48-48V312c0-13.3-10.7-24-24-24H200c-13.3 0-24 10.7-24 24v24zm176 48c26.5 0 48-21.5 48-48V312c0-13.3-10.7-24-24-24H328c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48zm80-176v24c0 13.3 10.7 24 24 24h48c13.3 0 24-10.7 24-24V208c0-26.5-21.5-48-48-48s-48 21.5-48 48zm48 176c26.5 0 48-21.5 48-48V312c0-13.3-10.7-24-24-24H456c-13.3 0-24 10.7-24 24v24c0 26.5 21.5 48 48 48z" + } + }, + "free": [ + "solid" + ] + }, + "teeth-open": { + "aliases": { + "unicodes": { + "secondary": [ + "10f62f" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dental", + "dentist", + "gums bite", + "mouth", + "smile", + "tooth" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f62f", + "label": "Teeth Open", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M96 32C43 32 0 75 0 128v64c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-53-43-96-96-96H96zM224 96c26.5 0 48 21.5 48 48v56c0 13.3-10.7 24-24 24H200c-13.3 0-24-10.7-24-24V144c0-26.5 21.5-48 48-48zm80 48c0-26.5 21.5-48 48-48s48 21.5 48 48v56c0 13.3-10.7 24-24 24H328c-13.3 0-24-10.7-24-24V144zM96 128c26.5 0 48 21.5 48 48v24c0 13.3-10.7 24-24 24H72c-13.3 0-24-10.7-24-24V176c0-26.5 21.5-48 48-48zm336 48c0-26.5 21.5-48 48-48s48 21.5 48 48v24c0 13.3-10.7 24-24 24H456c-13.3 0-24-10.7-24-24V176zM96 480H480c53 0 96-43 96-96V352c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v32c0 53 43 96 96 96zm0-64c-26.5 0-48-21.5-48-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48zm80-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48s-48-21.5-48-48zm176 48c-26.5 0-48-21.5-48-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48zm80-48V344c0-13.3 10.7-24 24-24h48c13.3 0 24 10.7 24 24v24c0 26.5-21.5 48-48 48s-48-21.5-48-48z" + } + }, + "free": [ + "solid" + ] + }, + "telegram": { + "aliases": { + "names": [ + "telegram-plane" + ], + "unicodes": { + "composite": [ + "f3fe" + ], + "secondary": [ + "10f3fe" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2c6", + "label": "Telegram", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248,8C111.033,8,0,119.033,0,256S111.033,504,248,504,496,392.967,496,256,384.967,8,248,8ZM362.952,176.66c-3.732,39.215-19.881,134.378-28.1,178.3-3.476,18.584-10.322,24.816-16.948,25.425-14.4,1.326-25.338-9.517-39.287-18.661-21.827-14.308-34.158-23.215-55.346-37.177-24.485-16.135-8.612-25,5.342-39.5,3.652-3.793,67.107-61.51,68.335-66.746.153-.655.3-3.1-1.154-4.384s-3.59-.849-5.135-.5q-3.283.746-104.608,69.142-14.845,10.194-26.894,9.934c-8.855-.191-25.888-5.006-38.551-9.123-15.531-5.048-27.875-7.717-26.8-16.291q.84-6.7,18.45-13.7,108.446-47.248,144.628-62.3c68.872-28.647,83.183-33.623,92.511-33.789,2.052-.034,6.639.474,9.61,2.885a10.452,10.452,0,0,1,3.53,6.716A43.765,43.765,0,0,1,362.952,176.66Z" + } + }, + "free": [ + "brands" + ] + }, + "temperature-arrow-down": { + "aliases": { + "names": [ + "temperature-down" + ], + "unicodes": { + "secondary": [ + "10e03f" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air conditioner", + "cold", + "heater", + "mercury", + "thermometer", + "winter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e03f", + "label": "Temperature Arrow Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C217.8 332.6 224 349.5 224 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9C88.9 308.4 96 293.8 96 276.5V112zM144 0C82.1 0 32 50.1 32 112V276.4c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C11.2 304.2 0 334.8 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.3-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256 50.1 205.9 0 144 0zm0 416c26.5 0 48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V272c0-8.8-7.2-16-16-16s-16 7.2-16 16v50.7c-18.6 6.6-32 24.4-32 45.3c0 26.5 21.5 48 48 48zm336-64H448V64c0-17.7-14.3-32-32-32s-32 14.3-32 32V352H352c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c6 6 14.1 9.4 22.6 9.4s16.6-3.4 22.6-9.4l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8z" + } + }, + "free": [ + "solid" + ] + }, + "temperature-arrow-up": { + "aliases": { + "names": [ + "temperature-up" + ], + "unicodes": { + "secondary": [ + "10e040" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air conditioner", + "cold", + "heater", + "mercury", + "thermometer", + "winter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e040", + "label": "Temperature Arrow Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C217.8 332.6 224 349.5 224 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9C88.9 308.4 96 293.8 96 276.5V112zM144 0C82.1 0 32 50.1 32 112V276.4c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C11.2 304.2 0 334.8 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.3-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256 50.1 205.9 0 144 0zm0 416c26.5 0 48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V112c0-8.8-7.2-16-16-16s-16 7.2-16 16V322.7c-18.6 6.6-32 24.4-32 45.3c0 26.5 21.5 48 48 48zM448 160h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32V448c0 17.7 14.3 32 32 32s32-14.3 32-32V160z" + } + }, + "free": [ + "solid" + ] + }, + "temperature-empty": { + "aliases": { + "names": [ + "temperature-0", + "thermometer-0", + "thermometer-empty" + ], + "unicodes": { + "secondary": [ + "10f2cb" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "mercury", + "status", + "temperature" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2cb", + "label": "Temperature Empty", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M96 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C217.8 332.6 224 349.5 224 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9C88.9 308.4 96 293.8 96 276.5V112zM144 0C82.1 0 32 50.2 32 112V276.5c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C11.2 304.2 0 334.8 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.3-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256 50.2 205.9 0 144 0zm0 416a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + }, + "free": [ + "solid" + ] + }, + "temperature-full": { + "aliases": { + "names": [ + "temperature-4", + "thermometer-4", + "thermometer-full" + ], + "unicodes": { + "secondary": [ + "10f2c7" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fever", + "hot", + "mercury", + "status", + "temperature" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2c7", + "label": "Temperature Full", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M144 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM32 112C32 50.2 82.1 0 144 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM192 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V112c0-8.8 7.2-16 16-16s16 7.2 16 16V322.7c18.6 6.6 32 24.4 32 45.3z" + } + }, + "free": [ + "solid" + ] + }, + "temperature-half": { + "aliases": { + "names": [ + "temperature-2", + "thermometer-2", + "thermometer-half" + ], + "unicodes": { + "composite": [ + "1f321" + ], + "secondary": [ + "10f2c9" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mercury", + "status", + "temperature", + "thermometer", + "weather" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2c9", + "label": "Temperature Half", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M144 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM32 112C32 50.2 82.1 0 144 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM192 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V208c0-8.8 7.2-16 16-16s16 7.2 16 16V322.7c18.6 6.6 32 24.4 32 45.3z" + } + }, + "free": [ + "solid" + ] + }, + "temperature-high": { + "aliases": { + "unicodes": { + "secondary": [ + "10f769" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cook", + "covid-19", + "mercury", + "summer", + "thermometer", + "warm" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f769", + "label": "Temperature High", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M416 64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm0 128A96 96 0 1 0 416 0a96 96 0 1 0 0 192zM96 112c0-26.5 21.5-48 48-48s48 21.5 48 48V276.5c0 17.3 7.1 31.9 15.3 42.5C217.8 332.6 224 349.5 224 368c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-18.5 6.2-35.4 16.7-48.9C88.9 308.4 96 293.8 96 276.5V112zM144 0C82.1 0 32 50.2 32 112V276.5c0 .1-.1 .3-.2 .6c-.2 .6-.8 1.6-1.7 2.8C11.2 304.2 0 334.8 0 368c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.2-11.3-63.8-30.1-88.1c-.9-1.2-1.5-2.2-1.7-2.8c-.1-.3-.2-.5-.2-.6V112C256 50.2 205.9 0 144 0zm0 416c26.5 0 48-21.5 48-48c0-20.9-13.4-38.7-32-45.3V112c0-8.8-7.2-16-16-16s-16 7.2-16 16V322.7c-18.6 6.6-32 24.4-32 45.3c0 26.5 21.5 48 48 48z" + } + }, + "free": [ + "solid" + ] + }, + "temperature-low": { + "aliases": { + "unicodes": { + "secondary": [ + "10f76b" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cold", + "cool", + "covid-19", + "mercury", + "thermometer", + "winter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f76b", + "label": "Temperature Low", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M448 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM320 96a96 96 0 1 1 192 0A96 96 0 1 1 320 96zM144 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM32 112C32 50.2 82.1 0 144 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM192 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V272c0-8.8 7.2-16 16-16s16 7.2 16 16v50.7c18.6 6.6 32 24.4 32 45.3z" + } + }, + "free": [ + "solid" + ] + }, + "temperature-quarter": { + "aliases": { + "names": [ + "temperature-1", + "thermometer-1", + "thermometer-quarter" + ], + "unicodes": { + "secondary": [ + "10f2ca" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mercury", + "status", + "temperature" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2ca", + "label": "Temperature Quarter", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M144 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM32 112C32 50.2 82.1 0 144 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM192 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V272c0-8.8 7.2-16 16-16s16 7.2 16 16v50.7c18.6 6.6 32 24.4 32 45.3z" + } + }, + "free": [ + "solid" + ] + }, + "temperature-three-quarters": { + "aliases": { + "names": [ + "temperature-3", + "thermometer-3", + "thermometer-three-quarters" + ], + "unicodes": { + "secondary": [ + "10f2c8" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "mercury", + "status", + "temperature" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2c8", + "label": "Temperature Three Quarters", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M144 64c-26.5 0-48 21.5-48 48V276.5c0 17.3-7.1 31.9-15.3 42.5C70.2 332.6 64 349.5 64 368c0 44.2 35.8 80 80 80s80-35.8 80-80c0-18.5-6.2-35.4-16.7-48.9c-8.2-10.6-15.3-25.2-15.3-42.5V112c0-26.5-21.5-48-48-48zM32 112C32 50.2 82.1 0 144 0s112 50.1 112 112V276.5c0 .1 .1 .3 .2 .6c.2 .6 .8 1.6 1.7 2.8c18.9 24.4 30.1 55 30.1 88.1c0 79.5-64.5 144-144 144S0 447.5 0 368c0-33.2 11.2-63.8 30.1-88.1c.9-1.2 1.5-2.2 1.7-2.8c.1-.3 .2-.5 .2-.6V112zM192 368c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-20.9 13.4-38.7 32-45.3V144c0-8.8 7.2-16 16-16s16 7.2 16 16V322.7c18.6 6.6 32 24.4 32 45.3z" + } + }, + "free": [ + "solid" + ] + }, + "tencent-weibo": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d5", + "label": "Tencent Weibo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1.1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z" + } + }, + "free": [ + "brands" + ] + }, + "tenge-sign": { + "aliases": { + "names": [ + "tenge" + ], + "unicodes": { + "composite": [ + "20b8" + ], + "secondary": [ + "10f7d7" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Tenge Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7d7", + "label": "Tenge Sign", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64zM0 192c0-17.7 14.3-32 32-32H192 352c17.7 0 32 14.3 32 32s-14.3 32-32 32H224V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V224H32c-17.7 0-32-14.3-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "tent": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bivouac", + "campground", + "refugee", + "shelter", + "tent" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e57d", + "label": "Tent", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M269.4 6C280.5-2 295.5-2 306.6 6l224 160c7.4 5.3 12.2 13.5 13.2 22.5l32 288c1 9-1.9 18.1-8 24.9s-14.7 10.7-23.8 10.7H416L288 288V512H32c-9.1 0-17.8-3.9-23.8-10.7s-9-15.8-8-24.9l32-288c1-9 5.8-17.2 13.2-22.5L269.4 6z" + } + }, + "free": [ + "solid" + ] + }, + "tent-arrow-down-to-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "permanent", + "refugee", + "shelter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e57e", + "label": "Tent Arrow Down To Line", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M241.8 111.9c8.9 9.9 8.1 25-1.8 33.9l-80 72c-9.1 8.2-23 8.2-32.1 0l-80-72c-9.9-8.9-10.7-24-1.8-33.9s24-10.7 33.9-1.8l39.9 36L120 24c0-13.3 10.7-24 24-24s24 10.7 24 24l0 122.1 39.9-36c9.9-8.9 25-8.1 33.9 1.8zm122.8 22.6c11.5-8.7 27.3-8.7 38.8 0l168 128c6.6 5 11 12.5 12.3 20.7l24 160 .7 4.7c17.5 .2 31.6 14.4 31.6 32c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H159.6l.7-4.7 24-160c1.2-8.2 5.6-15.7 12.3-20.7l168-128zM384 448h76.8L384 320V448z" + } + }, + "free": [ + "solid" + ] + }, + "tent-arrow-left-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refugee", + "shelter", + "transition" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e57f", + "label": "Tent Arrow Left Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M488.1 6.2c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9L489.5 72 86.5 72l33.5-30.2c9.9-8.9 10.7-24 1.8-33.9S97.8-2.7 87.9 6.2l-80 72C2.9 82.7 0 89.2 0 96s2.9 13.3 7.9 17.8l80 72c9.9 8.9 25 8.1 33.9-1.8s8.1-25-1.8-33.9L86.5 120l402.9 0-33.5 30.2c-9.9 8.9-10.7 24-1.8 33.9s24 10.7 33.9 1.8l80-72c5.1-4.6 7.9-11 7.9-17.8s-2.9-13.3-7.9-17.8l-80-72zM307.4 166.5c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S86.7 512 96 512H288V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z" + } + }, + "free": [ + "solid" + ] + }, + "tent-arrow-turn-left": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refugee", + "shelter", + "temporary" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e580", + "label": "Tent Arrow Turn Left", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M120.1 41.8c9.9-8.9 10.7-24 1.8-33.9S97.8-2.7 87.9 6.2l-80 72C2.9 82.7 0 89.2 0 96s2.9 13.3 7.9 17.8l80 72c9.9 8.9 25 8.1 33.9-1.8s8.1-25-1.8-33.9L86.5 120 456 120c39.8 0 72 32.2 72 72v40c0 13.3 10.7 24 24 24s24-10.7 24-24V192c0-66.3-53.7-120-120-120L86.5 72l33.5-30.2zM307.4 166.5c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S86.7 512 96 512H288V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z" + } + }, + "free": [ + "solid" + ] + }, + "tent-arrows-down": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "refugee", + "shelter", + "spontaneous" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e581", + "label": "Tent Arrows Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M201.8 111.9c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36L128 24c0-13.3-10.7-24-24-24S80 10.7 80 24l0 122.1-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zm352 0c-8.9-9.9-24-10.7-33.9-1.8l-39.9 36V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V146.1l-39.9-36c-9.9-8.9-25-8.1-33.9 1.8s-8.1 25 1.8 33.9l80 72c9.1 8.2 23 8.2 32.1 0l80-72c9.9-8.9 10.7-24 1.8-33.9zM299.4 166.5c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S78.7 512 88 512H280V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z" + } + }, + "free": [ + "solid" + ] + }, + "tents": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bivouac", + "campground", + "refugee", + "shelter", + "tent" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e582", + "label": "Tents", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M396.6 6.5L235.8 129.1c9.6 1.8 18.9 5.8 27 12l168 128c13.2 10.1 22 24.9 24.5 41.4l6.2 41.5H608c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128c-11.5-8.7-27.3-8.7-38.8 0zm-153.2 160c-11.5-8.7-27.3-8.7-38.8 0l-168 128c-6.6 5-11 12.5-12.3 20.7l-24 160c-1.4 9.2 1.3 18.6 7.4 25.6S22.7 512 32 512H224V352l96 160h96c9.3 0 18.2-4.1 24.2-11.1s8.8-16.4 7.4-25.6l-24-160c-1.2-8.2-5.6-15.7-12.3-20.7l-168-128z" + } + }, + "free": [ + "solid" + ] + }, + "terminal": { + "aliases": { + "unicodes": { + "secondary": [ + "10f120" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "code", + "coding", + "command", + "console", + "development", + "prompt", + "terminal" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f120", + "label": "Terminal", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321875, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M41.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 41.4 86.6zM288 416H576c17.7 0 32 14.3 32 32s-14.3 32-32 32H288c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "text-height": { + "aliases": { + "unicodes": { + "secondary": [ + "10f034" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "font", + "format", + "text", + "type" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f034", + "label": "Text Height", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 128V96h64l0 320H96c-17.7 0-32 14.3-32 32s14.3 32 32 32H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H192l0-320h64v32c0 17.7 14.3 32 32 32s32-14.3 32-32V80c0-26.5-21.5-48-48-48H160 48C21.5 32 0 53.5 0 80v48c0 17.7 14.3 32 32 32s32-14.3 32-32zM502.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32V352H416c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H512V160h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64z" + } + }, + "free": [ + "solid" + ] + }, + "text-slash": { + "aliases": { + "names": [ + "remove-format" + ], + "unicodes": { + "secondary": [ + "10f87d" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cancel", + "font", + "format", + "remove", + "style", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f87d", + "label": "Text Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L355.7 253.5 400.2 96H503L497 120.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l11-44.1C577.6 61.3 554.7 32 523.5 32H376.1h-.3H204.5c-22 0-41.2 15-46.6 36.4l-6.3 25.2L38.8 5.1zm168 131.7c.1-.3 .2-.7 .3-1L217 96H333.7L301.3 210.8l-94.5-74.1zM243.3 416H192c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c17.7 0 32-14.3 32-32s-14.3-32-32-32H309.8l17.6-62.1L272.9 311 243.3 416z" + } + }, + "free": [ + "solid" + ] + }, + "text-width": { + "aliases": { + "unicodes": { + "secondary": [ + "10f035" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.9.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "font", + "format", + "text", + "type" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f035", + "label": "Text Width", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M64 128V96H192l0 128H176c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H256l0-128H384v32c0 17.7 14.3 32 32 32s32-14.3 32-32V80c0-26.5-21.5-48-48-48H224 48C21.5 32 0 53.5 0 80v48c0 17.7 14.3 32 32 32s32-14.3 32-32zM9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V416H320v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6v32H128V320c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64z" + } + }, + "free": [ + "solid" + ] + }, + "the-red-yeti": { + "changes": [ + "5.3.0", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f69d", + "label": "The Red Yeti", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014480, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M488.23 241.7l20.7 7.1c-9.6-23.9-23.9-37-31.7-44.8l7.1-18.2c.2 0 12.3-27.8-2.5-30.7-.6-11.3-6.6-27-18.4-27-7.6-10.6-17.7-12.3-30.7-5.9a122.2 122.2 0 0 0-25.3 16.5c-5.3-6.4-3 .4-3-29.8-37.1-24.3-45.4-11.7-74.8 3l.5.5a239.36 239.36 0 0 0-68.4-13.3c-5.5-8.7-18.6-19.1-25.1-25.1l24.8 7.1c-5.5-5.5-26.8-12.9-34.2-15.2 18.2-4.1 29.8-20.8 42.5-33-34.9-10.1-67.9-5.9-97.9 11.8l12-44.2L182 0c-31.6 24.2-33 41.9-33.7 45.5-.9-2.4-6.3-19.6-15.2-27a35.12 35.12 0 0 0-.5 25.3c3 8.4 5.9 14.8 8.4 18.9-16-3.3-28.3-4.9-49.2 0h-3.7l33 14.3a194.26 194.26 0 0 0-46.7 67.4l-1.7 8.4 1.7 1.7 7.6-4.7c-3.3 11.6-5.3 19.4-6.6 25.8a200.18 200.18 0 0 0-27.8 40.3c-15 1-31.8 10.8-40.3 14.3l3 3.4 28.8 1c-.5 1-.7 2.2-1.2 3.2-7.3 6.4-39.8 37.7-33 80.7l20.2-22.4c.5 1.7.7 3.4 1.2 5.2 0 25.5.4 89.6 64.9 150.5 43.6 40 96 60.2 157.5 60.2 121.7 0 223-87.3 223-211.5 6.8-9.7-1.2 3 16.7-25.1l13 14.3 2.5-.5A181.84 181.84 0 0 0 495 255a44.74 44.74 0 0 0-6.8-13.3zM398 111.2l-.5 21.9c5.5 18.1 16.9 17.2 22.4 17.2l-3.4-4.7 22.4-5.4a242.44 242.44 0 0 1-27 0c12.8-2.1 33.3-29 43-11.3 3.4 7.6 6.4 17.2 9.3 27.8l1.7-5.9a56.38 56.38 0 0 1-1.7-15.2c5.4.5 8.8 3.4 9.3 10.1.5 6.4 1.7 14.8 3.4 25.3l4.7-11.3c4.6 0 4.5-3.6-2.5 20.7-20.9-8.7-35.1-8.4-46.5-8.4l18.2-16c-25.3 8.2-33 10.8-54.8 20.9-1.1-5.4-5-13.5-16-19.9-3.2 3.8-2.8.9-.7 14.8h-2.5a62.32 62.32 0 0 0-8.4-23.1l4.2-3.4c8.4-7.1 11.8-14.3 10.6-21.9-.5-6.4-5.4-13.5-13.5-20.7 5.6-3.4 15.2-.4 28.3 8.5zm-39.6-10.1c2.7 1.9 11.4 5.4 18.9 17.2 4.2 8.4 4 9.8 3.4 11.1-.5 2.4-.5 4.3-3 7.1-1.7 2.5-5.4 4.7-11.8 7.6-7.6-13-16.5-23.6-27.8-31.2zM91 143.1l1.2-1.7c1.2-2.9 4.2-7.6 9.3-15.2l2.5-3.4-13 12.3 5.4-4.7-10.1 9.3-4.2 1.2c12.3-24.1 23.1-41.3 32.5-50.2 9.3-9.3 16-16 20.2-19.4l-6.4 1.2c-11.3-4.2-19.4-7.1-24.8-8.4 2.5-.5 3.7-.5 3.2-.5 10.3 0 17.5.5 20.9 1.2a52.35 52.35 0 0 0 16 2.5l.5-1.7-8.4-35.8 13.5 29a42.89 42.89 0 0 0 5.9-14.3c1.7-6.4 5.4-13 10.1-19.4s7.6-10.6 9.3-11.3a234.68 234.68 0 0 0-6.4 25.3l-1.7 7.1-.5 4.7 2.5 2.5C190.4 39.9 214 34 239.8 34.5l21.1.5c-11.8 13.5-27.8 21.9-48.5 24.8a201.26 201.26 0 0 1-23.4 2.9l-.2-.5-2.5-1.2a20.75 20.75 0 0 0-14 2c-2.5-.2-4.9-.5-7.1-.7l-2.5 1.7.5 1.2c2 .2 3.9.5 6.2.7l-2 3.4 3.4-.5-10.6 11.3c-4.2 3-5.4 6.4-4.2 9.3l5.4-3.4h1.2a39.4 39.4 0 0 1 25.3-15.2v-3c6.4.5 13 1 19.4 1.2 6.4 0 8.4.5 5.4 1.2a189.6 189.6 0 0 1 20.7 13.5c13.5 10.1 23.6 21.9 30 35.4 8.8 18.2 13.5 37.1 13.5 56.6a141.13 141.13 0 0 1-3 28.3 209.91 209.91 0 0 1-16 46l2.5.5c18.2-19.7 41.9-16 49.2-16l-6.4 5.9 22.4 17.7-1.7 30.7c-5.4-12.3-16.5-21.1-33-27.8 16.5 14.8 23.6 21.1 21.9 20.2-4.8-2.8-3.5-1.9-10.8-3.7 4.1 4.1 17.5 18.8 18.2 20.7l.2.2-.2.2c0 1.8 1.6-1.2-14 22.9-75.2-15.3-106.27-42.7-141.2-63.2l11.8 1.2c-11.8-18.5-15.6-17.7-38.4-26.1L149 225c-8.8-3-18.2-3-28.3.5l7.6-10.6-1.2-1.7c-14.9 4.3-19.8 9.2-22.6 11.3-1.1-5.5-2.8-12.4-12.3-28.8l-1.2 27-13.2-5c1.5-25.2 5.4-50.5 13.2-74.6zm276.5 330c-49.9 25-56.1 22.4-59 23.9-29.8-11.8-50.9-31.7-63.5-58.8l30 16.5c-9.8-9.3-18.3-16.5-38.4-44.3l11.8 23.1-17.7-7.6c14.2 21.1 23.5 51.7 66.6 73.5-120.8 24.2-199-72.1-200.9-74.3a262.57 262.57 0 0 0 35.4 24.8c3.4 1.7 7.1 2.5 10.1 1.2l-16-20.7c9.2 4.2 9.5 4.5 69.1 29-42.5-20.7-73.8-40.8-93.2-60.2-.5 6.4-1.2 10.1-1.2 10.1a80.25 80.25 0 0 1 20.7 26.6c-39-18.9-57.6-47.6-71.3-82.6 49.9 55.1 118.9 37.5 120.5 37.1 34.8 16.4 69.9 23.6 113.9 10.6 3.3 0 20.3 17 25.3 39.1l4.2-3-2.5-23.6c9 9 24.9 22.6 34.4 13-15.6-5.3-23.5-9.5-29.5-31.7 4.6 4.2 7.6 9 27.8 15l1.2-1.2-10.5-14.2c11.7-4.8-3.5 1 32-10.8 4.3 34.3 9 49.2.7 89.5zm115.3-214.4l-2.5.5 3 9.3c-3.5 5.9-23.7 44.3-71.6 79.7-39.5 29.8-76.6 39.1-80.9 40.3l-7.6-7.1-1.2 3 14.3 16-7.1-4.7 3.4 4.2h-1.2l-21.9-13.5 9.3 26.6-19-27.9-1.2 2.5 7.6 29c-6.1-8.2-21-32.6-56.8-39.6l32.5 21.2a214.82 214.82 0 0 1-93.2-6.4c-4.2-1.2-8.9-2.5-13.5-4.2l1.2-3-44.8-22.4 26.1 22.4c-57.7 9.1-113-25.4-126.4-83.4l-2.5-16.4-22.27 22.3c19.5-57.5 25.6-57.9 51.4-70.1-9.1-5.3-1.6-3.3-38.4-9.3 15.8-5.8 33-15.4 73 5.2a18.5 18.5 0 0 1 3.7-1.7c.6-3.2.4-.8 1-11.8 3.9 10 3.6 8.7 3 9.3l1.7.5c12.7-6.5 8.9-4.5 17-8.9l-5.4 13.5 22.3-5.8-8.4 8.4 2.5 2.5c4.5-1.8 30.3 3.4 40.8 16l-23.6-2.5c39.4 23 51.5 54 55.8 69.6l1.7-1.2c-2.8-22.3-12.4-33.9-16-40.1 4.2 5 39.2 34.6 110.4 46-11.3-.5-23.1 5.4-34.9 18.9l46.7-20.2-9.3 21.9c7.6-10.1 14.8-23.6 21.2-39.6v-.5l1.2-3-1.2 16c13.5-41.8 25.3-78.5 35.4-109.7l13.5-27.8v-2l-5.4-4.2h10.1l5.9 4.2 2.5-1.2-3.4-16 12.3 18.9 41.8-20.2-14.8 13 .5 2.9 17.7-.5a184 184 0 0 1 33 4.2l-23.6 2.5-1.2 3 26.6 23.1a254.21 254.21 0 0 1 27 32c-11.2-3.3-10.3-3.4-21.2-3.4l12.3 32.5zm-6.1-71.3l-3.9 13-14.3-11.8zm-254.8 7.1c1.7 10.6 4.7 17.7 8.8 21.9-9.3 6.6-27.5 13.9-46.5 16l.5 1.2a50.22 50.22 0 0 0 24.8-2.5l-7.1 13c4.2-1.7 10.1-7.1 17.7-14.8 11.9-5.5 12.7-5.1 20.2-16-12.7-6.4-15.7-13.7-18.4-18.8zm3.7-102.3c-6.4-3.4-10.6 3-12.3 18.9s2.5 29.5 11.8 39.6 18.2 10.6 26.1 3 3.4-23.6-11.3-47.7a39.57 39.57 0 0 0-14.27-13.8zm-4.7 46.3c5.4 2.2 10.5 1.9 12.3-10.6v-4.7l-1.2.5c-4.3-3.1-2.5-4.5-1.7-6.2l.5-.5c-.9-1.2-5-8.1-12.5 4.7-.5-13.5.5-21.9 3-24.8 1.2-2.5 4.7-1.2 11.3 4.2 6.4 5.4 11.3 16 15.2 32.5 6.5 28-19.8 26.2-26.9 4.9zm-45-5.5c1.6.3 9.3-1.1 9.3-14.8h-.5c-5.4-1.1-2.2-5.5-.7-5.9-1.7-3-3.4-4.2-5.4-4.7-8.1 0-11.6 12.7-8.1 21.2a7.51 7.51 0 0 0 5.43 4.2zM216 82.9l-2.5.5.5 3a48.94 48.94 0 0 1 26.1 5.9c-2.5-5.5-10-14.3-28.3-14.3l.5 2.5zm-71.8 49.4c21.7 16.8 16.5 21.4 46.5 23.6l-2.9-4.7a42.67 42.67 0 0 0 14.8-28.3c1.7-16-1.2-29.5-8.8-41.3l13-7.6a2.26 2.26 0 0 0-.5-1.7 14.21 14.21 0 0 0-13.5 1.7c-12.7 6.7-28 20.9-29 22.4-1.7 1.7-3.4 5.9-5.4 13.5a99.61 99.61 0 0 0-2.9 23.6c-4.7-8-10.5-6.4-19.9-5.9l7.1 7.6c-16.5 0-23.3 15.4-23.6 16 6.8 0 4.6-7.6 30-12.3-4.3-6.3-3.3-5-4.9-6.6zm18.7-18.7c1.2-7.6 3.4-13 6.4-17.2 5.4-6.4 10.6-10.1 16-11.8 4.2-1.7 7.1 1.2 10.1 9.3a72.14 72.14 0 0 1 3 25.3c-.5 9.3-3.4 17.2-8.4 23.1-2.9 3.4-5.4 5.9-6.4 7.6a39.21 39.21 0 0 1-11.3-.5l-7.1-3.4-5.4-6.4c.8-10 1.3-18.8 3.1-26zm42 56.1c-34.8 14.4-34.7 14-36.1 14.3-20.8 4.7-19-24.4-18.9-24.8l5.9-1.2-.5-2.5c-20.2-2.6-31 4.2-32.5 4.9.5.5 3 3.4 5.9 9.3 4.2-6.4 8.8-10.1 15.2-10.6a83.47 83.47 0 0 0 1.7 33.7c.1.5 2.6 17.4 27.5 24.1 11.3 3 27 1.2 48.9-5.4l-9.2.5c-4.2-14.8-6.4-24.8-5.9-29.5 11.3-8.8 21.9-11.3 30.7-7.6h2.5l-11.8-7.6-7.1.5c-5.9 1.2-12.3 4.2-19.4 8.4z" + } + }, + "free": [ + "brands" + ] + }, + "themeco": { + "changes": [ + "5.1.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5c6", + "label": "Themeco", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M202.9 8.43c9.9-5.73 26-5.82 35.95-.21L430 115.85c10 5.6 18 19.44 18 30.86V364c0 11.44-8.06 25.29-18 31L238.81 503.74c-9.93 5.66-26 5.57-35.85-.21L17.86 395.12C8 389.34 0 375.38 0 364V146.71c0-11.44 8-25.36 17.91-31.08zm-77.4 199.83c-15.94 0-31.89.14-47.83.14v101.45H96.8V280h28.7c49.71 0 49.56-71.74 0-71.74zm140.14 100.29l-30.73-34.64c37-7.51 34.8-65.23-10.87-65.51-16.09 0-32.17-.14-48.26-.14v101.59h19.13v-33.91h18.41l29.56 33.91h22.76zm-41.59-82.32c23.34 0 23.26 32.46 0 32.46h-29.13v-32.46zm-95.56-1.6c21.18 0 21.11 38.85 0 38.85H96.18v-38.84zm192.65-18.25c-68.46 0-71 105.8 0 105.8 69.48-.01 69.41-105.8 0-105.8zm0 17.39c44.12 0 44.8 70.86 0 70.86s-44.43-70.86 0-70.86z" + } + }, + "free": [ + "brands" + ] + }, + "themeisle": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2b2", + "label": "ThemeIsle", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M208 88.286c0-10 6.286-21.714 17.715-21.714 11.142 0 17.714 11.714 17.714 21.714 0 10.285-6.572 21.714-17.714 21.714C214.286 110 208 98.571 208 88.286zm304 160c0 36.001-11.429 102.286-36.286 129.714-22.858 24.858-87.428 61.143-120.857 70.572l-1.143.286v32.571c0 16.286-12.572 30.571-29.143 30.571-10 0-19.429-5.714-24.572-14.286-5.427 8.572-14.856 14.286-24.856 14.286-10 0-19.429-5.714-24.858-14.286-5.142 8.572-14.571 14.286-24.57 14.286-10.286 0-19.429-5.714-24.858-14.286-5.143 8.572-14.571 14.286-24.571 14.286-18.857 0-29.429-15.714-29.429-32.857-16.286 12.285-35.715 19.428-56.571 19.428-22 0-43.429-8.285-60.286-22.857 10.285-.286 20.571-2.286 30.285-5.714-20.857-5.714-39.428-18.857-52-36.286 21.37 4.645 46.209 1.673 67.143-11.143-22-22-56.571-58.857-68.572-87.428C1.143 321.714 0 303.714 0 289.429c0-49.714 20.286-160 86.286-160 10.571 0 18.857 4.858 23.143 14.857a158.792 158.792 0 0 1 12-15.428c2-2.572 5.714-5.429 7.143-8.286 7.999-12.571 11.714-21.142 21.714-34C182.571 45.428 232 17.143 285.143 17.143c6 0 12 .285 17.714 1.143C313.714 6.571 328.857 0 344.572 0c14.571 0 29.714 6 40 16.286.857.858 1.428 2.286 1.428 3.428 0 3.714-10.285 13.429-12.857 16.286 4.286 1.429 15.714 6.858 15.714 12 0 2.857-2.857 5.143-4.571 7.143 31.429 27.714 49.429 67.143 56.286 108 4.286-5.143 10.285-8.572 17.143-8.572 10.571 0 20.857 7.144 28.571 14.001C507.143 187.143 512 221.714 512 248.286zM188 89.428c0 18.286 12.571 37.143 32.286 37.143 19.714 0 32.285-18.857 32.285-37.143 0-18-12.571-36.857-32.285-36.857-19.715 0-32.286 18.858-32.286 36.857zM237.714 194c0-19.714 3.714-39.143 8.571-58.286-52.039 79.534-13.531 184.571 68.858 184.571 21.428 0 42.571-7.714 60-20 2-7.429 3.714-14.857 3.714-22.572 0-14.286-6.286-21.428-20.572-21.428-4.571 0-9.143.857-13.429 1.714-63.343 12.668-107.142 3.669-107.142-63.999zm-41.142 254.858c0-11.143-8.858-20.857-20.286-20.857-11.429 0-20 9.715-20 20.857v32.571c0 11.143 8.571 21.142 20 21.142 11.428 0 20.286-9.715 20.286-21.142v-32.571zm49.143 0c0-11.143-8.572-20.857-20-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20-10 20-21.142v-32.571zm49.713 0c0-11.143-8.857-20.857-20.285-20.857-11.429 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.857 21.142 20.286 21.142 11.428 0 20.285-9.715 20.285-21.142v-32.571zm49.715 0c0-11.143-8.857-20.857-20.286-20.857-11.428 0-20.286 9.715-20.286 20.857v32.571c0 11.143 8.858 21.142 20.286 21.142 11.429 0 20.286-10 20.286-21.142v-32.571zM421.714 286c-30.857 59.142-90.285 102.572-158.571 102.572-96.571 0-160.571-84.572-160.571-176.572 0-16.857 2-33.429 6-49.714-20 33.715-29.714 72.572-29.714 111.429 0 60.286 24.857 121.715 71.429 160.857 5.143-9.714 14.857-16.286 26-16.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.571-14.286 24.858-14.286 10 0 19.428 5.714 24.571 14.286 5.429-8.571 14.857-14.286 24.858-14.286 10 0 19.428 5.714 24.857 14.286 5.143-8.571 14.571-14.286 24.572-14.286 10.857 0 20.857 6.572 25.714 16 43.427-36.286 68.569-92 71.426-148.286zm10.572-99.714c0-53.714-34.571-105.714-92.572-105.714-30.285 0-58.571 15.143-78.857 36.857C240.862 183.812 233.41 254 302.286 254c28.805 0 97.357-28.538 84.286 36.857 28.857-26 45.714-65.714 45.714-104.571z" + } + }, + "free": [ + "brands" + ] + }, + "thermometer": { + "aliases": { + "unicodes": { + "secondary": [ + "10f491" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "mercury", + "status", + "temperature" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f491", + "label": "Thermometer", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M96 382.1V293.3c0-14.9 5.9-29.1 16.4-39.6l27.3-27.3 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 41.4-41.4 57 57c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-57-57 45.5-45.5C355.2 10.9 381.4 0 408.8 0C465.8 0 512 46.2 512 103.2c0 27.4-10.9 53.6-30.2 73L258.3 399.6c-10.5 10.5-24.7 16.4-39.6 16.4H129.9L41 505c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l89-89z" + } + }, + "free": [ + "solid" + ] + }, + "think-peaks": { + "changes": [ + "5.4.2", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f731", + "label": "Think Peaks", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M465.4 409.4l87.1-150.2-32-.3-55.1 95L259.2 0 23 407.4l32 .3L259.2 55.6zm-355.3-44.1h32.1l117.4-202.5L463 511.9l32.5.1-235.8-404.6z" + } + }, + "free": [ + "brands" + ] + }, + "thumbs-down": { + "aliases": { + "unicodes": { + "composite": [ + "1f44e", + "f088" + ], + "secondary": [ + "10f165" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "-1", + "disagree", + "disapprove", + "dislike", + "down", + "hand", + "social", + "thumb", + "thumbs down", + "thumbs-o-down" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f165", + "label": "Thumbs Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M313.4 479.1c26-5.2 42.9-30.5 37.7-56.5l-2.3-11.4c-5.3-26.7-15.1-52.1-28.8-75.2H464c26.5 0 48-21.5 48-48c0-18.5-10.5-34.6-25.9-42.6C497 236.6 504 223.1 504 208c0-23.4-16.8-42.9-38.9-47.1c4.4-7.3 6.9-15.8 6.9-24.9c0-21.3-13.9-39.4-33.1-45.6c.7-3.3 1.1-6.8 1.1-10.4c0-26.5-21.5-48-48-48H294.5c-19 0-37.5 5.6-53.3 16.1L202.7 73.8C176 91.6 160 121.6 160 153.7V192v48 24.9c0 29.2 13.3 56.7 36 75l7.4 5.9c26.5 21.2 44.6 51 51.2 84.2l2.3 11.4c5.2 26 30.5 42.9 56.5 37.7zM32 384H96c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H32C14.3 96 0 110.3 0 128V352c0 17.7 14.3 32 32 32z" + }, + "regular": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M323.8 477.2c-38.2 10.9-78.1-11.2-89-49.4l-5.7-20c-3.7-13-10.4-25-19.5-35l-51.3-56.4c-8.9-9.8-8.2-25 1.6-33.9s25-8.2 33.9 1.6l51.3 56.4c14.1 15.5 24.4 34 30.1 54.1l5.7 20c3.6 12.7 16.9 20.1 29.7 16.5s20.1-16.9 16.5-29.7l-5.7-20c-5.7-19.9-14.7-38.7-26.6-55.5c-5.2-7.3-5.8-16.9-1.7-24.9s12.3-13 21.3-13L448 288c8.8 0 16-7.2 16-16c0-6.8-4.3-12.7-10.4-15c-7.4-2.8-13-9-14.9-16.7s.1-15.8 5.3-21.7c2.5-2.8 4-6.5 4-10.6c0-7.8-5.6-14.3-13-15.7c-8.2-1.6-15.1-7.3-18-15.2s-1.6-16.7 3.6-23.3c2.1-2.7 3.4-6.1 3.4-9.9c0-6.7-4.2-12.6-10.2-14.9c-11.5-4.5-17.7-16.9-14.4-28.8c.4-1.3 .6-2.8 .6-4.3c0-8.8-7.2-16-16-16H286.5c-12.6 0-25 3.7-35.5 10.7l-61.7 41.1c-11 7.4-25.9 4.4-33.3-6.7s-4.4-25.9 6.7-33.3l61.7-41.1c18.4-12.3 40-18.8 62.1-18.8H384c34.7 0 62.9 27.6 64 62c14.6 11.7 24 29.7 24 50c0 4.5-.5 8.8-1.3 13c15.4 11.7 25.3 30.2 25.3 51c0 6.5-1 12.8-2.8 18.7C504.8 238.3 512 254.3 512 272c0 35.3-28.6 64-64 64l-92.3 0c4.7 10.4 8.7 21.2 11.8 32.2l5.7 20c10.9 38.2-11.2 78.1-49.4 89zM32 384c-17.7 0-32-14.3-32-32V128c0-17.7 14.3-32 32-32H96c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H32z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "thumbs-up": { + "aliases": { + "unicodes": { + "composite": [ + "1f44d", + "f087" + ], + "secondary": [ + "10f164" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "+1", + "agree", + "approve", + "favorite", + "hand", + "like", + "ok", + "okay", + "social", + "success", + "thumb", + "thumbs up", + "thumbs-o-up", + "up", + "yes", + "you got it dude" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f164", + "label": "Thumbs Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M313.4 32.9c26 5.2 42.9 30.5 37.7 56.5l-2.3 11.4c-5.3 26.7-15.1 52.1-28.8 75.2H464c26.5 0 48 21.5 48 48c0 18.5-10.5 34.6-25.9 42.6C497 275.4 504 288.9 504 304c0 23.4-16.8 42.9-38.9 47.1c4.4 7.3 6.9 15.8 6.9 24.9c0 21.3-13.9 39.4-33.1 45.6c.7 3.3 1.1 6.8 1.1 10.4c0 26.5-21.5 48-48 48H294.5c-19 0-37.5-5.6-53.3-16.1l-38.5-25.7C176 420.4 160 390.4 160 358.3V320 272 247.1c0-29.2 13.3-56.7 36-75l7.4-5.9c26.5-21.2 44.6-51 51.2-84.2l2.3-11.4c5.2-26 30.5-42.9 56.5-37.7zM32 192H96c17.7 0 32 14.3 32 32V448c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V224c0-17.7 14.3-32 32-32z" + }, + "regular": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M323.8 34.8c-38.2-10.9-78.1 11.2-89 49.4l-5.7 20c-3.7 13-10.4 25-19.5 35l-51.3 56.4c-8.9 9.8-8.2 25 1.6 33.9s25 8.2 33.9-1.6l51.3-56.4c14.1-15.5 24.4-34 30.1-54.1l5.7-20c3.6-12.7 16.9-20.1 29.7-16.5s20.1 16.9 16.5 29.7l-5.7 20c-5.7 19.9-14.7 38.7-26.6 55.5c-5.2 7.3-5.8 16.9-1.7 24.9s12.3 13 21.3 13L448 224c8.8 0 16 7.2 16 16c0 6.8-4.3 12.7-10.4 15c-7.4 2.8-13 9-14.9 16.7s.1 15.8 5.3 21.7c2.5 2.8 4 6.5 4 10.6c0 7.8-5.6 14.3-13 15.7c-8.2 1.6-15.1 7.3-18 15.2s-1.6 16.7 3.6 23.3c2.1 2.7 3.4 6.1 3.4 9.9c0 6.7-4.2 12.6-10.2 14.9c-11.5 4.5-17.7 16.9-14.4 28.8c.4 1.3 .6 2.8 .6 4.3c0 8.8-7.2 16-16 16H286.5c-12.6 0-25-3.7-35.5-10.7l-61.7-41.1c-11-7.4-25.9-4.4-33.3 6.7s-4.4 25.9 6.7 33.3l61.7 41.1c18.4 12.3 40 18.8 62.1 18.8H384c34.7 0 62.9-27.6 64-62c14.6-11.7 24-29.7 24-50c0-4.5-.5-8.8-1.3-13c15.4-11.7 25.3-30.2 25.3-51c0-6.5-1-12.8-2.8-18.7C504.8 273.7 512 257.7 512 240c0-35.3-28.6-64-64-64l-92.3 0c4.7-10.4 8.7-21.2 11.8-32.2l5.7-20c10.9-38.2-11.2-78.1-49.4-89zM32 192c-17.7 0-32 14.3-32 32V448c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32H32z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "thumbtack": { + "aliases": { + "names": [ + "thumb-tack" + ], + "unicodes": { + "composite": [ + "1f4cc", + "1f588" + ], + "secondary": [ + "10f08d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Pushpin", + "coordinates", + "location", + "marker", + "pin", + "pushpin", + "thumb-tack" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f08d", + "label": "Thumbtack", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 32C32 14.3 46.3 0 64 0H320c17.7 0 32 14.3 32 32s-14.3 32-32 32H290.5l11.4 148.2c36.7 19.9 65.7 53.2 79.5 94.7l1 3c3.3 9.8 1.6 20.5-4.4 28.8s-15.7 13.3-26 13.3H32c-10.3 0-19.9-4.9-26-13.3s-7.7-19.1-4.4-28.8l1-3c13.8-41.5 42.8-74.8 79.5-94.7L93.5 64H64C46.3 64 32 49.7 32 32zM160 384h64v96c0 17.7-14.3 32-32 32s-32-14.3-32-32V384z" + } + }, + "free": [ + "solid" + ] + }, + "ticket": { + "aliases": { + "unicodes": { + "composite": [ + "1f39f" + ], + "secondary": [ + "10f145" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "5.10.1", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admission", + "admission tickets", + "movie", + "pass", + "support", + "ticket" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f145", + "label": "Ticket", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 64C28.7 64 0 92.7 0 128v64c0 8.8 7.4 15.7 15.7 18.6C34.5 217.1 48 235 48 256s-13.5 38.9-32.3 45.4C7.4 304.3 0 311.2 0 320v64c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V320c0-8.8-7.4-15.7-15.7-18.6C541.5 294.9 528 277 528 256s13.5-38.9 32.3-45.4c8.3-2.9 15.7-9.8 15.7-18.6V128c0-35.3-28.7-64-64-64H64zm64 112l0 160c0 8.8 7.2 16 16 16H432c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H144c-8.8 0-16 7.2-16 16zM96 160c0-17.7 14.3-32 32-32H448c17.7 0 32 14.3 32 32V352c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V160z" + } + }, + "free": [ + "solid" + ] + }, + "ticket-simple": { + "aliases": { + "names": [ + "ticket-alt" + ], + "unicodes": { + "secondary": [ + "10f3ff" + ] + } + }, + "changes": [ + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "movie", + "pass", + "support", + "ticket" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3ff", + "label": "Ticket Simple", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H512c35.3 0 64 28.7 64 64v64c0 8.8-7.4 15.7-15.7 18.6C541.5 217.1 528 235 528 256s13.5 38.9 32.3 45.4c8.3 2.9 15.7 9.8 15.7 18.6v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320c0-8.8 7.4-15.7 15.7-18.6C34.5 294.9 48 277 48 256s-13.5-38.9-32.3-45.4C7.4 207.7 0 200.8 0 192V128z" + } + }, + "free": [ + "solid" + ] + }, + "tiktok": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e07b", + "label": "TikTok", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z" + } + }, + "free": [ + "brands" + ] + }, + "timeline": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "chronological", + "deadline", + "history", + "linear" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e29c", + "label": "Timeline", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm32 97.3c28.3-12.3 48-40.5 48-73.3c0-44.2-35.8-80-80-80S48 51.8 48 96c0 32.8 19.7 61 48 73.3V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H288v54.7c-28.3 12.3-48 40.5-48 73.3c0 44.2 35.8 80 80 80s80-35.8 80-80c0-32.8-19.7-61-48-73.3V288H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H544V169.3c28.3-12.3 48-40.5 48-73.3c0-44.2-35.8-80-80-80s-80 35.8-80 80c0 32.8 19.7 61 48 73.3V224H160V169.3zM488 96a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM320 392a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + }, + "free": [ + "solid" + ] + }, + "toggle-off": { + "aliases": { + "unicodes": { + "secondary": [ + "10f204" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "button", + "off", + "on", + "switch" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f204", + "label": "Toggle Off", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M384 128c70.7 0 128 57.3 128 128s-57.3 128-128 128H192c-70.7 0-128-57.3-128-128s57.3-128 128-128H384zM576 256c0-106-86-192-192-192H192C86 64 0 150 0 256S86 448 192 448H384c106 0 192-86 192-192zM192 352a96 96 0 1 0 0-192 96 96 0 1 0 0 192z" + } + }, + "free": [ + "solid" + ] + }, + "toggle-on": { + "aliases": { + "unicodes": { + "secondary": [ + "10f205" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "button", + "off", + "on", + "switch" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f205", + "label": "Toggle On", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M192 64C86 64 0 150 0 256S86 448 192 448H384c106 0 192-86 192-192s-86-192-192-192H192zm192 96a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" + } + }, + "free": [ + "solid" + ] + }, + "toilet": { + "aliases": { + "unicodes": { + "composite": [ + "1f6bd" + ], + "secondary": [ + "10f7d8" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "flush", + "john", + "loo", + "pee", + "plumbing", + "poop", + "porcelain", + "potty", + "restroom", + "throne", + "toile", + "toilet", + "washroom", + "waste", + "wc" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7d8", + "label": "Toilet", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M24 0C10.7 0 0 10.7 0 24S10.7 48 24 48h8V196.9c-1.9 1.4-3.8 2.9-5.6 4.4C10.9 214.5 0 232.9 0 256c0 46.9 14.3 84.1 37 112.5c14.2 17.7 31.1 31.3 48.5 41.8L65.6 469.9c-3.3 9.8-1.6 20.5 4.4 28.8s15.7 13.3 26 13.3H352c10.3 0 19.9-4.9 26-13.3s7.7-19.1 4.4-28.8l-19.8-59.5c17.4-10.5 34.3-24.1 48.5-41.8c22.7-28.4 37-65.5 37-112.5c0-23.1-10.9-41.5-26.4-54.6c-1.8-1.5-3.7-3-5.6-4.4V48h8c13.3 0 24-10.7 24-24s-10.7-24-24-24H24zM384 256.3c0 1-.3 2.6-3.8 5.6c-4.8 4.1-14 9-29.3 13.4C320.5 284 276.1 288 224 288s-96.5-4-126.9-12.8c-15.3-4.4-24.5-9.3-29.3-13.4c-3.5-3-3.8-4.6-3.8-5.6l0-.3 0-.1c0-1 0-2.5 3.8-5.8c4.8-4.1 14-9 29.3-13.4C127.5 228 171.9 224 224 224s96.5 4 126.9 12.8c15.3 4.4 24.5 9.3 29.3 13.4c3.8 3.2 3.8 4.8 3.8 5.8l0 .1 0 .3zM328.2 384l-.2 .5 0-.5h.2zM112 64h32c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "toilet-paper": { + "aliases": { + "unicodes": { + "composite": [ + "1f9fb" + ], + "secondary": [ + "10f71e" + ] + } + }, + "changes": [ + "5.4.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "covid-19", + "halloween", + "holiday", + "lavatory", + "paper towels", + "prank", + "privy", + "restroom", + "roll", + "roll of paper", + "toilet", + "toilet paper", + "wipe" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f71e", + "label": "Toilet Paper", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M428.2 0C381.2 49.6 368 126.5 368 192c0 158.8-27.3 247-42.7 283.9c-10 24-33.2 36.1-55.4 36.1H32c-11.5 0-22.2-6.2-27.8-16.2s-5.6-22.3 .4-32.2c9.8-17.7 15.4-38.2 20.5-57.7C36.3 362.8 48 293.5 48 192C48 86 91 0 144 0H428.2zM496 384c-53 0-96-86-96-192S443 0 496 0s96 86 96 192s-43 192-96 192zm0-128c17.7 0 32-28.7 32-64s-14.3-64-32-64s-32 28.7-32 64s14.3 64 32 64zM128 208a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm64 0a16 16 0 1 0 -32 0 16 16 0 1 0 32 0zm48 16a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm80-16a16 16 0 1 0 -32 0 16 16 0 1 0 32 0z" + } + }, + "free": [ + "solid" + ] + }, + "toilet-paper-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e072" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bathroom", + "covid-19", + "halloween", + "holiday", + "lavatory", + "leaves", + "prank", + "privy", + "restroom", + "roll", + "toilet", + "trouble", + "ut oh", + "wipe" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e072", + "label": "Toilet Paper Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-109.7-86C569.9 374 608 291.9 608 192C608 86 565 0 512 0s-96 86-96 192c0 49.1 9.2 93.9 24.4 127.9l-59-46.2c1.6-24.8 2.6-52 2.6-81.6c0-65.5 13.2-142.4 60.2-192H160c-24.8 0-47.4 18.8-64.4 49.6L38.8 5.1zM66.5 148.4C64.9 162.4 64 177 64 192c0 101.5-11.7 170.8-23 213.9c-5.1 19.4-10.7 39.9-20.5 57.7c-5.9 9.9-6.1 22.1-.4 32.2S36.5 512 48 512H285.9c22.3 0 45.4-12.1 55.4-36.1c7.4-17.7 17.5-47.2 26-90.6L66.5 148.4zM544 192c0 35.3-14.3 64-32 64s-32-28.7-32-64s14.3-64 32-64s32 28.7 32 64z" + } + }, + "free": [ + "solid" + ] + }, + "toilet-portable": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "outhouse", + "toilet" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e583", + "label": "Toilet Portable", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M0 32V64H320V32c0-17.7-14.3-32-32-32H32C14.3 0 0 14.3 0 32zM24 96H0v24V488c0 13.3 10.7 24 24 24s24-10.7 24-24v-8H272v8c0 13.3 10.7 24 24 24s24-10.7 24-24V120 96H296 24zM256 240v64c0 8.8-7.2 16-16 16s-16-7.2-16-16V240c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "toilets-portable": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "outhouse", + "toilet" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e584", + "label": "Toilets Portable", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M32 0H224c17.7 0 32 14.3 32 32V64H0V32C0 14.3 14.3 0 32 0zM0 96H24 232h24v24V488c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H48v8c0 13.3-10.7 24-24 24s-24-10.7-24-24V120 96zM192 224c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V240c0-8.8-7.2-16-16-16zM352 0H544c17.7 0 32 14.3 32 32V64H320V32c0-17.7 14.3-32 32-32zM320 96h24H552h24v24V488c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H368v8c0 13.3-10.7 24-24 24s-24-10.7-24-24V120 96zM512 224c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V240c0-8.8-7.2-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "toolbox": { + "aliases": { + "unicodes": { + "composite": [ + "1f9f0" + ], + "secondary": [ + "10f552" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "chest", + "container", + "fix", + "mechanic", + "repair", + "settings", + "tool", + "toolbox", + "tools" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f552", + "label": "Toolbox", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M176 88v40H336V88c0-4.4-3.6-8-8-8H184c-4.4 0-8 3.6-8 8zm-48 40V88c0-30.9 25.1-56 56-56H328c30.9 0 56 25.1 56 56v40h28.1c12.7 0 24.9 5.1 33.9 14.1l51.9 51.9c9 9 14.1 21.2 14.1 33.9V304H384V288c0-17.7-14.3-32-32-32s-32 14.3-32 32v16H192V288c0-17.7-14.3-32-32-32s-32 14.3-32 32v16H0V227.9c0-12.7 5.1-24.9 14.1-33.9l51.9-51.9c9-9 21.2-14.1 33.9-14.1H128zM0 416V336H128v16c0 17.7 14.3 32 32 32s32-14.3 32-32V336H320v16c0 17.7 14.3 32 32 32s32-14.3 32-32V336H512v80c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64z" + } + }, + "free": [ + "solid" + ] + }, + "tooth": { + "aliases": { + "unicodes": { + "composite": [ + "1f9b7" + ], + "secondary": [ + "10f5c9" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bicuspid", + "dental", + "dentist", + "molar", + "mouth", + "teeth", + "tooth" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5c9", + "label": "Tooth", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M154.1 52.1C137.3 39.1 116.7 32 95.5 32C42.7 32 0 74.7 0 127.5v6.2c0 15.8 3.7 31.3 10.7 45.5l23.5 47.1c4.5 8.9 7.6 18.4 9.4 28.2L80.4 460.2c2 11.2 11.6 19.4 22.9 19.8s21.4-7.4 24-18.4l28.9-121.3C160.2 323.7 175 312 192 312s31.8 11.7 35.8 28.3l28.9 121.3c2.6 11.1 12.7 18.8 24 18.4s20.9-8.6 22.9-19.8l36.7-205.8c1.8-9.8 4.9-19.3 9.4-28.2l23.5-47.1c7.1-14.1 10.7-29.7 10.7-45.5v-2.1c0-55-44.6-99.6-99.6-99.6c-24.1 0-47.4 8.8-65.6 24.6l-3.2 2.8 19.5 15.2c7 5.4 8.2 15.5 2.8 22.5s-15.5 8.2-22.5 2.8l-24.4-19-37-28.8z" + } + }, + "free": [ + "solid" + ] + }, + "torii-gate": { + "aliases": { + "unicodes": { + "composite": [ + "26e9" + ], + "secondary": [ + "10f6a1" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "religion", + "shinto", + "shinto shrine", + "shintoism", + "shrine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6a1", + "label": "Torii Gate", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 80c0 26.5 21.5 48 48 48H64v64h64V128h96v64h64V128h96v64h64V128h16c26.5 0 48-21.5 48-48V13.4C512 6 506 0 498.6 0c-1.7 0-3.4 .3-5 1l-49 19.6C425.7 28.1 405.5 32 385.2 32H126.8c-20.4 0-40.5-3.9-59.4-11.4L18.4 1c-1.6-.6-3.3-1-5-1C6 0 0 6 0 13.4V80zM64 288V480c0 17.7 14.3 32 32 32s32-14.3 32-32V288H384V480c0 17.7 14.3 32 32 32s32-14.3 32-32V288h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64z" + } + }, + "free": [ + "solid" + ] + }, + "tornado": { + "aliases": { + "unicodes": { + "composite": [ + "1f32a" + ], + "secondary": [ + "10f76f" + ] + } + }, + "changes": [ + "5.5.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cloud", + "cyclone", + "dorothy", + "landspout", + "tornado", + "toto", + "twister", + "vortext", + "waterspout", + "weather", + "whirlwind" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f76f", + "label": "Tornado", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 32V45.6C0 62.7 1.7 79.6 5 96H357.8c3.2-6.9 7.5-13.3 13-18.8l38.6-38.6c4.2-4.2 6.6-10 6.6-16C416 10.1 405.9 0 393.4 0H32C14.3 0 0 14.3 0 32zm352.2 96H13.6c12.2 35.9 32.3 68.7 58.8 96H412l-47.2-62.9c-7.3-9.7-11.6-21.2-12.6-33.1zm-226 138.2l116.4 68.5c8.2 4.8 15.8 10.7 22.5 17.3H445c2-9.8 3-19.9 3-30.1c0-23-5.3-45.5-15.3-65.9H110.2c5.2 3.6 10.5 7 16 10.2zM288 384c10.3 21.4 13.8 45.5 9.9 69l-5.9 35.7c-2 12.2 7.4 23.4 19.8 23.4c5.3 0 10.4-2.1 14.2-5.9l78.2-78.2c12.8-12.8 23.1-27.7 30.4-43.9H288z" + } + }, + "free": [ + "solid" + ] + }, + "tower-broadcast": { + "aliases": { + "names": [ + "broadcast-tower" + ], + "unicodes": { + "secondary": [ + "10f519" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airwaves", + "antenna", + "communication", + "emergency", + "radio", + "reception", + "waves" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f519", + "label": "Tower Broadcast", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M80.3 44C69.8 69.9 64 98.2 64 128s5.8 58.1 16.3 84c6.6 16.4-1.3 35-17.7 41.7s-35-1.3-41.7-17.7C7.4 202.6 0 166.1 0 128S7.4 53.4 20.9 20C27.6 3.6 46.2-4.3 62.6 2.3S86.9 27.6 80.3 44zM555.1 20C568.6 53.4 576 89.9 576 128s-7.4 74.6-20.9 108c-6.6 16.4-25.3 24.3-41.7 17.7S489.1 228.4 495.7 212c10.5-25.9 16.3-54.2 16.3-84s-5.8-58.1-16.3-84C489.1 27.6 497 9 513.4 2.3s35 1.3 41.7 17.7zM352 128c0 23.7-12.9 44.4-32 55.4V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V183.4c-19.1-11.1-32-31.7-32-55.4c0-35.3 28.7-64 64-64s64 28.7 64 64zM170.6 76.8C163.8 92.4 160 109.7 160 128s3.8 35.6 10.6 51.2c7.1 16.2-.3 35.1-16.5 42.1s-35.1-.3-42.1-16.5c-10.3-23.6-16-49.6-16-76.8s5.7-53.2 16-76.8c7.1-16.2 25.9-23.6 42.1-16.5s23.6 25.9 16.5 42.1zM464 51.2c10.3 23.6 16 49.6 16 76.8s-5.7 53.2-16 76.8c-7.1 16.2-25.9 23.6-42.1 16.5s-23.6-25.9-16.5-42.1c6.8-15.6 10.6-32.9 10.6-51.2s-3.8-35.6-10.6-51.2c-7.1-16.2 .3-35.1 16.5-42.1s35.1 .3 42.1 16.5z" + } + }, + "free": [ + "solid" + ] + }, + "tower-cell": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airwaves", + "antenna", + "communication", + "radio", + "reception", + "waves" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e585", + "label": "Tower Cell", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M62.6 2.3C46.2-4.3 27.6 3.6 20.9 20C7.4 53.4 0 89.9 0 128s7.4 74.6 20.9 108c6.6 16.4 25.3 24.3 41.7 17.7S86.9 228.4 80.3 212C69.8 186.1 64 157.8 64 128s5.8-58.1 16.3-84C86.9 27.6 79 9 62.6 2.3zm450.8 0C497 9 489.1 27.6 495.7 44C506.2 69.9 512 98.2 512 128s-5.8 58.1-16.3 84c-6.6 16.4 1.3 35 17.7 41.7s35-1.3 41.7-17.7c13.5-33.4 20.9-69.9 20.9-108s-7.4-74.6-20.9-108C548.4 3.6 529.8-4.3 513.4 2.3zM340.1 165.2c7.5-10.5 11.9-23.3 11.9-37.2c0-35.3-28.7-64-64-64s-64 28.7-64 64c0 13.9 4.4 26.7 11.9 37.2L98.9 466.8c-7.3 16.1-.2 35.1 15.9 42.4s35.1 .2 42.4-15.9L177.7 448H398.3l20.6 45.2c7.3 16.1 26.3 23.2 42.4 15.9s23.2-26.3 15.9-42.4L340.1 165.2zM369.2 384H206.8l14.5-32H354.7l14.5 32zM288 205.3L325.6 288H250.4L288 205.3zM163.3 73.6c5.3-12.1-.2-26.3-12.4-31.6s-26.3 .2-31.6 12.4C109.5 77 104 101.9 104 128s5.5 51 15.3 73.6c5.3 12.1 19.5 17.7 31.6 12.4s17.7-19.5 12.4-31.6C156 165.8 152 147.4 152 128s4-37.8 11.3-54.4zM456.7 54.4c-5.3-12.1-19.5-17.7-31.6-12.4s-17.7 19.5-12.4 31.6C420 90.2 424 108.6 424 128s-4 37.8-11.3 54.4c-5.3 12.1 .2 26.3 12.4 31.6s26.3-.2 31.6-12.4C466.5 179 472 154.1 472 128s-5.5-51-15.3-73.6z" + } + }, + "free": [ + "solid" + ] + }, + "tower-observation": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "fire tower", + "view" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e586", + "label": "Tower Observation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M241.7 3.4c9-4.5 19.6-4.5 28.6 0l160 80c15.8 7.9 22.2 27.1 14.3 42.9C439 137.5 427.7 144 416 144v80c0 17.7-14.3 32-32 32h-4.9l32 192H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H384.5c-.4 0-.8 0-1.1 0H128.6c-.4 0-.8 0-1.1 0H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l32-192H128c-17.7 0-32-14.3-32-32V144c-11.7 0-23-6.5-28.6-17.7c-7.9-15.8-1.5-35 14.3-42.9l160-80zM314.5 448L256 399.2 197.5 448h117zM197.8 256l-4.7 28.3L256 336.8l62.9-52.5L314.2 256H197.8zm-13.9 83.2l-11.2 67L218.5 368l-34.6-28.8zM293.5 368l45.8 38.1-11.2-67L293.5 368zM176 128c-8.8 0-16 7.2-16 16s7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H176z" + } + }, + "free": [ + "solid" + ] + }, + "tractor": { + "aliases": { + "unicodes": { + "composite": [ + "1f69c" + ], + "secondary": [ + "10f722" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agriculture", + "farm", + "tractor", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f722", + "label": "Tractor", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 64c0-35.3 28.7-64 64-64H266.3c26.2 0 49.7 15.9 59.4 40.2L373.7 160H480V126.2c0-24.8 5.8-49.3 16.9-71.6l2.5-5c7.9-15.8 27.1-22.2 42.9-14.3s22.2 27.1 14.3 42.9l-2.5 5c-6.7 13.3-10.1 28-10.1 42.9V160h56c22.1 0 40 17.9 40 40v45.4c0 16.5-8.5 31.9-22.6 40.7l-43.3 27.1c-14.2-5.9-29.8-9.2-46.1-9.2c-39.3 0-74.1 18.9-96 48H352c0 17.7-14.3 32-32 32h-8.2c-1.7 4.8-3.7 9.5-5.8 14.1l5.8 5.8c12.5 12.5 12.5 32.8 0 45.3l-22.6 22.6c-12.5 12.5-32.8 12.5-45.3 0l-5.8-5.8c-4.6 2.2-9.3 4.1-14.1 5.8V480c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32v-8.2c-4.8-1.7-9.5-3.7-14.1-5.8l-5.8 5.8c-12.5 12.5-32.8 12.5-45.3 0L40.2 449.1c-12.5-12.5-12.5-32.8 0-45.3l5.8-5.8c-2.2-4.6-4.1-9.3-5.8-14.1H32c-17.7 0-32-14.3-32-32V320c0-17.7 14.3-32 32-32h8.2c1.7-4.8 3.7-9.5 5.8-14.1l-5.8-5.8c-12.5-12.5-12.5-32.8 0-45.3l22.6-22.6c9-9 21.9-11.5 33.1-7.6V192 160 64zm170.3 0H160v96h32H304.7L266.3 64zM176 256a80 80 0 1 0 0 160 80 80 0 1 0 0-160zM528 448a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm0 64c-48.6 0-88-39.4-88-88c0-29.8 14.8-56.1 37.4-72c14.3-10.1 31.8-16 50.6-16c2.7 0 5.3 .1 7.9 .3c44.9 4 80.1 41.7 80.1 87.7c0 48.6-39.4 88-88 88z" + } + }, + "free": [ + "solid" + ] + }, + "trade-federation": { + "changes": [ + "5.0.12" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f513", + "label": "Trade Federation", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8.8c-137 0-248 111-248 248s111 248 248 248 248-111 248-248-111-248-248-248zm0 482.8c-129.7 0-234.8-105.1-234.8-234.8S118.3 22 248 22s234.8 105.1 234.8 234.8S377.7 491.6 248 491.6zm155.1-328.5v-46.8H209.3V198H54.2l36.7 46h117.7v196.8h48.8V245h83.3v-47h-83.3v-34.8h145.7zm-73.3 45.1v23.9h-82.9v197.4h-26.8V232.1H96.3l-20.1-23.9h143.9v-80.6h171.8V152h-145v56.2zm-161.3-69l-12.4-20.7 2.1 23.8-23.5 5.4 23.3 5.4-2.1 24 12.3-20.5 22.2 9.5-15.7-18.1 15.8-18.1zm-29.6-19.7l9.3-11.5-12.7 5.9-8-12.4 1.7 13.9-14.3 3.8 13.7 2.7-.8 14.7 6.8-12.2 13.8 5.3zm165.4 145.2l-13.1 5.6-7.3-12.2 1.3 14.2-13.9 3.2 13.9 3.2-1.2 14.2 7.3-12.2 13.1 5.5-9.4-10.7zm106.9-77.2l-20.9 9.1-12-19.6 2.2 22.7-22.3 5.4 22.2 4.9-1.8 22.9 11.5-19.6 21.2 8.8-15.1-17zM248 29.9c-125.3 0-226.9 101.6-226.9 226.9S122.7 483.7 248 483.7s226.9-101.6 226.9-226.9S373.3 29.9 248 29.9zM342.6 196v51h-83.3v195.7h-52.7V245.9H89.9l-40-49.9h157.4v-81.6h197.8v50.7H259.4V196zM248 43.2c60.3 0 114.8 25 153.6 65.2H202.5V190H45.1C73.1 104.8 153.4 43.2 248 43.2zm0 427.1c-117.9 0-213.6-95.6-213.6-213.5 0-21.2 3.1-41.8 8.9-61.1L87.1 252h114.7v196.8h64.6V253h83.3v-62.7h-83.2v-19.2h145.6v-50.8c30.8 37 49.3 84.6 49.3 136.5.1 117.9-95.5 213.5-213.4 213.5zM178.8 275l-11-21.4 1.7 24.5-23.7 3.9 23.8 5.9-3.7 23.8 13-20.9 21.5 10.8-15.8-18.8 16.9-17.1z" + } + }, + "free": [ + "brands" + ] + }, + "trademark": { + "aliases": { + "unicodes": { + "composite": [ + "2122" + ], + "secondary": [ + "10f25c" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "copyright", + "mark", + "register", + "symbol", + "tm", + "trade mark", + "trademark" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f25c", + "label": "Trademark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M345.6 108.8c-8.3-11-22.7-15.5-35.7-11.2S288 114.2 288 128V384c0 17.7 14.3 32 32 32s32-14.3 32-32V224l86.4 115.2c6 8.1 15.5 12.8 25.6 12.8s19.6-4.7 25.6-12.8L576 224V384c0 17.7 14.3 32 32 32s32-14.3 32-32V128c0-13.8-8.8-26-21.9-30.4s-27.5 .1-35.7 11.2L464 266.7 345.6 108.8zM0 128c0 17.7 14.3 32 32 32H96V384c0 17.7 14.3 32 32 32s32-14.3 32-32V160h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32C14.3 96 0 110.3 0 128z" + } + }, + "free": [ + "solid" + ] + }, + "traffic-light": { + "aliases": { + "unicodes": { + "composite": [ + "1f6a6" + ], + "secondary": [ + "10f637" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "direction", + "light", + "road", + "signal", + "traffic", + "travel", + "vertical traffic light" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f637", + "label": "Traffic Light", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669835048, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V352c0 88.4 71.6 160 160 160s160-71.6 160-160V64c0-35.3-28.7-64-64-64H64zm96 416a48 48 0 1 1 0-96 48 48 0 1 1 0 96zm48-176a48 48 0 1 1 -96 0 48 48 0 1 1 96 0zm-48-80a48 48 0 1 1 0-96 48 48 0 1 1 0 96z" + } + }, + "free": [ + "solid" + ] + }, + "trailer": { + "aliases": { + "unicodes": { + "secondary": [ + "10e041" + ] + } + }, + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "carry", + "haul", + "moving", + "travel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e041", + "label": "Trailer", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 32C21.5 32 0 53.5 0 80V336c0 26.5 21.5 48 48 48H65.1c7.8-54.3 54.4-96 110.9-96s103.1 41.7 110.9 96H488h8H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H544V80c0-26.5-21.5-48-48-48H48zM80 96c8.8 0 16 7.2 16 16l0 131.2c-11.4 5.9-22.2 12.9-32 21V112c0-8.8 7.2-16 16-16zm96 128c-5.4 0-10.7 .2-16 .7L160 112c0-8.8 7.2-16 16-16s16 7.2 16 16l0 112.7c-5.3-.5-10.6-.7-16-.7zm80 19.2L256 112c0-8.8 7.2-16 16-16s16 7.2 16 16l0 152.2c-9.8-8.1-20.6-15.2-32-21zM368 96c8.8 0 16 7.2 16 16l0 192c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-192c0-8.8 7.2-16 16-16zm112 16l0 192c0 8.8-7.2 16-16 16s-16-7.2-16-16l0-192c0-8.8 7.2-16 16-16s16 7.2 16 16zM176 480a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm0-112a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "train": { + "aliases": { + "unicodes": { + "composite": [ + "1f686" + ], + "secondary": [ + "10f238" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bullet", + "commute", + "locomotive", + "railway", + "subway", + "train" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f238", + "label": "Train", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V352c0 48 35.2 87.7 81.1 94.9l-46 46C28.1 499.9 33.1 512 43 512H82.7c8.5 0 16.6-3.4 22.6-9.4L160 448H288l54.6 54.6c6 6 14.1 9.4 22.6 9.4H405c10 0 15-12.1 7.9-19.1l-46-46c46-7.1 81.1-46.9 81.1-94.9V96c0-53-43-96-96-96H96zM64 96c0-17.7 14.3-32 32-32H352c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96zM224 288a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + }, + "free": [ + "solid" + ] + }, + "train-subway": { + "aliases": { + "names": [ + "subway" + ], + "unicodes": { + "secondary": [ + "10f239" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "machine", + "railway", + "train", + "transportation", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f239", + "label": "Train Subway", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V352c0 48 35.2 87.7 81.1 94.9l-46 46C28.1 499.9 33.1 512 43 512H82.7c8.5 0 16.6-3.4 22.6-9.4L160 448H288l54.6 54.6c6 6 14.1 9.4 22.6 9.4H405c10 0 15-12.1 7.9-19.1l-46-46c46-7.1 81.1-46.9 81.1-94.9V96c0-53-43-96-96-96H96zM64 128c0-17.7 14.3-32 32-32h80c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V128zM272 96h80c17.7 0 32 14.3 32 32v96c0 17.7-14.3 32-32 32H272c-17.7 0-32-14.3-32-32V128c0-17.7 14.3-32 32-32zM64 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm288-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "train-tram": { + "aliases": { + "unicodes": { + "composite": [ + "1f68a" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "crossing", + "machine", + "mountains", + "seasonal", + "tram", + "transportation", + "trolleybus" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e5b4", + "label": "Train Tram", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M86.8 48c-12.2 0-23.6 5.5-31.2 15L42.7 79C34.5 89.3 19.4 91 9 82.7S-3 59.4 5.3 49L18 33C34.7 12.2 60 0 86.8 0H361.2c26.7 0 52 12.2 68.7 33l12.8 16c8.3 10.4 6.6 25.5-3.7 33.7s-25.5 6.6-33.7-3.7L392.5 63c-7.6-9.5-19.1-15-31.2-15H248V96h40c53 0 96 43 96 96V352c0 30.6-14.3 57.8-36.6 75.4l65.5 65.5c7.1 7.1 2.1 19.1-7.9 19.1H365.3c-8.5 0-16.6-3.4-22.6-9.4L288 448H160l-54.6 54.6c-6 6-14.1 9.4-22.6 9.4H43c-10 0-15-12.1-7.9-19.1l65.5-65.5C78.3 409.8 64 382.6 64 352V192c0-53 43-96 96-96h40V48H86.8zM160 160c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32H160zm32 192a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm96 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "transgender": { + "aliases": { + "names": [ + "transgender-alt" + ], + "unicodes": { + "composite": [ + "26a7" + ], + "secondary": [ + "10f225" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "female", + "gender", + "intersex", + "male", + "transgender", + "transgender symbol" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f225", + "label": "Transgender", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M112 0c6.5 0 12.3 3.9 14.8 9.9s1.1 12.9-3.5 17.4l-31 31L112 78.1l7-7c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-7 7 15.2 15.2C187.7 107.6 220.5 96 256 96s68.3 11.6 94.9 31.2l68.8-68.8-31-31c-4.6-4.6-5.9-11.5-3.5-17.4s8.3-9.9 14.8-9.9h96c8.8 0 16 7.2 16 16v96c0 6.5-3.9 12.3-9.9 14.8s-12.9 1.1-17.4-3.5l-31-31-68.8 68.8C404.4 187.7 416 220.5 416 256c0 80.2-59 146.6-136 158.2V432h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H280v8c0 13.3-10.7 24-24 24s-24-10.7-24-24v-8H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h16V414.2C155 402.6 96 336.2 96 256c0-35.5 11.6-68.3 31.2-94.9L112 145.9l-7 7c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l7-7L58.3 92.3l-31 31c-4.6 4.6-11.5 5.9-17.4 3.5S0 118.5 0 112V16C0 7.2 7.2 0 16 0h96zM352 256a96 96 0 1 0 -192 0 96 96 0 1 0 192 0z" + } + }, + "free": [ + "solid" + ] + }, + "trash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f1f8" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "garbage", + "hide", + "remove" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1f8", + "label": "Trash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M135.2 17.7L128 32H32C14.3 32 0 46.3 0 64S14.3 96 32 96H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H320l-7.2-14.3C307.4 6.8 296.3 0 284.2 0H163.8c-12.1 0-23.2 6.8-28.6 17.7zM416 128H32L53.2 467c1.6 25.3 22.6 45 47.9 45H346.9c25.3 0 46.3-19.7 47.9-45L416 128z" + } + }, + "free": [ + "solid" + ] + }, + "trash-arrow-up": { + "aliases": { + "names": [ + "trash-restore" + ], + "unicodes": { + "secondary": [ + "10f829" + ] + } + }, + "changes": [ + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "delete", + "garbage", + "hide", + "oops", + "remove", + "undo" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f829", + "label": "Trash Arrow Up", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M163.8 0H284.2c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32h96l7.2-14.3C140.6 6.8 151.7 0 163.8 0zM32 128H416L394.8 467c-1.6 25.3-22.6 45-47.9 45H101.1c-25.3 0-46.3-19.7-47.9-45L32 128zm192 64c-6.4 0-12.5 2.5-17 7l-80 80c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39V408c0 13.3 10.7 24 24 24s24-10.7 24-24V273.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-4.5-4.5-10.6-7-17-7z" + } + }, + "free": [ + "solid" + ] + }, + "trash-can": { + "aliases": { + "names": [ + "trash-alt" + ], + "unicodes": { + "composite": [ + "f014" + ], + "secondary": [ + "10f2ed" + ] + } + }, + "changes": [ + "5.0.0", + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "garbage", + "hide", + "remove", + "trash-o" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2ed", + "label": "Trash Can", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M135.2 17.7C140.6 6.8 151.7 0 163.8 0H284.2c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32h96l7.2-14.3zM32 128H416V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V128zm96 64c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16V432c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16z" + }, + "regular": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M170.5 51.6L151.5 80h145l-19-28.4c-1.5-2.2-4-3.6-6.7-3.6H177.1c-2.7 0-5.2 1.3-6.7 3.6zm147-26.6L354.2 80H368h48 8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8V432c0 44.2-35.8 80-80 80H112c-44.2 0-80-35.8-80-80V128H24c-13.3 0-24-10.7-24-24S10.7 80 24 80h8H80 93.8l36.7-55.1C140.9 9.4 158.4 0 177.1 0h93.7c18.7 0 36.2 9.4 46.6 24.9zM80 128V432c0 17.7 14.3 32 32 32H336c17.7 0 32-14.3 32-32V128H80zm80 64V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "trash-can-arrow-up": { + "aliases": { + "names": [ + "trash-restore-alt" + ], + "unicodes": { + "secondary": [ + "10f82a" + ] + } + }, + "changes": [ + "5.7.0", + "5.10.2", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "back", + "control z", + "delete", + "garbage", + "hide", + "oops", + "remove", + "undo" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f82a", + "label": "Trash Can Arrow Up", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M163.8 0H284.2c12.1 0 23.2 6.8 28.6 17.7L320 32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 96 0 81.7 0 64S14.3 32 32 32h96l7.2-14.3C140.6 6.8 151.7 0 163.8 0zM32 128H416V448c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V128zm192 64c-6.4 0-12.5 2.5-17 7l-80 80c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l39-39V408c0 13.3 10.7 24 24 24s24-10.7 24-24V273.9l39 39c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-80-80c-4.5-4.5-10.6-7-17-7z" + } + }, + "free": [ + "solid" + ] + }, + "tree": { + "aliases": { + "unicodes": { + "composite": [ + "1f332" + ], + "secondary": [ + "10f1bb" + ] + } + }, + "changes": [ + "4.1.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bark", + "evergreen tree", + "fall", + "flora", + "forest", + "nature", + "plant", + "seasonal", + "tree" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1bb", + "label": "Tree", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M210.6 5.9L62 169.4c-3.9 4.2-6 9.8-6 15.5C56 197.7 66.3 208 79.1 208H104L30.6 281.4c-4.2 4.2-6.6 10-6.6 16C24 309.9 34.1 320 46.6 320H80L5.4 409.5C1.9 413.7 0 419 0 424.5c0 13 10.5 23.5 23.5 23.5H192v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448H424.5c13 0 23.5-10.5 23.5-23.5c0-5.5-1.9-10.8-5.4-15L368 320h33.4c12.5 0 22.6-10.1 22.6-22.6c0-6-2.4-11.8-6.6-16L344 208h24.9c12.7 0 23.1-10.3 23.1-23.1c0-5.7-2.1-11.3-6-15.5L237.4 5.9C234 2.1 229.1 0 224 0s-10 2.1-13.4 5.9z" + } + }, + "free": [ + "solid" + ] + }, + "tree-city": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "city", + "urban" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e587", + "label": "Tree City", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670850910, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 48c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48V192h40V120c0-13.3 10.7-24 24-24s24 10.7 24 24v72h24c26.5 0 48 21.5 48 48V464c0 26.5-21.5 48-48 48H432 336c-26.5 0-48-21.5-48-48V48zm64 32v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm16 80c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V176c0-8.8-7.2-16-16-16H368zM352 272v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H368c-8.8 0-16 7.2-16 16zm176-16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V272c0-8.8-7.2-16-16-16H528zM512 368v32c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V368c0-8.8-7.2-16-16-16H528c-8.8 0-16 7.2-16 16zM224 160c0 6-1 11-2 16c20 14 34 38 34 64c0 45-36 80-80 80H160V480c0 18-15 32-32 32c-18 0-32-14-32-32V320H80c-45 0-80-35-80-80c0-26 13-50 33-64c-1-5-1-10-1-16c0-53 42-96 96-96c53 0 96 43 96 96z" + } + }, + "free": [ + "solid" + ] + }, + "trello": { + "changes": [ + "3.2.0", + "5.0.0", + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "atlassian" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f181", + "label": "Trello", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M392.3 32H56.1C25.1 32 0 57.1 0 88c-.1 0 0-4 0 336 0 30.9 25.1 56 56 56h336.2c30.8-.2 55.7-25.2 55.7-56V88c.1-30.8-24.8-55.8-55.6-56zM197 371.3c-.2 14.7-12.1 26.6-26.9 26.6H87.4c-14.8.1-26.9-11.8-27-26.6V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v254.2zm193.1-112c0 14.8-12 26.9-26.9 26.9h-81c-14.8 0-26.9-12-26.9-26.9V117.2c0-14.8 12-26.9 26.8-26.9h81.1c14.8 0 26.9 12 26.9 26.9v142.1z" + } + }, + "free": [ + "brands" + ] + }, + "triangle-exclamation": { + "aliases": { + "names": [ + "exclamation-triangle", + "warning" + ], + "unicodes": { + "composite": [ + "26a0" + ], + "secondary": [ + "10f071" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.6.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alert", + "danger", + "error", + "important", + "notice", + "notification", + "notify", + "problem", + "warnin", + "warning" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f071", + "label": "Triangle Exclamation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + }, + "free": [ + "solid" + ] + }, + "trophy": { + "aliases": { + "unicodes": { + "composite": [ + "1f3c6" + ], + "secondary": [ + "10f091" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "achievement", + "award", + "cup", + "game", + "prize", + "trophy", + "winner" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f091", + "label": "Trophy", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M400 0H176c-26.5 0-48.1 21.8-47.1 48.2c.2 5.3 .4 10.6 .7 15.8H24C10.7 64 0 74.7 0 88c0 92.6 33.5 157 78.5 200.7c44.3 43.1 98.3 64.8 138.1 75.8c23.4 6.5 39.4 26 39.4 45.6c0 20.9-17 37.9-37.9 37.9H192c-17.7 0-32 14.3-32 32s14.3 32 32 32H384c17.7 0 32-14.3 32-32s-14.3-32-32-32H357.9C337 448 320 431 320 410.1c0-19.6 15.9-39.2 39.4-45.6c39.9-11 93.9-32.7 138.2-75.8C542.5 245 576 180.6 576 88c0-13.3-10.7-24-24-24H446.4c.3-5.2 .5-10.4 .7-15.8C448.1 21.8 426.5 0 400 0zM48.9 112h84.4c9.1 90.1 29.2 150.3 51.9 190.6c-24.9-11-50.8-26.5-73.2-48.3c-32-31.1-58-76-63-142.3zM464.1 254.3c-22.4 21.8-48.3 37.3-73.2 48.3c22.7-40.3 42.8-100.5 51.9-190.6h84.4c-5.1 66.3-31.1 111.2-63 142.3z" + } + }, + "free": [ + "solid" + ] + }, + "trowel": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "build", + "construction", + "tool" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e589", + "label": "Trowel", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M343.9 213.4L245.3 312l65.4 65.4c7.9 7.9 11.1 19.4 8.4 30.3s-10.8 19.6-21.5 22.9l-256 80c-11.4 3.5-23.8 .5-32.2-7.9S-2.1 481.8 1.5 470.5l80-256c3.3-10.7 12-18.9 22.9-21.5s22.4 .5 30.3 8.4L200 266.7l98.6-98.6c-14.3-14.6-14.2-38 .3-52.5l95.4-95.4c26.9-26.9 70.5-26.9 97.5 0s26.9 70.5 0 97.5l-95.4 95.4c-14.5 14.5-37.9 14.6-52.5 .3z" + } + }, + "free": [ + "solid" + ] + }, + "trowel-bricks": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "build", + "construction", + "reconstruction", + "tool" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e58a", + "label": "Trowel Bricks", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M240.8 4.8C250.3 10.6 256 20.9 256 32v72h89c3.6-13.8 16.1-24 31-24h88c26.5 0 48 21.5 48 48s-21.5 48-48 48H376c-14.9 0-27.4-10.2-31-24H256v72c0 11.1-5.7 21.4-15.2 27.2s-21.2 6.4-31.1 1.4l-192-96C6.8 151.2 0 140.1 0 128s6.8-23.2 17.7-28.6l192-96c9.9-5 21.7-4.4 31.1 1.4zM288 256c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H320c-17.7 0-32-14.3-32-32V256zM32 384h96c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32zm192 0H480c17.7 0 32 14.3 32 32v64c0 17.7-14.3 32-32 32H224c-17.7 0-32-14.3-32-32V416c0-17.7 14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "truck": { + "aliases": { + "unicodes": { + "composite": [ + "1f69a", + "26df" + ], + "secondary": [ + "10f0d1" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Black Truck", + "cargo", + "delivery", + "delivery truck", + "shipping", + "truck", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d1", + "label": "Truck", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 0C21.5 0 0 21.5 0 48V368c0 26.5 21.5 48 48 48H64c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V288 256 237.3c0-17-6.7-33.3-18.7-45.3L512 114.7c-12-12-28.3-18.7-45.3-18.7H416V48c0-26.5-21.5-48-48-48H48zM416 160h50.7L544 237.3V256H416V160zM112 416a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm368-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96z" + } + }, + "free": [ + "solid" + ] + }, + "truck-arrow-right": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "access", + "fast", + "shipping", + "transport" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e58b", + "label": "Truck Arrow Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H368c26.5 0 48 21.5 48 48V96h50.7c17 0 33.3 6.7 45.3 18.7L589.3 192c12 12 18.7 28.3 18.7 45.3V256v32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V48zM416 256H544V237.3L466.7 160H416v96zM160 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm368-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM257 95c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l39 39H96c-13.3 0-24 10.7-24 24s10.7 24 24 24H262.1l-39 39c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l80-80c9.4-9.4 9.4-24.6 0-33.9L257 95z" + } + }, + "free": [ + "solid" + ] + }, + "truck-droplet": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "thirst", + "truck", + "water", + "water supply" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e58c", + "label": "Truck Droplet", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H368c26.5 0 48 21.5 48 48V96h50.7c17 0 33.3 6.7 45.3 18.7L589.3 192c12 12 18.7 28.3 18.7 45.3V256v32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V48zM416 256H544V237.3L466.7 160H416v96zM160 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm368-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM208 272c39.8 0 72-29.6 72-66c0-27-39.4-82.9-59.9-110.3c-6.1-8.2-18.1-8.2-24.2 0C175.4 123 136 179 136 206c0 36.5 32.2 66 72 66z" + } + }, + "free": [ + "solid" + ] + }, + "truck-fast": { + "aliases": { + "names": [ + "shipping-fast" + ], + "unicodes": { + "secondary": [ + "10f48b" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "express", + "fedex", + "mail", + "overnight", + "package", + "ups" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f48b", + "label": "Truck Fast", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M112 0C85.5 0 64 21.5 64 48V96H16c-8.8 0-16 7.2-16 16s7.2 16 16 16H64 272c8.8 0 16 7.2 16 16s-7.2 16-16 16H64 48c-8.8 0-16 7.2-16 16s7.2 16 16 16H64 240c8.8 0 16 7.2 16 16s-7.2 16-16 16H64 16c-8.8 0-16 7.2-16 16s7.2 16 16 16H64 208c8.8 0 16 7.2 16 16s-7.2 16-16 16H64V416c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V288 256 237.3c0-17-6.7-33.3-18.7-45.3L512 114.7c-12-12-28.3-18.7-45.3-18.7H416V48c0-26.5-21.5-48-48-48H112zM544 237.3V256H416V160h50.7L544 237.3zM160 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96zm272 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0z" + } + }, + "free": [ + "solid" + ] + }, + "truck-field": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "supplies", + "truck" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e58d", + "label": "Truck Field", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 96c0-35.3 28.7-64 64-64H320c23.7 0 44.4 12.9 55.4 32h51.8c25.3 0 48.2 14.9 58.5 38l52.8 118.8c.5 1.1 .9 2.1 1.3 3.2H544c35.3 0 64 28.7 64 64v32c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V288c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32V96zM384 224h85.9l-42.7-96H384v96zM160 432a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm368-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + }, + "free": [ + "solid" + ] + }, + "truck-field-un": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "supplies", + "truck", + "united nations" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e58e", + "label": "Truck Field Un", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 32C60.7 32 32 60.7 32 96v32c-17.7 0-32 14.3-32 32v96c0 17.7 14.3 32 32 32v32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64c0 53 43 96 96 96s96-43 96-96H384c0 53 43 96 96 96s96-43 96-96h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V288c0-35.3-28.7-64-64-64h-4.2c-.4-1.1-.9-2.1-1.3-3.2L485.7 102c-10.3-23.1-33.2-38-58.5-38H375.4C364.4 44.9 343.7 32 320 32H96zm288 96h43.2l42.7 96H384V128zM112 384a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm368-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96zM253.3 135.1l34.7 52V144c0-8.8 7.2-16 16-16s16 7.2 16 16v96c0 7.1-4.6 13.3-11.4 15.3s-14-.6-17.9-6.4l-34.7-52V240c0 8.8-7.2 16-16 16s-16-7.2-16-16V144c0-7.1 4.6-13.3 11.4-15.3s14 .6 17.9 6.4zM128 144v64c0 8.8 7.2 16 16 16s16-7.2 16-16V144c0-8.8 7.2-16 16-16s16 7.2 16 16v64c0 26.5-21.5 48-48 48s-48-21.5-48-48V144c0-8.8 7.2-16 16-16s16 7.2 16 16z" + } + }, + "free": [ + "solid" + ] + }, + "truck-front": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "shuttle", + "truck", + "van" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e2b7", + "label": "Truck Front", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 80C0 35.8 35.8 0 80 0H432c44.2 0 80 35.8 80 80V368c0 26.2-12.6 49.4-32 64v48c0 17.7-14.3 32-32 32H416c-17.7 0-32-14.3-32-32V448H128v32c0 17.7-14.3 32-32 32H64c-17.7 0-32-14.3-32-32V432C12.6 417.4 0 394.2 0 368V80zm129.9 72.2L112 224H400l-17.9-71.8C378.5 138 365.7 128 351 128H161c-14.7 0-27.5 10-31 24.2zM128 320a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm288 32a32 32 0 1 0 0-64 32 32 0 1 0 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "truck-medical": { + "aliases": { + "names": [ + "ambulance" + ], + "unicodes": { + "composite": [ + "1f691" + ], + "secondary": [ + "10f0f9" + ] + } + }, + "changes": [ + "3.0.0", + "5.0.0", + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ambulance", + "clinic", + "covid-19", + "emergency", + "emt", + "er", + "help", + "hospital", + "mobile", + "support", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0f9", + "label": "Truck Medical", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 48C0 21.5 21.5 0 48 0H368c26.5 0 48 21.5 48 48V96h50.7c17 0 33.3 6.7 45.3 18.7L589.3 192c12 12 18.7 28.3 18.7 45.3V256v32 64c17.7 0 32 14.3 32 32s-14.3 32-32 32H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V48zM416 256H544V237.3L466.7 160H416v96zM160 464a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm368-48a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM176 80v48l-48 0c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h48v48c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16V192h48c8.8 0 16-7.2 16-16V144c0-8.8-7.2-16-16-16H240V80c0-8.8-7.2-16-16-16H192c-8.8 0-16 7.2-16 16z" + } + }, + "free": [ + "solid" + ] + }, + "truck-monster": { + "aliases": { + "unicodes": { + "secondary": [ + "10f63b" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "offroad", + "vehicle", + "wheel" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f63b", + "label": "Truck Monster", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M288 64v64H416L368 64H288zM419.2 25.6L496 128h80c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32c-29.2-38.9-75.7-64-128-64s-98.8 25.1-128 64H288c-29.2-38.9-75.7-64-128-64s-98.8 25.1-128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32H224V48c0-26.5 21.5-48 48-48h96c20.1 0 39.1 9.5 51.2 25.6zM152 256h16c12.1 0 22.1 8.9 23.8 20.6c7.6 2.2 14.9 5.3 21.7 9c9.4-7 22.8-6.3 31.3 2.3l11.3 11.3c8.6 8.6 9.3 21.9 2.3 31.3c3.7 6.8 6.8 14.1 9 21.7c11.6 1.7 20.6 11.7 20.6 23.8v16c0 12.1-8.9 22.1-20.6 23.8c-2.2 7.6-5.3 14.9-9 21.7c7 9.4 6.3 22.8-2.3 31.3l-11.3 11.3c-8.6 8.6-21.9 9.3-31.3 2.2c-6.8 3.7-14.1 6.8-21.7 9C190.1 503.1 180.1 512 168 512H152c-12.1 0-22.1-8.9-23.8-20.6c-7.6-2.2-14.9-5.3-21.7-9c-9.4 7.1-22.8 6.3-31.3-2.2L63.8 468.9c-8.6-8.6-9.3-21.9-2.3-31.3c-3.7-6.9-6.8-14.1-9-21.8C40.9 414.1 32 404.1 32 392V376c0-12.1 8.9-22.1 20.6-23.8c2.2-7.6 5.3-14.9 9-21.8c-7-9.4-6.3-22.8 2.3-31.3l11.3-11.3c8.6-8.6 21.9-9.3 31.3-2.3c6.8-3.7 14.1-6.8 21.7-9c1.7-11.6 11.7-20.6 23.8-20.6zm8 176a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM448.2 276.6c1.7-11.6 11.7-20.6 23.8-20.6h16c12.1 0 22.1 8.9 23.8 20.6c7.6 2.2 14.9 5.3 21.8 9c9.4-7 22.8-6.3 31.3 2.3l11.3 11.3c8.6 8.6 9.3 21.9 2.2 31.3c3.7 6.8 6.8 14.1 9 21.7c11.6 1.7 20.6 11.7 20.6 23.8v16c0 12.1-8.9 22.1-20.6 23.8c-2.2 7.6-5.3 14.9-9 21.7c7 9.4 6.3 22.8-2.2 31.3l-11.3 11.3c-8.6 8.6-21.9 9.3-31.3 2.2c-6.9 3.7-14.1 6.8-21.8 9C510.1 503.1 500.1 512 488 512H472c-12.1 0-22.1-8.9-23.8-20.6c-7.6-2.2-14.9-5.3-21.7-9c-9.4 7.1-22.8 6.3-31.3-2.2l-11.3-11.3c-8.6-8.6-9.3-21.9-2.2-31.3c-3.7-6.9-6.8-14.1-9-21.8C360.9 414.1 352 404.1 352 392V376c0-12.1 8.9-22.1 20.6-23.8c2.2-7.6 5.3-14.9 9-21.8c-7-9.4-6.3-22.8 2.2-31.3l11.3-11.3c8.6-8.6 21.9-9.3 31.3-2.3c6.8-3.7 14.1-6.8 21.7-9zM528 384a48 48 0 1 0 -96 0 48 48 0 1 0 96 0z" + } + }, + "free": [ + "solid" + ] + }, + "truck-moving": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4df" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cargo", + "inventory", + "rental", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4df", + "label": "Truck Moving", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V304v80 16c0 44.2 35.8 80 80 80c26.2 0 49.4-12.6 64-32c14.6 19.4 37.8 32 64 32c44.2 0 80-35.8 80-80c0-5.5-.6-10.8-1.6-16H416h33.6c-1 5.2-1.6 10.5-1.6 16c0 44.2 35.8 80 80 80s80-35.8 80-80c0-5.5-.6-10.8-1.6-16H608c17.7 0 32-14.3 32-32V288 272 261.7c0-9.2-3.2-18.2-9-25.3l-58.8-71.8c-10.6-13-26.5-20.5-43.3-20.5H480V96c0-35.3-28.7-64-64-64H64zM585 256H480V192h48.8c2.4 0 4.7 1.1 6.2 2.9L585 256zM528 368a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM176 400a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zM80 368a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "truck-pickup": { + "aliases": { + "unicodes": { + "composite": [ + "1f6fb" + ], + "secondary": [ + "10f63c" + ] + } + }, + "changes": [ + "5.2.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cargo", + "pick-up", + "pickup", + "pickup truck", + "truck", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f63c", + "label": "Truck Pickup", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M368.6 96l76.8 96H288V96h80.6zM224 80V192H64c-17.7 0-32 14.3-32 32v64c-17.7 0-32 14.3-32 32s14.3 32 32 32H65.1c-.7 5.2-1.1 10.6-1.1 16c0 61.9 50.1 112 112 112s112-50.1 112-112c0-5.4-.4-10.8-1.1-16h66.3c-.7 5.2-1.1 10.6-1.1 16c0 61.9 50.1 112 112 112s112-50.1 112-112c0-5.4-.4-10.8-1.1-16H608c17.7 0 32-14.3 32-32s-14.3-32-32-32V224c0-17.7-14.3-32-32-32H527.4L418.6 56c-12.1-15.2-30.5-24-50-24H272c-26.5 0-48 21.5-48 48zm0 288a48 48 0 1 1 -96 0 48 48 0 1 1 96 0zm288 0a48 48 0 1 1 -96 0 48 48 0 1 1 96 0z" + } + }, + "free": [ + "solid" + ] + }, + "truck-plane": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airplane", + "plane", + "transportation", + "truck", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e58f", + "label": "Truck Plane", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824642, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M200 0c-30.6 0-56 54.7-56 86.1V192.5L7.8 274.3C2.9 277.2 0 282.4 0 288v64c0 5.1 2.4 9.8 6.4 12.8s9.3 3.9 14.1 2.5l123.4-37v81.2l-50 40c-3.8 3-6 7.6-6 12.5v32c0 5.1 2.5 10 6.6 13s9.5 3.8 14.4 2.2L200 480.9 290.4 511c-1.6-4.7-2.4-9.8-2.4-15V463.4c-18.2-10.5-30.7-29.7-31.9-51.8l-.1-.1V408 325.5 184l0-1.1 0 0V86.1C256 54.7 231.5 0 200 0zm88 176V400c0 20.9 13.4 38.7 32 45.3V488c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V448H544v40c0 13.3 10.7 24 24 24h16c13.3 0 24-10.7 24-24V445.3c18.6-6.6 32-24.4 32-45.3V176c0-26.5-21.5-48-48-48H336c-26.5 0-48 21.5-48 48zm79.8 78.7c3.3-8.7 11.2-14.7 20.5-14.7H539.7c9.2 0 17.2 6 20.5 14.7L576 304H352l15.8-49.3zM568 352a24 24 0 1 1 0 48 24 24 0 1 1 0-48zM336 376a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + }, + "free": [ + "solid" + ] + }, + "truck-ramp-box": { + "aliases": { + "names": [ + "truck-loading" + ], + "unicodes": { + "secondary": [ + "10f4de" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "box", + "cargo", + "delivery", + "inventory", + "moving", + "rental", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4de", + "label": "Truck Ramp Box", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 0V400c0 61.9-50.1 112-112 112c-61 0-110.5-48.7-112-109.3L48.4 502.9c-17.1 4.6-34.6-5.4-39.3-22.5s5.4-34.6 22.5-39.3L352 353.8V64c0-35.3 28.7-64 64-64H640zM576 400a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM23.1 207.7c-4.6-17.1 5.6-34.6 22.6-39.2l46.4-12.4 20.7 77.3c2.3 8.5 11.1 13.6 19.6 11.3l30.9-8.3c8.5-2.3 13.6-11.1 11.3-19.6l-20.7-77.3 46.4-12.4c17.1-4.6 34.6 5.6 39.2 22.6l41.4 154.5c4.6 17.1-5.6 34.6-22.6 39.2L103.7 384.9c-17.1 4.6-34.6-5.6-39.2-22.6L23.1 207.7z" + } + }, + "free": [ + "solid" + ] + }, + "tty": { + "aliases": { + "names": [ + "teletype" + ], + "unicodes": { + "secondary": [ + "10f1e4" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.7.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "communication", + "deaf", + "telephone", + "teletypewriter", + "text" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1e4", + "label": "Tty", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669843711, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M29.3 241.3L6.1 200.6c-9.2-16.2-8.4-36.5 4.5-50C52.4 106.8 135.7 48 247 48s194.6 58.8 236.4 102.6c12.9 13.5 13.7 33.8 4.5 50l-23.1 40.7c-7.5 13.2-23.3 19.3-37.8 14.6l-81.1-26.6c-13.1-4.3-22-16.6-22-30.4V144c-49.6-18.1-104-18.1-153.6 0v54.8c0 13.8-8.9 26.1-22 30.4L67.1 255.8c-14.5 4.7-30.3-1.4-37.8-14.6zM23 336c0-8.8 7.2-16 16-16H71c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H39c-8.8 0-16-7.2-16-16V336zm0 96c0-8.8 7.2-16 16-16H71c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H39c-8.8 0-16-7.2-16-16V432zM135 320h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H135c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H231c-8.8 0-16-7.2-16-16V336zm112-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H327c-8.8 0-16-7.2-16-16V336c0-8.8 7.2-16 16-16zm80 16c0-8.8 7.2-16 16-16h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H423c-8.8 0-16-7.2-16-16V336zm16 80h32c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H423c-8.8 0-16-7.2-16-16V432c0-8.8 7.2-16 16-16zM119 432c0-8.8 7.2-16 16-16H359c8.8 0 16 7.2 16 16v32c0 8.8-7.2 16-16 16H135c-8.8 0-16-7.2-16-16V432z" + } + }, + "free": [ + "solid" + ] + }, + "tumblr": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f173", + "label": "Tumblr", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z" + } + }, + "free": [ + "brands" + ] + }, + "turkish-lira-sign": { + "aliases": { + "names": [ + "try", + "turkish-lira" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Turkish Lira Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e2bb", + "label": "Turkish Lira Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M96 32c17.7 0 32 14.3 32 32V99.3L247.2 65.2c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 165.9v29.4l119.2-34.1c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 261.9V416h63.8c68.2 0 124.4-53.5 127.8-121.6l.4-8c.9-17.7 15.9-31.2 33.6-30.4s31.2 15.9 30.4 33.6l-.4 8C378.5 399.8 294.1 480 191.8 480H96c-17.7 0-32-14.3-32-32V280.1l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 213.6V184.1l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 117.6V64c0-17.7 14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "turn-down": { + "aliases": { + "names": [ + "level-down-alt" + ], + "unicodes": { + "composite": [ + "2935" + ], + "secondary": [ + "10f3be" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "down", + "level-down", + "right arrow curving down" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3be", + "label": "Turn Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M350 334.5c3.8 8.8 2 19-4.6 26l-136 144c-4.5 4.8-10.8 7.5-17.4 7.5s-12.9-2.7-17.4-7.5l-136-144c-6.6-7-8.4-17.2-4.6-26s12.5-14.5 22-14.5h88l0-192c0-17.7-14.3-32-32-32H32C14.3 96 0 81.7 0 64V32C0 14.3 14.3 0 32 0l80 0c70.7 0 128 57.3 128 128l0 192h88c9.6 0 18.2 5.7 22 14.5z" + } + }, + "free": [ + "solid" + ] + }, + "turn-up": { + "aliases": { + "names": [ + "level-up-alt" + ], + "unicodes": { + "composite": [ + "2934" + ], + "secondary": [ + "10f3bf" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "level-up", + "right arrow curving up" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f3bf", + "label": "Turn Up", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M350 177.5c3.8-8.8 2-19-4.6-26l-136-144C204.9 2.7 198.6 0 192 0s-12.9 2.7-17.4 7.5l-136 144c-6.6 7-8.4 17.2-4.6 26s12.5 14.5 22 14.5h88l0 192c0 17.7-14.3 32-32 32H32c-17.7 0-32 14.3-32 32v32c0 17.7 14.3 32 32 32l80 0c70.7 0 128-57.3 128-128l0-192h88c9.6 0 18.2-5.7 22-14.5z" + } + }, + "free": [ + "solid" + ] + }, + "tv": { + "aliases": { + "names": [ + "television", + "tv-alt" + ], + "unicodes": { + "composite": [ + "f8e5" + ], + "primary": [ + "f8e5" + ], + "secondary": [ + "10f26c", + "10f8e5" + ] + } + }, + "changes": [ + "4.4.0", + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "computer", + "display", + "monitor", + "television" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f26c", + "label": "Tv", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 64V352H576V64H64zM0 64C0 28.7 28.7 0 64 0H576c35.3 0 64 28.7 64 64V352c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64zM128 448H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + } + }, + "free": [ + "solid" + ] + }, + "twitch": { + "changes": [ + "4.2.0", + "5.0.0", + "5.12.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1e8", + "label": "Twitch", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M391.17,103.47H352.54v109.7h38.63ZM285,103H246.37V212.75H285ZM120.83,0,24.31,91.42V420.58H140.14V512l96.53-91.42h77.25L487.69,256V0ZM449.07,237.75l-77.22,73.12H294.61l-67.6,64v-64H140.14V36.58H449.07Z" + } + }, + "free": [ + "brands" + ] + }, + "twitter": { + "changes": [ + "2.0.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "social network", + "tweet" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f099", + "label": "Twitter", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z" + } + }, + "free": [ + "brands" + ] + }, + "typo3": { + "changes": [ + "5.0.1", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f42b", + "label": "Typo3", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M178.7 78.4c0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C7 246 113.8 480 191.1 480c36.3 0 97.3-59.5 146.7-139-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9zM301.5 32c-30.1 0-41.7 5.4-41.7 36.3 0 66.4 53.8 198.5 101.7 198.5 26.3 0 78.8-99.7 78.8-182.3 0-40.9-67-52.5-138.8-52.5z" + } + }, + "free": [ + "brands" + ] + }, + "u": { + "aliases": { + "unicodes": { + "composite": [ + "75" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter U", + "Latin Small Letter U", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "55", + "label": "U", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M32 32c17.7 0 32 14.3 32 32V288c0 70.7 57.3 128 128 128s128-57.3 128-128V64c0-17.7 14.3-32 32-32s32 14.3 32 32V288c0 106-86 192-192 192S0 394 0 288V64C0 46.3 14.3 32 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "uber": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f402", + "label": "Uber", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z" + } + }, + "free": [ + "brands" + ] + }, + "ubuntu": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [ + "linux", + "operating system", + "os" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7df", + "label": "Ubuntu", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm52.7 93c8.8-15.2 28.3-20.5 43.5-11.7 15.3 8.8 20.5 28.3 11.7 43.6-8.8 15.2-28.3 20.5-43.5 11.7-15.3-8.9-20.5-28.4-11.7-43.6zM87.4 287.9c-17.6 0-31.9-14.3-31.9-31.9 0-17.6 14.3-31.9 31.9-31.9 17.6 0 31.9 14.3 31.9 31.9 0 17.6-14.3 31.9-31.9 31.9zm28.1 3.1c22.3-17.9 22.4-51.9 0-69.9 8.6-32.8 29.1-60.7 56.5-79.1l23.7 39.6c-51.5 36.3-51.5 112.5 0 148.8L172 370c-27.4-18.3-47.8-46.3-56.5-79zm228.7 131.7c-15.3 8.8-34.7 3.6-43.5-11.7-8.8-15.3-3.6-34.8 11.7-43.6 15.2-8.8 34.7-3.6 43.5 11.7 8.8 15.3 3.6 34.8-11.7 43.6zm.3-69.5c-26.7-10.3-56.1 6.6-60.5 35-5.2 1.4-48.9 14.3-96.7-9.4l22.5-40.3c57 26.5 123.4-11.7 128.9-74.4l46.1.7c-2.3 34.5-17.3 65.5-40.3 88.4zm-5.9-105.3c-5.4-62-71.3-101.2-128.9-74.4l-22.5-40.3c47.9-23.7 91.5-10.8 96.7-9.4 4.4 28.3 33.8 45.3 60.5 35 23.1 22.9 38 53.9 40.2 88.5l-46 .6z" + } + }, + "free": [ + "brands" + ] + }, + "uikit": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f403", + "label": "UIkit", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z" + } + }, + "free": [ + "brands" + ] + }, + "umbraco": { + "changes": [ + "5.11.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f8e8", + "label": "Umbraco", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014472, + "raw": "", + "viewBox": [ + 0, + 0, + 510, + 512 + ], + "width": 510, + "height": 512, + "path": "M255.35 8C118.36 7.83 7.14 118.72 7 255.68c-.07 137 111 248.2 248 248.27 136.85 0 247.82-110.7 248-247.67S392.34 8.17 255.35 8zm145 266q-1.14 40.68-14 65t-43.51 35q-30.61 10.7-85.45 10.47h-4.6q-54.78.22-85.44-10.47t-43.52-35q-12.85-24.36-14-65a224.81 224.81 0 0 1 0-30.71 418.37 418.37 0 0 1 3.6-43.88c1.88-13.39 3.57-22.58 5.4-32 1-4.88 1.28-6.42 1.82-8.45a5.09 5.09 0 0 1 4.9-3.89h.69l32 5a5.07 5.07 0 0 1 4.16 5 5 5 0 0 1 0 .77l-1.7 8.78q-2.41 13.25-4.84 33.68a380.62 380.62 0 0 0-2.64 42.15q-.28 40.43 8.13 59.83a43.87 43.87 0 0 0 31.31 25.18A243 243 0 0 0 250 340.6h10.25a242.64 242.64 0 0 0 57.27-5.16 43.86 43.86 0 0 0 31.15-25.23q8.53-19.42 8.13-59.78a388 388 0 0 0-2.6-42.15q-2.48-20.38-4.89-33.68l-1.69-8.78a5 5 0 0 1 0-.77 5 5 0 0 1 4.2-5l32-5h.82a5 5 0 0 1 4.9 3.89c.55 2.05.81 3.57 1.83 8.45 1.82 9.62 3.52 18.78 5.39 32a415.71 415.71 0 0 1 3.61 43.88 228.06 228.06 0 0 1-.04 30.73z" + } + }, + "free": [ + "brands" + ] + }, + "umbrella": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0e9" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protection", + "rain", + "storm", + "wet" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0e9", + "label": "Umbrella", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M286 0c17.7 0 32 14.3 32 32V49.7C449.8 63.4 555.7 161 571.9 285.9c2 15.6-17.3 24.4-27.8 12.7C530.1 283 502.8 272 478 272c-38.7 0-71 27.5-78.4 64.1c-1.7 8.7-8.7 15.9-17.6 15.9s-15.8-7.2-17.6-15.9C357 299.5 324.7 272 286 272s-71 27.5-78.4 64.1c-1.7 8.7-8.7 15.9-17.6 15.9s-15.8-7.2-17.6-15.9C165 299.5 132.7 272 94 272c-24.8 0-52.1 11-66.1 26.7C17.4 310.4-1.9 301.5 .1 285.9C16.3 161 122.2 63.4 254 49.7V32c0-17.7 14.3-32 32-32zm0 304c12.3 0 23.5 4.6 32 12.2V430.6c0 45-36.5 81.4-81.4 81.4c-30.8 0-59-17.4-72.8-45l-2.3-4.7c-7.9-15.8-1.5-35 14.3-42.9s35-1.5 42.9 14.3l2.3 4.7c3 5.9 9 9.6 15.6 9.6c9.6 0 17.4-7.8 17.4-17.4V316.2c8.5-7.6 19.7-12.2 32-12.2z" + } + }, + "free": [ + "solid" + ] + }, + "umbrella-beach": { + "aliases": { + "unicodes": { + "composite": [ + "1f3d6" + ], + "secondary": [ + "10f5ca" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "beach", + "beach with umbrella", + "protection", + "recreation", + "sand", + "shade", + "summer", + "sun", + "umbrella" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ca", + "label": "Umbrella Beach", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M346.3 271.8l-60.1-21.9L214 448H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H282.1l64.1-176.2zm121.1-.2l-3.3 9.1 67.7 24.6c18.1 6.6 38-4.2 39.6-23.4c6.5-78.5-23.9-155.5-80.8-208.5c2 8 3.2 16.3 3.4 24.8l.2 6c1.8 57-7.3 113.8-26.8 167.4zM462 99.1c-1.1-34.4-22.5-64.8-54.4-77.4c-.9-.4-1.9-.7-2.8-1.1c-33-11.7-69.8-2.4-93.1 23.8l-4 4.5C272.4 88.3 245 134.2 226.8 184l-3.3 9.1L434 269.7l3.3-9.1c18.1-49.8 26.6-102.5 24.9-155.5l-.2-6zM107.2 112.9c-11.1 15.7-2.8 36.8 15.3 43.4l71 25.8 3.3-9.1c19.5-53.6 49.1-103 87.1-145.5l4-4.5c6.2-6.9 13.1-13 20.5-18.2c-79.6 2.5-154.7 42.2-201.2 108z" + } + }, + "free": [ + "solid" + ] + }, + "uncharted": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e084", + "label": "Uncharted Software", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M171.73,232.813A5.381,5.381,0,0,0,176.7,229.5,48.081,48.081,0,0,1,191.6,204.244c1.243-.828,1.657-2.484,1.657-4.141a4.22,4.22,0,0,0-2.071-3.312L74.429,128.473,148.958,85a9.941,9.941,0,0,0,4.968-8.281,9.108,9.108,0,0,0-4.968-8.281L126.6,55.6a9.748,9.748,0,0,0-9.523,0l-100.2,57.966a9.943,9.943,0,0,0-4.969,8.281V236.954a9.109,9.109,0,0,0,4.969,8.281L39.235,258.07a8.829,8.829,0,0,0,4.968,1.242,9.4,9.4,0,0,0,6.625-2.484,10.8,10.8,0,0,0,2.9-7.039V164.5L169.66,232.4A4.5,4.5,0,0,0,171.73,232.813ZM323.272,377.73a12.478,12.478,0,0,0-4.969,1.242l-74.528,43.062V287.882c0-2.9-2.9-5.8-6.211-4.555a53.036,53.036,0,0,1-28.984.414,4.86,4.86,0,0,0-6.21,4.555V421.619l-74.529-43.061a8.83,8.83,0,0,0-4.969-1.242,9.631,9.631,0,0,0-9.523,9.523v26.085a9.107,9.107,0,0,0,4.969,8.281l100.2,57.553A8.829,8.829,0,0,0,223.486,480a11.027,11.027,0,0,0,4.969-1.242l100.2-57.553a9.941,9.941,0,0,0,4.968-8.281V386.839C332.8,382.285,328.24,377.73,323.272,377.73ZM286.007,78a23,23,0,1,0-23-23A23,23,0,0,0,286.007,78Zm63.627-10.086a23,23,0,1,0,23,23A23,23,0,0,0,349.634,67.914ZM412.816,151.6a23,23,0,1,0-23-23A23,23,0,0,0,412.816,151.6Zm-63.182-9.2a23,23,0,1,0,23,23A23,23,0,0,0,349.634,142.4Zm-63.627,83.244a23,23,0,1,0-23-23A23,23,0,0,0,286.007,225.648Zm-62.074,36.358a23,23,0,1,0-23-23A23,23,0,0,0,223.933,262.006Zm188.883-82.358a23,23,0,1,0,23,23A23,23,0,0,0,412.816,179.648Zm0,72.272a23,23,0,1,0,23,23A23,23,0,0,0,412.816,251.92Z" + } + }, + "free": [ + "brands" + ] + }, + "underline": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0cd" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "edit", + "emphasis", + "format", + "text", + "writing" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0cd", + "label": "Underline", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M16 64c0-17.7 14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H128V224c0 53 43 96 96 96s96-43 96-96V96H304c-17.7 0-32-14.3-32-32s14.3-32 32-32h96c17.7 0 32 14.3 32 32s-14.3 32-32 32H384V224c0 88.4-71.6 160-160 160s-160-71.6-160-160V96H48C30.3 96 16 81.7 16 64zM0 448c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32z" + } + }, + "free": [ + "solid" + ] + }, + "uniregistry": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f404", + "label": "Uniregistry", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480zm-89.1-193.1v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4zm20.5 57H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8zm-17.7-34.7H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3zm-2.8-69.3H0v17.3h102.9zm0-173.2H0v4.9h102.9zm0-34.7H0v2.5h102.9zm0 69.3H0v7.4h102.9zm0 104H0v14.8h102.9zm0-69.3H0v9.9h102.9zm0 34.6H0V183h102.9zm166.2 160.9h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3zm12-185.7H384V136H281.1zm0 37.2H384v-12.4H281.1zm0-74.3H384v-7.4H281.1zm0-76.7v2.5H384V32zm-203 410.9h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7zm203-371.3H384v-4.9H281.1zm0 148.5H384v-14.8H281.1zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2zm188.8-37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8zm53.5-81.7c0 2.5-.1 5-.4 7.4h103.1c.1-2.5.2-4.9.2-7.4v-12.4H281.1zm0-29.7H384v-17.3H281.1z" + } + }, + "free": [ + "brands" + ] + }, + "unity": { + "changes": [ + "5.12.0", + "5.14.0", + "6.0.0-beta3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e049", + "label": "Unity 3D", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M243.583 91.6027L323.695 138.384C326.575 140.026 326.68 144.583 323.695 146.225L228.503 201.854C225.623 203.55 222.22 203.444 219.549 201.854L124.357 146.225C121.425 144.636 121.373 139.973 124.357 138.384L204.417 91.6027V0L0 119.417V358.252L78.3843 312.477V218.914C78.3319 215.576 82.2066 213.192 85.0865 214.993L180.279 270.622C183.159 272.318 184.782 275.338 184.782 278.464V389.669C184.834 393.007 180.959 395.391 178.079 393.589L97.9673 346.808L19.583 392.583L224 512L428.417 392.583L350.033 346.808L269.921 393.589C267.093 395.338 263.114 393.06 263.218 389.669V278.464C263.218 275.126 265.051 272.159 267.721 270.622L362.914 214.993C365.741 213.245 369.72 215.47 369.616 218.914V312.477L448 358.252V119.417L243.583 0V91.6027Z" + } + }, + "free": [ + "brands" + ] + }, + "universal-access": { + "aliases": { + "unicodes": { + "secondary": [ + "10f29a" + ] + } + }, + "changes": [ + "4.6.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f29a", + "label": "Universal Access", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm161.5-86.1c-12.2-5.2-26.3 .4-31.5 12.6s.4 26.3 12.6 31.5l11.9 5.1c17.3 7.4 35.2 12.9 53.6 16.3v50.1c0 4.3-.7 8.6-2.1 12.6l-28.7 86.1c-4.2 12.6 2.6 26.2 15.2 30.4s26.2-2.6 30.4-15.2l24.4-73.2c1.3-3.8 4.8-6.4 8.8-6.4s7.6 2.6 8.8 6.4l24.4 73.2c4.2 12.6 17.8 19.4 30.4 15.2s19.4-17.8 15.2-30.4l-28.7-86.1c-1.4-4.1-2.1-8.3-2.1-12.6V235.5c18.4-3.5 36.3-8.9 53.6-16.3l11.9-5.1c12.2-5.2 17.8-19.3 12.6-31.5s-19.3-17.8-31.5-12.6L338.7 175c-26.1 11.2-54.2 17-82.7 17s-56.5-5.8-82.7-17l-11.9-5.1zM256 160a40 40 0 1 0 0-80 40 40 0 1 0 0 80z" + } + }, + "free": [ + "solid" + ] + }, + "unlock": { + "aliases": { + "unicodes": { + "composite": [ + "1f513" + ], + "secondary": [ + "10f09c" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "open", + "password", + "private", + "protect", + "unlock", + "unlocked" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f09c", + "label": "Unlock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M144 144c0-44.2 35.8-80 80-80c31.9 0 59.4 18.6 72.3 45.7c7.6 16 26.7 22.8 42.6 15.2s22.8-26.7 15.2-42.6C331 33.7 281.5 0 224 0C144.5 0 80 64.5 80 144v48H64c-35.3 0-64 28.7-64 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V256c0-35.3-28.7-64-64-64H144V144z" + } + }, + "free": [ + "solid" + ] + }, + "unlock-keyhole": { + "aliases": { + "names": [ + "unlock-alt" + ], + "unicodes": { + "secondary": [ + "10f13e" + ] + } + }, + "changes": [ + "3.1.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "admin", + "lock", + "password", + "private", + "protect" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f13e", + "label": "Unlock Keyhole", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 64c-44.2 0-80 35.8-80 80v48H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80V144C80 64.5 144.5 0 224 0c57.5 0 107 33.7 130.1 82.3c7.6 16 .8 35.1-15.2 42.6s-35.1 .8-42.6-15.2C283.4 82.6 255.9 64 224 64zm32 320c17.7 0 32-14.3 32-32s-14.3-32-32-32H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h64z" + } + }, + "free": [ + "solid" + ] + }, + "unsplash": { + "changes": [ + "5.13.1", + "5.14.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e07c", + "label": "Unsplash", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448,230.17V480H0V230.17H141.13V355.09H306.87V230.17ZM306.87,32H141.13V156.91H306.87Z" + } + }, + "free": [ + "brands" + ] + }, + "untappd": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f405", + "label": "Untappd", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1.6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4.9-2.5 4.4-2.3 7.4.1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4.9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3.5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5.1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6.3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6.5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z" + } + }, + "free": [ + "brands" + ] + }, + "up-down": { + "aliases": { + "names": [ + "arrows-alt-v" + ], + "unicodes": { + "composite": [ + "2195", + "2b0d" + ], + "secondary": [ + "10f338" + ] + } + }, + "changes": [ + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Up Down Black Arrow", + "arrow", + "arrows-v", + "expand", + "portrait", + "resize", + "tall", + "up-down arrow", + "vertical" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f338", + "label": "Up Down", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M145.6 7.7C141 2.8 134.7 0 128 0s-13 2.8-17.6 7.7l-104 112c-6.5 7-8.2 17.2-4.4 25.9S14.5 160 24 160H80V352H24c-9.5 0-18.2 5.7-22 14.4s-2.1 18.9 4.4 25.9l104 112c4.5 4.9 10.9 7.7 17.6 7.7s13-2.8 17.6-7.7l104-112c6.5-7 8.2-17.2 4.4-25.9s-12.5-14.4-22-14.4H176V160h56c9.5 0 18.2-5.7 22-14.4s2.1-18.9-4.4-25.9l-104-112z" + } + }, + "free": [ + "solid" + ] + }, + "up-down-left-right": { + "aliases": { + "names": [ + "arrows-alt" + ], + "unicodes": { + "secondary": [ + "10f0b2" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrow", + "arrows", + "bigger", + "enlarge", + "expand", + "fullscreen", + "move", + "position", + "reorder", + "resize" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0b2", + "label": "Up Down Left Right", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M278.6 9.4c-12.5-12.5-32.8-12.5-45.3 0l-64 64c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8h32v96H128V192c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-64 64c-12.5 12.5-12.5 32.8 0 45.3l64 64c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V288h96v96H192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l64 64c12.5 12.5 32.8 12.5 45.3 0l64-64c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8H288V288h96v32c0 12.9 7.8 24.6 19.8 29.6s25.7 2.2 34.9-6.9l64-64c12.5-12.5 12.5-32.8 0-45.3l-64-64c-9.2-9.2-22.9-11.9-34.9-6.9s-19.8 16.6-19.8 29.6v32H288V128h32c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-64-64z" + } + }, + "free": [ + "solid" + ] + }, + "up-long": { + "aliases": { + "names": [ + "long-arrow-alt-up" + ], + "unicodes": { + "secondary": [ + "10f30c" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "long-arrow-up", + "upload" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f30c", + "label": "Up Long", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M318 177.5c3.8-8.8 2-19-4.6-26l-136-144C172.9 2.7 166.6 0 160 0s-12.9 2.7-17.4 7.5l-136 144c-6.6 7-8.4 17.2-4.6 26S14.4 192 24 192H96l0 288c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32l0-288h72c9.6 0 18.2-5.7 22-14.5z" + } + }, + "free": [ + "solid" + ] + }, + "up-right-and-down-left-from-center": { + "aliases": { + "names": [ + "expand-alt" + ], + "unicodes": { + "secondary": [ + "10f424" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "arrows", + "bigger", + "enlarge", + "fullscreen", + "resize" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f424", + "label": "Up Right And Down Left From Center", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M344 0H488c13.3 0 24 10.7 24 24V168c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-39-39-87 87c-9.4 9.4-24.6 9.4-33.9 0l-32-32c-9.4-9.4-9.4-24.6 0-33.9l87-87L327 41c-6.9-6.9-8.9-17.2-5.2-26.2S334.3 0 344 0zM168 512H24c-13.3 0-24-10.7-24-24V344c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2l39 39 87-87c9.4-9.4 24.6-9.4 33.9 0l32 32c9.4 9.4 9.4 24.6 0 33.9l-87 87 39 39c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8z" + } + }, + "free": [ + "solid" + ] + }, + "up-right-from-square": { + "aliases": { + "names": [ + "external-link-alt" + ], + "unicodes": { + "secondary": [ + "10f35d" + ] + } + }, + "changes": [ + "5.0.0", + "5.11.0", + "6.0.0-beta1", + "6.2.0", + "6.2.1", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "external-link", + "new", + "open", + "share" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f35d", + "label": "Up Right From Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837203, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9L370.7 96 201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 141.3l41.4 41.4c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V32c0-17.7-14.3-32-32-32H352zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z" + } + }, + "free": [ + "solid" + ] + }, + "upload": { + "aliases": { + "unicodes": { + "secondary": [ + "10f093" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "hard drive", + "import", + "publish" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f093", + "label": "Upload", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669825442, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 109.3V352c0 17.7-14.3 32-32 32s-32-14.3-32-32V109.3l-73.4 73.4c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l128-128c12.5-12.5 32.8-12.5 45.3 0l128 128c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L288 109.3zM64 352H192c0 35.3 28.7 64 64 64s64-28.7 64-64H448c35.3 0 64 28.7 64 64v32c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V416c0-35.3 28.7-64 64-64zM432 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + }, + "free": [ + "solid" + ] + }, + "ups": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "United Parcel Service", + "package", + "shipping" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7e0", + "label": "UPS", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M103.2 303c-5.2 3.6-32.6 13.1-32.6-19V180H37.9v102.6c0 74.9 80.2 51.1 97.9 39V180h-32.6zM4 74.82v220.9c0 103.7 74.9 135.2 187.7 184.1 112.4-48.9 187.7-80.2 187.7-184.1V74.82c-116.3-61.6-281.8-49.6-375.4 0zm358.1 220.9c0 86.6-53.2 113.6-170.4 165.3-117.5-51.8-170.5-78.7-170.5-165.3v-126.4c102.3-93.8 231.6-100 340.9-89.8zm-209.6-107.4v212.8h32.7v-68.7c24.4 7.3 71.7-2.6 71.7-78.5 0-97.4-80.7-80.92-104.4-65.6zm32.7 117.3v-100.3c8.4-4.2 38.4-12.7 38.4 49.3 0 67.9-36.4 51.8-38.4 51zm79.1-86.4c.1 47.3 51.6 42.5 52.2 70.4.6 23.5-30.4 23-50.8 4.9v30.1c36.2 21.5 81.9 8.1 83.2-33.5 1.7-51.5-54.1-46.6-53.4-73.2.6-20.3 30.6-20.5 48.5-2.2v-28.4c-28.5-22-79.9-9.2-79.7 31.9z" + } + }, + "free": [ + "brands" + ] + }, + "usb": { + "changes": [ + "4.5.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f287", + "label": "USB", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4.8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9.3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z" + } + }, + "free": [ + "brands" + ] + }, + "user": { + "aliases": { + "unicodes": { + "composite": [ + "1f464", + "f2c0" + ], + "secondary": [ + "10f007" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "adult", + "bust", + "bust in silhouette", + "gender-neutral", + "person", + "profile", + "silhouette", + "unspecified gender", + "users-people" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f007", + "label": "User", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3z" + }, + "regular": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M304 128a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM49.3 464H398.7c-8.9-63.3-63.3-112-129-112H178.3c-65.7 0-120.1 48.7-129 112zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "user-astronaut": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4fb" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "avatar", + "clothing", + "cosmonaut", + "nasa", + "space", + "suit" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4fb", + "label": "User Astronaut", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M370.7 96.1C346.1 39.5 289.7 0 224 0S101.9 39.5 77.3 96.1C60.9 97.5 48 111.2 48 128v64c0 16.8 12.9 30.5 29.3 31.9C101.9 280.5 158.3 320 224 320s122.1-39.5 146.7-96.1c16.4-1.4 29.3-15.1 29.3-31.9V128c0-16.8-12.9-30.5-29.3-31.9zM336 144v16c0 53-43 96-96 96H208c-53 0-96-43-96-96V144c0-26.5 21.5-48 48-48H288c26.5 0 48 21.5 48 48zM189.3 162.7l-6-21.2c-.9-3.3-3.9-5.5-7.3-5.5s-6.4 2.2-7.3 5.5l-6 21.2-21.2 6c-3.3 .9-5.5 3.9-5.5 7.3s2.2 6.4 5.5 7.3l21.2 6 6 21.2c.9 3.3 3.9 5.5 7.3 5.5s6.4-2.2 7.3-5.5l6-21.2 21.2-6c3.3-.9 5.5-3.9 5.5-7.3s-2.2-6.4-5.5-7.3l-21.2-6zM112.7 316.5C46.7 342.6 0 407 0 482.3C0 498.7 13.3 512 29.7 512H128V448c0-17.7 14.3-32 32-32H288c17.7 0 32 14.3 32 32v64l98.3 0c16.4 0 29.7-13.3 29.7-29.7c0-75.3-46.7-139.7-112.7-165.8C303.9 338.8 265.5 352 224 352s-79.9-13.2-111.3-35.5zM176 448c-8.8 0-16 7.2-16 16v48h32V464c0-8.8-7.2-16-16-16zm96 32a16 16 0 1 0 0-32 16 16 0 1 0 0 32z" + } + }, + "free": [ + "solid" + ] + }, + "user-check": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4fc" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4fc", + "label": "User Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM625 177L497 305c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L591 143c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z" + } + }, + "free": [ + "solid" + ] + }, + "user-clock": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4fd" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4fd", + "label": "User Clock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304h91.4c20.6 0 40.4 3.5 58.8 9.9C323 331 320 349.1 320 368c0 59.5 29.5 112.1 74.8 144H29.7C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM352 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-80c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H512V304c0-8.8-7.2-16-16-16z" + } + }, + "free": [ + "solid" + ] + }, + "user-doctor": { + "aliases": { + "names": [ + "user-md" + ], + "unicodes": { + "secondary": [ + "10f0f0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.3", + "5.0.7", + "5.0.11", + "6.0.0-beta1", + "6.0.0-beta2", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "health", + "job", + "medical", + "nurse", + "occupation", + "physician", + "profile", + "surgeon", + "worker" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0f0", + "label": "User Doctor", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-96 55.2C54 332.9 0 401.3 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7c0-81-54-149.4-128-171.1V362c27.6 7.1 48 32.2 48 62v40c0 8.8-7.2 16-16 16H336c-8.8 0-16-7.2-16-16s7.2-16 16-16V424c0-17.7-14.3-32-32-32s-32 14.3-32 32v24c8.8 0 16 7.2 16 16s-7.2 16-16 16H256c-8.8 0-16-7.2-16-16V424c0-29.8 20.4-54.9 48-62V304.9c-6-.6-12.1-.9-18.3-.9H178.3c-6.2 0-12.3 .3-18.3 .9v65.4c23.1 6.9 40 28.3 40 53.7c0 30.9-25.1 56-56 56s-56-25.1-56-56c0-25.4 16.9-46.8 40-53.7V311.2zM144 448a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + }, + "free": [ + "solid" + ] + }, + "user-gear": { + "aliases": { + "names": [ + "user-cog" + ], + "unicodes": { + "secondary": [ + "10f4fe" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4fe", + "label": "User Gear", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304h91.4c11.8 0 23.4 1.2 34.5 3.3c-2.1 18.5 7.4 35.6 21.8 44.8c-16.6 10.6-26.7 31.6-20 53.3c4 12.9 9.4 25.5 16.4 37.6s15.2 23.1 24.4 33c15.7 16.9 39.6 18.4 57.2 8.7v.9c0 9.2 2.7 18.5 7.9 26.3H29.7C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM436 218.2c0-7 4.5-13.3 11.3-14.8c10.5-2.4 21.5-3.7 32.7-3.7s22.2 1.3 32.7 3.7c6.8 1.5 11.3 7.8 11.3 14.8v30.6c7.9 3.4 15.4 7.7 22.3 12.8l24.9-14.3c6.1-3.5 13.7-2.7 18.5 2.4c7.6 8.1 14.3 17.2 20.1 27.2s10.3 20.4 13.5 31c2.1 6.7-1.1 13.7-7.2 17.2l-25 14.4c.4 4 .7 8.1 .7 12.3s-.2 8.2-.7 12.3l25 14.4c6.1 3.5 9.2 10.5 7.2 17.2c-3.3 10.6-7.8 21-13.5 31s-12.5 19.1-20.1 27.2c-4.8 5.1-12.5 5.9-18.5 2.4l-24.9-14.3c-6.9 5.1-14.3 9.4-22.3 12.8l0 30.6c0 7-4.5 13.3-11.3 14.8c-10.5 2.4-21.5 3.7-32.7 3.7s-22.2-1.3-32.7-3.7c-6.8-1.5-11.3-7.8-11.3-14.8V454.8c-8-3.4-15.6-7.7-22.5-12.9l-24.7 14.3c-6.1 3.5-13.7 2.7-18.5-2.4c-7.6-8.1-14.3-17.2-20.1-27.2s-10.3-20.4-13.5-31c-2.1-6.7 1.1-13.7 7.2-17.2l24.8-14.3c-.4-4.1-.7-8.2-.7-12.4s.2-8.3 .7-12.4L343.8 325c-6.1-3.5-9.2-10.5-7.2-17.2c3.3-10.6 7.7-21 13.5-31s12.5-19.1 20.1-27.2c4.8-5.1 12.4-5.9 18.5-2.4l24.8 14.3c6.9-5.1 14.5-9.4 22.5-12.9V218.2zm92.1 133.5a48.1 48.1 0 1 0 -96.1 0 48.1 48.1 0 1 0 96.1 0z" + } + }, + "free": [ + "solid" + ] + }, + "user-graduate": { + "aliases": { + "unicodes": { + "secondary": [ + "10f501" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f501", + "label": "User Graduate", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M219.3 .5c3.1-.6 6.3-.6 9.4 0l200 40C439.9 42.7 448 52.6 448 64s-8.1 21.3-19.3 23.5L352 102.9V160c0 70.7-57.3 128-128 128s-128-57.3-128-128V102.9L48 93.3v65.1l15.7 78.4c.9 4.7-.3 9.6-3.3 13.3s-7.6 5.9-12.4 5.9H16c-4.8 0-9.3-2.1-12.4-5.9s-4.3-8.6-3.3-13.3L16 158.4V86.6C6.5 83.3 0 74.3 0 64C0 52.6 8.1 42.7 19.3 40.5l200-40zM111.9 327.7c10.5-3.4 21.8 .4 29.4 8.5l71 75.5c6.3 6.7 17 6.7 23.3 0l71-75.5c7.6-8.1 18.9-11.9 29.4-8.5C401 348.6 448 409.4 448 481.3c0 17-13.8 30.7-30.7 30.7H30.7C13.8 512 0 498.2 0 481.3c0-71.9 47-132.7 111.9-153.6z" + } + }, + "free": [ + "solid" + ] + }, + "user-group": { + "aliases": { + "names": [ + "user-friends" + ], + "unicodes": { + "composite": [ + "1f465" + ], + "secondary": [ + "10f500" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bust", + "busts in silhouette", + "silhouette", + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f500", + "label": "User Group", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM609.3 512H471.4c5.4-9.4 8.6-20.3 8.6-32v-8c0-60.7-27.1-115.2-69.8-151.8c2.4-.1 4.7-.2 7.1-.2h61.4C567.8 320 640 392.2 640 481.3c0 17-13.8 30.7-30.7 30.7zM432 256c-31 0-59-12.6-79.3-32.9C372.4 196.5 384 163.6 384 128c0-26.8-6.6-52.1-18.3-74.3C384.3 40.1 407.2 32 432 32c61.9 0 112 50.1 112 112s-50.1 112-112 112z" + } + }, + "free": [ + "solid" + ] + }, + "user-injured": { + "aliases": { + "unicodes": { + "secondary": [ + "10f728" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f728", + "label": "User Injured", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M240 80H342.7c-7.9-19.5-20.4-36.5-36.2-49.9L240 80zm37.7-68.2C261.3 4.2 243.2 0 224 0c-53.7 0-99.7 33.1-118.7 80h81.4l91-68.2zM224 256c70.7 0 128-57.3 128-128c0-5.4-.3-10.8-1-16H97c-.7 5.2-1 10.6-1 16c0 70.7 57.3 128 128 128zM124 312.4c-9.7 3.1-19.1 7-28 11.7V512H243.7L181.5 408.2 124 312.4zm33-7.2L204.3 384H272c44.2 0 80 35.8 80 80c0 18-6 34.6-16 48h82.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3c-7.2 0-14.3 .4-21.3 1.3zM0 482.3C0 498.7 13.3 512 29.7 512H64V345.4C24.9 378.1 0 427.3 0 482.3zM320 464c0-26.5-21.5-48-48-48H223.5l57.1 95.2C303 507.2 320 487.6 320 464z" + } + }, + "free": [ + "solid" + ] + }, + "user-large": { + "aliases": { + "names": [ + "user-alt" + ], + "unicodes": { + "secondary": [ + "10f406" + ] + } + }, + "changes": [ + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f406", + "label": "User Large", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 288A144 144 0 1 0 256 0a144 144 0 1 0 0 288zm-94.7 32C72.2 320 0 392.2 0 481.3c0 17 13.8 30.7 30.7 30.7H481.3c17 0 30.7-13.8 30.7-30.7C512 392.2 439.8 320 350.7 320H161.3z" + } + }, + "free": [ + "solid" + ] + }, + "user-large-slash": { + "aliases": { + "names": [ + "user-alt-slash" + ], + "unicodes": { + "secondary": [ + "10f4fa" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4fa", + "label": "User Large Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L381.9 274c48.5-23.2 82.1-72.7 82.1-130C464 64.5 399.5 0 320 0C250.4 0 192.4 49.3 178.9 114.9L38.8 5.1zM284.3 320h-59C136.2 320 64 392.2 64 481.3c0 17 13.8 30.7 30.7 30.7H528L284.3 320z" + } + }, + "free": [ + "solid" + ] + }, + "user-lock": { + "aliases": { + "unicodes": { + "secondary": [ + "10f502" + ] + } + }, + "changes": [ + "5.0.11", + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f502", + "label": "User Lock", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H392.6c-5.4-9.4-8.6-20.3-8.6-32V352c0-2.1 .1-4.2 .3-6.3c-31-26-71-41.7-114.6-41.7H178.3zM528 240c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z" + } + }, + "free": [ + "solid" + ] + }, + "user-minus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f503" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "delete", + "negative", + "remove" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f503", + "label": "User Minus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM472 200H616c13.3 0 24 10.7 24 24s-10.7 24-24 24H472c-13.3 0-24-10.7-24-24s10.7-24 24-24z" + } + }, + "free": [ + "solid" + ] + }, + "user-ninja": { + "aliases": { + "unicodes": { + "composite": [ + "1f977" + ], + "secondary": [ + "10f504" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "assassin", + "avatar", + "dangerous", + "deadly", + "fighter", + "hidden", + "ninja", + "sneaky", + "stealth" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f504", + "label": "User Ninja", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 256c-57.2 0-105.6-37.5-122-89.3c-1.1 1.3-2.2 2.6-3.5 3.8c-15.8 15.8-38.8 20.7-53.6 22.1c-8.1 .8-14.6-5.7-13.8-13.8c1.4-14.7 6.3-37.8 22.1-53.6c5.8-5.8 12.6-10.1 19.6-13.4c-7-3.2-13.8-7.6-19.6-13.4C37.4 82.7 32.6 59.7 31.1 44.9c-.8-8.1 5.7-14.6 13.8-13.8c14.7 1.4 37.8 6.3 53.6 22.1c4.8 4.8 8.7 10.4 11.7 16.1C131.4 28.2 174.4 0 224 0c70.7 0 128 57.3 128 128s-57.3 128-128 128zM0 482.3C0 399.5 56.4 330 132.8 309.9c6-1.6 12.2 .9 15.9 5.8l62.5 83.3c6.4 8.5 19.2 8.5 25.6 0l62.5-83.3c3.7-4.9 9.9-7.4 15.9-5.8C391.6 330 448 399.5 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM160 96c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H160z" + } + }, + "free": [ + "solid" + ] + }, + "user-nurse": { + "aliases": { + "unicodes": { + "secondary": [ + "10f82f" + ] + } + }, + "changes": [ + "5.7.0", + "5.12.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covid-19", + "doctor", + "health", + "md", + "medical", + "midwife", + "physician", + "practitioner", + "surgeon", + "worker" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f82f", + "label": "User Nurse", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M96 128V70.2c0-13.3 8.3-25.3 20.8-30l96-36c7.2-2.7 15.2-2.7 22.5 0l96 36c12.5 4.7 20.8 16.6 20.8 30V128h-.3c.2 2.6 .3 5.3 .3 8v40c0 70.7-57.3 128-128 128s-128-57.3-128-128V136c0-2.7 .1-5.4 .3-8H96zm48 48c0 44.2 35.8 80 80 80s80-35.8 80-80V160H144v16zM111.9 327.7c10.5-3.4 21.8 .4 29.4 8.5l71 75.5c6.3 6.7 17 6.7 23.3 0l71-75.5c7.6-8.1 18.9-11.9 29.4-8.5C401 348.6 448 409.4 448 481.3c0 17-13.8 30.7-30.7 30.7H30.7C13.8 512 0 498.2 0 481.3c0-71.9 47-132.7 111.9-153.6zM208 48V64H192c-4.4 0-8 3.6-8 8V88c0 4.4 3.6 8 8 8h16v16c0 4.4 3.6 8 8 8h16c4.4 0 8-3.6 8-8V96h16c4.4 0 8-3.6 8-8V72c0-4.4-3.6-8-8-8H240V48c0-4.4-3.6-8-8-8H216c-4.4 0-8 3.6-8 8z" + } + }, + "free": [ + "solid" + ] + }, + "user-pen": { + "aliases": { + "names": [ + "user-edit" + ], + "unicodes": { + "secondary": [ + "10f4ff" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4ff", + "label": "User Pen", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H322.8c-3.1-8.8-3.7-18.4-1.4-27.8l15-60.1c2.8-11.3 8.6-21.5 16.8-29.7l40.3-40.3c-32.1-31-75.7-50.1-123.9-50.1H178.3zm435.5-68.3c-15.6-15.6-40.9-15.6-56.6 0l-29.4 29.4 71 71 29.4-29.4c15.6-15.6 15.6-40.9 0-56.6l-14.4-14.4zM375.9 417c-4.1 4.1-7 9.2-8.4 14.9l-15 60.1c-1.4 5.5 .2 11.2 4.2 15.2s9.7 5.6 15.2 4.2l60.1-15c5.6-1.4 10.8-4.3 14.9-8.4L576.1 358.7l-71-71L375.9 417z" + } + }, + "free": [ + "solid" + ] + }, + "user-plus": { + "aliases": { + "unicodes": { + "secondary": [ + "10f234" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "avatar", + "positive", + "sign up", + "signup", + "team" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f234", + "label": "User Plus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM504 312V248H440c-13.3 0-24-10.7-24-24s10.7-24 24-24h64V136c0-13.3 10.7-24 24-24s24 10.7 24 24v64h64c13.3 0 24 10.7 24 24s-10.7 24-24 24H552v64c0 13.3-10.7 24-24 24s-24-10.7-24-24z" + } + }, + "free": [ + "solid" + ] + }, + "user-secret": { + "aliases": { + "unicodes": { + "composite": [ + "1f575" + ], + "secondary": [ + "10f21b" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "detective", + "sleuth", + "spy", + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f21b", + "label": "User Secret", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 16c-6.7 0-10.8-2.8-15.5-6.1C201.9 5.4 194 0 176 0c-30.5 0-52 43.7-66 89.4C62.7 98.1 32 112.2 32 128c0 14.3 25 27.1 64.6 35.9c-.4 4-.6 8-.6 12.1c0 17 3.3 33.2 9.3 48H45.4C38 224 32 230 32 237.4c0 1.7 .3 3.4 1 5l38.8 96.9C28.2 371.8 0 423.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7c0-58.5-28.2-110.4-71.7-143L415 242.4c.6-1.6 1-3.3 1-5c0-7.4-6-13.4-13.4-13.4H342.7c6-14.8 9.3-31 9.3-48c0-4.1-.2-8.1-.6-12.1C391 155.1 416 142.3 416 128c0-15.8-30.7-29.9-78-38.6C324 43.7 302.5 0 272 0c-18 0-25.9 5.4-32.5 9.9c-4.7 3.3-8.8 6.1-15.5 6.1zm56 208H267.6c-16.5 0-31.1-10.6-36.3-26.2c-2.3-7-12.2-7-14.5 0c-5.2 15.6-19.9 26.2-36.3 26.2H168c-22.1 0-40-17.9-40-40V169.6c28.2 4.1 61 6.4 96 6.4s67.8-2.3 96-6.4V184c0 22.1-17.9 40-40 40zm-88 96l16 32L176 480 128 288l64 32zm128-32L272 480 240 352l16-32 64-32z" + } + }, + "free": [ + "solid" + ] + }, + "user-shield": { + "aliases": { + "unicodes": { + "secondary": [ + "10f505" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "protect", + "safety" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f505", + "label": "User Shield", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c1.8 0 3.5-.2 5.3-.5c-76.3-55.1-99.8-141-103.1-200.2c-16.1-4.8-33.1-7.3-50.7-7.3H178.3zm308.8-78.3l-120 48C358 277.4 352 286.2 352 296c0 63.3 25.9 168.8 134.8 214.2c5.9 2.5 12.6 2.5 18.5 0C614.1 464.8 640 359.3 640 296c0-9.8-6-18.6-15.1-22.3l-120-48c-5.7-2.3-12.1-2.3-17.8 0zM591.4 312c-3.9 50.7-27.2 116.7-95.4 149.7V273.8L591.4 312z" + } + }, + "free": [ + "solid" + ] + }, + "user-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f506" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ban", + "delete", + "remove" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f506", + "label": "User Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L353.3 251.6C407.9 237 448 187.2 448 128C448 57.3 390.7 0 320 0C250.2 0 193.5 55.8 192 125.2L38.8 5.1zM264.3 304.3C170.5 309.4 96 387.2 96 482.3c0 16.4 13.3 29.7 29.7 29.7H514.3c3.9 0 7.6-.7 11-2.1l-261-205.6z" + } + }, + "free": [ + "solid" + ] + }, + "user-tag": { + "aliases": { + "unicodes": { + "secondary": [ + "10f507" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f507", + "label": "User Tag", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c10 0 18.8-4.9 24.2-12.5l-99.2-99.2c-14.9-14.9-23.3-35.1-23.3-56.1v-33c-15.9-4.7-32.8-7.2-50.3-7.2H178.3zM384 224c-17.7 0-32 14.3-32 32v82.7c0 17 6.7 33.3 18.7 45.3L478.1 491.3c18.7 18.7 49.1 18.7 67.9 0l73.4-73.4c18.7-18.7 18.7-49.1 0-67.9L512 242.7c-12-12-28.3-18.7-45.3-18.7H384zm24 80a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + }, + "free": [ + "solid" + ] + }, + "user-tie": { + "aliases": { + "unicodes": { + "secondary": [ + "10f508" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "avatar", + "business", + "clothing", + "formal", + "professional", + "suit" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f508", + "label": "User Tie", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 256A128 128 0 1 1 224 0a128 128 0 1 1 0 256zM209.1 359.2l-18.6-31c-6.4-10.7 1.3-24.2 13.7-24.2H224h19.7c12.4 0 20.1 13.6 13.7 24.2l-18.6 31 33.4 123.9 36-146.9c2-8.1 9.8-13.4 17.9-11.3c70.1 17.6 121.9 81 121.9 156.4c0 17-13.8 30.7-30.7 30.7H285.5c-2.1 0-4-.4-5.8-1.1l.3 1.1H168l.3-1.1c-1.8 .7-3.8 1.1-5.8 1.1H30.7C13.8 512 0 498.2 0 481.3c0-75.5 51.9-138.9 121.9-156.4c8.1-2 15.9 3.3 17.9 11.3l36 146.9 33.4-123.9z" + } + }, + "free": [ + "solid" + ] + }, + "user-xmark": { + "aliases": { + "names": [ + "user-times" + ], + "unicodes": { + "secondary": [ + "10f235" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "archive", + "delete", + "remove", + "x" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f235", + "label": "User Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM471 143c9.4-9.4 24.6-9.4 33.9 0l47 47 47-47c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-47 47 47 47c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-47-47-47 47c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l47-47-47-47c-9.4-9.4-9.4-24.6 0-33.9z" + } + }, + "free": [ + "solid" + ] + }, + "users": { + "aliases": { + "unicodes": { + "secondary": [ + "10f0c0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.3", + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0c0", + "label": "Users", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 0a80 80 0 1 1 0 160A80 80 0 1 1 144 0zM512 0a80 80 0 1 1 0 160A80 80 0 1 1 512 0zM0 298.7C0 239.8 47.8 192 106.7 192h42.7c15.9 0 31 3.5 44.6 9.7c-1.3 7.2-1.9 14.7-1.9 22.3c0 38.2 16.8 72.5 43.3 96c-.2 0-.4 0-.7 0H21.3C9.6 320 0 310.4 0 298.7zM405.3 320c-.2 0-.4 0-.7 0c26.6-23.5 43.3-57.8 43.3-96c0-7.6-.7-15-1.9-22.3c13.6-6.3 28.7-9.7 44.6-9.7h42.7C592.2 192 640 239.8 640 298.7c0 11.8-9.6 21.3-21.3 21.3H405.3zM224 224a96 96 0 1 1 192 0 96 96 0 1 1 -192 0zM128 485.3C128 411.7 187.7 352 261.3 352H378.7C452.3 352 512 411.7 512 485.3c0 14.7-11.9 26.7-26.7 26.7H154.7c-14.7 0-26.7-11.9-26.7-26.7z" + } + }, + "free": [ + "solid" + ] + }, + "users-between-lines": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "covered", + "group", + "people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e591", + "label": "Users Between Lines", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 24C0 10.7 10.7 0 24 0H616c13.3 0 24 10.7 24 24s-10.7 24-24 24H24C10.7 48 0 37.3 0 24zM0 488c0-13.3 10.7-24 24-24H616c13.3 0 24 10.7 24 24s-10.7 24-24 24H24c-13.3 0-24-10.7-24-24zM83.2 160a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM32 320c0-35.3 28.7-64 64-64h96c12.2 0 23.7 3.4 33.4 9.4c-37.2 15.1-65.6 47.2-75.8 86.6H64c-17.7 0-32-14.3-32-32zm461.6 32c-10.3-40.1-39.6-72.6-77.7-87.4c9.4-5.5 20.4-8.6 32.1-8.6h96c35.3 0 64 28.7 64 64c0 17.7-14.3 32-32 32H493.6zM391.2 290.4c32.1 7.4 58.1 30.9 68.9 61.6c3.5 10 5.5 20.8 5.5 32c0 17.7-14.3 32-32 32h-224c-17.7 0-32-14.3-32-32c0-11.2 1.9-22 5.5-32c10.5-29.7 35.3-52.8 66.1-60.9c7.8-2.1 16-3.1 24.5-3.1h96c7.4 0 14.7 .8 21.6 2.4zm44-130.4a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM321.6 96a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + }, + "free": [ + "solid" + ] + }, + "users-gear": { + "aliases": { + "names": [ + "users-cog" + ], + "unicodes": { + "secondary": [ + "10f509" + ] + } + }, + "changes": [ + "5.0.11", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f509", + "label": "Users Gear", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 160A80 80 0 1 0 144 0a80 80 0 1 0 0 160zm368 0A80 80 0 1 0 512 0a80 80 0 1 0 0 160zM0 298.7C0 310.4 9.6 320 21.3 320H234.7c.2 0 .4 0 .7 0c-26.6-23.5-43.3-57.8-43.3-96c0-7.6 .7-15 1.9-22.3c-13.6-6.3-28.7-9.7-44.6-9.7H106.7C47.8 192 0 239.8 0 298.7zM320 320c24 0 45.9-8.8 62.7-23.3c2.5-3.7 5.2-7.3 8-10.7c2.7-3.3 5.7-6.1 9-8.3C410 262.3 416 243.9 416 224c0-53-43-96-96-96s-96 43-96 96s43 96 96 96zm65.4 60.2c-10.3-5.9-18.1-16.2-20.8-28.2H261.3C187.7 352 128 411.7 128 485.3c0 14.7 11.9 26.7 26.7 26.7H455.2c-2.1-5.2-3.2-10.9-3.2-16.4v-3c-1.3-.7-2.7-1.5-4-2.3l-2.6 1.5c-16.8 9.7-40.5 8-54.7-9.7c-4.5-5.6-8.6-11.5-12.4-17.6l-.1-.2-.1-.2-2.4-4.1-.1-.2-.1-.2c-3.4-6.2-6.4-12.6-9-19.3c-8.2-21.2 2.2-42.6 19-52.3l2.7-1.5c0-.8 0-1.5 0-2.3s0-1.5 0-2.3l-2.7-1.5zM533.3 192H490.7c-15.9 0-31 3.5-44.6 9.7c1.3 7.2 1.9 14.7 1.9 22.3c0 17.4-3.5 33.9-9.7 49c2.5 .9 4.9 2 7.1 3.3l2.6 1.5c1.3-.8 2.6-1.6 4-2.3v-3c0-19.4 13.3-39.1 35.8-42.6c7.9-1.2 16-1.9 24.2-1.9s16.3 .6 24.2 1.9c22.5 3.5 35.8 23.2 35.8 42.6v3c1.3 .7 2.7 1.5 4 2.3l2.6-1.5c16.8-9.7 40.5-8 54.7 9.7c2.3 2.8 4.5 5.8 6.6 8.7c-2.1-57.1-49-102.7-106.6-102.7zm91.3 163.9c6.3-3.6 9.5-11.1 6.8-18c-2.1-5.5-4.6-10.8-7.4-15.9l-2.3-4c-3.1-5.1-6.5-9.9-10.2-14.5c-4.6-5.7-12.7-6.7-19-3L574.4 311c-8.9-7.6-19.1-13.6-30.4-17.6v-21c0-7.3-4.9-13.8-12.1-14.9c-6.5-1-13.1-1.5-19.9-1.5s-13.4 .5-19.9 1.5c-7.2 1.1-12.1 7.6-12.1 14.9v21c-11.2 4-21.5 10-30.4 17.6l-18.2-10.5c-6.3-3.6-14.4-2.6-19 3c-3.7 4.6-7.1 9.5-10.2 14.6l-2.3 3.9c-2.8 5.1-5.3 10.4-7.4 15.9c-2.6 6.8 .5 14.3 6.8 17.9l18.2 10.5c-1 5.7-1.6 11.6-1.6 17.6s.6 11.9 1.6 17.5l-18.2 10.5c-6.3 3.6-9.5 11.1-6.8 17.9c2.1 5.5 4.6 10.7 7.4 15.8l2.4 4.1c3 5.1 6.4 9.9 10.1 14.5c4.6 5.7 12.7 6.7 19 3L449.6 457c8.9 7.6 19.2 13.6 30.4 17.6v21c0 7.3 4.9 13.8 12.1 14.9c6.5 1 13.1 1.5 19.9 1.5s13.4-.5 19.9-1.5c7.2-1.1 12.1-7.6 12.1-14.9v-21c11.2-4 21.5-10 30.4-17.6l18.2 10.5c6.3 3.6 14.4 2.6 19-3c3.7-4.6 7.1-9.4 10.1-14.5l2.4-4.2c2.8-5.1 5.3-10.3 7.4-15.8c2.6-6.8-.5-14.3-6.8-17.9l-18.2-10.5c1-5.7 1.6-11.6 1.6-17.5s-.6-11.9-1.6-17.6l18.2-10.5zM472 384a40 40 0 1 1 80 0 40 40 0 1 1 -80 0z" + } + }, + "free": [ + "solid" + ] + }, + "users-line": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "group", + "need", + "people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e592", + "label": "Users Line", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M211.2 96a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zM32 256c0 17.7 14.3 32 32 32h85.6c10.1-39.4 38.6-71.5 75.8-86.6c-9.7-6-21.2-9.4-33.4-9.4H96c-35.3 0-64 28.7-64 64zm461.6 32H576c17.7 0 32-14.3 32-32c0-35.3-28.7-64-64-64H448c-11.7 0-22.7 3.1-32.1 8.6c38.1 14.8 67.4 47.3 77.7 87.4zM391.2 226.4c-6.9-1.6-14.2-2.4-21.6-2.4h-96c-8.5 0-16.7 1.1-24.5 3.1c-30.8 8.1-55.6 31.1-66.1 60.9c-3.5 10-5.5 20.8-5.5 32c0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32c0-11.2-1.9-22-5.5-32c-10.8-30.7-36.8-54.2-68.9-61.6zM563.2 96a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zM321.6 192a80 80 0 1 0 0-160 80 80 0 1 0 0 160zM32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + } + }, + "free": [ + "solid" + ] + }, + "users-rays": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "focused", + "group", + "people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e593", + "label": "Users Rays", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M41 7C31.6-2.3 16.4-2.3 7 7S-2.3 31.6 7 41l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L41 7zM599 7L527 79c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0zM7 505c9.4 9.4 24.6 9.4 33.9 0l72-72c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L7 471c-9.4 9.4-9.4 24.6 0 33.9zm592 0c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-72-72c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l72 72zM320 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zM212.1 336c-2.7 7.5-4.1 15.6-4.1 24c0 13.3 10.7 24 24 24H408c13.3 0 24-10.7 24-24c0-8.4-1.4-16.5-4.1-24c-.5-1.4-1-2.7-1.6-4c-9.4-22.3-29.8-38.9-54.3-43c-3.9-.7-7.9-1-12-1H280c-4.1 0-8.1 .3-12 1c-.8 .1-1.7 .3-2.5 .5c-24.9 5.1-45.1 23-53.4 46.5zM175.8 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-26.5 32C119.9 256 96 279.9 96 309.3c0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6c-7.5-4.1-16.2-6.4-25.3-6.4H149.3zm368 80c14.7 0 26.7-11.9 26.7-26.7c0-29.5-23.9-53.3-53.3-53.3H421.3c-9.2 0-17.8 2.3-25.3 6.4c32.4 11.9 57.2 39.5 65.2 73.6h56.1zM464 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + }, + "free": [ + "solid" + ] + }, + "users-rectangle": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "focus", + "group", + "people", + "reached" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e594", + "label": "Users Rectangle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M96 0C43 0 0 43 0 96V416c0 53 43 96 96 96H544c53 0 96-43 96-96V96c0-53-43-96-96-96H96zM64 96c0-17.7 14.3-32 32-32H544c17.7 0 32 14.3 32 32V416c0 17.7-14.3 32-32 32H96c-17.7 0-32-14.3-32-32V96zm159.8 80a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM96 309.3c0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6c-7.5-4.1-16.2-6.4-25.3-6.4H149.3C119.9 256 96 279.9 96 309.3zM461.2 336h56.1c14.7 0 26.7-11.9 26.7-26.7c0-29.5-23.9-53.3-53.3-53.3H421.3c-9.2 0-17.8 2.3-25.3 6.4c32.4 11.9 57.2 39.5 65.2 73.6zM372 289c-3.9-.7-7.9-1-12-1H280c-4.1 0-8.1 .3-12 1c-26 4.4-47.3 22.7-55.9 47c-2.7 7.5-4.1 15.6-4.1 24c0 13.3 10.7 24 24 24H408c13.3 0 24-10.7 24-24c0-8.4-1.4-16.5-4.1-24c-8.6-24.3-29.9-42.6-55.9-47zM512 176a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM320 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128z" + } + }, + "free": [ + "solid" + ] + }, + "users-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e073" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e073", + "label": "Users Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834954, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L440.6 320H618.7c11.8 0 21.3-9.6 21.3-21.3C640 239.8 592.2 192 533.3 192H490.7c-15.9 0-31 3.5-44.6 9.7c1.3 7.2 1.9 14.7 1.9 22.3c0 30.2-10.5 58-28 79.9l-25.2-19.7C408.1 267.7 416 246.8 416 224c0-53-43-96-96-96c-31.1 0-58.7 14.8-76.3 37.7l-40.6-31.8c13-14.2 20.9-33.1 20.9-53.9c0-44.2-35.8-80-80-80C116.3 0 91.9 14.1 77.5 35.5L38.8 5.1zM106.7 192C47.8 192 0 239.8 0 298.7C0 310.4 9.6 320 21.3 320H234.7c.2 0 .4 0 .7 0c-20.6-18.2-35.2-42.8-40.8-70.8L121.8 192H106.7zM261.3 352C187.7 352 128 411.7 128 485.3c0 14.7 11.9 26.7 26.7 26.7H485.3c10.5 0 19.5-6 23.9-14.8L324.9 352H261.3zM512 160A80 80 0 1 0 512 0a80 80 0 1 0 0 160z" + } + }, + "free": [ + "solid" + ] + }, + "users-viewfinder": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "focus", + "group", + "people", + "targeted" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e595", + "label": "Users Viewfinder", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834953, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M48 48h88c13.3 0 24-10.7 24-24s-10.7-24-24-24H32C14.3 0 0 14.3 0 32V136c0 13.3 10.7 24 24 24s24-10.7 24-24V48zM175.8 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-26.5 32C119.9 256 96 279.9 96 309.3c0 14.7 11.9 26.7 26.7 26.7h56.1c8-34.1 32.8-61.7 65.2-73.6c-7.5-4.1-16.2-6.4-25.3-6.4H149.3zm368 80c14.7 0 26.7-11.9 26.7-26.7c0-29.5-23.9-53.3-53.3-53.3H421.3c-9.2 0-17.8 2.3-25.3 6.4c32.4 11.9 57.2 39.5 65.2 73.6h56.1zm-89.4 0c-8.6-24.3-29.9-42.6-55.9-47c-3.9-.7-7.9-1-12-1H280c-4.1 0-8.1 .3-12 1c-26 4.4-47.3 22.7-55.9 47c-2.7 7.5-4.1 15.6-4.1 24c0 13.3 10.7 24 24 24H408c13.3 0 24-10.7 24-24c0-8.4-1.4-16.5-4.1-24zM464 224a48 48 0 1 0 0-96 48 48 0 1 0 0 96zm-80-32a64 64 0 1 0 -128 0 64 64 0 1 0 128 0zM504 48h88v88c0 13.3 10.7 24 24 24s24-10.7 24-24V32c0-17.7-14.3-32-32-32H504c-13.3 0-24 10.7-24 24s10.7 24 24 24zM48 464V376c0-13.3-10.7-24-24-24s-24 10.7-24 24V480c0 17.7 14.3 32 32 32H136c13.3 0 24-10.7 24-24s-10.7-24-24-24H48zm456 0c-13.3 0-24 10.7-24 24s10.7 24 24 24H608c17.7 0 32-14.3 32-32V376c0-13.3-10.7-24-24-24s-24 10.7-24 24v88H504z" + } + }, + "free": [ + "solid" + ] + }, + "usps": { + "changes": [ + "5.6.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [ + "american", + "package", + "shipping", + "usa" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f7e1", + "label": "United States Postal Service", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M460.3 241.7c25.8-41.3 15.2-48.8-11.7-48.8h-27c-.1 0-1.5-1.4-10.9 8-11.2 5.6-37.9 6.3-37.9 8.7 0 4.5 70.3-3.1 88.1 0 9.5 1.5-1.5 20.4-4.4 32-.5 4.5 2.4 2.3 3.8.1zm-112.1 22.6c64-21.3 97.3-23.9 102-26.2 4.4-2.9-4.4-6.6-26.2-5.8-51.7 2.2-137.6 37.1-172.6 53.9l-30.7-93.3h196.6c-2.7-28.2-152.9-22.6-337.9-22.6L27 415.8c196.4-97.3 258.9-130.3 321.2-151.5zM94.7 96c253.3 53.7 330 65.7 332.1 85.2 36.4 0 45.9 0 52.4 6.6 21.1 19.7-14.6 67.7-14.6 67.7-4.4 2.9-406.4 160.2-406.4 160.2h423.1L549 96z" + } + }, + "free": [ + "brands" + ] + }, + "ussunnah": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f407", + "label": "us-Sunnah Foundation", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2.8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7.2-9.4.5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5.2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6.5 9.3.5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3.8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3.2.6.5 1.4.6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2.3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8.5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6.9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z" + } + }, + "free": [ + "brands" + ] + }, + "utensils": { + "aliases": { + "names": [ + "cutlery" + ], + "unicodes": { + "composite": [ + "1f374", + "f0f5" + ], + "secondary": [ + "10f2e7" + ] + } + }, + "changes": [ + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "cooking", + "cutlery", + "dining", + "dinner", + "eat", + "food", + "fork", + "fork and knife", + "knife", + "restaurant" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f2e7", + "label": "Utensils", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M416 0C400 0 288 32 288 176V288c0 35.3 28.7 64 64 64h32V480c0 17.7 14.3 32 32 32s32-14.3 32-32V352 240 32c0-17.7-14.3-32-32-32zM64 16C64 7.8 57.9 1 49.7 .1S34.2 4.6 32.4 12.5L2.1 148.8C.7 155.1 0 161.5 0 167.9c0 45.9 35.1 83.6 80 87.7V480c0 17.7 14.3 32 32 32s32-14.3 32-32V255.6c44.9-4.1 80-41.8 80-87.7c0-6.4-.7-12.8-2.1-19.1L191.6 12.5c-1.8-8-9.3-13.3-17.4-12.4S160 7.8 160 16V150.2c0 5.4-4.4 9.8-9.8 9.8c-5.1 0-9.3-3.9-9.8-9L127.9 14.6C127.2 6.3 120.3 0 112 0s-15.2 6.3-15.9 14.6L83.7 151c-.5 5.1-4.7 9-9.8 9c-5.4 0-9.8-4.4-9.8-9.8V16zm48.3 152l-.3 0-.3 0 .3-.7 .3 .7z" + } + }, + "free": [ + "solid" + ] + }, + "v": { + "aliases": { + "unicodes": { + "composite": [ + "76" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter V", + "Latin Small Letter V", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "56", + "label": "V", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M19.7 34.5c16.3-6.8 35 .9 41.8 17.2L192 364.8 322.5 51.7c6.8-16.3 25.5-24 41.8-17.2s24 25.5 17.2 41.8l-160 384c-5 11.9-16.6 19.7-29.5 19.7s-24.6-7.8-29.5-19.7L2.5 76.3c-6.8-16.3 .9-35 17.2-41.8z" + } + }, + "free": [ + "solid" + ] + }, + "vaadin": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f408", + "label": "Vaadin", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014460, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z" + } + }, + "free": [ + "brands" + ] + }, + "van-shuttle": { + "aliases": { + "names": [ + "shuttle-van" + ], + "unicodes": { + "composite": [ + "1f690" + ], + "secondary": [ + "10f5b6" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0-beta2", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "airport", + "bus", + "machine", + "minibus", + "public-transportation", + "transportation", + "travel", + "vehicle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5b6", + "label": "Van Shuttle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824649, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M64 104v88h96V96H72c-4.4 0-8 3.6-8 8zm482 88L465.1 96H384v96H546zm-226 0V96H224v96h96zM592 384H576c0 53-43 96-96 96s-96-43-96-96H256c0 53-43 96-96 96s-96-43-96-96H48c-26.5 0-48-21.5-48-48V104C0 64.2 32.2 32 72 32H192 352 465.1c18.9 0 36.8 8.3 49 22.8L625 186.5c9.7 11.5 15 26.1 15 41.2V336c0 26.5-21.5 48-48 48zm-64 0a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zM160 432a48 48 0 1 0 0-96 48 48 0 1 0 0 96z" + } + }, + "free": [ + "solid" + ] + }, + "vault": { + "changes": [ + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bank", + "important", + "lock", + "money", + "safe" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e2c5", + "label": "Vault", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M64 0C28.7 0 0 28.7 0 64V416c0 35.3 28.7 64 64 64H80l16 32h64l16-32H400l16 32h64l16-32h16c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zM224 320a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm0-240a160 160 0 1 1 0 320 160 160 0 1 1 0-320zM480 221.3V336c0 8.8-7.2 16-16 16s-16-7.2-16-16V221.3c-18.6-6.6-32-24.4-32-45.3c0-26.5 21.5-48 48-48s48 21.5 48 48c0 20.9-13.4 38.7-32 45.3z" + } + }, + "free": [ + "solid" + ] + }, + "vector-square": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5cb" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anchors", + "lines", + "object", + "render", + "shape" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5cb", + "label": "Vector Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M368 80h32v32H368V80zM352 32c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32H32C14.3 32 0 46.3 0 64v64c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32v64c0 17.7 14.3 32 32 32H96c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V384c0-17.7-14.3-32-32-32V160c17.7 0 32-14.3 32-32V64c0-17.7-14.3-32-32-32H352zM96 160c17.7 0 32-14.3 32-32H320c0 17.7 14.3 32 32 32V352c-17.7 0-32 14.3-32 32H128c0-17.7-14.3-32-32-32V160zM48 400H80v32H48V400zm320 32V400h32v32H368zM48 112V80H80v32H48z" + } + }, + "free": [ + "solid" + ] + }, + "venus": { + "aliases": { + "unicodes": { + "composite": [ + "2640" + ], + "secondary": [ + "10f221" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "female", + "female sign", + "gender", + "woman" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f221", + "label": "Venus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M64 176a112 112 0 1 1 224 0A112 112 0 1 1 64 176zM208 349.1c81.9-15 144-86.8 144-173.1C352 78.8 273.2 0 176 0S0 78.8 0 176c0 86.3 62.1 158.1 144 173.1V384H112c-17.7 0-32 14.3-32 32s14.3 32 32 32h32v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c17.7 0 32-14.3 32-32s-14.3-32-32-32H208V349.1z" + } + }, + "free": [ + "solid" + ] + }, + "venus-double": { + "aliases": { + "unicodes": { + "composite": [ + "26a2" + ], + "secondary": [ + "10f226" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Doubled Female Sign", + "female", + "gender", + "lesbian" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f226", + "label": "Venus Double", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M176 288a112 112 0 1 0 0-224 112 112 0 1 0 0 224zM352 176c0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H208v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H112c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V349.1C62.1 334.1 0 262.3 0 176C0 78.8 78.8 0 176 0s176 78.8 176 176zM328 318c14.6-15.6 26.8-33.4 36-53c18.8 14.4 42.4 23 68 23c61.9 0 112-50.1 112-112s-50.1-112-112-112c-25.6 0-49.1 8.6-68 23c-9.3-19.5-21.5-37.4-36-53C357.1 12.6 393.1 0 432 0c97.2 0 176 78.8 176 176c0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H464v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H368c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V349.1c-26.6-4.9-51.1-15.7-72-31.1z" + } + }, + "free": [ + "solid" + ] + }, + "venus-mars": { + "aliases": { + "unicodes": { + "composite": [ + "26a4" + ], + "secondary": [ + "10f228" + ] + } + }, + "changes": [ + "4.3.0", + "5.0.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Interlocked Female and Male Sign", + "female", + "gender", + "heterosexual", + "male" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f228", + "label": "Venus Mars", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670851781, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M176 288a112 112 0 1 0 0-224 112 112 0 1 0 0 224zM352 176c0 86.3-62.1 158.1-144 173.1V384h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H208v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H112c-17.7 0-32-14.3-32-32s14.3-32 32-32h32V349.1C62.1 334.1 0 262.3 0 176C0 78.8 78.8 0 176 0s176 78.8 176 176zM271.9 360.6c19.3-10.1 36.9-23.1 52.1-38.4c20 18.5 46.7 29.8 76.1 29.8c61.9 0 112-50.1 112-112s-50.1-112-112-112c-7.2 0-14.3 .7-21.1 2c-4.9-21.5-13-41.7-24-60.2C369.3 66 384.4 64 400 64c37 0 71.4 11.4 99.8 31l20.6-20.6L487 41c-6.9-6.9-8.9-17.2-5.2-26.2S494.3 0 504 0H616c13.3 0 24 10.7 24 24V136c0 9.7-5.8 18.5-14.8 22.2s-19.3 1.7-26.2-5.2l-33.4-33.4L545 140.2c19.5 28.4 31 62.7 31 99.8c0 97.2-78.8 176-176 176c-50.5 0-96-21.3-128.1-55.4z" + } + }, + "free": [ + "solid" + ] + }, + "vest": { + "aliases": { + "unicodes": { + "secondary": [ + "10e085" + ] + } + }, + "changes": [ + "5.15.0", + "5.15.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "biker", + "fashion", + "style" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e085", + "label": "Vest", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M207.1 237.4L151.2 69.7C168.6 79.7 192.6 88 224 88s55.4-8.3 72.8-18.3L226.5 280.6c-1.6 4.9-2.5 10-2.5 15.2V464c0 26.5 21.5 48 48 48H400c26.5 0 48-21.5 48-48V270.5c0-9.5-2.8-18.7-8.1-26.6l-47.9-71.8c-5.3-7.9-8.1-17.1-8.1-26.6V128 54.3 48c0-26.5-21.5-48-48-48h-4.5c-.2 0-.4 0-.6 0c-.4 0-.8 0-1.2 0C311 0 295.7 9.7 285.7 18.8C276.4 27.2 257.2 40 224 40s-52.4-12.8-61.7-21.2C152.3 9.7 137 0 118.3 0c-.4 0-.8 0-1.2 0c-.2 0-.4 0-.6 0H112C85.5 0 64 21.5 64 48v6.3V128v17.5c0 9.5-2.8 18.7-8.1 26.6L8.1 243.9C2.8 251.8 0 261.1 0 270.5V464c0 26.5 21.5 48 48 48H176c9.9 0 19-3 26.7-8.1C195.9 492.2 192 478.5 192 464V295.8c0-8.6 1.4-17.1 4.1-25.3l11-33.1zM347.3 356.7l48 48c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0l-48-48c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0zm-294.6 48l48-48c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6l-48 48c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6z" + } + }, + "free": [ + "solid" + ] + }, + "vest-patches": { + "aliases": { + "unicodes": { + "secondary": [ + "10e086" + ] + } + }, + "changes": [ + "5.15.0", + "5.15.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "biker", + "fashion", + "style" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e086", + "label": "Vest Patches", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669905657, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M151.2 69.7l55.9 167.7-11 33.1c-2.7 8.2-4.1 16.7-4.1 25.3V464c0 14.5 3.9 28.2 10.7 39.9C195 509 185.9 512 176 512H48c-26.5 0-48-21.5-48-48V270.5c0-9.5 2.8-18.7 8.1-26.6l47.9-71.8c5.3-7.9 8.1-17.1 8.1-26.6V128 54.3 48C64 21.5 85.5 0 112 0h4.5c.2 0 .4 0 .6 0c.4 0 .8 0 1.2 0c18.8 0 34.1 9.7 44.1 18.8C171.6 27.2 190.8 40 224 40s52.4-12.8 61.7-21.2C295.7 9.7 311 0 329.7 0c.4 0 .8 0 1.2 0c.2 0 .4 0 .6 0H336c26.5 0 48 21.5 48 48v6.3V128v17.5c0 9.5 2.8 18.7 8.1 26.6l47.9 71.8c5.3 7.9 8.1 17.1 8.1 26.6V464c0 26.5-21.5 48-48 48H272c-26.5 0-48-21.5-48-48V295.8c0-5.2 .8-10.3 2.5-15.2L296.8 69.7C279.4 79.7 255.4 88 224 88s-55.4-8.3-72.8-18.3zM96 456a40 40 0 1 0 0-80 40 40 0 1 0 0 80zM63.5 255.5c-4.7 4.7-4.7 12.3 0 17L79 288 63.5 303.5c-4.7 4.7-4.7 12.3 0 17s12.3 4.7 17 0L96 305l15.5 15.5c4.7 4.7 12.3 4.7 17 0s4.7-12.3 0-17L113 288l15.5-15.5c4.7-4.7 4.7-12.3 0-17s-12.3-4.7-17 0L96 271 80.5 255.5c-4.7-4.7-12.3-4.7-17 0zM304 280v8 32c0 8.8 7.2 16 16 16h32 8c13.3 0 24-10.7 24-24s-10.7-24-24-24h-8v-8c0-13.3-10.7-24-24-24s-24 10.7-24 24z" + } + }, + "free": [ + "solid" + ] + }, + "viacoin": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f237", + "label": "Viacoin", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z" + } + }, + "free": [ + "brands" + ] + }, + "viadeo": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2a9", + "label": "Viadeo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z" + } + }, + "free": [ + "brands" + ] + }, + "vial": { + "aliases": { + "unicodes": { + "composite": [ + "1f9ea" + ], + "secondary": [ + "10f492" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "chemist", + "chemistry", + "experiment", + "lab", + "sample", + "science", + "test", + "test tube" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f492", + "label": "Vial", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M342.6 9.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l9.4 9.4L28.1 342.6C10.1 360.6 0 385 0 410.5V416c0 53 43 96 96 96h5.5c25.5 0 49.9-10.1 67.9-28.1L448 205.3l9.4 9.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-32-32-96-96-32-32zM205.3 256L352 109.3 402.7 160l-96 96H205.3z" + } + }, + "free": [ + "solid" + ] + }, + "vial-circle-check": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "chemist", + "chemistry", + "not affected", + "ok", + "okay", + "success", + "test tube", + "tube", + "vaccine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e596", + "label": "Vial Circle Check", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H96h64 64c17.7 0 32 14.3 32 32s-14.3 32-32 32V266.8c-20.2 28.6-32 63.5-32 101.2c0 25.2 5.3 49.1 14.8 70.8C189.5 463.7 160.6 480 128 480c-53 0-96-43-96-96V96C14.3 96 0 81.7 0 64zM96 96v96h64V96H96zM224 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm211.3-43.3c-6.2-6.2-16.4-6.2-22.6 0L352 385.4l-28.7-28.7c-6.2-6.2-16.4-6.2-22.6 0s-6.2 16.4 0 22.6l40 40c6.2 6.2 16.4 6.2 22.6 0l72-72c6.2-6.2 6.2-16.4 0-22.6z" + } + }, + "free": [ + "solid" + ] + }, + "vial-virus": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "coronavirus", + "covid-19", + "flue", + "infection", + "lab", + "laboratory", + "pandemic", + "test", + "test tube", + "vaccine" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e597", + "label": "Vial Virus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96V384c0 53 43 96 96 96c28.6 0 54.2-12.5 71.8-32.3c.1-14.2 5.6-28.3 16.4-39.1c.2-.2 .1-.6-.2-.6c-30.9 0-56-25.1-56-56s25.1-56 56-56c.3 0 .4-.4 .2-.6c-21.9-21.9-21.9-57.3 0-79.2c2.4-2.4 5-4.6 7.8-6.5V96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160 96 32zM96 192V96h64v96H96zM216 376c28.8 0 43.2 34.8 22.9 55.2c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0c20.4-20.4 55.2-5.9 55.2 22.9c0 13.3 10.7 24 24 24s24-10.7 24-24c0-28.8 34.8-43.2 55.2-22.9c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9C444.8 410.8 459.2 376 488 376c13.3 0 24-10.7 24-24s-10.7-24-24-24c-28.8 0-43.2-34.8-22.9-55.2c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0C410.8 259.2 376 244.8 376 216c0-13.3-10.7-24-24-24s-24 10.7-24 24c0 28.8-34.8 43.2-55.2 22.9c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9c20.4 20.4 5.9 55.2-22.9 55.2c-13.3 0-24 10.7-24 24s10.7 24 24 24zm104-88a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm40 96a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z" + } + }, + "free": [ + "solid" + ] + }, + "vials": { + "aliases": { + "unicodes": { + "secondary": [ + "10f493" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ampule", + "experiment", + "lab", + "sample", + "science", + "test", + "test tube" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f493", + "label": "Vials", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H88h48 56c17.7 0 32 14.3 32 32s-14.3 32-32 32V400c0 44.2-35.8 80-80 80s-80-35.8-80-80V96C14.3 96 0 81.7 0 64zM136 96H88V256h48V96zM288 64c0-17.7 14.3-32 32-32h56 48 56c17.7 0 32 14.3 32 32s-14.3 32-32 32V400c0 44.2-35.8 80-80 80s-80-35.8-80-80V96c-17.7 0-32-14.3-32-32zM424 96H376V256h48V96z" + } + }, + "free": [ + "solid" + ] + }, + "viber": { + "changes": [ + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f409", + "label": "Viber", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014468, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M444 49.9C431.3 38.2 379.9.9 265.3.4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9.4-85.7.4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9.4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9.6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4.7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5.9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9.1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7.5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1.8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z" + } + }, + "free": [ + "brands" + ] + }, + "video": { + "aliases": { + "names": [ + "video-camera" + ], + "unicodes": { + "secondary": [ + "10f03d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "camera", + "film", + "movie", + "record", + "video-camera" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f03d", + "label": "Video", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M0 128C0 92.7 28.7 64 64 64H320c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM559.1 99.8c10.4 5.6 16.9 16.4 16.9 28.2V384c0 11.8-6.5 22.6-16.9 28.2s-23 5-32.9-1.6l-96-64L416 337.1V320 192 174.9l14.2-9.5 96-64c9.8-6.5 22.4-7.2 32.9-1.6z" + } + }, + "free": [ + "solid" + ] + }, + "video-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10f4e2" + ] + } + }, + "changes": [ + "5.0.9", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "add", + "create", + "film", + "new", + "positive", + "record", + "video" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4e2", + "label": "Video Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669906406, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-86.4-67.7 13.8 9.2c9.8 6.5 22.4 7.2 32.9 1.6s16.9-16.4 16.9-28.2V128c0-11.8-6.5-22.6-16.9-28.2s-23-5-32.9 1.6l-96 64L448 174.9V192 320v5.8l-32-25.1V128c0-35.3-28.7-64-64-64H113.9L38.8 5.1zM32 128V384c0 35.3 28.7 64 64 64H352c23.4 0 43.9-12.6 55-31.3L32.3 121.5c-.2 2.1-.3 4.3-.3 6.5z" + } + }, + "free": [ + "solid" + ] + }, + "vihara": { + "aliases": { + "unicodes": { + "secondary": [ + "10f6a7" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "buddhism", + "buddhist", + "building", + "monastery" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6a7", + "label": "Vihara", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M281 22L305.8 4.7c1.3-.9 2.7-1.8 4.1-2.4C313.1 .7 316.6 0 320 0s6.9 .7 10.1 2.2c1.4 .7 2.8 1.5 4.1 2.4L359 22C393 45.8 430.8 63.5 470.8 74.4l23 6.3c1.8 .5 3.6 1.1 5.2 2c3.2 1.7 5.9 4 8.1 6.8c3.8 4.9 5.6 11.3 4.7 17.8c-.4 2.8-1.2 5.4-2.5 7.8c-1.7 3.2-4 5.9-6.8 8.1c-4.3 3.2-9.6 5.1-15.1 4.9H480v56.1l6.4 5.1 5.2 4.1c21.1 16.7 45 29.6 70.5 38.1l28.9 9.6c1.6 .5 3.2 1.2 4.6 2c3.1 1.7 5.8 4.1 7.8 6.9s3.5 6.1 4.1 9.6c.5 2.7 .6 5.5 .1 8.3s-1.4 5.4-2.7 7.8c-1.7 3.1-4.1 5.8-6.9 7.8s-6.1 3.5-9.6 4.1c-1.6 .3-3.3 .4-5 .4H544v65.9c20.5 22.8 47.4 39.2 77.4 46.7C632 403 640 412.6 640 424c0 13.3-10.7 24-24 24H576v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H352v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H128v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448H24c-13.3 0-24-10.7-24-24c0-11.4 8-21 18.6-23.4c30-7.6 56.9-23.9 77.4-46.7V288H56.6c-1.7 0-3.4-.1-5-.4c-3.5-.7-6.8-2.1-9.6-4.1s-5.2-4.7-7-7.8c-1.3-2.4-2.3-5-2.7-7.8s-.4-5.6 .1-8.3c.7-3.5 2.1-6.8 4.1-9.6s4.7-5.2 7.8-6.9c1.4-.8 3-1.5 4.6-2l28.9-9.6c25.5-8.5 49.4-21.4 70.5-38.1l5.2-4.1 6.4-5.1V176 128h-7.5c-5.5 .1-10.8-1.7-15.1-4.9c-2.8-2.1-5.1-4.8-6.8-8.1c-1.2-2.4-2.1-5-2.5-7.8c-.9-6.5 .9-12.8 4.7-17.8c2.1-2.8 4.8-5.1 8.1-6.8c1.6-.8 3.4-1.5 5.2-2l23-6.3C209.2 63.5 247 45.8 281 22zM416 128H320 224v64h72 48 72V128zM160 288v64H296h24 24H480V288H344 320h0H296 160z" + } + }, + "free": [ + "solid" + ] + }, + "vimeo": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f40a", + "label": "Vimeo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014466, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3.9 49 22.5 47.1 64.7z" + } + }, + "free": [ + "brands" + ] + }, + "vimeo-v": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "vimeo" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f27d", + "label": "Vimeo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z" + } + }, + "free": [ + "brands" + ] + }, + "vine": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1ca", + "label": "Vine", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z" + } + }, + "free": [ + "brands" + ] + }, + "virus": { + "aliases": { + "unicodes": { + "secondary": [ + "10e074" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "coronavirus", + "covid-19", + "flu", + "health", + "infection", + "pandemic", + "sick", + "vaccine", + "viral" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e074", + "label": "Virus", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43.5c0 49.9-60.3 74.9-95.6 39.6L120.2 75C107.7 62.5 87.5 62.5 75 75s-12.5 32.8 0 45.3l8.2 8.2C118.4 163.7 93.4 224 43.5 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H43.5c49.9 0 74.9 60.3 39.6 95.6L75 391.8c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l8.2-8.2c35.3-35.3 95.6-10.3 95.6 39.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V468.5c0-49.9 60.3-74.9 95.6-39.6l8.2 8.2c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-8.2-8.2c-35.3-35.3-10.3-95.6 39.6-95.6H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H468.5c-49.9 0-74.9-60.3-39.6-95.6l8.2-8.2c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-8.2 8.2C348.3 118.4 288 93.4 288 43.5V32zM176 224a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zm128 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + }, + "free": [ + "solid" + ] + }, + "virus-covid": { + "changes": [ + "6.0.0", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "covid-19", + "flu", + "health", + "infection", + "pandemic", + "vaccine", + "viral", + "virus" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4a8", + "label": "Virus Covid", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 24c0-13.3 10.7-24 24-24h80c13.3 0 24 10.7 24 24s-10.7 24-24 24H280V81.6c30.7 4.2 58.8 16.3 82.3 34.1L386.1 92 374.8 80.6c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l56.6 56.6c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L420 125.9l-23.8 23.8c17.9 23.5 29.9 51.7 34.1 82.3H464V216c0-13.3 10.7-24 24-24s24 10.7 24 24v80c0 13.3-10.7 24-24 24s-24-10.7-24-24V280H430.4c-4.2 30.7-16.3 58.8-34.1 82.3L420 386.1l11.3-11.3c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-56.6 56.6c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9L386.1 420l-23.8-23.8c-23.5 17.9-51.7 29.9-82.3 34.1V464h16c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h16V430.4c-30.7-4.2-58.8-16.3-82.3-34.1L125.9 420l11.3 11.3c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0L46.7 408.7c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0L92 386.1l23.8-23.8C97.9 338.8 85.8 310.7 81.6 280H48v16c0 13.3-10.7 24-24 24s-24-10.7-24-24V216c0-13.3 10.7-24 24-24s24 10.7 24 24v16H81.6c4.2-30.7 16.3-58.8 34.1-82.3L92 125.9 80.6 137.2c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l56.6-56.6c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L125.9 92l23.8 23.8c23.5-17.9 51.7-29.9 82.3-34.1V48H216c-13.3 0-24-10.7-24-24zm48 200a48 48 0 1 0 -96 0 48 48 0 1 0 96 0zm64 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48z" + } + }, + "free": [ + "solid" + ] + }, + "virus-covid-slash": { + "changes": [ + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "covid-19", + "flu", + "health", + "infection", + "pandemic", + "vaccine", + "viral", + "virus" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e4a9", + "label": "Virus Covid Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L472.1 344.7c11.4-19.5 19.1-41.4 22.3-64.7H528v16c0 13.3 10.7 24 24 24s24-10.7 24-24V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v16H494.4c-4.2-30.7-16.3-58.8-34.1-82.3L484 125.9l11.3 11.3c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L472.7 46.7c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9L450.1 92l-23.8 23.8C402.8 97.9 374.7 85.8 344 81.6V48h16c13.3 0 24-10.7 24-24s-10.7-24-24-24H280c-13.3 0-24 10.7-24 24s10.7 24 24 24h16V81.6c-30.7 4.2-58.8 16.3-82.3 34.1L189.9 92l11.3-11.3c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L134.1 79.8 38.8 5.1zM149.2 213.5c-1.5 6-2.7 12.2-3.5 18.5H112V216c0-13.3-10.7-24-24-24s-24 10.7-24 24v80c0 13.3 10.7 24 24 24s24-10.7 24-24V280h33.6c4.2 30.7 16.3 58.8 34.1 82.3L156 386.1l-11.3-11.3c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l56.6 56.6c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9L189.9 420l23.8-23.8c23.5 17.9 51.7 29.9 82.3 34.1V464H280c-13.3 0-24 10.7-24 24s10.7 24 24 24h80c13.3 0 24-10.7 24-24s-10.7-24-24-24H344V430.4c20.4-2.8 39.7-9.1 57.3-18.2L149.2 213.5z" + } + }, + "free": [ + "solid" + ] + }, + "virus-slash": { + "aliases": { + "unicodes": { + "secondary": [ + "10e075" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bug", + "coronavirus", + "covid-19", + "cure", + "eliminate", + "flu", + "health", + "infection", + "pandemic", + "sick", + "vaccine", + "viral" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e075", + "label": "Virus Slash", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7l-154.3-121c-2-30.1 20.8-60.1 56-60.1H544c17.7 0 32-14.3 32-32s-14.3-32-32-32H532.5c-49.9 0-74.9-60.3-39.6-95.6l8.2-8.2c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-8.2 8.2C412.3 118.4 352 93.4 352 43.5V32c0-17.7-14.3-32-32-32s-32 14.3-32 32V43.5c0 49.9-60.3 74.9-95.6 39.6L184.2 75c-12.5-12.5-32.8-12.5-45.3 0c-1.6 1.6-3.1 3.4-4.3 5.3L38.8 5.1zm225.8 177c6.9-3.9 14.9-6.1 23.4-6.1c26.5 0 48 21.5 48 48c0 4.4-.6 8.7-1.7 12.7l-69.7-54.6zM107.5 224H96c-17.7 0-32 14.3-32 32s14.3 32 32 32h11.5c49.9 0 74.9 60.3 39.6 95.6l-8.2 8.2c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l8.2-8.2c35.3-35.3 95.6-10.3 95.6 39.6V480c0 17.7 14.3 32 32 32s32-14.3 32-32V468.5c0-31.2 23.6-52.7 50-55.7L144.7 210c-9.5 8.5-22.2 14-37.2 14z" + } + }, + "free": [ + "solid" + ] + }, + "viruses": { + "aliases": { + "unicodes": { + "secondary": [ + "10e076" + ] + } + }, + "changes": [ + "5.13.0", + "5.14.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "bugs", + "coronavirus", + "covid-19", + "flu", + "health", + "infection", + "multiply", + "pandemic", + "sick", + "spread", + "vaccine", + "viral" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e076", + "label": "Viruses", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M192 0c13.3 0 24 10.7 24 24V37.5c0 35.6 43.1 53.5 68.3 28.3l9.5-9.5c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-9.5 9.5C293 124.9 310.9 168 346.5 168H360c13.3 0 24 10.7 24 24s-10.7 24-24 24H346.5c-35.6 0-53.5 43.1-28.3 68.3l9.5 9.5c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-9.5-9.5C259.1 293 216 310.9 216 346.5V360c0 13.3-10.7 24-24 24s-24-10.7-24-24V346.5c0-35.6-43.1-53.5-68.3-28.3l-9.5 9.5c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l9.5-9.5C91 259.1 73.1 216 37.5 216H24c-13.3 0-24-10.7-24-24s10.7-24 24-24H37.5c35.6 0 53.5-43.1 28.3-68.3l-9.5-9.5c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l9.5 9.5C124.9 91 168 73.1 168 37.5V24c0-13.3 10.7-24 24-24zm48 224a16 16 0 1 0 0-32 16 16 0 1 0 0 32zm-48-64a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zm320 80c0 33 39.9 49.5 63.2 26.2c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6C574.5 312.1 591 352 624 352c8.8 0 16 7.2 16 16s-7.2 16-16 16c-33 0-49.5 39.9-26.2 63.2c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0C551.9 446.5 512 463 512 496c0 8.8-7.2 16-16 16s-16-7.2-16-16c0-33-39.9-49.5-63.2-26.2c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6C417.5 423.9 401 384 368 384c-8.8 0-16-7.2-16-16s7.2-16 16-16c33 0 49.5-39.9 26.2-63.2c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0C440.1 289.5 480 273 480 240c0-8.8 7.2-16 16-16s16 7.2 16 16zm0 112a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z" + } + }, + "free": [ + "solid" + ] + }, + "vk": { + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f189", + "label": "VK", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M31.4907 63.4907C0 94.9813 0 145.671 0 247.04V264.96C0 366.329 0 417.019 31.4907 448.509C62.9813 480 113.671 480 215.04 480H232.96C334.329 480 385.019 480 416.509 448.509C448 417.019 448 366.329 448 264.96V247.04C448 145.671 448 94.9813 416.509 63.4907C385.019 32 334.329 32 232.96 32H215.04C113.671 32 62.9813 32 31.4907 63.4907ZM75.6 168.267H126.747C128.427 253.76 166.133 289.973 196 297.44V168.267H244.16V242C273.653 238.827 304.64 205.227 315.093 168.267H363.253C359.313 187.435 351.46 205.583 340.186 221.579C328.913 237.574 314.461 251.071 297.733 261.227C316.41 270.499 332.907 283.63 346.132 299.751C359.357 315.873 369.01 334.618 374.453 354.747H321.44C316.555 337.262 306.614 321.61 292.865 309.754C279.117 297.899 262.173 290.368 244.16 288.107V354.747H238.373C136.267 354.747 78.0267 284.747 75.6 168.267Z" + } + }, + "free": [ + "brands" + ] + }, + "vnv": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f40b", + "label": "VNV", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z" + } + }, + "free": [ + "brands" + ] + }, + "voicemail": { + "aliases": { + "unicodes": { + "secondary": [ + "10f897" + ] + } + }, + "changes": [ + "5.9.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "answer", + "inbox", + "message", + "phone" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f897", + "label": "Voicemail", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824461, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M144 320a80 80 0 1 1 0-160 80 80 0 1 1 0 160zm119.8 0c15.3-22.9 24.2-50.4 24.2-80c0-79.5-64.5-144-144-144S0 160.5 0 240s64.5 144 144 144H496c79.5 0 144-64.5 144-144s-64.5-144-144-144s-144 64.5-144 144c0 29.6 8.9 57.1 24.2 80H263.8zM496 160a80 80 0 1 1 0 160 80 80 0 1 1 0-160z" + } + }, + "free": [ + "solid" + ] + }, + "volcano": { + "aliases": { + "unicodes": { + "composite": [ + "1f30b" + ], + "secondary": [ + "10f770" + ] + } + }, + "changes": [ + "5.5.0", + "5.10.2", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "caldera", + "eruption", + "lava", + "magma", + "mountain", + "smoke", + "volcano" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f770", + "label": "Volcano", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669902928, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M160 144c-35.3 0-64-28.7-64-64s28.7-64 64-64c15.7 0 30 5.6 41.2 15C212.4 12.4 232.7 0 256 0s43.6 12.4 54.8 31C322 21.6 336.3 16 352 16c35.3 0 64 28.7 64 64s-28.7 64-64 64c-14.7 0-28.3-5-39.1-13.3l-32 48C275.3 187 266 192 256 192s-19.3-5-24.9-13.3l-32-48C188.3 139 174.7 144 160 144zM144 352l48.4-24.2c10.2-5.1 21.6-7.8 33-7.8c19.6 0 38.4 7.8 52.2 21.6l32.5 32.5c6.3 6.3 14.9 9.9 23.8 9.9c11.3 0 21.8-5.6 28-15l9.7-14.6-59-66.3c-9.1-10.2-22.2-16.1-35.9-16.1H235.1c-13.7 0-26.8 5.9-35.9 16.1l-59.9 67.4L144 352zm19.4-95.8c18.2-20.5 44.3-32.2 71.8-32.2h41.8c27.4 0 53.5 11.7 71.8 32.2l150.2 169c8.5 9.5 13.2 21.9 13.2 34.7c0 28.8-23.4 52.2-52.2 52.2H52.2C23.4 512 0 488.6 0 459.8c0-12.8 4.7-25.1 13.2-34.7l150.2-169z" + } + }, + "free": [ + "solid" + ] + }, + "volleyball": { + "aliases": { + "names": [ + "volleyball-ball" + ], + "unicodes": { + "composite": [ + "1f3d0" + ], + "secondary": [ + "10f45f" + ] + } + }, + "changes": [ + "5.0.5", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ball", + "beach", + "game", + "olympics", + "sport", + "volleyball" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f45f", + "label": "Volleyball", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321886, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M511.8 267.4c-26.1 8.7-53.4 13.8-81 15.1c9.2-105.3-31.5-204.2-103.2-272.4C434.1 41.1 512 139.5 512 256c0 3.8-.1 7.6-.2 11.4zm-3.9 34.7c-5.8 32-17.6 62-34.2 88.7c-97.5 48.5-217.7 42.6-311.9-24.5c23.7-36.2 55.4-67.7 94.5-91.8c79.9 43.2 170.1 50.8 251.6 27.6zm-236-55.5c-2.5-90.9-41.1-172.7-101.9-231.7C196.8 5.2 225.8 0 256 0c2.7 0 5.3 0 7.9 .1c90.8 60.2 145.7 167.2 134.7 282.3c-43.1-2.4-86.4-14.1-126.8-35.9zM138 28.8c20.6 18.3 38.7 39.4 53.7 62.6C95.9 136.1 30.6 220.8 7.3 316.9C2.5 297.4 0 277 0 256C0 157.2 56 71.5 138 28.8zm69.6 90.5c19.5 38.6 31 81.9 32.3 127.7C162.5 294.6 110.9 368.9 90.2 451C66 430.4 45.6 405.4 30.4 377.2c6.7-108.7 71.9-209.9 177.1-257.9zM256 512c-50.7 0-98-14.7-137.8-40.2c5.6-27 14.8-53.1 27.4-77.7C232.2 454.6 338.1 468.8 433 441c-46 44-108.3 71-177 71z" + } + }, + "free": [ + "solid" + ] + }, + "volume-high": { + "aliases": { + "names": [ + "volume-up" + ], + "unicodes": { + "composite": [ + "1f50a" + ], + "secondary": [ + "10f028" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "higher", + "loud", + "louder", + "music", + "sound", + "speaker", + "speaker high volume" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f028", + "label": "Volume High", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M533.6 32.5C598.5 85.3 640 165.8 640 256s-41.5 170.8-106.4 223.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C557.5 398.2 592 331.2 592 256s-34.5-142.2-88.7-186.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zM473.1 107c43.2 35.2 70.9 88.9 70.9 149s-27.7 113.8-70.9 149c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C475.3 341.3 496 301.1 496 256s-20.7-85.3-53.2-111.8c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zm-60.5 74.5C434.1 199.1 448 225.9 448 256s-13.9 56.9-35.4 74.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C393.1 284.4 400 271 400 256s-6.9-28.4-17.7-37.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5zM301.1 34.8C312.6 40 320 51.4 320 64V448c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3z" + } + }, + "free": [ + "solid" + ] + }, + "volume-low": { + "aliases": { + "names": [ + "volume-down" + ], + "unicodes": { + "composite": [ + "1f508" + ], + "secondary": [ + "10f027" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "lower", + "music", + "quieter", + "soft", + "sound", + "speaker", + "speaker low volume" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f027", + "label": "Volume Low", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M301.1 34.8C312.6 40 320 51.4 320 64V448c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3zM412.6 181.5C434.1 199.1 448 225.9 448 256s-13.9 56.9-35.4 74.5c-10.3 8.4-25.4 6.8-33.8-3.5s-6.8-25.4 3.5-33.8C393.1 284.4 400 271 400 256s-6.9-28.4-17.7-37.3c-10.3-8.4-11.8-23.5-3.5-33.8s23.5-11.8 33.8-3.5z" + } + }, + "free": [ + "solid" + ] + }, + "volume-off": { + "aliases": { + "unicodes": { + "secondary": [ + "10f026" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.3.0", + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "ban", + "music", + "mute", + "quiet", + "silent", + "sound" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f026", + "label": "Volume Off", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M320 64c0-12.6-7.4-24-18.9-29.2s-25-3.1-34.4 5.3L131.8 160H64c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64h67.8L266.7 471.9c9.4 8.4 22.9 10.4 34.4 5.3S320 460.6 320 448V64z" + } + }, + "free": [ + "solid" + ] + }, + "volume-xmark": { + "aliases": { + "names": [ + "volume-mute", + "volume-times" + ], + "unicodes": { + "secondary": [ + "10f6a9" + ] + } + }, + "changes": [ + "5.3.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "audio", + "music", + "quiet", + "sound", + "speaker" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6a9", + "label": "Volume Xmark", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M301.1 34.8C312.6 40 320 51.4 320 64V448c0 12.6-7.4 24-18.9 29.2s-25 3.1-34.4-5.3L131.8 352H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h67.8L266.7 40.1c9.4-8.4 22.9-10.4 34.4-5.3zM425 167l55 55 55-55c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9l-55 55 55 55c9.4 9.4 9.4 24.6 0 33.9s-24.6 9.4-33.9 0l-55-55-55 55c-9.4 9.4-24.6 9.4-33.9 0s-9.4-24.6 0-33.9l55-55-55-55c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0z" + } + }, + "free": [ + "solid" + ] + }, + "vr-cardboard": { + "aliases": { + "unicodes": { + "secondary": [ + "10f729" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "3d", + "augment", + "google", + "reality", + "virtual" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f729", + "label": "Vr Cardboard", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M576 64H64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H184.4c24.2 0 46.4-13.7 57.2-35.4l32-64c8.8-17.5 26.7-28.6 46.3-28.6s37.5 11.1 46.3 28.6l32 64c10.8 21.7 33 35.4 57.2 35.4H576c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64zM96 240a64 64 0 1 1 128 0A64 64 0 1 1 96 240zm384-64a64 64 0 1 1 0 128 64 64 0 1 1 0-128z" + } + }, + "free": [ + "solid" + ] + }, + "vuejs": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f41f", + "label": "Vue.js", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z" + } + }, + "free": [ + "brands" + ] + }, + "w": { + "aliases": { + "unicodes": { + "composite": [ + "77" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter W", + "Latin Small Letter W", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "57", + "label": "W", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M20.8 34c16.5-6.2 35 2.2 41.2 18.7l110.2 294L257.3 55c4-13.7 16.5-23 30.7-23s26.7 9.4 30.7 23l85.1 291.7L514 52.8c6.2-16.5 24.6-24.9 41.2-18.7s24.9 24.7 18.7 41.2l-144 384c-4.8 12.9-17.4 21.3-31.2 20.7s-25.7-9.8-29.5-23L288 178.3 206.7 457c-3.9 13.2-15.8 22.5-29.5 23s-26.3-7.8-31.2-20.7L2 75.2C-4.2 58.7 4.2 40.2 20.8 34z" + } + }, + "free": [ + "solid" + ] + }, + "walkie-talkie": { + "aliases": { + "unicodes": { + "secondary": [ + "10f8ef" + ] + } + }, + "changes": [ + "5.11.0", + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "communication", + "copy", + "intercom", + "over", + "portable", + "radio", + "two way radio" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f8ef", + "label": "Walkie Talkie", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M112 24c0-13.3-10.7-24-24-24S64 10.7 64 24V96H48C21.5 96 0 117.5 0 144V300.1c0 12.7 5.1 24.9 14.1 33.9l3.9 3.9c9 9 14.1 21.2 14.1 33.9V464c0 26.5 21.5 48 48 48H304c26.5 0 48-21.5 48-48V371.9c0-12.7 5.1-24.9 14.1-33.9l3.9-3.9c9-9 14.1-21.2 14.1-33.9V144c0-26.5-21.5-48-48-48H320c0-17.7-14.3-32-32-32s-32 14.3-32 32H224c0-17.7-14.3-32-32-32s-32 14.3-32 32H112V24zm0 136H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16zm0 64H272c8.8 0 16 7.2 16 16s-7.2 16-16 16H112c-8.8 0-16-7.2-16-16s7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "wallet": { + "aliases": { + "unicodes": { + "secondary": [ + "10f555" + ] + } + }, + "changes": [ + "5.0.13", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "billfold", + "cash", + "currency", + "money" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f555", + "label": "Wallet", + "voted": true, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H80c-8.8 0-16-7.2-16-16s7.2-16 16-16H448c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM416 272a32 32 0 1 1 0 64 32 32 0 1 1 0-64z" + } + }, + "free": [ + "solid" + ] + }, + "wand-magic": { + "aliases": { + "names": [ + "magic" + ], + "unicodes": { + "secondary": [ + "10f0d0" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.1.0", + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "autocomplete", + "automatic", + "mage", + "magic", + "spell", + "wand", + "witch", + "wizard" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0d0", + "label": "Wand Magic", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M14.1 463.3c-18.7-18.7-18.7-49.1 0-67.9L395.4 14.1c18.7-18.7 49.1-18.7 67.9 0l34.6 34.6c18.7 18.7 18.7 49.1 0 67.9L116.5 497.9c-18.7 18.7-49.1 18.7-67.9 0L14.1 463.3zM347.6 187.6l105-105L429.4 59.3l-105 105 23.3 23.3z" + } + }, + "free": [ + "solid" + ] + }, + "wand-magic-sparkles": { + "aliases": { + "names": [ + "magic-wand-sparkles" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.0.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "auto", + "magic", + "magic wand", + "trick", + "witch", + "wizard" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e2ca", + "label": "Wand Magic Sparkles", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824451, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M234.7 42.7L197 56.8c-3 1.1-5 4-5 7.2s2 6.1 5 7.2l37.7 14.1L248.8 123c1.1 3 4 5 7.2 5s6.1-2 7.2-5l14.1-37.7L315 71.2c3-1.1 5-4 5-7.2s-2-6.1-5-7.2L277.3 42.7 263.2 5c-1.1-3-4-5-7.2-5s-6.1 2-7.2 5L234.7 42.7zM46.1 395.4c-18.7 18.7-18.7 49.1 0 67.9l34.6 34.6c18.7 18.7 49.1 18.7 67.9 0L529.9 116.5c18.7-18.7 18.7-49.1 0-67.9L495.3 14.1c-18.7-18.7-49.1-18.7-67.9 0L46.1 395.4zM484.6 82.6l-105 105-23.3-23.3 105-105 23.3 23.3zM7.5 117.2C3 118.9 0 123.2 0 128s3 9.1 7.5 10.8L64 160l21.2 56.5c1.7 4.5 6 7.5 10.8 7.5s9.1-3 10.8-7.5L128 160l56.5-21.2c4.5-1.7 7.5-6 7.5-10.8s-3-9.1-7.5-10.8L128 96 106.8 39.5C105.1 35 100.8 32 96 32s-9.1 3-10.8 7.5L64 96 7.5 117.2zm352 256c-4.5 1.7-7.5 6-7.5 10.8s3 9.1 7.5 10.8L416 416l21.2 56.5c1.7 4.5 6 7.5 10.8 7.5s9.1-3 10.8-7.5L480 416l56.5-21.2c4.5-1.7 7.5-6 7.5-10.8s-3-9.1-7.5-10.8L480 352l-21.2-56.5c-1.7-4.5-6-7.5-10.8-7.5s-9.1 3-10.8 7.5L416 352l-56.5 21.2z" + } + }, + "free": [ + "solid" + ] + }, + "wand-sparkles": { + "aliases": { + "unicodes": { + "secondary": [ + "10f72b" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "autocomplete", + "automatic", + "fantasy", + "halloween", + "holiday", + "magic", + "weapon", + "witch", + "wizard" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f72b", + "label": "Wand Sparkles", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M464 6.1c9.5-8.5 24-8.1 33 .9l8 8c9 9 9.4 23.5 .9 33l-85.8 95.9c-2.6 2.9-4.1 6.7-4.1 10.7V176c0 8.8-7.2 16-16 16H384.2c-4.6 0-8.9 1.9-11.9 5.3L100.7 500.9C94.3 508 85.3 512 75.8 512c-8.8 0-17.3-3.5-23.5-9.8L9.7 459.7C3.5 453.4 0 445 0 436.2c0-9.5 4-18.5 11.1-24.8l111.6-99.8c3.4-3 5.3-7.4 5.3-11.9V272c0-8.8 7.2-16 16-16h34.6c3.9 0 7.7-1.5 10.7-4.1L464 6.1zM432 288c3.6 0 6.7 2.4 7.7 5.8l14.8 51.7 51.7 14.8c3.4 1 5.8 4.1 5.8 7.7s-2.4 6.7-5.8 7.7l-51.7 14.8-14.8 51.7c-1 3.4-4.1 5.8-7.7 5.8s-6.7-2.4-7.7-5.8l-14.8-51.7-51.7-14.8c-3.4-1-5.8-4.1-5.8-7.7s2.4-6.7 5.8-7.7l51.7-14.8 14.8-51.7c1-3.4 4.1-5.8 7.7-5.8zM87.7 69.8l14.8 51.7 51.7 14.8c3.4 1 5.8 4.1 5.8 7.7s-2.4 6.7-5.8 7.7l-51.7 14.8L87.7 218.2c-1 3.4-4.1 5.8-7.7 5.8s-6.7-2.4-7.7-5.8L57.5 166.5 5.8 151.7c-3.4-1-5.8-4.1-5.8-7.7s2.4-6.7 5.8-7.7l51.7-14.8L72.3 69.8c1-3.4 4.1-5.8 7.7-5.8s6.7 2.4 7.7 5.8zM208 0c3.7 0 6.9 2.5 7.8 6.1l6.8 27.3 27.3 6.8c3.6 .9 6.1 4.1 6.1 7.8s-2.5 6.9-6.1 7.8l-27.3 6.8-6.8 27.3c-.9 3.6-4.1 6.1-7.8 6.1s-6.9-2.5-7.8-6.1l-6.8-27.3-27.3-6.8c-3.6-.9-6.1-4.1-6.1-7.8s2.5-6.9 6.1-7.8l27.3-6.8 6.8-27.3c.9-3.6 4.1-6.1 7.8-6.1z" + } + }, + "free": [ + "solid" + ] + }, + "warehouse": { + "aliases": { + "unicodes": { + "secondary": [ + "10f494" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "building", + "capacity", + "garage", + "inventory", + "storage" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f494", + "label": "Warehouse", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824410, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M0 488V171.3c0-26.2 15.9-49.7 40.2-59.4L308.1 4.8c7.6-3.1 16.1-3.1 23.8 0L599.8 111.9c24.3 9.7 40.2 33.3 40.2 59.4V488c0 13.3-10.7 24-24 24H568c-13.3 0-24-10.7-24-24V224c0-17.7-14.3-32-32-32H128c-17.7 0-32 14.3-32 32V488c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24zm488 24l-336 0c-13.3 0-24-10.7-24-24V432H512l0 56c0 13.3-10.7 24-24 24zM128 400V336H512v64H128zm0-96V224H512l0 80H128z" + } + }, + "free": [ + "solid" + ] + }, + "watchman-monitoring": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e087", + "label": "Watchman Monitoring", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256,16C123.452,16,16,123.452,16,256S123.452,496,256,496,496,388.548,496,256,388.548,16,256,16ZM121.69,429.122C70.056,388.972,36.741,326.322,36.741,256a218.519,218.519,0,0,1,9.587-64.122l102.9-17.895-.121,10.967-13.943,2.013s-.144,12.5-.144,19.549a12.778,12.778,0,0,0,4.887,10.349l9.468,7.4Zm105.692-283.27,8.48-7.618s6.934-5.38-.143-9.344c-7.188-4.024-39.53-34.5-39.53-34.5-5.348-5.477-8.257-7.347-15.46,0,0,0-32.342,30.474-39.529,34.5-7.078,3.964-.144,9.344-.144,9.344l8.481,7.618-.048,4.369L75.982,131.045c39.644-56.938,105.532-94.3,180.018-94.3A218.754,218.754,0,0,1,420.934,111.77l-193.512,37.7Zm34.063,329.269-33.9-250.857,9.467-7.4a12.778,12.778,0,0,0,4.888-10.349c0-7.044-.144-19.549-.144-19.549l-13.943-2.013-.116-10.474,241.711,31.391A218.872,218.872,0,0,1,475.259,256C475.259,375.074,379.831,472.212,261.445,475.121Z" + } + }, + "free": [ + "brands" + ] + }, + "water": { + "aliases": { + "unicodes": { + "secondary": [ + "10f773" + ] + } + }, + "changes": [ + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "lake", + "liquid", + "ocean", + "sea", + "swim", + "wet" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f773", + "label": "Water", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826739, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M269.5 69.9c11.1-7.9 25.9-7.9 37 0C329 85.4 356.5 96 384 96c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 149.7 417 160 384 160c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4C42.8 92.6 61 83.5 75.3 71.6c11.1-9.5 27.3-10.1 39.2-1.7l0 0C136.7 85.2 165.1 96 192 96c27.5 0 55-10.6 77.5-26.1zm37 288C329 373.4 356.5 384 384 384c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 437.7 417 448 384 448c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 373.2 165.1 384 192 384c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0zm0-144C329 229.4 356.5 240 384 240c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 293.7 417 304 384 304c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.5 27.3-10.1 39.2-1.7l0 0C136.7 229.2 165.1 240 192 240c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + }, + "free": [ + "solid" + ] + }, + "water-ladder": { + "aliases": { + "names": [ + "ladder-water", + "swimming-pool" + ], + "unicodes": { + "secondary": [ + "10f5c5" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "ladder", + "recreation", + "swim", + "water" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5c5", + "label": "Water Ladder", + "voted": false, + "svg": { + "solid": { + "last_modified": 1660321887, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M128 127.7C128 74.9 170.9 32 223.7 32c48.3 0 89 36 95 83.9l1 8.2c2.2 17.5-10.2 33.5-27.8 35.7s-33.5-10.2-35.7-27.8l-1-8.2c-2-15.9-15.5-27.8-31.5-27.8c-17.5 0-31.7 14.2-31.7 31.7V224H384V127.7C384 74.9 426.9 32 479.7 32c48.3 0 89 36 95 83.9l1 8.2c2.2 17.5-10.2 33.5-27.8 35.7s-33.5-10.2-35.7-27.8l-1-8.2c-2-15.9-15.5-27.8-31.5-27.8c-17.5 0-31.7 14.2-31.7 31.7V361c-1.6 1-3.3 2-4.8 3.1c-18 12.4-40.1 20.3-59.2 20.3h0V288H192v96.5c-19 0-41.2-7.9-59.1-20.3c-1.6-1.1-3.2-2.2-4.9-3.1V127.7zM306.5 389.9C329 405.4 356.5 416 384 416c26.9 0 55.4-10.8 77.4-26.1l0 0c11.9-8.5 28.1-7.8 39.2 1.7c14.4 11.9 32.5 21 50.6 25.2c17.2 4 27.9 21.2 23.9 38.4s-21.2 27.9-38.4 23.9c-24.5-5.7-44.9-16.5-58.2-25C449.5 469.7 417 480 384 480c-31.9 0-60.6-9.9-80.4-18.9c-5.8-2.7-11.1-5.3-15.6-7.7c-4.5 2.4-9.7 5.1-15.6 7.7c-19.8 9-48.5 18.9-80.4 18.9c-33 0-65.5-10.3-94.5-25.8c-13.4 8.4-33.7 19.3-58.2 25c-17.2 4-34.4-6.7-38.4-23.9s6.7-34.4 23.9-38.4c18.1-4.2 36.2-13.3 50.6-25.2c11.1-9.4 27.3-10.1 39.2-1.7l0 0C136.7 405.2 165.1 416 192 416c27.5 0 55-10.6 77.5-26.1c11.1-7.9 25.9-7.9 37 0z" + } + }, + "free": [ + "solid" + ] + }, + "wave-square": { + "aliases": { + "unicodes": { + "secondary": [ + "10f83e" + ] + } + }, + "changes": [ + "5.8.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "frequency", + "pulse", + "signal" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f83e", + "label": "Wave Square", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M128 64c0-17.7 14.3-32 32-32H320c17.7 0 32 14.3 32 32V416h96V256c0-17.7 14.3-32 32-32H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H512V448c0 17.7-14.3 32-32 32H320c-17.7 0-32-14.3-32-32V96H192V256c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h96V64z" + } + }, + "free": [ + "solid" + ] + }, + "waze": { + "changes": [ + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f83f", + "label": "Waze", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M502.17 201.67C516.69 287.53 471.23 369.59 389 409.8c13 34.1-12.4 70.2-48.32 70.2a51.68 51.68 0 0 1-51.57-49c-6.44.19-64.2 0-76.33-.64A51.69 51.69 0 0 1 159 479.92c-33.86-1.36-57.95-34.84-47-67.92-37.21-13.11-72.54-34.87-99.62-70.8-13-17.28-.48-41.8 20.84-41.8 46.31 0 32.22-54.17 43.15-110.26C94.8 95.2 193.12 32 288.09 32c102.48 0 197.15 70.67 214.08 169.67zM373.51 388.28c42-19.18 81.33-56.71 96.29-102.14 40.48-123.09-64.15-228-181.71-228-83.45 0-170.32 55.42-186.07 136-9.53 48.91 5 131.35-68.75 131.35C58.21 358.6 91.6 378.11 127 389.54c24.66-21.8 63.87-15.47 79.83 14.34 14.22 1 79.19 1.18 87.9.82a51.69 51.69 0 0 1 78.78-16.42zM205.12 187.13c0-34.74 50.84-34.75 50.84 0s-50.84 34.74-50.84 0zm116.57 0c0-34.74 50.86-34.75 50.86 0s-50.86 34.75-50.86 0zm-122.61 70.69c-3.44-16.94 22.18-22.18 25.62-5.21l.06.28c4.14 21.42 29.85 44 64.12 43.07 35.68-.94 59.25-22.21 64.11-42.77 4.46-16.05 28.6-10.36 25.47 6-5.23 22.18-31.21 62-91.46 62.9-42.55 0-80.88-27.84-87.9-64.25z" + } + }, + "free": [ + "brands" + ] + }, + "weebly": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5cc", + "label": "Weebly", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M425.09 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143.03c0 28.96 4.18 33.27 77.17 233.48 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.65 77.5-205.58 77.5-227.2.63-48.32-36.01-83.47-86.92-83.47zm26.34 114.81l-65.57 176.44c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.42h-.95L216.08 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.55c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.82h.95l44.66-136.79c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.79h.95l44.03-139.82c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24z" + } + }, + "free": [ + "brands" + ] + }, + "weibo": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f18a", + "label": "Weibo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z" + } + }, + "free": [ + "brands" + ] + }, + "weight-hanging": { + "aliases": { + "unicodes": { + "secondary": [ + "10f5cd" + ] + } + }, + "changes": [ + "5.1.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "anvil", + "heavy", + "measurement" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5cd", + "label": "Weight Hanging", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824497, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M224 96a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm122.5 32c3.5-10 5.5-20.8 5.5-32c0-53-43-96-96-96s-96 43-96 96c0 11.2 1.9 22 5.5 32H120c-22 0-41.2 15-46.6 36.4l-72 288c-3.6 14.3-.4 29.5 8.7 41.2S33.2 512 48 512H464c14.8 0 28.7-6.8 37.8-18.5s12.3-26.8 8.7-41.2l-72-288C433.2 143 414 128 392 128H346.5z" + } + }, + "free": [ + "solid" + ] + }, + "weight-scale": { + "aliases": { + "names": [ + "weight" + ], + "unicodes": { + "secondary": [ + "10f496" + ] + } + }, + "changes": [ + "5.0.7", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "health", + "measurement", + "scale", + "weight" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f496", + "label": "Weight Scale", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M128 176a128 128 0 1 1 256 0 128 128 0 1 1 -256 0zM391.8 64C359.5 24.9 310.7 0 256 0S152.5 24.9 120.2 64H64C28.7 64 0 92.7 0 128V448c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H391.8zM296 224c0-10.6-4.1-20.2-10.9-27.4l33.6-78.3c3.5-8.1-.3-17.5-8.4-21s-17.5 .3-21 8.4L255.7 184c-22 .1-39.7 18-39.7 40c0 22.1 17.9 40 40 40s40-17.9 40-40z" + } + }, + "free": [ + "solid" + ] + }, + "weixin": { + "changes": [ + "4.1.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1d7", + "label": "Weixin (WeChat)", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M385.2 167.6c6.4 0 12.6.3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2.1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3.1 10-9.9 19.6-24.4 19.6z" + } + }, + "free": [ + "brands" + ] + }, + "whatsapp": { + "changes": [ + "4.3.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f232", + "label": "What's App", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014465, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z" + } + }, + "free": [ + "brands" + ] + }, + "wheat-awn": { + "aliases": { + "names": [ + "wheat-alt" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "agriculture", + "autumn", + "fall", + "farming", + "grain" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e2cd", + "label": "Wheat Awn", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M505 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L383 95c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l88-88zM305.5 27.3c-6.2-6.2-16.4-6.2-22.6 0L271.5 38.6c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8l-11.3-11.3c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8L101.8 231c-6.2-6.2-16.4-6.2-22.6 0L67.9 242.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4L9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l68.9-68.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0L486.5 231c6.2-6.2 6.2-16.4 0-22.6L475.2 197c-5.2-5.2-10.6-9.8-16.4-13.9L505 137c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-59.4 59.4c-20.6-4.4-42-3.7-62.3 2.1c6.1-21.3 6.6-43.8 1.4-65.3L409 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L329.1 52.9c-3.7-5-7.8-9.8-12.4-14.3L305.5 27.3z" + } + }, + "free": [ + "solid" + ] + }, + "wheat-awn-circle-exclamation": { + "changes": [ + "6.1.0", + "6.1.2", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "affected", + "famine", + "food", + "gluten", + "hunger", + "starve", + "straw" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e598", + "label": "Wheat Awn Circle Exclamation", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M505 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L383 95c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l88-88zM305.5 27.3c-6.2-6.2-16.4-6.2-22.6 0L271.5 38.6c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8l-11.3-11.3c-6.2-6.2-16.4-6.2-22.6 0l-11.3 11.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4-30.5 30.5c-3.4-27.3-15.5-53.8-36.5-74.8L101.8 231c-6.2-6.2-16.4-6.2-22.6 0L67.9 242.3c-37.5 37.5-37.5 98.3 0 135.8l10.4 10.4L9.4 457.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l68.9-68.9 12.2 12.2c37.5 37.5 98.3 37.5 135.8 0l11.3-11.3c6.2-6.2 6.2-16.4 0-22.6l-11.3-11.3c-21.8-21.8-49.6-34.1-78.1-36.9l31.9-31.9 12.2 12.2c22.5 22.5 53.3 31.5 82.4 27c0-1 0-2.1 0-3.1c0-33.1 9.1-64.1 25-90.6c-15.5-8.7-32.5-13.8-49.8-15.5l31.9-31.9 12.2 12.2c6 6 12.6 11.1 19.7 15.2c27.5-34 67.3-57.5 112.6-63.8c-4.1-3.8-8.4-7.3-12.9-10.5L505 137c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-59.4 59.4c-20.6-4.4-42-3.7-62.3 2.1c6.1-21.3 6.6-43.8 1.4-65.3L409 41c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0L329.1 52.9c-3.7-5-7.8-9.8-12.4-14.3L305.5 27.3zM496 512a144 144 0 1 0 0-288 144 144 0 1 0 0 288zm0-96a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm0-144c8.8 0 16 7.2 16 16v80c0 8.8-7.2 16-16 16s-16-7.2-16-16V288c0-8.8 7.2-16 16-16z" + } + }, + "free": [ + "solid" + ] + }, + "wheelchair": { + "aliases": { + "unicodes": { + "secondary": [ + "10f193" + ] + } + }, + "changes": [ + "4.0.0", + "5.0.0", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "users-people" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f193", + "label": "Wheelchair", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M192 96a48 48 0 1 0 0-96 48 48 0 1 0 0 96zM120.5 247.2c12.4-4.7 18.7-18.5 14-30.9s-18.5-18.7-30.9-14C43.1 225.1 0 283.5 0 352c0 88.4 71.6 160 160 160c61.2 0 114.3-34.3 141.2-84.7c6.2-11.7 1.8-26.2-9.9-32.5s-26.2-1.8-32.5 9.9C240 440 202.8 464 160 464C98.1 464 48 413.9 48 352c0-47.9 30.1-88.8 72.5-104.8zM259.8 176l-1.9-9.7c-4.5-22.3-24-38.3-46.8-38.3c-30.1 0-52.7 27.5-46.8 57l23.1 115.5c6 29.9 32.2 51.4 62.8 51.4h5.1c.4 0 .8 0 1.3 0h94.1c6.7 0 12.6 4.1 15 10.4L402 459.2c6 16.1 23.8 24.6 40.1 19.1l48-16c16.8-5.6 25.8-23.7 20.2-40.5s-23.7-25.8-40.5-20.2l-18.7 6.2-25.5-68c-11.7-31.2-41.6-51.9-74.9-51.9H282.2l-9.6-48H336c17.7 0 32-14.3 32-32s-14.3-32-32-32H259.8z" + } + }, + "free": [ + "solid" + ] + }, + "wheelchair-move": { + "aliases": { + "names": [ + "wheelchair-alt" + ] + }, + "changes": [ + "6.0.0-beta1", + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "access", + "handicap", + "impairment", + "physical", + "wheelchair symbol" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e2ce", + "label": "Wheelchair Move", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824536, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M320 48a48 48 0 1 1 96 0 48 48 0 1 1 -96 0zM204.5 121.3c-5.4-2.5-11.7-1.9-16.4 1.7l-40.9 30.7c-14.1 10.6-34.2 7.7-44.8-6.4s-7.7-34.2 6.4-44.8l40.9-30.7c23.7-17.8 55.3-21 82.1-8.4l90.4 42.5c29.1 13.7 36.8 51.6 15.2 75.5L299.1 224h97.4c30.3 0 53 27.7 47.1 57.4L415.4 422.3c-3.5 17.3-20.3 28.6-37.7 25.1s-28.6-20.3-25.1-37.7L377 288H306.7c8.6 19.6 13.3 41.2 13.3 64c0 88.4-71.6 160-160 160S0 440.4 0 352s71.6-160 160-160c11.1 0 22 1.1 32.4 3.3l54.2-54.2-42.1-19.8zM160 448a96 96 0 1 0 0-192 96 96 0 1 0 0 192z" + } + }, + "free": [ + "solid" + ] + }, + "whiskey-glass": { + "aliases": { + "names": [ + "glass-whiskey" + ], + "unicodes": { + "composite": [ + "1f943" + ], + "secondary": [ + "10f7a0" + ] + } + }, + "changes": [ + "5.6.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "bourbon", + "drink", + "glass", + "liquor", + "neat", + "rye", + "scotch", + "shot", + "tumbler", + "tumbler glass", + "whisky" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f7a0", + "label": "Whiskey Glass", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 32c-9.3 0-18.1 4-24.2 11.1S-1 59.4 .3 68.6l50 342.9c5.7 39.3 39.4 68.5 79.2 68.5h253c39.7 0 73.4-29.1 79.2-68.5l50-342.9c1.3-9.2-1.4-18.5-7.5-25.5S489.3 32 480 32H32zM87.7 224L69 96H443L424.3 224H87.7z" + } + }, + "free": [ + "solid" + ] + }, + "whmcs": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f40d", + "label": "WHMCS", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014481, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6.3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1.5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2.2 6.9.1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z" + } + }, + "free": [ + "brands" + ] + }, + "wifi": { + "aliases": { + "names": [ + "wifi-3", + "wifi-strong" + ], + "unicodes": { + "secondary": [ + "10f1eb" + ] + } + }, + "changes": [ + "4.2.0", + "5.0.0", + "5.3.0", + "5.10.1", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "connection", + "hotspot", + "internet", + "network", + "wireless" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f1eb", + "label": "Wifi", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824512, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M54.2 202.9C123.2 136.7 216.8 96 320 96s196.8 40.7 265.8 106.9c12.8 12.2 33 11.8 45.2-.9s11.8-33-.9-45.2C549.7 79.5 440.4 32 320 32S90.3 79.5 9.8 156.7C-2.9 169-3.3 189.2 8.9 202s32.5 13.2 45.2 .9zM320 256c56.8 0 108.6 21.1 148.2 56c13.3 11.7 33.5 10.4 45.2-2.8s10.4-33.5-2.8-45.2C459.8 219.2 393 192 320 192s-139.8 27.2-190.5 72c-13.3 11.7-14.5 31.9-2.8 45.2s31.9 14.5 45.2 2.8c39.5-34.9 91.3-56 148.2-56zm64 160a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z" + } + }, + "free": [ + "solid" + ] + }, + "wikipedia-w": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f266", + "label": "Wikipedia W", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z" + } + }, + "free": [ + "brands" + ] + }, + "wind": { + "aliases": { + "unicodes": { + "secondary": [ + "10f72e" + ] + } + }, + "changes": [ + "5.4.0", + "5.5.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "air", + "blow", + "breeze", + "fall", + "seasonal", + "weather" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f72e", + "label": "Wind", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669826738, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M288 32c0 17.7 14.3 32 32 32h32c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H352c53 0 96-43 96-96s-43-96-96-96H320c-17.7 0-32 14.3-32 32zm64 352c0 17.7 14.3 32 32 32h32c53 0 96-43 96-96s-43-96-96-96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H384c-17.7 0-32 14.3-32 32zM128 512h32c53 0 96-43 96-96s-43-96-96-96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H160c17.7 0 32 14.3 32 32s-14.3 32-32 32H128c-17.7 0-32 14.3-32 32s14.3 32 32 32z" + } + }, + "free": [ + "solid" + ] + }, + "window-maximize": { + "aliases": { + "unicodes": { + "composite": [ + "1f5d6" + ], + "secondary": [ + "10f2d0" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Maximize", + "browser", + "computer", + "development", + "expand" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2d0", + "label": "Window Maximize", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM96 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32s14.3-32 32-32z" + }, + "regular": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M.3 89.5C.1 91.6 0 93.8 0 96V224 416c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64V224 96c0-35.3-28.7-64-64-64H64c-2.2 0-4.4 .1-6.5 .3c-9.2 .9-17.8 3.8-25.5 8.2C21.8 46.5 13.4 55.1 7.7 65.5c-3.9 7.3-6.5 15.4-7.4 24zM48 224H464l0 192c0 8.8-7.2 16-16 16L64 432c-8.8 0-16-7.2-16-16l0-192z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "window-minimize": { + "aliases": { + "unicodes": { + "composite": [ + "1f5d5" + ], + "secondary": [ + "10f2d1" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "5.10.1", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Minimize", + "browser", + "collapse", + "computer", + "development" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2d1", + "label": "Window Minimize", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" + }, + "regular": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M24 432c-13.3 0-24 10.7-24 24s10.7 24 24 24H488c13.3 0 24-10.7 24-24s-10.7-24-24-24H24z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "window-restore": { + "aliases": { + "unicodes": { + "secondary": [ + "10f2d2" + ] + } + }, + "changes": [ + "4.7.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "browser", + "computer", + "development" + ] + }, + "styles": [ + "solid", + "regular" + ], + "unicode": "f2d2", + "label": "Window Restore", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M432 64H208c-8.8 0-16 7.2-16 16V96H128V80c0-44.2 35.8-80 80-80H432c44.2 0 80 35.8 80 80V304c0 44.2-35.8 80-80 80H416V320h16c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM0 192c0-35.3 28.7-64 64-64H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192zm64 32c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H96c-17.7 0-32 14.3-32 32z" + }, + "regular": { + "last_modified": 1669824371, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M432 48H208c-17.7 0-32 14.3-32 32V96H128V80c0-44.2 35.8-80 80-80H432c44.2 0 80 35.8 80 80V304c0 44.2-35.8 80-80 80H416V336h16c17.7 0 32-14.3 32-32V80c0-17.7-14.3-32-32-32zM48 448c0 8.8 7.2 16 16 16H320c8.8 0 16-7.2 16-16V256H48V448zM64 128H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192c0-35.3 28.7-64 64-64z" + } + }, + "free": [ + "regular", + "solid" + ] + }, + "windows": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "microsoft", + "operating system", + "os" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f17a", + "label": "Windows", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z" + } + }, + "free": [ + "brands" + ] + }, + "wine-bottle": { + "aliases": { + "unicodes": { + "secondary": [ + "10f72f" + ] + } + }, + "changes": [ + "5.4.0", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "beverage", + "cabernet", + "drink", + "glass", + "grapes", + "merlot", + "sauvignon" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f72f", + "label": "Wine Bottle", + "voted": false, + "svg": { + "solid": { + "last_modified": 1670947858, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M393.4 9.4c12.5-12.5 32.8-12.5 45.3 0l64 64c12.5 12.5 12.5 32.8 0 45.3c-11.8 11.8-30.7 12.5-43.2 1.9l-9.5 9.5-48.8 48.8c-9.2 9.2-11.5 22.9-8.6 35.6c9.4 40.9-1.9 85.6-33.8 117.5L197.3 493.3c-25 25-65.5 25-90.5 0l-88-88c-25-25-25-65.5 0-90.5L180.2 153.3c31.9-31.9 76.6-43.1 117.5-33.8c12.6 2.9 26.4 .5 35.5-8.6l48.8-48.8 9.5-9.5c-10.6-12.6-10-31.4 1.9-43.2zM99.3 347.3l65.4 65.4c6.2 6.2 16.4 6.2 22.6 0l97.4-97.4c6.2-6.2 6.2-16.4 0-22.6l-65.4-65.4c-6.2-6.2-16.4-6.2-22.6 0L99.3 324.7c-6.2 6.2-6.2 16.4 0 22.6z" + } + }, + "free": [ + "solid" + ] + }, + "wine-glass": { + "aliases": { + "unicodes": { + "composite": [ + "1f377" + ], + "secondary": [ + "10f4e3" + ] + } + }, + "changes": [ + "5.0.9", + "5.1.0", + "5.10.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "bar", + "beverage", + "cabernet", + "drink", + "glass", + "grapes", + "merlot", + "sauvignon", + "wine", + "wine glass" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f4e3", + "label": "Wine Glass", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M47 0C30.4 0 16.5 12.8 15.1 29.3L1.1 197.8c-6 72 42.5 135.2 109.9 150.6V448H63c-17.7 0-32 14.3-32 32s14.3 32 32 32h80 80c17.7 0 32-14.3 32-32s-14.3-32-32-32H175V348.4c67.4-15.4 115.9-78.6 109.9-150.6l-14-168.4C269.5 12.8 255.6 0 239 0H47zM71.1 128l5.3-64H209.6l5.3 64H71.1z" + } + }, + "free": [ + "solid" + ] + }, + "wine-glass-empty": { + "aliases": { + "names": [ + "wine-glass-alt" + ], + "unicodes": { + "secondary": [ + "10f5ce" + ] + } + }, + "changes": [ + "5.1.0", + "5.10.1", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "alcohol", + "beverage", + "cabernet", + "drink", + "grapes", + "merlot", + "sauvignon" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f5ce", + "label": "Wine Glass Empty", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669837907, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M47 0C30.4 0 16.5 12.8 15.1 29.3L1.1 197.8c-6 72 42.5 135.2 109.9 150.6V448H63c-17.7 0-32 14.3-32 32s14.3 32 32 32h80 80c17.7 0 32-14.3 32-32s-14.3-32-32-32H175V348.4c67.4-15.4 115.9-78.6 109.9-150.6l-14-168.4C269.5 12.8 255.6 0 239 0H47zM64.9 203.1L76.4 64H209.6l11.6 139.1C225 248.8 188.9 288 143 288s-82-39.2-78.1-84.9z" + } + }, + "free": [ + "solid" + ] + }, + "wirsindhandwerk": { + "aliases": { + "names": [ + "wsh" + ] + }, + "changes": [ + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e2d0", + "label": "wirsindhandwerk", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M50.77161,479.81213h83.36071V367.84741l-83.36071,47.009Zm329.04675,0h82.35022V414.85645l-82.35022-47.009Zm.00568-448V251.568L256.1759,179.1861,134.50378,251.568V31.81213H50.77161V392.60565L256.1759,270.31909,462.16858,392.60565V31.81213Z" + } + }, + "free": [ + "brands" + ] + }, + "wix": { + "changes": [ + "5.1.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f5cf", + "label": "Wix", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014463, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M393.38 131.69c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63zm-115.8 35.54l-34.24 132.66-28.48-108.57c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.89 55.28 167.23C49.73 140.51 23.86 128.96 0 131.96l65.57 247.93s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.41 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.93c-24.42-3.07-49.82 8.93-55.3 35.27zm115.78 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.07s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.41l-.02.01v-8.98zm163.44 84.08L640 132.78s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47.73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.74-82.97 123.36s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21L556.8 256.52z" + } + }, + "free": [ + "brands" + ] + }, + "wizards-of-the-coast": { + "changes": [ + "5.4.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Dungeons & Dragons", + "d&d", + "dnd", + "fantasy", + "game", + "gaming", + "tabletop" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f730", + "label": "Wizards of the Coast", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014478, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M219.19 345.69c-1.9 1.38-11.07 8.44-.26 23.57 4.64 6.42 14.11 12.79 21.73 6.55 6.5-4.88 7.35-12.92.26-23.04-5.47-7.76-14.28-12.88-21.73-7.08zm336.75 75.94c-.34 1.7-.55 1.67.79 0 2.09-4.19 4.19-10.21 4.98-19.9 3.14-38.49-40.33-71.49-101.34-78.03-54.73-6.02-124.38 9.17-188.8 60.49l-.26 1.57c2.62 4.98 4.98 10.74 3.4 21.21l.79.26c63.89-58.4 131.19-77.25 184.35-73.85 58.4 3.67 100.03 34.04 100.03 68.08-.01 9.96-2.63 15.72-3.94 20.17zM392.28 240.42c.79 7.07 4.19 10.21 9.17 10.47 5.5.26 9.43-2.62 10.47-6.55.79-3.4 2.09-29.85 2.09-29.85s-11.26 6.55-14.93 10.47c-3.66 3.68-7.33 8.39-6.8 15.46zm-50.02-151.1C137.75 89.32 13.1 226.8.79 241.2c-1.05.52-1.31.79.79 1.31 60.49 16.5 155.81 81.18 196.13 202.16l1.05.26c55.25-69.92 140.88-128.05 236.99-128.05 80.92 0 130.15 42.16 130.15 80.39 0 18.33-6.55 33.52-22.26 46.35 0 .96-.2.79.79.79 14.66-10.74 27.5-28.8 27.5-48.18 0-22.78-12.05-38.23-12.05-38.23 7.07 7.07 10.74 16.24 10.74 16.24 5.76-40.85 26.97-62.32 26.97-62.32-2.36-9.69-6.81-17.81-6.81-17.81 7.59 8.12 14.4 27.5 14.4 41.37 0 10.47-3.4 22.78-12.57 31.95l.26.52c8.12-4.98 16.5-16.76 16.5-37.97 0-15.71-4.71-25.92-4.71-25.92 5.76-5.24 11.26-9.17 15.97-11.78.79 3.4 2.09 9.69 2.36 14.93 0 1.05.79 1.83 1.05 0 .79-5.76-.26-16.24-.26-16.5 6.02-3.14 9.69-4.45 9.69-4.45C617.74 176 489.43 89.32 342.26 89.32zm-99.24 289.62c-11.06 8.99-24.2 4.08-30.64-4.19-7.45-9.58-6.76-24.09 4.19-32.47 14.85-11.35 27.08-.49 31.16 5.5.28.39 12.13 16.57-4.71 31.16zm2.09-136.43l9.43-17.81 11.78 70.96-12.57 6.02-24.62-28.8 14.14-26.71 3.67 4.45-1.83-8.11zm18.59 117.58l-.26-.26c2.05-4.1-2.5-6.61-17.54-31.69-1.31-2.36-3.14-2.88-4.45-2.62l-.26-.52c7.86-5.76 15.45-10.21 25.4-15.71l.52.26c1.31 1.83 2.09 2.88 3.4 4.71l-.26.52c-1.05-.26-2.36-.79-5.24.26-2.09.79-7.86 3.67-12.31 7.59v1.31c1.57 2.36 3.93 6.55 5.76 9.69h.26c10.05-6.28 7.56-4.55 11.52-7.86h.26c.52 1.83.52 1.83 1.83 5.5l-.26.26c-3.06.61-4.65.34-11.52 5.5v.26c9.46 17.02 11.01 16.75 12.57 15.97l.26.26c-2.34 1.59-6.27 4.21-9.68 6.57zm55.26-32.47c-3.14 1.57-6.02 2.88-9.95 4.98l-.26-.26c1.29-2.59 1.16-2.71-11.78-32.47l-.26-.26c-.15 0-8.9 3.65-9.95 7.33h-.52l-1.05-5.76.26-.52c7.29-4.56 25.53-11.64 27.76-12.57l.52.26 3.14 4.98-.26.52c-3.53-1.76-7.35.76-12.31 2.62v.26c12.31 32.01 12.67 30.64 14.66 30.64v.25zm44.77-16.5c-4.19 1.05-5.24 1.31-9.69 2.88l-.26-.26.52-4.45c-1.05-3.4-3.14-11.52-3.67-13.62l-.26-.26c-3.4.79-8.9 2.62-12.83 3.93l-.26.26c.79 2.62 3.14 9.95 4.19 13.88.79 2.36 1.83 2.88 2.88 3.14v.52c-3.67 1.05-7.07 2.62-10.21 3.93l-.26-.26c1.05-1.31 1.05-2.88.26-4.98-1.05-3.14-8.12-23.83-9.17-27.23-.52-1.83-1.57-3.14-2.62-3.14v-.52c3.14-1.05 6.02-2.09 10.74-3.4l.26.26-.26 4.71c1.31 3.93 2.36 7.59 3.14 9.69h.26c3.93-1.31 9.43-2.88 12.83-3.93l.26-.26-2.62-9.43c-.52-1.83-1.05-3.4-2.62-3.93v-.26c4.45-1.05 7.33-1.83 10.74-2.36l.26.26c-1.05 1.31-1.05 2.88-.52 4.45 1.57 6.28 4.71 20.43 6.28 26.45.54 2.62 1.85 3.41 2.63 3.93zm32.21-6.81l-.26.26c-4.71.52-14.14 2.36-22.52 4.19l-.26-.26.79-4.19c-1.57-7.86-3.4-18.59-4.98-26.19-.26-1.83-.79-2.88-2.62-3.67l.79-.52c9.17-1.57 20.16-2.36 24.88-2.62l.26.26c.52 2.36.79 3.14 1.57 5.5l-.26.26c-1.14-1.14-3.34-3.2-16.24-.79l-.26.26c.26 1.57 1.05 6.55 1.57 9.95l.26.26c9.52-1.68 4.76-.06 10.74-2.36h.26c0 1.57-.26 1.83-.26 5.24h-.26c-4.81-1.03-2.15-.9-10.21 0l-.26.26c.26 2.09 1.57 9.43 2.09 12.57l.26.26c1.15.38 14.21-.65 16.24-4.71h.26c-.53 2.38-1.05 4.21-1.58 6.04zm10.74-44.51c-4.45 2.36-8.12 2.88-11 2.88-.25.02-11.41 1.09-17.54-9.95-6.74-10.79-.98-25.2 5.5-31.69 8.8-8.12 23.35-10.1 28.54-17.02 8.03-10.33-13.04-22.31-29.59-5.76l-2.62-2.88 5.24-16.24c25.59-1.57 45.2-3.04 50.02 16.24.79 3.14 0 9.43-.26 12.05 0 2.62-1.83 18.85-2.09 23.04-.52 4.19-.79 18.33-.79 20.69.26 2.36.52 4.19 1.57 5.5 1.57 1.83 5.76 1.83 5.76 1.83l-.79 4.71c-11.82-1.07-10.28-.59-20.43-1.05-3.22-5.15-2.23-3.28-4.19-7.86 0 .01-4.19 3.94-7.33 5.51zm37.18 21.21c-6.35-10.58-19.82-7.16-21.73 5.5-2.63 17.08 14.3 19.79 20.69 10.21l.26.26c-.52 1.83-1.83 6.02-1.83 6.28l-.52.52c-10.3 6.87-28.5-2.5-25.66-18.59 1.94-10.87 14.44-18.93 28.8-9.95l.26.52c0 1.06-.27 3.41-.27 5.25zm5.77-87.73v-6.55c.69 0 19.65 3.28 27.76 7.33l-1.57 17.54s10.21-9.43 15.45-10.74c5.24-1.57 14.93 7.33 14.93 7.33l-11.26 11.26c-12.07-6.35-19.59-.08-20.69.79-5.29 38.72-8.6 42.17 4.45 46.09l-.52 4.71c-17.55-4.29-18.53-4.5-36.92-7.33l.79-4.71c7.25 0 7.48-5.32 7.59-6.81 0 0 4.98-53.16 4.98-55.25-.02-2.87-4.99-3.66-4.99-3.66zm10.99 114.44c-8.12-2.09-14.14-11-10.74-20.69 3.14-9.43 12.31-12.31 18.85-10.21 9.17 2.62 12.83 11.78 10.74 19.38-2.61 8.9-9.42 13.87-18.85 11.52zm42.16 9.69c-2.36-.52-7.07-2.36-8.64-2.88v-.26l1.57-1.83c.59-8.24.59-7.27.26-7.59-4.82-1.81-6.66-2.36-7.07-2.36-1.31 1.83-2.88 4.45-3.67 5.5l-.79 3.4v.26c-1.31-.26-3.93-1.31-6.02-1.57v-.26l2.62-1.83c3.4-4.71 9.95-14.14 13.88-20.16v-2.09l.52-.26c2.09.79 5.5 2.09 7.59 2.88.48.48.18-1.87-1.05 25.14-.24 1.81.02 2.6.8 3.91zm-4.71-89.82c11.25-18.27 30.76-16.19 34.04-3.4L539.7 198c2.34-6.25-2.82-9.9-4.45-11.26l1.83-3.67c12.22 10.37 16.38 13.97 22.52 20.43-25.91 73.07-30.76 80.81-24.62 84.32l-1.83 4.45c-6.37-3.35-8.9-4.42-17.81-8.64l2.09-6.81c-.26-.26-3.93 3.93-9.69 3.67-19.06-1.3-22.89-31.75-9.67-52.9zm29.33 79.34c0-5.71-6.34-7.89-7.86-5.24-1.31 2.09 1.05 4.98 2.88 8.38 1.57 2.62 2.62 6.28 1.05 9.43-2.64 6.34-12.4 5.31-15.45-.79 0-.7-.27.09 1.83-4.71l.79-.26c-.57 5.66 6.06 9.61 8.38 4.98 1.05-2.09-.52-5.5-2.09-8.38-1.57-2.62-3.67-6.28-1.83-9.69 2.72-5.06 11.25-4.47 14.66 2.36v.52l-2.36 3.4zm21.21 13.36c-1.96-3.27-.91-2.14-4.45-4.71h-.26c-2.36 4.19-5.76 10.47-8.64 16.24-1.31 2.36-1.05 3.4-.79 3.93l-.26.26-5.76-4.45.26-.26 2.09-1.31c3.14-5.76 6.55-12.05 9.17-17.02v-.26c-2.64-1.98-1.22-1.51-6.02-1.83v-.26l3.14-3.4h.26c3.67 2.36 9.95 6.81 12.31 8.9l.26.26-1.31 3.91zm27.23-44.26l-2.88-2.88c.79-2.36 1.83-4.98 2.09-7.59.75-9.74-11.52-11.84-11.52-4.98 0 4.98 7.86 19.38 7.86 27.76 0 10.21-5.76 15.71-13.88 16.5-8.38.79-20.16-10.47-20.16-10.47l4.98-14.4 2.88 2.09c-2.97 17.8 17.68 20.37 13.35 5.24-1.06-4.02-18.75-34.2 2.09-38.23 13.62-2.36 23.04 16.5 23.04 16.5l-7.85 10.46zm35.62-10.21c-11-30.38-60.49-127.53-191.95-129.62-53.42-1.05-94.27 15.45-132.76 37.97l85.63-9.17-91.39 20.69 25.14 19.64-3.93-16.5c7.5-1.71 39.15-8.45 66.77-8.9l-22.26 80.39c13.61-.7 18.97-8.98 19.64-22.78l4.98-1.05.26 26.71c-22.46 3.21-37.3 6.69-49.49 9.95l13.09-43.21-61.54-36.66 2.36 8.12 10.21 4.98c6.28 18.59 19.38 56.56 20.43 58.66 1.95 4.28 3.16 5.78 12.05 4.45l1.05 4.98c-16.08 4.86-23.66 7.61-39.02 14.4l-2.36-4.71c4.4-2.94 8.73-3.94 5.5-12.83-23.7-62.5-21.48-58.14-22.78-59.44l2.36-4.45 33.52 67.3c-3.84-11.87 1.68 1.69-32.99-78.82l-41.9 88.51 4.71-13.88-35.88-42.16 27.76 93.48-11.78 8.38C95 228.58 101.05 231.87 93.23 231.52c-5.5-.26-13.62 5.5-13.62 5.5L74.63 231c30.56-23.53 31.62-24.33 58.4-42.68l4.19 7.07s-5.76 4.19-7.86 7.07c-5.9 9.28 1.67 13.28 61.8 75.68l-18.85-58.92 39.8-10.21 25.66 30.64 4.45-12.31-4.98-24.62 13.09-3.4.52 3.14 3.67-10.47-94.27 29.33 11.26-4.98-13.62-42.42 17.28-9.17 30.11 36.14 28.54-13.09c-1.41-7.47-2.47-14.5-4.71-19.64l17.28 13.88 4.71-2.09-59.18-42.68 23.08 11.5c18.98-6.07 25.23-7.47 32.21-9.69l2.62 11c-12.55 12.55 1.43 16.82 6.55 19.38l-13.62-61.01 12.05 28.28c4.19-1.31 7.33-2.09 7.33-2.09l2.62 8.64s-3.14 1.05-6.28 2.09l8.9 20.95 33.78-65.73-20.69 61.01c42.42-24.09 81.44-36.66 131.98-35.88 67.04 1.05 167.33 40.85 199.8 139.83.78 2.1-.01 2.63-.79.27zM203.48 152.43s1.83-.52 4.19-1.31l9.43 7.59c-.4 0-3.44-.25-11.26 2.36l-2.36-8.64zm143.76 38.5c-1.57-.6-26.46-4.81-33.26 20.69l21.73 17.02 11.53-37.71zM318.43 67.07c-58.4 0-106.05 12.05-114.96 14.4v.79c8.38 2.09 14.4 4.19 21.21 11.78l1.57.26c6.55-1.83 48.97-13.88 110.24-13.88 180.16 0 301.67 116.79 301.67 223.37v9.95c0 1.31.79 2.62 1.05.52.52-2.09.79-8.64.79-19.64.26-83.79-96.63-227.55-321.57-227.55zm211.06 169.68c1.31-5.76 0-12.31-7.33-13.09-9.62-1.13-16.14 23.79-17.02 33.52-.79 5.5-1.31 14.93 6.02 14.93 4.68-.01 9.72-.91 18.33-35.36zm-61.53 42.95c-2.62-.79-9.43-.79-12.57 10.47-1.83 6.81.52 13.35 6.02 14.66 3.67 1.05 8.9.52 11.78-10.74 2.62-9.94-1.83-13.61-5.23-14.39zM491 300.65c1.83.52 3.14 1.05 5.76 1.83 0-1.83.52-8.38.79-12.05-1.05 1.31-5.5 8.12-6.55 9.95v.27z" + } + }, + "free": [ + "brands" + ] + }, + "wodu": { + "changes": [ + "5.15.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "e088", + "label": "Wodu", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M178.414 339.706H141.1L112.166 223.475h-.478L83.228 339.706H45.2L0 168.946H37.548L64.574 285.177h.478L94.707 168.946h35.157l29.178 117.667h.479L187.5 168.946h36.831zM271.4 212.713c38.984 0 64.1 25.828 64.1 65.291 0 39.222-25.111 65.05-64.1 65.05-38.743 0-63.855-25.828-63.855-65.05C207.547 238.541 232.659 212.713 271.4 212.713zm0 104.753c23.2 0 30.133-19.852 30.133-39.462 0-19.852-6.934-39.7-30.133-39.7-27.7 0-29.894 19.85-29.894 39.7C241.508 297.614 248.443 317.466 271.4 317.466zM435.084 323.922h-.478c-7.893 13.392-21.765 19.132-37.548 19.132-37.31 0-55.485-32.045-55.485-66.246 0-33.243 18.415-64.095 54.767-64.095 14.589 0 28.938 6.218 36.831 18.416h.24V168.946h33.96v170.76H435.084zM405.428 238.3c-22.24 0-29.894 19.134-29.894 39.463 0 19.371 8.848 39.7 29.894 39.7 22.482 0 29.178-19.613 29.178-39.94C434.606 257.436 427.432 238.3 405.428 238.3zM592.96 339.706H560.673V322.487h-.718c-8.609 13.87-23.436 20.567-37.786 20.567-36.113 0-45.2-20.328-45.2-50.941V216.061h33.959V285.9c0 20.329 5.979 30.372 21.765 30.372 18.415 0 26.306-10.283 26.306-35.393V216.061H592.96zM602.453 302.876H640v36.83H602.453z" + } + }, + "free": [ + "brands" + ] + }, + "wolf-pack-battalion": { + "changes": [ + "5.0.12", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f514", + "label": "Wolf Pack Battalion", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M267.73 471.53l10.56 15.84 5.28-12.32 5.28 7V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.11-8.88-23.61-12-49.43-2.64-80.05C421 189 447 196.21 456.43 239.73l-30.35 8.36c11.15 23 17 46.76 13.2 72.14L412 313.18l-6.16 33.43-18.47-7-8.8 33.39-19.35-7 26.39 21.11 8.8-28.15L419 364.2l7-35.63 26.39 14.52c.25-20 7-58.06-8.8-84.45l26.39 5.28c4-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 2-19.87 17.45-42.62 43.11-49.7-44 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.39 22.87-89.65 65.1-93.2 147.79l-58 38.71-3.52 93.25L369.78 220l7 7-17.59 3.52-44 38.71-15.84-5.28-28.1 49.25-3.52 119.64 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.64-28.15-49.26-15.84 5.28-44-38.71-17.58-3.51 7-7 107.33 59.82-3.52-93.25-58.06-38.71C185 65.1 135.77 22.87 95.3 0c-17.54 61.12-4.4 118.76 0 130.2 15-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9-31.65 1.72-61.15 33.44-61.59 58.51l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7 35.63 24.63-5.28 8.8 28.15L153.35 366 134 373l-8.8-33.43-18.47 7-6.16-33.43-27.27 7c-3.82-25.38 2-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.23 81.37 149.11 4.4 30.35 4.45 89.29 25.51 97.21v-29.83l5.28-7 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95L331.06 366c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.22-.27 13.84-3.51 22.84zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7 8.24-7.94 15.55-16.32 22.87-24.68zm24.63 5.28c0-13.43-2.05-24.21-5.28-33.43a235 235 0 0 1-18.47 27.27zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-12 6.65-28.14 7-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 44-14.08-10.61-18.96-27.2-25.53-45.76-28.16zM165.68 376.52L181.52 366c-7.47-4.36-13.76-8.42-19.35-12.32.6 7.26.27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94.9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7-8.24-7.93-15.55-16.31-22.87-24.67zm-24.64 5.28c0-13.43 2-24.21 5.28-33.43a235 235 0 0 0 18.47 27.27zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 37-10.56-5-12-6.65-28.14-7-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-44-14.08 10.63-18.95 27.23-25.52 45.76-28.15z" + } + }, + "free": [ + "brands" + ] + }, + "won-sign": { + "aliases": { + "names": [ + "krw", + "won" + ], + "unicodes": { + "composite": [ + "20a9" + ], + "secondary": [ + "10f159" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Won Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f159", + "label": "Won Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M62.4 53.9C56.8 37.1 38.6 28.1 21.9 33.6S-3.9 57.4 1.6 74.1L51.6 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H72.9l56.7 170.1c4.5 13.5 17.4 22.4 31.6 21.9s26.4-10.4 29.8-24.2L233 288h46L321 455.8c3.4 13.8 15.6 23.7 29.8 24.2s27.1-8.4 31.6-21.9L439.1 288H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H460.4l50-149.9c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2L392.9 224H329L287 56.2C283.5 42 270.7 32 256 32s-27.5 10-31 24.2L183 224h-64L62.4 53.9zm78 234.1H167l-11.4 45.6L140.4 288zM249 224l7-28.1 7 28.1H249zm96 64h26.6l-15.2 45.6L345 288z" + } + }, + "free": [ + "solid" + ] + }, + "wordpress": { + "changes": [ + "4.1.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f19a", + "label": "WordPress Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8.9 0 1.8.1 2.8.2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7.3 13.7.3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z" + } + }, + "free": [ + "brands" + ] + }, + "wordpress-simple": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f411", + "label": "Wordpress Simple", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014459, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z" + } + }, + "free": [ + "brands" + ] + }, + "worm": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "dirt", + "garden", + "worm", + "wriggle" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e599", + "label": "Worm", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824521, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M224 96c0-53 43-96 96-96h38.4C407.9 0 448 40.1 448 89.6V176v16V376c0 75.1-60.9 136-136 136s-136-60.9-136-136V296c0-22.1-17.9-40-40-40s-40 17.9-40 40V464c0 26.5-21.5 48-48 48s-48-21.5-48-48V296c0-75.1 60.9-136 136-136s136 60.9 136 136v80c0 22.1 17.9 40 40 40s40-17.9 40-40V192H320c-53 0-96-43-96-96zm144-8a24 24 0 1 0 -48 0 24 24 0 1 0 48 0z" + } + }, + "free": [ + "solid" + ] + }, + "wpbeginner": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f297", + "label": "WPBeginner", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M462.799 322.374C519.01 386.682 466.961 480 370.944 480c-39.602 0-78.824-17.687-100.142-50.04-6.887.356-22.702.356-29.59 0C219.848 462.381 180.588 480 141.069 480c-95.49 0-148.348-92.996-91.855-157.626C-29.925 190.523 80.479 32 256.006 32c175.632 0 285.87 158.626 206.793 290.374zm-339.647-82.972h41.529v-58.075h-41.529v58.075zm217.18 86.072v-23.839c-60.506 20.915-132.355 9.198-187.589-33.971l.246 24.897c51.101 46.367 131.746 57.875 187.343 32.913zm-150.753-86.072h166.058v-58.075H189.579v58.075z" + } + }, + "free": [ + "brands" + ] + }, + "wpexplorer": { + "changes": [ + "4.7.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2de", + "label": "WPExplorer", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z" + } + }, + "free": [ + "brands" + ] + }, + "wpforms": { + "changes": [ + "4.6.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f298", + "label": "WPForms", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014469, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2.1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z" + } + }, + "free": [ + "brands" + ] + }, + "wpressr": { + "aliases": { + "names": [ + "rendact" + ] + }, + "changes": [ + "5.4.2" + ], + "ligatures": [], + "search": { + "terms": [ + "rendact" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f3e4", + "label": "wpressr", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014476, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm171.33 158.6c-15.18 34.51-30.37 69.02-45.63 103.5-2.44 5.51-6.89 8.24-12.97 8.24-23.02-.01-46.03.06-69.05-.05-5.12-.03-8.25 1.89-10.34 6.72-10.19 23.56-20.63 47-30.95 70.5-1.54 3.51-4.06 5.29-7.92 5.29-45.94-.01-91.87-.02-137.81 0-3.13 0-5.63-1.15-7.72-3.45-11.21-12.33-22.46-24.63-33.68-36.94-2.69-2.95-2.79-6.18-1.21-9.73 8.66-19.54 17.27-39.1 25.89-58.66 12.93-29.35 25.89-58.69 38.75-88.08 1.7-3.88 4.28-5.68 8.54-5.65 14.24.1 28.48.02 42.72.05 6.24.01 9.2 4.84 6.66 10.59-13.6 30.77-27.17 61.55-40.74 92.33-5.72 12.99-11.42 25.99-17.09 39-3.91 8.95 7.08 11.97 10.95 5.6.23-.37-1.42 4.18 30.01-67.69 1.36-3.1 3.41-4.4 6.77-4.39 15.21.08 30.43.02 45.64.04 5.56.01 7.91 3.64 5.66 8.75-8.33 18.96-16.71 37.9-24.98 56.89-4.98 11.43 8.08 12.49 11.28 5.33.04-.08 27.89-63.33 32.19-73.16 2.02-4.61 5.44-6.51 10.35-6.5 26.43.05 52.86 0 79.29.05 12.44.02 13.93-13.65 3.9-13.64-25.26.03-50.52.02-75.78.02-6.27 0-7.84-2.47-5.27-8.27 5.78-13.06 11.59-26.11 17.3-39.21 1.73-3.96 4.52-5.79 8.84-5.78 23.09.06 25.98.02 130.78.03 6.08-.01 8.03 2.79 5.62 8.27z" + } + }, + "free": [ + "brands" + ] + }, + "wrench": { + "aliases": { + "unicodes": { + "composite": [ + "1f527" + ], + "secondary": [ + "10f0ad" + ] + } + }, + "changes": [ + "2.0.0", + "5.0.0", + "5.0.13", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "construction", + "fix", + "mechanic", + "plumbing", + "settings", + "spanner", + "tool", + "update", + "wrench" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f0ad", + "label": "Wrench", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M352 320c88.4 0 160-71.6 160-160c0-15.3-2.2-30.1-6.2-44.2c-3.1-10.8-16.4-13.2-24.3-5.3l-76.8 76.8c-3 3-7.1 4.7-11.3 4.7H336c-8.8 0-16-7.2-16-16V118.6c0-4.2 1.7-8.3 4.7-11.3l76.8-76.8c7.9-7.9 5.4-21.2-5.3-24.3C382.1 2.2 367.3 0 352 0C263.6 0 192 71.6 192 160c0 19.1 3.4 37.5 9.5 54.5L19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L297.5 310.5c17 6.2 35.4 9.5 54.5 9.5zM80 408a24 24 0 1 1 0 48 24 24 0 1 1 0-48z" + } + }, + "free": [ + "solid" + ] + }, + "x": { + "aliases": { + "unicodes": { + "composite": [ + "78" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter X", + "Latin Small Letter X", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "58", + "label": "X", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M376.6 84.5c11.3-13.6 9.5-33.8-4.1-45.1s-33.8-9.5-45.1 4.1L192 206 56.6 43.5C45.3 29.9 25.1 28.1 11.5 39.4S-3.9 70.9 7.4 84.5L150.3 256 7.4 427.5c-11.3 13.6-9.5 33.8 4.1 45.1s33.8 9.5 45.1-4.1L192 306 327.4 468.5c11.3 13.6 31.5 15.4 45.1 4.1s15.4-31.5 4.1-45.1L233.7 256 376.6 84.5z" + } + }, + "free": [ + "solid" + ] + }, + "x-ray": { + "aliases": { + "unicodes": { + "secondary": [ + "10f497" + ] + } + }, + "changes": [ + "5.0.7", + "5.10.2", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "health", + "medical", + "radiological images", + "radiology", + "skeleton" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f497", + "label": "X Ray", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669834851, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32V416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32V96C14.3 96 0 81.7 0 64zM256 96c-8.8 0-16 7.2-16 16v32H160c-8.8 0-16 7.2-16 16s7.2 16 16 16h80v48H128c-8.8 0-16 7.2-16 16s7.2 16 16 16H240v70.6L189.1 307c-5.2-2-10.6-3-16.2-3h-2.1c-23.6 0-42.8 19.2-42.8 42.8c0 9.6 3.2 18.9 9.1 26.4l18.2 23.2c9.7 12.4 24.6 19.6 40.3 19.6H316.4c15.7 0 30.6-7.2 40.3-19.6l18.2-23.2c5.9-7.5 9.1-16.8 9.1-26.4c0-23.6-19.2-42.8-42.8-42.8H339c-5.5 0-11 1-16.2 3L272 326.6V256H384c8.8 0 16-7.2 16-16s-7.2-16-16-16H272V176h80c8.8 0 16-7.2 16-16s-7.2-16-16-16H272V112c0-8.8-7.2-16-16-16zM208 352a16 16 0 1 1 0 32 16 16 0 1 1 0-32zm80 16a16 16 0 1 1 32 0 16 16 0 1 1 -32 0z" + } + }, + "free": [ + "solid" + ] + }, + "xbox": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f412", + "label": "Xbox", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014467, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7.1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z" + } + }, + "free": [ + "brands" + ] + }, + "xing": { + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f168", + "label": "Xing", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8.3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1.2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z" + } + }, + "free": [ + "brands" + ] + }, + "xmark": { + "aliases": { + "names": [ + "close", + "multiply", + "remove", + "times" + ], + "unicodes": { + "composite": [ + "1f5d9", + "2715", + "2716", + "274c", + "d7" + ], + "secondary": [ + "10f00d" + ] + } + }, + "changes": [ + "1.0.0", + "5.0.0", + "5.0.13", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Cancellation X", + "Multiplication Sign", + "Multiplication X", + "cancel", + "close", + "cross", + "cross mark", + "error", + "exit", + "incorrect", + "mark", + "multiplication", + "multiply", + "notice", + "notification", + "notify", + "problem", + "sign", + "wrong", + "x", + "×" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f00d", + "label": "Xmark", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M310.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 210.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L114.7 256 9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 301.3 265.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L205.3 256 310.6 150.6z" + } + }, + "free": [ + "solid" + ] + }, + "xmarks-lines": { + "changes": [ + "6.1.0", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "barricade", + "barrier", + "fence", + "poison", + "roadblock" + ] + }, + "styles": [ + "solid" + ], + "unicode": "e59a", + "label": "Xmarks Lines", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824496, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M32 32C14.3 32 0 46.3 0 64S14.3 96 32 96H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zm0 384c-17.7 0-32 14.3-32 32s14.3 32 32 32H608c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM7 167c-9.4 9.4-9.4 24.6 0 33.9l55 55L7 311c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55L41 167c-9.4-9.4-24.6-9.4-33.9 0zM265 167c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l55 55-55 55c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55-55-55zM455 167c-9.4 9.4-9.4 24.6 0 33.9l55 55-55 55c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l55-55 55 55c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-55-55 55-55c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-55 55-55-55c-9.4-9.4-24.6-9.4-33.9 0z" + } + }, + "free": [ + "solid" + ] + }, + "y": { + "aliases": { + "unicodes": { + "composite": [ + "79" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter Y", + "Latin Small Letter Y", + "letter", + "yay", + "yes" + ] + }, + "styles": [ + "solid" + ], + "unicode": "59", + "label": "Y", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M58 45.4C47.8 31 27.8 27.7 13.4 38S-4.3 68.2 6 82.6L160 298.3V448c0 17.7 14.3 32 32 32s32-14.3 32-32V298.3L378 82.6c10.3-14.4 6.9-34.4-7.4-44.6S336.2 31 326 45.4L192 232.9 58 45.4z" + } + }, + "free": [ + "solid" + ] + }, + "y-combinator": { + "changes": [ + "4.4.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f23b", + "label": "Y Combinator", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014473, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z" + } + }, + "free": [ + "brands" + ] + }, + "yahoo": { + "changes": [ + "4.1.0", + "5.0.0", + "5.0.3", + "5.13.1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f19e", + "label": "Yahoo Logo", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014471, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M223.69,141.06,167,284.23,111,141.06H14.93L120.76,390.19,82.19,480h94.17L317.27,141.06Zm105.4,135.79a58.22,58.22,0,1,0,58.22,58.22A58.22,58.22,0,0,0,329.09,276.85ZM394.65,32l-93,223.47H406.44L499.07,32Z" + } + }, + "free": [ + "brands" + ] + }, + "yammer": { + "changes": [ + "5.8.0", + "6.0.0-beta1" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f840", + "label": "Yammer", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M500.676,159.486a12.779,12.779,0,0,0-6.4-8.282,13.954,13.954,0,0,0-10.078-1.125L457.8,156.7l-.043-.2-22.3,5.785-1.243.333-.608-2.17A369.037,369.037,0,0,0,347.538,4.289a14.1,14.1,0,0,0-19.784-.463l-102.9,102.747H24.947A24.9,24.9,0,0,0,0,131.417V380.38a24.963,24.963,0,0,0,24.918,24.9H224.986L328.072,508a13.667,13.667,0,0,0,19.327,0c.126-.126.249-.255.37-.385a368.025,368.025,0,0,0,69.577-107.374,403.45,403.45,0,0,0,17.3-50.8v-.028l20.406,5.336.029-.073L483.345,362a20.253,20.253,0,0,0,2.619.5,13.359,13.359,0,0,0,4.139-.072,13.5,13.5,0,0,0,10.515-9.924,415.855,415.855,0,0,0,.058-193.013ZM337.125,24.65l.013.014h-.013Zm-110.2,165.161L174.311,281.1a11.338,11.338,0,0,0-1.489,5.655v46.189a22.04,22.04,0,0,1-22.041,22h-3.4A22.068,22.068,0,0,1,125.3,332.962V287.294a11.532,11.532,0,0,0-1.388-5.51l-51.6-92.2a21.988,21.988,0,0,1,19.264-32.726h3.268a22.059,22.059,0,0,1,19.611,11.916l36.357,70.281,37.515-70.512a22.066,22.066,0,0,1,38.556-.695,21.7,21.7,0,0,1,0,21.967ZM337.145,24.673a348.147,348.147,0,0,1,75.8,141.335l.564,1.952-114.134,29.6V131.417a25.006,25.006,0,0,0-24.947-24.9H255.067Zm60.5,367.305v-.043l-.014.014a347.19,347.19,0,0,1-60.177,95.227l-82.2-81.893h19.177a24.978,24.978,0,0,0,24.947-24.9v-66.2l114.6,29.862A385.191,385.191,0,0,1,397.648,391.978Zm84-52.45.015.014-50.618-13.131L299.379,292.1V219.572l119.746-30.99,4.468-1.157,39.54-10.253,18.511-4.816A393,393,0,0,1,481.644,339.528Z" + } + }, + "free": [ + "brands" + ] + }, + "yandex": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f413", + "label": "Yandex", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014464, + "raw": "", + "viewBox": [ + 0, + 0, + 256, + 512 + ], + "width": 256, + "height": 512, + "path": "M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z" + } + }, + "free": [ + "brands" + ] + }, + "yandex-international": { + "changes": [ + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f414", + "label": "Yandex International", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014462, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z" + } + }, + "free": [ + "brands" + ] + }, + "yarn": { + "changes": [ + "5.6.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f7e3", + "label": "Yarn", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014474, + "raw": "", + "viewBox": [ + 0, + 0, + 496, + 512 + ], + "width": 496, + "height": 512, + "path": "M393.9 345.2c-39 9.3-48.4 32.1-104 47.4 0 0-2.7 4-10.4 5.8-13.4 3.3-63.9 6-68.5 6.1-12.4.1-19.9-3.2-22-8.2-6.4-15.3 9.2-22 9.2-22-8.1-5-9-9.9-9.8-8.1-2.4 5.8-3.6 20.1-10.1 26.5-8.8 8.9-25.5 5.9-35.3.8-10.8-5.7.8-19.2.8-19.2s-5.8 3.4-10.5-3.6c-6-9.3-17.1-37.3 11.5-62-1.3-10.1-4.6-53.7 40.6-85.6 0 0-20.6-22.8-12.9-43.3 5-13.4 7-13.3 8.6-13.9 5.7-2.2 11.3-4.6 15.4-9.1 20.6-22.2 46.8-18 46.8-18s12.4-37.8 23.9-30.4c3.5 2.3 16.3 30.6 16.3 30.6s13.6-7.9 15.1-5c8.2 16 9.2 46.5 5.6 65.1-6.1 30.6-21.4 47.1-27.6 57.5-1.4 2.4 16.5 10 27.8 41.3 10.4 28.6 1.1 52.7 2.8 55.3.8 1.4 13.7.8 36.4-13.2 12.8-7.9 28.1-16.9 45.4-17 16.7-.5 17.6 19.2 4.9 22.2zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-79.3 75.2c-1.7-13.6-13.2-23-28-22.8-22 .3-40.5 11.7-52.8 19.2-4.8 3-8.9 5.2-12.4 6.8 3.1-44.5-22.5-73.1-28.7-79.4 7.8-11.3 18.4-27.8 23.4-53.2 4.3-21.7 3-55.5-6.9-74.5-1.6-3.1-7.4-11.2-21-7.4-9.7-20-13-22.1-15.6-23.8-1.1-.7-23.6-16.4-41.4 28-12.2.9-31.3 5.3-47.5 22.8-2 2.2-5.9 3.8-10.1 5.4h.1c-8.4 3-12.3 9.9-16.9 22.3-6.5 17.4.2 34.6 6.8 45.7-17.8 15.9-37 39.8-35.7 82.5-34 36-11.8 73-5.6 79.6-1.6 11.1 3.7 19.4 12 23.8 12.6 6.7 30.3 9.6 43.9 2.8 4.9 5.2 13.8 10.1 30 10.1 6.8 0 58-2.9 72.6-6.5 6.8-1.6 11.5-4.5 14.6-7.1 9.8-3.1 36.8-12.3 62.2-28.7 18-11.7 24.2-14.2 37.6-17.4 12.9-3.2 21-15.1 19.4-28.2z" + } + }, + "free": [ + "brands" + ] + }, + "yelp": { + "changes": [ + "4.2.0", + "5.0.0", + "5.7.0", + "5.8.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f1e9", + "label": "Yelp", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014483, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M42.9 240.32l99.62 48.61c19.2 9.4 16.2 37.51-4.5 42.71L30.5 358.45a22.79 22.79 0 0 1-28.21-19.6 197.16 197.16 0 0 1 9-85.32 22.8 22.8 0 0 1 31.61-13.21zm44 239.25a199.45 199.45 0 0 0 79.42 32.11A22.78 22.78 0 0 0 192.94 490l3.9-110.82c.7-21.3-25.5-31.91-39.81-16.1l-74.21 82.4a22.82 22.82 0 0 0 4.09 34.09zm145.34-109.92l58.81 94a22.93 22.93 0 0 0 34 5.5 198.36 198.36 0 0 0 52.71-67.61A23 23 0 0 0 364.17 370l-105.42-34.26c-20.31-6.5-37.81 15.8-26.51 33.91zm148.33-132.23a197.44 197.44 0 0 0-50.41-69.31 22.85 22.85 0 0 0-34 4.4l-62 91.92c-11.9 17.7 4.7 40.61 25.2 34.71L366 268.63a23 23 0 0 0 14.61-31.21zM62.11 30.18a22.86 22.86 0 0 0-9.9 32l104.12 180.44c11.7 20.2 42.61 11.9 42.61-11.4V22.88a22.67 22.67 0 0 0-24.5-22.8 320.37 320.37 0 0 0-112.33 30.1z" + } + }, + "free": [ + "brands" + ] + }, + "yen-sign": { + "aliases": { + "names": [ + "cny", + "jpy", + "rmb", + "yen" + ], + "unicodes": { + "composite": [ + "a5" + ], + "secondary": [ + "10f157" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0", + "6.0.0-beta1", + "6.0.0-beta3", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Yen Sign", + "currency" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f157", + "label": "Yen Sign", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824844, + "raw": "", + "viewBox": [ + 0, + 0, + 320, + 512 + ], + "width": 320, + "height": 512, + "path": "M58.6 46.2C48.8 31.5 29 27.6 14.2 37.4S-4.4 67 5.4 81.7L100.2 224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v32H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v64c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H192V288h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H219.8L314.6 81.7c9.8-14.7 5.8-34.6-8.9-44.4s-34.6-5.8-44.4 8.9L160 198.3 58.6 46.2z" + } + }, + "free": [ + "solid" + ] + }, + "yin-yang": { + "aliases": { + "unicodes": { + "composite": [ + "262f" + ], + "secondary": [ + "10f6ad" + ] + } + }, + "changes": [ + "5.3.0", + "5.10.2", + "5.11.0", + "5.11.1", + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "daoism", + "opposites", + "religion", + "tao", + "taoism", + "taoist", + "yang", + "yin", + "yin yang" + ] + }, + "styles": [ + "solid" + ], + "unicode": "f6ad", + "label": "Yin Yang", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824624, + "raw": "", + "viewBox": [ + 0, + 0, + 512, + 512 + ], + "width": 512, + "height": 512, + "path": "M256 64c53 0 96 43 96 96s-43 96-96 96s-96 43-96 96s43 96 96 96C150 448 64 362 64 256S150 64 256 64zm0 448A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm32-352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z" + } + }, + "free": [ + "solid" + ] + }, + "yoast": { + "changes": [ + "4.6.0", + "5.0.0", + "5.0.3" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f2b1", + "label": "Yoast", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014482, + "raw": "", + "viewBox": [ + 0, + 0, + 448, + 512 + ], + "width": 448, + "height": 512, + "path": "M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1.6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z" + } + }, + "free": [ + "brands" + ] + }, + "youtube": { + "aliases": { + "unicodes": { + "composite": [ + "f16a" + ] + } + }, + "changes": [ + "3.2.0", + "5.0.0" + ], + "ligatures": [], + "search": { + "terms": [ + "film", + "video", + "youtube-play", + "youtube-square" + ] + }, + "styles": [ + "brands" + ], + "unicode": "f167", + "label": "YouTube", + "voted": false, + "svg": { + "brands": { + "last_modified": 1660014461, + "raw": "", + "viewBox": [ + 0, + 0, + 576, + 512 + ], + "width": 576, + "height": 512, + "path": "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" + } + }, + "free": [ + "brands" + ] + }, + "z": { + "aliases": { + "unicodes": { + "composite": [ + "7a" + ] + } + }, + "changes": [ + "6.0.0-beta1", + "6.2.0", + "6.3.0" + ], + "ligatures": [], + "search": { + "terms": [ + "Latin Capital Letter Z", + "Latin Small Letter Z", + "letter" + ] + }, + "styles": [ + "solid" + ], + "unicode": "5a", + "label": "Z", + "voted": false, + "svg": { + "solid": { + "last_modified": 1669824383, + "raw": "", + "viewBox": [ + 0, + 0, + 384, + 512 + ], + "width": 384, + "height": 512, + "path": "M0 64C0 46.3 14.3 32 32 32H352c12.4 0 23.7 7.2 29 18.4s3.6 24.5-4.4 34.1L100.3 416H352c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-12.4 0-23.7-7.2-29-18.4s-3.6-24.5 4.4-34.1L283.7 96H32C14.3 96 0 81.7 0 64z" + } + }, + "free": [ + "solid" + ] + }, + "zhihu": { + "changes": [ + "5.2.0" + ], + "ligatures": [], + "search": { + "terms": [] + }, + "styles": [ + "brands" + ], + "unicode": "f63f", + "label": "Zhihu", + "voted": true, + "svg": { + "brands": { + "last_modified": 1660014458, + "raw": "", + "viewBox": [ + 0, + 0, + 640, + 512 + ], + "width": 640, + "height": 512, + "path": "M170.54 148.13v217.54l23.43.01 7.71 26.37 42.01-26.37h49.53V148.13H170.54zm97.75 193.93h-27.94l-27.9 17.51-5.08-17.47-11.9-.04V171.75h72.82v170.31zm-118.46-94.39H97.5c1.74-27.1 2.2-51.59 2.2-73.46h51.16s1.97-22.56-8.58-22.31h-88.5c3.49-13.12 7.87-26.66 13.12-40.67 0 0-24.07 0-32.27 21.57-3.39 8.9-13.21 43.14-30.7 78.12 5.89-.64 25.37-1.18 36.84-22.21 2.11-5.89 2.51-6.66 5.14-14.53h28.87c0 10.5-1.2 66.88-1.68 73.44H20.83c-11.74 0-15.56 23.62-15.56 23.62h65.58C66.45 321.1 42.83 363.12 0 396.34c20.49 5.85 40.91-.93 51-9.9 0 0 22.98-20.9 35.59-69.25l53.96 64.94s7.91-26.89-1.24-39.99c-7.58-8.92-28.06-33.06-36.79-41.81L87.9 311.95c4.36-13.98 6.99-27.55 7.87-40.67h61.65s-.09-23.62-7.59-23.62v.01zm412.02-1.6c20.83-25.64 44.98-58.57 44.98-58.57s-18.65-14.8-27.38-4.06c-6 8.15-36.83 48.2-36.83 48.2l19.23 14.43zm-150.09-59.09c-9.01-8.25-25.91 2.13-25.91 2.13s39.52 55.04 41.12 57.45l19.46-13.73s-25.67-37.61-34.66-45.86h-.01zM640 258.35c-19.78 0-130.91.93-131.06.93v-101c4.81 0 12.42-.4 22.85-1.2 40.88-2.41 70.13-4 87.77-4.81 0 0 12.22-27.19-.59-33.44-3.07-1.18-23.17 4.58-23.17 4.58s-165.22 16.49-232.36 18.05c1.6 8.82 7.62 17.08 15.78 19.55 13.31 3.48 22.69 1.7 49.15.89 24.83-1.6 43.68-2.43 56.51-2.43v99.81H351.41s2.82 22.31 25.51 22.85h107.94v70.92c0 13.97-11.19 21.99-24.48 21.12-14.08.11-26.08-1.15-41.69-1.81 1.99 3.97 6.33 14.39 19.31 21.84 9.88 4.81 16.17 6.57 26.02 6.57 29.56 0 45.67-17.28 44.89-45.31v-73.32h122.36c9.68 0 8.7-23.78 8.7-23.78l.03-.01z" + } + }, + "free": [ + "brands" + ] + } +} \ No newline at end of file diff --git a/vendor/fortawesome/font-awesome/metadata/shims.json b/vendor/fortawesome/font-awesome/metadata/shims.json new file mode 100644 index 00000000..aa2fbf69 --- /dev/null +++ b/vendor/fortawesome/font-awesome/metadata/shims.json @@ -0,0 +1,4052 @@ +[ + [ + "glass", + null, + "martini-glass-empty" + ], + [ + "envelope-o", + "far", + "envelope" + ], + [ + "star-o", + "far", + "star" + ], + [ + "remove", + null, + "xmark" + ], + [ + "close", + null, + "xmark" + ], + [ + "gear", + null, + "gear" + ], + [ + "trash-o", + "far", + "trash-can" + ], + [ + "home", + null, + "house" + ], + [ + "file-o", + "far", + "file" + ], + [ + "clock-o", + "far", + "clock" + ], + [ + "arrow-circle-o-down", + "far", + "circle-down" + ], + [ + "arrow-circle-o-up", + "far", + "circle-up" + ], + [ + "play-circle-o", + "far", + "circle-play" + ], + [ + "repeat", + null, + "arrow-rotate-right" + ], + [ + "rotate-right", + null, + "arrow-rotate-right" + ], + [ + "refresh", + null, + "arrows-rotate" + ], + [ + "list-alt", + "far", + "rectangle-list" + ], + [ + "dedent", + null, + "outdent" + ], + [ + "video-camera", + null, + "video" + ], + [ + "picture-o", + "far", + "image" + ], + [ + "photo", + "far", + "image" + ], + [ + "image", + "far", + "image" + ], + [ + "map-marker", + null, + "location-dot" + ], + [ + "pencil-square-o", + "far", + "pen-to-square" + ], + [ + "edit", + "far", + "pen-to-square" + ], + [ + "share-square-o", + null, + "share-from-square" + ], + [ + "check-square-o", + "far", + "square-check" + ], + [ + "arrows", + null, + "up-down-left-right" + ], + [ + "times-circle-o", + "far", + "circle-xmark" + ], + [ + "check-circle-o", + "far", + "circle-check" + ], + [ + "mail-forward", + null, + "share" + ], + [ + "expand", + null, + "up-right-and-down-left-from-center" + ], + [ + "compress", + null, + "down-left-and-up-right-to-center" + ], + [ + "eye", + "far", + null + ], + [ + "eye-slash", + "far", + null + ], + [ + "warning", + null, + "triangle-exclamation" + ], + [ + "calendar", + null, + "calendar-days" + ], + [ + "arrows-v", + null, + "up-down" + ], + [ + "arrows-h", + null, + "left-right" + ], + [ + "bar-chart", + null, + "chart-column" + ], + [ + "bar-chart-o", + null, + "chart-column" + ], + [ + "twitter-square", + "fab", + "square-twitter" + ], + [ + "facebook-square", + "fab", + "square-facebook" + ], + [ + "gears", + null, + "gears" + ], + [ + "thumbs-o-up", + "far", + "thumbs-up" + ], + [ + "thumbs-o-down", + "far", + "thumbs-down" + ], + [ + "heart-o", + "far", + "heart" + ], + [ + "sign-out", + null, + "right-from-bracket" + ], + [ + "linkedin-square", + "fab", + "linkedin" + ], + [ + "thumb-tack", + null, + "thumbtack" + ], + [ + "external-link", + null, + "up-right-from-square" + ], + [ + "sign-in", + null, + "right-to-bracket" + ], + [ + "github-square", + "fab", + "square-github" + ], + [ + "lemon-o", + "far", + "lemon" + ], + [ + "square-o", + "far", + "square" + ], + [ + "bookmark-o", + "far", + "bookmark" + ], + [ + "twitter", + "fab", + null + ], + [ + "facebook", + "fab", + "facebook-f" + ], + [ + "facebook-f", + "fab", + "facebook-f" + ], + [ + "github", + "fab", + null + ], + [ + "credit-card", + "far", + null + ], + [ + "feed", + null, + "rss" + ], + [ + "hdd-o", + "far", + "hard-drive" + ], + [ + "hand-o-right", + "far", + "hand-point-right" + ], + [ + "hand-o-left", + "far", + "hand-point-left" + ], + [ + "hand-o-up", + "far", + "hand-point-up" + ], + [ + "hand-o-down", + "far", + "hand-point-down" + ], + [ + "globe", + null, + "earth-americas" + ], + [ + "tasks", + null, + "bars-progress" + ], + [ + "arrows-alt", + null, + "maximize" + ], + [ + "group", + null, + "users" + ], + [ + "chain", + null, + "link" + ], + [ + "cut", + null, + "scissors" + ], + [ + "files-o", + "far", + "copy" + ], + [ + "floppy-o", + "far", + "floppy-disk" + ], + [ + "save", + "far", + "floppy-disk" + ], + [ + "navicon", + null, + "bars" + ], + [ + "reorder", + null, + "bars" + ], + [ + "magic", + null, + "wand-magic-sparkles" + ], + [ + "pinterest", + "fab", + null + ], + [ + "pinterest-square", + "fab", + "square-pinterest" + ], + [ + "google-plus-square", + "fab", + "square-google-plus" + ], + [ + "google-plus", + "fab", + "google-plus-g" + ], + [ + "money", + null, + "money-bill-1" + ], + [ + "unsorted", + null, + "sort" + ], + [ + "sort-desc", + null, + "sort-down" + ], + [ + "sort-asc", + null, + "sort-up" + ], + [ + "linkedin", + "fab", + "linkedin-in" + ], + [ + "rotate-left", + null, + "arrow-rotate-left" + ], + [ + "legal", + null, + "gavel" + ], + [ + "tachometer", + null, + "gauge-high" + ], + [ + "dashboard", + null, + "gauge-high" + ], + [ + "comment-o", + "far", + "comment" + ], + [ + "comments-o", + "far", + "comments" + ], + [ + "flash", + null, + "bolt" + ], + [ + "clipboard", + null, + "paste" + ], + [ + "lightbulb-o", + "far", + "lightbulb" + ], + [ + "exchange", + null, + "right-left" + ], + [ + "cloud-download", + null, + "cloud-arrow-down" + ], + [ + "cloud-upload", + null, + "cloud-arrow-up" + ], + [ + "bell-o", + "far", + "bell" + ], + [ + "cutlery", + null, + "utensils" + ], + [ + "file-text-o", + "far", + "file-lines" + ], + [ + "building-o", + "far", + "building" + ], + [ + "hospital-o", + "far", + "hospital" + ], + [ + "tablet", + null, + "tablet-screen-button" + ], + [ + "mobile", + null, + "mobile-screen-button" + ], + [ + "mobile-phone", + null, + "mobile-screen-button" + ], + [ + "circle-o", + "far", + "circle" + ], + [ + "mail-reply", + null, + "reply" + ], + [ + "github-alt", + "fab", + null + ], + [ + "folder-o", + "far", + "folder" + ], + [ + "folder-open-o", + "far", + "folder-open" + ], + [ + "smile-o", + "far", + "face-smile" + ], + [ + "frown-o", + "far", + "face-frown" + ], + [ + "meh-o", + "far", + "face-meh" + ], + [ + "keyboard-o", + "far", + "keyboard" + ], + [ + "flag-o", + "far", + "flag" + ], + [ + "mail-reply-all", + null, + "reply-all" + ], + [ + "star-half-o", + "far", + "star-half-stroke" + ], + [ + "star-half-empty", + "far", + "star-half-stroke" + ], + [ + "star-half-full", + "far", + "star-half-stroke" + ], + [ + "code-fork", + null, + "code-branch" + ], + [ + "chain-broken", + null, + "link-slash" + ], + [ + "unlink", + null, + "link-slash" + ], + [ + "calendar-o", + "far", + "calendar" + ], + [ + "maxcdn", + "fab", + null + ], + [ + "html5", + "fab", + null + ], + [ + "css3", + "fab", + null + ], + [ + "unlock-alt", + null, + "unlock" + ], + [ + "minus-square-o", + "far", + "square-minus" + ], + [ + "level-up", + null, + "turn-up" + ], + [ + "level-down", + null, + "turn-down" + ], + [ + "pencil-square", + null, + "square-pen" + ], + [ + "external-link-square", + null, + "square-up-right" + ], + [ + "compass", + "far", + null + ], + [ + "caret-square-o-down", + "far", + "square-caret-down" + ], + [ + "toggle-down", + "far", + "square-caret-down" + ], + [ + "caret-square-o-up", + "far", + "square-caret-up" + ], + [ + "toggle-up", + "far", + "square-caret-up" + ], + [ + "caret-square-o-right", + "far", + "square-caret-right" + ], + [ + "toggle-right", + "far", + "square-caret-right" + ], + [ + "eur", + null, + "euro-sign" + ], + [ + "euro", + null, + "euro-sign" + ], + [ + "gbp", + null, + "sterling-sign" + ], + [ + "usd", + null, + "dollar-sign" + ], + [ + "dollar", + null, + "dollar-sign" + ], + [ + "inr", + null, + "indian-rupee-sign" + ], + [ + "rupee", + null, + "indian-rupee-sign" + ], + [ + "jpy", + null, + "yen-sign" + ], + [ + "cny", + null, + "yen-sign" + ], + [ + "rmb", + null, + "yen-sign" + ], + [ + "yen", + null, + "yen-sign" + ], + [ + "rub", + null, + "ruble-sign" + ], + [ + "ruble", + null, + "ruble-sign" + ], + [ + "rouble", + null, + "ruble-sign" + ], + [ + "krw", + null, + "won-sign" + ], + [ + "won", + null, + "won-sign" + ], + [ + "btc", + "fab", + null + ], + [ + "bitcoin", + "fab", + "btc" + ], + [ + "file-text", + null, + "file-lines" + ], + [ + "sort-alpha-asc", + null, + "arrow-down-a-z" + ], + [ + "sort-alpha-desc", + null, + "arrow-down-z-a" + ], + [ + "sort-amount-asc", + null, + "arrow-down-short-wide" + ], + [ + "sort-amount-desc", + null, + "arrow-down-wide-short" + ], + [ + "sort-numeric-asc", + null, + "arrow-down-1-9" + ], + [ + "sort-numeric-desc", + null, + "arrow-down-9-1" + ], + [ + "youtube-square", + "fab", + "square-youtube" + ], + [ + "youtube", + "fab", + null + ], + [ + "xing", + "fab", + null + ], + [ + "xing-square", + "fab", + "square-xing" + ], + [ + "youtube-play", + "fab", + "youtube" + ], + [ + "dropbox", + "fab", + null + ], + [ + "stack-overflow", + "fab", + null + ], + [ + "instagram", + "fab", + null + ], + [ + "flickr", + "fab", + null + ], + [ + "adn", + "fab", + null + ], + [ + "bitbucket", + "fab", + null + ], + [ + "bitbucket-square", + "fab", + "bitbucket" + ], + [ + "tumblr", + "fab", + null + ], + [ + "tumblr-square", + "fab", + "square-tumblr" + ], + [ + "long-arrow-down", + null, + "down-long" + ], + [ + "long-arrow-up", + null, + "up-long" + ], + [ + "long-arrow-left", + null, + "left-long" + ], + [ + "long-arrow-right", + null, + "right-long" + ], + [ + "apple", + "fab", + null + ], + [ + "windows", + "fab", + null + ], + [ + "android", + "fab", + null + ], + [ + "linux", + "fab", + null + ], + [ + "dribbble", + "fab", + null + ], + [ + "skype", + "fab", + null + ], + [ + "foursquare", + "fab", + null + ], + [ + "trello", + "fab", + null + ], + [ + "gratipay", + "fab", + null + ], + [ + "gittip", + "fab", + "gratipay" + ], + [ + "sun-o", + "far", + "sun" + ], + [ + "moon-o", + "far", + "moon" + ], + [ + "vk", + "fab", + null + ], + [ + "weibo", + "fab", + null + ], + [ + "renren", + "fab", + null + ], + [ + "pagelines", + "fab", + null + ], + [ + "stack-exchange", + "fab", + null + ], + [ + "arrow-circle-o-right", + "far", + "circle-right" + ], + [ + "arrow-circle-o-left", + "far", + "circle-left" + ], + [ + "caret-square-o-left", + "far", + "square-caret-left" + ], + [ + "toggle-left", + "far", + "square-caret-left" + ], + [ + "dot-circle-o", + "far", + "circle-dot" + ], + [ + "vimeo-square", + "fab", + "square-vimeo" + ], + [ + "try", + null, + "turkish-lira-sign" + ], + [ + "turkish-lira", + null, + "turkish-lira-sign" + ], + [ + "plus-square-o", + "far", + "square-plus" + ], + [ + "slack", + "fab", + null + ], + [ + "wordpress", + "fab", + null + ], + [ + "openid", + "fab", + null + ], + [ + "institution", + null, + "building-columns" + ], + [ + "bank", + null, + "building-columns" + ], + [ + "mortar-board", + null, + "graduation-cap" + ], + [ + "yahoo", + "fab", + null + ], + [ + "google", + "fab", + null + ], + [ + "reddit", + "fab", + null + ], + [ + "reddit-square", + "fab", + "square-reddit" + ], + [ + "stumbleupon-circle", + "fab", + null + ], + [ + "stumbleupon", + "fab", + null + ], + [ + "delicious", + "fab", + null + ], + [ + "digg", + "fab", + null + ], + [ + "pied-piper-pp", + "fab", + null + ], + [ + "pied-piper-alt", + "fab", + null + ], + [ + "drupal", + "fab", + null + ], + [ + "joomla", + "fab", + null + ], + [ + "behance", + "fab", + null + ], + [ + "behance-square", + "fab", + "square-behance" + ], + [ + "steam", + "fab", + null + ], + [ + "steam-square", + "fab", + "square-steam" + ], + [ + "automobile", + null, + "car" + ], + [ + "cab", + null, + "taxi" + ], + [ + "spotify", + "fab", + null + ], + [ + "deviantart", + "fab", + null + ], + [ + "soundcloud", + "fab", + null + ], + [ + "file-pdf-o", + "far", + "file-pdf" + ], + [ + "file-word-o", + "far", + "file-word" + ], + [ + "file-excel-o", + "far", + "file-excel" + ], + [ + "file-powerpoint-o", + "far", + "file-powerpoint" + ], + [ + "file-image-o", + "far", + "file-image" + ], + [ + "file-photo-o", + "far", + "file-image" + ], + [ + "file-picture-o", + "far", + "file-image" + ], + [ + "file-archive-o", + "far", + "file-zipper" + ], + [ + "file-zip-o", + "far", + "file-zipper" + ], + [ + "file-audio-o", + "far", + "file-audio" + ], + [ + "file-sound-o", + "far", + "file-audio" + ], + [ + "file-video-o", + "far", + "file-video" + ], + [ + "file-movie-o", + "far", + "file-video" + ], + [ + "file-code-o", + "far", + "file-code" + ], + [ + "vine", + "fab", + null + ], + [ + "codepen", + "fab", + null + ], + [ + "jsfiddle", + "fab", + null + ], + [ + "life-bouy", + null, + "life-ring" + ], + [ + "life-buoy", + null, + "life-ring" + ], + [ + "life-saver", + null, + "life-ring" + ], + [ + "support", + null, + "life-ring" + ], + [ + "circle-o-notch", + null, + "circle-notch" + ], + [ + "rebel", + "fab", + null + ], + [ + "ra", + "fab", + "rebel" + ], + [ + "resistance", + "fab", + "rebel" + ], + [ + "empire", + "fab", + null + ], + [ + "ge", + "fab", + "empire" + ], + [ + "git-square", + "fab", + "square-git" + ], + [ + "git", + "fab", + null + ], + [ + "hacker-news", + "fab", + null + ], + [ + "y-combinator-square", + "fab", + "hacker-news" + ], + [ + "yc-square", + "fab", + "hacker-news" + ], + [ + "tencent-weibo", + "fab", + null + ], + [ + "qq", + "fab", + null + ], + [ + "weixin", + "fab", + null + ], + [ + "wechat", + "fab", + "weixin" + ], + [ + "send", + null, + "paper-plane" + ], + [ + "paper-plane-o", + "far", + "paper-plane" + ], + [ + "send-o", + "far", + "paper-plane" + ], + [ + "circle-thin", + "far", + "circle" + ], + [ + "header", + null, + "heading" + ], + [ + "futbol-o", + "far", + "futbol" + ], + [ + "soccer-ball-o", + "far", + "futbol" + ], + [ + "slideshare", + "fab", + null + ], + [ + "twitch", + "fab", + null + ], + [ + "yelp", + "fab", + null + ], + [ + "newspaper-o", + "far", + "newspaper" + ], + [ + "paypal", + "fab", + null + ], + [ + "google-wallet", + "fab", + null + ], + [ + "cc-visa", + "fab", + null + ], + [ + "cc-mastercard", + "fab", + null + ], + [ + "cc-discover", + "fab", + null + ], + [ + "cc-amex", + "fab", + null + ], + [ + "cc-paypal", + "fab", + null + ], + [ + "cc-stripe", + "fab", + null + ], + [ + "bell-slash-o", + "far", + "bell-slash" + ], + [ + "trash", + null, + "trash-can" + ], + [ + "copyright", + "far", + null + ], + [ + "eyedropper", + null, + "eye-dropper" + ], + [ + "area-chart", + null, + "chart-area" + ], + [ + "pie-chart", + null, + "chart-pie" + ], + [ + "line-chart", + null, + "chart-line" + ], + [ + "lastfm", + "fab", + null + ], + [ + "lastfm-square", + "fab", + "square-lastfm" + ], + [ + "ioxhost", + "fab", + null + ], + [ + "angellist", + "fab", + null + ], + [ + "cc", + "far", + "closed-captioning" + ], + [ + "ils", + null, + "shekel-sign" + ], + [ + "shekel", + null, + "shekel-sign" + ], + [ + "sheqel", + null, + "shekel-sign" + ], + [ + "buysellads", + "fab", + null + ], + [ + "connectdevelop", + "fab", + null + ], + [ + "dashcube", + "fab", + null + ], + [ + "forumbee", + "fab", + null + ], + [ + "leanpub", + "fab", + null + ], + [ + "sellsy", + "fab", + null + ], + [ + "shirtsinbulk", + "fab", + null + ], + [ + "simplybuilt", + "fab", + null + ], + [ + "skyatlas", + "fab", + null + ], + [ + "diamond", + "far", + "gem" + ], + [ + "transgender", + null, + "mars-and-venus" + ], + [ + "intersex", + null, + "mars-and-venus" + ], + [ + "transgender-alt", + null, + "transgender" + ], + [ + "facebook-official", + "fab", + "facebook" + ], + [ + "pinterest-p", + "fab", + null + ], + [ + "whatsapp", + "fab", + null + ], + [ + "hotel", + null, + "bed" + ], + [ + "viacoin", + "fab", + null + ], + [ + "medium", + "fab", + null + ], + [ + "y-combinator", + "fab", + null + ], + [ + "yc", + "fab", + "y-combinator" + ], + [ + "optin-monster", + "fab", + null + ], + [ + "opencart", + "fab", + null + ], + [ + "expeditedssl", + "fab", + null + ], + [ + "battery-4", + null, + "battery-full" + ], + [ + "battery", + null, + "battery-full" + ], + [ + "battery-3", + null, + "battery-three-quarters" + ], + [ + "battery-2", + null, + "battery-half" + ], + [ + "battery-1", + null, + "battery-quarter" + ], + [ + "battery-0", + null, + "battery-empty" + ], + [ + "object-group", + "far", + null + ], + [ + "object-ungroup", + "far", + null + ], + [ + "sticky-note-o", + "far", + "note-sticky" + ], + [ + "cc-jcb", + "fab", + null + ], + [ + "cc-diners-club", + "fab", + null + ], + [ + "clone", + "far", + null + ], + [ + "hourglass-o", + null, + "hourglass" + ], + [ + "hourglass-1", + null, + "hourglass-start" + ], + [ + "hourglass-2", + null, + "hourglass-half" + ], + [ + "hourglass-3", + null, + "hourglass-end" + ], + [ + "hand-rock-o", + "far", + "hand-back-fist" + ], + [ + "hand-grab-o", + "far", + "hand-back-fist" + ], + [ + "hand-paper-o", + "far", + "hand" + ], + [ + "hand-stop-o", + "far", + "hand" + ], + [ + "hand-scissors-o", + "far", + "hand-scissors" + ], + [ + "hand-lizard-o", + "far", + "hand-lizard" + ], + [ + "hand-spock-o", + "far", + "hand-spock" + ], + [ + "hand-pointer-o", + "far", + "hand-pointer" + ], + [ + "hand-peace-o", + "far", + "hand-peace" + ], + [ + "registered", + "far", + null + ], + [ + "creative-commons", + "fab", + null + ], + [ + "gg", + "fab", + null + ], + [ + "gg-circle", + "fab", + null + ], + [ + "odnoklassniki", + "fab", + null + ], + [ + "odnoklassniki-square", + "fab", + "square-odnoklassniki" + ], + [ + "get-pocket", + "fab", + null + ], + [ + "wikipedia-w", + "fab", + null + ], + [ + "safari", + "fab", + null + ], + [ + "chrome", + "fab", + null + ], + [ + "firefox", + "fab", + null + ], + [ + "opera", + "fab", + null + ], + [ + "internet-explorer", + "fab", + null + ], + [ + "television", + null, + "tv" + ], + [ + "contao", + "fab", + null + ], + [ + "500px", + "fab", + null + ], + [ + "amazon", + "fab", + null + ], + [ + "calendar-plus-o", + "far", + "calendar-plus" + ], + [ + "calendar-minus-o", + "far", + "calendar-minus" + ], + [ + "calendar-times-o", + "far", + "calendar-xmark" + ], + [ + "calendar-check-o", + "far", + "calendar-check" + ], + [ + "map-o", + "far", + "map" + ], + [ + "commenting", + null, + "comment-dots" + ], + [ + "commenting-o", + "far", + "comment-dots" + ], + [ + "houzz", + "fab", + null + ], + [ + "vimeo", + "fab", + "vimeo-v" + ], + [ + "black-tie", + "fab", + null + ], + [ + "fonticons", + "fab", + null + ], + [ + "reddit-alien", + "fab", + null + ], + [ + "edge", + "fab", + null + ], + [ + "credit-card-alt", + null, + "credit-card" + ], + [ + "codiepie", + "fab", + null + ], + [ + "modx", + "fab", + null + ], + [ + "fort-awesome", + "fab", + null + ], + [ + "usb", + "fab", + null + ], + [ + "product-hunt", + "fab", + null + ], + [ + "mixcloud", + "fab", + null + ], + [ + "scribd", + "fab", + null + ], + [ + "pause-circle-o", + "far", + "circle-pause" + ], + [ + "stop-circle-o", + "far", + "circle-stop" + ], + [ + "bluetooth", + "fab", + null + ], + [ + "bluetooth-b", + "fab", + null + ], + [ + "gitlab", + "fab", + null + ], + [ + "wpbeginner", + "fab", + null + ], + [ + "wpforms", + "fab", + null + ], + [ + "envira", + "fab", + null + ], + [ + "wheelchair-alt", + "fab", + "accessible-icon" + ], + [ + "question-circle-o", + "far", + "circle-question" + ], + [ + "volume-control-phone", + null, + "phone-volume" + ], + [ + "asl-interpreting", + null, + "hands-asl-interpreting" + ], + [ + "deafness", + null, + "ear-deaf" + ], + [ + "hard-of-hearing", + null, + "ear-deaf" + ], + [ + "glide", + "fab", + null + ], + [ + "glide-g", + "fab", + null + ], + [ + "signing", + null, + "hands" + ], + [ + "viadeo", + "fab", + null + ], + [ + "viadeo-square", + "fab", + "square-viadeo" + ], + [ + "snapchat", + "fab", + null + ], + [ + "snapchat-ghost", + "fab", + "snapchat" + ], + [ + "snapchat-square", + "fab", + "square-snapchat" + ], + [ + "pied-piper", + "fab", + null + ], + [ + "first-order", + "fab", + null + ], + [ + "yoast", + "fab", + null + ], + [ + "themeisle", + "fab", + null + ], + [ + "google-plus-official", + "fab", + "google-plus" + ], + [ + "google-plus-circle", + "fab", + "google-plus" + ], + [ + "font-awesome", + "fab", + null + ], + [ + "fa", + "fab", + "font-awesome" + ], + [ + "handshake-o", + "far", + "handshake" + ], + [ + "envelope-open-o", + "far", + "envelope-open" + ], + [ + "linode", + "fab", + null + ], + [ + "address-book-o", + "far", + "address-book" + ], + [ + "vcard", + null, + "address-card" + ], + [ + "address-card-o", + "far", + "address-card" + ], + [ + "vcard-o", + "far", + "address-card" + ], + [ + "user-circle-o", + "far", + "circle-user" + ], + [ + "user-o", + "far", + "user" + ], + [ + "id-badge", + "far", + null + ], + [ + "drivers-license", + null, + "id-card" + ], + [ + "id-card-o", + "far", + "id-card" + ], + [ + "drivers-license-o", + "far", + "id-card" + ], + [ + "quora", + "fab", + null + ], + [ + "free-code-camp", + "fab", + null + ], + [ + "telegram", + "fab", + null + ], + [ + "thermometer-4", + null, + "temperature-full" + ], + [ + "thermometer", + null, + "temperature-full" + ], + [ + "thermometer-3", + null, + "temperature-three-quarters" + ], + [ + "thermometer-2", + null, + "temperature-half" + ], + [ + "thermometer-1", + null, + "temperature-quarter" + ], + [ + "thermometer-0", + null, + "temperature-empty" + ], + [ + "bathtub", + null, + "bath" + ], + [ + "s15", + null, + "bath" + ], + [ + "window-maximize", + "far", + null + ], + [ + "window-restore", + "far", + null + ], + [ + "times-rectangle", + null, + "rectangle-xmark" + ], + [ + "window-close-o", + "far", + "rectangle-xmark" + ], + [ + "times-rectangle-o", + "far", + "rectangle-xmark" + ], + [ + "bandcamp", + "fab", + null + ], + [ + "grav", + "fab", + null + ], + [ + "etsy", + "fab", + null + ], + [ + "imdb", + "fab", + null + ], + [ + "ravelry", + "fab", + null + ], + [ + "eercast", + "fab", + "sellcast" + ], + [ + "snowflake-o", + "far", + "snowflake" + ], + [ + "superpowers", + "fab", + null + ], + [ + "wpexplorer", + "fab", + null + ], + [ + "meetup", + "fab", + null + ], + [ + 61440, + "fas", + "martini-glass-empty" + ], + [ + 61443, + "far", + "envelope" + ], + [ + 61446, + "far", + "star" + ], + [ + 61460, + "far", + "trash-can" + ], + [ + 61462, + "far", + "file" + ], + [ + 61463, + "far", + "clock" + ], + [ + 61466, + "far", + "circle-down" + ], + [ + 61467, + "far", + "circle-up" + ], + [ + 61469, + "far", + "circle-play" + ], + [ + 61470, + "fas", + "arrow-rotate-right" + ], + [ + 61474, + "far", + "rectangle-list" + ], + [ + 61502, + "far", + "image" + ], + [ + 61505, + "fas", + "location-dot" + ], + [ + 61508, + "far", + "pen-to-square" + ], + [ + 61509, + "fas", + "share-from-square" + ], + [ + 61510, + "far", + "square-check" + ], + [ + 61511, + "fas", + "up-down-left-right" + ], + [ + 61532, + "far", + "circle-xmark" + ], + [ + 61533, + "far", + "circle-check" + ], + [ + 61541, + "fas", + "up-right-and-down-left-from-center" + ], + [ + 61542, + "fas", + "down-left-and-up-right-to-center" + ], + [ + 61550, + "far", + "eye" + ], + [ + 61552, + "far", + "eye-slash" + ], + [ + 61555, + "fas", + "calendar-days" + ], + [ + 61565, + "fas", + "up-down" + ], + [ + 61566, + "fas", + "left-right" + ], + [ + 61568, + "fas", + "chart-column" + ], + [ + 61569, + "fab", + "square-twitter" + ], + [ + 61570, + "fab", + "square-facebook" + ], + [ + 61575, + "far", + "thumbs-up" + ], + [ + 61576, + "far", + "thumbs-down" + ], + [ + 61578, + "far", + "heart" + ], + [ + 61579, + "fas", + "right-from-bracket" + ], + [ + 61580, + "fab", + "linkedin" + ], + [ + 61582, + "fas", + "up-right-from-square" + ], + [ + 61584, + "fas", + "right-to-bracket" + ], + [ + 61586, + "fab", + "square-github" + ], + [ + 61588, + "far", + "lemon" + ], + [ + 61590, + "far", + "square" + ], + [ + 61591, + "far", + "bookmark" + ], + [ + 61593, + "fab", + "twitter" + ], + [ + 61594, + "fab", + "facebook-f" + ], + [ + 61595, + "fab", + "github" + ], + [ + 61597, + "far", + "credit-card" + ], + [ + 61600, + "far", + "hard-drive" + ], + [ + 61604, + "far", + "hand-point-right" + ], + [ + 61605, + "far", + "hand-point-left" + ], + [ + 61606, + "far", + "hand-point-up" + ], + [ + 61607, + "far", + "hand-point-down" + ], + [ + 61612, + "fas", + "earth-americas" + ], + [ + 61614, + "fas", + "bars-progress" + ], + [ + 61618, + "fas", + "maximize" + ], + [ + 61632, + "fas", + "users" + ], + [ + 61637, + "far", + "copy" + ], + [ + 61639, + "far", + "floppy-disk" + ], + [ + 61641, + "fas", + "bars" + ], + [ + 61648, + "fas", + "wand-magic-sparkles" + ], + [ + 61650, + "fab", + "pinterest" + ], + [ + 61651, + "fab", + "square-pinterest" + ], + [ + 61652, + "fab", + "square-google-plus" + ], + [ + 61653, + "fab", + "google-plus-g" + ], + [ + 61654, + "fas", + "money-bill-1" + ], + [ + 61665, + "fab", + "linkedin-in" + ], + [ + 61666, + "fas", + "arrow-rotate-left" + ], + [ + 61668, + "fas", + "gauge-high" + ], + [ + 61669, + "far", + "comment" + ], + [ + 61670, + "far", + "comments" + ], + [ + 61671, + "fas", + "bolt" + ], + [ + 61674, + "fas", + "paste" + ], + [ + 61675, + "far", + "lightbulb" + ], + [ + 61676, + "fas", + "right-left" + ], + [ + 61602, + "far", + "bell" + ], + [ + 61685, + "fas", + "utensils" + ], + [ + 61686, + "far", + "file-lines" + ], + [ + 61687, + "far", + "building" + ], + [ + 61688, + "far", + "hospital" + ], + [ + 61706, + "fas", + "tablet-screen-button" + ], + [ + 61707, + "fas", + "mobile-screen-button" + ], + [ + 61708, + "far", + "circle" + ], + [ + 61714, + "fas", + "reply" + ], + [ + 61715, + "fab", + "github-alt" + ], + [ + 61716, + "far", + "folder" + ], + [ + 61717, + "far", + "folder-open" + ], + [ + 61720, + "far", + "face-smile" + ], + [ + 61721, + "far", + "face-frown" + ], + [ + 61722, + "far", + "face-meh" + ], + [ + 61724, + "far", + "keyboard" + ], + [ + 61725, + "far", + "flag" + ], + [ + 61731, + "far", + "star-half-stroke" + ], + [ + 61734, + "fas", + "code-branch" + ], + [ + 61747, + "far", + "calendar" + ], + [ + 61750, + "fab", + "maxcdn" + ], + [ + 61755, + "fab", + "html5" + ], + [ + 61756, + "fab", + "css3" + ], + [ + 61758, + "fas", + "unlock" + ], + [ + 61767, + "far", + "square-minus" + ], + [ + 61768, + "fas", + "turn-up" + ], + [ + 61769, + "fas", + "turn-down" + ], + [ + 61772, + "fas", + "square-up-right" + ], + [ + 61774, + "far", + "compass" + ], + [ + 61776, + "far", + "square-caret-down" + ], + [ + 61777, + "far", + "square-caret-up" + ], + [ + 61778, + "far", + "square-caret-right" + ], + [ + 61781, + "fas", + "dollar-sign" + ], + [ + 61782, + "fas", + "indian-rupee-sign" + ], + [ + 61786, + "fab", + "btc" + ], + [ + 61790, + "fas", + "arrow-down-z-a" + ], + [ + 61792, + "fas", + "arrow-down-short-wide" + ], + [ + 61793, + "fas", + "arrow-down-wide-short" + ], + [ + 61795, + "fas", + "arrow-down-9-1" + ], + [ + 61798, + "fab", + "square-youtube" + ], + [ + 61799, + "fab", + "youtube" + ], + [ + 61800, + "fab", + "xing" + ], + [ + 61801, + "fab", + "square-xing" + ], + [ + 61802, + "fab", + "youtube" + ], + [ + 61803, + "fab", + "dropbox" + ], + [ + 61804, + "fab", + "stack-overflow" + ], + [ + 61805, + "fab", + "instagram" + ], + [ + 61806, + "fab", + "flickr" + ], + [ + 61808, + "fab", + "adn" + ], + [ + 61809, + "fab", + "bitbucket" + ], + [ + 61810, + "fab", + "bitbucket" + ], + [ + 61811, + "fab", + "tumblr" + ], + [ + 61812, + "fab", + "square-tumblr" + ], + [ + 61813, + "fas", + "down-long" + ], + [ + 61814, + "fas", + "up-long" + ], + [ + 61815, + "fas", + "left-long" + ], + [ + 61816, + "fas", + "right-long" + ], + [ + 61817, + "fab", + "apple" + ], + [ + 61818, + "fab", + "windows" + ], + [ + 61819, + "fab", + "android" + ], + [ + 61820, + "fab", + "linux" + ], + [ + 61821, + "fab", + "dribbble" + ], + [ + 61822, + "fab", + "skype" + ], + [ + 61824, + "fab", + "foursquare" + ], + [ + 61825, + "fab", + "trello" + ], + [ + 61828, + "fab", + "gratipay" + ], + [ + 61829, + "far", + "sun" + ], + [ + 61830, + "far", + "moon" + ], + [ + 61833, + "fab", + "vk" + ], + [ + 61834, + "fab", + "weibo" + ], + [ + 61835, + "fab", + "renren" + ], + [ + 61836, + "fab", + "pagelines" + ], + [ + 61837, + "fab", + "stack-exchange" + ], + [ + 61838, + "far", + "circle-right" + ], + [ + 61840, + "far", + "circle-left" + ], + [ + 61841, + "far", + "square-caret-left" + ], + [ + 61842, + "far", + "circle-dot" + ], + [ + 61844, + "fab", + "square-vimeo" + ], + [ + 61845, + "fas", + "turkish-lira-sign" + ], + [ + 61846, + "far", + "square-plus" + ], + [ + 61848, + "fab", + "slack" + ], + [ + 61850, + "fab", + "wordpress" + ], + [ + 61851, + "fab", + "openid" + ], + [ + 61854, + "fab", + "yahoo" + ], + [ + 61856, + "fab", + "google" + ], + [ + 61857, + "fab", + "reddit" + ], + [ + 61858, + "fab", + "square-reddit" + ], + [ + 61859, + "fab", + "stumbleupon-circle" + ], + [ + 61860, + "fab", + "stumbleupon" + ], + [ + 61861, + "fab", + "delicious" + ], + [ + 61862, + "fab", + "digg" + ], + [ + 61863, + "fab", + "pied-piper-pp" + ], + [ + 61864, + "fab", + "pied-piper-alt" + ], + [ + 61865, + "fab", + "drupal" + ], + [ + 61866, + "fab", + "joomla" + ], + [ + 61876, + "fab", + "behance" + ], + [ + 61877, + "fab", + "square-behance" + ], + [ + 61878, + "fab", + "steam" + ], + [ + 61879, + "fab", + "square-steam" + ], + [ + 61884, + "fab", + "spotify" + ], + [ + 61885, + "fab", + "deviantart" + ], + [ + 61886, + "fab", + "soundcloud" + ], + [ + 61889, + "far", + "file-pdf" + ], + [ + 61890, + "far", + "file-word" + ], + [ + 61891, + "far", + "file-excel" + ], + [ + 61892, + "far", + "file-powerpoint" + ], + [ + 61893, + "far", + "file-image" + ], + [ + 61894, + "far", + "file-zipper" + ], + [ + 61895, + "far", + "file-audio" + ], + [ + 61896, + "far", + "file-video" + ], + [ + 61897, + "far", + "file-code" + ], + [ + 61898, + "fab", + "vine" + ], + [ + 61899, + "fab", + "codepen" + ], + [ + 61900, + "fab", + "jsfiddle" + ], + [ + 61901, + "fas", + "life-ring" + ], + [ + 61902, + "fas", + "circle-notch" + ], + [ + 61904, + "fab", + "rebel" + ], + [ + 61905, + "fab", + "empire" + ], + [ + 61906, + "fab", + "square-git" + ], + [ + 61907, + "fab", + "git" + ], + [ + 61908, + "fab", + "hacker-news" + ], + [ + 61909, + "fab", + "tencent-weibo" + ], + [ + 61910, + "fab", + "qq" + ], + [ + 61911, + "fab", + "weixin" + ], + [ + 61912, + "fas", + "paper-plane" + ], + [ + 61913, + "far", + "paper-plane" + ], + [ + 61915, + "far", + "circle" + ], + [ + 61923, + "far", + "futbol" + ], + [ + 61927, + "fab", + "slideshare" + ], + [ + 61928, + "fab", + "twitch" + ], + [ + 61929, + "fab", + "yelp" + ], + [ + 61930, + "far", + "newspaper" + ], + [ + 61933, + "fab", + "paypal" + ], + [ + 61934, + "fab", + "google-wallet" + ], + [ + 61936, + "fab", + "cc-visa" + ], + [ + 61937, + "fab", + "cc-mastercard" + ], + [ + 61938, + "fab", + "cc-discover" + ], + [ + 61939, + "fab", + "cc-amex" + ], + [ + 61940, + "fab", + "cc-paypal" + ], + [ + 61941, + "fab", + "cc-stripe" + ], + [ + 61943, + "far", + "bell-slash" + ], + [ + 61944, + "fas", + "trash-can" + ], + [ + 61945, + "far", + "copyright" + ], + [ + 61954, + "fab", + "lastfm" + ], + [ + 61955, + "fab", + "square-lastfm" + ], + [ + 61960, + "fab", + "ioxhost" + ], + [ + 61961, + "fab", + "angellist" + ], + [ + 61962, + "far", + "closed-captioning" + ], + [ + 61965, + "fab", + "buysellads" + ], + [ + 61966, + "fab", + "connectdevelop" + ], + [ + 61968, + "fab", + "dashcube" + ], + [ + 61969, + "fab", + "forumbee" + ], + [ + 61970, + "fab", + "leanpub" + ], + [ + 61971, + "fab", + "sellsy" + ], + [ + 61972, + "fab", + "shirtsinbulk" + ], + [ + 61973, + "fab", + "simplybuilt" + ], + [ + 61974, + "fab", + "skyatlas" + ], + [ + 61977, + "far", + "gem" + ], + [ + 61988, + "fas", + "mars-and-venus" + ], + [ + 62000, + "fab", + "facebook" + ], + [ + 62001, + "fab", + "pinterest-p" + ], + [ + 62002, + "fab", + "whatsapp" + ], + [ + 62006, + "fas", + "bed" + ], + [ + 62007, + "fab", + "viacoin" + ], + [ + 62010, + "fab", + "medium" + ], + [ + 62011, + "fab", + "y-combinator" + ], + [ + 62012, + "fab", + "optin-monster" + ], + [ + 62013, + "fab", + "opencart" + ], + [ + 62014, + "fab", + "expeditedssl" + ], + [ + 62016, + "fas", + "battery-full" + ], + [ + 62017, + "fas", + "battery-three-quarters" + ], + [ + 62018, + "fas", + "battery-half" + ], + [ + 62019, + "fas", + "battery-quarter" + ], + [ + 62023, + "far", + "object-group" + ], + [ + 62024, + "far", + "object-ungroup" + ], + [ + 62026, + "far", + "note-sticky" + ], + [ + 62027, + "fab", + "cc-jcb" + ], + [ + 62028, + "fab", + "cc-diners-club" + ], + [ + 62029, + "far", + "clone" + ], + [ + 62032, + "fas", + "hourglass" + ], + [ + 62037, + "far", + "hand-back-fist" + ], + [ + 62038, + "far", + "hand" + ], + [ + 62039, + "far", + "hand-scissors" + ], + [ + 62040, + "far", + "hand-lizard" + ], + [ + 62041, + "far", + "hand-spock" + ], + [ + 62042, + "far", + "hand-pointer" + ], + [ + 62043, + "far", + "hand-peace" + ], + [ + 62045, + "far", + "registered" + ], + [ + 62046, + "fab", + "creative-commons" + ], + [ + 62048, + "fab", + "gg" + ], + [ + 62049, + "fab", + "gg-circle" + ], + [ + 62051, + "fab", + "odnoklassniki" + ], + [ + 62052, + "fab", + "square-odnoklassniki" + ], + [ + 62053, + "fab", + "get-pocket" + ], + [ + 62054, + "fab", + "wikipedia-w" + ], + [ + 62055, + "fab", + "safari" + ], + [ + 62056, + "fab", + "chrome" + ], + [ + 62057, + "fab", + "firefox" + ], + [ + 62058, + "fab", + "opera" + ], + [ + 62059, + "fab", + "internet-explorer" + ], + [ + 62061, + "fab", + "contao" + ], + [ + 62062, + "fab", + "500px" + ], + [ + 62064, + "fab", + "amazon" + ], + [ + 62065, + "far", + "calendar-plus" + ], + [ + 62066, + "far", + "calendar-minus" + ], + [ + 62067, + "far", + "calendar-xmark" + ], + [ + 62068, + "far", + "calendar-check" + ], + [ + 62072, + "far", + "map" + ], + [ + 62074, + "fas", + "comment-dots" + ], + [ + 62075, + "far", + "comment-dots" + ], + [ + 62076, + "fab", + "houzz" + ], + [ + 62077, + "fab", + "vimeo-v" + ], + [ + 62078, + "fab", + "black-tie" + ], + [ + 62080, + "fab", + "fonticons" + ], + [ + 62081, + "fab", + "reddit-alien" + ], + [ + 62082, + "fab", + "edge" + ], + [ + 62083, + "fas", + "credit-card" + ], + [ + 62084, + "fab", + "codiepie" + ], + [ + 62085, + "fab", + "modx" + ], + [ + 62086, + "fab", + "fort-awesome" + ], + [ + 62087, + "fab", + "usb" + ], + [ + 62088, + "fab", + "product-hunt" + ], + [ + 62089, + "fab", + "mixcloud" + ], + [ + 62090, + "fab", + "scribd" + ], + [ + 62092, + "far", + "circle-pause" + ], + [ + 62094, + "far", + "circle-stop" + ], + [ + 62099, + "fab", + "bluetooth" + ], + [ + 62100, + "fab", + "bluetooth-b" + ], + [ + 62102, + "fab", + "gitlab" + ], + [ + 62103, + "fab", + "wpbeginner" + ], + [ + 62104, + "fab", + "wpforms" + ], + [ + 62105, + "fab", + "envira" + ], + [ + 62107, + "fab", + "accessible-icon" + ], + [ + 62108, + "far", + "circle-question" + ], + [ + 62117, + "fab", + "glide" + ], + [ + 62118, + "fab", + "glide-g" + ], + [ + 62121, + "fab", + "viadeo" + ], + [ + 62122, + "fab", + "square-viadeo" + ], + [ + 62123, + "fab", + "snapchat" + ], + [ + 62124, + "fab", + "snapchat" + ], + [ + 62125, + "fab", + "square-snapchat" + ], + [ + 62126, + "fab", + "pied-piper" + ], + [ + 62128, + "fab", + "first-order" + ], + [ + 62129, + "fab", + "yoast" + ], + [ + 62130, + "fab", + "themeisle" + ], + [ + 62131, + "fab", + "google-plus" + ], + [ + 62132, + "fab", + "font-awesome" + ], + [ + 62133, + "far", + "handshake" + ], + [ + 62135, + "far", + "envelope-open" + ], + [ + 62136, + "fab", + "linode" + ], + [ + 62138, + "far", + "address-book" + ], + [ + 62140, + "far", + "address-card" + ], + [ + 62142, + "far", + "circle-user" + ], + [ + 62144, + "far", + "user" + ], + [ + 62145, + "far", + "id-badge" + ], + [ + 62147, + "far", + "id-card" + ], + [ + 62148, + "fab", + "quora" + ], + [ + 62149, + "fab", + "free-code-camp" + ], + [ + 62150, + "fab", + "telegram" + ], + [ + 62151, + "fas", + "temperature-full" + ], + [ + 62157, + "fas", + "bath" + ], + [ + 62160, + "far", + "window-maximize" + ], + [ + 62162, + "far", + "window-restore" + ], + [ + 62163, + "fas", + "rectangle-xmark" + ], + [ + 62164, + "far", + "rectangle-xmark" + ], + [ + 62165, + "fab", + "bandcamp" + ], + [ + 62166, + "fab", + "grav" + ], + [ + 62167, + "fab", + "etsy" + ], + [ + 62168, + "fab", + "imdb" + ], + [ + 62169, + "fab", + "ravelry" + ], + [ + 62170, + "fab", + "sellcast" + ], + [ + 62172, + "far", + "snowflake" + ], + [ + 62173, + "fab", + "superpowers" + ], + [ + 62174, + "fab", + "wpexplorer" + ], + [ + 62176, + "fab", + "meetup" + ] +] \ No newline at end of file diff --git a/vendor/guzzlehttp/psr7/LICENSE b/vendor/guzzlehttp/psr7/LICENSE new file mode 100644 index 00000000..51c7ec81 --- /dev/null +++ b/vendor/guzzlehttp/psr7/LICENSE @@ -0,0 +1,26 @@ +The MIT License (MIT) + +Copyright (c) 2015 Michael Dowling +Copyright (c) 2015 Márk Sági-Kazár +Copyright (c) 2015 Graham Campbell +Copyright (c) 2016 Tobias Schultze +Copyright (c) 2016 George Mponos +Copyright (c) 2018 Tobias Nyholm + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/vendor/guzzlehttp/psr7/composer.json b/vendor/guzzlehttp/psr7/composer.json new file mode 100644 index 00000000..0e36920d --- /dev/null +++ b/vendor/guzzlehttp/psr7/composer.json @@ -0,0 +1,76 @@ +{ + "name": "guzzlehttp/psr7", + "description": "PSR-7 message implementation that also provides common utility methods", + "keywords": ["request", "response", "message", "stream", "http", "uri", "url", "psr-7"], + "license": "MIT", + "authors": [ + { + "name": "Graham Campbell", + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" + }, + { + "name": "Michael Dowling", + "email": "mtdowling@gmail.com", + "homepage": "https://github.com/mtdowling" + }, + { + "name": "George Mponos", + "email": "gmponos@gmail.com", + "homepage": "https://github.com/gmponos" + }, + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com", + "homepage": "https://github.com/Nyholm" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://github.com/sagikazarmark" + }, + { + "name": "Tobias Schultze", + "email": "webmaster@tubo-world.de", + "homepage": "https://github.com/Tobion" + } + ], + "require": { + "php": ">=5.4.0", + "psr/http-message": "~1.0", + "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" + }, + "require-dev": { + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10", + "ext-zlib": "*" + }, + "provide": { + "psr/http-message-implementation": "1.0" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + }, + "autoload": { + "psr-4": { + "GuzzleHttp\\Psr7\\": "src/" + }, + "files": ["src/functions_include.php"] + }, + "autoload-dev": { + "psr-4": { + "GuzzleHttp\\Tests\\Psr7\\": "tests/" + } + }, + "extra": { + "branch-alias": { + "dev-master": "1.9-dev" + } + }, + "config": { + "preferred-install": "dist", + "sort-packages": true, + "allow-plugins": { + "bamarni/composer-bin-plugin": true + } + } +} diff --git a/vendor/guzzlehttp/psr7/src/AppendStream.php b/vendor/guzzlehttp/psr7/src/AppendStream.php new file mode 100644 index 00000000..fa9153d7 --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/AppendStream.php @@ -0,0 +1,246 @@ +addStream($stream); + } + } + + public function __toString() + { + try { + $this->rewind(); + return $this->getContents(); + } catch (\Exception $e) { + return ''; + } + } + + /** + * Add a stream to the AppendStream + * + * @param StreamInterface $stream Stream to append. Must be readable. + * + * @throws \InvalidArgumentException if the stream is not readable + */ + public function addStream(StreamInterface $stream) + { + if (!$stream->isReadable()) { + throw new \InvalidArgumentException('Each stream must be readable'); + } + + // The stream is only seekable if all streams are seekable + if (!$stream->isSeekable()) { + $this->seekable = false; + } + + $this->streams[] = $stream; + } + + public function getContents() + { + return Utils::copyToString($this); + } + + /** + * Closes each attached stream. + * + * {@inheritdoc} + */ + public function close() + { + $this->pos = $this->current = 0; + $this->seekable = true; + + foreach ($this->streams as $stream) { + $stream->close(); + } + + $this->streams = []; + } + + /** + * Detaches each attached stream. + * + * Returns null as it's not clear which underlying stream resource to return. + * + * {@inheritdoc} + */ + public function detach() + { + $this->pos = $this->current = 0; + $this->seekable = true; + + foreach ($this->streams as $stream) { + $stream->detach(); + } + + $this->streams = []; + + return null; + } + + public function tell() + { + return $this->pos; + } + + /** + * Tries to calculate the size by adding the size of each stream. + * + * If any of the streams do not return a valid number, then the size of the + * append stream cannot be determined and null is returned. + * + * {@inheritdoc} + */ + public function getSize() + { + $size = 0; + + foreach ($this->streams as $stream) { + $s = $stream->getSize(); + if ($s === null) { + return null; + } + $size += $s; + } + + return $size; + } + + public function eof() + { + return !$this->streams || + ($this->current >= count($this->streams) - 1 && + $this->streams[$this->current]->eof()); + } + + public function rewind() + { + $this->seek(0); + } + + /** + * Attempts to seek to the given position. Only supports SEEK_SET. + * + * {@inheritdoc} + */ + public function seek($offset, $whence = SEEK_SET) + { + if (!$this->seekable) { + throw new \RuntimeException('This AppendStream is not seekable'); + } elseif ($whence !== SEEK_SET) { + throw new \RuntimeException('The AppendStream can only seek with SEEK_SET'); + } + + $this->pos = $this->current = 0; + + // Rewind each stream + foreach ($this->streams as $i => $stream) { + try { + $stream->rewind(); + } catch (\Exception $e) { + throw new \RuntimeException('Unable to seek stream ' + . $i . ' of the AppendStream', 0, $e); + } + } + + // Seek to the actual position by reading from each stream + while ($this->pos < $offset && !$this->eof()) { + $result = $this->read(min(8096, $offset - $this->pos)); + if ($result === '') { + break; + } + } + } + + /** + * Reads from all of the appended streams until the length is met or EOF. + * + * {@inheritdoc} + */ + public function read($length) + { + $buffer = ''; + $total = count($this->streams) - 1; + $remaining = $length; + $progressToNext = false; + + while ($remaining > 0) { + + // Progress to the next stream if needed. + if ($progressToNext || $this->streams[$this->current]->eof()) { + $progressToNext = false; + if ($this->current === $total) { + break; + } + $this->current++; + } + + $result = $this->streams[$this->current]->read($remaining); + + // Using a loose comparison here to match on '', false, and null + if ($result == null) { + $progressToNext = true; + continue; + } + + $buffer .= $result; + $remaining = $length - strlen($buffer); + } + + $this->pos += strlen($buffer); + + return $buffer; + } + + public function isReadable() + { + return true; + } + + public function isWritable() + { + return false; + } + + public function isSeekable() + { + return $this->seekable; + } + + public function write($string) + { + throw new \RuntimeException('Cannot write to an AppendStream'); + } + + public function getMetadata($key = null) + { + return $key ? null : []; + } +} diff --git a/vendor/guzzlehttp/psr7/src/BufferStream.php b/vendor/guzzlehttp/psr7/src/BufferStream.php new file mode 100644 index 00000000..783859c1 --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/BufferStream.php @@ -0,0 +1,142 @@ +hwm = $hwm; + } + + public function __toString() + { + return $this->getContents(); + } + + public function getContents() + { + $buffer = $this->buffer; + $this->buffer = ''; + + return $buffer; + } + + public function close() + { + $this->buffer = ''; + } + + public function detach() + { + $this->close(); + + return null; + } + + public function getSize() + { + return strlen($this->buffer); + } + + public function isReadable() + { + return true; + } + + public function isWritable() + { + return true; + } + + public function isSeekable() + { + return false; + } + + public function rewind() + { + $this->seek(0); + } + + public function seek($offset, $whence = SEEK_SET) + { + throw new \RuntimeException('Cannot seek a BufferStream'); + } + + public function eof() + { + return strlen($this->buffer) === 0; + } + + public function tell() + { + throw new \RuntimeException('Cannot determine the position of a BufferStream'); + } + + /** + * Reads data from the buffer. + */ + public function read($length) + { + $currentLength = strlen($this->buffer); + + if ($length >= $currentLength) { + // No need to slice the buffer because we don't have enough data. + $result = $this->buffer; + $this->buffer = ''; + } else { + // Slice up the result to provide a subset of the buffer. + $result = substr($this->buffer, 0, $length); + $this->buffer = substr($this->buffer, $length); + } + + return $result; + } + + /** + * Writes data to the buffer. + */ + public function write($string) + { + $this->buffer .= $string; + + // TODO: What should happen here? + if (strlen($this->buffer) >= $this->hwm) { + return false; + } + + return strlen($string); + } + + public function getMetadata($key = null) + { + if ($key == 'hwm') { + return $this->hwm; + } + + return $key ? null : []; + } +} diff --git a/vendor/guzzlehttp/psr7/src/CachingStream.php b/vendor/guzzlehttp/psr7/src/CachingStream.php new file mode 100644 index 00000000..febade9f --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/CachingStream.php @@ -0,0 +1,147 @@ +remoteStream = $stream; + $this->stream = $target ?: new Stream(Utils::tryFopen('php://temp', 'r+')); + } + + public function getSize() + { + $remoteSize = $this->remoteStream->getSize(); + + if (null === $remoteSize) { + return null; + } + + return max($this->stream->getSize(), $remoteSize); + } + + public function rewind() + { + $this->seek(0); + } + + public function seek($offset, $whence = SEEK_SET) + { + if ($whence == SEEK_SET) { + $byte = $offset; + } elseif ($whence == SEEK_CUR) { + $byte = $offset + $this->tell(); + } elseif ($whence == SEEK_END) { + $size = $this->remoteStream->getSize(); + if ($size === null) { + $size = $this->cacheEntireStream(); + } + $byte = $size + $offset; + } else { + throw new \InvalidArgumentException('Invalid whence'); + } + + $diff = $byte - $this->stream->getSize(); + + if ($diff > 0) { + // Read the remoteStream until we have read in at least the amount + // of bytes requested, or we reach the end of the file. + while ($diff > 0 && !$this->remoteStream->eof()) { + $this->read($diff); + $diff = $byte - $this->stream->getSize(); + } + } else { + // We can just do a normal seek since we've already seen this byte. + $this->stream->seek($byte); + } + } + + public function read($length) + { + // Perform a regular read on any previously read data from the buffer + $data = $this->stream->read($length); + $remaining = $length - strlen($data); + + // More data was requested so read from the remote stream + if ($remaining) { + // If data was written to the buffer in a position that would have + // been filled from the remote stream, then we must skip bytes on + // the remote stream to emulate overwriting bytes from that + // position. This mimics the behavior of other PHP stream wrappers. + $remoteData = $this->remoteStream->read( + $remaining + $this->skipReadBytes + ); + + if ($this->skipReadBytes) { + $len = strlen($remoteData); + $remoteData = substr($remoteData, $this->skipReadBytes); + $this->skipReadBytes = max(0, $this->skipReadBytes - $len); + } + + $data .= $remoteData; + $this->stream->write($remoteData); + } + + return $data; + } + + public function write($string) + { + // When appending to the end of the currently read stream, you'll want + // to skip bytes from being read from the remote stream to emulate + // other stream wrappers. Basically replacing bytes of data of a fixed + // length. + $overflow = (strlen($string) + $this->tell()) - $this->remoteStream->tell(); + if ($overflow > 0) { + $this->skipReadBytes += $overflow; + } + + return $this->stream->write($string); + } + + public function eof() + { + return $this->stream->eof() && $this->remoteStream->eof(); + } + + /** + * Close both the remote stream and buffer stream + */ + public function close() + { + $this->remoteStream->close() && $this->stream->close(); + } + + private function cacheEntireStream() + { + $target = new FnStream(['write' => 'strlen']); + Utils::copyToStream($this, $target); + + return $this->tell(); + } +} diff --git a/vendor/guzzlehttp/psr7/src/DroppingStream.php b/vendor/guzzlehttp/psr7/src/DroppingStream.php new file mode 100644 index 00000000..9f7420c4 --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/DroppingStream.php @@ -0,0 +1,45 @@ +stream = $stream; + $this->maxLength = $maxLength; + } + + public function write($string) + { + $diff = $this->maxLength - $this->stream->getSize(); + + // Begin returning 0 when the underlying stream is too large. + if ($diff <= 0) { + return 0; + } + + // Write the stream or a subset of the stream if needed. + if (strlen($string) < $diff) { + return $this->stream->write($string); + } + + return $this->stream->write(substr($string, 0, $diff)); + } +} diff --git a/vendor/guzzlehttp/psr7/src/FnStream.php b/vendor/guzzlehttp/psr7/src/FnStream.php new file mode 100644 index 00000000..76a8cc7b --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/FnStream.php @@ -0,0 +1,163 @@ +methods = $methods; + + // Create the functions on the class + foreach ($methods as $name => $fn) { + $this->{'_fn_' . $name} = $fn; + } + } + + /** + * Lazily determine which methods are not implemented. + * + * @throws \BadMethodCallException + */ + public function __get($name) + { + throw new \BadMethodCallException(str_replace('_fn_', '', $name) + . '() is not implemented in the FnStream'); + } + + /** + * The close method is called on the underlying stream only if possible. + */ + public function __destruct() + { + if (isset($this->_fn_close)) { + call_user_func($this->_fn_close); + } + } + + /** + * An unserialize would allow the __destruct to run when the unserialized value goes out of scope. + * + * @throws \LogicException + */ + public function __wakeup() + { + throw new \LogicException('FnStream should never be unserialized'); + } + + /** + * Adds custom functionality to an underlying stream by intercepting + * specific method calls. + * + * @param StreamInterface $stream Stream to decorate + * @param array $methods Hash of method name to a closure + * + * @return FnStream + */ + public static function decorate(StreamInterface $stream, array $methods) + { + // If any of the required methods were not provided, then simply + // proxy to the decorated stream. + foreach (array_diff(self::$slots, array_keys($methods)) as $diff) { + $methods[$diff] = [$stream, $diff]; + } + + return new self($methods); + } + + public function __toString() + { + return call_user_func($this->_fn___toString); + } + + public function close() + { + return call_user_func($this->_fn_close); + } + + public function detach() + { + return call_user_func($this->_fn_detach); + } + + public function getSize() + { + return call_user_func($this->_fn_getSize); + } + + public function tell() + { + return call_user_func($this->_fn_tell); + } + + public function eof() + { + return call_user_func($this->_fn_eof); + } + + public function isSeekable() + { + return call_user_func($this->_fn_isSeekable); + } + + public function rewind() + { + call_user_func($this->_fn_rewind); + } + + public function seek($offset, $whence = SEEK_SET) + { + call_user_func($this->_fn_seek, $offset, $whence); + } + + public function isWritable() + { + return call_user_func($this->_fn_isWritable); + } + + public function write($string) + { + return call_user_func($this->_fn_write, $string); + } + + public function isReadable() + { + return call_user_func($this->_fn_isReadable); + } + + public function read($length) + { + return call_user_func($this->_fn_read, $length); + } + + public function getContents() + { + return call_user_func($this->_fn_getContents); + } + + public function getMetadata($key = null) + { + return call_user_func($this->_fn_getMetadata, $key); + } +} diff --git a/vendor/guzzlehttp/psr7/src/Header.php b/vendor/guzzlehttp/psr7/src/Header.php new file mode 100644 index 00000000..865d7421 --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/Header.php @@ -0,0 +1,71 @@ +]+>|[^=]+/', $kvp, $matches)) { + $m = $matches[0]; + if (isset($m[1])) { + $part[trim($m[0], $trimmed)] = trim($m[1], $trimmed); + } else { + $part[] = trim($m[0], $trimmed); + } + } + } + if ($part) { + $params[] = $part; + } + } + + return $params; + } + + /** + * Converts an array of header values that may contain comma separated + * headers into an array of headers with no comma separated values. + * + * @param string|array $header Header to normalize. + * + * @return array Returns the normalized header field values. + */ + public static function normalize($header) + { + if (!is_array($header)) { + return array_map('trim', explode(',', $header)); + } + + $result = []; + foreach ($header as $value) { + foreach ((array) $value as $v) { + if (strpos($v, ',') === false) { + $result[] = $v; + continue; + } + foreach (preg_split('/,(?=([^"]*"[^"]*")*[^"]*$)/', $v) as $vv) { + $result[] = trim($vv); + } + } + } + + return $result; + } +} diff --git a/vendor/guzzlehttp/psr7/src/InflateStream.php b/vendor/guzzlehttp/psr7/src/InflateStream.php new file mode 100644 index 00000000..0cbd2cce --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/InflateStream.php @@ -0,0 +1,56 @@ +read(10); + $filenameHeaderLength = $this->getLengthOfPossibleFilenameHeader($stream, $header); + // Skip the header, that is 10 + length of filename + 1 (nil) bytes + $stream = new LimitStream($stream, -1, 10 + $filenameHeaderLength); + $resource = StreamWrapper::getResource($stream); + stream_filter_append($resource, 'zlib.inflate', STREAM_FILTER_READ); + $this->stream = $stream->isSeekable() ? new Stream($resource) : new NoSeekStream(new Stream($resource)); + } + + /** + * @param StreamInterface $stream + * @param $header + * + * @return int + */ + private function getLengthOfPossibleFilenameHeader(StreamInterface $stream, $header) + { + $filename_header_length = 0; + + if (substr(bin2hex($header), 6, 2) === '08') { + // we have a filename, read until nil + $filename_header_length = 1; + while ($stream->read(1) !== chr(0)) { + $filename_header_length++; + } + } + + return $filename_header_length; + } +} diff --git a/vendor/guzzlehttp/psr7/src/LazyOpenStream.php b/vendor/guzzlehttp/psr7/src/LazyOpenStream.php new file mode 100644 index 00000000..911e127d --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/LazyOpenStream.php @@ -0,0 +1,42 @@ +filename = $filename; + $this->mode = $mode; + } + + /** + * Creates the underlying stream lazily when required. + * + * @return StreamInterface + */ + protected function createStream() + { + return Utils::streamFor(Utils::tryFopen($this->filename, $this->mode)); + } +} diff --git a/vendor/guzzlehttp/psr7/src/LimitStream.php b/vendor/guzzlehttp/psr7/src/LimitStream.php new file mode 100644 index 00000000..1173ec40 --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/LimitStream.php @@ -0,0 +1,157 @@ +stream = $stream; + $this->setLimit($limit); + $this->setOffset($offset); + } + + public function eof() + { + // Always return true if the underlying stream is EOF + if ($this->stream->eof()) { + return true; + } + + // No limit and the underlying stream is not at EOF + if ($this->limit == -1) { + return false; + } + + return $this->stream->tell() >= $this->offset + $this->limit; + } + + /** + * Returns the size of the limited subset of data + * {@inheritdoc} + */ + public function getSize() + { + if (null === ($length = $this->stream->getSize())) { + return null; + } elseif ($this->limit == -1) { + return $length - $this->offset; + } else { + return min($this->limit, $length - $this->offset); + } + } + + /** + * Allow for a bounded seek on the read limited stream + * {@inheritdoc} + */ + public function seek($offset, $whence = SEEK_SET) + { + if ($whence !== SEEK_SET || $offset < 0) { + throw new \RuntimeException(sprintf( + 'Cannot seek to offset %s with whence %s', + $offset, + $whence + )); + } + + $offset += $this->offset; + + if ($this->limit !== -1) { + if ($offset > $this->offset + $this->limit) { + $offset = $this->offset + $this->limit; + } + } + + $this->stream->seek($offset); + } + + /** + * Give a relative tell() + * {@inheritdoc} + */ + public function tell() + { + return $this->stream->tell() - $this->offset; + } + + /** + * Set the offset to start limiting from + * + * @param int $offset Offset to seek to and begin byte limiting from + * + * @throws \RuntimeException if the stream cannot be seeked. + */ + public function setOffset($offset) + { + $current = $this->stream->tell(); + + if ($current !== $offset) { + // If the stream cannot seek to the offset position, then read to it + if ($this->stream->isSeekable()) { + $this->stream->seek($offset); + } elseif ($current > $offset) { + throw new \RuntimeException("Could not seek to stream offset $offset"); + } else { + $this->stream->read($offset - $current); + } + } + + $this->offset = $offset; + } + + /** + * Set the limit of bytes that the decorator allows to be read from the + * stream. + * + * @param int $limit Number of bytes to allow to be read from the stream. + * Use -1 for no limit. + */ + public function setLimit($limit) + { + $this->limit = $limit; + } + + public function read($length) + { + if ($this->limit == -1) { + return $this->stream->read($length); + } + + // Check if the current position is less than the total allowed + // bytes + original offset + $remaining = ($this->offset + $this->limit) - $this->stream->tell(); + if ($remaining > 0) { + // Only return the amount of requested data, ensuring that the byte + // limit is not exceeded + return $this->stream->read(min($remaining, $length)); + } + + return ''; + } +} diff --git a/vendor/guzzlehttp/psr7/src/Message.php b/vendor/guzzlehttp/psr7/src/Message.php new file mode 100644 index 00000000..516d1cb8 --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/Message.php @@ -0,0 +1,252 @@ +getMethod() . ' ' + . $message->getRequestTarget()) + . ' HTTP/' . $message->getProtocolVersion(); + if (!$message->hasHeader('host')) { + $msg .= "\r\nHost: " . $message->getUri()->getHost(); + } + } elseif ($message instanceof ResponseInterface) { + $msg = 'HTTP/' . $message->getProtocolVersion() . ' ' + . $message->getStatusCode() . ' ' + . $message->getReasonPhrase(); + } else { + throw new \InvalidArgumentException('Unknown message type'); + } + + foreach ($message->getHeaders() as $name => $values) { + if (strtolower($name) === 'set-cookie') { + foreach ($values as $value) { + $msg .= "\r\n{$name}: " . $value; + } + } else { + $msg .= "\r\n{$name}: " . implode(', ', $values); + } + } + + return "{$msg}\r\n\r\n" . $message->getBody(); + } + + /** + * Get a short summary of the message body. + * + * Will return `null` if the response is not printable. + * + * @param MessageInterface $message The message to get the body summary + * @param int $truncateAt The maximum allowed size of the summary + * + * @return string|null + */ + public static function bodySummary(MessageInterface $message, $truncateAt = 120) + { + $body = $message->getBody(); + + if (!$body->isSeekable() || !$body->isReadable()) { + return null; + } + + $size = $body->getSize(); + + if ($size === 0) { + return null; + } + + $summary = $body->read($truncateAt); + $body->rewind(); + + if ($size > $truncateAt) { + $summary .= ' (truncated...)'; + } + + // Matches any printable character, including unicode characters: + // letters, marks, numbers, punctuation, spacing, and separators. + if (preg_match('/[^\pL\pM\pN\pP\pS\pZ\n\r\t]/u', $summary)) { + return null; + } + + return $summary; + } + + /** + * Attempts to rewind a message body and throws an exception on failure. + * + * The body of the message will only be rewound if a call to `tell()` + * returns a value other than `0`. + * + * @param MessageInterface $message Message to rewind + * + * @throws \RuntimeException + */ + public static function rewindBody(MessageInterface $message) + { + $body = $message->getBody(); + + if ($body->tell()) { + $body->rewind(); + } + } + + /** + * Parses an HTTP message into an associative array. + * + * The array contains the "start-line" key containing the start line of + * the message, "headers" key containing an associative array of header + * array values, and a "body" key containing the body of the message. + * + * @param string $message HTTP request or response to parse. + * + * @return array + */ + public static function parseMessage($message) + { + if (!$message) { + throw new \InvalidArgumentException('Invalid message'); + } + + $message = ltrim($message, "\r\n"); + + $messageParts = preg_split("/\r?\n\r?\n/", $message, 2); + + if ($messageParts === false || count($messageParts) !== 2) { + throw new \InvalidArgumentException('Invalid message: Missing header delimiter'); + } + + list($rawHeaders, $body) = $messageParts; + $rawHeaders .= "\r\n"; // Put back the delimiter we split previously + $headerParts = preg_split("/\r?\n/", $rawHeaders, 2); + + if ($headerParts === false || count($headerParts) !== 2) { + throw new \InvalidArgumentException('Invalid message: Missing status line'); + } + + list($startLine, $rawHeaders) = $headerParts; + + if (preg_match("/(?:^HTTP\/|^[A-Z]+ \S+ HTTP\/)(\d+(?:\.\d+)?)/i", $startLine, $matches) && $matches[1] === '1.0') { + // Header folding is deprecated for HTTP/1.1, but allowed in HTTP/1.0 + $rawHeaders = preg_replace(Rfc7230::HEADER_FOLD_REGEX, ' ', $rawHeaders); + } + + /** @var array[] $headerLines */ + $count = preg_match_all(Rfc7230::HEADER_REGEX, $rawHeaders, $headerLines, PREG_SET_ORDER); + + // If these aren't the same, then one line didn't match and there's an invalid header. + if ($count !== substr_count($rawHeaders, "\n")) { + // Folding is deprecated, see https://tools.ietf.org/html/rfc7230#section-3.2.4 + if (preg_match(Rfc7230::HEADER_FOLD_REGEX, $rawHeaders)) { + throw new \InvalidArgumentException('Invalid header syntax: Obsolete line folding'); + } + + throw new \InvalidArgumentException('Invalid header syntax'); + } + + $headers = []; + + foreach ($headerLines as $headerLine) { + $headers[$headerLine[1]][] = $headerLine[2]; + } + + return [ + 'start-line' => $startLine, + 'headers' => $headers, + 'body' => $body, + ]; + } + + /** + * Constructs a URI for an HTTP request message. + * + * @param string $path Path from the start-line + * @param array $headers Array of headers (each value an array). + * + * @return string + */ + public static function parseRequestUri($path, array $headers) + { + $hostKey = array_filter(array_keys($headers), function ($k) { + return strtolower($k) === 'host'; + }); + + // If no host is found, then a full URI cannot be constructed. + if (!$hostKey) { + return $path; + } + + $host = $headers[reset($hostKey)][0]; + $scheme = substr($host, -4) === ':443' ? 'https' : 'http'; + + return $scheme . '://' . $host . '/' . ltrim($path, '/'); + } + + /** + * Parses a request message string into a request object. + * + * @param string $message Request message string. + * + * @return Request + */ + public static function parseRequest($message) + { + $data = self::parseMessage($message); + $matches = []; + if (!preg_match('/^[\S]+\s+([a-zA-Z]+:\/\/|\/).*/', $data['start-line'], $matches)) { + throw new \InvalidArgumentException('Invalid request string'); + } + $parts = explode(' ', $data['start-line'], 3); + $version = isset($parts[2]) ? explode('/', $parts[2])[1] : '1.1'; + + $request = new Request( + $parts[0], + $matches[1] === '/' ? self::parseRequestUri($parts[1], $data['headers']) : $parts[1], + $data['headers'], + $data['body'], + $version + ); + + return $matches[1] === '/' ? $request : $request->withRequestTarget($parts[1]); + } + + /** + * Parses a response message string into a response object. + * + * @param string $message Response message string. + * + * @return Response + */ + public static function parseResponse($message) + { + $data = self::parseMessage($message); + // According to https://tools.ietf.org/html/rfc7230#section-3.1.2 the space + // between status-code and reason-phrase is required. But browsers accept + // responses without space and reason as well. + if (!preg_match('/^HTTP\/.* [0-9]{3}( .*|$)/', $data['start-line'])) { + throw new \InvalidArgumentException('Invalid response string: ' . $data['start-line']); + } + $parts = explode(' ', $data['start-line'], 3); + + return new Response( + (int) $parts[1], + $data['headers'], + $data['body'], + explode('/', $parts[0])[1], + isset($parts[2]) ? $parts[2] : null + ); + } +} diff --git a/vendor/guzzlehttp/psr7/src/MessageTrait.php b/vendor/guzzlehttp/psr7/src/MessageTrait.php new file mode 100644 index 00000000..0ac8663d --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/MessageTrait.php @@ -0,0 +1,270 @@ + array of values */ + private $headers = []; + + /** @var array Map of lowercase header name => original name at registration */ + private $headerNames = []; + + /** @var string */ + private $protocol = '1.1'; + + /** @var StreamInterface|null */ + private $stream; + + public function getProtocolVersion() + { + return $this->protocol; + } + + public function withProtocolVersion($version) + { + if ($this->protocol === $version) { + return $this; + } + + $new = clone $this; + $new->protocol = $version; + return $new; + } + + public function getHeaders() + { + return $this->headers; + } + + public function hasHeader($header) + { + return isset($this->headerNames[strtolower($header)]); + } + + public function getHeader($header) + { + $header = strtolower($header); + + if (!isset($this->headerNames[$header])) { + return []; + } + + $header = $this->headerNames[$header]; + + return $this->headers[$header]; + } + + public function getHeaderLine($header) + { + return implode(', ', $this->getHeader($header)); + } + + public function withHeader($header, $value) + { + $this->assertHeader($header); + $value = $this->normalizeHeaderValue($value); + $normalized = strtolower($header); + + $new = clone $this; + if (isset($new->headerNames[$normalized])) { + unset($new->headers[$new->headerNames[$normalized]]); + } + $new->headerNames[$normalized] = $header; + $new->headers[$header] = $value; + + return $new; + } + + public function withAddedHeader($header, $value) + { + $this->assertHeader($header); + $value = $this->normalizeHeaderValue($value); + $normalized = strtolower($header); + + $new = clone $this; + if (isset($new->headerNames[$normalized])) { + $header = $this->headerNames[$normalized]; + $new->headers[$header] = array_merge($this->headers[$header], $value); + } else { + $new->headerNames[$normalized] = $header; + $new->headers[$header] = $value; + } + + return $new; + } + + public function withoutHeader($header) + { + $normalized = strtolower($header); + + if (!isset($this->headerNames[$normalized])) { + return $this; + } + + $header = $this->headerNames[$normalized]; + + $new = clone $this; + unset($new->headers[$header], $new->headerNames[$normalized]); + + return $new; + } + + public function getBody() + { + if (!$this->stream) { + $this->stream = Utils::streamFor(''); + } + + return $this->stream; + } + + public function withBody(StreamInterface $body) + { + if ($body === $this->stream) { + return $this; + } + + $new = clone $this; + $new->stream = $body; + return $new; + } + + private function setHeaders(array $headers) + { + $this->headerNames = $this->headers = []; + foreach ($headers as $header => $value) { + if (is_int($header)) { + // Numeric array keys are converted to int by PHP but having a header name '123' is not forbidden by the spec + // and also allowed in withHeader(). So we need to cast it to string again for the following assertion to pass. + $header = (string) $header; + } + $this->assertHeader($header); + $value = $this->normalizeHeaderValue($value); + $normalized = strtolower($header); + if (isset($this->headerNames[$normalized])) { + $header = $this->headerNames[$normalized]; + $this->headers[$header] = array_merge($this->headers[$header], $value); + } else { + $this->headerNames[$normalized] = $header; + $this->headers[$header] = $value; + } + } + } + + /** + * @param mixed $value + * + * @return string[] + */ + private function normalizeHeaderValue($value) + { + if (!is_array($value)) { + return $this->trimAndValidateHeaderValues([$value]); + } + + if (count($value) === 0) { + throw new \InvalidArgumentException('Header value can not be an empty array.'); + } + + return $this->trimAndValidateHeaderValues($value); + } + + /** + * Trims whitespace from the header values. + * + * Spaces and tabs ought to be excluded by parsers when extracting the field value from a header field. + * + * header-field = field-name ":" OWS field-value OWS + * OWS = *( SP / HTAB ) + * + * @param mixed[] $values Header values + * + * @return string[] Trimmed header values + * + * @see https://tools.ietf.org/html/rfc7230#section-3.2.4 + */ + private function trimAndValidateHeaderValues(array $values) + { + return array_map(function ($value) { + if (!is_scalar($value) && null !== $value) { + throw new \InvalidArgumentException(sprintf( + 'Header value must be scalar or null but %s provided.', + is_object($value) ? get_class($value) : gettype($value) + )); + } + + $trimmed = trim((string) $value, " \t"); + $this->assertValue($trimmed); + + return $trimmed; + }, array_values($values)); + } + + /** + * @see https://tools.ietf.org/html/rfc7230#section-3.2 + * + * @param mixed $header + * + * @return void + */ + private function assertHeader($header) + { + if (!is_string($header)) { + throw new \InvalidArgumentException(sprintf( + 'Header name must be a string but %s provided.', + is_object($header) ? get_class($header) : gettype($header) + )); + } + + if ($header === '') { + throw new \InvalidArgumentException('Header name can not be empty.'); + } + + if (! preg_match('/^[a-zA-Z0-9\'`#$%&*+.^_|~!-]+$/', $header)) { + throw new \InvalidArgumentException( + sprintf( + '"%s" is not valid header name', + $header + ) + ); + } + } + + /** + * @param string $value + * + * @return void + * + * @see https://tools.ietf.org/html/rfc7230#section-3.2 + * + * field-value = *( field-content / obs-fold ) + * field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ] + * field-vchar = VCHAR / obs-text + * VCHAR = %x21-7E + * obs-text = %x80-FF + * obs-fold = CRLF 1*( SP / HTAB ) + */ + private function assertValue($value) + { + // The regular expression intentionally does not support the obs-fold production, because as + // per RFC 7230#3.2.4: + // + // A sender MUST NOT generate a message that includes + // line folding (i.e., that has any field-value that contains a match to + // the obs-fold rule) unless the message is intended for packaging + // within the message/http media type. + // + // Clients must not send a request with line folding and a server sending folded headers is + // likely very rare. Line folding is a fairly obscure feature of HTTP/1.1 and thus not accepting + // folding is not likely to break any legitimate use case. + if (! preg_match('/^[\x20\x09\x21-\x7E\x80-\xFF]*$/', $value)) { + throw new \InvalidArgumentException(sprintf('"%s" is not valid header value', $value)); + } + } +} diff --git a/vendor/guzzlehttp/psr7/src/MimeType.php b/vendor/guzzlehttp/psr7/src/MimeType.php new file mode 100644 index 00000000..205c7b1f --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/MimeType.php @@ -0,0 +1,140 @@ + 'video/3gpp', + '7z' => 'application/x-7z-compressed', + 'aac' => 'audio/x-aac', + 'ai' => 'application/postscript', + 'aif' => 'audio/x-aiff', + 'asc' => 'text/plain', + 'asf' => 'video/x-ms-asf', + 'atom' => 'application/atom+xml', + 'avi' => 'video/x-msvideo', + 'bmp' => 'image/bmp', + 'bz2' => 'application/x-bzip2', + 'cer' => 'application/pkix-cert', + 'crl' => 'application/pkix-crl', + 'crt' => 'application/x-x509-ca-cert', + 'css' => 'text/css', + 'csv' => 'text/csv', + 'cu' => 'application/cu-seeme', + 'deb' => 'application/x-debian-package', + 'doc' => 'application/msword', + 'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', + 'dvi' => 'application/x-dvi', + 'eot' => 'application/vnd.ms-fontobject', + 'eps' => 'application/postscript', + 'epub' => 'application/epub+zip', + 'etx' => 'text/x-setext', + 'flac' => 'audio/flac', + 'flv' => 'video/x-flv', + 'gif' => 'image/gif', + 'gz' => 'application/gzip', + 'htm' => 'text/html', + 'html' => 'text/html', + 'ico' => 'image/x-icon', + 'ics' => 'text/calendar', + 'ini' => 'text/plain', + 'iso' => 'application/x-iso9660-image', + 'jar' => 'application/java-archive', + 'jpe' => 'image/jpeg', + 'jpeg' => 'image/jpeg', + 'jpg' => 'image/jpeg', + 'js' => 'text/javascript', + 'json' => 'application/json', + 'latex' => 'application/x-latex', + 'log' => 'text/plain', + 'm4a' => 'audio/mp4', + 'm4v' => 'video/mp4', + 'mid' => 'audio/midi', + 'midi' => 'audio/midi', + 'mov' => 'video/quicktime', + 'mkv' => 'video/x-matroska', + 'mp3' => 'audio/mpeg', + 'mp4' => 'video/mp4', + 'mp4a' => 'audio/mp4', + 'mp4v' => 'video/mp4', + 'mpe' => 'video/mpeg', + 'mpeg' => 'video/mpeg', + 'mpg' => 'video/mpeg', + 'mpg4' => 'video/mp4', + 'oga' => 'audio/ogg', + 'ogg' => 'audio/ogg', + 'ogv' => 'video/ogg', + 'ogx' => 'application/ogg', + 'pbm' => 'image/x-portable-bitmap', + 'pdf' => 'application/pdf', + 'pgm' => 'image/x-portable-graymap', + 'png' => 'image/png', + 'pnm' => 'image/x-portable-anymap', + 'ppm' => 'image/x-portable-pixmap', + 'ppt' => 'application/vnd.ms-powerpoint', + 'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation', + 'ps' => 'application/postscript', + 'qt' => 'video/quicktime', + 'rar' => 'application/x-rar-compressed', + 'ras' => 'image/x-cmu-raster', + 'rss' => 'application/rss+xml', + 'rtf' => 'application/rtf', + 'sgm' => 'text/sgml', + 'sgml' => 'text/sgml', + 'svg' => 'image/svg+xml', + 'swf' => 'application/x-shockwave-flash', + 'tar' => 'application/x-tar', + 'tif' => 'image/tiff', + 'tiff' => 'image/tiff', + 'torrent' => 'application/x-bittorrent', + 'ttf' => 'application/x-font-ttf', + 'txt' => 'text/plain', + 'wav' => 'audio/x-wav', + 'webm' => 'video/webm', + 'webp' => 'image/webp', + 'wma' => 'audio/x-ms-wma', + 'wmv' => 'video/x-ms-wmv', + 'woff' => 'application/x-font-woff', + 'wsdl' => 'application/wsdl+xml', + 'xbm' => 'image/x-xbitmap', + 'xls' => 'application/vnd.ms-excel', + 'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', + 'xml' => 'application/xml', + 'xpm' => 'image/x-xpixmap', + 'xwd' => 'image/x-xwindowdump', + 'yaml' => 'text/yaml', + 'yml' => 'text/yaml', + 'zip' => 'application/zip', + ]; + + $extension = strtolower($extension); + + return isset($mimetypes[$extension]) + ? $mimetypes[$extension] + : null; + } +} diff --git a/vendor/guzzlehttp/psr7/src/MultipartStream.php b/vendor/guzzlehttp/psr7/src/MultipartStream.php new file mode 100644 index 00000000..5a6079a8 --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/MultipartStream.php @@ -0,0 +1,158 @@ +boundary = $boundary ?: sha1(uniqid('', true)); + $this->stream = $this->createStream($elements); + } + + /** + * Get the boundary + * + * @return string + */ + public function getBoundary() + { + return $this->boundary; + } + + public function isWritable() + { + return false; + } + + /** + * Get the headers needed before transferring the content of a POST file + */ + private function getHeaders(array $headers) + { + $str = ''; + foreach ($headers as $key => $value) { + $str .= "{$key}: {$value}\r\n"; + } + + return "--{$this->boundary}\r\n" . trim($str) . "\r\n\r\n"; + } + + /** + * Create the aggregate stream that will be used to upload the POST data + */ + protected function createStream(array $elements) + { + $stream = new AppendStream(); + + foreach ($elements as $element) { + $this->addElement($stream, $element); + } + + // Add the trailing boundary with CRLF + $stream->addStream(Utils::streamFor("--{$this->boundary}--\r\n")); + + return $stream; + } + + private function addElement(AppendStream $stream, array $element) + { + foreach (['contents', 'name'] as $key) { + if (!array_key_exists($key, $element)) { + throw new \InvalidArgumentException("A '{$key}' key is required"); + } + } + + $element['contents'] = Utils::streamFor($element['contents']); + + if (empty($element['filename'])) { + $uri = $element['contents']->getMetadata('uri'); + if (substr($uri, 0, 6) !== 'php://') { + $element['filename'] = $uri; + } + } + + list($body, $headers) = $this->createElement( + $element['name'], + $element['contents'], + isset($element['filename']) ? $element['filename'] : null, + isset($element['headers']) ? $element['headers'] : [] + ); + + $stream->addStream(Utils::streamFor($this->getHeaders($headers))); + $stream->addStream($body); + $stream->addStream(Utils::streamFor("\r\n")); + } + + /** + * @return array + */ + private function createElement($name, StreamInterface $stream, $filename, array $headers) + { + // Set a default content-disposition header if one was no provided + $disposition = $this->getHeader($headers, 'content-disposition'); + if (!$disposition) { + $headers['Content-Disposition'] = ($filename === '0' || $filename) + ? sprintf( + 'form-data; name="%s"; filename="%s"', + $name, + basename($filename) + ) + : "form-data; name=\"{$name}\""; + } + + // Set a default content-length header if one was no provided + $length = $this->getHeader($headers, 'content-length'); + if (!$length) { + if ($length = $stream->getSize()) { + $headers['Content-Length'] = (string) $length; + } + } + + // Set a default Content-Type if one was not supplied + $type = $this->getHeader($headers, 'content-type'); + if (!$type && ($filename === '0' || $filename)) { + if ($type = MimeType::fromFilename($filename)) { + $headers['Content-Type'] = $type; + } + } + + return [$stream, $headers]; + } + + private function getHeader(array $headers, $key) + { + $lowercaseHeader = strtolower($key); + foreach ($headers as $k => $v) { + if (strtolower($k) === $lowercaseHeader) { + return $v; + } + } + + return null; + } +} diff --git a/vendor/guzzlehttp/psr7/src/NoSeekStream.php b/vendor/guzzlehttp/psr7/src/NoSeekStream.php new file mode 100644 index 00000000..d66bdde4 --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/NoSeekStream.php @@ -0,0 +1,25 @@ +source = $source; + $this->size = isset($options['size']) ? $options['size'] : null; + $this->metadata = isset($options['metadata']) ? $options['metadata'] : []; + $this->buffer = new BufferStream(); + } + + public function __toString() + { + try { + return Utils::copyToString($this); + } catch (\Exception $e) { + return ''; + } + } + + public function close() + { + $this->detach(); + } + + public function detach() + { + $this->tellPos = false; + $this->source = null; + + return null; + } + + public function getSize() + { + return $this->size; + } + + public function tell() + { + return $this->tellPos; + } + + public function eof() + { + return !$this->source; + } + + public function isSeekable() + { + return false; + } + + public function rewind() + { + $this->seek(0); + } + + public function seek($offset, $whence = SEEK_SET) + { + throw new \RuntimeException('Cannot seek a PumpStream'); + } + + public function isWritable() + { + return false; + } + + public function write($string) + { + throw new \RuntimeException('Cannot write to a PumpStream'); + } + + public function isReadable() + { + return true; + } + + public function read($length) + { + $data = $this->buffer->read($length); + $readLen = strlen($data); + $this->tellPos += $readLen; + $remaining = $length - $readLen; + + if ($remaining) { + $this->pump($remaining); + $data .= $this->buffer->read($remaining); + $this->tellPos += strlen($data) - $readLen; + } + + return $data; + } + + public function getContents() + { + $result = ''; + while (!$this->eof()) { + $result .= $this->read(1000000); + } + + return $result; + } + + public function getMetadata($key = null) + { + if (!$key) { + return $this->metadata; + } + + return isset($this->metadata[$key]) ? $this->metadata[$key] : null; + } + + private function pump($length) + { + if ($this->source) { + do { + $data = call_user_func($this->source, $length); + if ($data === false || $data === null) { + $this->source = null; + return; + } + $this->buffer->write($data); + $length -= strlen($data); + } while ($length > 0); + } + } +} diff --git a/vendor/guzzlehttp/psr7/src/Query.php b/vendor/guzzlehttp/psr7/src/Query.php new file mode 100644 index 00000000..5a7cc035 --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/Query.php @@ -0,0 +1,113 @@ + '1', 'foo[b]' => '2'])`. + * + * @param string $str Query string to parse + * @param int|bool $urlEncoding How the query string is encoded + * + * @return array + */ + public static function parse($str, $urlEncoding = true) + { + $result = []; + + if ($str === '') { + return $result; + } + + if ($urlEncoding === true) { + $decoder = function ($value) { + return rawurldecode(str_replace('+', ' ', $value)); + }; + } elseif ($urlEncoding === PHP_QUERY_RFC3986) { + $decoder = 'rawurldecode'; + } elseif ($urlEncoding === PHP_QUERY_RFC1738) { + $decoder = 'urldecode'; + } else { + $decoder = function ($str) { + return $str; + }; + } + + foreach (explode('&', $str) as $kvp) { + $parts = explode('=', $kvp, 2); + $key = $decoder($parts[0]); + $value = isset($parts[1]) ? $decoder($parts[1]) : null; + if (!isset($result[$key])) { + $result[$key] = $value; + } else { + if (!is_array($result[$key])) { + $result[$key] = [$result[$key]]; + } + $result[$key][] = $value; + } + } + + return $result; + } + + /** + * Build a query string from an array of key value pairs. + * + * This function can use the return value of `parse()` to build a query + * string. This function does not modify the provided keys when an array is + * encountered (like `http_build_query()` would). + * + * @param array $params Query string parameters. + * @param int|false $encoding Set to false to not encode, PHP_QUERY_RFC3986 + * to encode using RFC3986, or PHP_QUERY_RFC1738 + * to encode using RFC1738. + * + * @return string + */ + public static function build(array $params, $encoding = PHP_QUERY_RFC3986) + { + if (!$params) { + return ''; + } + + if ($encoding === false) { + $encoder = function ($str) { + return $str; + }; + } elseif ($encoding === PHP_QUERY_RFC3986) { + $encoder = 'rawurlencode'; + } elseif ($encoding === PHP_QUERY_RFC1738) { + $encoder = 'urlencode'; + } else { + throw new \InvalidArgumentException('Invalid type'); + } + + $qs = ''; + foreach ($params as $k => $v) { + $k = $encoder($k); + if (!is_array($v)) { + $qs .= $k; + if ($v !== null) { + $qs .= '=' . $encoder($v); + } + $qs .= '&'; + } else { + foreach ($v as $vv) { + $qs .= $k; + if ($vv !== null) { + $qs .= '=' . $encoder($vv); + } + $qs .= '&'; + } + } + } + + return $qs ? (string) substr($qs, 0, -1) : ''; + } +} diff --git a/vendor/guzzlehttp/psr7/src/Request.php b/vendor/guzzlehttp/psr7/src/Request.php new file mode 100644 index 00000000..c1cdaebf --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/Request.php @@ -0,0 +1,152 @@ +assertMethod($method); + if (!($uri instanceof UriInterface)) { + $uri = new Uri($uri); + } + + $this->method = strtoupper($method); + $this->uri = $uri; + $this->setHeaders($headers); + $this->protocol = $version; + + if (!isset($this->headerNames['host'])) { + $this->updateHostFromUri(); + } + + if ($body !== '' && $body !== null) { + $this->stream = Utils::streamFor($body); + } + } + + public function getRequestTarget() + { + if ($this->requestTarget !== null) { + return $this->requestTarget; + } + + $target = $this->uri->getPath(); + if ($target == '') { + $target = '/'; + } + if ($this->uri->getQuery() != '') { + $target .= '?' . $this->uri->getQuery(); + } + + return $target; + } + + public function withRequestTarget($requestTarget) + { + if (preg_match('#\s#', $requestTarget)) { + throw new InvalidArgumentException( + 'Invalid request target provided; cannot contain whitespace' + ); + } + + $new = clone $this; + $new->requestTarget = $requestTarget; + return $new; + } + + public function getMethod() + { + return $this->method; + } + + public function withMethod($method) + { + $this->assertMethod($method); + $new = clone $this; + $new->method = strtoupper($method); + return $new; + } + + public function getUri() + { + return $this->uri; + } + + public function withUri(UriInterface $uri, $preserveHost = false) + { + if ($uri === $this->uri) { + return $this; + } + + $new = clone $this; + $new->uri = $uri; + + if (!$preserveHost || !isset($this->headerNames['host'])) { + $new->updateHostFromUri(); + } + + return $new; + } + + private function updateHostFromUri() + { + $host = $this->uri->getHost(); + + if ($host == '') { + return; + } + + if (($port = $this->uri->getPort()) !== null) { + $host .= ':' . $port; + } + + if (isset($this->headerNames['host'])) { + $header = $this->headerNames['host']; + } else { + $header = 'Host'; + $this->headerNames['host'] = 'Host'; + } + // Ensure Host is the first header. + // See: http://tools.ietf.org/html/rfc7230#section-5.4 + $this->headers = [$header => [$host]] + $this->headers; + } + + private function assertMethod($method) + { + if (!is_string($method) || $method === '') { + throw new \InvalidArgumentException('Method must be a non-empty string.'); + } + } +} diff --git a/vendor/guzzlehttp/psr7/src/Response.php b/vendor/guzzlehttp/psr7/src/Response.php new file mode 100644 index 00000000..8c01a0f5 --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/Response.php @@ -0,0 +1,155 @@ + 'Continue', + 101 => 'Switching Protocols', + 102 => 'Processing', + 200 => 'OK', + 201 => 'Created', + 202 => 'Accepted', + 203 => 'Non-Authoritative Information', + 204 => 'No Content', + 205 => 'Reset Content', + 206 => 'Partial Content', + 207 => 'Multi-status', + 208 => 'Already Reported', + 300 => 'Multiple Choices', + 301 => 'Moved Permanently', + 302 => 'Found', + 303 => 'See Other', + 304 => 'Not Modified', + 305 => 'Use Proxy', + 306 => 'Switch Proxy', + 307 => 'Temporary Redirect', + 400 => 'Bad Request', + 401 => 'Unauthorized', + 402 => 'Payment Required', + 403 => 'Forbidden', + 404 => 'Not Found', + 405 => 'Method Not Allowed', + 406 => 'Not Acceptable', + 407 => 'Proxy Authentication Required', + 408 => 'Request Time-out', + 409 => 'Conflict', + 410 => 'Gone', + 411 => 'Length Required', + 412 => 'Precondition Failed', + 413 => 'Request Entity Too Large', + 414 => 'Request-URI Too Large', + 415 => 'Unsupported Media Type', + 416 => 'Requested range not satisfiable', + 417 => 'Expectation Failed', + 418 => 'I\'m a teapot', + 422 => 'Unprocessable Entity', + 423 => 'Locked', + 424 => 'Failed Dependency', + 425 => 'Unordered Collection', + 426 => 'Upgrade Required', + 428 => 'Precondition Required', + 429 => 'Too Many Requests', + 431 => 'Request Header Fields Too Large', + 451 => 'Unavailable For Legal Reasons', + 500 => 'Internal Server Error', + 501 => 'Not Implemented', + 502 => 'Bad Gateway', + 503 => 'Service Unavailable', + 504 => 'Gateway Time-out', + 505 => 'HTTP Version not supported', + 506 => 'Variant Also Negotiates', + 507 => 'Insufficient Storage', + 508 => 'Loop Detected', + 511 => 'Network Authentication Required', + ]; + + /** @var string */ + private $reasonPhrase = ''; + + /** @var int */ + private $statusCode = 200; + + /** + * @param int $status Status code + * @param array $headers Response headers + * @param string|resource|StreamInterface|null $body Response body + * @param string $version Protocol version + * @param string|null $reason Reason phrase (when empty a default will be used based on the status code) + */ + public function __construct( + $status = 200, + array $headers = [], + $body = null, + $version = '1.1', + $reason = null + ) { + $this->assertStatusCodeIsInteger($status); + $status = (int) $status; + $this->assertStatusCodeRange($status); + + $this->statusCode = $status; + + if ($body !== '' && $body !== null) { + $this->stream = Utils::streamFor($body); + } + + $this->setHeaders($headers); + if ($reason == '' && isset(self::$phrases[$this->statusCode])) { + $this->reasonPhrase = self::$phrases[$this->statusCode]; + } else { + $this->reasonPhrase = (string) $reason; + } + + $this->protocol = $version; + } + + public function getStatusCode() + { + return $this->statusCode; + } + + public function getReasonPhrase() + { + return $this->reasonPhrase; + } + + public function withStatus($code, $reasonPhrase = '') + { + $this->assertStatusCodeIsInteger($code); + $code = (int) $code; + $this->assertStatusCodeRange($code); + + $new = clone $this; + $new->statusCode = $code; + if ($reasonPhrase == '' && isset(self::$phrases[$new->statusCode])) { + $reasonPhrase = self::$phrases[$new->statusCode]; + } + $new->reasonPhrase = (string) $reasonPhrase; + return $new; + } + + private function assertStatusCodeIsInteger($statusCode) + { + if (filter_var($statusCode, FILTER_VALIDATE_INT) === false) { + throw new \InvalidArgumentException('Status code must be an integer value.'); + } + } + + private function assertStatusCodeRange($statusCode) + { + if ($statusCode < 100 || $statusCode >= 600) { + throw new \InvalidArgumentException('Status code must be an integer value between 1xx and 5xx.'); + } + } +} diff --git a/vendor/guzzlehttp/psr7/src/Rfc7230.php b/vendor/guzzlehttp/psr7/src/Rfc7230.php new file mode 100644 index 00000000..51b571f2 --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/Rfc7230.php @@ -0,0 +1,19 @@ +@,;:\\\"/[\]?={}\x01-\x20\x7F]++):[ \t]*+((?:[ \t]*+[\x21-\x7E\x80-\xFF]++)*+)[ \t]*+\r?\n)m"; + const HEADER_FOLD_REGEX = "(\r?\n[ \t]++)"; +} diff --git a/vendor/guzzlehttp/psr7/src/ServerRequest.php b/vendor/guzzlehttp/psr7/src/ServerRequest.php new file mode 100644 index 00000000..e6d26f5f --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/ServerRequest.php @@ -0,0 +1,379 @@ +serverParams = $serverParams; + + parent::__construct($method, $uri, $headers, $body, $version); + } + + /** + * Return an UploadedFile instance array. + * + * @param array $files A array which respect $_FILES structure + * + * @return array + * + * @throws InvalidArgumentException for unrecognized values + */ + public static function normalizeFiles(array $files) + { + $normalized = []; + + foreach ($files as $key => $value) { + if ($value instanceof UploadedFileInterface) { + $normalized[$key] = $value; + } elseif (is_array($value) && isset($value['tmp_name'])) { + $normalized[$key] = self::createUploadedFileFromSpec($value); + } elseif (is_array($value)) { + $normalized[$key] = self::normalizeFiles($value); + continue; + } else { + throw new InvalidArgumentException('Invalid value in files specification'); + } + } + + return $normalized; + } + + /** + * Create and return an UploadedFile instance from a $_FILES specification. + * + * If the specification represents an array of values, this method will + * delegate to normalizeNestedFileSpec() and return that return value. + * + * @param array $value $_FILES struct + * + * @return array|UploadedFileInterface + */ + private static function createUploadedFileFromSpec(array $value) + { + if (is_array($value['tmp_name'])) { + return self::normalizeNestedFileSpec($value); + } + + return new UploadedFile( + $value['tmp_name'], + (int) $value['size'], + (int) $value['error'], + $value['name'], + $value['type'] + ); + } + + /** + * Normalize an array of file specifications. + * + * Loops through all nested files and returns a normalized array of + * UploadedFileInterface instances. + * + * @param array $files + * + * @return UploadedFileInterface[] + */ + private static function normalizeNestedFileSpec(array $files = []) + { + $normalizedFiles = []; + + foreach (array_keys($files['tmp_name']) as $key) { + $spec = [ + 'tmp_name' => $files['tmp_name'][$key], + 'size' => $files['size'][$key], + 'error' => $files['error'][$key], + 'name' => $files['name'][$key], + 'type' => $files['type'][$key], + ]; + $normalizedFiles[$key] = self::createUploadedFileFromSpec($spec); + } + + return $normalizedFiles; + } + + /** + * Return a ServerRequest populated with superglobals: + * $_GET + * $_POST + * $_COOKIE + * $_FILES + * $_SERVER + * + * @return ServerRequestInterface + */ + public static function fromGlobals() + { + $method = isset($_SERVER['REQUEST_METHOD']) ? $_SERVER['REQUEST_METHOD'] : 'GET'; + $headers = getallheaders(); + $uri = self::getUriFromGlobals(); + $body = new CachingStream(new LazyOpenStream('php://input', 'r+')); + $protocol = isset($_SERVER['SERVER_PROTOCOL']) ? str_replace('HTTP/', '', $_SERVER['SERVER_PROTOCOL']) : '1.1'; + + $serverRequest = new ServerRequest($method, $uri, $headers, $body, $protocol, $_SERVER); + + return $serverRequest + ->withCookieParams($_COOKIE) + ->withQueryParams($_GET) + ->withParsedBody($_POST) + ->withUploadedFiles(self::normalizeFiles($_FILES)); + } + + private static function extractHostAndPortFromAuthority($authority) + { + $uri = 'http://' . $authority; + $parts = parse_url($uri); + if (false === $parts) { + return [null, null]; + } + + $host = isset($parts['host']) ? $parts['host'] : null; + $port = isset($parts['port']) ? $parts['port'] : null; + + return [$host, $port]; + } + + /** + * Get a Uri populated with values from $_SERVER. + * + * @return UriInterface + */ + public static function getUriFromGlobals() + { + $uri = new Uri(''); + + $uri = $uri->withScheme(!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' ? 'https' : 'http'); + + $hasPort = false; + if (isset($_SERVER['HTTP_HOST'])) { + list($host, $port) = self::extractHostAndPortFromAuthority($_SERVER['HTTP_HOST']); + if ($host !== null) { + $uri = $uri->withHost($host); + } + + if ($port !== null) { + $hasPort = true; + $uri = $uri->withPort($port); + } + } elseif (isset($_SERVER['SERVER_NAME'])) { + $uri = $uri->withHost($_SERVER['SERVER_NAME']); + } elseif (isset($_SERVER['SERVER_ADDR'])) { + $uri = $uri->withHost($_SERVER['SERVER_ADDR']); + } + + if (!$hasPort && isset($_SERVER['SERVER_PORT'])) { + $uri = $uri->withPort($_SERVER['SERVER_PORT']); + } + + $hasQuery = false; + if (isset($_SERVER['REQUEST_URI'])) { + $requestUriParts = explode('?', $_SERVER['REQUEST_URI'], 2); + $uri = $uri->withPath($requestUriParts[0]); + if (isset($requestUriParts[1])) { + $hasQuery = true; + $uri = $uri->withQuery($requestUriParts[1]); + } + } + + if (!$hasQuery && isset($_SERVER['QUERY_STRING'])) { + $uri = $uri->withQuery($_SERVER['QUERY_STRING']); + } + + return $uri; + } + + /** + * {@inheritdoc} + */ + public function getServerParams() + { + return $this->serverParams; + } + + /** + * {@inheritdoc} + */ + public function getUploadedFiles() + { + return $this->uploadedFiles; + } + + /** + * {@inheritdoc} + */ + public function withUploadedFiles(array $uploadedFiles) + { + $new = clone $this; + $new->uploadedFiles = $uploadedFiles; + + return $new; + } + + /** + * {@inheritdoc} + */ + public function getCookieParams() + { + return $this->cookieParams; + } + + /** + * {@inheritdoc} + */ + public function withCookieParams(array $cookies) + { + $new = clone $this; + $new->cookieParams = $cookies; + + return $new; + } + + /** + * {@inheritdoc} + */ + public function getQueryParams() + { + return $this->queryParams; + } + + /** + * {@inheritdoc} + */ + public function withQueryParams(array $query) + { + $new = clone $this; + $new->queryParams = $query; + + return $new; + } + + /** + * {@inheritdoc} + */ + public function getParsedBody() + { + return $this->parsedBody; + } + + /** + * {@inheritdoc} + */ + public function withParsedBody($data) + { + $new = clone $this; + $new->parsedBody = $data; + + return $new; + } + + /** + * {@inheritdoc} + */ + public function getAttributes() + { + return $this->attributes; + } + + /** + * {@inheritdoc} + */ + public function getAttribute($attribute, $default = null) + { + if (false === array_key_exists($attribute, $this->attributes)) { + return $default; + } + + return $this->attributes[$attribute]; + } + + /** + * {@inheritdoc} + */ + public function withAttribute($attribute, $value) + { + $new = clone $this; + $new->attributes[$attribute] = $value; + + return $new; + } + + /** + * {@inheritdoc} + */ + public function withoutAttribute($attribute) + { + if (false === array_key_exists($attribute, $this->attributes)) { + return $this; + } + + $new = clone $this; + unset($new->attributes[$attribute]); + + return $new; + } +} diff --git a/vendor/guzzlehttp/psr7/src/Stream.php b/vendor/guzzlehttp/psr7/src/Stream.php new file mode 100644 index 00000000..3865d6d6 --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/Stream.php @@ -0,0 +1,270 @@ +size = $options['size']; + } + + $this->customMetadata = isset($options['metadata']) + ? $options['metadata'] + : []; + + $this->stream = $stream; + $meta = stream_get_meta_data($this->stream); + $this->seekable = $meta['seekable']; + $this->readable = (bool)preg_match(self::READABLE_MODES, $meta['mode']); + $this->writable = (bool)preg_match(self::WRITABLE_MODES, $meta['mode']); + $this->uri = $this->getMetadata('uri'); + } + + /** + * Closes the stream when the destructed + */ + public function __destruct() + { + $this->close(); + } + + public function __toString() + { + try { + if ($this->isSeekable()) { + $this->seek(0); + } + return $this->getContents(); + } catch (\Exception $e) { + return ''; + } + } + + public function getContents() + { + if (!isset($this->stream)) { + throw new \RuntimeException('Stream is detached'); + } + + $contents = stream_get_contents($this->stream); + + if ($contents === false) { + throw new \RuntimeException('Unable to read stream contents'); + } + + return $contents; + } + + public function close() + { + if (isset($this->stream)) { + if (is_resource($this->stream)) { + fclose($this->stream); + } + $this->detach(); + } + } + + public function detach() + { + if (!isset($this->stream)) { + return null; + } + + $result = $this->stream; + unset($this->stream); + $this->size = $this->uri = null; + $this->readable = $this->writable = $this->seekable = false; + + return $result; + } + + public function getSize() + { + if ($this->size !== null) { + return $this->size; + } + + if (!isset($this->stream)) { + return null; + } + + // Clear the stat cache if the stream has a URI + if ($this->uri) { + clearstatcache(true, $this->uri); + } + + $stats = fstat($this->stream); + if (isset($stats['size'])) { + $this->size = $stats['size']; + return $this->size; + } + + return null; + } + + public function isReadable() + { + return $this->readable; + } + + public function isWritable() + { + return $this->writable; + } + + public function isSeekable() + { + return $this->seekable; + } + + public function eof() + { + if (!isset($this->stream)) { + throw new \RuntimeException('Stream is detached'); + } + + return feof($this->stream); + } + + public function tell() + { + if (!isset($this->stream)) { + throw new \RuntimeException('Stream is detached'); + } + + $result = ftell($this->stream); + + if ($result === false) { + throw new \RuntimeException('Unable to determine stream position'); + } + + return $result; + } + + public function rewind() + { + $this->seek(0); + } + + public function seek($offset, $whence = SEEK_SET) + { + $whence = (int) $whence; + + if (!isset($this->stream)) { + throw new \RuntimeException('Stream is detached'); + } + if (!$this->seekable) { + throw new \RuntimeException('Stream is not seekable'); + } + if (fseek($this->stream, $offset, $whence) === -1) { + throw new \RuntimeException('Unable to seek to stream position ' + . $offset . ' with whence ' . var_export($whence, true)); + } + } + + public function read($length) + { + if (!isset($this->stream)) { + throw new \RuntimeException('Stream is detached'); + } + if (!$this->readable) { + throw new \RuntimeException('Cannot read from non-readable stream'); + } + if ($length < 0) { + throw new \RuntimeException('Length parameter cannot be negative'); + } + + if (0 === $length) { + return ''; + } + + $string = fread($this->stream, $length); + if (false === $string) { + throw new \RuntimeException('Unable to read from stream'); + } + + return $string; + } + + public function write($string) + { + if (!isset($this->stream)) { + throw new \RuntimeException('Stream is detached'); + } + if (!$this->writable) { + throw new \RuntimeException('Cannot write to a non-writable stream'); + } + + // We can't know the size after writing anything + $this->size = null; + $result = fwrite($this->stream, $string); + + if ($result === false) { + throw new \RuntimeException('Unable to write to stream'); + } + + return $result; + } + + public function getMetadata($key = null) + { + if (!isset($this->stream)) { + return $key ? null : []; + } elseif (!$key) { + return $this->customMetadata + stream_get_meta_data($this->stream); + } elseif (isset($this->customMetadata[$key])) { + return $this->customMetadata[$key]; + } + + $meta = stream_get_meta_data($this->stream); + + return isset($meta[$key]) ? $meta[$key] : null; + } +} diff --git a/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php b/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php new file mode 100644 index 00000000..5025dd67 --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php @@ -0,0 +1,152 @@ +stream = $stream; + } + + /** + * Magic method used to create a new stream if streams are not added in + * the constructor of a decorator (e.g., LazyOpenStream). + * + * @param string $name Name of the property (allows "stream" only). + * + * @return StreamInterface + */ + public function __get($name) + { + if ($name == 'stream') { + $this->stream = $this->createStream(); + return $this->stream; + } + + throw new \UnexpectedValueException("$name not found on class"); + } + + public function __toString() + { + try { + if ($this->isSeekable()) { + $this->seek(0); + } + return $this->getContents(); + } catch (\Exception $e) { + // Really, PHP? https://bugs.php.net/bug.php?id=53648 + trigger_error('StreamDecorator::__toString exception: ' + . (string) $e, E_USER_ERROR); + return ''; + } + } + + public function getContents() + { + return Utils::copyToString($this); + } + + /** + * Allow decorators to implement custom methods + * + * @param string $method Missing method name + * @param array $args Method arguments + * + * @return mixed + */ + public function __call($method, array $args) + { + $result = call_user_func_array([$this->stream, $method], $args); + + // Always return the wrapped object if the result is a return $this + return $result === $this->stream ? $this : $result; + } + + public function close() + { + $this->stream->close(); + } + + public function getMetadata($key = null) + { + return $this->stream->getMetadata($key); + } + + public function detach() + { + return $this->stream->detach(); + } + + public function getSize() + { + return $this->stream->getSize(); + } + + public function eof() + { + return $this->stream->eof(); + } + + public function tell() + { + return $this->stream->tell(); + } + + public function isReadable() + { + return $this->stream->isReadable(); + } + + public function isWritable() + { + return $this->stream->isWritable(); + } + + public function isSeekable() + { + return $this->stream->isSeekable(); + } + + public function rewind() + { + $this->seek(0); + } + + public function seek($offset, $whence = SEEK_SET) + { + $this->stream->seek($offset, $whence); + } + + public function read($length) + { + return $this->stream->read($length); + } + + public function write($string) + { + return $this->stream->write($string); + } + + /** + * Implement in subclasses to dynamically create streams when requested. + * + * @return StreamInterface + * + * @throws \BadMethodCallException + */ + protected function createStream() + { + throw new \BadMethodCallException('Not implemented'); + } +} diff --git a/vendor/guzzlehttp/psr7/src/StreamWrapper.php b/vendor/guzzlehttp/psr7/src/StreamWrapper.php new file mode 100644 index 00000000..fc7cb969 --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/StreamWrapper.php @@ -0,0 +1,165 @@ +isReadable()) { + $mode = $stream->isWritable() ? 'r+' : 'r'; + } elseif ($stream->isWritable()) { + $mode = 'w'; + } else { + throw new \InvalidArgumentException('The stream must be readable, ' + . 'writable, or both.'); + } + + return fopen('guzzle://stream', $mode, null, self::createStreamContext($stream)); + } + + /** + * Creates a stream context that can be used to open a stream as a php stream resource. + * + * @param StreamInterface $stream + * + * @return resource + */ + public static function createStreamContext(StreamInterface $stream) + { + return stream_context_create([ + 'guzzle' => ['stream' => $stream] + ]); + } + + /** + * Registers the stream wrapper if needed + */ + public static function register() + { + if (!in_array('guzzle', stream_get_wrappers())) { + stream_wrapper_register('guzzle', __CLASS__); + } + } + + public function stream_open($path, $mode, $options, &$opened_path) + { + $options = stream_context_get_options($this->context); + + if (!isset($options['guzzle']['stream'])) { + return false; + } + + $this->mode = $mode; + $this->stream = $options['guzzle']['stream']; + + return true; + } + + public function stream_read($count) + { + return $this->stream->read($count); + } + + public function stream_write($data) + { + return (int) $this->stream->write($data); + } + + public function stream_tell() + { + return $this->stream->tell(); + } + + public function stream_eof() + { + return $this->stream->eof(); + } + + public function stream_seek($offset, $whence) + { + $this->stream->seek($offset, $whence); + + return true; + } + + public function stream_cast($cast_as) + { + $stream = clone($this->stream); + + return $stream->detach(); + } + + public function stream_stat() + { + static $modeMap = [ + 'r' => 33060, + 'rb' => 33060, + 'r+' => 33206, + 'w' => 33188, + 'wb' => 33188 + ]; + + return [ + 'dev' => 0, + 'ino' => 0, + 'mode' => $modeMap[$this->mode], + 'nlink' => 0, + 'uid' => 0, + 'gid' => 0, + 'rdev' => 0, + 'size' => $this->stream->getSize() ?: 0, + 'atime' => 0, + 'mtime' => 0, + 'ctime' => 0, + 'blksize' => 0, + 'blocks' => 0 + ]; + } + + public function url_stat($path, $flags) + { + return [ + 'dev' => 0, + 'ino' => 0, + 'mode' => 0, + 'nlink' => 0, + 'uid' => 0, + 'gid' => 0, + 'rdev' => 0, + 'size' => 0, + 'atime' => 0, + 'mtime' => 0, + 'ctime' => 0, + 'blksize' => 0, + 'blocks' => 0 + ]; + } +} diff --git a/vendor/guzzlehttp/psr7/src/UploadedFile.php b/vendor/guzzlehttp/psr7/src/UploadedFile.php new file mode 100644 index 00000000..bf342c4d --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/UploadedFile.php @@ -0,0 +1,328 @@ +setError($errorStatus); + $this->setSize($size); + $this->setClientFilename($clientFilename); + $this->setClientMediaType($clientMediaType); + + if ($this->isOk()) { + $this->setStreamOrFile($streamOrFile); + } + } + + /** + * Depending on the value set file or stream variable + * + * @param mixed $streamOrFile + * + * @throws InvalidArgumentException + */ + private function setStreamOrFile($streamOrFile) + { + if (is_string($streamOrFile)) { + $this->file = $streamOrFile; + } elseif (is_resource($streamOrFile)) { + $this->stream = new Stream($streamOrFile); + } elseif ($streamOrFile instanceof StreamInterface) { + $this->stream = $streamOrFile; + } else { + throw new InvalidArgumentException( + 'Invalid stream or file provided for UploadedFile' + ); + } + } + + /** + * @param int $error + * + * @throws InvalidArgumentException + */ + private function setError($error) + { + if (false === is_int($error)) { + throw new InvalidArgumentException( + 'Upload file error status must be an integer' + ); + } + + if (false === in_array($error, UploadedFile::$errors)) { + throw new InvalidArgumentException( + 'Invalid error status for UploadedFile' + ); + } + + $this->error = $error; + } + + /** + * @param int $size + * + * @throws InvalidArgumentException + */ + private function setSize($size) + { + if (false === is_int($size)) { + throw new InvalidArgumentException( + 'Upload file size must be an integer' + ); + } + + $this->size = $size; + } + + /** + * @param mixed $param + * + * @return bool + */ + private function isStringOrNull($param) + { + return in_array(gettype($param), ['string', 'NULL']); + } + + /** + * @param mixed $param + * + * @return bool + */ + private function isStringNotEmpty($param) + { + return is_string($param) && false === empty($param); + } + + /** + * @param string|null $clientFilename + * + * @throws InvalidArgumentException + */ + private function setClientFilename($clientFilename) + { + if (false === $this->isStringOrNull($clientFilename)) { + throw new InvalidArgumentException( + 'Upload file client filename must be a string or null' + ); + } + + $this->clientFilename = $clientFilename; + } + + /** + * @param string|null $clientMediaType + * + * @throws InvalidArgumentException + */ + private function setClientMediaType($clientMediaType) + { + if (false === $this->isStringOrNull($clientMediaType)) { + throw new InvalidArgumentException( + 'Upload file client media type must be a string or null' + ); + } + + $this->clientMediaType = $clientMediaType; + } + + /** + * Return true if there is no upload error + * + * @return bool + */ + private function isOk() + { + return $this->error === UPLOAD_ERR_OK; + } + + /** + * @return bool + */ + public function isMoved() + { + return $this->moved; + } + + /** + * @throws RuntimeException if is moved or not ok + */ + private function validateActive() + { + if (false === $this->isOk()) { + throw new RuntimeException('Cannot retrieve stream due to upload error'); + } + + if ($this->isMoved()) { + throw new RuntimeException('Cannot retrieve stream after it has already been moved'); + } + } + + /** + * {@inheritdoc} + * + * @throws RuntimeException if the upload was not successful. + */ + public function getStream() + { + $this->validateActive(); + + if ($this->stream instanceof StreamInterface) { + return $this->stream; + } + + return new LazyOpenStream($this->file, 'r+'); + } + + /** + * {@inheritdoc} + * + * @see http://php.net/is_uploaded_file + * @see http://php.net/move_uploaded_file + * + * @param string $targetPath Path to which to move the uploaded file. + * + * @throws RuntimeException if the upload was not successful. + * @throws InvalidArgumentException if the $path specified is invalid. + * @throws RuntimeException on any error during the move operation, or on + * the second or subsequent call to the method. + */ + public function moveTo($targetPath) + { + $this->validateActive(); + + if (false === $this->isStringNotEmpty($targetPath)) { + throw new InvalidArgumentException( + 'Invalid path provided for move operation; must be a non-empty string' + ); + } + + if ($this->file) { + $this->moved = php_sapi_name() == 'cli' + ? rename($this->file, $targetPath) + : move_uploaded_file($this->file, $targetPath); + } else { + Utils::copyToStream( + $this->getStream(), + new LazyOpenStream($targetPath, 'w') + ); + + $this->moved = true; + } + + if (false === $this->moved) { + throw new RuntimeException( + sprintf('Uploaded file could not be moved to %s', $targetPath) + ); + } + } + + /** + * {@inheritdoc} + * + * @return int|null The file size in bytes or null if unknown. + */ + public function getSize() + { + return $this->size; + } + + /** + * {@inheritdoc} + * + * @see http://php.net/manual/en/features.file-upload.errors.php + * + * @return int One of PHP's UPLOAD_ERR_XXX constants. + */ + public function getError() + { + return $this->error; + } + + /** + * {@inheritdoc} + * + * @return string|null The filename sent by the client or null if none + * was provided. + */ + public function getClientFilename() + { + return $this->clientFilename; + } + + /** + * {@inheritdoc} + */ + public function getClientMediaType() + { + return $this->clientMediaType; + } +} diff --git a/vendor/guzzlehttp/psr7/src/Uri.php b/vendor/guzzlehttp/psr7/src/Uri.php new file mode 100644 index 00000000..0f9f020d --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/Uri.php @@ -0,0 +1,810 @@ + 80, + 'https' => 443, + 'ftp' => 21, + 'gopher' => 70, + 'nntp' => 119, + 'news' => 119, + 'telnet' => 23, + 'tn3270' => 23, + 'imap' => 143, + 'pop' => 110, + 'ldap' => 389, + ]; + + private static $charUnreserved = 'a-zA-Z0-9_\-\.~'; + private static $charSubDelims = '!\$&\'\(\)\*\+,;='; + private static $replaceQuery = ['=' => '%3D', '&' => '%26']; + + /** @var string Uri scheme. */ + private $scheme = ''; + + /** @var string Uri user info. */ + private $userInfo = ''; + + /** @var string Uri host. */ + private $host = ''; + + /** @var int|null Uri port. */ + private $port; + + /** @var string Uri path. */ + private $path = ''; + + /** @var string Uri query string. */ + private $query = ''; + + /** @var string Uri fragment. */ + private $fragment = ''; + + /** + * @param string $uri URI to parse + */ + public function __construct($uri = '') + { + // weak type check to also accept null until we can add scalar type hints + if ($uri != '') { + $parts = self::parse($uri); + if ($parts === false) { + throw new \InvalidArgumentException("Unable to parse URI: $uri"); + } + $this->applyParts($parts); + } + } + + /** + * UTF-8 aware \parse_url() replacement. + * + * The internal function produces broken output for non ASCII domain names + * (IDN) when used with locales other than "C". + * + * On the other hand, cURL understands IDN correctly only when UTF-8 locale + * is configured ("C.UTF-8", "en_US.UTF-8", etc.). + * + * @see https://bugs.php.net/bug.php?id=52923 + * @see https://www.php.net/manual/en/function.parse-url.php#114817 + * @see https://curl.haxx.se/libcurl/c/CURLOPT_URL.html#ENCODING + * + * @param string $url + * + * @return array|false + */ + private static function parse($url) + { + // If IPv6 + $prefix = ''; + if (preg_match('%^(.*://\[[0-9:a-f]+\])(.*?)$%', $url, $matches)) { + $prefix = $matches[1]; + $url = $matches[2]; + } + + $encodedUrl = preg_replace_callback( + '%[^:/@?&=#]+%usD', + static function ($matches) { + return urlencode($matches[0]); + }, + $url + ); + + $result = parse_url($prefix . $encodedUrl); + + if ($result === false) { + return false; + } + + return array_map('urldecode', $result); + } + + public function __toString() + { + return self::composeComponents( + $this->scheme, + $this->getAuthority(), + $this->path, + $this->query, + $this->fragment + ); + } + + /** + * Composes a URI reference string from its various components. + * + * Usually this method does not need to be called manually but instead is used indirectly via + * `Psr\Http\Message\UriInterface::__toString`. + * + * PSR-7 UriInterface treats an empty component the same as a missing component as + * getQuery(), getFragment() etc. always return a string. This explains the slight + * difference to RFC 3986 Section 5.3. + * + * Another adjustment is that the authority separator is added even when the authority is missing/empty + * for the "file" scheme. This is because PHP stream functions like `file_get_contents` only work with + * `file:///myfile` but not with `file:/myfile` although they are equivalent according to RFC 3986. But + * `file:///` is the more common syntax for the file scheme anyway (Chrome for example redirects to + * that format). + * + * @param string $scheme + * @param string $authority + * @param string $path + * @param string $query + * @param string $fragment + * + * @return string + * + * @link https://tools.ietf.org/html/rfc3986#section-5.3 + */ + public static function composeComponents($scheme, $authority, $path, $query, $fragment) + { + $uri = ''; + + // weak type checks to also accept null until we can add scalar type hints + if ($scheme != '') { + $uri .= $scheme . ':'; + } + + if ($authority != ''|| $scheme === 'file') { + $uri .= '//' . $authority; + } + + $uri .= $path; + + if ($query != '') { + $uri .= '?' . $query; + } + + if ($fragment != '') { + $uri .= '#' . $fragment; + } + + return $uri; + } + + /** + * Whether the URI has the default port of the current scheme. + * + * `Psr\Http\Message\UriInterface::getPort` may return null or the standard port. This method can be used + * independently of the implementation. + * + * @param UriInterface $uri + * + * @return bool + */ + public static function isDefaultPort(UriInterface $uri) + { + return $uri->getPort() === null + || (isset(self::$defaultPorts[$uri->getScheme()]) && $uri->getPort() === self::$defaultPorts[$uri->getScheme()]); + } + + /** + * Whether the URI is absolute, i.e. it has a scheme. + * + * An instance of UriInterface can either be an absolute URI or a relative reference. This method returns true + * if it is the former. An absolute URI has a scheme. A relative reference is used to express a URI relative + * to another URI, the base URI. Relative references can be divided into several forms: + * - network-path references, e.g. '//example.com/path' + * - absolute-path references, e.g. '/path' + * - relative-path references, e.g. 'subpath' + * + * @param UriInterface $uri + * + * @return bool + * + * @see Uri::isNetworkPathReference + * @see Uri::isAbsolutePathReference + * @see Uri::isRelativePathReference + * @link https://tools.ietf.org/html/rfc3986#section-4 + */ + public static function isAbsolute(UriInterface $uri) + { + return $uri->getScheme() !== ''; + } + + /** + * Whether the URI is a network-path reference. + * + * A relative reference that begins with two slash characters is termed an network-path reference. + * + * @param UriInterface $uri + * + * @return bool + * + * @link https://tools.ietf.org/html/rfc3986#section-4.2 + */ + public static function isNetworkPathReference(UriInterface $uri) + { + return $uri->getScheme() === '' && $uri->getAuthority() !== ''; + } + + /** + * Whether the URI is a absolute-path reference. + * + * A relative reference that begins with a single slash character is termed an absolute-path reference. + * + * @param UriInterface $uri + * + * @return bool + * + * @link https://tools.ietf.org/html/rfc3986#section-4.2 + */ + public static function isAbsolutePathReference(UriInterface $uri) + { + return $uri->getScheme() === '' + && $uri->getAuthority() === '' + && isset($uri->getPath()[0]) + && $uri->getPath()[0] === '/'; + } + + /** + * Whether the URI is a relative-path reference. + * + * A relative reference that does not begin with a slash character is termed a relative-path reference. + * + * @param UriInterface $uri + * + * @return bool + * + * @link https://tools.ietf.org/html/rfc3986#section-4.2 + */ + public static function isRelativePathReference(UriInterface $uri) + { + return $uri->getScheme() === '' + && $uri->getAuthority() === '' + && (!isset($uri->getPath()[0]) || $uri->getPath()[0] !== '/'); + } + + /** + * Whether the URI is a same-document reference. + * + * A same-document reference refers to a URI that is, aside from its fragment + * component, identical to the base URI. When no base URI is given, only an empty + * URI reference (apart from its fragment) is considered a same-document reference. + * + * @param UriInterface $uri The URI to check + * @param UriInterface|null $base An optional base URI to compare against + * + * @return bool + * + * @link https://tools.ietf.org/html/rfc3986#section-4.4 + */ + public static function isSameDocumentReference(UriInterface $uri, UriInterface $base = null) + { + if ($base !== null) { + $uri = UriResolver::resolve($base, $uri); + + return ($uri->getScheme() === $base->getScheme()) + && ($uri->getAuthority() === $base->getAuthority()) + && ($uri->getPath() === $base->getPath()) + && ($uri->getQuery() === $base->getQuery()); + } + + return $uri->getScheme() === '' && $uri->getAuthority() === '' && $uri->getPath() === '' && $uri->getQuery() === ''; + } + + /** + * Removes dot segments from a path and returns the new path. + * + * @param string $path + * + * @return string + * + * @deprecated since version 1.4. Use UriResolver::removeDotSegments instead. + * @see UriResolver::removeDotSegments + */ + public static function removeDotSegments($path) + { + return UriResolver::removeDotSegments($path); + } + + /** + * Converts the relative URI into a new URI that is resolved against the base URI. + * + * @param UriInterface $base Base URI + * @param string|UriInterface $rel Relative URI + * + * @return UriInterface + * + * @deprecated since version 1.4. Use UriResolver::resolve instead. + * @see UriResolver::resolve + */ + public static function resolve(UriInterface $base, $rel) + { + if (!($rel instanceof UriInterface)) { + $rel = new self($rel); + } + + return UriResolver::resolve($base, $rel); + } + + /** + * Creates a new URI with a specific query string value removed. + * + * Any existing query string values that exactly match the provided key are + * removed. + * + * @param UriInterface $uri URI to use as a base. + * @param string $key Query string key to remove. + * + * @return UriInterface + */ + public static function withoutQueryValue(UriInterface $uri, $key) + { + $result = self::getFilteredQueryString($uri, [$key]); + + return $uri->withQuery(implode('&', $result)); + } + + /** + * Creates a new URI with a specific query string value. + * + * Any existing query string values that exactly match the provided key are + * removed and replaced with the given key value pair. + * + * A value of null will set the query string key without a value, e.g. "key" + * instead of "key=value". + * + * @param UriInterface $uri URI to use as a base. + * @param string $key Key to set. + * @param string|null $value Value to set + * + * @return UriInterface + */ + public static function withQueryValue(UriInterface $uri, $key, $value) + { + $result = self::getFilteredQueryString($uri, [$key]); + + $result[] = self::generateQueryString($key, $value); + + return $uri->withQuery(implode('&', $result)); + } + + /** + * Creates a new URI with multiple specific query string values. + * + * It has the same behavior as withQueryValue() but for an associative array of key => value. + * + * @param UriInterface $uri URI to use as a base. + * @param array $keyValueArray Associative array of key and values + * + * @return UriInterface + */ + public static function withQueryValues(UriInterface $uri, array $keyValueArray) + { + $result = self::getFilteredQueryString($uri, array_keys($keyValueArray)); + + foreach ($keyValueArray as $key => $value) { + $result[] = self::generateQueryString($key, $value); + } + + return $uri->withQuery(implode('&', $result)); + } + + /** + * Creates a URI from a hash of `parse_url` components. + * + * @param array $parts + * + * @return UriInterface + * + * @link http://php.net/manual/en/function.parse-url.php + * + * @throws \InvalidArgumentException If the components do not form a valid URI. + */ + public static function fromParts(array $parts) + { + $uri = new self(); + $uri->applyParts($parts); + $uri->validateState(); + + return $uri; + } + + public function getScheme() + { + return $this->scheme; + } + + public function getAuthority() + { + $authority = $this->host; + if ($this->userInfo !== '') { + $authority = $this->userInfo . '@' . $authority; + } + + if ($this->port !== null) { + $authority .= ':' . $this->port; + } + + return $authority; + } + + public function getUserInfo() + { + return $this->userInfo; + } + + public function getHost() + { + return $this->host; + } + + public function getPort() + { + return $this->port; + } + + public function getPath() + { + return $this->path; + } + + public function getQuery() + { + return $this->query; + } + + public function getFragment() + { + return $this->fragment; + } + + public function withScheme($scheme) + { + $scheme = $this->filterScheme($scheme); + + if ($this->scheme === $scheme) { + return $this; + } + + $new = clone $this; + $new->scheme = $scheme; + $new->removeDefaultPort(); + $new->validateState(); + + return $new; + } + + public function withUserInfo($user, $password = null) + { + $info = $this->filterUserInfoComponent($user); + if ($password !== null) { + $info .= ':' . $this->filterUserInfoComponent($password); + } + + if ($this->userInfo === $info) { + return $this; + } + + $new = clone $this; + $new->userInfo = $info; + $new->validateState(); + + return $new; + } + + public function withHost($host) + { + $host = $this->filterHost($host); + + if ($this->host === $host) { + return $this; + } + + $new = clone $this; + $new->host = $host; + $new->validateState(); + + return $new; + } + + public function withPort($port) + { + $port = $this->filterPort($port); + + if ($this->port === $port) { + return $this; + } + + $new = clone $this; + $new->port = $port; + $new->removeDefaultPort(); + $new->validateState(); + + return $new; + } + + public function withPath($path) + { + $path = $this->filterPath($path); + + if ($this->path === $path) { + return $this; + } + + $new = clone $this; + $new->path = $path; + $new->validateState(); + + return $new; + } + + public function withQuery($query) + { + $query = $this->filterQueryAndFragment($query); + + if ($this->query === $query) { + return $this; + } + + $new = clone $this; + $new->query = $query; + + return $new; + } + + public function withFragment($fragment) + { + $fragment = $this->filterQueryAndFragment($fragment); + + if ($this->fragment === $fragment) { + return $this; + } + + $new = clone $this; + $new->fragment = $fragment; + + return $new; + } + + /** + * Apply parse_url parts to a URI. + * + * @param array $parts Array of parse_url parts to apply. + */ + private function applyParts(array $parts) + { + $this->scheme = isset($parts['scheme']) + ? $this->filterScheme($parts['scheme']) + : ''; + $this->userInfo = isset($parts['user']) + ? $this->filterUserInfoComponent($parts['user']) + : ''; + $this->host = isset($parts['host']) + ? $this->filterHost($parts['host']) + : ''; + $this->port = isset($parts['port']) + ? $this->filterPort($parts['port']) + : null; + $this->path = isset($parts['path']) + ? $this->filterPath($parts['path']) + : ''; + $this->query = isset($parts['query']) + ? $this->filterQueryAndFragment($parts['query']) + : ''; + $this->fragment = isset($parts['fragment']) + ? $this->filterQueryAndFragment($parts['fragment']) + : ''; + if (isset($parts['pass'])) { + $this->userInfo .= ':' . $this->filterUserInfoComponent($parts['pass']); + } + + $this->removeDefaultPort(); + } + + /** + * @param string $scheme + * + * @return string + * + * @throws \InvalidArgumentException If the scheme is invalid. + */ + private function filterScheme($scheme) + { + if (!is_string($scheme)) { + throw new \InvalidArgumentException('Scheme must be a string'); + } + + return \strtr($scheme, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'); + } + + /** + * @param string $component + * + * @return string + * + * @throws \InvalidArgumentException If the user info is invalid. + */ + private function filterUserInfoComponent($component) + { + if (!is_string($component)) { + throw new \InvalidArgumentException('User info must be a string'); + } + + return preg_replace_callback( + '/(?:[^%' . self::$charUnreserved . self::$charSubDelims . ']+|%(?![A-Fa-f0-9]{2}))/', + [$this, 'rawurlencodeMatchZero'], + $component + ); + } + + /** + * @param string $host + * + * @return string + * + * @throws \InvalidArgumentException If the host is invalid. + */ + private function filterHost($host) + { + if (!is_string($host)) { + throw new \InvalidArgumentException('Host must be a string'); + } + + return \strtr($host, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'); + } + + /** + * @param int|null $port + * + * @return int|null + * + * @throws \InvalidArgumentException If the port is invalid. + */ + private function filterPort($port) + { + if ($port === null) { + return null; + } + + $port = (int) $port; + if (0 > $port || 0xffff < $port) { + throw new \InvalidArgumentException( + sprintf('Invalid port: %d. Must be between 0 and 65535', $port) + ); + } + + return $port; + } + + /** + * @param UriInterface $uri + * @param array $keys + * + * @return array + */ + private static function getFilteredQueryString(UriInterface $uri, array $keys) + { + $current = $uri->getQuery(); + + if ($current === '') { + return []; + } + + $decodedKeys = array_map('rawurldecode', $keys); + + return array_filter(explode('&', $current), function ($part) use ($decodedKeys) { + return !in_array(rawurldecode(explode('=', $part)[0]), $decodedKeys, true); + }); + } + + /** + * @param string $key + * @param string|null $value + * + * @return string + */ + private static function generateQueryString($key, $value) + { + // Query string separators ("=", "&") within the key or value need to be encoded + // (while preventing double-encoding) before setting the query string. All other + // chars that need percent-encoding will be encoded by withQuery(). + $queryString = strtr($key, self::$replaceQuery); + + if ($value !== null) { + $queryString .= '=' . strtr($value, self::$replaceQuery); + } + + return $queryString; + } + + private function removeDefaultPort() + { + if ($this->port !== null && self::isDefaultPort($this)) { + $this->port = null; + } + } + + /** + * Filters the path of a URI + * + * @param string $path + * + * @return string + * + * @throws \InvalidArgumentException If the path is invalid. + */ + private function filterPath($path) + { + if (!is_string($path)) { + throw new \InvalidArgumentException('Path must be a string'); + } + + return preg_replace_callback( + '/(?:[^' . self::$charUnreserved . self::$charSubDelims . '%:@\/]++|%(?![A-Fa-f0-9]{2}))/', + [$this, 'rawurlencodeMatchZero'], + $path + ); + } + + /** + * Filters the query string or fragment of a URI. + * + * @param string $str + * + * @return string + * + * @throws \InvalidArgumentException If the query or fragment is invalid. + */ + private function filterQueryAndFragment($str) + { + if (!is_string($str)) { + throw new \InvalidArgumentException('Query and fragment must be a string'); + } + + return preg_replace_callback( + '/(?:[^' . self::$charUnreserved . self::$charSubDelims . '%:@\/\?]++|%(?![A-Fa-f0-9]{2}))/', + [$this, 'rawurlencodeMatchZero'], + $str + ); + } + + private function rawurlencodeMatchZero(array $match) + { + return rawurlencode($match[0]); + } + + private function validateState() + { + if ($this->host === '' && ($this->scheme === 'http' || $this->scheme === 'https')) { + $this->host = self::HTTP_DEFAULT_HOST; + } + + if ($this->getAuthority() === '') { + if (0 === strpos($this->path, '//')) { + throw new \InvalidArgumentException('The path of a URI without an authority must not start with two slashes "//"'); + } + if ($this->scheme === '' && false !== strpos(explode('/', $this->path, 2)[0], ':')) { + throw new \InvalidArgumentException('A relative URI must not have a path beginning with a segment containing a colon'); + } + } elseif (isset($this->path[0]) && $this->path[0] !== '/') { + @trigger_error( + 'The path of a URI with an authority must start with a slash "/" or be empty. Automagically fixing the URI ' . + 'by adding a leading slash to the path is deprecated since version 1.4 and will throw an exception instead.', + E_USER_DEPRECATED + ); + $this->path = '/' . $this->path; + //throw new \InvalidArgumentException('The path of a URI with an authority must start with a slash "/" or be empty'); + } + } +} diff --git a/vendor/guzzlehttp/psr7/src/UriComparator.php b/vendor/guzzlehttp/psr7/src/UriComparator.php new file mode 100644 index 00000000..ccf51ffb --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/UriComparator.php @@ -0,0 +1,55 @@ +getHost(), $modified->getHost()) !== 0) { + return true; + } + + if ($original->getScheme() !== $modified->getScheme()) { + return true; + } + + if (self::computePort($original) !== self::computePort($modified)) { + return true; + } + + return false; + } + + /** + * @return int + */ + private static function computePort(UriInterface $uri) + { + $port = $uri->getPort(); + + if (null !== $port) { + return $port; + } + + return 'https' === $uri->getScheme() ? 443 : 80; + } + + private function __construct() + { + // cannot be instantiated + } +} diff --git a/vendor/guzzlehttp/psr7/src/UriNormalizer.php b/vendor/guzzlehttp/psr7/src/UriNormalizer.php new file mode 100644 index 00000000..81419ead --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/UriNormalizer.php @@ -0,0 +1,219 @@ +getPath() === '' && + ($uri->getScheme() === 'http' || $uri->getScheme() === 'https') + ) { + $uri = $uri->withPath('/'); + } + + if ($flags & self::REMOVE_DEFAULT_HOST && $uri->getScheme() === 'file' && $uri->getHost() === 'localhost') { + $uri = $uri->withHost(''); + } + + if ($flags & self::REMOVE_DEFAULT_PORT && $uri->getPort() !== null && Uri::isDefaultPort($uri)) { + $uri = $uri->withPort(null); + } + + if ($flags & self::REMOVE_DOT_SEGMENTS && !Uri::isRelativePathReference($uri)) { + $uri = $uri->withPath(UriResolver::removeDotSegments($uri->getPath())); + } + + if ($flags & self::REMOVE_DUPLICATE_SLASHES) { + $uri = $uri->withPath(preg_replace('#//++#', '/', $uri->getPath())); + } + + if ($flags & self::SORT_QUERY_PARAMETERS && $uri->getQuery() !== '') { + $queryKeyValues = explode('&', $uri->getQuery()); + sort($queryKeyValues); + $uri = $uri->withQuery(implode('&', $queryKeyValues)); + } + + return $uri; + } + + /** + * Whether two URIs can be considered equivalent. + * + * Both URIs are normalized automatically before comparison with the given $normalizations bitmask. The method also + * accepts relative URI references and returns true when they are equivalent. This of course assumes they will be + * resolved against the same base URI. If this is not the case, determination of equivalence or difference of + * relative references does not mean anything. + * + * @param UriInterface $uri1 An URI to compare + * @param UriInterface $uri2 An URI to compare + * @param int $normalizations A bitmask of normalizations to apply, see constants + * + * @return bool + * + * @link https://tools.ietf.org/html/rfc3986#section-6.1 + */ + public static function isEquivalent(UriInterface $uri1, UriInterface $uri2, $normalizations = self::PRESERVING_NORMALIZATIONS) + { + return (string) self::normalize($uri1, $normalizations) === (string) self::normalize($uri2, $normalizations); + } + + private static function capitalizePercentEncoding(UriInterface $uri) + { + $regex = '/(?:%[A-Fa-f0-9]{2})++/'; + + $callback = function (array $match) { + return strtoupper($match[0]); + }; + + return + $uri->withPath( + preg_replace_callback($regex, $callback, $uri->getPath()) + )->withQuery( + preg_replace_callback($regex, $callback, $uri->getQuery()) + ); + } + + private static function decodeUnreservedCharacters(UriInterface $uri) + { + $regex = '/%(?:2D|2E|5F|7E|3[0-9]|[46][1-9A-F]|[57][0-9A])/i'; + + $callback = function (array $match) { + return rawurldecode($match[0]); + }; + + return + $uri->withPath( + preg_replace_callback($regex, $callback, $uri->getPath()) + )->withQuery( + preg_replace_callback($regex, $callback, $uri->getQuery()) + ); + } + + private function __construct() + { + // cannot be instantiated + } +} diff --git a/vendor/guzzlehttp/psr7/src/UriResolver.php b/vendor/guzzlehttp/psr7/src/UriResolver.php new file mode 100644 index 00000000..a3cb15d5 --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/UriResolver.php @@ -0,0 +1,222 @@ +getScheme() != '') { + return $rel->withPath(self::removeDotSegments($rel->getPath())); + } + + if ($rel->getAuthority() != '') { + $targetAuthority = $rel->getAuthority(); + $targetPath = self::removeDotSegments($rel->getPath()); + $targetQuery = $rel->getQuery(); + } else { + $targetAuthority = $base->getAuthority(); + if ($rel->getPath() === '') { + $targetPath = $base->getPath(); + $targetQuery = $rel->getQuery() != '' ? $rel->getQuery() : $base->getQuery(); + } else { + if ($rel->getPath()[0] === '/') { + $targetPath = $rel->getPath(); + } else { + if ($targetAuthority != '' && $base->getPath() === '') { + $targetPath = '/' . $rel->getPath(); + } else { + $lastSlashPos = strrpos($base->getPath(), '/'); + if ($lastSlashPos === false) { + $targetPath = $rel->getPath(); + } else { + $targetPath = substr($base->getPath(), 0, $lastSlashPos + 1) . $rel->getPath(); + } + } + } + $targetPath = self::removeDotSegments($targetPath); + $targetQuery = $rel->getQuery(); + } + } + + return new Uri(Uri::composeComponents( + $base->getScheme(), + $targetAuthority, + $targetPath, + $targetQuery, + $rel->getFragment() + )); + } + + /** + * Returns the target URI as a relative reference from the base URI. + * + * This method is the counterpart to resolve(): + * + * (string) $target === (string) UriResolver::resolve($base, UriResolver::relativize($base, $target)) + * + * One use-case is to use the current request URI as base URI and then generate relative links in your documents + * to reduce the document size or offer self-contained downloadable document archives. + * + * $base = new Uri('http://example.com/a/b/'); + * echo UriResolver::relativize($base, new Uri('http://example.com/a/b/c')); // prints 'c'. + * echo UriResolver::relativize($base, new Uri('http://example.com/a/x/y')); // prints '../x/y'. + * echo UriResolver::relativize($base, new Uri('http://example.com/a/b/?q')); // prints '?q'. + * echo UriResolver::relativize($base, new Uri('http://example.org/a/b/')); // prints '//example.org/a/b/'. + * + * This method also accepts a target that is already relative and will try to relativize it further. Only a + * relative-path reference will be returned as-is. + * + * echo UriResolver::relativize($base, new Uri('/a/b/c')); // prints 'c' as well + * + * @param UriInterface $base Base URI + * @param UriInterface $target Target URI + * + * @return UriInterface The relative URI reference + */ + public static function relativize(UriInterface $base, UriInterface $target) + { + if ($target->getScheme() !== '' && + ($base->getScheme() !== $target->getScheme() || $target->getAuthority() === '' && $base->getAuthority() !== '') + ) { + return $target; + } + + if (Uri::isRelativePathReference($target)) { + // As the target is already highly relative we return it as-is. It would be possible to resolve + // the target with `$target = self::resolve($base, $target);` and then try make it more relative + // by removing a duplicate query. But let's not do that automatically. + return $target; + } + + if ($target->getAuthority() !== '' && $base->getAuthority() !== $target->getAuthority()) { + return $target->withScheme(''); + } + + // We must remove the path before removing the authority because if the path starts with two slashes, the URI + // would turn invalid. And we also cannot set a relative path before removing the authority, as that is also + // invalid. + $emptyPathUri = $target->withScheme('')->withPath('')->withUserInfo('')->withPort(null)->withHost(''); + + if ($base->getPath() !== $target->getPath()) { + return $emptyPathUri->withPath(self::getRelativePath($base, $target)); + } + + if ($base->getQuery() === $target->getQuery()) { + // Only the target fragment is left. And it must be returned even if base and target fragment are the same. + return $emptyPathUri->withQuery(''); + } + + // If the base URI has a query but the target has none, we cannot return an empty path reference as it would + // inherit the base query component when resolving. + if ($target->getQuery() === '') { + $segments = explode('/', $target->getPath()); + $lastSegment = end($segments); + + return $emptyPathUri->withPath($lastSegment === '' ? './' : $lastSegment); + } + + return $emptyPathUri; + } + + private static function getRelativePath(UriInterface $base, UriInterface $target) + { + $sourceSegments = explode('/', $base->getPath()); + $targetSegments = explode('/', $target->getPath()); + array_pop($sourceSegments); + $targetLastSegment = array_pop($targetSegments); + foreach ($sourceSegments as $i => $segment) { + if (isset($targetSegments[$i]) && $segment === $targetSegments[$i]) { + unset($sourceSegments[$i], $targetSegments[$i]); + } else { + break; + } + } + $targetSegments[] = $targetLastSegment; + $relativePath = str_repeat('../', count($sourceSegments)) . implode('/', $targetSegments); + + // A reference to am empty last segment or an empty first sub-segment must be prefixed with "./". + // This also applies to a segment with a colon character (e.g., "file:colon") that cannot be used + // as the first segment of a relative-path reference, as it would be mistaken for a scheme name. + if ('' === $relativePath || false !== strpos(explode('/', $relativePath, 2)[0], ':')) { + $relativePath = "./$relativePath"; + } elseif ('/' === $relativePath[0]) { + if ($base->getAuthority() != '' && $base->getPath() === '') { + // In this case an extra slash is added by resolve() automatically. So we must not add one here. + $relativePath = ".$relativePath"; + } else { + $relativePath = "./$relativePath"; + } + } + + return $relativePath; + } + + private function __construct() + { + // cannot be instantiated + } +} diff --git a/vendor/guzzlehttp/psr7/src/Utils.php b/vendor/guzzlehttp/psr7/src/Utils.php new file mode 100644 index 00000000..6b6c8cce --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/Utils.php @@ -0,0 +1,428 @@ + $keys + * + * @return array + */ + public static function caselessRemove($keys, array $data) + { + $result = []; + + foreach ($keys as &$key) { + $key = strtolower($key); + } + + foreach ($data as $k => $v) { + if (!in_array(strtolower($k), $keys)) { + $result[$k] = $v; + } + } + + return $result; + } + + /** + * Copy the contents of a stream into another stream until the given number + * of bytes have been read. + * + * @param StreamInterface $source Stream to read from + * @param StreamInterface $dest Stream to write to + * @param int $maxLen Maximum number of bytes to read. Pass -1 + * to read the entire stream. + * + * @throws \RuntimeException on error. + */ + public static function copyToStream(StreamInterface $source, StreamInterface $dest, $maxLen = -1) + { + $bufferSize = 8192; + + if ($maxLen === -1) { + while (!$source->eof()) { + if (!$dest->write($source->read($bufferSize))) { + break; + } + } + } else { + $remaining = $maxLen; + while ($remaining > 0 && !$source->eof()) { + $buf = $source->read(min($bufferSize, $remaining)); + $len = strlen($buf); + if (!$len) { + break; + } + $remaining -= $len; + $dest->write($buf); + } + } + } + + /** + * Copy the contents of a stream into a string until the given number of + * bytes have been read. + * + * @param StreamInterface $stream Stream to read + * @param int $maxLen Maximum number of bytes to read. Pass -1 + * to read the entire stream. + * + * @return string + * + * @throws \RuntimeException on error. + */ + public static function copyToString(StreamInterface $stream, $maxLen = -1) + { + $buffer = ''; + + if ($maxLen === -1) { + while (!$stream->eof()) { + $buf = $stream->read(1048576); + // Using a loose equality here to match on '' and false. + if ($buf == null) { + break; + } + $buffer .= $buf; + } + return $buffer; + } + + $len = 0; + while (!$stream->eof() && $len < $maxLen) { + $buf = $stream->read($maxLen - $len); + // Using a loose equality here to match on '' and false. + if ($buf == null) { + break; + } + $buffer .= $buf; + $len = strlen($buffer); + } + + return $buffer; + } + + /** + * Calculate a hash of a stream. + * + * This method reads the entire stream to calculate a rolling hash, based + * on PHP's `hash_init` functions. + * + * @param StreamInterface $stream Stream to calculate the hash for + * @param string $algo Hash algorithm (e.g. md5, crc32, etc) + * @param bool $rawOutput Whether or not to use raw output + * + * @return string Returns the hash of the stream + * + * @throws \RuntimeException on error. + */ + public static function hash(StreamInterface $stream, $algo, $rawOutput = false) + { + $pos = $stream->tell(); + + if ($pos > 0) { + $stream->rewind(); + } + + $ctx = hash_init($algo); + while (!$stream->eof()) { + hash_update($ctx, $stream->read(1048576)); + } + + $out = hash_final($ctx, (bool) $rawOutput); + $stream->seek($pos); + + return $out; + } + + /** + * Clone and modify a request with the given changes. + * + * This method is useful for reducing the number of clones needed to mutate + * a message. + * + * The changes can be one of: + * - method: (string) Changes the HTTP method. + * - set_headers: (array) Sets the given headers. + * - remove_headers: (array) Remove the given headers. + * - body: (mixed) Sets the given body. + * - uri: (UriInterface) Set the URI. + * - query: (string) Set the query string value of the URI. + * - version: (string) Set the protocol version. + * + * @param RequestInterface $request Request to clone and modify. + * @param array $changes Changes to apply. + * + * @return RequestInterface + */ + public static function modifyRequest(RequestInterface $request, array $changes) + { + if (!$changes) { + return $request; + } + + $headers = $request->getHeaders(); + + if (!isset($changes['uri'])) { + $uri = $request->getUri(); + } else { + // Remove the host header if one is on the URI + if ($host = $changes['uri']->getHost()) { + $changes['set_headers']['Host'] = $host; + + if ($port = $changes['uri']->getPort()) { + $standardPorts = ['http' => 80, 'https' => 443]; + $scheme = $changes['uri']->getScheme(); + if (isset($standardPorts[$scheme]) && $port != $standardPorts[$scheme]) { + $changes['set_headers']['Host'] .= ':' . $port; + } + } + } + $uri = $changes['uri']; + } + + if (!empty($changes['remove_headers'])) { + $headers = self::caselessRemove($changes['remove_headers'], $headers); + } + + if (!empty($changes['set_headers'])) { + $headers = self::caselessRemove(array_keys($changes['set_headers']), $headers); + $headers = $changes['set_headers'] + $headers; + } + + if (isset($changes['query'])) { + $uri = $uri->withQuery($changes['query']); + } + + if ($request instanceof ServerRequestInterface) { + $new = (new ServerRequest( + isset($changes['method']) ? $changes['method'] : $request->getMethod(), + $uri, + $headers, + isset($changes['body']) ? $changes['body'] : $request->getBody(), + isset($changes['version']) + ? $changes['version'] + : $request->getProtocolVersion(), + $request->getServerParams() + )) + ->withParsedBody($request->getParsedBody()) + ->withQueryParams($request->getQueryParams()) + ->withCookieParams($request->getCookieParams()) + ->withUploadedFiles($request->getUploadedFiles()); + + foreach ($request->getAttributes() as $key => $value) { + $new = $new->withAttribute($key, $value); + } + + return $new; + } + + return new Request( + isset($changes['method']) ? $changes['method'] : $request->getMethod(), + $uri, + $headers, + isset($changes['body']) ? $changes['body'] : $request->getBody(), + isset($changes['version']) + ? $changes['version'] + : $request->getProtocolVersion() + ); + } + + /** + * Read a line from the stream up to the maximum allowed buffer length. + * + * @param StreamInterface $stream Stream to read from + * @param int|null $maxLength Maximum buffer length + * + * @return string + */ + public static function readLine(StreamInterface $stream, $maxLength = null) + { + $buffer = ''; + $size = 0; + + while (!$stream->eof()) { + // Using a loose equality here to match on '' and false. + if (null == ($byte = $stream->read(1))) { + return $buffer; + } + $buffer .= $byte; + // Break when a new line is found or the max length - 1 is reached + if ($byte === "\n" || ++$size === $maxLength - 1) { + break; + } + } + + return $buffer; + } + + /** + * Create a new stream based on the input type. + * + * Options is an associative array that can contain the following keys: + * - metadata: Array of custom metadata. + * - size: Size of the stream. + * + * This method accepts the following `$resource` types: + * - `Psr\Http\Message\StreamInterface`: Returns the value as-is. + * - `string`: Creates a stream object that uses the given string as the contents. + * - `resource`: Creates a stream object that wraps the given PHP stream resource. + * - `Iterator`: If the provided value implements `Iterator`, then a read-only + * stream object will be created that wraps the given iterable. Each time the + * stream is read from, data from the iterator will fill a buffer and will be + * continuously called until the buffer is equal to the requested read size. + * Subsequent read calls will first read from the buffer and then call `next` + * on the underlying iterator until it is exhausted. + * - `object` with `__toString()`: If the object has the `__toString()` method, + * the object will be cast to a string and then a stream will be returned that + * uses the string value. + * - `NULL`: When `null` is passed, an empty stream object is returned. + * - `callable` When a callable is passed, a read-only stream object will be + * created that invokes the given callable. The callable is invoked with the + * number of suggested bytes to read. The callable can return any number of + * bytes, but MUST return `false` when there is no more data to return. The + * stream object that wraps the callable will invoke the callable until the + * number of requested bytes are available. Any additional bytes will be + * buffered and used in subsequent reads. + * + * @param resource|string|int|float|bool|StreamInterface|callable|\Iterator|null $resource Entity body data + * @param array $options Additional options + * + * @return StreamInterface + * + * @throws \InvalidArgumentException if the $resource arg is not valid. + */ + public static function streamFor($resource = '', array $options = []) + { + if (is_scalar($resource)) { + $stream = self::tryFopen('php://temp', 'r+'); + if ($resource !== '') { + fwrite($stream, $resource); + fseek($stream, 0); + } + return new Stream($stream, $options); + } + + switch (gettype($resource)) { + case 'resource': + /* + * The 'php://input' is a special stream with quirks and inconsistencies. + * We avoid using that stream by reading it into php://temp + */ + $metaData = \stream_get_meta_data($resource); + if (isset($metaData['uri']) && $metaData['uri'] === 'php://input') { + $stream = self::tryFopen('php://temp', 'w+'); + fwrite($stream, stream_get_contents($resource)); + fseek($stream, 0); + $resource = $stream; + } + return new Stream($resource, $options); + case 'object': + if ($resource instanceof StreamInterface) { + return $resource; + } elseif ($resource instanceof \Iterator) { + return new PumpStream(function () use ($resource) { + if (!$resource->valid()) { + return false; + } + $result = $resource->current(); + $resource->next(); + return $result; + }, $options); + } elseif (method_exists($resource, '__toString')) { + return Utils::streamFor((string) $resource, $options); + } + break; + case 'NULL': + return new Stream(self::tryFopen('php://temp', 'r+'), $options); + } + + if (is_callable($resource)) { + return new PumpStream($resource, $options); + } + + throw new \InvalidArgumentException('Invalid resource type: ' . gettype($resource)); + } + + /** + * Safely opens a PHP stream resource using a filename. + * + * When fopen fails, PHP normally raises a warning. This function adds an + * error handler that checks for errors and throws an exception instead. + * + * @param string $filename File to open + * @param string $mode Mode used to open the file + * + * @return resource + * + * @throws \RuntimeException if the file cannot be opened + */ + public static function tryFopen($filename, $mode) + { + $ex = null; + set_error_handler(function () use ($filename, $mode, &$ex) { + $ex = new \RuntimeException(sprintf( + 'Unable to open "%s" using mode "%s": %s', + $filename, + $mode, + func_get_args()[1] + )); + + return true; + }); + + try { + $handle = fopen($filename, $mode); + } catch (\Throwable $e) { + $ex = new \RuntimeException(sprintf( + 'Unable to open "%s" using mode "%s": %s', + $filename, + $mode, + $e->getMessage() + ), 0, $e); + } + + restore_error_handler(); + + if ($ex) { + /** @var $ex \RuntimeException */ + throw $ex; + } + + return $handle; + } + + /** + * Returns a UriInterface for the given value. + * + * This function accepts a string or UriInterface and returns a + * UriInterface for the given value. If the value is already a + * UriInterface, it is returned as-is. + * + * @param string|UriInterface $uri + * + * @return UriInterface + * + * @throws \InvalidArgumentException + */ + public static function uriFor($uri) + { + if ($uri instanceof UriInterface) { + return $uri; + } + + if (is_string($uri)) { + return new Uri($uri); + } + + throw new \InvalidArgumentException('URI must be a string or UriInterface'); + } +} diff --git a/vendor/guzzlehttp/psr7/src/functions.php b/vendor/guzzlehttp/psr7/src/functions.php new file mode 100644 index 00000000..b0901fad --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/functions.php @@ -0,0 +1,422 @@ + '1', 'foo[b]' => '2'])`. + * + * @param string $str Query string to parse + * @param int|bool $urlEncoding How the query string is encoded + * + * @return array + * + * @deprecated parse_query will be removed in guzzlehttp/psr7:2.0. Use Query::parse instead. + */ +function parse_query($str, $urlEncoding = true) +{ + return Query::parse($str, $urlEncoding); +} + +/** + * Build a query string from an array of key value pairs. + * + * This function can use the return value of `parse_query()` to build a query + * string. This function does not modify the provided keys when an array is + * encountered (like `http_build_query()` would). + * + * @param array $params Query string parameters. + * @param int|false $encoding Set to false to not encode, PHP_QUERY_RFC3986 + * to encode using RFC3986, or PHP_QUERY_RFC1738 + * to encode using RFC1738. + * + * @return string + * + * @deprecated build_query will be removed in guzzlehttp/psr7:2.0. Use Query::build instead. + */ +function build_query(array $params, $encoding = PHP_QUERY_RFC3986) +{ + return Query::build($params, $encoding); +} + +/** + * Determines the mimetype of a file by looking at its extension. + * + * @param string $filename + * + * @return string|null + * + * @deprecated mimetype_from_filename will be removed in guzzlehttp/psr7:2.0. Use MimeType::fromFilename instead. + */ +function mimetype_from_filename($filename) +{ + return MimeType::fromFilename($filename); +} + +/** + * Maps a file extensions to a mimetype. + * + * @param $extension string The file extension. + * + * @return string|null + * + * @link http://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x/conf/mime.types + * @deprecated mimetype_from_extension will be removed in guzzlehttp/psr7:2.0. Use MimeType::fromExtension instead. + */ +function mimetype_from_extension($extension) +{ + return MimeType::fromExtension($extension); +} + +/** + * Parses an HTTP message into an associative array. + * + * The array contains the "start-line" key containing the start line of + * the message, "headers" key containing an associative array of header + * array values, and a "body" key containing the body of the message. + * + * @param string $message HTTP request or response to parse. + * + * @return array + * + * @internal + * + * @deprecated _parse_message will be removed in guzzlehttp/psr7:2.0. Use Message::parseMessage instead. + */ +function _parse_message($message) +{ + return Message::parseMessage($message); +} + +/** + * Constructs a URI for an HTTP request message. + * + * @param string $path Path from the start-line + * @param array $headers Array of headers (each value an array). + * + * @return string + * + * @internal + * + * @deprecated _parse_request_uri will be removed in guzzlehttp/psr7:2.0. Use Message::parseRequestUri instead. + */ +function _parse_request_uri($path, array $headers) +{ + return Message::parseRequestUri($path, $headers); +} + +/** + * Get a short summary of the message body. + * + * Will return `null` if the response is not printable. + * + * @param MessageInterface $message The message to get the body summary + * @param int $truncateAt The maximum allowed size of the summary + * + * @return string|null + * + * @deprecated get_message_body_summary will be removed in guzzlehttp/psr7:2.0. Use Message::bodySummary instead. + */ +function get_message_body_summary(MessageInterface $message, $truncateAt = 120) +{ + return Message::bodySummary($message, $truncateAt); +} + +/** + * Remove the items given by the keys, case insensitively from the data. + * + * @param iterable $keys + * + * @return array + * + * @internal + * + * @deprecated _caseless_remove will be removed in guzzlehttp/psr7:2.0. Use Utils::caselessRemove instead. + */ +function _caseless_remove($keys, array $data) +{ + return Utils::caselessRemove($keys, $data); +} diff --git a/vendor/guzzlehttp/psr7/src/functions_include.php b/vendor/guzzlehttp/psr7/src/functions_include.php new file mode 100644 index 00000000..96a4a83a --- /dev/null +++ b/vendor/guzzlehttp/psr7/src/functions_include.php @@ -0,0 +1,6 @@ +=7.2", + "ext-fileinfo": "*", + "ipl/stdlib": ">=0.12.0", + "ipl/validator": ">=0.5.0", + "psr/http-message": "~1.0", + "guzzlehttp/psr7": "^1" + }, + "autoload": { + "psr-4": { + "ipl\\Html\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "ipl\\Tests\\Html\\": "tests" + } + } +} diff --git a/vendor/ipl/html/src/Attribute.php b/vendor/ipl/html/src/Attribute.php new file mode 100644 index 00000000..c42485a5 --- /dev/null +++ b/vendor/ipl/html/src/Attribute.php @@ -0,0 +1,328 @@ +setName($name)->setValue($value); + } + + /** + * Create a new HTML attribute from the given name and value + * + * @param string $name The name of the attribute + * @param string|bool|array|null $value The value of the attribute + * + * @return static + * + * @throws InvalidArgumentException If the name of the attribute contains special characters + */ + public static function create($name, $value) + { + return new static($name, $value); + } + + /** + * Create a new empty HTML attribute from the given name + * + * The value of the attribute will be null after construction. + * + * @param string $name The name of the attribute + * + * @return static + * + * @throws InvalidArgumentException If the name of the attribute contains special characters + */ + public static function createEmpty($name) + { + return new static($name, null); + } + + /** + * Escape the name of an attribute + * + * Makes sure that the name of an attribute really is a string. + * + * @param string $name + * + * @return string + */ + public static function escapeName($name) + { + return (string) $name; + } + + /** + * Escape the value of an attribute + * + * If the value is an array, returns the string representation + * of all array elements joined with the specified glue string. + * + * Values are escaped according to the HTML5 double-quoted attribute value syntax: + * {@link https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 }. + * + * @param string|array $value + * @param string $glue Glue string to join elements if value is an array + * + * @return string + */ + public static function escapeValue($value, $glue = ' ') + { + if (is_array($value)) { + $value = implode($glue, $value); + } + + // We force double-quoted attribute value syntax so let's start by escaping double quotes + $value = str_replace('"', '"', $value); + + // In addition, values must not contain ambiguous ampersands + $value = preg_replace_callback( + '/&[0-9A-Z]+;/i', + function ($match) { + $subject = $match[0]; + + if (htmlspecialchars_decode($subject, ENT_COMPAT | ENT_HTML5) === $subject) { + // Ambiguous ampersand + return str_replace('&', '&', $subject); + } + + return $subject; + }, + $value + ); + + return $value; + } + + /** + * Get the name of the attribute + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Set the name of the attribute + * + * @param string $name + * + * @return $this + * + * @throws InvalidArgumentException If the name contains special characters + */ + protected function setName($name) + { + if (! preg_match('/^[a-z][a-z0-9:-]*$/i', $name)) { + throw new InvalidArgumentException(sprintf( + 'Attribute names with special characters are not yet allowed: %s', + $name + )); + } + + $this->name = $name; + + return $this; + } + + /** + * Get the separator by which multiple values are concatenated with + * + * @return string + */ + public function getSeparator(): string + { + return $this->separator; + } + + /** + * Set the separator to concatenate multiple values with + * + * @param string $separator + * + * @return $this + */ + public function setSeparator(string $separator): self + { + $this->separator = $separator; + + return $this; + } + + /** + * Get the value of the attribute + * + * @return string|bool|array|null + */ + public function getValue() + { + return $this->value; + } + + /** + * Set the value of the attribute + * + * @param string|bool|array|null $value + * + * @return $this + */ + public function setValue($value) + { + $this->value = $value; + + return $this; + } + + /** + * Add the given value(s) to the attribute + * + * @param string|array $value The value(s) to add + * + * @return $this + */ + public function addValue($value) + { + $this->value = array_merge((array) $this->value, (array) $value); + + return $this; + } + + /** + * Remove the given value(s) from the attribute + * + * The current value is set to null if it matches the value to remove + * or is in the array of values to remove. + * + * If the current value is an array, all elements are removed which + * match the value(s) to remove. + * + * Does nothing if there is no such value to remove. + * + * @param string|array $value The value(s) to remove + * + * @return $this + */ + public function removeValue($value) + { + $value = (array) $value; + + $current = $this->getValue(); + + if (is_array($current)) { + $this->setValue(array_diff($current, $value)); + } elseif (in_array($current, $value, true)) { + $this->setValue(null); + } + + return $this; + } + + /** + * Test and return true if the attribute is boolean, false otherwise + * + * @return bool + */ + public function isBoolean() + { + return is_bool($this->value); + } + + /** + * Test and return true if the attribute is empty, false otherwise + * + * Null and the empty array will be considered empty. + * + * @return bool + */ + public function isEmpty() + { + return $this->value === null || $this->value === []; + } + + /** + * Render the attribute to HTML + * + * If the value of the attribute is of type boolean, it will be rendered as + * {@link http://www.w3.org/TR/html5/infrastructure.html#boolean-attributes boolean attribute}. + * Note that in this case if the value of the attribute is false, the empty string will be returned. + * + * If the value of the attribute is null or an empty array, + * the empty string will be returned as well. + * + * Escaping of the attribute's value takes place automatically using {@link Attribute::escapeValue()}. + * + * @return string + */ + public function render() + { + if ($this->isEmpty()) { + return ''; + } + + if ($this->isBoolean()) { + if ($this->value) { + return $this->renderName(); + } + + return ''; + } else { + return sprintf( + '%s="%s"', + $this->renderName(), + $this->renderValue() + ); + } + } + + /** + * Render the name of the attribute to HTML + * + * @return string + */ + public function renderName() + { + return static::escapeName($this->name); + } + + /** + * Render the value of the attribute to HTML + * + * @return string + */ + public function renderValue() + { + return static::escapeValue($this->value, $this->separator); + } +} diff --git a/vendor/ipl/html/src/Attributes.php b/vendor/ipl/html/src/Attributes.php new file mode 100644 index 00000000..8df9bbde --- /dev/null +++ b/vendor/ipl/html/src/Attributes.php @@ -0,0 +1,518 @@ + $value) { + if ($value instanceof Attribute) { + $this->addAttribute($value); + } elseif (is_string($key)) { + $this->add($key, $value); + } elseif (is_array($value) && count($value) === 2) { + $this->add(array_shift($value), array_shift($value)); + } + } + } + + /** + * Create new HTML attributes + * + * @param array $attributes + * + * @return static + */ + public static function create(array $attributes = null) + { + return new static($attributes); + } + + /** + * Ensure that the given attributes of mixed type are converted to an instance of attributes + * + * The conversion procedure is as follows: + * + * If the given attributes is already an instance of Attributes, returns the very same element. + * If the attributes are given as an array of attribute name-value pairs, they are used to + * construct and return a new Attributes instance. + * If the attributes are null, an empty new instance of Attributes is returned. + * + * @param array|static|null $attributes + * + * @return static + * + * @throws InvalidArgumentException In case the given attributes are of an unsupported type + */ + public static function wantAttributes($attributes) + { + if ($attributes instanceof self) { + return $attributes; + } + + if (is_array($attributes)) { + return new static($attributes); + } + + if ($attributes === null) { + return new static(); + } + + throw new InvalidArgumentException(sprintf( + 'Attributes instance, array or null expected. Got %s instead.', + get_php_type($attributes) + )); + } + + /** + * Get the collection of attributes as array + * + * @return Attribute[] + */ + public function getAttributes() + { + return $this->attributes; + } + + /** + * Merge the given attributes + * + * @param Attributes $attributes + * + * @return $this + */ + public function merge(Attributes $attributes) + { + foreach ($attributes as $attribute) { + $this->addAttribute($attribute); + } + + foreach ($attributes->callbacks as $name => $getter) { + $setter = null; + if (isset($attributes->setterCallbacks[$name])) { + $setter = $attributes->setterCallbacks[$name]; + } + + $this->registerAttributeCallback($name, $getter, $setter); + } + + return $this; + } + + /** + * Return true if the attribute with the given name exists, false otherwise + * + * @param string $name + * + * @return bool + */ + public function has($name) + { + return array_key_exists($name, $this->attributes); + } + + /** + * Get the attribute with the given name + * + * If the attribute does not yet exist, it is automatically created and registered to this Attributes instance. + * + * @param string $name + * + * @return Attribute + * + * @throws InvalidArgumentException If the attribute does not yet exist and its name contains special characters + */ + public function get($name) + { + if (! $this->has($name)) { + $this->attributes[$name] = Attribute::createEmpty($name); + } + + return $this->attributes[$name]; + } + + /** + * Set the given attribute(s) + * + * If the attribute with the given name already exists, it gets overridden. + * + * @param string|array|Attribute|self $attribute The attribute(s) to add + * @param string|bool|array $value The value of the attribute + * + * @return $this + * + * @throws InvalidArgumentException If the attribute name contains special characters + */ + public function set($attribute, $value = null) + { + if ($attribute instanceof self) { + foreach ($attribute as $a) { + $this->setAttribute($a); + } + + return $this; + } + + if ($attribute instanceof Attribute) { + $this->setAttribute($attribute); + + return $this; + } + + if (is_array($attribute)) { + foreach ($attribute as $name => $value) { + $this->set($name, $value); + } + + return $this; + } + + if (array_key_exists($attribute, $this->setterCallbacks)) { + $callback = $this->setterCallbacks[$attribute]; + + $callback($value); + + return $this; + } + + $this->attributes[$attribute] = Attribute::create($attribute, $value); + + return $this; + } + + /** + * Add the given attribute(s) + * + * If an attribute with the same name already exists, the attribute's value will be added to the current value of + * the attribute. + * + * @param string|array|Attribute|self $attribute The attribute(s) to add + * @param string|bool|array $value The value of the attribute + * + * @return $this + * + * @throws InvalidArgumentException If the attribute does not yet exist and its name contains special characters + */ + public function add($attribute, $value = null) + { + if ($attribute === null) { + return $this; + } + + if ($attribute instanceof self) { + foreach ($attribute as $attr) { + $this->add($attr); + } + + return $this; + } + + if (is_array($attribute)) { + foreach ($attribute as $name => $value) { + $this->add($name, $value); + } + + return $this; + } + + if ($attribute instanceof Attribute) { + $this->addAttribute($attribute); + + return $this; + } + + if (array_key_exists($attribute, $this->setterCallbacks)) { + $callback = $this->setterCallbacks[$attribute]; + + $callback($value); + + return $this; + } + + if (! array_key_exists($attribute, $this->attributes)) { + $this->attributes[$attribute] = Attribute::create($attribute, $value); + } else { + $this->attributes[$attribute]->addValue($value); + } + + return $this; + } + + /** + * Remove the attribute with the given name or remove the given value from the attribute + * + * @param string $name The name of the attribute + * @param null|string|array $value The value to remove if specified + * + * @return ?Attribute The removed or changed attribute, if any, otherwise null + */ + public function remove($name, $value = null): ?Attribute + { + if (! $this->has($name)) { + return null; + } + + $attribute = $this->attributes[$name]; + + if ($value === null) { + unset($this->attributes[$name]); + } else { + $attribute->removeValue($value); + } + + return $attribute; + } + + /** + * Set the specified attribute + * + * @param Attribute $attribute + * + * @return $this + */ + public function setAttribute(Attribute $attribute) + { + $this->attributes[$attribute->getName()] = $attribute; + + return $this; + } + + /** + * Add the specified attribute + * + * If an attribute with the same name already exists, the given attribute's value + * will be added to the current value of the attribute. + * + * @param Attribute $attribute + * + * @return $this + */ + public function addAttribute(Attribute $attribute) + { + $name = $attribute->getName(); + + if ($this->has($name)) { + $this->attributes[$name]->addValue($attribute->getValue()); + } else { + $this->attributes[$name] = $attribute; + } + + return $this; + } + + /** + * Get the attributes name prefix + * + * @return string|null + */ + public function getPrefix() + { + return $this->prefix; + } + + /** + * Set the attributes name prefix + * + * @param string $prefix + * + * @return $this + */ + public function setPrefix($prefix) + { + $this->prefix = $prefix; + + return $this; + } + + /** + * Register callback for an attribute + * + * @param string $name Name of the attribute to register the callback for + * @param ?callable $callback Callback to call when retrieving the attribute + * @param ?callable $setterCallback Callback to call when setting the attribute + * + * @return $this + */ + public function registerAttributeCallback(string $name, ?callable $callback, ?callable $setterCallback = null): self + { + if ($callback !== null) { + $this->callbacks[$name] = $callback; + } + + if ($setterCallback !== null) { + $this->setterCallbacks[$name] = $setterCallback; + } + + return $this; + } + + /** + * Render attributes to HTML + * + * If the value of an attribute is of type boolean, it will be rendered as + * {@link http://www.w3.org/TR/html5/infrastructure.html#boolean-attributes boolean attribute}. + * + * If the value of an attribute is null, it will be skipped. + * + * HTML-escaping of the attributes' values takes place automatically using {@link Attribute::escapeValue()}. + * + * @return string + * + * @throws InvalidArgumentException If the result of a callback is invalid + */ + public function render() + { + $attributes = $this->attributes; + foreach ($this->callbacks as $name => $callback) { + $attribute = call_user_func($callback); + if ($attribute instanceof Attribute) { + if ($attribute->isEmpty()) { + continue; + } + } elseif ($attribute === null) { + continue; + } elseif (is_scalar($attribute)) { + $attribute = Attribute::create($name, $attribute); + } else { + throw new InvalidArgumentException(sprintf( + 'A registered attribute callback must return a scalar, null' + . ' or an Attribute, got a %s', + get_php_type($attribute) + )); + } + + $name = $attribute->getName(); + if (isset($attributes[$name])) { + $attributes[$name] = clone $attributes[$name]; + $attributes[$name]->addValue($attribute->getValue()); + } else { + $attributes[$name] = $attribute; + } + } + + $parts = []; + foreach ($attributes as $attribute) { + if ($attribute->isEmpty()) { + continue; + } + + $parts[] = $attribute->render(); + } + + if (empty($parts)) { + return ''; + } + + $separator = ' ' . $this->getPrefix(); + + return $separator . implode($separator, $parts); + } + + /** + * Get whether the attribute with the given name exists + * + * @param string $name Name of the attribute + * + * @return bool + */ + public function offsetExists($name): bool + { + return $this->has($name); + } + + /** + * Get the attribute with the given name + * + * If the attribute does not yet exist, it is automatically created and registered to this Attributes instance. + * + * @param string $name Name of the attribute + * + * @return Attribute + * + * @throws InvalidArgumentException If the attribute does not yet exist and its name contains special characters + */ + public function offsetGet($name): Attribute + { + return $this->get($name); + } + + /** + * Set the given attribute + * + * If the attribute with the given name already exists, it gets overridden. + * + * @param string $name Name of the attribute + * @param mixed $value Value of the attribute + * + * @throws InvalidArgumentException If the attribute name contains special characters + */ + public function offsetSet($name, $value): void + { + $this->set($name, $value); + } + + /** + * Remove the attribute with the given name + * + * @param string $name Name of the attribute + */ + public function offsetUnset($name): void + { + $this->remove($name); + } + + /** + * Get an iterator for traversing the attributes + * + * @return Attribute[]|ArrayIterator + */ + public function getIterator(): Traversable + { + return new ArrayIterator($this->attributes); + } + + public function __clone() + { + foreach ($this->attributes as &$attribute) { + $attribute = clone $attribute; + } + } +} diff --git a/vendor/ipl/html/src/BaseHtmlElement.php b/vendor/ipl/html/src/BaseHtmlElement.php new file mode 100644 index 00000000..2004be5d --- /dev/null +++ b/vendor/ipl/html/src/BaseHtmlElement.php @@ -0,0 +1,406 @@ + 'acme-dashboard']; + * + * protected $tag = 'div'; + * + * protected function assemble() + * { + * // ... + * $this->add($content); + * } + * } + * ``` + */ +abstract class BaseHtmlElement extends HtmlDocument +{ + /** + * List of void elements which must not contain end tags or content + * + * If {@link $isVoid} is null, this property should be used to decide whether the content and end tag has to be + * rendered. + * + * @var array + * + * @see https://www.w3.org/TR/html5/syntax.html#void-elements + */ + protected static $voidElements = [ + 'area' => 1, + 'base' => 1, + 'br' => 1, + 'col' => 1, + 'embed' => 1, + 'hr' => 1, + 'img' => 1, + 'input' => 1, + 'link' => 1, + 'meta' => 1, + 'param' => 1, + 'source' => 1, + 'track' => 1, + 'wbr' => 1 + ]; + + /** @var Attributes */ + protected $attributes; + + /** @var bool Whether possible attribute callbacks have been registered */ + protected $attributeCallbacksRegistered = false; + + /** @var bool|null Whether the element is void. If null, void check should use {@link $voidElements} */ + protected $isVoid; + + /** @var array You may want to set default attributes when extending this class */ + protected $defaultAttributes; + + /** @var string Tag of element. Set this property in order to provide the element's tag when extending this class */ + protected $tag; + + /** + * Get the attributes of the element + * + * @return Attributes + */ + public function getAttributes() + { + if ($this->attributes === null) { + $default = $this->getDefaultAttributes(); + if (empty($default)) { + $this->attributes = new Attributes(); + } else { + $this->attributes = Attributes::wantAttributes($default); + } + + $this->ensureAttributeCallbacksRegistered(); + } + + return $this->attributes; + } + + /** + * Set the attributes of the element + * + * @param Attributes|array|null $attributes + * + * @return $this + */ + public function setAttributes($attributes) + { + $this->attributes = Attributes::wantAttributes($attributes); + + $this->attributeCallbacksRegistered = false; + $this->ensureAttributeCallbacksRegistered(); + + return $this; + } + + /** + * Return true if the attribute with the given name exists, false otherwise + * + * @param string $name + * + * @return bool + */ + public function hasAttribute(string $name): bool + { + return $this->getAttributes()->has($name); + } + + /** + * Get the attribute with the given name + * + * If the attribute does not already exist, an empty one is automatically created and added to the attributes. + * + * @param string $name + * + * @return Attribute + * + * @throws InvalidArgumentException If the attribute does not yet exist and its name contains special characters + */ + public function getAttribute(string $name): Attribute + { + return $this->getAttributes()->get($name); + } + + /** + * Set the attribute with the given name and value + * + * If the attribute with the given name already exists, it gets overridden. + * + * @param string $name The name of the attribute + * @param string|bool|array $value The value of the attribute + * + * @return $this + */ + public function setAttribute($name, $value) + { + $this->getAttributes()->set($name, $value); + + return $this; + } + + /** + * Remove the attribute with the given name or remove the given value from the attribute + * + * @param string $name The name of the attribute + * @param null|string|array $value The value to remove if specified + * + * @return ?Attribute The removed or changed attribute, if any, otherwise null + */ + public function removeAttribute(string $name, $value = null): ?Attribute + { + return $this->getAttributes()->remove($name, $value); + } + + /** + * Add the given attributes + * + * @param Attributes|array $attributes + * + * @return $this + */ + public function addAttributes($attributes) + { + $this->getAttributes()->add($attributes); + + return $this; + } + + /** + * Get the default attributes of the element + * + * @return array + */ + public function getDefaultAttributes() + { + return $this->defaultAttributes; + } + + /** + * Get the tag of the element + * + * Since HTML Elements must have a tag, this method throws an exception if the element does not have a tag. + * + * @return string + * + * @throws RuntimeException If the element does not have a tag + */ + final public function getTag() + { + $tag = $this->tag(); + + if (! $tag) { + throw new RuntimeException('Element must have a tag'); + } + + return $tag; + } + + /** + * Set the tag of the element + * + * @param string $tag + * + * @return $this + */ + public function setTag($tag) + { + $this->tag = $tag; + + return $this; + } + + /** + * Get whether the element is void + * + * The default void detection which checks whether the element's tag is in the list of void elements according to + * https://www.w3.org/TR/html5/syntax.html#void-elements. + * + * If you want to override this behavior, use {@link setVoid()}. + * + * @return bool + */ + public function isVoid() + { + if ($this->isVoid !== null) { + return $this->isVoid; + } + + $tag = $this->getTag(); + + return isset(self::$voidElements[$tag]); + } + + /** + * Set whether the element is void + * + * You may use this method to override the default void detection which checks whether the element's tag is in the + * list of void elements according to https://www.w3.org/TR/html5/syntax.html#void-elements. + * + * If you specify null, void detection is reset to its default behavior. + * + * @param bool|null $void + * + * @return $this + */ + public function setVoid($void = true) + { + $this->isVoid = $void === null ?: (bool) $void; + + return $this; + } + + /** + * Ensure that possible attribute callbacks have been registered + * + * Note that this method is automatically called in {@link getAttributes()} and {@link setAttributes()}. + * + * @return $this + */ + public function ensureAttributeCallbacksRegistered() + { + if (! $this->attributeCallbacksRegistered) { + $this->attributeCallbacksRegistered = true; + $this->registerAttributeCallbacks($this->attributes); + } + + return $this; + } + + /** + * Render the content of the element to HTML + * + * @return string + */ + public function renderContent() + { + return parent::renderUnwrapped(); + } + + /** + * Get whether the closing tag should be rendered + * + * @return bool True for void elements, false otherwise + */ + public function wantsClosingTag() + { + // TODO: There is more. SVG and MathML namespaces + return ! $this->isVoid(); + } + + /** + * Use this element to wrap the given document + * + * @param HtmlDocument $document + * + * @return $this + */ + public function wrap(HtmlDocument $document) + { + $document->addWrapper($this); + + return $this; + } + + /** + * Internal method for accessing the tag + * + * You may override this method in order to provide the tag dynamically + * + * @return string + */ + protected function tag() + { + return $this->tag; + } + + /** + * Register attribute callbacks + * + * Override this method in order to register attribute callbacks in concrete classes. + */ + protected function registerAttributeCallbacks(Attributes $attributes) + { + } + + public function addHtml(ValidHtml ...$content) + { + $this->ensureAssembled(); + + parent::addHtml(...$content); + + return $this; + } + + /** + * @inheritdoc + * + * @throws RuntimeException If the element does not have a tag or is void but has content + */ + public function renderUnwrapped() + { + $this->ensureAssembled(); + + $tag = $this->getTag(); + $content = $this->renderContent(); + $attributes = $this->getAttributes()->render(); + + if (strlen($this->contentSeparator)) { + $length = strlen($content); + if ($length > 0) { + if ($content[0] === '<') { + $content = $this->contentSeparator . $content; + $length++; + } + if ($content[$length - 1] === '>') { + $content .= $this->contentSeparator; + } + } + } + + if (! $this->wantsClosingTag()) { + if (strlen($content)) { + throw new RuntimeException('Void elements must not have content'); + } + + return sprintf('<%s%s />', $tag, $attributes); + } + + return sprintf( + '<%s%s>%s', + $tag, + $attributes, + $content, + $tag + ); + } + + public function __clone() + { + parent::__clone(); + + if ($this->attributes !== null) { + $this->attributes = clone $this->attributes; + } + } +} diff --git a/vendor/ipl/html/src/Common/MultipleAttribute.php b/vendor/ipl/html/src/Common/MultipleAttribute.php new file mode 100644 index 00000000..00a68b2b --- /dev/null +++ b/vendor/ipl/html/src/Common/MultipleAttribute.php @@ -0,0 +1,70 @@ +registerMultipleAttributeCallback($attributes); + * } + * } + * ``` + */ +trait MultipleAttribute +{ + /** @var bool Whether the attribute `multiple` is set to `true` */ + protected $multiple = false; + + /** + * Get whether the attribute `multiple` is set to `true` + * + * @return bool + */ + public function isMultiple(): bool + { + return $this->multiple; + } + + /** + * Set the `multiple` attribute + * + * @param bool $multiple + * + * @return $this + */ + public function setMultiple(bool $multiple): self + { + $this->multiple = $multiple; + + return $this; + } + + /** + * Register the callback for `multiple` Attribute + * + * @param Attributes $attributes + */ + protected function registerMultipleAttributeCallback(Attributes $attributes): void + { + $attributes->registerAttributeCallback( + 'multiple', + [$this, 'isMultiple'], + [$this, 'setMultiple'] + ); + } +} diff --git a/vendor/ipl/html/src/Contract/FormElement.php b/vendor/ipl/html/src/Contract/FormElement.php new file mode 100644 index 00000000..1467c507 --- /dev/null +++ b/vendor/ipl/html/src/Contract/FormElement.php @@ -0,0 +1,132 @@ +prependWrapper($decorator); + * + * ... + * } + * ``` + * + * @param FormElement $formElement + */ + public function decorate(FormElement $formElement); +} diff --git a/vendor/ipl/html/src/Contract/FormSubmitElement.php b/vendor/ipl/html/src/Contract/FormSubmitElement.php new file mode 100644 index 00000000..4909df81 --- /dev/null +++ b/vendor/ipl/html/src/Contract/FormSubmitElement.php @@ -0,0 +1,13 @@ +summary(); + * }); + * + * execute_query(); + * + * $benchmark->tick('Fetched results'); + * + * generate_report(); + * + * $benchmark->tick('Report generated'); + * + * echo $performance; + * ``` + */ +class DeferredText implements ValidHtml +{ + /** @var callable will return the text that should be rendered */ + protected $callback; + + /** @var bool */ + protected $escaped = false; + + /** + * Create a new text node where content creation is deferred until rendering + * + * @param callable $callback Must return the content that should be rendered + */ + public function __construct(callable $callback) + { + $this->callback = $callback; + } + + /** + * Create a new text node where content creation is deferred until rendering + * + * @param callable $callback Must return the content that should be rendered + * + * @return static + */ + public static function create(callable $callback) + { + return new static($callback); + } + + /** + * Get whether the callback promises that its content is already escaped + * + * @return bool + */ + public function isEscaped() + { + return $this->escaped; + } + + /** + * Set whether the callback's content is already escaped + * + * @param bool $escaped + * + * @return $this + */ + public function setEscaped($escaped = true) + { + $this->escaped = $escaped; + + return $this; + } + + /** + * Render text to HTML when treated like a string + * + * Calls {@link render()} internally in order to render the text to HTML. + * Exceptions will be automatically caught and returned as HTML string as well using {@link Error::render()}. + * + * @return string + */ + public function __toString() + { + try { + return $this->render(); + } catch (Exception $e) { + return Error::render($e); + } + } + + public function render() + { + $callback = $this->callback; + + if ($this->escaped) { + return $callback(); + } else { + return Html::escape($callback()); + } + } +} diff --git a/vendor/ipl/html/src/Error.php b/vendor/ipl/html/src/Error.php new file mode 100644 index 00000000..a4ab2531 --- /dev/null +++ b/vendor/ipl/html/src/Error.php @@ -0,0 +1,117 @@ +addHtml(Html::tag('pre', $error->getTraceAsString())); + } + + return $result; + } + + /** + * + * @param Exception|Throwable|string $error + * @return string + */ + public static function render($error) + { + return static::show($error)->render(); + } + + /** + * @param bool|null $show + * @return bool + */ + public static function showTraces($show = null) + { + if ($show !== null) { + self::$showTraces = (bool) $show; + } + + return self::$showTraces; + } + + /** + * @deprecated Use {@link get_php_type()} instead + */ + public static function getPhpTypeName($any) + { + return get_php_type($any); + } + + /** + * @param Exception|Throwable $exception + * @return string + */ + protected static function createMessageForException($exception) + { + $file = preg_split('/[\/\\\]/', $exception->getFile(), -1, PREG_SPLIT_NO_EMPTY); + $file = array_pop($file); + return sprintf( + '%s (%s:%d)', + $exception->getMessage(), + $file, + $exception->getLine() + ); + } + + /** + * @param string + * @return HtmlDocument + */ + protected static function renderErrorMessage($message) + { + $output = new HtmlDocument(); + $output->addHtml( + Html::tag('div', ['class' => 'exception'], [ + Html::tag('h1', [ + Html::tag('i', ['class' => 'icon-bug']), + // TODO: Translate? More hints? + 'Oops, an error occurred!' + ]), + Html::tag('pre', $message) + ]) + ); + + return $output; + } +} diff --git a/vendor/ipl/html/src/Form.php b/vendor/ipl/html/src/Form.php new file mode 100644 index 00000000..dc18a5a6 --- /dev/null +++ b/vendor/ipl/html/src/Form.php @@ -0,0 +1,400 @@ +action; + } + + /** + * Set the Form submission URL + * + * @param string $action + * + * @return $this + */ + public function setAction($action) + { + $this->action = $action; + + return $this; + } + + /** + * Get the HTTP method to submit the form with + * + * @return string + */ + public function getMethod() + { + return $this->method; + } + + /** + * Set the HTTP method to submit the form with + * + * @param string $method + * + * @return $this + */ + public function setMethod($method) + { + $this->method = strtoupper($method); + + return $this; + } + + /** + * Get whether the form has a primary submit button + * + * @return bool + */ + public function hasSubmitButton() + { + return $this->submitButton !== null; + } + + /** + * Get the primary submit button + * + * @return FormSubmitElement|null + */ + public function getSubmitButton() + { + return $this->submitButton; + } + + /** + * Set the primary submit button + * + * @param FormSubmitElement $element + * + * @return $this + */ + public function setSubmitButton(FormSubmitElement $element) + { + $this->submitButton = $element; + + return $this; + } + + /** + * Get the submit element used to send the form + * + * @return FormSubmitElement|null + */ + public function getPressedSubmitElement() + { + foreach ($this->submitElements as $submitElement) { + if ($submitElement->hasBeenPressed()) { + return $submitElement; + } + } + + return null; + } + + /** + * @return ServerRequestInterface|null + */ + public function getRequest() + { + return $this->request; + } + + public function setRequest($request) + { + $this->request = $request; + $this->emit(Form::ON_REQUEST, [$request]); + + return $this; + } + + /** + * Get the url to redirect to on success + * + * @return string + */ + public function getRedirectUrl() + { + return $this->redirectUrl; + } + + /** + * Set the url to redirect to on success + * + * @param string $url + * + * @return $this + */ + public function setRedirectUrl($url) + { + $this->redirectUrl = $url; + + return $this; + } + + /** + * @param ServerRequestInterface $request + * + * @return $this + */ + public function handleRequest(ServerRequestInterface $request) + { + $this->setRequest($request); + + if (! $this->hasBeenSent()) { + // Always assemble + $this->ensureAssembled(); + + return $this; + } + + switch ($request->getMethod()) { + case 'POST': + $params = $request->getParsedBody(); + + break; + case 'GET': + parse_str($request->getUri()->getQuery(), $params); + + break; + default: + $params = []; + } + + $params = array_merge_recursive($params, $request->getUploadedFiles()); + $this->populate($params); + + // Assemble after populate in order to conditionally provide form elements + $this->ensureAssembled(); + + if ($this->hasBeenSubmitted()) { + if ($this->isValid()) { + try { + $this->emit(Form::ON_SENT, [$this]); + $this->onSuccess(); + $this->emitOnce(Form::ON_SUCCESS, [$this]); + } catch (Exception $e) { + $this->addMessage($e); + $this->onError(); + $this->emit(Form::ON_ERROR, [$e, $this]); + } + } else { + $this->onError(); + } + } else { + $this->validatePartial(); + $this->emit(Form::ON_SENT, [$this]); + } + + return $this; + } + + /** + * Get whether the form has been sent + * + * A form is considered sent if the request's method equals the form's method. + * + * @return bool + */ + public function hasBeenSent() + { + if ($this->request === null) { + return false; + } + + return $this->request->getMethod() === $this->getMethod(); + } + + /** + * Get whether the form has been submitted + * + * A form is submitted when it has been sent and when the primary submit button, if set, has been pressed. + * This method calls {@link hasBeenSent()} in order to detect whether the form has been sent. + * + * @return bool + */ + public function hasBeenSubmitted() + { + if (! $this->hasBeenSent()) { + return false; + } + + if ($this->hasSubmitButton()) { + return $this->getSubmitButton()->hasBeenPressed(); + } + + return true; + } + + /** + * Get whether the form is valid + * + * {@link validate()} is called automatically if the form has not been validated before. + * + * @return bool + */ + public function isValid() + { + if ($this->isValid === null) { + $this->validate(); + + $this->emit(self::ON_VALIDATE, [$this]); + } + + return $this->isValid; + } + + /** + * Validate all elements + * + * @return $this + */ + public function validate() + { + $this->ensureAssembled(); + + $valid = true; + foreach ($this->getElements() as $element) { + $element->validate(); + if (! $element->isValid()) { + $valid = false; + } + } + + $this->isValid = $valid; + + return $this; + } + + /** + * Validate all elements that have a value + * + * @return $this + */ + public function validatePartial() + { + $this->ensureAssembled(); + + foreach ($this->getElements() as $element) { + if ($element->hasValue()) { + $element->validate(); + } + } + + return $this; + } + + public function remove(ValidHtml $elementOrHtml) + { + if ($this->submitButton === $elementOrHtml) { + $this->submitButton = null; + } + + $this->removeElement($elementOrHtml); + } + + protected function onError() + { + $errors = Html::tag('ul', ['class' => 'errors']); + foreach ($this->getMessages() as $message) { + if ($message instanceof Exception) { + $message = $message->getMessage(); + } + + $errors->addHtml(Html::tag('li', $message)); + } + + if (! $errors->isEmpty()) { + $this->prependHtml($errors); + } + } + + protected function onSuccess() + { + // $this->redirectOnSuccess(); + } + + protected function onElementRegistered(FormElement $element) + { + if ($element instanceof FormSubmitElement) { + $this->submitElements[$element->getName()] = $element; + + if (! $this->hasSubmitButton()) { + $this->setSubmitButton($element); + } + } + + $element->onRegistered($this); + } + + protected function registerAttributeCallbacks(Attributes $attributes) + { + $attributes + ->registerAttributeCallback('action', [$this, 'getAction'], [$this, 'setAction']) + ->registerAttributeCallback('method', [$this, 'getMethod'], [$this, 'setMethod']); + } +} diff --git a/vendor/ipl/html/src/FormDecorator/CallbackDecorator.php b/vendor/ipl/html/src/FormDecorator/CallbackDecorator.php new file mode 100644 index 00000000..1048bfb1 --- /dev/null +++ b/vendor/ipl/html/src/FormDecorator/CallbackDecorator.php @@ -0,0 +1,41 @@ +callback = $callback; + } + + public function decorate(FormElement $formElement) + { + $decorator = clone $this; + + $decorator->formElement = $formElement; + + $formElement->prependWrapper($decorator); + } + + protected function assemble() + { + call_user_func($this->callback, $this->formElement, $this); + } +} diff --git a/vendor/ipl/html/src/FormDecorator/DdDtDecorator.php b/vendor/ipl/html/src/FormDecorator/DdDtDecorator.php new file mode 100644 index 00000000..1b58ff80 --- /dev/null +++ b/vendor/ipl/html/src/FormDecorator/DdDtDecorator.php @@ -0,0 +1,140 @@ +wrappedElement = $element; + $element->prependWrapper($newWrapper); + + return $newWrapper; + } + + protected function renderLabel() + { + if ($this->wrappedElement instanceof BaseFormElement) { + $label = $this->wrappedElement->getLabel(); + if ($label) { + return Html::tag('label', null, $label); + } + } + + return null; + } + + public function getAttributes() + { + $attributes = parent::getAttributes(); + + if ($this->wrappedElement->hasBeenValidated() && ! $this->wrappedElement->isValid()) { + $classes = $attributes->get('class'); + if ( + empty($classes) + || (is_array($classes) && ! in_array('errors', $classes)) + || (is_string($classes) && $classes !== 'errors') + ) { + $attributes->add('class', 'errors'); + } + } + + return $attributes; + } + + protected function renderDescription() + { + if ($this->wrappedElement instanceof BaseFormElement) { + $description = $this->wrappedElement->getDescription(); + if ($description) { + return Html::tag('p', ['class' => 'description'], $description); + } + } + + return null; + } + + protected function renderErrors() + { + if ($this->wrappedElement instanceof BaseFormElement) { + $errors = []; + foreach ($this->wrappedElement->getMessages() as $message) { + $errors[] = Html::tag('p', ['class' => 'error'], $message); + } + + if (! empty($errors)) { + return $errors; + } + } + + return null; + } + + public function addHtml(ValidHtml ...$content) + { + // TODO: is this required? + if (! in_array($this->wrappedElement, $content, true)) { + parent::addHtml(...$content); + } + + return $this; + } + + protected function assemble() + { + $this->addHtml($this->dt(), $this->dd()); + $this->ready = true; + } + + protected function dt() + { + if ($this->dt === null) { + $this->dt = Html::tag('dt', null, $this->renderLabel()); + } + + return $this->dt; + } + + /** + * @return \ipl\Html\HtmlElement + */ + protected function dd() + { + if ($this->dd === null) { + $this->dd = Html::tag('dd', null, [ + $this->wrappedElement, + $this->renderErrors(), + $this->renderDescription() + ]); + } + + return $this->dd; + } + + public function __destruct() + { + $this->wrapper = null; + } +} diff --git a/vendor/ipl/html/src/FormDecorator/DecoratorInterface.php b/vendor/ipl/html/src/FormDecorator/DecoratorInterface.php new file mode 100644 index 00000000..1ed1a387 --- /dev/null +++ b/vendor/ipl/html/src/FormDecorator/DecoratorInterface.php @@ -0,0 +1,19 @@ +prependWrapper($decorator); + + $decorator->formElement = $formElement; + + $classes = [static::INPUT_ELEMENT_CLASS]; + if ($formElement instanceof FormSubmitElement) { + $classes[] = static::SUBMIT_ELEMENT_CLASS; + } + + $decorator->getAttributes()->add('class', $classes); + } + + protected function assembleDescription() + { + $description = $this->formElement->getDescription(); + + if ($description !== null) { + $descriptionId = null; + if ($this->formElement->getAttributes()->has('id')) { + $descriptionId = 'desc_' . $this->formElement->getAttributes()->get('id')->getValue(); + $this->formElement->getAttributes()->set('aria-describedby', $descriptionId); + } + + return Html::tag('p', ['id' => $descriptionId, 'class' => static::DESCRIPTION_CLASS], $description); + } + + return null; + } + + protected function assembleElement() + { + if ($this->formElement->isRequired()) { + $this->formElement->getAttributes()->set('aria-required', 'true'); + } + + return $this->formElement->ensureAssembled(); + } + + protected function assembleErrors() + { + $errors = new HtmlElement('ul', Attributes::create(['class' => static::ERROR_CLASS])); + + foreach ($this->formElement->getMessages() as $message) { + $errors->addHtml( + new HtmlElement('li', Attributes::create(['class' => static::ERROR_CLASS]), Text::create($message)) + ); + } + + if (! $errors->isEmpty()) { + return $errors; + } + + return null; + } + + protected function assembleLabel() + { + $label = $this->formElement->getLabel(); + + if ($label !== null) { + if ($this->formElement instanceof FieldsetElement) { + return new HtmlElement('legend', null, Text::create($label)); + } else { + $attributes = null; + if ($this->formElement->getAttributes()->has('id')) { + $attributes = new Attributes(['for' => $this->formElement->getAttributes()->get('id')->getValue()]); + } + + return Html::tag('label', $attributes, $label); + } + } + + return null; + } + + protected function assemble() + { + if ($this->formElement->hasBeenValidated() && ! $this->formElement->isValid()) { + $this->getAttributes()->add('class', static::ERROR_HINT_CLASS); + } + + if ($this->formElement instanceof FieldsetElement) { + $element = $this->assembleElement(); + $element->prependHtml(...Html::wantHtmlList([ + $this->assembleLabel(), + $this->assembleDescription() + ])); + + $this->addHtml(...Html::wantHtmlList([ + $element, + $this->assembleErrors() + ])); + } else { + $this->addHtml(...Html::wantHtmlList([ + $this->assembleLabel(), + $this->assembleElement(), + $this->assembleDescription(), + $this->assembleErrors() + ])); + } + } +} diff --git a/vendor/ipl/html/src/FormElement/BaseFormElement.php b/vendor/ipl/html/src/FormElement/BaseFormElement.php new file mode 100644 index 00000000..541291ee --- /dev/null +++ b/vendor/ipl/html/src/FormElement/BaseFormElement.php @@ -0,0 +1,390 @@ +setName($name); + $this->init(); + + if ($attributes !== null) { + $this->addAttributes($attributes); + } + } + + public function getDescription() + { + return $this->description; + } + + /** + * Set the description of the element + * + * @param string $description + * + * @return $this + */ + public function setDescription($description) + { + $this->description = $description; + + return $this; + } + + public function getLabel() + { + return $this->label; + } + + /** + * Set the label of the element + * + * @param string $label + * + * @return $this + */ + public function setLabel($label) + { + $this->label = $label; + + return $this; + } + + public function getName() + { + return $this->name; + } + + /** + * Set the name for the element + * + * @param string $name + * + * @return $this + */ + public function setName($name) + { + $this->name = $name; + + return $this; + } + + public function isIgnored() + { + return $this->ignored; + } + + /** + * Set whether the element is ignored + * + * @param bool $ignored + * + * @return $this + */ + public function setIgnored($ignored = true) + { + $this->ignored = (bool) $ignored; + + return $this; + } + + public function isRequired() + { + return $this->required; + } + + /** + * Set whether the element is required + * + * @param bool $required + * + * @return $this + */ + public function setRequired($required = true) + { + $this->required = (bool) $required; + + return $this; + } + + public function isValid() + { + if ($this->valid === null) { + $this->validate(); + } + + return $this->valid; + } + + /** + * Get the validators + * + * @return ValidatorChain + */ + public function getValidators() + { + if ($this->validators === null) { + $chain = new ValidatorChain(); + $this->addDefaultValidators($chain); + $this->validators = $chain; + } + + return $this->validators; + } + + /** + * Set the validators + * + * @param iterable $validators + * + * @return $this + */ + public function setValidators($validators) + { + $this + ->getValidators() + ->clearValidators() + ->addValidators($validators); + + return $this; + } + + /** + * Add validators + * + * @param iterable $validators + * + * @return $this + */ + public function addValidators($validators) + { + $this->getValidators()->addValidators($validators); + + return $this; + } + + public function hasValue() + { + $value = $this->getValue(); + + return ! Form::isEmptyValue($value); + } + + public function getValue() + { + return $this->value; + } + + public function setValue($value) + { + if ($value === '') { + $this->value = null; + } else { + $this->value = $value; + } + + $this->valid = null; + + return $this; + } + + public function getValueCandidates() + { + return $this->valueCandidates; + } + + public function setValueCandidates(array $values) + { + $this->valueCandidates = $values; + + return $this; + } + + public function onRegistered(Form $form) + { + } + + /** + * Validate the element using all registered validators + * + * @return $this + */ + public function validate() + { + $this->ensureAssembled(); + + if (! $this->hasValue()) { + if ($this->isRequired()) { + $this->setMessages([$this->translate('This field is required.')]); + $this->valid = false; + } else { + $this->valid = true; + } + } else { + $this->valid = $this->getValidators()->isValid($this->getValue()); + $this->setMessages($this->getValidators()->getMessages()); + } + + return $this; + } + + public function hasBeenValidated() + { + return $this->valid !== null; + } + + /** + * Callback for the name attribute + * + * @return Attribute|string + */ + public function getNameAttribute() + { + return $this->getName(); + } + + /** + * Callback for the required attribute + * + * @return Attribute|null + */ + public function getRequiredAttribute() + { + if ($this->isRequired()) { + return new Attribute('required', true); + } + + return null; + } + + /** + * Callback for the value attribute + * + * @return mixed + */ + public function getValueAttribute() + { + return $this->getValue(); + } + + /** + * Initialize this form element + * + * If you want to initialize this element after construction, override this method + */ + protected function init(): void + { + } + + /** + * Add default validators + */ + protected function addDefaultValidators(ValidatorChain $chain): void + { + } + + protected function registerValueCallback(Attributes $attributes) + { + $attributes->registerAttributeCallback( + 'value', + [$this, 'getValueAttribute'], + [$this, 'setValue'] + ); + } + + protected function registerAttributeCallbacks(Attributes $attributes) + { + $this->registerValueCallback($attributes); + + $attributes + ->registerAttributeCallback('label', null, [$this, 'setLabel']) + ->registerAttributeCallback('name', [$this, 'getNameAttribute'], [$this, 'setName']) + ->registerAttributeCallback('description', null, [$this, 'setDescription']) + ->registerAttributeCallback('validators', null, [$this, 'setValidators']) + ->registerAttributeCallback('ignore', null, [$this, 'setIgnored']) + ->registerAttributeCallback('required', [$this, 'getRequiredAttribute'], [$this, 'setRequired']); + + $this->registerCallbacks(); + } + + /** @deprecated Use {@link registerAttributeCallbacks()} instead */ + protected function registerCallbacks() + { + } + + /** + * @deprecated + * + * {@see Attributes::get()} does not respect callbacks, + * but we need the value of the callback to nest attribute names. + */ + protected function getValueOfNameAttribute() + { + $attributes = $this->getAttributes(); + + $callbacksProperty = new ReflectionProperty(get_class($attributes), 'callbacks'); + $callbacksProperty->setAccessible(true); + $callbacks = $callbacksProperty->getValue($attributes); + + if (isset($callbacks['name'])) { + $name = $callbacks['name'](); + + if ($name instanceof Attribute) { + return $name->getValue(); + } + + return $name; + } + + return $this->getName(); + } +} diff --git a/vendor/ipl/html/src/FormElement/ButtonElement.php b/vendor/ipl/html/src/FormElement/ButtonElement.php new file mode 100644 index 00000000..63ae540a --- /dev/null +++ b/vendor/ipl/html/src/FormElement/ButtonElement.php @@ -0,0 +1,8 @@ +checked; + } + + /** + * Set whether the checkbox is checked + * + * @param bool $checked + * + * @return $this + */ + public function setChecked($checked) + { + $this->checked = (bool) $checked; + + return $this; + } + + /** + * Get the value of the checkbox when it is checked + * + * @return string + */ + public function getCheckedValue() + { + return $this->checkedValue; + } + + /** + * Set the value of the checkbox when it is checked + * + * @param string $checkedValue + * + * @return $this + */ + public function setCheckedValue($checkedValue) + { + $this->checkedValue = $checkedValue; + + return $this; + } + + /** + * Get the value of the checkbox when it is not checked + * + * @return string + */ + public function getUncheckedValue() + { + return $this->uncheckedValue; + } + + /** + * Set the value of the checkbox when it is not checked + * + * @param string $uncheckedValue + * + * @return $this + */ + public function setUncheckedValue($uncheckedValue) + { + $this->uncheckedValue = $uncheckedValue; + + return $this; + } + + public function setValue($value) + { + if (is_bool($value)) { + $value = $value ? $this->getCheckedValue() : $this->getUncheckedValue(); + } + + $this->setChecked($value === $this->getCheckedValue()); + + return parent::setValue($value); + } + + public function getValueAttribute() + { + return $this->getCheckedValue(); + } + + protected function registerAttributeCallbacks(Attributes $attributes) + { + parent::registerAttributeCallbacks($attributes); + + $attributes + ->registerAttributeCallback('checked', [$this, 'isChecked'], [$this, 'setChecked']) + ->registerAttributeCallback('checkedValue', null, [$this, 'setCheckedValue']) + ->registerAttributeCallback('uncheckedValue', null, [$this, 'setUncheckedValue']); + } + + public function renderUnwrapped() + { + $html = parent::renderUnwrapped(); + + return (new HiddenElement($this->getValueOfNameAttribute(), ['value' => $this->getUncheckedValue()])) . $html; + } +} diff --git a/vendor/ipl/html/src/FormElement/ColorElement.php b/vendor/ipl/html/src/FormElement/ColorElement.php new file mode 100644 index 00000000..21d6c3a5 --- /dev/null +++ b/vendor/ipl/html/src/FormElement/ColorElement.php @@ -0,0 +1,16 @@ +add(new HexColorValidator()); + } +} diff --git a/vendor/ipl/html/src/FormElement/DateElement.php b/vendor/ipl/html/src/FormElement/DateElement.php new file mode 100644 index 00000000..2f73b3cd --- /dev/null +++ b/vendor/ipl/html/src/FormElement/DateElement.php @@ -0,0 +1,8 @@ +getElements() as $element) { + if ($element->hasValue()) { + return true; + } + } + + return false; + } + + public function getValue($name = null, $default = null) + { + if ($name === null) { + if ($default !== null) { + throw new LogicException("Can't provide default without a name"); + } + + return $this->getValues(); + } + + return $this->getElementValue($name, $default); + } + + public function setValue($value) + { + // We expect an array/iterable here, + // so call populate to loop through it and apply values to the child elements of the fieldset. + $this->populate($value); + + return $this; + } + + public function validate() + { + $this->ensureAssembled(); + + $this->valid = true; + foreach ($this->getElements() as $element) { + $element->validate(); + if (! $element->isValid()) { + $this->valid = false; + } + } + + if ($this->valid) { + parent::validate(); + } + + return $this; + } + + public function getValueAttribute() + { + // Fieldsets do not have the value attribute. + return null; + } + + public function setWrapper(Wrappable $wrapper) + { + // TODO(lippserd): Revise decorator implementation to properly implement decorator propagation + if ( + ! $this->hasDefaultElementDecorator() + && $wrapper instanceof FormElementDecorator + ) { + $this->setDefaultElementDecorator(clone $wrapper); + } + + return parent::setWrapper($wrapper); + } + + protected function onElementRegistered(FormElement $element) + { + $element->getAttributes()->registerAttributeCallback('name', function () use ($element) { + /** + * We don't change the {@see BaseFormElement::$name} property of the element, + * otherwise methods like {@see FormElements::populate() and {@see FormElements::getElement()} would fail, + * but only change the name attribute to nest the names. + */ + return sprintf( + '%s[%s]', + $this->getValueOfNameAttribute(), + $element->getName() + ); + }); + } +} diff --git a/vendor/ipl/html/src/FormElement/FileElement.php b/vendor/ipl/html/src/FormElement/FileElement.php new file mode 100644 index 00000000..854d7d05 --- /dev/null +++ b/vendor/ipl/html/src/FormElement/FileElement.php @@ -0,0 +1,414 @@ +getAttributes()->get('accept')->setSeparator(', '); + + parent::__construct($name, $attributes); + } + + /** + * Get the path to store files to preserve them across requests + * + * @return string + */ + public function getDestination(): ?string + { + return $this->destination; + } + + /** + * Set the path to store files to preserve them across requests + * + * Uploaded files are moved to the given directory to + * retain the file through automatic form submissions and failed form validations. + * + * Please note that using file persistence currently has the following drawbacks: + * + * * Works only if the file element is added to the form during {@link Form::assemble()}. + * * Persisted files are not removed automatically. + * * Files with the same name override each other. + * + * @param string $path + * + * @return $this + */ + public function setDestination(string $path): self + { + $this->destination = $path; + + return $this; + } + + public function getValueAttribute() + { + // Value attributes of file inputs are set only client-side. + return null; + } + + public function getNameAttribute() + { + $name = parent::getNameAttribute(); + + return $this->isMultiple() ? ($name . '[]') : $name; + } + + public function hasValue() + { + if ($this->value === null) { + $files = $this->loadFiles(); + if (empty($files)) { + return false; + } + + if (! $this->isMultiple()) { + $files = $files[0]; + } + + $this->value = $files; + } + + return $this->value !== null; + } + + public function getValue() + { + if (! $this->hasValue()) { + return null; + } + + if (! $this->hasFiles()) { + $files = $this->value; + if (! $this->isMultiple()) { + $files = [$files]; + } + + $storedFiles = $this->storeFiles(...$files); + if (! $this->isMultiple()) { + $storedFiles = $storedFiles[0]; + } + + $this->value = $storedFiles; + } + + return $this->value; + } + + public function setValue($value) + { + if (! empty($value)) { + $fileToTest = $value; + if ($this->isMultiple()) { + $fileToTest = $value[0]; + } + + if (! $fileToTest instanceof UploadedFileInterface) { + throw new InvalidArgumentException( + sprintf('%s is not an uploaded file', get_php_type($fileToTest)) + ); + } + + if ($fileToTest->getError() === UPLOAD_ERR_NO_FILE && ! $fileToTest->getClientFilename()) { + $value = null; + } + } else { + $value = null; + } + + return parent::setValue($value); + } + + /** + * Get whether there are any files stored on disk + * + * @return bool + */ + protected function hasFiles(): bool + { + return $this->destination !== null && reset($this->files); + } + + /** + * Load and return all files stored on disk + * + * @return UploadedFileInterface[] + */ + protected function loadFiles(): array + { + if (empty($this->files) || $this->destination === null) { + return []; + } + + foreach ($this->files as $name => $_) { + $filePath = $this->getFilePath($name); + if (! is_readable($filePath) || ! is_file($filePath)) { + // If one file isn't accessible, none is + return []; + } + + if (in_array($name, $this->filesToRemove, true)) { + @unlink($filePath); + } else { + $this->files[$name] = new UploadedFile( + $filePath, + filesize($filePath), + 0, + $name, + mime_content_type($filePath) + ); + } + } + + $this->files = array_diff_key($this->files, array_flip($this->filesToRemove)); + + return array_values($this->files); + } + + /** + * Store the given files on disk + * + * @param UploadedFileInterface ...$files + * + * @return UploadedFileInterface[] + */ + protected function storeFiles(UploadedFileInterface ...$files): array + { + if ($this->destination === null || ! is_writable($this->destination)) { + return $files; + } + + foreach ($files as $file) { + $name = $file->getClientFilename(); + $path = $this->getFilePath($name); + + $file->moveTo($path); + + // Re-created to ensure moveTo() still works if called externally + $this->files[$name] = new UploadedFile( + $path, + $file->getSize(), + 0, + $name, + $file->getClientMediaType() + ); + } + + return array_values($this->files); + } + + /** + * Get the file path on disk of the given file + * + * @param string $name + * + * @return string + */ + protected function getFilePath(string $name): string + { + return implode(DIRECTORY_SEPARATOR, [$this->destination, sha1($name)]); + } + + public function onRegistered(Form $form) + { + if (! $form->hasAttribute('enctype')) { + $form->setAttribute('enctype', 'multipart/form-data'); + } + + $chosenFiles = (array) $form->getPopulatedValue('chosen_file_' . $this->getName(), []); + foreach ($chosenFiles as $chosenFile) { + $this->files[$chosenFile] = null; + } + + $this->filesToRemove = (array) $form->getPopulatedValue('remove_file_' . $this->getName(), []); + } + + protected function addDefaultValidators(ValidatorChain $chain): void + { + $chain->add(new FileValidator([ + 'maxSize' => $this->getDefaultMaxFileSize(), + 'mimeType' => array_filter( + (array) $this->getAttributes()->get('accept')->getValue(), + function ($type) { + // file inputs also allow file extensions in the accept attribute. These + // must not be passed as they don't resemble valid mime type definitions. + return is_string($type) && ltrim($type)[0] !== '.'; + } + ) + ])); + } + + protected function registerAttributeCallbacks(Attributes $attributes) + { + parent::registerAttributeCallbacks($attributes); + $this->registerMultipleAttributeCallback($attributes); + $this->getAttributes()->registerAttributeCallback('destination', null, [$this, 'setDestination']); + } + + /** + * Get the system's default maximum file upload size + * + * @return int + */ + public function getDefaultMaxFileSize(): int + { + if (static::$defaultMaxFileSize === null) { + $ini = $this->convertIniToInteger(trim(static::getPostMaxSize())); + $max = $this->convertIniToInteger(trim(static::getUploadMaxFilesize())); + $min = max($ini, $max); + if ($ini > 0) { + $min = min($min, $ini); + } + + if ($max > 0) { + $min = min($min, $max); + } + + static::$defaultMaxFileSize = $min; + } + + return static::$defaultMaxFileSize; + } + + /** + * Converts a ini setting to a integer value + * + * @param string $setting + * + * @return int + */ + private function convertIniToInteger(string $setting): int + { + if (! is_numeric($setting)) { + $type = strtoupper(substr($setting, -1)); + $setting = (int) substr($setting, 0, -1); + + switch ($type) { + case 'K': + $setting *= 1024; + break; + + case 'M': + $setting *= 1024 * 1024; + break; + + case 'G': + $setting *= 1024 * 1024 * 1024; + break; + + default: + break; + } + } + + return (int) $setting; + } + + /** + * Get the `post_max_size` INI setting + * + * @return string + */ + protected static function getPostMaxSize(): string + { + return ini_get('post_max_size') ?: '8M'; + } + + /** + * Get the `upload_max_filesize` INI setting + * + * @return string + */ + protected static function getUploadMaxFilesize(): string + { + return ini_get('upload_max_filesize') ?: '2M'; + } + + protected function assemble() + { + $doc = new HtmlDocument(); + if ($this->hasFiles()) { + foreach ($this->files as $file) { + $doc->addHtml(new HiddenElement('chosen_file_' . $this->getNameAttribute(), [ + 'value' => $file->getClientFilename() + ])); + } + + $this->prependWrapper($doc); + } + } + + public function renderUnwrapped() + { + if (! $this->hasValue() || ! $this->hasFiles()) { + return parent::renderUnwrapped(); + } + + $uploadedFiles = new HtmlElement('ul', Attributes::create(['class' => 'uploaded-files'])); + foreach ($this->files as $file) { + $uploadedFiles->addHtml(new HtmlElement( + 'li', + null, + (new ButtonElement('remove_file_' . $this->getNameAttribute(), Attributes::create([ + 'type' => 'submit', + 'formnovalidate' => true, + 'class' => 'remove-uploaded-file', + 'value' => $file->getClientFilename(), + 'title' => sprintf($this->translate('Remove file "%s"'), $file->getClientFilename()) + ])))->addHtml(new HtmlElement( + 'span', + null, + new Icon('remove'), + Text::create($file->getClientFilename()) + )) + )); + } + + return $uploadedFiles->render(); + } +} diff --git a/vendor/ipl/html/src/FormElement/FormElements.php b/vendor/ipl/html/src/FormElement/FormElements.php new file mode 100644 index 00000000..4a5bb5cb --- /dev/null +++ b/vendor/ipl/html/src/FormElement/FormElements.php @@ -0,0 +1,502 @@ +elements; + } + + /** + * Get whether the given element exists + * + * @param string|FormElement $element + * + * @return bool + */ + public function hasElement($element) + { + if (is_string($element)) { + return array_key_exists($element, $this->elements); + } + + if ($element instanceof FormElement) { + return in_array($element, $this->elements, true); + } + + return false; + } + + /** + * Get the element by the given name + * + * @param string $name + * + * @return FormElement + * + * @throws InvalidArgumentException If no element with the given name exists + */ + public function getElement($name) + { + if (! array_key_exists($name, $this->elements)) { + throw new InvalidArgumentException(sprintf( + "Can't get element '%s'. Element does not exist", + $name + )); + } + + return $this->elements[$name]; + } + + /** + * Add an element + * + * @param string|FormElement $typeOrElement Type of the element as string or an instance of FormElement + * @param string $name Name of the element + * @param mixed $options Element options as key-value pairs + * + * @return $this + * + * @throws InvalidArgumentException If $typeOrElement is neither a string nor an instance of FormElement + * or if $typeOrElement is a string and $name is not set + * or if $typeOrElement is a string but type is unknown + * or if $typeOrElement is an instance of FormElement but does not have a name + */ + public function addElement($typeOrElement, $name = null, $options = null) + { + if (is_string($typeOrElement)) { + if ($name === null) { + throw new InvalidArgumentException(sprintf( + '%s expects parameter 2 to be set if parameter 1 is a string', + __METHOD__ + )); + } + + $element = $this->createElement($typeOrElement, $name, $options); + } elseif ($typeOrElement instanceof FormElement) { + $element = $typeOrElement; + } else { + throw new InvalidArgumentException(sprintf( + '%s() expects parameter 1 to be a string or an instance of %s, %s given', + __METHOD__, + FormElement::class, + get_php_type($typeOrElement) + )); + } + + $this + ->registerElement($element) // registerElement() must be called first because of the name check + ->decorate($element) + ->addHtml($element); + + return $this; + } + + /** + * Create an element + * + * @param string $type Type of the element + * @param string $name Name of the element + * @param mixed $options Element options as key-value pairs + * + * @return FormElement + * + * @throws InvalidArgumentException If the type of the element is unknown + */ + public function createElement($type, $name, $options = null) + { + $this->ensureDefaultElementLoaderRegistered(); + + $class = $this->loadPlugin('element', $type); + + if (! $class) { + throw new InvalidArgumentException(sprintf( + "Can't create element of unknown type '%s", + $type + )); + } + + /** @var FormElement $element */ + $element = new $class($name); + + if ($options !== null) { + $element->addAttributes($options); + } + + return $element; + } + + /** + * Register an element + * + * Registers the element for value and validation handling but does not add it to the render stack. + * + * @param FormElement $element + * + * @return $this + * + * @throws InvalidArgumentException If $element does not provide a name + */ + public function registerElement(FormElement $element) + { + $name = $element->getName(); + + if ($name === null) { + throw new InvalidArgumentException(sprintf( + '%s expects the element to provide a name', + __METHOD__ + )); + } + + $this->elements[$name] = $element; + + if (array_key_exists($name, $this->populatedValues)) { + $element->setValue($this->populatedValues[$name][count($this->populatedValues[$name]) - 1]); + + if ($element instanceof ValueCandidates) { + $element->setValueCandidates($this->populatedValues[$name]); + } + } + + $this->onElementRegistered($element); + $this->emit(Form::ON_ELEMENT_REGISTERED, [$element]); + + return $this; + } + + /** + * Get whether a default element decorator exists + * + * @return bool + */ + public function hasDefaultElementDecorator() + { + return $this->defaultElementDecorator !== null; + } + + /** + * Get the default element decorator, if any + * + * @return FormElementDecorator|null + */ + public function getDefaultElementDecorator() + { + return $this->defaultElementDecorator; + } + + /** + * Set the default element decorator + * + * If $decorator is a string, the decorator will be automatically created from a registered decorator loader. + * A loader for the namespace ipl\\Html\\FormDecorator is automatically registered by default. + * See {@link addDecoratorLoader()} for registering a custom loader. + * + * @param FormElementDecorator|string $decorator + * + * @return $this + * + * @throws InvalidArgumentException If $decorator is a string and can't be loaded from registered decorator loaders + * or if a decorator loader does not return an instance of + * {@link FormElementDecorator} + */ + public function setDefaultElementDecorator($decorator) + { + if ($decorator instanceof FormElementDecorator || $decorator instanceof DecoratorInterface) { + $this->defaultElementDecorator = $decorator; + } else { + $this->ensureDefaultElementDecoratorLoaderRegistered(); + + $d = $this->loadPlugin('decorator', $decorator); + + if (! $d instanceof FormElementDecorator && ! $d instanceof DecoratorInterface) { + throw new InvalidArgumentException(sprintf( + "Expected instance of %s for decorator '%s'," + . " got %s from a decorator loader instead", + FormElementDecorator::class, + $decorator, + get_php_type($d) + )); + } + + $this->defaultElementDecorator = $d; + } + + return $this; + } + + /** + * Get the value of the element specified by name + * + * Returns $default if the element does not exist or has no value. + * + * @param string $name + * @param mixed $default + * + * @return mixed + */ + public function getValue($name, $default = null) + { + if ($this->hasElement($name)) { + $value = $this->getElement($name)->getValue(); + if ($value !== null) { + return $value; + } + } + + return $default; + } + + /** + * Get the values for all but ignored elements + * + * @return array Values as name-value pairs + */ + public function getValues() + { + $values = []; + foreach ($this->getElements() as $element) { + if (! $element->isIgnored()) { + $values[$element->getName()] = $element->getValue(); + } + } + + return $values; + } + + /** + * Populate values of registered elements + * + * @param iterable $values Values as name-value pairs + * + * @return $this + */ + public function populate($values) + { + foreach ($values as $name => $value) { + $this->populatedValues[$name][] = $value; + if ($this->hasElement($name)) { + $this->getElement($name)->setValue($value); + } + } + + return $this; + } + + /** + * Get the populated value of the element specified by name + * + * Returns $default if there is no populated value for this element. + * + * @param string $name + * @param mixed $default + * + * @return mixed + */ + public function getPopulatedValue($name, $default = null) + { + return isset($this->populatedValues[$name]) + ? $this->populatedValues[$name][count($this->populatedValues[$name]) - 1] + : $default; + } + + /** + * Clear populated value of the given element + * + * @param string $name + * + * @return $this + */ + public function clearPopulatedValue($name) + { + if (isset($this->populatedValues[$name])) { + unset($this->populatedValues[$name]); + } + + return $this; + } + + /** + * Add all elements from the given element collection + * + * @param Form|SubFormElement $form + * + * @return $this + */ + public function addElementsFrom($form) + { + foreach ($form->getElements() as $element) { + $this->addElement($element); + } + + return $this; + } + + /** + * Add a decorator loader + * + * @param string $namespace Namespace of the decorators + * @param string $postfix Decorator name postfix, if any + * + * @return $this + */ + public function addDecoratorLoader($namespace, $postfix = null) + { + $this->addPluginLoader('decorator', $namespace, $postfix); + + return $this; + } + + /** + * Add an element loader + * + * @param string $namespace Namespace of the elements + * @param string $postfix Element name postfix, if any + * + * @return $this + */ + public function addElementLoader($namespace, $postfix = null) + { + $this->addPluginLoader('element', $namespace, $postfix); + + return $this; + } + + /** + * Ensure that our default element decorator loader is registered + * + * @return $this + */ + protected function ensureDefaultElementDecoratorLoaderRegistered() + { + if (! $this->defaultElementDecoratorLoaderRegistered) { + $this->addDefaultPluginLoader( + 'decorator', + 'ipl\\Html\\FormDecorator', + 'Decorator' + ); + + $this->defaultElementDecoratorLoaderRegistered = true; + } + + return $this; + } + + /** + * Ensure that our default element loader is registered + * + * @return $this + */ + protected function ensureDefaultElementLoaderRegistered() + { + if (! $this->defaultElementLoaderRegistered) { + $this->addDefaultPluginLoader('element', __NAMESPACE__, 'Element'); + + $this->defaultElementLoaderRegistered = true; + } + + return $this; + } + + /** + * Decorate the given element + * + * @param FormElement $element + * + * @return $this + * + * @throws UnexpectedValueException If the default decorator is set but not an instance of + * {@link FormElementDecorator} + */ + protected function decorate(FormElement $element) + { + if ($this->hasDefaultElementDecorator()) { + $decorator = $this->getDefaultElementDecorator(); + + if (! $decorator instanceof FormElementDecorator && ! $decorator instanceof DecoratorInterface) { + throw new UnexpectedValueException(sprintf( + '%s expects the default decorator to be an instance of %s, got %s instead', + __METHOD__, + FormElementDecorator::class, + get_php_type($decorator) + )); + } + + $decorator->decorate($element); + } + + return $this; + } + + public function isValidEvent($event) + { + return in_array($event, [ + Form::ON_SUCCESS, + Form::ON_SENT, + Form::ON_ERROR, + Form::ON_REQUEST, + Form::ON_VALIDATE, + Form::ON_ELEMENT_REGISTERED, + ]); + } + + public function remove(ValidHtml $elementOrHtml) + { + if ($elementOrHtml instanceof FormElement) { + if ($this->hasElement($elementOrHtml)) { + $name = array_search($elementOrHtml, $this->elements, true); + if ($name !== false) { + unset($this->elements[$name]); + } + } + } + + parent::remove($elementOrHtml); + } + + /** + * Handler which is called after an element has been registered + * + * @param FormElement $element + */ + protected function onElementRegistered(FormElement $element) + { + } +} diff --git a/vendor/ipl/html/src/FormElement/HiddenElement.php b/vendor/ipl/html/src/FormElement/HiddenElement.php new file mode 100644 index 00000000..bffc7ebf --- /dev/null +++ b/vendor/ipl/html/src/FormElement/HiddenElement.php @@ -0,0 +1,8 @@ +type; + } + + /** + * Set the type of the input + * + * @param string $type + * + * @return $this + */ + public function setType($type) + { + $this->type = (string) $type; + + return $this; + } + + protected function registerAttributeCallbacks(Attributes $attributes) + { + parent::registerAttributeCallbacks($attributes); + + $attributes->registerAttributeCallback( + 'type', + [$this, 'getType'], + [$this, 'setType'] + ); + } +} diff --git a/vendor/ipl/html/src/FormElement/LocalDateTimeElement.php b/vendor/ipl/html/src/FormElement/LocalDateTimeElement.php new file mode 100644 index 00000000..839da886 --- /dev/null +++ b/vendor/ipl/html/src/FormElement/LocalDateTimeElement.php @@ -0,0 +1,53 @@ + '1']; + + /** @var DateTime */ + protected $value; + + public function setValue($value) + { + if (is_string($value)) { + $originalVal = $value; + $value = DateTime::createFromFormat(static::FORMAT, $value); + // In Chrome, if the seconds are set to 00, DateTime::createFromFormat() returns false. + // Create DateTime without seconds in format + if ($value === false) { + $format = substr(static::FORMAT, 0, strrpos(static::FORMAT, ':')); + $value = DateTime::createFromFormat($format, $originalVal); + } + + if ($value === false) { + $value = $originalVal; + } + } + + return parent::setValue($value); + } + + public function getValueAttribute() + { + if (! $this->value instanceof DateTime) { + return $this->value; + } + + return $this->value->format(static::FORMAT); + } + + protected function addDefaultValidators(ValidatorChain $chain): void + { + $chain->add(new DateTimeValidator()); + } +} diff --git a/vendor/ipl/html/src/FormElement/NumberElement.php b/vendor/ipl/html/src/FormElement/NumberElement.php new file mode 100644 index 00000000..b5931351 --- /dev/null +++ b/vendor/ipl/html/src/FormElement/NumberElement.php @@ -0,0 +1,8 @@ +registerAttributeCallback( + 'value', + function () { + if ($this->hasValue() && count($this->getValueCandidates()) === 1 && $this->isFormValid) { + return self::DUMMYPASSWORD; + } + + if (parent::getValue() === self::DUMMYPASSWORD) { + return self::DUMMYPASSWORD; + } + + return null; + } + ); + } + + public function onRegistered(Form $form) + { + $form->on(Form::ON_VALIDATE, function ($form) { + $this->isFormValid = $form->isValid(); + }); + } + + public function getValue() + { + $value = parent::getValue(); + $candidates = $this->getValueCandidates(); + while ($value === self::DUMMYPASSWORD) { + $value = array_pop($candidates); + } + + return $value; + } +} diff --git a/vendor/ipl/html/src/FormElement/RadioElement.php b/vendor/ipl/html/src/FormElement/RadioElement.php new file mode 100644 index 00000000..831671c8 --- /dev/null +++ b/vendor/ipl/html/src/FormElement/RadioElement.php @@ -0,0 +1,177 @@ +options = []; + foreach ($options as $value => $label) { + $option = (new RadioOption($value, $label)) + ->setDisabled( + in_array($value, $this->disabledOptions, ! is_int($value)) + || ($value === '' && in_array(null, $this->disabledOptions, true)) + ); + + $this->options[$value] = $option; + } + + $this->disabledOptions = []; + + return $this; + } + + /** + * Get the option with specified value + * + * @param string|int $value + * + * @return RadioOption + * + * @throws InvalidArgumentException If no option with the specified value exists + */ + public function getOption($value): RadioOption + { + if (! isset($this->options[$value])) { + throw new InvalidArgumentException(sprintf('There is no such option "%s"', $value)); + } + + return $this->options[$value]; + } + + /** + * Set the specified options as disable + * + * @param array $disabledOptions + * + * @return $this + */ + public function setDisabledOptions(array $disabledOptions): self + { + if (! empty($this->options)) { + foreach ($this->options as $value => $option) { + $option->setDisabled( + in_array($value, $disabledOptions, ! is_int($value)) + || ($value === '' && in_array(null, $disabledOptions, true)) + ); + } + + $this->disabledOptions = []; + } else { + $this->disabledOptions = $disabledOptions; + } + + return $this; + } + + public function renderUnwrapped() + { + // Parent::renderUnwrapped() requires $tag and the content should be empty. However, since we are wrapping + // each button in a label, the call to parent cannot work here and must be overridden. + return HtmlDocument::renderUnwrapped(); + } + + protected function assemble() + { + foreach ($this->options as $option) { + $radio = (new InputElement($this->getValueOfNameAttribute())) + ->setType($this->type) + ->setValue($option->getValue()); + + // Only add the non-callback attributes to all options + foreach ($this->getAttributes() as $attribute) { + $radio->getAttributes()->addAttribute(clone $attribute); + } + + $radio->getAttributes() + ->merge($option->getAttributes()) + ->registerAttributeCallback( + 'checked', + function () use ($option) { + $optionValue = $option->getValue(); + + return ! is_int($optionValue) + ? $this->getValue() === $optionValue + : $this->getValue() == $optionValue; + } + ) + ->registerAttributeCallback( + 'disabled', + function () use ($option) { + return $this->getAttributes()->get('disabled')->getValue() || $option->isDisabled(); + } + ); + + $label = new HtmlElement( + 'label', + new Attributes(['class' => $option->getLabelCssClass()]), + $radio, + Text::create($option->getLabel()) + ); + + $this->addHtml($label); + } + } + + protected function addDefaultValidators(ValidatorChain $chain): void + { + $chain->add(new DeferredInArrayValidator(function (): array { + $possibleValues = []; + + foreach ($this->options as $option) { + if ($option->isDisabled()) { + continue; + } + + $possibleValues[] = $option->getValue(); + } + + return $possibleValues; + })); + } + + protected function registerAttributeCallbacks(Attributes $attributes) + { + parent::registerAttributeCallbacks($attributes); + + $this->getAttributes()->registerAttributeCallback( + 'options', + null, + [$this, 'setOptions'] + ); + + $this->getAttributes()->registerAttributeCallback( + 'disabledOptions', + null, + [$this, 'setDisabledOptions'] + ); + } +} diff --git a/vendor/ipl/html/src/FormElement/RadioOption.php b/vendor/ipl/html/src/FormElement/RadioOption.php new file mode 100644 index 00000000..4968c35a --- /dev/null +++ b/vendor/ipl/html/src/FormElement/RadioOption.php @@ -0,0 +1,148 @@ +value = $value === '' ? null : $value; + $this->label = $label; + } + + /** + * Set the label of the option + * + * @param string $label + * + * @return $this + */ + public function setLabel(string $label): self + { + $this->label = $label; + + return $this; + } + + /** + * Get the label of the option + * + * @return string + */ + public function getLabel(): string + { + return $this->label; + } + + /** + * Get the value of the option + * + * @return string|int|null + */ + public function getValue() + { + return $this->value; + } + + /** + * Set css class to the option label + * + * @param string|string[] $labelCssClass + * + * @return $this + */ + public function setLabelCssClass($labelCssClass): self + { + $this->labelCssClass = $labelCssClass; + + return $this; + } + + /** + * Get css class of the option label + * + * @return string|string[] + */ + public function getLabelCssClass() + { + return $this->labelCssClass; + } + + /** + * Set whether to disable the option + * + * @param bool $disabled + * + * @return $this + */ + public function setDisabled(bool $disabled = true): self + { + $this->disabled = $disabled; + + return $this; + } + + /** + * Get whether the option is disabled + * + * @return bool + */ + public function isDisabled(): bool + { + return $this->disabled; + } + + /** + * Add the attributes + * + * @param Attributes $attributes + * + * @return $this + */ + public function addAttributes(Attributes $attributes): self + { + $this->attributes = $attributes; + + return $this; + } + + /** + * Get the attributes + * + * @return Attributes + */ + public function getAttributes(): Attributes + { + if ($this->attributes === null) { + $this->attributes = new Attributes(); + } + + return $this->attributes; + } +} diff --git a/vendor/ipl/html/src/FormElement/SelectElement.php b/vendor/ipl/html/src/FormElement/SelectElement.php new file mode 100644 index 00000000..e6b4f217 --- /dev/null +++ b/vendor/ipl/html/src/FormElement/SelectElement.php @@ -0,0 +1,238 @@ +options[$value] ?? null; + } + + /** + * Set the options from specified values + * + * @param array $options + * + * @return $this + */ + public function setOptions(array $options): self + { + $this->options = []; + $this->optionContent = []; + foreach ($options as $value => $label) { + $this->optionContent[$value] = $this->makeOption($value, $label); + } + + return $this; + } + + /** + * Set the specified options as disable + * + * @param array $disabledOptions + * + * @return $this + */ + public function setDisabledOptions(array $disabledOptions): self + { + if (! empty($this->options)) { + foreach ($this->options as $option) { + $optionValue = $option->getValue(); + + $option->setAttribute( + 'disabled', + in_array($optionValue, $disabledOptions, ! is_int($optionValue)) + || ($optionValue === null && in_array('', $disabledOptions, true)) + ); + } + + $this->disabledOptions = []; + } else { + $this->disabledOptions = $disabledOptions; + } + + return $this; + } + + /** + * Get the value of the element + * + * Returns `array` when the attribute `multiple` is set to `true`, `string` or `null` otherwise + * + * @return array|string|null + */ + public function getValue() + { + if ($this->isMultiple()) { + return parent::getValue() ?? []; + } + + return parent::getValue(); + } + + public function getValueAttribute() + { + // select elements don't have a value attribute + return null; + } + + public function getNameAttribute() + { + $name = $this->getName(); + + return $this->isMultiple() ? ($name . '[]') : $name; + } + + /** + * Make the selectOption for the specified value and the label + * + * @param string|int|null $value Value of the option + * @param string|array $label Label of the option + * + * @return SelectOption|HtmlElement + */ + protected function makeOption($value, $label) + { + if (is_array($label)) { + $grp = Html::tag('optgroup', ['label' => $value]); + foreach ($label as $option => $val) { + $grp->addHtml($this->makeOption($option, $val)); + } + + return $grp; + } + + $option = (new SelectOption($value, $label)) + ->setAttribute('disabled', in_array($value, $this->disabledOptions, ! is_int($value))); + + $option->getAttributes()->registerAttributeCallback('selected', function () use ($option) { + return $this->isSelectedOption($option->getValue()); + }); + + $this->options[$value] = $option; + + return $this->options[$value]; + } + + /** + * Get whether the given option is selected + * + * @param int|string|null $optionValue + * + * @return bool + */ + protected function isSelectedOption($optionValue): bool + { + $value = $this->getValue(); + + if ($optionValue === '') { + $optionValue = null; + } + + if ($this->isMultiple()) { + if (! is_array($value)) { + throw new UnexpectedValueException( + 'Value must be an array when the `multiple` attribute is set to `true`' + ); + } + + return in_array($optionValue, $this->getValue(), ! is_int($optionValue)) + || ($optionValue === null && in_array('', $this->getValue(), true)); + } + + if (is_array($value)) { + throw new UnexpectedValueException( + 'Value cannot be an array without setting the `multiple` attribute to `true`' + ); + } + + return is_int($optionValue) + // The loose comparison is required because PHP casts + // numeric strings to integers if used as array keys + ? $value == $optionValue + : $value === $optionValue; + } + + protected function addDefaultValidators(ValidatorChain $chain): void + { + $chain->add( + new DeferredInArrayValidator(function (): array { + $possibleValues = []; + + foreach ($this->options as $option) { + if ($option->getAttributes()->get('disabled')->getValue()) { + continue; + } + + $possibleValues[] = $option->getValue(); + } + + return $possibleValues; + }) + ); + } + + protected function assemble() + { + $this->addHtml(...array_values($this->optionContent)); + } + + protected function registerAttributeCallbacks(Attributes $attributes) + { + parent::registerAttributeCallbacks($attributes); + + $attributes->registerAttributeCallback( + 'options', + null, + [$this, 'setOptions'] + ); + + $attributes->registerAttributeCallback( + 'disabledOptions', + null, + [$this, 'setDisabledOptions'] + ); + + // ZF1 compatibility: + $this->getAttributes()->registerAttributeCallback( + 'multiOptions', + null, + [$this, 'setOptions'] + ); + + $this->registerMultipleAttributeCallback($attributes); + } +} diff --git a/vendor/ipl/html/src/FormElement/SelectOption.php b/vendor/ipl/html/src/FormElement/SelectOption.php new file mode 100644 index 00000000..3d799a2c --- /dev/null +++ b/vendor/ipl/html/src/FormElement/SelectOption.php @@ -0,0 +1,79 @@ +value = $value === '' ? null : $value; + $this->label = $label; + + $this->getAttributes()->registerAttributeCallback('value', [$this, 'getValueAttribute']); + } + + /** + * Set the label of the option + * + * @param string $label + * + * @return $this + */ + public function setLabel(string $label): self + { + $this->label = $label; + + return $this; + } + + /** + * Get the label of the option + * + * @return string + */ + public function getLabel(): string + { + return $this->label; + } + + /** + * Get the value of the option + * + * @return string|int|null + */ + public function getValue() + { + return $this->value; + } + + /** + * Callback for the value attribute + * + * @return mixed + */ + public function getValueAttribute() + { + return (string) $this->getValue(); + } + + protected function assemble() + { + $this->setContent($this->getLabel()); + } +} diff --git a/vendor/ipl/html/src/FormElement/SubmitButtonElement.php b/vendor/ipl/html/src/FormElement/SubmitButtonElement.php new file mode 100644 index 00000000..b880bb54 --- /dev/null +++ b/vendor/ipl/html/src/FormElement/SubmitButtonElement.php @@ -0,0 +1,65 @@ + 'submit']; + + /** @var string The value that's transmitted once the button is pressed */ + protected $submitValue = 'y'; + + /** + * Get the value to transmit once the button is pressed + * + * @return string + */ + public function getSubmitValue(): string + { + return $this->submitValue; + } + + /** + * Set the value to transmit once the button is pressed + * + * @param string $value + * + * @return $this + */ + public function setSubmitValue(string $value): self + { + $this->submitValue = $value; + + return $this; + } + + public function setLabel($label) + { + return $this->setContent($label); + } + + public function hasBeenPressed() + { + return $this->getValue() === $this->getSubmitValue(); + } + + public function isIgnored() + { + return true; + } + + protected function registerAttributeCallbacks(Attributes $attributes) + { + parent::registerAttributeCallbacks($attributes); + + $attributes->registerAttributeCallback('value', null, [$this, 'setSubmitValue']); + } + + public function getValueAttribute() + { + return $this->submitValue; + } +} diff --git a/vendor/ipl/html/src/FormElement/SubmitElement.php b/vendor/ipl/html/src/FormElement/SubmitElement.php new file mode 100644 index 00000000..51d4aa5e --- /dev/null +++ b/vendor/ipl/html/src/FormElement/SubmitElement.php @@ -0,0 +1,50 @@ +buttonLabel = $label; + + return $this; + } + + /** + * @return string + */ + public function getButtonLabel() + { + if ($this->buttonLabel === null) { + return $this->getName(); + } else { + return $this->buttonLabel; + } + } + + /** + * @return mixed|static + */ + public function getValueAttribute() + { + return new Attribute('value', $this->getButtonLabel()); + } + + public function hasBeenPressed() + { + return $this->getButtonLabel() === $this->getValue(); + } + + public function isIgnored() + { + return true; + } +} diff --git a/vendor/ipl/html/src/FormElement/TextElement.php b/vendor/ipl/html/src/FormElement/TextElement.php new file mode 100644 index 00000000..0e3423dc --- /dev/null +++ b/vendor/ipl/html/src/FormElement/TextElement.php @@ -0,0 +1,8 @@ +setContent($value); + + return $this; + } + + public function getValueAttribute() + { + // textarea elements don't have a value attribute + return null; + } +} diff --git a/vendor/ipl/html/src/FormElement/TimeElement.php b/vendor/ipl/html/src/FormElement/TimeElement.php new file mode 100644 index 00000000..1ee03236 --- /dev/null +++ b/vendor/ipl/html/src/FormElement/TimeElement.php @@ -0,0 +1,8 @@ +format = Html::wantHtml($format); + + if ($args !== null) { + if (! is_iterable($args)) { + throw new InvalidArgumentException(sprintf( + '%s expects parameter two to be iterable, got %s instead', + __METHOD__, + get_php_type($args) + )); + } + + foreach ($args as $key => $val) { + if (! is_scalar($val) || (is_string($val) && ! is_numeric($val))) { + $val = Html::wantHtml($val); + } + + $this->args[$key] = $val; + } + } + } + + + /** + * Create a new {@link sprintf()}-like formatted HTML string + * + * @param string $format + * @param mixed ...$args + * + * @return static + */ + public static function create($format, ...$args) + { + return new static($format, $args); + } + + /** + * Render text to HTML when treated like a string + * + * Calls {@link render()} internally in order to render the text to HTML. + * Exceptions will be automatically caught and returned as HTML string as well using {@link Error::render()}. + * + * @return string + */ + public function __toString() + { + try { + return $this->render(); + } catch (Exception $e) { + return Error::render($e); + } + } + + public function render() + { + return vsprintf( + $this->format->render(), + $this->args + ); + } +} diff --git a/vendor/ipl/html/src/Html.php b/vendor/ipl/html/src/Html.php new file mode 100644 index 00000000..afcba39b --- /dev/null +++ b/vendor/ipl/html/src/Html.php @@ -0,0 +1,241 @@ + $value) { + if (is_string($wrapper)) { + $result->addHtml(Html::tag($wrapper, $value)); + } elseif (is_callable($wrapper)) { + $result->add($wrapper($name, $value)); + } else { + throw new InvalidArgumentException(sprintf( + 'Wrapper must be callable or a string in Html::wrapEach(), got "%s"', + get_php_type($wrapper) + )); + } + } + + return $result; + } + + /** + * Ensure that the given content of mixed type is converted to an instance of {@link ValidHtml} + * + * Returns the very same element in case it's already an instance of {@link ValidHtml}. + * + * @param mixed $any + * + * @return ValidHtml + * + * @throws InvalidArgumentException In case the given content is of an unsupported type + */ + public static function wantHtml($any) + { + if ($any instanceof ValidHtml) { + return $any; + } elseif (static::canBeRenderedAsString($any)) { + return new Text($any); + } elseif (is_iterable($any)) { + $html = new HtmlDocument(); + foreach ($any as $el) { + if ($el !== null) { + $html->addHtml(static::wantHtml($el)); + } + } + + return $html; + } else { + throw new InvalidArgumentException(sprintf( + 'String, Html Element or Array of such expected, got "%s"', + get_php_type($any) + )); + } + } + + /** + * Accept any input and return it as list of ValidHtml + * + * @param mixed $content + * + * @return ValidHtml[] + */ + public static function wantHtmlList($content) + { + $list = []; + + if ($content === null) { + return $list; + } elseif (! is_iterable($content)) { + $list[] = static::wantHtml($content); + } elseif ($content instanceof ValidHtml) { + $list[] = $content; + } else { + foreach ($content as $part) { + $list = array_merge($list, static::wantHtmlList($part)); + } + } + + return $list; + } + + /** + * Get whether the given variable be rendered as a string + * + * @param mixed $any + * + * @return bool + */ + public static function canBeRenderedAsString($any) + { + return is_scalar($any) || is_null($any) || ( + is_object($any) && method_exists($any, '__toString') + ); + } + + /** + * Forward inaccessible static method calls to {@link Html::tag()} with the method's name as tag + * + * @param string $name + * @param array $arguments + * + * @return HtmlElement + */ + public static function __callStatic($name, $arguments) + { + $attributes = array_shift($arguments); + $content = array_shift($arguments); + + return static::tag($name, $attributes, $content); + } + + /** + * @deprecated Use {@link Html::encode()} instead + */ + public static function escapeForHtml($content) + { + return static::escape($content); + } + + /** + * @deprecated Use {@link Error::render()} instead + */ + public static function renderError($error) + { + return Error::render($error); + } +} diff --git a/vendor/ipl/html/src/HtmlDocument.php b/vendor/ipl/html/src/HtmlDocument.php new file mode 100644 index 00000000..7e6b404e --- /dev/null +++ b/vendor/ipl/html/src/HtmlDocument.php @@ -0,0 +1,555 @@ +wrapped = $element; + + return $this; + } + + /** + * Consume the wrapped element + * + * @return Wrappable + */ + private function consumeWrapped() + { + $wrapped = $this->wrapped; + $this->wrapped = null; + + return $wrapped; + } + + /** + * Get the content + * + * return ValidHtml[] + */ + public function getContent() + { + return $this->content; + } + + /** + * Set the content + * + * @param mixed $content + * + * @return $this + */ + public function setContent($content) + { + $this->content = []; + $this->setHtmlContent(...Html::wantHtmlList($content)); + + return $this; + } + + /** + * Set content + * + * @param ValidHtml ...$content + * + * @return $this + */ + public function setHtmlContent(ValidHtml ...$content) + { + $this->content = []; + foreach ($content as $element) { + $this->addIndexedContent($element); + } + + return $this; + } + + /** + * Get the content separator + * + * @return string + */ + public function getSeparator() + { + return $this->contentSeparator; + } + + /** + * Set the content separator + * + * @param string $separator + * + * @return $this + */ + public function setSeparator($separator) + { + $this->contentSeparator = $separator; + + return $this; + } + + /** + * Get the first {@link BaseHtmlElement} with the given tag + * + * @param string $tag + * + * @return BaseHtmlElement + * + * @throws InvalidArgumentException If no {@link BaseHtmlElement} with the given tag exists + */ + public function getFirst($tag) + { + foreach ($this->content as $c) { + if ($c instanceof BaseHtmlElement && $c->getTag() === $tag) { + return $c; + } + } + + throw new InvalidArgumentException(sprintf( + 'Trying to get first %s, but there is no such', + $tag + )); + } + + /** + * Add content + * + * @param mixed $content + * + * @return $this + */ + public function add($content) + { + $this->addHtml(...Html::wantHtmlList($content)); + + return $this; + } + + /** + * Add content + * + * @param ValidHtml ...$content + * + * @return $this + */ + public function addHtml(ValidHtml ...$content) + { + foreach ($content as $element) { + $this->addIndexedContent($element); + } + + return $this; + } + + /** + * Add content from the given document + * + * @param HtmlDocument $from + * @param callable $callback Optional callback in order to transform the content to add + * + * @return $this + */ + public function addFrom(HtmlDocument $from, $callback = null) + { + $from->ensureAssembled(); + + $isCallable = is_callable($callback); + foreach ($from->getContent() as $item) { + $this->add($isCallable ? $callback($item) : $item); + } + + return $this; + } + + /** + * Check whether the given element is a direct or indirect child of this document + * + * A direct child is one that is part of this document's content. An indirect child + * is one that is part of a direct child's content (recursively). + * + * @param ValidHtml $element + * + * @return bool + */ + public function contains(ValidHtml $element) + { + $key = spl_object_hash($element); + if (array_key_exists($key, $this->contentIndex)) { + return true; + } + + foreach ($this->content as $child) { + if ($child instanceof self && $child->contains($element)) { + return true; + } + } + + return false; + } + + /** + * Prepend content + * + * @param mixed $content + * + * @return $this + */ + public function prepend($content) + { + $this->prependHtml(...Html::wantHtmlList($content)); + + return $this; + } + + /** + * Prepend content + * + * @param ValidHtml ...$content + * + * @return $this + */ + public function prependHtml(ValidHtml ...$content) + { + foreach (array_reverse($content) as $html) { + array_unshift($this->content, $html); + $this->incrementIndexKeys(); + $this->addObjectPosition($html, 0); + } + + return $this; + } + + /** + * Remove content + * + * @param ValidHtml $html + * + * @return $this + */ + public function remove(ValidHtml $html) + { + $key = spl_object_hash($html); + if (array_key_exists($key, $this->contentIndex)) { + foreach ($this->contentIndex[$key] as $pos) { + unset($this->content[$pos]); + } + } + $this->content = array_values($this->content); + + $this->reIndexContent(); + + return $this; + } + + /** + * Ensure that the document has been assembled + * + * @return $this + */ + public function ensureAssembled() + { + if (! $this->hasBeenAssembled) { + $this->hasBeenAssembled = true; + $this->assemble(); + } + + return $this; + } + + /** + * Get whether the document is empty + * + * @return bool + */ + public function isEmpty() + { + $this->ensureAssembled(); + + return empty($this->content); + } + + /** + * Render the content to HTML but ignore any wrapper + * + * @return string + */ + public function renderUnwrapped() + { + $this->ensureAssembled(); + $html = []; + + // This **must** be consumed after the document's assembly but before rendering the content. + // If the document consumes it during assembly, nothing happens. If the document is used as + // wrapper for another element, consuming it asap prevents a left-over reference and avoids + // the element from getting rendered multiple times. + $wrapped = $this->consumeWrapped(); + + $content = $this->getContent(); + if ($wrapped !== null && ! $this->contains($wrapped) && ! $this->isIntermediateWrapper($wrapped)) { + $content[] = $wrapped; + } + + foreach ($content as $element) { + if ($element instanceof self) { + $element->renderedBy = $this; + } + + $html[] = $element->render(); + + if ($element instanceof self) { + $element->renderedBy = null; + } + } + + return implode($this->contentSeparator, $html); + } + + public function __clone() + { + foreach ($this->content as $key => $element) { + $this->content[$key] = clone $element; + } + + $this->reIndexContent(); + } + + /** + * Render content to HTML when treated like a string + * + * Calls {@link render()} internally in order to render the text to HTML. + * Exceptions will be automatically caught and returned as HTML string as well using {@link Error::render()}. + * + * @return string + */ + public function __toString() + { + try { + return $this->render(); + } catch (Exception $e) { + return Error::render($e); + } + } + + /** + * Assemble the document + * + * Override this method in order to provide content in concrete classes. + */ + protected function assemble() + { + } + + /** + * Render the document to HTML respecting the set wrapper + * + * @return string + */ + protected function renderWrapped() + { + $wrapper = $this->wrapper; + + if (isset($this->renderedBy)) { + if ($wrapper === $this->renderedBy || $wrapper->contains($this->renderedBy)) { + // $this might be an intermediate wrapper that's already about to be rendered. + // In case of an element (referencing $this as a wrapper) that is a child of an + // outer wrapper, it is required to ignore $wrapper as otherwise it's a loop. + // ($wrapper then is in the render path of the outer wrapper and sideways "stolen") + return $this->renderUnwrapped(); + } + + $wrapper->renderedBy = $this->renderedBy; + } elseif (isset($wrapper->renderedBy)) { + throw new RuntimeException('Wrapper loop detected'); + } else { + $this->renderedBy = $wrapper; + } + + $html = $wrapper->renderWrappedDocument($this); + + if (isset($this->renderedBy)) { + if ($this->renderedBy === $wrapper) { + $this->renderedBy = null; + } elseif ($wrapper->renderedBy === $this->renderedBy) { + $wrapper->renderedBy = null; + } + } + + return $html; + } + + /** + * Render the given document to HTML by treating this document as the wrapper + * + * @param HtmlDocument $document + * + * @return string + */ + protected function renderWrappedDocument(HtmlDocument $document) + { + return $this->setWrapped($document)->render(); + } + + #[\ReturnTypeWillChange] + public function count() + { + return count($this->content); + } + + public function getWrapper() + { + return $this->wrapper; + } + + public function setWrapper(Wrappable $wrapper) + { + $this->wrapper = $wrapper; + + return $this; + } + + public function addWrapper(Wrappable $wrapper) + { + if ($this->wrapper === null) { + $this->setWrapper($wrapper); + } else { + $this->wrapper->addWrapper($wrapper); + } + + return $this; + } + + public function prependWrapper(Wrappable $wrapper) + { + if ($this->wrapper === null) { + $this->setWrapper($wrapper); + } else { + $wrapper->addWrapper($this->wrapper); + $this->setWrapper($wrapper); + } + + return $this; + } + + /** + * Check whether the given element wraps this document (recursively) + * + * @param ValidHtml $element + * + * @return bool + */ + protected function wrappedBy(ValidHtml $element) + { + if ($this->wrapper === null) { + return false; + } + + if ($this->wrapper === $element || $this->wrapper->wrappedBy($element)) { + return true; + } + + return false; + } + + /** + * Get whether the given element is an intermediate wrapper + * + * @param ValidHtml $element + * + * @return bool + */ + protected function isIntermediateWrapper(ValidHtml $element): bool + { + foreach ($this->content as $child) { + if ($child instanceof self && $child->wrappedBy($element)) { + return true; + } + } + + return false; + } + + public function render() + { + $this->ensureAssembled(); + if ($this->wrapper === null) { + return $this->renderUnwrapped(); + } else { + return $this->renderWrapped(); + } + } + + private function addIndexedContent(ValidHtml $html) + { + $pos = count($this->content); + $this->content[$pos] = $html; + $this->addObjectPosition($html, $pos); + } + + private function addObjectPosition(ValidHtml $html, $pos) + { + $key = spl_object_hash($html); + if (array_key_exists($key, $this->contentIndex)) { + $this->contentIndex[$key][] = $pos; + } else { + $this->contentIndex[$key] = [$pos]; + } + } + + private function incrementIndexKeys() + { + foreach ($this->contentIndex as & $index) { + foreach ($index as & $pos) { + $pos++; + } + } + } + + private function reIndexContent() + { + $this->contentIndex = []; + foreach ($this->content as $pos => $html) { + $this->addObjectPosition($html, $pos); + } + } +} diff --git a/vendor/ipl/html/src/HtmlElement.php b/vendor/ipl/html/src/HtmlElement.php new file mode 100644 index 00000000..4f5d1628 --- /dev/null +++ b/vendor/ipl/html/src/HtmlElement.php @@ -0,0 +1,43 @@ +tag = $tag; + + if ($attributes !== null) { + $this->getAttributes()->merge($attributes); + } + + $this->setHtmlContent(...$content); + } + + /** + * Create a new HTML element from the given tag, attributes and content + * + * @param string $tag The tag for the element + * @param mixed $attributes The HTML attributes for the element + * @param mixed $content The content of the element + * + * @return static + */ + public static function create($tag, $attributes = null, $content = null) + { + return new static($tag, Attributes::wantAttributes($attributes), ...Html::wantHtmlList($content)); + } +} diff --git a/vendor/ipl/html/src/HtmlString.php b/vendor/ipl/html/src/HtmlString.php new file mode 100644 index 00000000..e62086b5 --- /dev/null +++ b/vendor/ipl/html/src/HtmlString.php @@ -0,0 +1,13 @@ +getTag()) { + case 'tr': + $this->getBody()->addHtml($html); + + break; + case 'thead': + parent::addHtml($html); + $this->header = $html; + + break; + case 'tbody': + parent::addHtml($html); + $this->body = $html; + + break; + case 'tfoot': + parent::addHtml($html); + $this->footer = $html; + + break; + case 'caption': + if ($this->caption === null) { + $this->prependHtml($html); + $this->caption = $html; + } else { + throw new RuntimeException( + 'Tables allow only one tag' + ); + } + + break; + default: + $this->getBody()->addHtml(static::row([$html])); + } + } else { + $this->getBody()->addHtml(static::row([$html])); + } + } + + return $this; + } + + /** + * @param mixed $content + * @return $this + */ + public function add($content) + { + if ($content instanceof stdClass) { + $this->getBody()->addHtml(static::row((array) $content)); + } elseif (is_iterable($content)) { + $this->getBody()->addHtml(static::row($content)); + } elseif ($content instanceof ValidHtml) { + $this->addHtml($content); + } else { + $this->getBody()->addHtml(static::row([$content])); + } + + return $this; + } + + /** + * Set the table title + * + * Will be rendered as a "caption" HTML element + * + * @param mixed $caption + * @return $this + */ + public function setCaption($caption) + { + if ($caption instanceof BaseHtmlElement && $caption->getTag() === 'caption') { + $this->caption = $caption; + $this->prependHtml($caption); + } elseif ($this->caption === null) { + $this->caption = new HtmlElement('caption', null, ...Html::wantHtmlList($caption)); + $this->prependHtml($this->caption); + } else { + $this->caption->setContent($caption); + } + + return $this; + } + + /** + * Static helper creating a tr element + * + * @param Attributes|array $attributes + * @param Html|array|string $content + * @return HtmlElement + */ + public static function tr($content = null, $attributes = null) + { + return Html::tag('tr', $attributes, $content); + } + + /** + * Static helper creating a th element + * + * @param Attributes|array $attributes + * @param Html|array|string $content + * @return HtmlElement + */ + public static function th($content = null, $attributes = null) + { + return Html::tag('th', $attributes, $content); + } + + /** + * Static helper creating a td element + * + * @param Attributes|array $attributes + * @param Html|array|string $content + * @return HtmlElement + */ + public static function td($content = null, $attributes = null) + { + return Html::tag('td', $attributes, $content); + } + + /** + * @param $row + * @param null $attributes + * @param string $tag + * @return HtmlElement + */ + public static function row($row, $attributes = null, $tag = 'td') + { + $tr = static::tr(); + foreach ((array) $row as $value) { + $tr->addHtml(Html::tag($tag, null, $value)); + } + + if ($attributes !== null) { + $tr->setAttributes($attributes); + } + + return $tr; + } + + /** + * @return HtmlElement + */ + public function getBody() + { + if ($this->body === null) { + $this->addHtml(Html::tag('tbody')->setSeparator("\n")); + } + + return $this->body; + } + + /** + * @return HtmlElement + */ + public function getHeader() + { + if ($this->header === null) { + $this->addHtml(Html::tag('thead')->setSeparator("\n")); + } + + return $this->header; + } + + /** + * @return HtmlElement + */ + public function getFooter() + { + if ($this->footer === null) { + $this->addHtml(Html::tag('tfoot')->setSeparator("\n")); + } + + return $this->footer; + } + + /** + * @return HtmlElement + */ + public function nextBody() + { + $this->body = null; + + return $this->getBody(); + } + + /** + * @return HtmlElement + */ + public function nextHeader() + { + $this->header = null; + + return $this->getHeader(); + } +} diff --git a/vendor/ipl/html/src/TemplateString.php b/vendor/ipl/html/src/TemplateString.php new file mode 100644 index 00000000..611ea121 --- /dev/null +++ b/vendor/ipl/html/src/TemplateString.php @@ -0,0 +1,175 @@ + new Link(null, 'doc/html'), + * 'strong' => Html::tag('strong') + * ] + * ); + * ``` + */ +class TemplateString extends FormattedString +{ + /** @var array */ + protected $templateArgs = []; + + /** @var int */ + protected $pos = 0; + + /** @var string */ + protected $string; + + /** @var int */ + protected $length; + + public function __construct($format, $args = null) + { + $parentArgs = []; + foreach ($args ?: [] as $val) { + if (is_array($val) && is_string(key($val))) { + $this->templateArgs += $val; + } else { + $parentArgs[] = $val; + } + } + + parent::__construct($format, $parentArgs); + } + + /** + * Parse template strings + * + * @param null $for template name + * @return HtmlDocument + * @throws Exception in case of missing template argument or unbounded open or close templates + */ + protected function parseTemplates($for = null) + { + $buffer = ''; + + while (($char = $this->readChar()) !== false) { + if ($char !== '{') { + $buffer .= $char; + continue; + } + + $nextChar = $this->readChar(); + if ($nextChar !== '{') { + $buffer .= $char . $nextChar; + continue; + } + + $templateHandle = $this->readChar(); + $start = $templateHandle === '#'; + $end = $templateHandle === '/'; + + $templateKey = $this->readUntil('}'); + // if the string following '{{#' is read up to the last character or (length - 1)th character + // then it is not a template + if ($this->pos >= $this->length - 1) { + $buffer .= $char . $nextChar . $templateHandle . $templateKey; + continue; + } + + $this->pos++; + $closeChar = $this->readChar(); + + if ($closeChar !== '}') { + $buffer .= $char . $nextChar . $templateHandle . $templateKey . '}' . $closeChar; + continue; + } + + if ($start) { + if (isset($this->templateArgs[$templateKey])) { + $wrapper = $this->templateArgs[$templateKey]; + + $buffer .= $this->parseTemplates($templateKey)->prependWrapper($wrapper); + } else { + throw new Exception(sprintf( + 'Missing template argument: %s ', + $templateKey + )); + } + } elseif ($for === $templateKey && $end) { + // close the template + $for = null; + break; + } else { + // throw exception for unbounded closing of templates + throw new Exception(sprintf( + 'Unbound closing of template: %s', + $templateKey + )); + } + } + + if ($this->pos === $this->length && $for !== null) { + throw new Exception(sprintf( + 'Unbound opening of template: %s', + $for + )); + } + + return (new HtmlDocument())->addHtml(HtmlString::create($buffer)); + } + + /** + * Read until any of the given chars appears + * + * @param string ...$chars + * + * @return string + */ + protected function readUntil(...$chars) + { + $buffer = ''; + while (($c = $this->readChar()) !== false) { + if (in_array($c, $chars, true)) { + $this->pos--; + break; + } + + $buffer .= $c; + } + + return $buffer; + } + + /** + * Read a single character + * + * @return false|string false if there is no character left + */ + protected function readChar() + { + if ($this->length > $this->pos) { + return $this->string[$this->pos++]; + } + + return false; + } + + public function render() + { + $formattedstring = parent::render(); + if (empty($this->templateArgs)) { + return $formattedstring; + } + + $this->string = $formattedstring; + + $this->length = strlen($formattedstring); + + return $this->parseTemplates()->render(); + } +} diff --git a/vendor/ipl/html/src/Text.php b/vendor/ipl/html/src/Text.php new file mode 100644 index 00000000..710e3d91 --- /dev/null +++ b/vendor/ipl/html/src/Text.php @@ -0,0 +1,116 @@ +setContent($content); + } + + /** + * Create a new text node + * + * @param string $content + * + * @return static + */ + public static function create($content) + { + return new static($content); + } + + /** + * Get the content + * + * @return string + */ + public function getContent() + { + return $this->content; + } + + /** + * Set the content + * + * @param string $content + * + * @return $this + */ + public function setContent($content) + { + $this->content = (string) $content; + + return $this; + } + + /** + * Get whether the content promises to be already escaped + * + * @return bool + */ + public function isEscaped() + { + return $this->escaped; + } + + /** + * Set whether the content is already escaped + * + * @param bool $escaped + * + * @return $this + */ + public function setEscaped($escaped = true) + { + $this->escaped = $escaped; + + return $this; + } + + /** + * Render text to HTML when treated like a string + * + * Calls {@link render()} internally in order to render the text to HTML. + * Exceptions will be automatically caught and returned as HTML string as well using {@link Error::render()}. + * + * @return string + */ + public function __toString() + { + try { + return $this->render(); + } catch (Exception $e) { + return Error::render($e); + } + } + + public function render() + { + if ($this->escaped) { + return $this->content; + } else { + return Html::escape($this->content); + } + } +} diff --git a/vendor/ipl/html/src/ValidHtml.php b/vendor/ipl/html/src/ValidHtml.php new file mode 100644 index 00000000..2b88af4c --- /dev/null +++ b/vendor/ipl/html/src/ValidHtml.php @@ -0,0 +1,17 @@ +=7.2", + "ext-intl": "*", + "ext-gettext": "*", + "ipl/stdlib": ">=0.12.0" + }, + "autoload": { + "files": ["src/functions_include.php"], + "psr-4": { + "ipl\\I18n\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "ipl\\Tests\\I18n\\": "tests" + } + } +} diff --git a/vendor/ipl/i18n/src/GettextTranslator.php b/vendor/ipl/i18n/src/GettextTranslator.php new file mode 100644 index 00000000..a7a81442 --- /dev/null +++ b/vendor/ipl/i18n/src/GettextTranslator.php @@ -0,0 +1,351 @@ +addTranslationDirectory('/path/to/locales') + * ->addTranslationDirectory('/path/to/locales-of-domain', 'special') // Could also be the same directory as above + * ->setLocale('de_DE'); + * + * $translator->translate('user'); + * + * printf( + * $translator->translatePlural('%d user', '%d user', 42), + * 42 + * ); + * + * $translator->translateInDomain('special-domain', 'request'); + * + * printf( + * $translator->translatePluralInDomain('special-domain', '%d request', '%d requests', 42), + * 42 + * ); + * + * // All translation functions also accept a context as last parameter + * $translator->translate('group', 'a-context'); + * ``` + * + */ +class GettextTranslator implements Translator +{ + /** @var string Default gettext domain */ + protected $defaultDomain = 'default'; + + /** @var string Default locale code */ + protected $defaultLocale = 'en_US'; + + /** @var array Known translation directories as array[$domain] => $directory */ + protected $translationDirectories = []; + + /** @var array Loaded translations as array[$domain] => $directory */ + protected $loadedTranslations = []; + + /** @var string Primary locale code used for translations */ + protected $locale; + + /** + * Get the default domain + * + * @return string + */ + public function getDefaultDomain() + { + return $this->defaultDomain; + } + + /** + * Set the default domain + * + * @param string $defaultDomain + * + * @return $this + */ + public function setDefaultDomain($defaultDomain) + { + $this->defaultDomain = $defaultDomain; + + return $this; + } + + /** + * Get the default locale + * + * @return string + */ + public function getDefaultLocale() + { + return $this->defaultLocale; + } + + /** + * Set the default locale + * + * @param string $defaultLocale + * + * @return $this + */ + public function setDefaultLocale($defaultLocale) + { + $this->defaultLocale = $defaultLocale; + + return $this; + } + + /** + * Get available translations + * + * @return array Available translations as array[$domain] => $directory + */ + public function getTranslationDirectories() + { + return $this->translationDirectories; + } + + /** + * Add a translation directory + * + * @param string $directory Path to translation files + * @param string $domain Optional domain of the translation + * + * @return $this + */ + public function addTranslationDirectory($directory, $domain = null) + { + $this->translationDirectories[$domain ?: $this->defaultDomain] = $directory; + + return $this; + } + + /** + * Get loaded translations + * + * @return array Loaded translations as array[$domain] => $directory + */ + public function getLoadedTranslations() + { + return $this->loadedTranslations; + } + + /** + * Load a translation so that gettext is able to locate its message catalogs + * + * {@link bindtextdomain()} is called internally for every domain and path + * that has been added with {@link addTranslationDirectory()}. + * + * @return $this + * @throws \Exception If {@link bindtextdomain()} fails for a domain + */ + public function loadTranslations() + { + foreach ($this->translationDirectories as $domain => $directory) { + if ( + isset($this->loadedTranslations[$domain]) + && $this->loadedTranslations[$domain] === $directory + ) { + continue; + } + + if (bindtextdomain($domain, $directory) !== $directory) { + throw new \Exception(sprintf( + "Can't register domain '%s' with path '%s'", + $domain, + $directory + )); + } + + bind_textdomain_codeset($domain, 'UTF-8'); + + $this->loadedTranslations[$domain] = $directory; + } + + return $this; + } + + /** + * Get the primary locale code used for translations + * + * @return string + */ + public function getLocale() + { + return $this->locale; + } + + /** + * Setup the primary locale code to use for translations + * + * Calls {@link loadTranslations()} internally. + * + * @param string $locale Locale code + * + * @return $this + * @throws \Exception If {@link bindtextdomain()} fails for a domain + */ + public function setLocale($locale) + { + putenv("LANGUAGE=$locale.UTF-8"); + setlocale(LC_ALL, $locale . '.UTF-8'); + + $this->loadTranslations(); + + textdomain($this->getDefaultDomain()); + + $this->locale = $locale; + + return $this; + } + + /** + * Encode a message with context to the representation used in .mo files + * + * @param string $message + * @param string $context + * + * @return string The encoded message as context + "\x04" + message + */ + public function encodeMessageWithContext($message, $context) + { + // The encoding of a context and a message in a .mo file is + // context + "\x04" + message (gettext version >= 0.15) + return "{$context}\x04{$message}"; + } + + public function translate($message, $context = null) + { + if ($context !== null) { + $messageForGettext = $this->encodeMessageWithContext($message, $context); + } else { + $messageForGettext = $message; + } + + $translation = gettext($messageForGettext); + + if ($translation === $messageForGettext) { + return $message; + } + + return $translation; + } + + public function translateInDomain($domain, $message, $context = null) + { + if ($context !== null) { + $messageForGettext = $this->encodeMessageWithContext($message, $context); + } else { + $messageForGettext = $message; + } + + $translation = dgettext( + $domain, + $messageForGettext + ); + + if ($translation === $messageForGettext) { + $translation = dgettext( + $this->getDefaultDomain(), + $messageForGettext + ); + } + + if ($translation === $messageForGettext) { + return $message; + } + + return $translation; + } + + public function translatePlural($singular, $plural, $number, $context = null) + { + if ($context !== null) { + $singularForGettext = $this->encodeMessageWithContext($singular, $context); + } else { + $singularForGettext = $singular; + } + + + $translation = ngettext( + $singularForGettext, + $plural, + $number + ); + + if ($translation === $singularForGettext) { + return $number === 1 ? $singular : $plural; + } + + return $translation; + } + + public function translatePluralInDomain($domain, $singular, $plural, $number, $context = null) + { + if ($context !== null) { + $singularForGettext = $this->encodeMessageWithContext($singular, $context); + } else { + $singularForGettext = $singular; + } + + $translation = dngettext( + $domain, + $singularForGettext, + $plural, + $number + ); + + $isSingular = $number === 1; + + if ($translation === ($isSingular ? $singularForGettext : $plural)) { + $translation = dngettext( + $this->getDefaultDomain(), + $singularForGettext, + $plural, + $number + ); + } + + if ($translation === $singularForGettext) { + return $isSingular ? $singular : $plural; + } + + return $translation; + } + + /** + * List available locales by traversing the translation directories from {@link addTranslationDirectory()} + * + * @return string[] Array of available locale codes + */ + public function listLocales() + { + $locales = []; + + foreach (array_unique($this->getTranslationDirectories()) as $directory) { + $fs = new FilesystemIterator( + $directory, + FilesystemIterator::CURRENT_AS_FILEINFO | FilesystemIterator::SKIP_DOTS + ); + + foreach ($fs as $file) { + if (! $file->isDir()) { + continue; + } + + $locales[] = $file->getBasename(); + } + } + + $locales = array_filter(array_unique($locales)); + + sort($locales); + + return $locales; + } +} diff --git a/vendor/ipl/i18n/src/Locale.php b/vendor/ipl/i18n/src/Locale.php new file mode 100644 index 00000000..d9e6b05f --- /dev/null +++ b/vendor/ipl/i18n/src/Locale.php @@ -0,0 +1,124 @@ +defaultLocale; + } + + /** + * Set the default locale + * + * @param string $defaultLocale + * + * @return $this + */ + public function setDefaultLocale($defaultLocale) + { + $this->defaultLocale = $defaultLocale; + + return $this; + } + + /** + * Return the preferred locale based on the given HTTP header and the available translations + * + * @param string $header The HTTP "Accept-Language" header + * @param array $available Available translations + * + * @return string The browser's preferred locale code + */ + public function getPreferred($header, array $available) + { + $headerValues = explode(',', $header); + for ($i = 0; $i < count($headerValues); $i++) { + // In order to accomplish a stable sort we need to take the original + // index into account as well during element comparison + $headerValues[$i] = [$headerValues[$i], $i]; + } + usort( // Sort DESC but keep equal elements ASC + $headerValues, + function ($a, $b) { + $tagA = explode(';', $a[0], 2); + $tagB = explode(';', $b[0], 2); + $qValA = (float) (strpos($a[0], ';') > 0 ? substr(array_pop($tagA), 2) : 1); + $qValB = (float) (strpos($b[0], ';') > 0 ? substr(array_pop($tagB), 2) : 1); + + return $qValA < $qValB ? 1 : ($qValA > $qValB ? -1 : ($a[1] > $b[1] ? 1 : ($a[1] < $b[1] ? -1 : 0))); + } + ); + for ($i = 0; $i < count($headerValues); $i++) { + // We need to reset the array to its original structure once it's sorted + $headerValues[$i] = $headerValues[$i][0]; + } + $requestedLocales = []; + foreach ($headerValues as $headerValue) { + if (strpos($headerValue, ';') > 0) { + $parts = explode(';', $headerValue, 2); + $headerValue = $parts[0]; + } + $requestedLocales[] = str_replace('-', '_', $headerValue); + } + $requestedLocales = array_combine( + array_map('strtolower', array_values($requestedLocales)), + array_values($requestedLocales) + ); + + $available[] = $this->defaultLocale; + $availableLocales = array_combine( + array_map('strtolower', array_values($available)), + array_values($available) + ); + + $similarMatch = null; + + foreach ($requestedLocales as $requestedLocaleLowered => $requestedLocale) { + $localeObj = $this->parseLocale($requestedLocaleLowered); + + if ( + isset($availableLocales[$requestedLocaleLowered]) + && (! $similarMatch || $this->parseLocale($similarMatch)->language === $localeObj->language) + ) { + // Prefer perfect match only if no similar match has been found yet or the perfect match is more precise + // than the similar match + return $availableLocales[$requestedLocaleLowered]; + } + + if (! $similarMatch) { + foreach ($availableLocales as $availableLocaleLowered => $availableLocale) { + if ($this->parseLocale($availableLocaleLowered)->language === $localeObj->language) { + $similarMatch = $availableLocaleLowered; + break; + } + } + } + } + + return $similarMatch ? $availableLocales[$similarMatch] : $this->defaultLocale; + } + + /** + * Parse a locale into its subtags + * + * Converts to output of {@link \Locale::parseLocale()} to an object and returns it. + * + * @param string $locale + * + * @return object Output of {@link \Locale::parseLocale()} converted to an object + */ + public function parseLocale($locale) + { + return (object) \Locale::parseLocale($locale); + } +} diff --git a/vendor/ipl/i18n/src/NoopTranslator.php b/vendor/ipl/i18n/src/NoopTranslator.php new file mode 100644 index 00000000..1f9aab23 --- /dev/null +++ b/vendor/ipl/i18n/src/NoopTranslator.php @@ -0,0 +1,31 @@ +translationDomain === null + ? StaticTranslator::$instance->translate($message, $context) + : StaticTranslator::$instance->translateInDomain($this->translationDomain, $message, $context); + } + + /** + * Translate a message in the given domain + * + * If no translation is found in the specified domain, the translation is also searched for in the default domain. + * + * @param string $domain + * @param string $message + * @param string $context Message context + * + * @return string Translated message or original message if no translation is found + */ + public function translateInDomain($domain, $message, $context = null) + { + return StaticTranslator::$instance->translateInDomain($domain, $message, $context); + } + + /** + * Translate a plural message + * + * The returned message is based on the given number to decide between the singular and plural forms. + * That is also the case if no translation is found. + * + * @param string $singular Singular message + * @param string $plural Plural message + * @param int $number Number to decide between the returned singular and plural forms + * @param string $context Message context + * + * @return string Translated message or original message if no translation is found + */ + public function translatePlural($singular, $plural, $number, $context = null) + { + return $this->translationDomain === null + ? StaticTranslator::$instance->translatePlural($singular, $plural, $number, $context) + : StaticTranslator::$instance->translatePluralInDomain( + $this->translationDomain, + $singular, + $plural, + $number ?? 0, + $context + ); + } + + /** + * Translate a plural message in the given domain + * + * If no translation is found in the specified domain, the translation is also searched for in the default domain. + * + * The returned message is based on the given number to decide between the singular and plural forms. + * That is also the case if no translation is found. + * + * @param string $domain + * @param string $singular Singular message + * @param string $plural Plural message + * @param int $number Number to decide between the returned singular and plural forms + * @param string $context Message context + * + * @return string Translated message or original message if no translation is found + */ + public function translatePluralInDomain($domain, $singular, $plural, $number, $context = null) + { + return StaticTranslator::$instance->translatePluralInDomain( + $domain, + $singular, + $plural, + $number ?? 0, + $context + ); + } +} diff --git a/vendor/ipl/i18n/src/functions.php b/vendor/ipl/i18n/src/functions.php new file mode 100644 index 00000000..74d58df6 --- /dev/null +++ b/vendor/ipl/i18n/src/functions.php @@ -0,0 +1,34 @@ +translate($message, $context); +} + +/** + * Translate a plural message + * + * The returned message is based on the given number to decide between the singular and plural forms. + * That is also the case if no translation is found. + * + * @param string $singular Singular message + * @param string $plural Plural message + * @param int $number Number to decide between the returned singular and plural forms + * @param string $context Message context + * + * @return string Translated message or original message if no translation is found + */ +function tp($singular, $plural, $number, $context = null) +{ + return StaticTranslator::$instance->translatePlural($singular, $plural, $number, $context); +} diff --git a/vendor/ipl/i18n/src/functions_include.php b/vendor/ipl/i18n/src/functions_include.php new file mode 100644 index 00000000..68f38062 --- /dev/null +++ b/vendor/ipl/i18n/src/functions_include.php @@ -0,0 +1,6 @@ +=7.2", + "ext-pdo": "*", + "ipl/sql": ">=0.6.0", + "ipl/stdlib": ">=0.12.0" + }, + "autoload": { + "psr-4": { + "ipl\\Orm\\": "src" + } + }, + "require-dev": { + "ext-pdo_sqlite": "*" + }, + "autoload-dev": { + "psr-4": { + "ipl\\Tests\\Orm\\": "tests", + "ipl\\Tests\\Sql\\": "vendor/ipl/sql/tests" + } + } +} diff --git a/vendor/ipl/orm/src/AliasedExpression.php b/vendor/ipl/orm/src/AliasedExpression.php new file mode 100644 index 00000000..ed733a23 --- /dev/null +++ b/vendor/ipl/orm/src/AliasedExpression.php @@ -0,0 +1,36 @@ +alias = $alias; + } + + /** + * Get this expression's alias + * + * @return string + */ + public function getAlias(): string + { + return $this->alias; + } +} diff --git a/vendor/ipl/orm/src/Behavior.php b/vendor/ipl/orm/src/Behavior.php new file mode 100644 index 00000000..45b5e876 --- /dev/null +++ b/vendor/ipl/orm/src/Behavior.php @@ -0,0 +1,12 @@ +rewriteSubjects = $this->properties; + + if (! $query->getDb()->getAdapter() instanceof Pgsql) { + // Only process properties if the adapter is PostgreSQL. + $this->properties = []; + } + } + + public function rewriteCondition(Condition $condition, $relation = null) + { + /** + * TODO(lippserd): Duplicate code because {@see RewriteFilterBehavior}s come after {@see PropertyBehavior}s. + * {@see \ipl\Orm\Compat\FilterProcessor::requireAndResolveFilterColumns()} + */ + $column = $condition->metaData()->get('columnName'); + if (isset($this->rewriteSubjects[$column])) { + $value = $condition->getValue(); + + if (empty($this->properties) && is_resource($value)) { + // Only for PostgreSQL. + throw new UnexpectedValueException(sprintf('Unexpected resource for %s', $column)); + } + + // ctype_xdigit expects strings. + $value = (string) $value; + /** + * Although this code path is also affected by the duplicate behavior evaluation stated in {@see toDb()}, + * no further adjustments are needed as ctype_xdigit returns false for binary and bytea hex strings. + */ + if (ctype_xdigit($value)) { + if (empty($this->properties) && substr($value, 0, 2) !== '\\x') { + // Only for PostgreSQL. + $condition->setValue(sprintf('\\x%s', $value)); + } else { + $condition->setValue(hex2bin($value)); + } + } + } + } +} diff --git a/vendor/ipl/orm/src/Behavior/BoolCast.php b/vendor/ipl/orm/src/Behavior/BoolCast.php new file mode 100644 index 00000000..ad1748ab --- /dev/null +++ b/vendor/ipl/orm/src/Behavior/BoolCast.php @@ -0,0 +1,147 @@ +falseValue; + } + + /** + * Set the database value representing boolean `false` + * + * @param mixed $falseValue + * + * @return $this + */ + public function setFalseValue($falseValue): self + { + $this->falseValue = $falseValue; + + return $this; + } + + /** + * Get the database value representing boolean `true` + * + * @return mixed + */ + public function getTrueValue() + { + return $this->trueValue; + } + + /** + * Get the database value representing boolean `true` + * + * @param mixed $trueValue + * + * @return $this + */ + public function setTrueValue($trueValue): self + { + $this->trueValue = $trueValue; + + return $this; + } + + /** + * Get whether to throw an exception if the value is not equal to the value for false or true + * + * @return bool + */ + public function isStrict(): bool + { + return $this->strict; + } + + /** + * Set whether to throw an exception if the value is not equal to the value for false or true + * + * @param bool $strict + * + * @return $this + */ + public function setStrict(bool $strict): self + { + $this->strict = $strict; + + return $this; + } + + public function fromDb($value, $key, $_) + { + switch (true) { + case $this->trueValue === $value: + return true; + case $this->falseValue === $value: + return false; + default: + if ($this->isStrict() && $value !== null) { + throw new InvalidArgumentException(sprintf( + 'Expected %s or %s, got %s instead', + $this->trueValue, + $this->falseValue, + $value + )); + } + + return $value; + } + } + + public function toDb($value, $key, $_) + { + if ($value === null) { + return null; + } + + if (! is_bool($value)) { + if ( + $this->isStrict() + && $value !== '*' + && $value !== $this->getFalseValue() + && $value !== $this->getTrueValue() + ) { + throw new ValueConversionException(sprintf( + 'Expected bool, got %s instead', + get_php_type($value) + )); + } + + return $value; + } + + return $value ? $this->trueValue : $this->falseValue; + } +} diff --git a/vendor/ipl/orm/src/Behavior/MillisecondTimestamp.php b/vendor/ipl/orm/src/Behavior/MillisecondTimestamp.php new file mode 100644 index 00000000..65d8033a --- /dev/null +++ b/vendor/ipl/orm/src/Behavior/MillisecondTimestamp.php @@ -0,0 +1,41 @@ +setTimezone(new DateTimeZone(date_default_timezone_get())); + + return $datetime; + } + + public function toDb($value, $key, $context) + { + if (is_numeric($value)) { + return (int) ($value * 1000.0); + } + + if (! $value instanceof DateTime) { + try { + $value = new DateTime($value); + } catch (Exception $err) { + throw new ValueConversionException(sprintf('Invalid date time format provided: %s', $value)); + } + } + + return (int) ($value->format('U.u') * 1000.0); + } +} diff --git a/vendor/ipl/orm/src/Behaviors.php b/vendor/ipl/orm/src/Behaviors.php new file mode 100644 index 00000000..5c543502 --- /dev/null +++ b/vendor/ipl/orm/src/Behaviors.php @@ -0,0 +1,238 @@ +behaviors[] = $behavior; + + if ($behavior instanceof PropertyBehavior) { + $this->retrieveBehaviors[] = $behavior; + $this->persistBehaviors[] = $behavior; + $this->propertyBehaviors[] = $behavior; + } else { + if ($behavior instanceof RetrieveBehavior) { + $this->retrieveBehaviors[] = $behavior; + } + + if ($behavior instanceof PersistBehavior) { + $this->persistBehaviors[] = $behavior; + } + } + + if ($behavior instanceof RewriteFilterBehavior) { + $this->rewriteFilterBehaviors[] = $behavior; + } + + if ($behavior instanceof RewriteColumnBehavior) { + $this->rewriteColumnBehaviors[] = $behavior; + } + + if ($behavior instanceof RewritePathBehavior) { + $this->rewritePathBehaviors[] = $behavior; + } + } + + /** + * Iterate registered behaviors + * + * @return ArrayIterator + */ + public function getIterator(): Traversable + { + return new ArrayIterator($this->behaviors); + } + + /** + * Apply all retrieve behaviors on the given model + * + * @param Model $model + */ + public function retrieve(Model $model) + { + foreach ($this->retrieveBehaviors as $behavior) { + $behavior->retrieve($model); + } + } + + /** + * Apply all persist behaviors on the given model + * + * @param Model $model + */ + public function persist(Model $model) + { + foreach ($this->persistBehaviors as $behavior) { + $behavior->persist($model); + } + } + + /** + * Transform the retrieved key's value by use of all property behaviors + * + * @param mixed $value + * @param string $key + * + * @return mixed + */ + public function retrieveProperty($value, $key) + { + foreach ($this->propertyBehaviors as $behavior) { + $value = $behavior->retrieveProperty($value, $key); + } + + return $value; + } + + /** + * Transform the to be persisted key's value by use of all property behaviors + * + * @param mixed $value + * @param string $key + * + * @return mixed + */ + public function persistProperty($value, $key) + { + foreach ($this->propertyBehaviors as $behavior) { + $value = $behavior->persistProperty($value, $key); + } + + return $value; + } + + /** + * Rewrite the given filter condition + * + * @param Filter\Condition $condition + * @param string $relation Absolute path (with a trailing dot) of the model + * + * @return Filter\Rule|null + */ + public function rewriteCondition(Filter\Condition $condition, $relation = null) + { + $filter = null; + foreach ($this->rewriteFilterBehaviors as $behavior) { + $replacement = $behavior->rewriteCondition($filter ?: $condition, $relation); + if ($replacement !== null) { + $filter = $replacement; + } + } + + return $filter; + } + + /** + * Rewrite the given relation path + * + * @param string $path + * @param string $relation Absolute path of the model + * + * @return string|null + */ + public function rewritePath($path, $relation = null) + { + $newPath = null; + foreach ($this->rewritePathBehaviors as $behavior) { + $replacement = $behavior->rewritePath($newPath ?: $path, $relation); + if ($replacement !== null) { + $newPath = $replacement; + } + } + + return $newPath; + } + + /** + * Rewrite the given column + * + * @param string $column + * @param string $relation Absolute path of the model + * + * @return mixed + */ + public function rewriteColumn($column, $relation = null) + { + $newColumn = null; + foreach ($this->rewriteColumnBehaviors as $behavior) { + $replacement = $behavior->rewriteColumn($newColumn ?: $column, $relation); + if ($replacement !== null) { + $newColumn = $replacement; + } + } + + return $newColumn; + } + + /** + * Rewrite the given column definition + * + * @param ColumnDefinition $def + * @param string $relation Absolute path of the model + * + * @return void + */ + public function rewriteColumnDefinition(ColumnDefinition $def, string $relation): void + { + foreach ($this->rewriteColumnBehaviors as $behavior) { + $behavior->rewriteColumnDefinition($def, $relation); + } + } + + /** + * Get whether the given column is selectable + * + * @param string $column + * + * @return bool + */ + public function isSelectableColumn(string $column): bool + { + foreach ($this->rewriteColumnBehaviors as $behavior) { + if ($behavior->isSelectableColumn($column)) { + return true; + } + } + + return false; + } +} diff --git a/vendor/ipl/orm/src/ColumnDefinition.php b/vendor/ipl/orm/src/ColumnDefinition.php new file mode 100644 index 00000000..ddb80621 --- /dev/null +++ b/vendor/ipl/orm/src/ColumnDefinition.php @@ -0,0 +1,80 @@ +name = $name; + } + + /** + * Get the column name + * + * @return string + */ + public function getName(): string + { + return $this->name; + } + + /** + * Get the column label + * + * @return ?string + */ + public function getLabel(): ?string + { + return $this->label; + } + + /** + * Set the column label + * + * @param ?string $label + * + * @return $this + */ + public function setLabel(?string $label): self + { + $this->label = $label; + + return $this; + } + + /** + * Create a new column definition based on the given options + * + * @param array $options + * + * @return self + */ + public static function fromArray(array $options): self + { + if (! isset($options['name'])) { + throw new InvalidArgumentException('$options must provide a name'); + } + + $self = new static($options['name']); + if (isset($options['label'])) { + $self->setLabel($options['label']); + } + + return $self; + } +} diff --git a/vendor/ipl/orm/src/Common/PropertiesWithDefaults.php b/vendor/ipl/orm/src/Common/PropertiesWithDefaults.php new file mode 100644 index 00000000..e8d3a84b --- /dev/null +++ b/vendor/ipl/orm/src/Common/PropertiesWithDefaults.php @@ -0,0 +1,31 @@ +properties[$key]) && $this->properties[$key] instanceof Closure) { + $this->setProperty($key, $this->properties[$key]($this, $key)); + } + + return $this->parentGetProperty($key); + } + + public function getIterator(): Traversable + { + foreach ($this->properties as $key => $value) { + if (! $value instanceof Closure) { + yield $key => $value; + } + } + } +} diff --git a/vendor/ipl/orm/src/Common/SortUtil.php b/vendor/ipl/orm/src/Common/SortUtil.php new file mode 100644 index 00000000..0e014e97 --- /dev/null +++ b/vendor/ipl/orm/src/Common/SortUtil.php @@ -0,0 +1,65 @@ +getUnions() as $union) { + static::apply($filter, $union); + } + + return; + } + + if ($filter instanceof Filter\Condition || ! $filter->isEmpty()) { + $filter = clone $filter; + if (! $filter instanceof Filter\Chain) { + $filter = Filter::all($filter); + } + + static::resolveFilter($filter, $query); + + $where = static::assembleFilter($filter); + + if ($where) { + $operator = array_shift($where); + $conditions = array_shift($where); + + $query->getSelectBase()->where($conditions, $operator); + } + } + } + + /** + * Resolve the filter in order to apply it on the query + * + * @param Filter\Chain $filter + * @param Query $query + * + * @return void + */ + public static function resolveFilter(Filter\Chain $filter, Query $query) + { + $processor = new static(); + foreach ($query->getUtilize() as $path => $_) { + $processor->baseJoins[$path] = true; + } + + $processor->requireAndResolveFilterColumns($filter, $query); + } + + protected function requireAndResolveFilterColumns(Filter\Rule $filter, Query $query, $forceOptimization = null) + { + if ($filter instanceof Filter\Condition) { + if ($filter instanceof Exists || $filter instanceof NotExists) { + return; + } + + $resolver = $query->getResolver(); + $baseTable = $query->getModel()->getTableAlias(); + $column = $resolver->qualifyPath( + $filter->metaData()->get('columnName', $filter->getColumn()), + $baseTable + ); + + $filter->metaData()->set('columnPath', $column); + + list($relationPath, $columnName) = preg_split('/\.(?=[^.]+$)/', $column); + + $relations = new AppendIterator(); + $relations->append(new ArrayIterator([$baseTable => null])); + $relations->append($resolver->resolveRelations($relationPath)); + foreach ($relations as $path => $relation) { + $columnName = substr($column, strlen($path) + 1); + + if ($path === $baseTable) { + $subject = $query->getModel(); + } else { + /** @var Relation $relation */ + $subject = $relation->getTarget(); + } + + $subjectBehaviors = $resolver->getBehaviors($subject); + + try { + // Prepare filter as if it were final to allow full control for rewrite filter behaviors + $filter->setValue($subjectBehaviors->persistProperty($filter->getValue(), $columnName)); + } catch (ValueConversionException $_) { + // The search bar may submit values with wildcards or whatever the user has entered. + // In this case, we can simply ignore this error instead of rendering a stack trace. + } + + $filter->setColumn($resolver->getAlias($subject) . '.' . $columnName); + $filter->metaData()->set('columnName', $columnName); + $filter->metaData()->set('relationPath', $path); + + $rewrittenFilter = $subjectBehaviors->rewriteCondition($filter, $path . '.'); + if ($rewrittenFilter !== null) { + return $this->requireAndResolveFilterColumns($rewrittenFilter, $query, $forceOptimization) + ?: $rewrittenFilter; + } + } + + if (! $resolver->hasSelectableColumn($subject, $columnName)) { + throw new InvalidColumnException($columnName, $subject); + } + + if ($relationPath !== $baseTable) { + $query->utilize($relationPath); + $this->madeJoins[$relationPath][] = $filter; + } + } else { + /** @var Filter\Chain $filter */ + + if ($filter->metaData()->has('forceOptimization')) { + // Rules can override the default behavior how it's determined that they need to be + // optimized. If it's done by a chain, it applies to all of its children. + $forceOptimization = $filter->metaData()->get('forceOptimization'); + } + + $subQueryGroups = []; + $outsourcedRules = []; + foreach ($filter as $child) { + /** @var Filter\Rule $child */ + $rewrittenFilter = $this->requireAndResolveFilterColumns($child, $query, $forceOptimization); + if ($rewrittenFilter !== null) { + $filter->replace($child, $rewrittenFilter); + $child = $rewrittenFilter; + } + + $optimizeChild = $forceOptimization; + if ($child instanceof MetaDataProvider && $child->metaData()->has('forceOptimization')) { + $optimizeChild = $child->metaData()->get('forceOptimization'); + } + + // We only optimize rules in a single level, nested chains are ignored + if ($child instanceof Filter\Condition && $child->metaData()->has('relationPath')) { + $relationPath = $child->metaData()->get('relationPath'); + if ( + $relationPath !== $query->getModel()->getTableAlias() // Not the base table + && ( + $optimizeChild !== null && $optimizeChild + || ( + $optimizeChild === null + && ! isset($query->getWith()[$relationPath]) // Not a selected join + && ! $query->getResolver()->isDistinctRelation($relationPath) // Not a to-one relation + ) + ) + ) { + $subQueryGroups[$relationPath][$child->getColumn()][get_class($child)][] = $child; + + // Register all rules that are going to be put into sub queries, for later cleanup + $outsourcedRules[] = $child; + } + } + } + + foreach ($subQueryGroups as $relationPath => $columns) { + $generalRules = []; + foreach ($columns as $column => & $comparisons) { + if (isset($comparisons[Filter\Unequal::class]) || isset($comparisons[Filter\Unlike::class])) { + // If there's a unequal (!=) comparison for any column, all other comparisons (for the same + // column) also need to be outsourced to their own sub query. Regardless of their amount of + // occurrence. This is because `$generalRules` apply to all comparisons of such a column and + // need to be applied to all sub queries. + continue; + } + + // Single occurring columns don't need their own sub query + foreach ($comparisons as $conditionClass => $rules) { + if (count($rules) === 1) { + $generalRules[] = $rules[0]; + unset($comparisons[$conditionClass]); + } + } + + if (empty($comparisons)) { + unset($columns[$column]); + } + } + + $count = null; + $baseFilters = null; + $subQueryFilters = []; + foreach ($columns as $column => $comparisons) { + foreach ($comparisons as $conditionClass => $rules) { + if ($conditionClass === Filter\Unequal::class || $conditionClass === Filter\Unlike::class) { + // Unequal comparisons are always put into their own sub query + $subQueryFilters[] = [$rules, count($rules), true]; + } elseif (count($rules) > $count) { + // If there are multiple columns used multiple times in the same relation, we have to decide + // which to use as the primary comparison. That is the column that is used most often. + if (! empty($baseFilters)) { + array_push($generalRules, ...$baseFilters); + } + + $count = count($rules); + $baseFilters = $rules; + } else { + array_push($generalRules, ...$rules); + } + } + } + + if (! empty($baseFilters) || ! empty($generalRules)) { + $subQueryFilters[] = [$baseFilters ?: $generalRules, $count, false]; + } + + foreach ($subQueryFilters as list($filters, $count, $negate)) { + $subQueryFilter = null; + if ($count !== null) { + $aggregateFilter = Filter::any(); + foreach ($filters as $condition) { + if ($negate) { + if ($condition instanceof Filter\Unequal) { + $negation = Filter::equal($condition->getColumn(), $condition->getValue()); + } else { // if ($condition instanceof Filter\Unlike) + $negation = Filter::like($condition->getColumn(), $condition->getValue()); + } + + $negation->metaData()->merge($condition->metaData()); + $condition = $negation; + $count = 1; + } + + switch (true) { + case $filter instanceof Filter\All: + $aggregateFilter->add(Filter::all($condition, ...$generalRules)); + break; + case $filter instanceof Filter\Any: + $aggregateFilter->add(Filter::any($condition, ...$generalRules)); + break; + case $filter instanceof Filter\None: + $aggregateFilter->add(Filter::none($condition, ...$generalRules)); + break; + } + } + + $subQueryFilter = $aggregateFilter; + } else { + switch (true) { + case $filter instanceof Filter\All: + $subQueryFilter = Filter::all(...$filters); + break; + case $filter instanceof Filter\Any: + $subQueryFilter = Filter::any(...$filters); + break; + case $filter instanceof Filter\None: + $subQueryFilter = Filter::none(...$filters); + break; + } + } + + $relation = $query->getResolver()->resolveRelation($relationPath); + $subQuery = $query->createSubQuery($relation->getTarget(), $relationPath); + $subQuery->columns([new Expression('1')]); + + if ($count !== null && ($negate || $filter instanceof Filter\All)) { + $targetKeys = join( + ',', + array_values( + $subQuery->getResolver()->qualifyColumns( + (array) $subQuery->getModel()->getKeyName(), + $subQuery->getModel() + ) + ) + ); + + $subQuery->getSelectBase()->having(["COUNT(DISTINCT $targetKeys) >= ?" => $count]); + } + + $subQuery->filter($subQueryFilter); + + if ($negate) { + $filter->add(new NotExists($subQuery->assembleSelect()->resetOrderBy())); + } else { + $filter->add(new Exists($subQuery->assembleSelect()->resetOrderBy())); + } + } + } + + foreach ($outsourcedRules as $rule) { + // Remove joins solely used for filter conditions + foreach ($this->madeJoins as $joinPath => & $madeBy) { + $madeBy = array_filter( + $madeBy, + function ($relationFilter) use ($rule) { + return $rule !== $relationFilter + && ($rule instanceof Filter\Condition || ! $rule->has($relationFilter)); + } + ); + + if (empty($madeBy)) { + if (! isset($this->baseJoins[$joinPath])) { + $query->omit($joinPath); + } + + unset($this->madeJoins[$joinPath]); + } + } + + $filter->remove($rule); + } + } + } +} diff --git a/vendor/ipl/orm/src/Contract/PersistBehavior.php b/vendor/ipl/orm/src/Contract/PersistBehavior.php new file mode 100644 index 00000000..a6db05dd --- /dev/null +++ b/vendor/ipl/orm/src/Contract/PersistBehavior.php @@ -0,0 +1,18 @@ +properties = array_flip($properties); + } else { + $this->properties = $properties; + } + } + + public function retrieve(Model $model) + { + foreach ($this->properties as $key => $ctx) { + try { + $model[$key] = $this->fromDb($model[$key], $key, $ctx); + } catch (OutOfBoundsException $_) { + // pass + } + } + } + + public function persist(Model $model) + { + foreach ($this->properties as $key => $ctx) { + try { + $model[$key] = $this->toDb($model[$key], $key, $ctx); + } catch (OutOfBoundsException $_) { + // pass + } + } + } + + /** + * Transform the given value, just fetched from the database + * + * @param mixed $value + * @param string $key + * + * @return mixed + */ + public function retrieveProperty($value, $key) + { + if (! isset($this->properties[$key])) { + return $value; + } + + return $this->fromDb($value, $key, $this->properties[$key]); + } + + /** + * Transform the given value, about to be persisted to the database + * + * @param mixed $value + * @param string $key + * + * @return mixed + */ + public function persistProperty($value, $key) + { + if (! isset($this->properties[$key])) { + return $value; + } + + return $this->toDb($value, $key, $this->properties[$key]); + } + + /** + * Transform the given value which has just been fetched from the database + * + * @param mixed $value + * @param string $key + * @param mixed $context + * + * @return mixed + */ + abstract public function fromDb($value, $key, $context); + + /** + * Transform the given value which is about to be persisted to the database + * + * @param mixed $value + * @param string $key + * @param mixed $context + * + * @return mixed + */ + abstract public function toDb($value, $key, $context); +} diff --git a/vendor/ipl/orm/src/Contract/QueryAwareBehavior.php b/vendor/ipl/orm/src/Contract/QueryAwareBehavior.php new file mode 100644 index 00000000..b67bf515 --- /dev/null +++ b/vendor/ipl/orm/src/Contract/QueryAwareBehavior.php @@ -0,0 +1,18 @@ + Registered defaults */ + protected $defaults = []; + + /** + * Iterate over the defaults + * + * @return Traversable + */ + public function getIterator(): Traversable + { + foreach ($this->defaults as $column => $default) { + yield $column => $default; + } + } + + /** + * Add a default for the given property + * + * @param string $property + * @param mixed $default If it's a closure, its interface is assumed to be + * ({@see Model} $subject, string $propertyName) + * + * @return $this + */ + public function add(string $property, $default): self + { + $this->defaults[$property] = $default; + + return $this; + } + + /** + * Get whether a default for the given property exists + * + * @param string $property + * + * @return bool + */ + public function has(string $property): bool + { + return array_key_exists($property, $this->defaults); + } +} diff --git a/vendor/ipl/orm/src/Exception/InvalidColumnException.php b/vendor/ipl/orm/src/Exception/InvalidColumnException.php new file mode 100644 index 00000000..cd320c6d --- /dev/null +++ b/vendor/ipl/orm/src/Exception/InvalidColumnException.php @@ -0,0 +1,53 @@ +column = (string) $column; + $this->model = $model; + + parent::__construct(sprintf( + "Can't require column '%s' in model '%s'. Column not found.", + $column, + get_class($model) + )); + } + + /** + * Get the column name + * + * @return string + */ + public function getColumn() + { + return $this->column; + } + + /** + * Get the target model + * + * @return Model + */ + public function getModel() + { + return $this->model; + } +} diff --git a/vendor/ipl/orm/src/Exception/InvalidRelationException.php b/vendor/ipl/orm/src/Exception/InvalidRelationException.php new file mode 100644 index 00000000..51e81bb6 --- /dev/null +++ b/vendor/ipl/orm/src/Exception/InvalidRelationException.php @@ -0,0 +1,53 @@ +relation = (string) $relation; + $this->model = $model; + + parent::__construct(sprintf( + 'Cannot join relation "%s"%s. Relation not found.', + $relation, + $model ? ' in model ' . get_class($model) : '' + )); + } + + /** + * Get the relation name + * + * @return string + */ + public function getRelation() + { + return $this->relation; + } + + /** + * Get the target model + * + * @return Model + */ + public function getModel() + { + return $this->model; + } +} diff --git a/vendor/ipl/orm/src/Exception/ValueConversionException.php b/vendor/ipl/orm/src/Exception/ValueConversionException.php new file mode 100644 index 00000000..499d9f3f --- /dev/null +++ b/vendor/ipl/orm/src/Exception/ValueConversionException.php @@ -0,0 +1,12 @@ +query = $query; + } + + /** + * Add a hydration rule + * + * @param string $path Model path + * + * @return $this + * + * @throws \InvalidArgumentException If a hydrator for the given path already exists + */ + public function add($path) + { + if (isset($this->hydrators[$path])) { + throw new \InvalidArgumentException("Hydrator for path '$path' already exists"); + } + + $resolver = $this->query->getResolver(); + $target = $this->query->getModel(); + $relation = null; + + if ($path === $target->getTableAlias()) { + $selectableColumns = $resolver->getSelectableColumns($target); + $columnToPropertyMap = array_combine($selectableColumns, $selectableColumns); + } else { + $relation = $resolver->resolveRelation($path); + $target = $relation->getTarget(); + $selectableColumns = $resolver->getSelectableColumns($target); + $columnToPropertyMap = array_combine( + array_keys($resolver->qualifyColumnsAndAliases($selectableColumns, $target)), + $selectableColumns + ); + } + + $relationLoader = function (Model $subject, string $relationName) { + return $this->query->derive($relationName, $subject); + }; + + $defaults = $this->query->getResolver()->getDefaults($target); + foreach ($resolver->getRelations($target) as $targetRelation) { + $targetRelationName = $targetRelation->getName(); + if (! $defaults->has($targetRelationName)) { + $defaults->add($targetRelationName, $relationLoader); + } + } + + $this->hydrators[$path] = [$target, $relation, $columnToPropertyMap, $defaults]; + + return $this; + } + + /** + * Hydrate the given raw database rows into the specified model + * + * @param array $data + * @param Model $model + * + * @return Model + */ + public function hydrate(array $data, Model $model) + { + $defaultsToApply = []; + foreach ($this->hydrators as $path => $vars) { + list($target, $relation, $columnToPropertyMap, $defaults) = $vars; + + $subject = $model; + if ($relation !== null) { + /** @var Relation $relation */ + + $steps = explode('.', $path); + $baseTable = array_shift($steps); + $relationName = array_pop($steps); + + $parent = $model; + foreach ($steps as $i => $step) { + if (! isset($parent->$step)) { + $intermediateRelation = $this->query->getResolver()->resolveRelation( + $baseTable . '.' . implode('.', array_slice($steps, 0, $i + 1)), + $model + ); + $parentClass = $intermediateRelation->getTargetClass(); + $parent = $parent->$step = new $parentClass(); + } else { + $parent = $parent->$step; + } + } + + if (isset($parent->$relationName)) { + $subject = $parent->$relationName; + } else { + $subjectClass = $relation->getTargetClass(); + $subject = new $subjectClass(); + $parent->$relationName = $subject; + } + } + + $subject->setProperties($this->extractAndMap($data, $columnToPropertyMap)); + $this->query->getResolver()->getBehaviors($target)->retrieve($subject); + $defaultsToApply[] = [$subject, $defaults]; + } + + // If there are any columns left, propagate them to the targeted relation if possible, to the base otherwise + foreach ($data as $column => $value) { + $columnName = $column; + $steps = explode('_', $column); + $baseTable = array_shift($steps); + + $subject = $model; + $target = $this->query->getModel(); + $stepsTaken = []; + foreach ($steps as $step) { + $stepsTaken[] = $step; + $relationPath = "$baseTable." . implode('.', $stepsTaken); + + try { + $relation = $this->query->getResolver()->resolveRelation($relationPath); + } catch (InvalidArgumentException $_) { + // The base table is missing, which means the alias hasn't been qualified and is custom defined + break; + } catch (InvalidRelationException $_) { + array_pop($stepsTaken); + $columnName = implode('_', array_slice($steps, count($stepsTaken))); + break; + } + + if (! $subject->hasProperty($step)) { + $stepClass = $relation->getTargetClass(); + $subject->$step = new $stepClass(); + } + + $subject = $subject->$step; + $target = $relation->getTarget(); + } + + $subject->$columnName = $this->query + ->getResolver() + ->getBehaviors($target) + ->retrieveProperty($value, $columnName); + } + + // Apply defaults last, otherwise we may evaluate them during hydration + foreach ($defaultsToApply as list($subject, $defaults)) { + foreach ($defaults as $name => $default) { + if (! $subject->hasProperty($name)) { + $subject->$name = $default; + } + } + } + + return $model; + } + + /** + * Extract and map the given data based on the specified column to property resolution map + * + * @param array $data + * @param array $columnToPropertyMap + * + * @return array + */ + protected function extractAndMap(array &$data, array $columnToPropertyMap) + { + $extracted = []; + foreach (array_intersect_key($columnToPropertyMap, $data) as $column => $property) { + $extracted[$property] = $data[$column]; + unset($data[$column]); + } + + return $extracted; + } +} diff --git a/vendor/ipl/orm/src/Model.php b/vendor/ipl/orm/src/Model.php new file mode 100644 index 00000000..b99d6ada --- /dev/null +++ b/vendor/ipl/orm/src/Model.php @@ -0,0 +1,142 @@ +hasProperties()) { + $this->setProperties($properties); + } + + $this->init(); + } + + /** + * Get the related database table's name + * + * @return string + */ + abstract public function getTableName(); + + /** + * Get the column name(s) of the primary key + * + * @return string|array Array if the primary key is compound, string otherwise + */ + abstract public function getKeyName(); + + /** + * Get the model's queryable columns + * + * @return array + */ + abstract public function getColumns(); + + /** + * Get the configured table alias. (Default {@see static::getTableName()}) + * + * @return string + */ + public function getTableAlias(): string + { + return $this->getTableName(); + } + + /** + * Get the model's column definitions + * + * The array is indexed by column names, values are either strings (labels) or arrays of this format: + * + * [ + * 'label' => 'A Column', + * 'type' => 'enum(y,n)' + * ] + * + * @return array + */ + public function getColumnDefinitions() + { + return []; + } + + /** + * Get a query which is tied to this model and the given database connection + * + * @param Connection $db + * + * @return Query + */ + public static function on(Connection $db) + { + return (new Query()) + ->setDb($db) + ->setModel(new static()); + } + + /** + * Get the model's default sort + * + * @return array|string + */ + public function getDefaultSort() + { + return []; + } + + /** + * Get the model's search columns + * + * @return array + */ + public function getSearchColumns() + { + return []; + } + + /** + * Create the model's behaviors + * + * @param Behaviors $behaviors + */ + public function createBehaviors(Behaviors $behaviors) + { + } + + /** + * Create the model's defaults + * + * @param Defaults $defaults + */ + public function createDefaults(Defaults $defaults) + { + } + + /** + * Create the model's relations + * + * If your model should be associated to other models, override this method and create the model's relations. + */ + public function createRelations(Relations $relations) + { + } + + /** + * Initialize the model + * + * If you want to adjust the model after construction, override this method. + */ + protected function init() + { + } +} diff --git a/vendor/ipl/orm/src/Query.php b/vendor/ipl/orm/src/Query.php new file mode 100644 index 00000000..0af5e97d --- /dev/null +++ b/vendor/ipl/orm/src/Query.php @@ -0,0 +1,831 @@ +on(Query::ON_SELECT_ASSEMBLED, function (Select $select) { + * // ... + * }); + * ``` + */ + const ON_SELECT_ASSEMBLED = 'selectAssembled'; + + /** @var int Count cache */ + protected $count; + + /** @var Connection Database connection */ + protected $db; + + /** @var string Class to return results as */ + protected $resultSetClass = ResultSet::class; + + /** @var Model Model to query */ + protected $model; + + /** @var array Columns to select from the model (or its relations). If empty, all columns are selected */ + protected $columns = []; + + /** @var array Additional columns to select from the model (or its relations) */ + protected $withColumns = []; + + /** @var array Columns not to select from the model (or its relations) */ + protected $withoutColumns = []; + + /** @var bool Whether to peek ahead for more results */ + protected $peekAhead = false; + + /** @var Resolver Column and relation resolver */ + protected $resolver; + + /** @var Select Base SELECT query */ + protected $selectBase; + + /** @var Relation[] Relations to eager load */ + protected $with = []; + + /** @var Relation[] Relations to utilize (join) */ + protected $utilize = []; + + /** @var bool Whether to disable the default sorts of the model */ + protected $disableDefaultSort = false; + + /** + * Get the database connection + * + * @return Connection + */ + public function getDb() + { + return $this->db; + } + + /** + * Set the database connection + * + * @param Connection $db + * + * @return $this + */ + public function setDb(Connection $db) + { + $this->db = $db; + + return $this; + } + + /** + * Get the class to return results as + * + * @return string + */ + public function getResultSetClass() + { + return $this->resultSetClass; + } + + /** + * Set the class to return results as + * + * @param string $class + * + * @return $this + * + * @throws InvalidArgumentException If class is not an instance of {@link ResultSet} + */ + public function setResultSetClass($class) + { + if (! is_string($class)) { + throw new InvalidArgumentException('Argument $class must be a string'); + } + + if (! (new ReflectionClass($class))->newInstanceWithoutConstructor() instanceof ResultSet) { + throw new InvalidArgumentException( + $class . ' must be an instance of ' . ResultSet::class + ); + } + + $this->resultSetClass = $class; + + return $this; + } + + /** + * Get the model to query + * + * @return Model + */ + public function getModel() + { + return $this->model; + } + + /** + * Set the model to query + * + * @param $model + * + * @return $this + */ + public function setModel(Model $model) + { + $this->model = $model; + $this->getResolver()->setAlias($model, $model->getTableAlias()); + + return $this; + } + + /** + * Get the columns to select from the model + * + * @return array + */ + public function getColumns() + { + return $this->columns; + } + + /** + * Set the filter of the query + * + * @param Filter\Chain $filter + * + * @return $this + */ + public function setFilter(Filter\Chain $filter) + { + $this->filter = $filter; + + return $this; + } + + /** + * Disable default sorts + * + * Prevents the default sort rules of the source model from being used + * + * @param bool $disable + * + * @return $this + */ + public function disableDefaultSort($disable = true) + { + $this->disableDefaultSort = (bool) $disable; + + return $this; + } + + /** + * Get whether to not use the default sort rules of the source model + * + * @return bool + */ + public function defaultSortDisabled() + { + return $this->disableDefaultSort; + } + + + /** + * Set columns to select from the model (or its relations) + * + * By default, i.e. if you do not specify any columns, all columns of the model and + * any relation added via {@see with()} will be selected. + * Multiple calls to this method will overwrite the previously specified columns. + * If you specify columns from the model's relations, the relations are automatically joined upon querying. + * Any of the given columns is guaranteed to be selected even if previously excluded via {@see withoutColumns()}. + * Any previously column specified via {@see withColumns()} will not be selected if not part of the given columns. + * + * @param string|array $columns The column(s) to select + * + * @return $this + */ + public function columns($columns) + { + $this->columns = (array) $columns; + $this->withColumns = []; + $this->withoutColumns = []; + + return $this; + } + + /** + * Set additional columns to select from the model (or its relations) + * + * Multiple calls to this method will not overwrite the previous set columns but append the columns to the query. + * Any of the given columns is guaranteed to be selected even if previously excluded via {@see withoutColumns()}. + * + * @param string|array $columns The column(s) to select + * + * @return $this + */ + public function withColumns($columns) + { + $tableName = $this->getModel()->getTableAlias(); + + $qualifiedColumns = []; + foreach ((array) $columns as $column) { + $qualifiedColumns[] = $this->getResolver()->qualifyPath($column, $tableName); + } + + $this->withColumns = array_merge($this->withColumns, $qualifiedColumns); + $this->withoutColumns = array_diff($this->withoutColumns, $this->withColumns); + + return $this; + } + + /** + * Set columns not to select from the model (or its relations) + * + * Multiple calls to this method will not overwrite the previous set columns but append the new ones to the set. + * + * @param string|string[] $columns The column(s) not to select + * + * @return $this + */ + public function withoutColumns($columns): self + { + $tableName = $this->getModel()->getTableAlias(); + + $qualifiedColumns = []; + foreach ((array) $columns as $column) { + $qualifiedColumns[] = $this->getResolver()->qualifyPath($column, $tableName); + } + + $this->withoutColumns = array_merge($this->withoutColumns, $qualifiedColumns); + + return $this; + } + + /** + * Get the query's resolver + * + * @return Resolver + */ + public function getResolver() + { + if ($this->resolver === null) { + $this->resolver = new Resolver($this); + } + + return $this->resolver; + } + + /** + * Get the SELECT base query + * + * @return Select + */ + public function getSelectBase() + { + if ($this->selectBase === null) { + $this->selectBase = new Select(); + + $this->selectBase->from([ + $this->getResolver()->getAlias($this->getModel()) => $this->getModel()->getTableName() + ]); + } + + return $this->selectBase; + } + + /** + * Get the relations to eager load + * + * @return Relation[] + */ + public function getWith() + { + return $this->with; + } + + /** + * Add a relation to eager load + * + * @param string|array $relations + * + * @return $this + */ + public function with($relations) + { + $tableName = $this->getModel()->getTableAlias(); + foreach ((array) $relations as $relation) { + $relation = $this->getResolver()->qualifyPath($relation, $tableName); + $this->with[$relation] = $this->getResolver()->resolveRelation($relation); + } + + return $this; + } + + /** + * Remove an eager loaded relation + * + * @param string|array $relations + * + * @return $this + */ + public function without($relations) + { + $tableName = $this->getModel()->getTableAlias(); + foreach ((array) $relations as $relation) { + $relation = $this->getResolver()->qualifyPath($relation, $tableName); + unset($this->with[$relation]); + } + + return $this; + } + + /** + * Get utilized (joined) relations + * + * @return Relation[] + */ + public function getUtilize() + { + return $this->utilize; + } + + /** + * Add a relation to utilize (join) + * + * @param string $path + * + * @return $this + */ + public function utilize($path) + { + $path = $this->getResolver()->qualifyPath($path, $this->getModel()->getTableAlias()); + $this->utilize[$path] = $this->getResolver()->resolveRelation($path); + + return $this; + } + + /** + * Remove a utilized (joined) relation + * + * @param string $path + * + * @return $this + */ + public function omit($path) + { + $path = $this->getResolver()->qualifyPath($path, $this->getModel()->getTableAlias()); + unset($this->utilize[$path]); + + return $this; + } + + /** + * Assemble and return the SELECT query + * + * @return Select + */ + public function assembleSelect() + { + $columns = $this->getColumns(); + $model = $this->getModel(); + $resolver = $this->getResolver(); + $select = clone $this->getSelectBase(); + + if (empty($columns)) { + $columns = $resolver->getSelectColumns($model); + + foreach ($this->getWith() as $path => $relation) { + foreach ($resolver->getSelectColumns($relation->getTarget()) as $alias => $column) { + if (is_int($alias)) { + $columns[] = "$path.$column"; + } else { + $columns[] = "$path.$alias"; + } + } + } + + $columns = array_merge($columns, $this->withColumns); + $customAliases = array_flip(array_filter(array_keys($this->withColumns), 'is_string')); + } else { + $columns = array_merge($columns, $this->withColumns); + $customAliases = array_flip(array_filter(array_keys($columns), 'is_string')); + } + + $resolved = $this->groupColumnsByTarget($resolver->requireAndResolveColumns($columns)); + $omitted = $this->groupColumnsByTarget($resolver->requireAndResolveColumns($this->withoutColumns)); + foreach ($resolved as $target) { + $targetColumns = $resolved[$target]->getArrayCopy(); + if (isset($omitted[$target])) { + $targetColumns = array_diff($targetColumns, $omitted[$target]->getArrayCopy()); + } + + if (! empty($customAliases)) { + $customColumns = array_intersect_key($targetColumns, $customAliases); + $targetColumns = array_diff_key($targetColumns, $customAliases); + + $select->columns($resolver->qualifyColumns($customColumns, $target)); + } + + $select->columns( + $resolver->qualifyColumnsAndAliases( + $targetColumns, + $target, + $target !== $model + ) + ); + } + + $filter = clone $this->getFilter(); + FilterProcessor::resolveFilter($filter, $this); + $where = FilterProcessor::assembleFilter($filter); + if ($where) { + $select->where(...array_reverse($where)); + } + + $joinedRelations = []; + foreach ($this->getWith() + $this->getUtilize() as $path => $_) { + foreach ($resolver->resolveRelations($path) as $relationPath => $relation) { + if (isset($joinedRelations[$relationPath])) { + continue; + } + + foreach ($relation->resolve() as list($source, $target, $relatedKeys)) { + /** @var Model $source */ + /** @var Model $target */ + + $sourceAlias = $resolver->getAlias($source); + $targetAlias = $resolver->getAlias($target); + + $conditions = []; + foreach ($relatedKeys as $fk => $ck) { + $conditions[] = sprintf( + '%s = %s', + $resolver->qualifyColumn($fk, $targetAlias), + $resolver->qualifyColumn($ck, $sourceAlias) + ); + } + + $table = [$targetAlias => $target->getTableName()]; + + switch ($relation->getJoinType()) { + case 'LEFT': + $select->joinLeft($table, $conditions); + + break; + case 'RIGHT': + $select->joinRight($table, $conditions); + + break; + case 'INNER': + default: + $select->join($table, $conditions); + } + } + + $joinedRelations[$relationPath] = true; + } + } + + if ($this->hasLimit()) { + $limit = $this->getLimit(); + + if ($this->peekAhead) { + ++$limit; + } + + $select->limit($limit); + } + if ($this->hasOffset()) { + $select->offset($this->getOffset()); + } + + $this->order($select); + + $this->emit(static::ON_SELECT_ASSEMBLED, [$select]); + + return $select; + } + + /** + * Create and return the hydrator + * + * @return Hydrator + */ + public function createHydrator() + { + $hydrator = new Hydrator($this); + + $hydrator->add($this->getModel()->getTableAlias()); + foreach ($this->getWith() as $path => $_) { + $hydrator->add($path); + } + + return $hydrator; + } + + /** + * Derive a new query to load the specified relation from a concrete model + * + * @param string $relation + * @param Model $source + * + * @return static + * + * @throws InvalidArgumentException If the relation with the given name does not exist + */ + public function derive($relation, Model $source) + { + // TODO: Think of a way to merge derive() and createSubQuery() + return $this->createSubQuery( + $this->getResolver()->getRelations($source)->get($relation)->getTarget(), + $this->getResolver()->qualifyPath($relation, $source->getTableAlias()), + $source + ); + } + + /** + * Create a sub-query linked to rows of this query + * + * @param Model $target The model to query + * @param string $targetPath The target's absolute relation path + * @param Model $from The source model + * + * @return static + */ + public function createSubQuery(Model $target, $targetPath, Model $from = null) + { + $subQuery = (new static()) + ->setDb($this->getDb()) + ->setModel($target); + + $resolver = $this->getResolver(); + $sourceParts = array_reverse(explode('.', $targetPath)); + $sourceParts[0] = $target->getTableAlias(); + + $subQueryResolver = $subQuery->getResolver(); + $sourcePath = join('.', $sourceParts); + $subQuery->utilize($sourcePath); // TODO: Don't join if there's a matching foreign key + + // TODO: Should be done by the caller. Though, that's not possible until we've got a filter abstraction + // which allows to post-pone filter column qualification. + $subQueryResolver->setAliasPrefix('sub_'); + + $baseAlias = $resolver->getAlias($this->getModel()); + $sourceAlias = $subQueryResolver->getAlias($subQueryResolver->resolveRelation($sourcePath)->getTarget()); + + $subQueryConditions = []; + foreach ((array) $this->getModel()->getKeyName() as $column) { + $fk = $subQueryResolver->qualifyColumn($column, $sourceAlias); + + if (isset($from->$column)) { + $subQueryConditions["$fk = ?"] = $resolver + ->getBehaviors($from) + ->persistProperty($from->$column, $column); + } else { + $subQueryConditions[] = "$fk = " . $resolver->qualifyColumn($column, $baseAlias); + } + } + + $subQuery->getSelectBase()->where($subQueryConditions); + + return $subQuery; + } + + /** + * Dump the query + * + * @return array + */ + public function dump() + { + return $this->getDb()->getQueryBuilder()->assembleSelect($this->assembleSelect()); + } + + /** + * Execute the query + * + * @return ResultSet + */ + public function execute() + { + $class = $this->getResultSetClass(); + /** @var ResultSet $class Just for type hinting. $class is of course a string */ + + return $class::fromQuery($this); + } + + /** + * Fetch and return the first result + * + * @return Model|null Null in case there's no result + */ + public function first() + { + return $this->execute()->current(); + } + + /** + * Set whether to peek ahead for more results + * + * Enabling this causes the current query limit to be increased by one. The potential extra row being yielded will + * be removed from the result set. Note that this only applies when fetching multiple results of limited queries. + * + * @param bool $peekAhead + * + * @return $this + */ + public function peekAhead($peekAhead = true) + { + $this->peekAhead = (bool) $peekAhead; + + return $this; + } + + /** + * Yield the query's results + * + * @return \Generator + */ + public function yieldResults() + { + $select = $this->assembleSelect(); + $stmt = $this->getDb()->select($select); + $stmt->setFetchMode(\PDO::FETCH_ASSOC); + + $hydrator = $this->createHydrator(); + $modelClass = get_class($this->getModel()); + + foreach ($stmt as $row) { + yield $hydrator->hydrate($row, new $modelClass()); + } + } + + public function count(): int + { + if ($this->count === null) { + $this->count = $this->getDb()->select($this->assembleSelect()->getCountQuery())->fetchColumn(0); + } + + return $this->count; + } + + public function getIterator(): Traversable + { + return $this->execute(); + } + + /** + * Group columns from {@link Resolver::requireAndResolveColumns()} by target models + * + * @param Generator $columns + * + * @return SplObjectStorage + */ + protected function groupColumnsByTarget(Generator $columns) + { + $columnStorage = new SplObjectStorage(); + + foreach ($columns as list($target, $alias, $column)) { + if (! $columnStorage->contains($target)) { + $resolved = new ArrayObject(); + $columnStorage->attach($target, $resolved); + } else { + $resolved = $columnStorage[$target]; + } + + if (is_int($alias)) { + $resolved[] = $column; + } else { + $resolved[$alias] = $column; + } + } + + return $columnStorage; + } + + /** + * Resolve, require and apply ORDER BY columns + * + * @param Select $select + * + * @return $this + */ + protected function order(Select $select) + { + $orderBy = $this->getOrderBy(); + $defaultSort = []; + if (! $this->defaultSortDisabled()) { + $defaultSort = (array) $this->getModel()->getDefaultSort(); + } + + if (empty($orderBy)) { + if (empty($defaultSort)) { + return $this; + } + + $orderBy = SortUtil::createOrderBy($defaultSort); + } + + $columns = []; + $directions = []; + $orderByResolved = []; + $resolver = $this->getResolver(); + $selectedColumns = $select->getColumns(); + + foreach ($orderBy as $part) { + list($column, $direction) = $part; + + if (! $column instanceof ExpressionInterface && isset($selectedColumns[$column])) { + // If it's a custom alias, we have no other way of knowing it, + // unless the caller explicitly uses it in the sort rule. + $orderByResolved[] = $part; + } else { + // Prepare flat ORDER BY column(s) and direction(s) for requireAndResolveColumns() + $columns[] = $column; + $directions[] = $direction; + } + } + + foreach ($resolver->requireAndResolveColumns($columns) as list($model, $alias, $column)) { + $direction = array_shift($directions); + $selectColumns = $resolver->getSelectColumns($model); + $tableName = $resolver->getAlias($model); + + if ($column instanceof ExpressionInterface) { + if (is_int($alias) && $column instanceof AliasedExpression) { + $alias = $column->getAlias(); + } elseif (is_string($alias) && $model !== $this->getModel()) { + $alias = $resolver->qualifyColumnAlias($alias, $tableName); + } elseif ($column instanceof ResolvedExpression) { + // We are doing this in an else if, since a resolved expression can't be an aliased + // expression at the same time and thus doesn't influence the functionality in any way. + $column->setColumns($resolver->qualifyColumns($column->getResolvedColumns())); + } + + if (is_string($alias) && isset($selectedColumns[$alias])) { + // An expression's alias can only be used if the expression is also selected + $column = $alias; + } + } else { + if (isset($selectColumns[$column])) { + $column = $selectColumns[$column]; + } + + if (is_string($column)) { + $column = $resolver->qualifyColumn($column, $tableName); + } + } + + $orderByResolved[] = [$column, $direction]; + } + + $select->orderBy($orderByResolved); + + return $this; + } + + public function __clone() + { + $this->resolver = clone $this->resolver; + + if ($this->filter !== null) { + $this->filter = clone $this->filter; + } + + if ($this->selectBase !== null) { + $this->selectBase = clone $this->selectBase; + } + } +} diff --git a/vendor/ipl/orm/src/Relation.php b/vendor/ipl/orm/src/Relation.php new file mode 100644 index 00000000..19593636 --- /dev/null +++ b/vendor/ipl/orm/src/Relation.php @@ -0,0 +1,336 @@ +getKeyName(); + } + + /** + * Get the default column name(s) of the foreign key found in the target table + * + * The default foreign key is the given model's primary key column name(s) prefixed with its table name. + * + * @param Model $source + * + * @return array + */ + public static function getDefaultForeignKey(Model $source) + { + $tableName = $source->getTableName(); + + return array_map( + function ($key) use ($tableName) { + return "{$tableName}_{$key}"; + }, + (array) $source->getKeyName() + ); + } + + /** + * Get whether this is a to-one relationship + * + * @return bool + */ + public function isOne() + { + return $this->isOne; + } + + /** + * Get the name of the relation + * + * @return string + */ + public function getName() + { + return $this->name; + } + + /** + * Set the name of the relation + * + * @param string $name + * + * @return $this + */ + public function setName($name) + { + $this->name = $name; + + return $this; + } + + /** + * Get the source model of the relation + * + * @return Model + */ + public function getSource() + { + return $this->source; + } + + /** + * Set the source model of the relation + * + * @param Model $source + * + * @return $this + */ + public function setSource(Model $source) + { + $this->source = $source; + + return $this; + } + + /** + * Get the column name(s) of the foreign key found in the target table + * + * @return string|array Array if the foreign key is compound, string otherwise + */ + public function getForeignKey() + { + return $this->foreignKey; + } + + /** + * Set the column name(s) of the foreign key found in the target table + * + * @param string|array $foreignKey Array if the foreign key is compound, string otherwise + * + * @return $this + */ + public function setForeignKey($foreignKey) + { + $this->foreignKey = $foreignKey; + + return $this; + } + + /** + * Get the column name(s) of the candidate key in the source table which references the foreign key + * + * @return string|array Array if the candidate key is compound, string otherwise + */ + public function getCandidateKey() + { + return $this->candidateKey; + } + + /** + * Set the column name(s) of the candidate key in the source table which references the foreign key + * + * @param string|array $candidateKey Array if the candidate key is compound, string otherwise + * + * @return $this + */ + public function setCandidateKey($candidateKey) + { + $this->candidateKey = $candidateKey; + + return $this; + } + + /** + * Get the target model class + * + * @return string + */ + public function getTargetClass() + { + return $this->targetClass; + } + + /** + * Set the target model class + * + * @param string $targetClass + * + * @return $this + * + * @throws \InvalidArgumentException If the target model class is not of type string + */ + public function setTargetClass($targetClass) + { + if (! is_string($targetClass)) { + // Require a class name here instead of a concrete model in oder to prevent circular references when + // constructing relations + throw new \InvalidArgumentException(sprintf( + '%s() expects parameter 1 to be string, %s given', + __METHOD__, + get_php_type($targetClass) + )); + } + + $this->targetClass = $targetClass; + + return $this; + } + + /** + * Get the target model + * + * Returns the model from {@link setTarget()} or an instance of {@link getTargetClass()}. + * Note that multiple calls to this method always returns the very same model instance. + * + * @return Model + */ + public function getTarget() + { + if ($this->target === null) { + $targetClass = $this->getTargetClass(); + $this->target = new $targetClass(); + } + + return $this->target; + } + + /** + * Set the the target model + * + * @param Model $target + * + * @return $this + */ + public function setTarget(Model $target) + { + $this->target = $target; + + return $this; + } + + /** + * Get the type of the JOIN used in the query + * + * @return string + */ + public function getJoinType() + { + return $this->joinType; + } + + /** + * Set the type of the JOIN used in the query + * + * @param string $joinType + * + * @return Relation + */ + public function setJoinType($joinType) + { + $this->joinType = $joinType; + + return $this; + } + + /** + * Determine the candidate key-foreign key construct of the relation + * + * @param Model $source + * + * @return array Candidate key-foreign key column name pairs + * + * @throws \UnexpectedValueException If there's no candidate key to be found + * or the foreign key count does not match the candidate key count + */ + public function determineKeys(Model $source) + { + $candidateKey = (array) $this->getCandidateKey(); + + if (empty($candidateKey)) { + $candidateKey = $this->inverse + ? static::getDefaultForeignKey($this->getTarget()) + : static::getDefaultCandidateKey($source); + } + + if (empty($candidateKey)) { + throw new \UnexpectedValueException(sprintf( + "Can't join relation '%s' in model '%s'. No candidate key found.", + $this->getName(), + get_class($source) + )); + } + + $foreignKey = (array) $this->getForeignKey(); + + if (empty($foreignKey)) { + $foreignKey = $this->inverse + ? static::getDefaultCandidateKey($this->getTarget()) + : static::getDefaultForeignKey($source); + } + + if (count($foreignKey) !== count($candidateKey)) { + throw new \UnexpectedValueException(sprintf( + "Can't join relation '%s' in model '%s'." + . " Foreign key count (%s) does not match candidate key count (%s).", + $this->getName(), + get_class($source), + implode(', ', $foreignKey), + implode(', ', $candidateKey) + )); + } + + return array_combine($foreignKey, $candidateKey); + } + + /** + * Resolve the relation + * + * Yields a three-element array consisting of the source model, target model and the join keys. + * + * @return \Generator + */ + public function resolve() + { + $source = $this->getSource(); + + yield [$source, $this->getTarget(), $this->determineKeys($source)]; + } +} diff --git a/vendor/ipl/orm/src/Relation/BelongsTo.php b/vendor/ipl/orm/src/Relation/BelongsTo.php new file mode 100644 index 00000000..1edcff3e --- /dev/null +++ b/vendor/ipl/orm/src/Relation/BelongsTo.php @@ -0,0 +1,13 @@ +throughClass; + } + + /** + * Set the join table name or junction model class + * + * @param string $through + * + * @return $this + */ + public function through($through) + { + $this->throughClass = $through; + + return $this; + } + + /** + * Get the junction model + * + * @return Model|Junction + */ + public function getThrough() + { + if ($this->through === null) { + $throughClass = $this->getThroughClass(); + if ($throughClass === null) { + throw new LogicException( + 'You cannot use a many-to-many relation without a through class or a table name for the' + . ' junction model' + ); + } + + if (class_exists($throughClass)) { + $this->through = new $throughClass(); + } else { + $this->through = (new Junction()) + ->setTableName($throughClass); + } + } + + return $this->through; + } + + /** + * Set the junction model + * + * @param Model $through + * + * @return $this + */ + public function setThrough($through) + { + $this->through = $through; + + return $this; + } + + /** + * Get the column name(s) of the target model's foreign key found in the join table + * + * @return string|array Array if the foreign key is compound, string otherwise + */ + public function getTargetForeignKey() + { + return $this->targetForeignKey; + } + + /** + * Set the column name(s) of the target model's foreign key found in the join table + * + * @param string|array $targetForeignKey Array if the foreign key is compound, string otherwise + * + * @return $this + */ + public function setTargetForeignKey($targetForeignKey) + { + $this->targetForeignKey = $targetForeignKey; + + return $this; + } + + /** + * Get the candidate key column name(s) in the target table which references the target foreign key + * + * @return string|array Array if the foreign key is compound, string otherwise + */ + public function getTargetCandidateKey() + { + return $this->targetCandidateKey; + } + + /** + * Set the candidate key column name(s) in the target table which references the target foreign key + * + * @param string|array $targetCandidateKey Array if the foreign key is compound, string otherwise + * + * @return $this + */ + public function setTargetCandidateKey($targetCandidateKey) + { + $this->targetCandidateKey = $targetCandidateKey; + + return $this; + } + + public function resolve() + { + $source = $this->getSource(); + + $possibleCandidateKey = [$this->getCandidateKey()]; + $possibleForeignKey = [$this->getForeignKey()]; + + $target = $this->getTarget(); + + $possibleTargetCandidateKey = [$this->getTargetForeignKey() ?: static::getDefaultForeignKey($target)]; + $possibleTargetForeignKey = [$this->getTargetCandidateKey() ?: static::getDefaultCandidateKey($target)]; + + $junction = $this->getThrough(); + + if (! $junction instanceof Junction) { + $relations = new Relations(); + $junction->createRelations($relations); + + if ($relations->has($source->getTableAlias())) { + $sourceRelation = $relations->get($source->getTableAlias()); + + $possibleCandidateKey[] = $sourceRelation->getForeignKey(); + $possibleForeignKey[] = $sourceRelation->getCandidateKey(); + } + + if ($relations->has($target->getTableAlias())) { + $targetRelation = $relations->get($target->getTableAlias()); + + $possibleTargetCandidateKey[] = $targetRelation->getCandidateKey(); + $possibleTargetForeignKey[] = $targetRelation->getForeignKey(); + } + } + + $toJunction = (new HasMany()) + ->setName($junction->getTableAlias()) + ->setSource($source) + ->setTarget($junction) + ->setCandidateKey($this->extractKey($possibleCandidateKey)) + ->setForeignKey($this->extractKey($possibleForeignKey)); + + $toTarget = (new HasMany()) + ->setName($this->getName()) + ->setSource($junction) + ->setTarget($target) + ->setCandidateKey($this->extractKey($possibleTargetCandidateKey)) + ->setForeignKey($this->extractKey($possibleTargetForeignKey)); + + foreach ($toJunction->resolve() as $k => $v) { + yield $k => $v; + } + + foreach ($toTarget->resolve() as $k => $v) { + yield $k => $v; + } + } + + protected function extractKey(array $possibleKey) + { + $filtered = array_filter($possibleKey); + + return array_pop($filtered); + } +} diff --git a/vendor/ipl/orm/src/Relation/HasMany.php b/vendor/ipl/orm/src/Relation/HasMany.php new file mode 100644 index 00000000..3e71e25b --- /dev/null +++ b/vendor/ipl/orm/src/Relation/HasMany.php @@ -0,0 +1,13 @@ +tableName; + } + + /** + * Set the table name + * + * @param string $tableName + * + * @return $this + */ + public function setTableName($tableName) + { + $this->tableName = $tableName; + + return $this; + } + + public function getKeyName() + { + return null; + } + + public function getColumns() + { + return null; + } +} diff --git a/vendor/ipl/orm/src/Relations.php b/vendor/ipl/orm/src/Relations.php new file mode 100644 index 00000000..340435fa --- /dev/null +++ b/vendor/ipl/orm/src/Relations.php @@ -0,0 +1,212 @@ +relations[$name]); + } + + /** + * Get the relation with the given name + * + * @param string $name + * + * @return Relation + * + * @throws \InvalidArgumentException If the relation with the given name does not exist + */ + public function get($name) + { + $this->assertRelationExists($name); + + return $this->relations[$name]; + } + + /** + * Add the given relation to the collection + * + * @param Relation $relation + * + * @return $this + * + * @throws \InvalidArgumentException If a relation with the given name already exists + */ + public function add(Relation $relation) + { + $name = $relation->getName(); + + $this->assertRelationDoesNotYetExist($name); + + $this->relations[$name] = $relation; + + return $this; + } + + /** + * Create a new relation from the given class, name and target model class + * + * @param string $class Class of the relation to create + * @param string $name Name of the relation + * @param string $targetClass Target model class + * + * @return BelongsTo|BelongsToMany|HasMany|HasOne|Relation + * + * @throws \InvalidArgumentException If the target model class is not of type string + */ + public function create($class, $name, $targetClass) + { + $relation = new $class(); + + if (! $relation instanceof Relation) { + throw new \InvalidArgumentException(sprintf( + '%s() expects parameter 1 to be a subclass of %s, %s given', + __METHOD__, + Relation::class, + get_php_type($relation) + )); + } + + // Test target model + $target = new $targetClass(); + if (! $target instanceof Model) { + throw new \InvalidArgumentException(sprintf( + '%s() expects parameter 3 to be a subclass of %s, %s given', + __METHOD__, + Model::class, + get_php_type($target) + )); + } + + /** @var Relation $relation */ + $relation + ->setName($name) + ->setTarget($target) + ->setTargetClass($targetClass); + + return $relation; + } + + /** + * Define a one-to-one relationship + * + * @param string $name Name of the relation + * @param string $targetClass Target model class + * + * @return HasOne + */ + public function hasOne($name, $targetClass) + { + $relation = $this->create(HasOne::class, $name, $targetClass); + + $this->add($relation); + + return $relation; + } + + /** + * Define a one-to-many relationship + * + * @param string $name Name of the relation + * @param string $targetClass Target model class + * + * @return HasMany + */ + public function hasMany($name, $targetClass) + { + $relation = $this->create(HasMany::class, $name, $targetClass); + + $this->add($relation); + + return $relation; + } + + /** + * Define the inverse of a one-to-one or one-to-many relationship + * + * @param string $name Name of the relation + * @param string $targetClass Target model class + * + * @return BelongsTo + */ + public function belongsTo($name, $targetClass) + { + $relation = $this->create(BelongsTo::class, $name, $targetClass); + + $this->add($relation); + + return $relation; + } + + /** + * Define a many-to-many relationship + * + * @param string $name Name of the relation + * @param string $targetClass Target model class + * + * @return BelongsToMany + */ + public function belongsToMany($name, $targetClass) + { + $relation = $this->create(BelongsToMany::class, $name, $targetClass); + + $this->add($relation); + + return $relation; + } + + public function getIterator(): Traversable + { + return new ArrayIterator($this->relations); + } + + /** + * Throw exception if a relation with the given name already exists + * + * @param string $name + */ + protected function assertRelationDoesNotYetExist($name) + { + if ($this->has($name)) { + throw new \InvalidArgumentException("Relation '$name' already exists"); + } + } + + /** + * Throw exception if a relation with the given name does not exist + * + * @param string $name + */ + protected function assertRelationExists($name) + { + if (! $this->has($name)) { + throw new InvalidRelationException($name); + } + } +} diff --git a/vendor/ipl/orm/src/ResolvedExpression.php b/vendor/ipl/orm/src/ResolvedExpression.php new file mode 100644 index 00000000..86883daf --- /dev/null +++ b/vendor/ipl/orm/src/ResolvedExpression.php @@ -0,0 +1,49 @@ +getStatement(), $expr->getColumns(), ...$expr->getValues()); + + $this->resolvedColumns = $resolvedColumns; + } + + /** + * @throws RuntimeException In case the columns are not qualified yet + */ + public function getColumns() + { + if ($this->resolvedColumns->valid()) { + throw new RuntimeException('Columns are not yet qualified'); + } + + return parent::getColumns(); + } + + /** + * Get the resolved column generator + * + * @return Generator + */ + public function getResolvedColumns() + { + return $this->resolvedColumns; + } +} diff --git a/vendor/ipl/orm/src/Resolver.php b/vendor/ipl/orm/src/Resolver.php new file mode 100644 index 00000000..4ce2aac7 --- /dev/null +++ b/vendor/ipl/orm/src/Resolver.php @@ -0,0 +1,798 @@ +query = $query; + + $this->relations = new SplObjectStorage(); + $this->behaviors = new SplObjectStorage(); + $this->defaults = new SplObjectStorage(); + $this->aliases = new SplObjectStorage(); + $this->selectableColumns = new SplObjectStorage(); + $this->selectColumns = new SplObjectStorage(); + $this->metaData = new SplObjectStorage(); + $this->resolvedRelations = new SplObjectStorage(); + } + + /** + * Get a model's relations + * + * @param Model $model + * + * @return Relations + */ + public function getRelations(Model $model) + { + if (! $this->relations->contains($model)) { + $relations = new Relations(); + $model->createRelations($relations); + $this->relations->attach($model, $relations); + } + + return $this->relations[$model]; + } + + /** + * Get a model's behaviors + * + * @param Model $model + * + * @return Behaviors + */ + public function getBehaviors(Model $model) + { + if (! $this->behaviors->contains($model)) { + $behaviors = new Behaviors(); + $model->createBehaviors($behaviors); + $this->behaviors->attach($model, $behaviors); + + foreach ($behaviors as $behavior) { + if ($behavior instanceof QueryAwareBehavior) { + $behavior->setQuery($this->query); + } + } + } + + return $this->behaviors[$model]; + } + + /** + * Get a model's defaults + * + * @param Model $model + * + * @return Defaults + */ + public function getDefaults(Model $model): Defaults + { + if (! $this->defaults->contains($model)) { + $defaults = new Defaults($this->query); + $model->createDefaults($defaults); + $this->defaults->attach($model, $defaults); + } + + return $this->defaults[$model]; + } + + /** + * Get a model alias + * + * @param Model $model + * + * @return string + * + * @throws OutOfBoundsException If no alias exists for the given model + */ + public function getAlias(Model $model) + { + if (! $this->aliases->contains($model)) { + throw new OutOfBoundsException(sprintf( + "Can't get alias for model '%s'. Alias does not exist", + get_class($model) + )); + } + + return $this->aliasPrefix . $this->aliases[$model]; + } + + /** + * Set a model alias + * + * @param Model $model + * @param string $alias + * + * @return $this + */ + public function setAlias(Model $model, $alias) + { + $this->aliases[$model] = $alias; + + return $this; + } + + /** + * Get the alias prefix + * + * @return string + */ + public function getAliasPrefix() + { + return $this->aliasPrefix; + } + + /** + * Set the alias prefix + * + * @param string $alias + * + * @return $this + */ + public function setAliasPrefix($alias) + { + $this->aliasPrefix = $alias; + + return $this; + } + + /** + * Get whether the specified model provides the given selectable column + * + * @param Model $subject + * @param string $column + * + * @return bool + */ + public function hasSelectableColumn(Model $subject, $column) + { + if (! $this->selectableColumns->contains($subject)) { + $this->collectColumns($subject); + } + + $columns = $this->selectableColumns[$subject]; + if (! isset($columns[$column])) { + $columns[$column] = $this->getBehaviors($subject)->isSelectableColumn($column); + } + + return $columns[$column]; + } + + /** + * Get all selectable columns from the given model + * + * @param Model $subject + * + * @return array + */ + public function getSelectableColumns(Model $subject) + { + if (! $this->selectableColumns->contains($subject)) { + $this->collectColumns($subject); + } + + return array_keys($this->selectableColumns[$subject]); + } + + /** + * Get all select columns from the given model + * + * @param Model $subject + * + * @return array Select columns suitable for {@link \ipl\Sql\Select::columns()} + */ + public function getSelectColumns(Model $subject) + { + if (! $this->selectColumns->contains($subject)) { + $this->collectColumns($subject); + } + + return $this->selectColumns[$subject]; + } + + /** + * Get all meta data from the given model and its direct relations + * + * @param Model $subject + * + * @return array Column paths as keys (relative to $subject) and their meta data as values + */ + public function getColumnDefinitions(Model $subject) + { + if (! $this->metaData->contains($subject)) { + $this->metaData->attach($subject, $this->collectMetaData($subject)); + } + + return $this->metaData[$subject]; + } + + /** + * Get definition of the given column + * + * @param string $columnPath + * + * @return ColumnDefinition + */ + public function getColumnDefinition(string $columnPath): ColumnDefinition + { + $parts = explode('.', $columnPath); + $model = $this->query->getModel(); + + if ($parts[0] !== $model->getTableAlias()) { + array_unshift($parts, $model->getTableAlias()); + } + + do { + $relationPath[] = array_shift($parts); + $column = implode('.', $parts); + + if (count($relationPath) === 1) { + $subject = $model; + } else { + $subject = $this->resolveRelation(implode('.', $relationPath))->getTarget(); + } + + if ($this->hasSelectableColumn($subject, $column)) { + break; + } + } while ($parts); + + $definition = $this->getColumnDefinitions($subject)[$column] ?? new ColumnDefinition($column); + $this->getBehaviors($subject)->rewriteColumnDefinition($definition, implode('.', $relationPath)); + + return $definition; + } + + /** + * Qualify the given alias by the specified table name + * + * @param string $alias + * @param string $tableName + * + * @return string + */ + public function qualifyColumnAlias($alias, $tableName) + { + return $tableName . '_' . $alias; + } + + /** + * Qualify the given column by the specified table name + * + * @param string $column + * @param string $tableName + * + * @return string + */ + public function qualifyColumn($column, $tableName) + { + return $tableName . '.' . $column; + } + + /** + * Qualify the given columns by the specified model + * + * @param iterable $columns + * @param Model $model Leave null in case $columns is {@see Resolver::requireAndResolveColumns()} + * + * @return array + * + * @throws InvalidArgumentException If $columns is not iterable + * @throws InvalidArgumentException If $model is not passed and $columns is not a generator + */ + public function qualifyColumns($columns, Model $model = null) + { + $target = $model ?: $this->query->getModel(); + $targetAlias = $this->getAlias($target); + + if (! is_iterable($columns)) { + throw new InvalidArgumentException( + sprintf('$columns is not iterable, got %s instead', get_php_type($columns)) + ); + } + + $qualified = []; + foreach ($columns as $alias => $column) { + if (is_int($alias) && is_array($column)) { + // $columns is $this->requireAndResolveColumns() + list($target, $alias, $columnName) = $column; + $targetAlias = $this->getAlias($target); + + // Thanks to PHP 5.6 where `list` is evaluated from right to left. It will extract + // the values for `$target` and `$alias` then from the third argument (`$column`). + $column = $columnName; + } elseif ($target === null) { + throw new InvalidArgumentException( + 'Passing no model is only possible if $columns is a generator' + ); + } + + if ($column instanceof ResolvedExpression) { + $column->setColumns($this->qualifyColumns($column->getResolvedColumns())); + } elseif ($column instanceof ExpressionInterface) { + $column = clone $column; // The expression may be part of a model and those shouldn't change implicitly + $column->setColumns($this->qualifyColumns($column->getColumns(), $target)); + } else { + $column = $this->qualifyColumn($column, $targetAlias); + } + + $qualified[$alias] = $column; + } + + return $qualified; + } + + /** + * Qualify the given columns and aliases by the specified model + * + * @param iterable $columns + * @param Model $model Leave null in case $columns is {@see Resolver::requireAndResolveColumns()} + * @param bool $autoAlias Set an alias for columns which have none + * + * @return array + * + * @throws InvalidArgumentException If $columns is not iterable + * @throws InvalidArgumentException If $model is not passed and $columns is not a generator + */ + public function qualifyColumnsAndAliases($columns, Model $model = null, $autoAlias = true) + { + $target = $model ?: $this->query->getModel(); + $targetAlias = $this->getAlias($target); + + if (! is_iterable($columns)) { + throw new InvalidArgumentException( + sprintf('$columns is not iterable, got %s instead', get_php_type($columns)) + ); + } + + $qualified = []; + foreach ($columns as $alias => $column) { + if (is_int($alias) && is_array($column)) { + // $columns is $this->requireAndResolveColumns() + list($target, $alias, $columnName) = $column; + $targetAlias = $this->getAlias($target); + + // Thanks to PHP 5.6 where `list` is evaluated from right to left. It will extract + // the values for `$target` and `$alias` then from the third argument (`$column`). + $column = $columnName; + } elseif ($target === null) { + throw new InvalidArgumentException( + 'Passing no model is only possible if $columns is a generator' + ); + } + + if (is_int($alias)) { + if ($column instanceof AliasedExpression) { + $alias = $column->getAlias(); + } elseif ($autoAlias && ! $column instanceof ExpressionInterface) { + $alias = $this->qualifyColumnAlias($column, $targetAlias); + } + } elseif ($target !== $this->query->getModel()) { + if (strpos($alias, '.') !== false) { + // This is safe, because custom aliases won't be qualified + $alias = str_replace('.', '_', $alias); + } else { + $alias = $this->qualifyColumnAlias($alias, $targetAlias); + } + } + + if ($column instanceof ResolvedExpression) { + $column->setColumns($this->qualifyColumns($column->getResolvedColumns())); + } elseif ($column instanceof ExpressionInterface) { + $column = clone $column; // The expression may be part of a model and those shouldn't change implicitly + $column->setColumns($this->qualifyColumns($column->getColumns(), $target)); + } else { + $column = $this->qualifyColumn($column, $targetAlias); + } + + $qualified[$alias] = $column; + } + + return $qualified; + } + + /** + * Qualify the given path by the specified table name + * + * @param string $path + * @param string $tableName + * + * @return string + */ + public function qualifyPath($path, $tableName) + { + $segments = explode('.', $path, 2); + + if ($segments[0] !== $tableName) { + array_unshift($segments, $tableName); + } + + $path = implode('.', $segments); + + return $path; + } + + /** + * Get whether the given relation path points to a distinct entity + * + * @param string $path + * + * @return bool + */ + public function isDistinctRelation($path) + { + foreach ($this->resolveRelations($path) as $relation) { + if (! $relation->isOne()) { + return false; + } + } + + return true; + } + + /** + * Resolve the rightmost relation of the given path + * + * Also resolves all other relations. + * + * @param string $path + * @param Model $subject + * + * @return Relation + */ + public function resolveRelation($path, Model $subject = null) + { + $subject = $subject ?: $this->query->getModel(); + if (! $this->resolvedRelations->contains($subject) || ! isset($this->resolvedRelations[$subject][$path])) { + foreach ($this->resolveRelations($path, $subject) as $_) { + // run and exhaust generator + } + } + + return $this->resolvedRelations[$subject][$path]; + } + + /** + * Resolve all relations of the given path + * + * Traverses the entire path and yields the path travelled so far as key and the relation as value. + * + * @param string $path + * @param Model $subject + * + * @return Generator + * @throws InvalidArgumentException In case $path is not fully qualified + * @throws InvalidRelationException In case a relation is unknown + */ + public function resolveRelations($path, Model $subject = null) + { + $relations = explode('.', $path); + $subject = $subject ?: $this->query->getModel(); + + if ($relations[0] !== $subject->getTableAlias()) { + throw new InvalidArgumentException(sprintf( + 'Cannot resolve relation path "%s". Base table alias/name is missing.', + $path + )); + } + + $resolvedRelations = []; + if ($this->resolvedRelations->contains($subject)) { + $resolvedRelations = $this->resolvedRelations[$subject]; + } + + $target = $subject; + $pathBeingResolved = null; + $segments = [array_shift($relations)]; + while (! empty($relations)) { + $newPath = $this->getBehaviors($target) + ->rewritePath(join('.', $relations), join('.', $segments)); + if ($newPath !== null) { + $relations = explode('.', $newPath); + $pathBeingResolved = $path; + } + + $relationName = array_shift($relations); + $segments[] = $relationName; + $relationPath = join('.', $segments); + + if (isset($resolvedRelations[$relationPath])) { + $relation = $resolvedRelations[$relationPath]; + } else { + $targetRelations = $this->getRelations($target); + if (! $targetRelations->has($relationName)) { + throw new InvalidRelationException($relationName, $target); + } + + $relation = $targetRelations->get($relationName); + $relation->setSource($target); + + $resolvedRelations[$relationPath] = $relation; + + if ($relation instanceof BelongsToMany) { + $through = $relation->getThrough(); + $this->setAlias($through, join('_', array_merge( + array_slice($segments, 0, -1), + [$through->getTableAlias()] + ))); + } + + $this->setAlias($relation->getTarget(), join('_', $segments)); + } + + yield $relationPath => $relation; + + $target = $relation->getTarget(); + } + + if ($pathBeingResolved !== null) { + $resolvedRelations[$pathBeingResolved] = $relation; + } + + $this->resolvedRelations->attach($subject, $resolvedRelations); + } + + /** + * Require and resolve columns + * + * Related models will be automatically added for eager-loading. + * + * @param array $columns + * @param Model $model + * + * @return Generator + * + * @throws InvalidColumnException If a column does not exist + */ + public function requireAndResolveColumns(array $columns, Model $model = null) + { + $model = $model ?: $this->query->getModel(); + $tableName = $model->getTableAlias(); + + $baseTableColumns = []; + foreach ($columns as $alias => $column) { + $columnPath = &$column; + if ($column instanceof ExpressionInterface) { + $column = new ResolvedExpression( + $column, + $this->requireAndResolveColumns($column->getColumns(), $model) + ); + + if (is_int($alias)) { + // Scalar queries and such + yield [$model, $alias, $column]; + + continue; + } + + $columnPath = &$alias; + } elseif ($column === '*') { + yield [$model, $alias, $column]; + + continue; + } + + $dot = strrpos($columnPath, '.'); + + switch (true) { + /** @noinspection PhpMissingBreakStatementInspection */ + case $dot !== false: + $hydrationPath = substr($columnPath, 0, $dot); + $columnPath = substr($columnPath, $dot + 1); // Updates also $column or $alias + + if ($hydrationPath !== $tableName) { + $hydrationPath = $this->qualifyPath($hydrationPath, $tableName); + + $relations = new AppendIterator(); + $relations->append(new ArrayIterator([$tableName => null])); + $relations->append($this->resolveRelations($hydrationPath)); + foreach ($relations as $relationPath => $relation) { + if ($column instanceof ExpressionInterface) { + continue; + } + + if ($relationPath === $tableName) { + $subject = $model; + } else { + /** @var Relation $relation */ + $subject = $relation->getTarget(); + } + + $columnName = $columnPath; + if ($relationPath !== $hydrationPath) { + // It's still an intermediate relation, not the target + $columnName = substr($hydrationPath, strlen($relationPath) + 1) . ".$columnName"; + } + + $newColumn = $this->getBehaviors($subject)->rewriteColumn($columnName, $relationPath); + if ($newColumn !== null) { + if ($newColumn instanceof ExpressionInterface) { + $column = $newColumn; + $target = $subject; + break 2; // Expressions don't need to be *withed* and get no automatic alias either + } + + $column = $newColumn; + break; + } + } + + if (is_int($alias) && $relationPath !== $hydrationPath) { + // If the actual relation is resolved differently, + // ensure the hydration path is not an unexpected one + $alias = "$hydrationPath.$column"; + } + + $this->query->with($hydrationPath); + $target = $relation->getTarget(); + + break; + } + // Move to default + default: + $relationPath = null; + $target = $model; + + if (! $column instanceof ExpressionInterface) { + $column = $this->getBehaviors($target)->rewriteColumn($column) ?: $column; + } + + if (is_int($alias) && ! $column instanceof AliasedExpression) { + if (! isset($baseTableColumns[$columnPath])) { + $baseTableColumns[$columnPath] = true; + } else { + // Don't yield base table columns multiple times. + // Duplicate columns without an alias may lead to SQL errors + continue 2; + } + } + } + + if (! $column instanceof ExpressionInterface) { + $targetColumns = $target->getColumns(); + if (isset($targetColumns[$column])) { + // $column is actually an alias + $alias = is_string($alias) ? $alias : ($relationPath ? "$hydrationPath.$column" : $column); + $column = $targetColumns[$column]; + + if ($column instanceof ExpressionInterface) { + $qualifier = $relationPath ? "$hydrationPath." : ''; + + $column = new ResolvedExpression( + $column, + $this->requireAndResolveColumns(array_map(function ($c) use ($qualifier) { + return $qualifier . $c; + }, $column->getColumns()), $model) + ); + } + } + } + + if (! $column instanceof ExpressionInterface && ! $this->hasSelectableColumn($target, $columnPath)) { + throw new InvalidColumnException($columnPath, $target); + } + + yield [$target, $alias, $column]; + } + } + + /** + * Collect all selectable columns from the given model + * + * @param Model $subject + */ + protected function collectColumns(Model $subject) + { + // Don't fail if Model::getColumns() also contains the primary key columns + $columns = array_merge((array) $subject->getKeyName(), (array) $subject->getColumns()); + + $this->selectColumns->attach($subject, $columns); + + $selectable = []; + + foreach ($columns as $alias => $column) { + if (is_string($alias)) { + $selectable[$alias] = true; + } + + if (is_string($column)) { + $selectable[$column] = true; + } + } + + $this->selectableColumns->attach($subject, $selectable); + } + + /** + * Collect all meta data from the given model and its direct relations + * + * @param Model $subject + * + * @return array + */ + protected function collectMetaData(Model $subject) + { + $definitions = []; + foreach ($subject->getColumnDefinitions() as $name => $data) { + if ($data instanceof ColumnDefinition) { + $definition = $data; + } else { + if (is_string($data)) { + $data = ['name' => $name, 'label' => $data]; + } elseif (! isset($data[$name])) { + $data['name'] = $name; + } + + $definition = ColumnDefinition::fromArray($data); + } + + if (is_string($name) && $definition->getName() !== $name) { + throw new LogicException(sprintf( + 'Model %s provides a column definition with a different name (%s) than the index (%s)', + get_class($subject), + $definition->getName(), + $name + )); + } + + $definitions[$name] = $definition; + } + + return $definitions; + } +} diff --git a/vendor/ipl/orm/src/ResultSet.php b/vendor/ipl/orm/src/ResultSet.php new file mode 100644 index 00000000..05117a5c --- /dev/null +++ b/vendor/ipl/orm/src/ResultSet.php @@ -0,0 +1,146 @@ +cache = new ArrayIterator(); + $this->generator = $this->yieldTraversable($traversable); + $this->limit = $limit; + } + + /** + * Create a new result set from the given query + * + * @param Query $query + * + * @return static + */ + public static function fromQuery(Query $query) + { + return new static($query->yieldResults(), $query->getLimit()); + } + + /** + * Do not cache query result + * + * ResultSet instance can only be iterated once + * + * @return $this + */ + public function disableCache() + { + $this->isCacheDisabled = true; + + return $this; + } + + public function hasMore() + { + return $this->generator->valid(); + } + + public function hasResult() + { + return $this->generator->valid(); + } + + #[\ReturnTypeWillChange] + public function current() + { + if ($this->position === null) { + $this->advance(); + } + + return $this->isCacheDisabled ? $this->generator->current() : $this->cache->current(); + } + + public function next(): void + { + if (! $this->isCacheDisabled) { + $this->cache->next(); + } + + if ($this->isCacheDisabled || ! $this->cache->valid()) { + $this->generator->next(); + $this->advance(); + } else { + $this->position += 1; + } + } + + public function key(): int + { + if ($this->position === null) { + $this->advance(); + } + + return $this->isCacheDisabled ? $this->generator->key() : $this->cache->key(); + } + + public function valid(): bool + { + if ($this->limit !== null && $this->position === $this->limit) { + return false; + } + + return $this->cache->valid() || $this->generator->valid(); + } + + public function rewind(): void + { + if (! $this->isCacheDisabled) { + $this->cache->rewind(); + } + + if ($this->position === null) { + $this->advance(); + } else { + $this->position = 0; + } + } + + protected function advance() + { + if (! $this->generator->valid()) { + return; + } + + if (! $this->isCacheDisabled) { + $this->cache[$this->generator->key()] = $this->generator->current(); + + // Only required on PHP 5.6, 7+ does it automatically + $this->cache->seek($this->generator->key()); + } + + if ($this->position === null) { + $this->position = 0; + } else { + $this->position += 1; + } + } + + protected function yieldTraversable(Traversable $traversable) + { + foreach ($traversable as $key => $value) { + yield $key => $value; + } + } +} diff --git a/vendor/ipl/orm/src/UnionModel.php b/vendor/ipl/orm/src/UnionModel.php new file mode 100644 index 00000000..5373bb9b --- /dev/null +++ b/vendor/ipl/orm/src/UnionModel.php @@ -0,0 +1,29 @@ +setDb($db) + ->setModel(new static()); + } + + /** + * Get the UNION models and columns + * + * @return array + */ + abstract public function getUnions(); +} diff --git a/vendor/ipl/orm/src/UnionQuery.php b/vendor/ipl/orm/src/UnionQuery.php new file mode 100644 index 00000000..1229ff2b --- /dev/null +++ b/vendor/ipl/orm/src/UnionQuery.php @@ -0,0 +1,59 @@ +unions === null) { + $this->unions = []; + + foreach ($this->getModel()->getUnions() as list($target, $relations, $columns)) { + $query = (new Query()) + ->setDb($this->getDb()) + ->setModel(new $target()) + ->columns($columns) + ->disableDefaultSort() + ->with($relations); + + $this->unions[] = $query; + } + } + + return $this->unions; + } + + public function getSelectBase() + { + if ($this->selectBase === null) { + $this->selectBase = new Select(); + } + + $union = new Select(); + + foreach ($this->getUnions() as $query) { + $select = $query->assembleSelect(); + $columns = $select->getColumns(); + $select->resetColumns(); + ksort($columns); + $select->columns($columns); + + $union->unionAll($select); + } + + $this->selectBase->from([$this->getModel()->getTableName() => $union]); + + return $this->selectBase; + } +} diff --git a/vendor/ipl/scheduler/composer.json b/vendor/ipl/scheduler/composer.json new file mode 100644 index 00000000..7b18ff64 --- /dev/null +++ b/vendor/ipl/scheduler/composer.json @@ -0,0 +1,36 @@ +{ + "name": "ipl/scheduler", + "type": "library", + "description": "Icinga PHP Library - Tasks scheduler", + "keywords": ["task", "job", "scheduler", "cron"], + "homepage": "https://github.com/Icinga/ipl-scheduler", + "license": "MIT", + "config": { + "sort-packages": true + }, + "require": { + "php": ">=7.2", + "ext-json": "*", + "dragonmantank/cron-expression": "^3", + "psr/log": "^1", + "ramsey/uuid": "^3", + "react/event-loop": "^1", + "react/promise": "^2", + "simshaun/recurr": "^5", + "ipl/stdlib": ">=0.12.0" + }, + "suggest": { + "ext-ev": "Improves performance, efficiency and avoids system limitations. Highly recommended! (See https://www.php.net/manual/en/intro.ev.php for details)" + }, + "autoload": { + "files": ["src/register_cron_aliases.php"], + "psr-4": { + "ipl\\Scheduler\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "ipl\\Tests\\Scheduler\\": "tests" + } + } +} diff --git a/vendor/ipl/scheduler/src/Common/Promises.php b/vendor/ipl/scheduler/src/Common/Promises.php new file mode 100644 index 00000000..503fdf26 --- /dev/null +++ b/vendor/ipl/scheduler/src/Common/Promises.php @@ -0,0 +1,110 @@ +addPromise($uuid, $promise); + * ``` + * + * @param UuidInterface $uuid + * @param PromiseInterface $promise + * + * @return $this + */ + protected function addPromise(UuidInterface $uuid, PromiseInterface $promise): self + { + if (! $this->promises->contains($uuid)) { + $this->promises->attach($uuid, new ArrayObject()); + } + + $this->promises[$uuid][] = $promise; + + return $this; + } + + /** + * Remove the given promise for the specified UUID + * + * **Example Usage:** + * + * ```php + * $promise->always(function () use ($uuid, $promise) { + * $promises->removePromise($uuid, $promise); + * }) + * ``` + * + * @param UuidInterface $uuid + * @param PromiseInterface $promise + * + * @return $this + * + * @throws InvalidArgumentException If the given UUID doesn't have any registered promises or when the specified + * UUID promises doesn't contain the provided promise + */ + protected function removePromise(UuidInterface $uuid, PromiseInterface $promise): self + { + if (! $this->promises->contains($uuid)) { + throw new InvalidArgumentException( + sprintf('There are no registered promises for UUID %s', $uuid->toString()) + ); + } + + foreach ($this->promises[$uuid] as $k => $v) { + if ($v === $promise) { + unset($this->promises[$uuid][$k]); + + return $this; + } + } + + throw new InvalidArgumentException( + sprintf('There is no such promise for UUID %s', $uuid->toString()) + ); + } + + /** + * Detach and return promises for the given UUID, if any + * + * **Example Usage:** + * + * ```php + * foreach ($promises->detachPromises($uuid) as $promise) { + * $promise->cancel(); + * } + * ``` + * + * @param UuidInterface $uuid + * + * @return PromiseInterface[] + */ + protected function detachPromises(UuidInterface $uuid): array + { + if (! $this->promises->contains($uuid)) { + return []; + } + + /** @var ArrayObject $promises */ + $promises = $this->promises[$uuid]; + + $this->promises->detach($uuid); + + return $promises->getArrayCopy(); + } +} diff --git a/vendor/ipl/scheduler/src/Common/TaskProperties.php b/vendor/ipl/scheduler/src/Common/TaskProperties.php new file mode 100644 index 00000000..4ab65e2f --- /dev/null +++ b/vendor/ipl/scheduler/src/Common/TaskProperties.php @@ -0,0 +1,83 @@ +description = $desc; + + return $this; + } + + public function getDescription(): ?string + { + return $this->description; + } + + public function getName(): string + { + if (! $this->name) { + throw new LogicException('Task name must not be null'); + } + + return $this->name; + } + + /** + * Set the name of this Task + * + * @param string $name + * + * @return $this + */ + public function setName(string $name): self + { + $this->name = $name; + + return $this; + } + + public function getUuid(): UuidInterface + { + if (! $this->uuid) { + throw new LogicException('Task UUID must not be null'); + } + + return $this->uuid; + } + + /** + * Set the UUID of this task + * + * @param UuidInterface $uuid + * + * @return $this + */ + public function setUuid(UuidInterface $uuid): self + { + $this->uuid = $uuid; + + return $this; + } +} diff --git a/vendor/ipl/scheduler/src/Common/Timers.php b/vendor/ipl/scheduler/src/Common/Timers.php new file mode 100644 index 00000000..ee923ae5 --- /dev/null +++ b/vendor/ipl/scheduler/src/Common/Timers.php @@ -0,0 +1,60 @@ +attachTimer($uuid, Loop::addTimer($interval, $callback)); + * ``` + * + * @param UuidInterface $uuid + * @param TimerInterface $timer + * + * @return $this + */ + protected function attachTimer(UuidInterface $uuid, TimerInterface $timer): self + { + $this->timers->attach($uuid, $timer); + + return $this; + } + + /** + * Detach and return the timer for the given UUID, if any + * + * **Example Usage:** + * + * ```php + * Loop::cancelTimer($timers->detachTimer($uuid)); + * ``` + * + * @param UuidInterface $uuid + * + * @return ?TimerInterface + */ + protected function detachTimer(UuidInterface $uuid): ?TimerInterface + { + if (! $this->timers->contains($uuid)) { + return null; + } + + $timer = $this->timers->offsetGet($uuid); + + $this->timers->detach($uuid); + + return $timer; + } +} diff --git a/vendor/ipl/scheduler/src/Contract/Frequency.php b/vendor/ipl/scheduler/src/Contract/Frequency.php new file mode 100644 index 00000000..be66bd65 --- /dev/null +++ b/vendor/ipl/scheduler/src/Contract/Frequency.php @@ -0,0 +1,62 @@ +cron = new CronExpression($expression); + $this->expression = $expression; + } + + public function isDue(DateTimeInterface $dateTime): bool + { + if ($this->isExpired($dateTime) || $dateTime < $this->start) { + return false; + } + + return $this->cron->isDue($dateTime); + } + + public function getNextDue(DateTimeInterface $dateTime): DateTimeInterface + { + if ($this->isExpired($dateTime)) { + return $this->end; + } + + if ($dateTime < $this->start) { + return $this->start; + } + + return $this->cron->getNextRunDate($dateTime); + } + + public function isExpired(DateTimeInterface $dateTime): bool + { + return $this->end !== null && $this->end < $dateTime; + } + + public function getStart(): ?DateTimeInterface + { + return $this->start; + } + + public function getEnd(): ?DateTimeInterface + { + return $this->end; + } + + /** + * Get the configured cron expression + * + * @return string + */ + public function getExpression(): string + { + return $this->expression; + } + + /** + * Set the start time of this frequency + * + * @param DateTimeInterface $start + * + * @return $this + */ + public function startAt(DateTimeInterface $start): self + { + $this->start = clone $start; + + return $this; + } + + /** + * Set the end time of this frequency + * + * @param DateTimeInterface $end + * + * @return $this + */ + public function endAt(DateTimeInterface $end): Frequency + { + $this->end = clone $end; + + return $this; + } + + /** + * Get the given part of the underlying cron expression + * + * @param int $part One of the classes `PART_*` constants + * + * @return string + * + * @throws InvalidArgumentException If the given part is invalid + */ + public function getPart(int $part): string + { + $value = $this->cron->getExpression($part); + if ($value === null) { + throw new InvalidArgumentException(sprintf('Invalid expression part specified: %d', $part)); + } + + return $value; + } + + /** + * Get the parts of the underlying cron expression as an array + * + * @return string[] + */ + public function getParts(): array + { + return $this->cron->getParts(); + } + + /** + * Get whether the given cron expression is valid + * + * @param string $expression + * + * @return bool + */ + public static function isValid(string $expression): bool + { + return CronExpression::isValidExpression($expression); + } + + public static function fromJson(string $json): Frequency + { + $data = json_decode($json, true); + + $self = new static($data['expression']); + if (isset($data['start'])) { + $self->startAt(new DateTime($data['start'])); + } + + if (isset($data['end'])) { + $self->endAt(new DateTime($data['end'])); + } + + return $self; + } + + public function jsonSerialize(): array + { + $data = ['expression' => $this->getExpression()]; + if ($this->start) { + $data['start'] = $this->start->format(static::SERIALIZED_DATETIME_FORMAT); + } + + if ($this->end) { + $data['end'] = $this->end->format(static::SERIALIZED_DATETIME_FORMAT); + } + + return $data; + } +} diff --git a/vendor/ipl/scheduler/src/OneOff.php b/vendor/ipl/scheduler/src/OneOff.php new file mode 100644 index 00000000..1c99e40a --- /dev/null +++ b/vendor/ipl/scheduler/src/OneOff.php @@ -0,0 +1,56 @@ +dateTime = clone $dateTime; + } + + public function isDue(DateTimeInterface $dateTime): bool + { + return ! $this->isExpired($dateTime) && $this->dateTime == $dateTime; + } + + public function getNextDue(DateTimeInterface $dateTime): DateTimeInterface + { + return $this->dateTime; + } + + public function isExpired(DateTimeInterface $dateTime): bool + { + return $this->dateTime < $dateTime; + } + + public function getStart(): ?DateTimeInterface + { + return $this->dateTime; + } + + public function getEnd(): ?DateTimeInterface + { + return $this->getStart(); + } + + public static function fromJson(string $json): Frequency + { + $data = json_decode($json, true); + + return new static(new DateTime($data)); + } + + public function jsonSerialize(): string + { + return $this->dateTime->format(static::SERIALIZED_DATETIME_FORMAT); + } +} diff --git a/vendor/ipl/scheduler/src/RRule.php b/vendor/ipl/scheduler/src/RRule.php new file mode 100644 index 00000000..1723bfa7 --- /dev/null +++ b/vendor/ipl/scheduler/src/RRule.php @@ -0,0 +1,308 @@ +rrule = new RecurrRule($rule); + $this->frequency = $this->rrule->getFreqAsText(); + $this->transformerConfig = new ArrayTransformerConfig(); + $this->transformerConfig->setVirtualLimit(self::DEFAULT_LIMIT); + + // If the run day isn't set explicitly, we can enable the last day of month + // fix, so that it doesn't skip some months which doesn't have e.g. 29,30,31 days. + if ( + $this->getFrequency() === static::MONTHLY + && ! $this->rrule->getByDay() + && ! $this->rrule->getByMonthDay() + ) { + $this->transformerConfig->enableLastDayOfMonthFix(); + } + + $this->transformer = new ArrayTransformer($this->transformerConfig); + } + + /** + * Get an RRule instance from the provided frequency + * + * @param string $frequency + * + * @return $this + */ + public static function fromFrequency(string $frequency): self + { + $frequencies = array_flip([ + static::MINUTELY, + static::HOURLY, + static::DAILY, + static::WEEKLY, + static::MONTHLY, + static::QUARTERLY, + static::YEARLY + ]); + + if (! isset($frequencies[$frequency])) { + throw new InvalidArgumentException(sprintf('Unknown frequency provided: %s', $frequency)); + } + + if ($frequency === static::QUARTERLY) { + $repeat = static::MONTHLY; + $rule = "FREQ=$repeat;INTERVAL=3"; + } else { + $rule = "FREQ=$frequency"; + } + + $self = new static($rule); + $self->frequency = $frequency; + + return $self; + } + + public static function fromJson(string $json): Frequency + { + $data = json_decode($json); + $self = new static($data->rrule); + $self->frequency = $data->frequency; + + return $self; + } + + public function isDue(DateTimeInterface $dateTime): bool + { + if ($dateTime < $this->rrule->getStartDate() || $this->isExpired($dateTime)) { + return false; + } + + $nextDue = $this->getNextRecurrences($dateTime); + if (! $nextDue->valid()) { + return false; + } + + return $nextDue->current() == $dateTime; + } + + public function getNextDue(DateTimeInterface $dateTime): DateTimeInterface + { + if ($this->isExpired($dateTime)) { + return $this->getEnd(); + } + + $nextDue = $this->getNextRecurrences($dateTime, 1, false); + if (! $nextDue->valid()) { + return $dateTime; + } + + return $nextDue->current(); + } + + public function isExpired(DateTimeInterface $dateTime): bool + { + if ($this->rrule->repeatsIndefinitely()) { + return false; + } + + return $this->getEnd() !== null && $this->getEnd() < $dateTime; + } + + /** + * Set the start time of this frequency + * + * The given datetime will be cloned and microseconds removed since iCalendar datetimes only work to the second. + * + * @param DateTimeInterface $start + * + * @return $this + */ + public function startAt(DateTimeInterface $start): self + { + $startDate = clone $start; + // When the start time contains microseconds, the first recurrence will always be skipped, as + // the transformer operates only up to seconds level. See also the upstream issue #155 + $startDate->setTime($start->format('H'), $start->format('i'), $start->format('s')); + + $this->rrule->setStartDate($startDate, true); + + return $this; + } + + public function getStart(): ?DateTimeInterface + { + return $this->rrule->getStartDate(); + } + + /** + * Set the end time of this frequency + * + * The given datetime will be cloned and microseconds removed since iCalendar datetimes only work to the second. + * + * @param DateTimeInterface $end + * + * @return $this + */ + public function endAt(DateTimeInterface $end): self + { + $end = clone $end; + $end->setTime($end->format('H'), $end->format('i'), $end->format('s')); + + $this->rrule->setEndDate($end); + + return $this; + } + + public function getEnd(): ?DateTimeInterface + { + return $this->rrule->getEndDate() ?? $this->rrule->getUntil(); + } + + /** + * Get the frequency of this rule + * + * @return string + */ + public function getFrequency(): string + { + return $this->frequency; + } + + /** + * Get a set of recurrences relative to the given time + * + * @param DateTimeInterface $dateTime + * @param int $limit Limit the recurrences to be generated to the given value + * @param bool $include Whether to include the passed time in the result set + * + * @return Generator + */ + public function getNextRecurrences( + DateTimeInterface $dateTime, + int $limit = self::DEFAULT_LIMIT, + bool $include = true + ): Generator { + $resetTransformerConfig = function (int $limit = self::DEFAULT_LIMIT): void { + $this->transformerConfig->setVirtualLimit($limit); + $this->transformer->setConfig($this->transformerConfig); + }; + + if ($limit > self::DEFAULT_LIMIT) { + $resetTransformerConfig($limit); + } + + $constraint = new AfterConstraint($dateTime, $include); + if (! $this->rrule->repeatsIndefinitely()) { + // When accessing this method externally (not by using `getNextDue()`), the transformer may + // generate recurrences beyond the configured end time. + $constraint = new BetweenConstraint($dateTime, $this->getEnd(), $include); + } + + // Setting the start date to a date time smaller than now causes the underlying library + // not to generate any recurrences when using the regular frequencies such as `MINUTELY` etc. + // and the `$countConstraintFailures` is set to true. We need also to tell the transformer + // not to count the recurrences that fail the constraint's test! + $recurrences = $this->transformer->transform($this->rrule, $constraint, false); + foreach ($recurrences as $recurrence) { + yield $recurrence->getStart(); + } + + if ($limit > self::DEFAULT_LIMIT) { + $resetTransformerConfig(); + } + } + + public function jsonSerialize(): array + { + return [ + 'rrule' => $this->rrule->getString(), + 'frequency' => $this->frequency + ]; + } + + /** + * Redirect all public method calls to the underlying rrule object + * + * @param string $methodName + * @param array $args + * + * @return mixed + * + * @throws BadMethodCallException If the given method doesn't exist or when setter method is called + */ + public function __call(string $methodName, array $args) + { + if (! method_exists($this->rrule, $methodName)) { + throw new BadMethodCallException( + sprintf('Call to undefined method %s::%s()', get_php_type($this->rrule), $methodName) + ); + } + + if (strtolower(substr($methodName, 0, 3)) !== 'get') { + throw new BadMethodCallException( + sprintf('Dynamic method %s is not supported. Only getters (get*) are', $methodName) + ); + } + + return call_user_func_array([$this->rrule, $methodName], $args); + } +} diff --git a/vendor/ipl/scheduler/src/Scheduler.php b/vendor/ipl/scheduler/src/Scheduler.php new file mode 100644 index 00000000..8146383e --- /dev/null +++ b/vendor/ipl/scheduler/src/Scheduler.php @@ -0,0 +1,322 @@ +on($scheduler::ON_TASK_CANCEL, function (Task $task, array $_) use ($logger) { + * $logger->info(sprintf('Task %s cancelled', $task->getName())); + * }); + * ``` + */ + public const ON_TASK_CANCEL = 'task-cancel'; + + /** + * Event raised when an operation of a {@link Task task} is done + * + * The task and the operation result are passed as parameters to the event callbacks. + * + * **Example usage:** + * + * ```php + * $scheduler->on($scheduler::ON_TASK_DONE, function (Task $task, $result) use ($logger) { + * $logger->info(sprintf('Operation of task %s done: %s', $task->getName(), $result)); + * }); + * ``` + */ + public const ON_TASK_DONE = 'task-done'; + + /** + * Event raised when an operation of a {@link Task task} failed + * + * The task and the {@link Throwable reason} why the operation failed + * are passed as parameters to the event callbacks. + * + * **Example usage:** + * + * ```php + * $scheduler->on($scheduler::ON_TASK_FAILED, function (Task $task, Throwable $e) use ($logger) { + * $logger->error( + * sprintf('Operation of task %s failed: %s', $task->getName(), $e), + * ['exception' => $e] + * ); + * }); + * ``` + */ + public const ON_TASK_FAILED = 'task-failed'; + + /** + * Event raised when a {@link Task task} operation is scheduled + * + * The task and the {@link DateTime time} when it should run + * are passed as parameters to the event callbacks. + * + * **Example usage:** + * + * ```php + * $scheduler->on($scheduler::ON_TASK_SCHEDULED, function (Task $task, DateTime $dateTime) use ($logger) { + * $logger->info(sprintf( + * 'Scheduling task %s to run at %s', + * $task->getName(), + * IntlDateFormatter::formatObject($dateTime) + * )); + * }); + * ``` + */ + public const ON_TASK_SCHEDULED = 'task-scheduled'; + + /** + * Event raised upon operation of a {@link Task task} + * + * The task and the possibly not yet completed result of the operation as a {@link ExtendedPromiseInterface promise} + * are passed as parameters to the event callbacks. + * + * **Example usage:** + * + * ```php + * $scheduler->on($scheduler::ON_TASK_OPERATION, function (Task $task, ExtendedPromiseInterface $_) use ($logger) { + * $logger->info(sprintf('Task %s operating', $task->getName())); + * }); + * ``` + */ + public const ON_TASK_RUN = 'task-run'; + + /** + * Event raised when a {@see Task task} is expired + * + * The task and the {@see DateTime expire time} are passed as parameters to the event callbacks. + * Note that the expiration time is the first time that is considered expired based on the frequency + * of the task and can be later than the specified end time. + * + * **Example usage:** + * + * ```php + * $scheduler->on(Scheduler::ON_TASK_EXPIRED, function (Task $task, DateTime $dateTime) use ($logger) { + * $logger->info(sprintf('Removing expired task %s at %s', $task->getName(), $dateTime->format('Y-m-d H:i:s'))); + * }); + * ``` + */ + public const ON_TASK_EXPIRED = 'task-expired'; + + /** @var SplObjectStorage The scheduled tasks of this scheduler */ + protected $tasks; + + public function __construct() + { + $this->tasks = new SplObjectStorage(); + + $this->promises = new SplObjectStorage(); + $this->timers = new SplObjectStorage(); + + $this->init(); + } + + /** + * Initialize this scheduler + */ + protected function init(): void + { + } + + /** + * Remove and cancel the given task + * + * @param Task $task + * + * @return $this + * + * @throws InvalidArgumentException If the given task isn't scheduled + */ + public function remove(Task $task): self + { + if (! $this->hasTask($task)) { + throw new InvalidArgumentException(sprintf('Task %s not scheduled', $task->getName())); + } + + $this->cancelTask($task); + + $this->tasks->detach($task); + + return $this; + } + + /** + * Remove and cancel all tasks + * + * @return $this + */ + public function removeTasks(): self + { + foreach ($this->tasks as $task) { + $this->cancelTask($task); + } + + $this->tasks = new SplObjectStorage(); + + return $this; + } + + /** + * Get whether the specified task is scheduled + * + * @param Task $task + * + * @return bool + */ + public function hasTask(Task $task): bool + { + return $this->tasks->contains($task); + } + + /** + * Schedule the given task based on the specified frequency + * + * @param Task $task + * @param Frequency $frequency + * + * @return $this + */ + public function schedule(Task $task, Frequency $frequency): self + { + $now = new DateTime(); + if ($frequency->isExpired($now)) { + return $this; + } + + if ($frequency->isDue($now)) { + Loop::futureTick(function () use ($task): void { + $promise = $this->runTask($task); + $this->emit(static::ON_TASK_RUN, [$task, $promise]); + }); + $this->emit(static::ON_TASK_SCHEDULED, [$task, $now]); + + if ($frequency instanceof OneOff) { + return $this; + } + } + + $loop = function () use (&$loop, $task, $frequency): void { + $promise = $this->runTask($task); + $this->emit(static::ON_TASK_RUN, [$task, $promise]); + + $now = new DateTime(); + $nextDue = $frequency->getNextDue($now); + if ($frequency instanceof OneOff || $frequency->isExpired($nextDue)) { + $removeTask = function () use ($task, $nextDue): void { + $this->remove($task); + $this->emit(static::ON_TASK_EXPIRED, [$task, $nextDue]); + }; + + if ($this->promises->contains($task->getUuid())) { + $pendingPromises = (array) $this->promises->offsetGet($task->getUuid()); + Promise\all($pendingPromises)->always($removeTask); + } else { + $removeTask(); + } + + return; + } + + $this->attachTimer( + $task->getUuid(), + Loop::addTimer($nextDue->getTimestamp() - $now->getTimestamp(), $loop) + ); + $this->emit(static::ON_TASK_SCHEDULED, [$task, $nextDue]); + }; + + $nextDue = $frequency->getNextDue($now); + $this->attachTimer( + $task->getUuid(), + Loop::addTimer($nextDue->getTimestamp() - $now->getTimestamp(), $loop) + ); + $this->emit(static::ON_TASK_SCHEDULED, [$task, $nextDue]); + + $this->tasks->attach($task); + + return $this; + } + + public function isValidEvent($event) + { + $events = array_flip([ + static::ON_TASK_CANCEL, + static::ON_TASK_DONE, + static::ON_TASK_EXPIRED, + static::ON_TASK_FAILED, + static::ON_TASK_RUN, + static::ON_TASK_SCHEDULED + ]); + + return isset($events[$event]); + } + + /** + * Cancel the timer of the task and all pending operations + * + * @param Task $task + */ + protected function cancelTask(Task $task): void + { + Loop::cancelTimer($this->detachTimer($task->getUuid())); + + $promises = $this->detachPromises($task->getUuid()); + if (! empty($promises)) { + /** @var ExtendedPromiseInterface[] $promises */ + foreach ($promises as $promise) { + $promise->cancel(); + } + $this->emit(self::ON_TASK_CANCEL, [$task, $promises]); + } + } + + /** + * Runs the given task immediately and registers handlers for the returned promise + * + * @param Task $task + * + * @return ExtendedPromiseInterface + */ + protected function runTask(Task $task): ExtendedPromiseInterface + { + $promise = $task->run(); + $this->addPromise($task->getUuid(), $promise); + + return $promise->then( + function ($result) use ($task): void { + $this->emit(self::ON_TASK_DONE, [$task, $result]); + }, + function (Throwable $reason) use ($task): void { + $this->emit(self::ON_TASK_FAILED, [$task, $reason]); + } + )->always(function () use ($task, $promise): void { + // Unregister the promise without canceling it as it's already resolved + $this->removePromise($task->getUuid(), $promise); + }); + } +} diff --git a/vendor/ipl/scheduler/src/register_cron_aliases.php b/vendor/ipl/scheduler/src/register_cron_aliases.php new file mode 100644 index 00000000..2987248a --- /dev/null +++ b/vendor/ipl/scheduler/src/register_cron_aliases.php @@ -0,0 +1,11 @@ +=7.2", + "ext-pdo": "*", + "ipl/stdlib": ">=0.12.0" + }, + "autoload": { + "psr-4": { + "ipl\\Sql\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "ipl\\Tests\\Sql\\": "tests" + } + }, + "scripts": { + "test": "vendor/bin/phpunit" + } +} diff --git a/vendor/ipl/sql/src/Adapter/BaseAdapter.php b/vendor/ipl/sql/src/Adapter/BaseAdapter.php new file mode 100644 index 00000000..97bfca4b --- /dev/null +++ b/vendor/ipl/sql/src/Adapter/BaseAdapter.php @@ -0,0 +1,117 @@ + PDO::CASE_NATURAL, + PDO::ATTR_EMULATE_PREPARES => false, + PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION, + PDO::ATTR_ORACLE_NULLS => PDO::NULL_NATURAL, + PDO::ATTR_STRINGIFY_FETCHES => false + ]; + + public function getDsn(Config $config) + { + $dsn = "{$config->db}:"; + + $parts = []; + + foreach (['host', 'dbname', 'port'] as $part) { + if (! empty($config->$part)) { + $parts[] = "{$part}={$config->$part}"; + } + } + + return $dsn . implode(';', $parts); + } + + public function getOptions(Config $config) + { + if (is_array($config->options)) { + return $config->options + $this->options; + } + + return $this->options; + } + + public function setClientTimezone(Connection $db) + { + } + + public function quoteIdentifier($identifiers) + { + if (is_string($identifiers)) { + $identifiers = explode('.', $identifiers); + } + + foreach ($identifiers as $i => $identifier) { + if ($identifier === '*') { + continue; + } + + $identifiers[$i] = $this->quoteCharacter[0] + . str_replace($this->quoteCharacter[0], $this->escapeCharacter, $identifier) + . $this->quoteCharacter[1]; + } + + return implode('.', $identifiers); + } + + public function registerQueryBuilderCallbacks(QueryBuilder $queryBuilder) + { + $queryBuilder->on(QueryBuilder::ON_ASSEMBLE_SELECT, function (Select $select): void { + if ($select->hasOrderBy()) { + foreach ($select->getOrderBy() as list($_, $direction)) { + switch (strtolower($direction ?? '')) { + case '': + case 'asc': + case 'desc': + break; + default: + throw new UnexpectedValueException( + sprintf('Invalid direction "%s" in ORDER BY', $direction) + ); + } + } + } + }); + } + + protected function getTimezoneOffset() + { + $tz = new DateTimeZone(date_default_timezone_get()); + $offset = $tz->getOffset(new DateTime()); + $prefix = $offset >= 0 ? '+' : '-'; + $offset = abs($offset); + + $hours = (int) floor($offset / 3600); + $minutes = (int) floor(($offset % 3600) / 60); + + return sprintf('%s%d:%02d', $prefix, $hours, $minutes); + } +} diff --git a/vendor/ipl/sql/src/Adapter/Mssql.php b/vendor/ipl/sql/src/Adapter/Mssql.php new file mode 100644 index 00000000..c1c4e1c0 --- /dev/null +++ b/vendor/ipl/sql/src/Adapter/Mssql.php @@ -0,0 +1,78 @@ +host}"; + + if (! empty($config->port)) { + if ($isSqlSrv || strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { + $seperator = ','; + } else { + $seperator = ':'; + } + + $dsn .= "{$seperator}{$config->port}"; + } + + $dsn .= ";{$dbOption}={$config->dbname}"; + + if (! empty($config->charset) && ! $isSqlSrv) { + $dsn .= ";charset={$config->charset}"; + } + + if (isset($config->use_ssl) && $isSqlSrv) { + $dsn .= ';Encrypt=' . ($config->use_ssl ? 'true' : 'false'); + } + + if (isset($config->ssl_do_not_verify_server_cert) && $isSqlSrv) { + $dsn .= ';TrustServerCertificate=' . ($config->ssl_do_not_verify_server_cert ? 'true' : 'false'); + } + + return $dsn; + } + + public function registerQueryBuilderCallbacks(QueryBuilder $queryBuilder) + { + parent::registerQueryBuilderCallbacks($queryBuilder); + + $queryBuilder->on(QueryBuilder::ON_ASSEMBLE_SELECT, function (Select $select) { + if ( + ($select->hasLimit() || $select->hasOffset()) + && ! $select->hasOrderBy() + ) { + $select->orderBy(1); + } + }); + } +} diff --git a/vendor/ipl/sql/src/Adapter/Mysql.php b/vendor/ipl/sql/src/Adapter/Mysql.php new file mode 100644 index 00000000..b9a18c5b --- /dev/null +++ b/vendor/ipl/sql/src/Adapter/Mysql.php @@ -0,0 +1,57 @@ +exec('SET time_zone = ' . $db->quote($this->getTimezoneOffset())); + + return $this; + } + + public function getOptions(Config $config) + { + $options = parent::getOptions($config); + + if (! empty($config->use_ssl)) { + if (! empty($config->ssl_key)) { + $options[PDO::MYSQL_ATTR_SSL_KEY] = $config->ssl_key; + } + + if (! empty($config->ssl_cert)) { + $options[PDO::MYSQL_ATTR_SSL_CERT] = $config->ssl_cert; + } + + if (! empty($config->ssl_ca)) { + $options[PDO::MYSQL_ATTR_SSL_CA] = $config->ssl_ca; + } + + if (! empty($config->ssl_capath)) { + $options[PDO::MYSQL_ATTR_SSL_CAPATH] = $config->ssl_capath; + } + + if (! empty($config->ssl_cipher)) { + $options[PDO::MYSQL_ATTR_SSL_CIPHER] = $config->ssl_cipher; + } + + if ( + defined('PDO::MYSQL_ATTR_SSL_VERIFY_SERVER_CERT') + && ! empty($config->ssl_do_not_verify_server_cert) + ) { + $options[PDO::MYSQL_ATTR_SSL_VERIFY_SERVER_CERT] = false; + } + } + + return $options; + } +} diff --git a/vendor/ipl/sql/src/Adapter/Oracle.php b/vendor/ipl/sql/src/Adapter/Oracle.php new file mode 100644 index 00000000..de0aee5f --- /dev/null +++ b/vendor/ipl/sql/src/Adapter/Oracle.php @@ -0,0 +1,39 @@ +host)) { + $dsn .= "//{$config->host}"; + + if (! empty($config->port)) { + $dsn .= ":{$config->port}/"; + } + + $dsn .= '/'; + } + + $dsn .= $config->dbname; + + if (! empty($config->charset)) { + $dsn .= ";charset={$config->charset}"; + } + + return $dsn; + } + + public function setClientTimezone(Connection $db) + { + $db->prepexec('ALTER SESSION SET TIME_ZONE = ?', [$this->getTimezoneOffset()]); + + return $this; + } +} diff --git a/vendor/ipl/sql/src/Adapter/Pgsql.php b/vendor/ipl/sql/src/Adapter/Pgsql.php new file mode 100644 index 00000000..18bf15dc --- /dev/null +++ b/vendor/ipl/sql/src/Adapter/Pgsql.php @@ -0,0 +1,15 @@ +exec(sprintf('SET TIME ZONE INTERVAL %s HOUR TO MINUTE', $db->quote($this->getTimezoneOffset()))); + + return $this; + } +} diff --git a/vendor/ipl/sql/src/Adapter/Sqlite.php b/vendor/ipl/sql/src/Adapter/Sqlite.php new file mode 100644 index 00000000..9f4e2094 --- /dev/null +++ b/vendor/ipl/sql/src/Adapter/Sqlite.php @@ -0,0 +1,13 @@ +dbname}"; + } +} diff --git a/vendor/ipl/sql/src/CommonTableExpression.php b/vendor/ipl/sql/src/CommonTableExpression.php new file mode 100644 index 00000000..596ec399 --- /dev/null +++ b/vendor/ipl/sql/src/CommonTableExpression.php @@ -0,0 +1,53 @@ +with; + } + + public function with(Select $query, $alias, $recursive = false) + { + $this->with[] = [$query, $alias, $recursive]; + + return $this; + } + + public function resetWith() + { + $this->with = []; + + return $this; + } + + /** + * Clone the properties provided by this trait + * + * Shall be called by using classes in their __clone() + */ + protected function cloneCte() + { + foreach ($this->with as &$cte) { + $cte[0] = clone $cte[0]; + } + unset($cte); + } +} diff --git a/vendor/ipl/sql/src/CommonTableExpressionInterface.php b/vendor/ipl/sql/src/CommonTableExpressionInterface.php new file mode 100644 index 00000000..7e93bc87 --- /dev/null +++ b/vendor/ipl/sql/src/CommonTableExpressionInterface.php @@ -0,0 +1,39 @@ +isEmpty()) { + foreach ($filter as $filterPart) { + $part = static::assembleFilter($filterPart, $level + 1); + if ($part) { + if ($condition === null) { + $condition = [$operator, [$part]]; + } else { + if ($condition[0] === $operator) { + $condition[1][] = $part; + } elseif ($operator === Sql::NOT_ALL) { + $condition = [Sql::ALL, [$condition, [$operator, [$part]]]]; + } elseif ($operator === Sql::NOT_ANY) { + $condition = [Sql::ANY, [$condition, [$operator, [$part]]]]; + } else { + $condition = [$operator, [$condition, $part]]; + } + } + } + } + } else { + // TODO(el): Explicitly return the empty string due to the FilterNot case? + } + } else { + /** @var Filter\Condition $filter */ + $condition = [Sql::ALL, static::assemblePredicate($filter)]; + } + + return $condition; + } + + public static function assemblePredicate(Filter\Condition $filter) + { + $column = $filter->getColumn(); + $expression = $filter->getValue(); + + if (is_array($expression)) { + if ($filter instanceof Filter\UnEqual || $filter instanceof Filter\Unlike) { + return ["($column NOT IN (?) OR $column IS NULL)" => $expression]; + } elseif ($filter instanceof Filter\Equal || $filter instanceof Filter\Like) { + return ["$column IN (?)" => $expression]; + } + + throw new InvalidArgumentException( + 'Unable to render array expressions with operators other than equal or not equal' + ); + } elseif ( + ($filter instanceof Filter\Like || $filter instanceof Filter\Unlike) + && strpos($expression, '*') !== false + ) { + if ($expression === '*') { + return ["$column IS " . ($filter instanceof Filter\Like ? 'NOT ' : '') . 'NULL']; + } elseif ($filter instanceof Filter\Unlike) { + return ["($column NOT LIKE ? OR $column IS NULL)" => str_replace('*', '%', $expression)]; + } else { + return ["$column LIKE ?" => str_replace('*', '%', $expression)]; + } + } elseif ($filter instanceof Filter\Unequal || $filter instanceof Filter\Unlike) { + return ["($column != ? OR $column IS NULL)" => $expression]; + } else { + if ($filter instanceof Filter\Like || $filter instanceof Filter\Equal) { + $operator = '='; + } elseif ($filter instanceof Filter\GreaterThan) { + $operator = '>'; + } elseif ($filter instanceof Filter\GreaterThanOrEqual) { + $operator = '>='; + } elseif ($filter instanceof Filter\LessThan) { + $operator = '<'; + } elseif ($filter instanceof Filter\LessThanOrEqual) { + $operator = '<='; + } elseif ($filter instanceof Exists) { + $operator = 'EXISTS'; + } elseif ($filter instanceof NotExists) { + $operator = 'NOT EXISTS'; + } else { + throw new InvalidArgumentException(sprintf('Cannot render filter: %s', get_class($filter))); + } + + return ["$column $operator ?" => $expression]; + } + } +} diff --git a/vendor/ipl/sql/src/Config.php b/vendor/ipl/sql/src/Config.php new file mode 100644 index 00000000..df32fde1 --- /dev/null +++ b/vendor/ipl/sql/src/Config.php @@ -0,0 +1,72 @@ + $value) { + $this->$key = $value; + } + } + + /** @var string Type of the DBMS */ + public $db; + + /** @var string Database host */ + public $host; + + /** @var int Database port */ + public $port; + + /** @var string Database name */ + public $dbname; + + /** @var string Username to use for authentication */ + public $username; + + /** @var string Password to use for authentication */ + public $password; + + /** + * Character set for the connection + * + * If you want to use the default charset as configured by the database, don't set this property. + * + * @var string + */ + public $charset; + + /** + * PDO connect options + * + * Array of key-value pairs that should be set when calling {@link Connection::connect()} in order to establish a DB + * connection. + * + * @var array + */ + public $options; +} diff --git a/vendor/ipl/sql/src/Connection.php b/vendor/ipl/sql/src/Connection.php new file mode 100644 index 00000000..bfc3f705 --- /dev/null +++ b/vendor/ipl/sql/src/Connection.php @@ -0,0 +1,554 @@ +addPluginLoader('adapter', __NAMESPACE__ . '\\Adapter'); + + $adapter = $this->loadPlugin('adapter', $config->db); + + if (! $adapter) { + throw new InvalidArgumentException("Can't load database adapter for '{$config->db}'."); + } + + $this->adapter = new $adapter(); + $this->config = $config; + + $this->init(); + } + + /** + * Proxy PDO method calls + * + * @param string $name The name of the PDO method to call + * @param array $arguments Arguments for the method to call + * + * @return mixed + * + * @throws BadMethodCallException If the called method does not exist + * + */ + public function __call($name, array $arguments) + { + $this->connect(); + + if (! method_exists($this->pdo, $name)) { + $class = get_class($this); + $message = "Call to undefined method $class::$name"; + + throw new BadMethodCallException($message); + } + + return call_user_func_array([$this->pdo, $name], $arguments); + } + + /** + * Initialise the database connection + * + * If you have to adjust the connection after construction, override this method. + */ + public function init() + { + } + + /** + * Get the database adapter + * + * @return Adapter + */ + public function getAdapter() + { + return $this->adapter; + } + + /** + * Get the connection configuration + * + * @return Config + */ + public function getConfig() + { + return $this->config; + } + + /** + * Get the query builder for the database connection + * + * @return QueryBuilder + */ + public function getQueryBuilder() + { + if ($this->queryBuilder === null) { + $this->queryBuilder = new QueryBuilder($this->adapter); + } + + return $this->queryBuilder; + } + + /** + * Create and return the PDO instance + * + * This method is called via {@link connect()} to establish a database connection. + * If the default PDO needs to be adjusted for a certain DBMS, override this method. + * + * @return PDO + */ + protected function createPdoAdapter() + { + $adapter = $this->getAdapter(); + + $config = $this->getConfig(); + + return new PDO( + $adapter->getDsn($config), + $config->username, + $config->password, + $adapter->getOptions($config) + ); + } + + /** + * Connect to the database, if not already connected + * + * @return $this + */ + public function connect() + { + if ($this->pdo !== null) { + return $this; + } + + $this->pdo = $this->createPdoAdapter(); + + if (! empty($this->config->charset)) { + $this->exec(sprintf('SET NAMES %s', $this->pdo->quote($this->config->charset))); + } + + $this->adapter->setClientTimezone($this); + + return $this; + } + + /** + * Disconnect from the database + * + * @return $this + */ + public function disconnect() + { + $this->pdo = null; + + return $this; + } + + /** + * Check whether the connection to the database is still available + * + * @param bool $reconnect Whether to automatically reconnect + * + * @return bool + */ + public function ping($reconnect = true) + { + try { + $this->query('SELECT 1')->closeCursor(); + } catch (Exception $e) { + if (! $reconnect) { + return false; + } + + $this->disconnect(); + + return $this->ping(false); + } + + return true; + } + + /** + * Fetch and return all result rows as sequential array + * + * @param Select|string $stmt The SQL statement to prepare and execute. + * @param array $values Values to bind to the statement + * + * @return array + */ + public function fetchAll($stmt, array $values = null) + { + return $this->prepexec($stmt, $values) + ->fetchAll(); + } + + /** + * Fetch and return the first column of all result rows as sequential array + * + * @param Select|string $stmt The SQL statement to prepare and execute. + * @param array $values Values to bind to the statement + * + * @return array + */ + public function fetchCol($stmt, array $values = null) + { + return $this->prepexec($stmt, $values) + ->fetchAll(PDO::FETCH_COLUMN, 0); + } + + /** + * Fetch and return the first row of the result rows + * + * @param Select|string $stmt The SQL statement to prepare and execute. + * @param array $values Values to bind to the statement + * + * @return array + */ + public function fetchOne($stmt, array $values = null) + { + return $this->prepexec($stmt, $values) + ->fetch(); + } + + /** + * Alias of {@link fetchOne()} + */ + public function fetchRow($stmt, array $values = null) + { + return $this->prepexec($stmt, $values) + ->fetch(); + } + + /** + * Fetch and return all result rows as an array of key-value pairs + * + * First column is the key and the second column is the value. + * + * @param Select|string $stmt The SQL statement to prepare and execute. + * @param array $values Values to bind to the statement + * + * @return array + */ + public function fetchPairs($stmt, array $values = null) + { + return $this->prepexec($stmt, $values) + ->fetchAll(PDO::FETCH_KEY_PAIR); + } + + /** + * Fetch and return the first column of the first result row + * + * @param Select|string $stmt The SQL statement to prepare and execute. + * @param array $values Values to bind to the statement + * + * @return string + */ + public function fetchScalar($stmt, array $values = null) + { + return $this->prepexec($stmt, $values) + ->fetchColumn(0); + } + + /** + * Yield each result row + * + * `Connection::yieldAll(Select|string $stmt [[, array $values], int $fetchMode [, mixed ...$fetchModeOptions]])` + * + * @param Select|string $stmt The SQL statement to prepare and execute. + * @param mixed ...$args Values to bind to the statement, fetch mode for the statement, fetch mode options + * + * @return \Generator + */ + public function yieldAll($stmt, ...$args) + { + $values = null; + + if (! empty($args)) { + if (is_array($args[0])) { + $values = array_shift($args); + } + } + + $fetchMode = null; + + if (! empty($args)) { + $fetchMode = array_shift($args); + + switch ($fetchMode) { + case PDO::FETCH_KEY_PAIR: + foreach ($this->yieldPairs($stmt, $values) as $key => $value) { + yield $key => $value; + } + + return; + case PDO::FETCH_COLUMN: + if (empty($args)) { + $args[] = 0; + } + + break; + } + } + + $sth = $this->prepexec($stmt, $values); + + if ($fetchMode !== null) { + $sth->setFetchMode($fetchMode, ...$args); + } + + foreach ($sth as $key => $row) { + yield $key => $row; + } + } + + /** + * Yield the first column of each result row + * + * @param Select|string $stmt The SQL statement to prepare and execute + * @param array $values Values to bind to the statement + * + * @return \Generator + */ + public function yieldCol($stmt, array $values = null) + { + $sth = $this->prepexec($stmt, $values); + + $sth->setFetchMode(PDO::FETCH_COLUMN, 0); + + foreach ($sth as $key => $row) { + yield $key => $row; + } + } + + /** + * Yield key-value pairs with the first column as key and the second column as value for each result row + * + * @param Select|string $stmt The SQL statement to prepare and execute + * @param array $values Values to bind to the statement + * + * @return \Generator + */ + public function yieldPairs($stmt, array $values = null) + { + $sth = $this->prepexec($stmt, $values); + + $sth->setFetchMode(PDO::FETCH_NUM); + + foreach ($sth as $row) { + list($key, $value) = $row; + + yield $key => $value; + } + } + + /** + * Prepare and execute the given statement + * + * @param Delete|Insert|Select|Update|string $stmt The SQL statement to prepare and execute + * @param string|array $values Values to bind to the statement, if any + * + * @return PDOStatement + */ + public function prepexec($stmt, $values = null) + { + if ($values !== null && ! is_array($values)) { + $values = [$values]; + } + + if (is_object($stmt)) { + list($stmt, $values) = $this->getQueryBuilder()->assemble($stmt); + } + + $this->connect(); + + $sth = $this->pdo->prepare($stmt); + $sth->execute($values); + + return $sth; + } + + /** + * Prepare and execute the given Select query + * + * @param Select $select + * + * @return PDOStatement + */ + public function select(Select $select) + { + list($stmt, $values) = $this->getQueryBuilder()->assembleSelect($select); + + return $this->prepexec($stmt, $values); + } + + /** + * Insert a table row with the specified data + * + * @param string $table The table to insert data into. The table specification must be in + * one of the following formats: 'table' or 'schema.table' + * @param iterable $data Row data in terms of column-value pairs + * + * @return PDOStatement + * + * @throws InvalidArgumentException If data type is invalid + */ + public function insert($table, $data) + { + $insert = (new Insert()) + ->into($table) + ->values($data); + + return $this->prepexec($insert); + } + + /** + * Update table rows with the specified data, optionally based on a given condition + * + * @param string|array $table The table to update. The table specification must be in one of + * the following formats: + * 'table', 'table alias', ['alias' => 'table'] + * @param iterable $data The columns to update in terms of column-value pairs + * @param mixed $condition The WHERE condition + * @param string $operator The operator to combine multiple conditions with, + * if the condition is in the array format + * + * @return PDOStatement + * + * @throws InvalidArgumentException If data type is invalid + */ + public function update($table, $data, $condition = null, $operator = Sql::ALL) + { + $update = (new Update()) + ->table($table) + ->set($data); + + if ($condition !== null) { + $update->where($condition, $operator); + } + + return $this->prepexec($update); + } + + /** + * Delete table rows, optionally based on a given condition + * + * @param string|array $table The table to delete data from. The table specification must be in one of the + * following formats: 'table', 'table alias', ['alias' => 'table'] + * @param mixed $condition The WHERE condition + * @param string $operator The operator to combine multiple conditions with, + * if the condition is in the array format + * + * @return PDOStatement + */ + public function delete($table, $condition = null, $operator = Sql::ALL) + { + $delete = (new Delete()) + ->from($table); + + if ($condition !== null) { + $delete->where($condition, $operator); + } + + return $this->prepexec($delete); + } + + /** + * Begin a transaction + * + * @return bool Whether the transaction was started successfully + */ + public function beginTransaction() + { + $this->connect(); + + return $this->pdo->beginTransaction(); + } + + /** + * Commit a transaction + * + * @return bool Whether the transaction was committed successfully + */ + public function commitTransaction() + { + return $this->pdo->commit(); + } + + /** + * Roll back a transaction + * + * @return bool Whether the transaction was rolled back successfully + */ + public function rollBackTransaction() + { + return $this->pdo->rollBack(); + } + + /** + * Run the given callback in a transaction + * + * @param callable $callback The callback to run in a transaction. + * This connection instance is passed as parameter to the callback + * + * @return mixed The return value of the callback + * + * @throws Exception If an error occurs when running the callback + */ + public function transaction(callable $callback) + { + $this->beginTransaction(); + + try { + $result = call_user_func($callback, $this); + $this->commitTransaction(); + } catch (Exception $e) { + $this->rollBackTransaction(); + + throw $e; + } + + return $result; + } + + public function quoteIdentifier($identifier) + { + return $this->getAdapter()->quoteIdentifier($identifier); + } +} diff --git a/vendor/ipl/sql/src/Contract/Adapter.php b/vendor/ipl/sql/src/Contract/Adapter.php new file mode 100644 index 00000000..6142626b --- /dev/null +++ b/vendor/ipl/sql/src/Contract/Adapter.php @@ -0,0 +1,46 @@ +db = $db; + $this->select = $select; + } + + /** + * Get the fetch mode + * + * @return array + */ + public function getFetchMode() + { + return $this->fetchModeAndArgs; + } + + /** + * Set the fetch mode + * + * @param int $fetchMode Fetch mode as one of the PDO fetch mode constants. + * Please see {@link https://www.php.net/manual/en/pdostatement.setfetchmode} for details + * @param mixed ...$args Fetch mode arguments + * + * @return $this + */ + public function setFetchMode($fetchMode, ...$args) + { + array_unshift($args, $fetchMode); + + $this->fetchModeAndArgs = $args; + + return $this; + } + + public function getIterator(): Traversable + { + return $this->db->yieldAll($this->select, ...$this->getFetchMode()); + } + + public function hasLimit() + { + return $this->select->hasLimit(); + } + + public function getLimit() + { + return $this->select->getLimit(); + } + + public function limit($limit) + { + $this->select->limit($limit); + + return $this; + } + + public function hasOffset() + { + return $this->select->hasOffset(); + } + + public function getOffset() + { + return $this->select->getOffset(); + } + + public function offset($offset) + { + $this->select->offset($offset); + + return $this; + } + + public function count(): int + { + return $this->db->select($this->select->getCountQuery())->fetchColumn(0); + } +} diff --git a/vendor/ipl/sql/src/Delete.php b/vendor/ipl/sql/src/Delete.php new file mode 100644 index 00000000..53736b82 --- /dev/null +++ b/vendor/ipl/sql/src/Delete.php @@ -0,0 +1,52 @@ +from; + } + + /** + * Set the FROM part of the DELETE query + * + * Note that this method does NOT quote the table you specify for the DELETE FROM. + * If you allow user input here, you must protected yourself against SQL injection using + * {@link Connection::quoteIdentifier()} for the table names passed to this method. + * If you are using special table names, e.g. reserved keywords for your DBMS, you are required to use + * {@link Connection::quoteIdentifier()} as well. + * + * @param string|array $table The table to delete data from. The table specification must be in one of the + * following formats: 'table', 'table alias', ['alias' => 'table'] + * + * @return $this + */ + public function from($table) + { + $this->from = ! is_array($table) ? [$table] : $table; + + return $this; + } + + public function __clone() + { + $this->cloneCte(); + $this->cloneWhere(); + } +} diff --git a/vendor/ipl/sql/src/Expression.php b/vendor/ipl/sql/src/Expression.php new file mode 100644 index 00000000..cd508aca --- /dev/null +++ b/vendor/ipl/sql/src/Expression.php @@ -0,0 +1,52 @@ +statement = $statement; + $this->columns = $columns; + $this->values = $values; + } + + public function getStatement() + { + return $this->statement; + } + + public function getColumns() + { + return $this->columns ?: []; + } + + public function setColumns(array $columns) + { + $this->columns = $columns; + } + + public function getValues() + { + return $this->values; + } +} diff --git a/vendor/ipl/sql/src/ExpressionInterface.php b/vendor/ipl/sql/src/ExpressionInterface.php new file mode 100644 index 00000000..9ebe5ee0 --- /dev/null +++ b/vendor/ipl/sql/src/ExpressionInterface.php @@ -0,0 +1,39 @@ +into; + } + + /** + * Set the table for the INSERT INTO query + * + * Note that this method does NOT quote the table you specify for the INSERT INTO. + * If you allow user input here, you must protected yourself against SQL injection using + * {@link Connection::quoteIdentifier()} for the table name passed to this method. + * If you are using special table names, e.g. reserved keywords for your DBMS, you are required to use + * {@link Connection::quoteIdentifier()} as well. + * + * @param string $table The table to insert data into. The table specification must be in one of the following + * formats: 'table' or 'schema.table' + * + * @return $this + */ + public function into($table) + { + $this->into = $table; + + return $this; + } + + /** + * Get the columns for which the statement provides values + * + * @return array + */ + public function getColumns() + { + if (! empty($this->columns)) { + return array_keys($this->columns); + } + + if (! empty($this->values)) { + return array_keys($this->values); + } + + return []; + } + + /** + * Set the columns for which the query provides values + * + * Note that this method does NOT quote the columns you specify for the INSERT INTO. + * If you allow user input here, you must protected yourself against SQL injection using + * {@link Connection::quoteIdentifier()} for the column names passed to this method. + * If you are using special column names, e.g. reserved keywords for your DBMS, you are required to use + * {@link Connection::quoteIdentifier()} as well. + * + * If you do not set the columns for which the query provides values using this method, you must pass the values to + * {@link values()} in terms of column-value pairs in order to provide the column names. + * + * @param array $columns + * + * @return $this + */ + public function columns(array $columns) + { + $this->columns = array_flip($columns); + + return $this; + } + + /** + * Get the values to insert + * + * @return array + */ + public function getValues() + { + return array_values($this->values ?: []); + } + + /** + * Set the values to INSERT INTO - either plain values or expressions or scalar subqueries + * + * If you do not set the columns for which the query provides values using {@link columns()}, you must specify + * the values in terms of column-value pairs in order to provide the column names. Please note that the same + * restriction regarding quoting applies here. If you use {@link columns()} to set the columns and specify the + * values in terms of column-value pairs, the columns from {@link columns()} will be used nonetheless. + * + * @param iterable $values List of values or associative set of column-value pairs + * + * @return $this + * + * @throws InvalidArgumentException If values type is invalid + */ + public function values($values) + { + $this->values = arrayval($values); + + return $this; + } + + /** + * Create a INSERT INTO ... SELECT statement + * + * @param Select $select + * + * @return $this + */ + public function select(Select $select) + { + $this->select = $select; + + return $this; + } + + /** + * Get the select query for the INSERT INTO ... SELECT statement + * + * @return Select|null + */ + public function getSelect() + { + return $this->select; + } + + public function __clone() + { + $this->cloneCte(); + + if ($this->values !== null) { + foreach ($this->values as &$value) { + if ($value instanceof ExpressionInterface || $value instanceof Select) { + $value = clone $value; + } + } + unset($value); + } + + if ($this->select !== null) { + $this->select = clone $this->select; + } + } +} diff --git a/vendor/ipl/sql/src/LimitOffset.php b/vendor/ipl/sql/src/LimitOffset.php new file mode 100644 index 00000000..99c30a24 --- /dev/null +++ b/vendor/ipl/sql/src/LimitOffset.php @@ -0,0 +1,89 @@ +limit !== null; + } + + public function getLimit() + { + return $this->limit; + } + + public function limit($limit) + { + if ($limit !== null) { + $limit = (int) $limit; + if ($limit < 0) { + $limit = null; + } + } + + $this->limit = $limit; + + return $this; + } + + public function resetLimit() + { + $this->limit = null; + + return $this; + } + + public function hasOffset() + { + return $this->offset !== null; + } + + public function getOffset() + { + return $this->offset; + } + + public function offset($offset) + { + if ($offset !== null) { + $offset = (int) $offset; + if ($offset <= 0) { + $offset = null; + } + } + + $this->offset = $offset; + + return $this; + } + + public function resetOffset() + { + $this->offset = null; + + return $this; + } +} diff --git a/vendor/ipl/sql/src/LimitOffsetInterface.php b/vendor/ipl/sql/src/LimitOffsetInterface.php new file mode 100644 index 00000000..94628c41 --- /dev/null +++ b/vendor/ipl/sql/src/LimitOffsetInterface.php @@ -0,0 +1,71 @@ +orderBy !== null; + } + + public function getOrderBy() + { + return $this->orderBy; + } + + public function orderBy($orderBy, $direction = null) + { + if (! is_array($orderBy)) { + $orderBy = [$orderBy]; + } + + foreach ($orderBy as $column => $dir) { + if (is_int($column)) { + $column = $dir; + $dir = $direction; + } + + if (is_array($column) && count($column) === 2) { + list($column, $dir) = $column; + } + + if ($dir === SORT_ASC) { + $dir = 'ASC'; + } elseif ($dir === SORT_DESC) { + $dir = 'DESC'; + } + + $this->orderBy[] = [$column, $dir]; + } + + return $this; + } + + public function resetOrderBy() + { + $this->orderBy = null; + + return $this; + } + + /** + * Clone the properties provided by this trait + * + * Shall be called by using classes in their __clone() + */ + protected function cloneOrderBy() + { + if ($this->orderBy !== null) { + foreach ($this->orderBy as &$orderBy) { + if ($orderBy[0] instanceof ExpressionInterface || $orderBy[0] instanceof Select) { + $orderBy[0] = clone $orderBy[0]; + } + } + unset($orderBy); + } + } +} diff --git a/vendor/ipl/sql/src/OrderByInterface.php b/vendor/ipl/sql/src/OrderByInterface.php new file mode 100644 index 00000000..9cce3d02 --- /dev/null +++ b/vendor/ipl/sql/src/OrderByInterface.php @@ -0,0 +1,51 @@ + 'DESC', 'column' => SORT_DESC, ['column', 'DESC']] + * @param string|int $direction The default direction. Can be any of the following: + * 'ASC', 'DESC', SORT_ASC, SORT_DESC + * + * @return $this + */ + public function orderBy($orderBy, $direction = null); + + /** + * Reset the ORDER BY part of the query + * + * @return $this + */ + public function resetOrderBy(); +} diff --git a/vendor/ipl/sql/src/QueryBuilder.php b/vendor/ipl/sql/src/QueryBuilder.php new file mode 100644 index 00000000..3a551d2e --- /dev/null +++ b/vendor/ipl/sql/src/QueryBuilder.php @@ -0,0 +1,910 @@ +on(QueryBuilder::ON_ASSEMBLE_SELECT, function (Select $select) { + * // ... + * }); + * ``` + */ + const ON_ASSEMBLE_SELECT = 'assembleSelect'; + + /** + * Event raised after a {@link Select} object is assembled into a SQL statement string + * + * The assembled SQL statement string and the values to bind to the statement are passed as parameters by reference + * to the event callbacks. + * + * **Example usage:** + * + * ``` + * $queryBuilder->on(QueryBuilder::ON_SELECT_ASSEMBLED, function (&$sql, &$values) { + * // ... + * }); + * ``` + */ + const ON_SELECT_ASSEMBLED = 'selectAssembled'; + + /** + * Event raised before an {@see Insert} object is assembled into a SQL statement string + * + * **Example usage:** + * + * ``` + * $queryBuilder->on(QueryBuilder::ON_ASSEMBLE_INSERT, function (Insert $insert) { + * // ... + * }); + * ``` + * + * @var string + */ + const ON_ASSEMBLE_INSERT = 'assembleInsert'; + + /** + * Event raised after an {@see Insert} object is assembled into a SQL statement string + * + * The assembled SQL statement string and the prepared values are passed by reference to the event callbacks + * + * **Example usage:** + * + * ``` + * $queryBuilder->on(QueryBuilder::ON_INSERT_ASSEMBLED, function (&$sql, &$values) { + * // ... + * }); + * ``` + * + * @var string + */ + const ON_INSERT_ASSEMBLED = 'insertAssembled'; + + /** + * Event raised before an {@see Update} object is assembled into a SQL statement string + * + * **Example usage:** + * + * ``` + * $queryBuilder->on(QueryBuilder::ON_ASSEMBLE_UPDATE, function (Update $update) { + * // ... + * }); + * ``` + * + * @var string + */ + const ON_ASSEMBLE_UPDATE = 'assembleUpdate'; + + /** + * Event raised after an {@see Update} object is assembled into a SQL statement string + * + * The assembled SQL statement string and the prepared values are passed by reference to the event callbacks + * + * **Example usage:** + * + * ``` + * $queryBuilder->on(QueryBuilder::ON_UPDATE_ASSEMBLED, function (&$sql, &$values) { + * // ... + * }); + * ``` + * + * @var string + */ + const ON_UPDATE_ASSEMBLED = 'updateAssembled'; + + /** + * Event raised before a {@see Delete} object is assembled into a SQL statement string + * + * **Example usage:** + * + * ``` + * $queryBuilder->on(QueryBuilder::ON_ASSEMBLE_DELETE, function (Delete $delete) { + * // ... + * }); + * ``` + * + * @var string + */ + const ON_ASSEMBLE_DELETE = 'assembleDelete'; + + /** + * Event raised after a {@see Delete} object is assembled into a SQL statement string + * + * The assembled SQL statement string and the prepared values are passed by reference to the event callbacks + * + * **Example usage:** + * + * ``` + * $queryBuilder->on(QueryBuilder::ON_DELETE_ASSEMBLED, function (&$sql, &$values) { + * // ... + * }); + * ``` + * + * @var string + */ + const ON_DELETE_ASSEMBLED = 'deleteAssembled'; + + /** @var Adapter */ + protected $adapter; + + protected $separator = " "; + + /** + * Create a new query builder for the specified database adapter + * + * @param Adapter $adapter + */ + public function __construct(Adapter $adapter) + { + $adapter->registerQueryBuilderCallbacks($this); + + $this->adapter = $adapter; + } + + /** + * Assemble the given statement + * + * @param Delete|Insert|Select|Update $stmt + * + * @return array + * + * @throw InvalidArgumentException If statement type is invalid + */ + public function assemble($stmt) + { + switch (true) { + case $stmt instanceof Delete: + return $this->assembleDelete($stmt); + case $stmt instanceof Insert: + return $this->assembleInsert($stmt); + case $stmt instanceof Select: + return $this->assembleSelect($stmt); + case $stmt instanceof Update: + return $this->assembleUpdate($stmt); + default: + throw new InvalidArgumentException(sprintf( + __METHOD__ . ' expects instances of Delete, Insert, Select or Update. Got %s instead.', + get_php_type($stmt) + )); + } + } + + /** + * Assemble a DELETE query + * + * @param Delete $delete + * + * @return array + */ + public function assembleDelete(Delete $delete) + { + $values = []; + + $this->emit(self::ON_ASSEMBLE_DELETE, [$delete]); + + $sql = array_filter([ + $this->buildWith($delete->getWith(), $values), + $this->buildDeleteFrom($delete->getFrom()), + $this->buildWhere($delete->getWhere(), $values) + ]); + + $sql = implode($this->separator, $sql); + + $this->emit(static::ON_DELETE_ASSEMBLED, [&$sql, &$values]); + + return [$sql, $values]; + } + + /** + * Assemble a INSERT statement + * + * @param Insert $insert + * + * @return array + */ + public function assembleInsert(Insert $insert) + { + $values = []; + + $this->emit(static::ON_ASSEMBLE_INSERT, [$insert]); + + $select = $insert->getSelect(); + + $sql = array_filter([ + $this->buildWith($insert->getWith(), $values), + $this->buildInsertInto($insert->getInto()), + $select + ? $this->buildInsertIntoSelect($insert->getColumns(), $select, $values) + : $this->buildInsertColumnsAndValues($insert->getColumns(), $insert->getValues(), $values) + ]); + + $sql = implode($this->separator, $sql); + + $this->emit(static::ON_INSERT_ASSEMBLED, [&$sql, &$values]); + + return [$sql, $values]; + } + + /** + * Assemble a SELECT query + * + * @param Select $select + * @param array $values + * + * @return array + */ + public function assembleSelect(Select $select, array &$values = []) + { + $select = clone $select; + + $this->emit(static::ON_ASSEMBLE_SELECT, [$select]); + + $sql = array_filter([ + $this->buildWith($select->getWith(), $values), + $this->buildSelect($select->getColumns(), $select->getDistinct(), $values), + $this->buildFrom($select->getFrom(), $values), + $this->buildJoin($select->getJoin(), $values), + $this->buildWhere($select->getWhere(), $values), + $this->buildGroupBy($select->getGroupBy(), $values), + $this->buildHaving($select->getHaving(), $values), + $this->buildOrderBy($select->getOrderBy(), $values), + $this->buildLimitOffset($select->getLimit(), $select->getOffset()) + ]); + + $sql = implode($this->separator, $sql); + + $unions = $this->buildUnions($select->getUnion(), $values); + if ($unions) { + list($unionKeywords, $selects) = $unions; + + if ($sql) { + $sql = "($sql)"; + + $requiresUnionKeyword = true; + } else { + $requiresUnionKeyword = false; + } + + do { + $unionKeyword = array_shift($unionKeywords); + $select = array_shift($selects); + + if ($requiresUnionKeyword) { + $sql .= "{$this->separator}$unionKeyword{$this->separator}"; + } + + $sql .= "($select)"; + + $requiresUnionKeyword = true; + } while (! empty($unionKeywords)); + } + + $this->emit(static::ON_SELECT_ASSEMBLED, [&$sql, &$values]); + + return [$sql, $values]; + } + + /** + * Assemble a UPDATE query + * + * @param Update $update + * + * @return array + */ + public function assembleUpdate(Update $update) + { + $values = []; + + $this->emit(self::ON_ASSEMBLE_UPDATE, [$update]); + + $sql = array_filter([ + $this->buildWith($update->getWith(), $values), + $this->buildUpdateTable($update->getTable()), + $this->buildUpdateSet($update->getSet(), $values), + $this->buildWhere($update->getWhere(), $values) + ]); + + $sql = implode($this->separator, $sql); + + $this->emit(static::ON_UPDATE_ASSEMBLED, [&$sql, &$values]); + + return [$sql, $values]; + } + + /** + * Build the WITH part of a query + * + * @param array $with + * @param array $values + * + * @return string The WITH part of a query + */ + public function buildWith(array $with, array &$values) + { + if (empty($with)) { + return ''; + } + + $ctes = []; + $hasRecursive = false; + + foreach ($with as $cte) { + list($query, $alias, $recursive) = $cte; + list($cteSql, $cteValues) = $this->assembleSelect($query); + + $ctes[] = "$alias AS ($cteSql)"; + + $values = array_merge($values, $cteValues); + $hasRecursive |= $recursive; + } + + return ($hasRecursive ? 'WITH RECURSIVE ' : 'WITH ') . implode(', ', $ctes); + } + + /** + * Build the DELETE FROM part of a query + * + * @param array $from + * + * @return string The DELETE FROM part of a query + */ + public function buildDeleteFrom(array $from = null) + { + if ($from === null) { + return ''; + } + + $deleteFrom = 'DELETE FROM'; + + reset($from); + $alias = key($from); + $table = current($from); + + if (is_int($alias)) { + $deleteFrom .= " $table"; + } else { + $deleteFrom .= " $table $alias"; + } + + return $deleteFrom; + } + + /** + * Outsourced logic of {@link buildCondition()} + * + * @param string $expression + * @param array $values + * + * @return array + */ + public function unpackCondition($expression, array $values) + { + $placeholders = preg_match_all('/(\?)/', $expression, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER); + + if ($placeholders === 0) { + return [$expression, []]; + } + + if ($placeholders === 1) { + $offset = $matches[0][1][1]; + $expression = substr($expression, 0, $offset) + . implode(', ', array_fill(0, count($values), '?')) + . substr($expression, $offset + 1); + + return [$expression, $values]; + } + + $unpackedExpression = []; + $unpackedValues = []; + $offset = 0; + + foreach ($matches as $match) { + $value = array_shift($values); + $unpackedExpression[] = substr($expression, $offset, $match[1][1] - $offset); + if (is_array($value)) { + $unpackedExpression[] = implode(', ', array_fill(0, count($value), '?')); + $unpackedValues = array_merge($unpackedValues, $value); + } else { + $unpackedExpression[] = '?'; + $unpackedValues[] = $value; + } + $offset = $match[1][1] + 1; // 1 is the length of '?' + } + + $unpackedExpression[] = substr($expression, $offset); + + return [implode('', array_filter($unpackedExpression)), $unpackedValues]; + } + + /** + * Outsourced logic {@link buildWhere()} and {@link buildHaving()} have in common + * + * @param array $condition + * @param array $values + * + * @return string + */ + public function buildCondition(array $condition, array &$values) + { + $sql = []; + + $operator = array_shift($condition); + $conditions = array_shift($condition); + + foreach ($conditions as $expression => $value) { + if (is_array($value)) { + if (is_int($expression)) { + // Operator format + $sql[] = $this->buildCondition($value, $values); + } else { + list($unpackedExpression, $unpackedValues) = $this->unpackCondition($expression, $value); + $sql[] = $unpackedExpression; + $values = array_merge($values, $unpackedValues); + } + } else { + if ($value instanceof ExpressionInterface) { + $sql[] = $this->buildExpression($value, $values); + } elseif ($value instanceof Select) { + $stmt = '(' . $this->assembleSelect($value, $values)[0] . ')'; + if (is_int($expression)) { + $sql[] = $stmt; + } else { + $sql[] = str_replace('?', $stmt, $expression); + } + } elseif (is_int($expression)) { + $sql[] = $value; + } else { + $sql[] = $expression; + $values[] = $value; + } + } + } + + if ($operator === Sql::NOT_ALL || $operator === Sql::NOT_ANY) { + return 'NOT (' . implode(") $operator (", $sql) . ')'; + } + + return count($sql) === 1 ? $sql[0] : '(' . implode(") $operator (", $sql) . ')'; + } + + /** + * Build the WHERE part of a query + * + * @param array $where + * @oaram array $values + * + * @return string The WHERE part of the query + */ + public function buildWhere(array $where = null, array &$values = []) + { + if ($where === null) { + return ''; + } + + return 'WHERE ' . $this->buildCondition($where, $values); + } + + /** + * Build the INSERT INTO part of a INSERT INTO ... statement + * + * @param string|null $into + * + * @return string The INSERT INTO part of a INSERT INTO ... statement + */ + public function buildInsertInto($into) + { + if (empty($into)) { + return ''; + } + + return "INSERT INTO $into"; + } + + /** + * Build the columns and SELECT part of a INSERT INTO ... SELECT statement + * + * @param array $columns + * @param Select $select + * @param array $values + * + * @return string The columns and SELECT part of the INSERT INTO ... SELECT statement + */ + public function buildInsertIntoSelect(array $columns, Select $select, array &$values) + { + $sql = [ + '(' . implode(',', $columns) . ')', + $this->assembleSelect($select, $values)[0] + ]; + + return implode($this->separator, $sql); + } + + /** + * Build the columns and values part of a INSERT INTO ... statement + * + * @param array $columns + * @param array $insertValues + * @param array $values + * + * @return string The columns and values part of a INSERT INTO ... statement + */ + public function buildInsertColumnsAndValues(array $columns, array $insertValues, array &$values) + { + $sql = ['(' . implode(',', $columns) . ')']; + + $preparedValues = []; + + foreach ($insertValues as $value) { + if ($value instanceof ExpressionInterface) { + $preparedValues[] = $this->buildExpression($value, $values); + } elseif ($value instanceof Select) { + $preparedValues[] = "({$this->assembleSelect($value, $values)[0]})"; + } else { + $preparedValues[] = '?'; + $values[] = $value; + } + } + + $sql[] = 'VALUES(' . implode(',', $preparedValues) . ')'; + + return implode($this->separator, $sql); + } + + /** + * Build the SELECT part of a query + * + * @param array $columns + * @param bool $distinct + * @param array $values + * + * @return string The SELECT part of the query + */ + public function buildSelect(array $columns, $distinct, array &$values) + { + if (empty($columns)) { + return ''; + } + + $select = 'SELECT'; + + if ($distinct) { + $select .= ' DISTINCT'; + } + + if (empty($columns)) { + return "$select *"; + } + + $sql = []; + + foreach ($columns as $alias => $column) { + if ($column instanceof ExpressionInterface) { + $column = "({$this->buildExpression($column, $values)})"; + } elseif ($column instanceof Select) { + $column = "({$this->assembleSelect($column, $values)[0]})"; + } + + if (is_int($alias)) { + $sql[] = $column; + } else { + $sql[] = "$column AS $alias"; + } + } + + return "$select " . implode(', ', $sql); + } + + /** + * Build the FROM part of a query + * + * @param array $from + * @param array $values + * + * @return string The FROM part of the query + */ + public function buildFrom(array $from = null, array &$values = []) + { + if ($from === null) { + return ''; + } + + $sql = []; + + foreach ($from as $alias => $table) { + if ($table instanceof Select) { + $table = "({$this->assembleSelect($table, $values)[0]})"; + } + + if (is_int($alias) || $alias === $table) { + $sql[] = $table; + } else { + $sql[] = "$table $alias"; + } + } + + return 'FROM ' . implode(', ', $sql); + } + + /** + * Build the JOIN part(s) of a query + * + * @param array $joins + * @oaram array $values + * + * @return string The JOIN part(s) of the query + */ + public function buildJoin($joins, array &$values) + { + if ($joins === null) { + return ''; + } + + $sql = []; + foreach ($joins as $join) { + list($joinType, $table, $condition) = $join; + + if (is_array($table)) { + foreach ($table as $alias => $tableName) { + break; + } + } else { + $alias = null; + $tableName = $table; + } + + if ($tableName instanceof Select) { + $tableName = "({$this->assembleSelect($tableName, $values)[0]})"; + } + + if (is_array($condition)) { + $condition = $this->buildCondition($condition, $values); + } + + if (empty($alias) || $alias === $tableName) { + $sql[] = "$joinType JOIN $tableName ON $condition"; + } else { + $sql[] = "$joinType JOIN $tableName $alias ON $condition"; + } + } + + return implode($this->separator, $sql); + } + + /** + * Build the GROUP BY part of a query + * + * @param array $groupBy + * @param array $values + * + * @return string The GROUP BY part of the query + */ + public function buildGroupBy(array $groupBy = null, array &$values = []) + { + if ($groupBy === null) { + return ''; + } + + foreach ($groupBy as &$column) { + if ($column instanceof ExpressionInterface) { + $column = $this->buildExpression($column, $values); + } elseif ($column instanceof Select) { + $column = "({$this->assembleSelect($column, $values)[0]})"; + } + } + + return 'GROUP BY ' . implode(', ', $groupBy); + } + + /** + * Build the HAVING part of a query + * + * @param array $having + * @param array $values + * + * @return string The HAVING part of the query + */ + public function buildHaving(array $having = null, array &$values = []) + { + if ($having === null) { + return ''; + } + + return 'HAVING ' . $this->buildCondition($having, $values); + } + + /** + * Build the ORDER BY part of a query + * + * @param array $orderBy + * @param array $values + * + * @return string The ORDER BY part of the query + */ + public function buildOrderBy(array $orderBy = null, array &$values = []) + { + if ($orderBy === null) { + return ''; + } + + $sql = []; + + foreach ($orderBy as $column) { + list($column, $direction) = $column; + + if ($column instanceof ExpressionInterface) { + $column = $this->buildExpression($column, $values); + } elseif ($column instanceof Select) { + $column = "({$this->assembleSelect($column, $values)[0]})"; + } + + if ($direction !== null) { + $sql[] = "$column $direction"; + } else { + $sql[] = $column; + } + } + + return 'ORDER BY ' . implode(', ', $sql); + } + + /** + * Build the LIMIT and OFFSET part of a query + * + * @param int $limit + * @param int $offset + * + * @return string The LIMIT and OFFSET part of the query + */ + public function buildLimitOffset($limit = null, $offset = null) + { + $sql = []; + + if ($this->adapter instanceof Mssql) { + if ($offset !== null || $limit !== null) { + // If offset is null, sprintf will convert it to 0 + $sql[] = sprintf('OFFSET %d ROWS', $offset); + } + + if ($limit !== null) { + // FETCH FIRST n ROWS ONLY for OFFSET 0 would be an alternative here + $sql[] = "FETCH NEXT $limit ROWS ONLY"; + } + } else { + if ($limit !== null) { + $sql[] = "LIMIT $limit"; + } + + if ($offset !== null) { + $sql[] = "OFFSET $offset"; + } + } + + return implode($this->separator, $sql); + } + + /** + * Build the UNION parts of a query + * + * @param array $unions + * @param array $values + * + * @return array|null The UNION parts of the query + */ + public function buildUnions(array $unions = null, array &$values = []) + { + if ($unions === null) { + return null; + } + + $unionKeywords = []; + $selects = []; + + foreach ($unions as $union) { + list($select, $all) = $union; + + if ($select instanceof Select) { + list($select, $values) = $this->assembleSelect($select, $values); + } + + $unionKeywords[] = ($all ? 'UNION ALL' : 'UNION'); + $selects[] = $select; + } + + return [$unionKeywords, $selects]; + } + + /** + * Build the UPDATE {table} part of a query + * + * @param array $updateTable The table to UPDATE + * + * @return string The UPDATE {table} part of the query + */ + public function buildUpdateTable(array $updateTable = null) + { + if ($updateTable === null) { + return ''; + } + + $update = 'UPDATE'; + + reset($updateTable); + $alias = key($updateTable); + $table = current($updateTable); + + if (is_int($alias)) { + $update .= " $table"; + } else { + $update .= " $table $alias"; + } + + return $update; + } + + /** + * Build the SET part of a UPDATE query + * + * @param array $set + * @param array $values + * + * @return string The SET part of a UPDATE query + */ + public function buildUpdateSet(array $set = null, array &$values = []) + { + if (empty($set)) { + return ''; + } + + $sql = []; + + foreach ($set as $column => $value) { + if ($value instanceof ExpressionInterface) { + $sql[] = "$column = {$this->buildExpression($value, $values)}"; + } elseif ($value instanceof Select) { + $sql[] = "$column = ({$this->assembleSelect($value, $values)[0]})"; + } else { + $sql[] = "$column = ?"; + $values[] = $value; + } + } + + return 'SET ' . implode(', ', $sql); + } + + /** + * Build expression + * + * @param ExpressionInterface $expression + * @param array $values + * + * @return string The expression's statement + */ + public function buildExpression(ExpressionInterface $expression, array &$values = []) + { + $stmt = $expression->getStatement(); + $columns = $expression->getColumns(); + if (! empty($columns)) { + $stmt = vsprintf($stmt, $columns); + } + + $values = array_merge($values, $expression->getValues()); + + return $stmt; + } +} diff --git a/vendor/ipl/sql/src/Select.php b/vendor/ipl/sql/src/Select.php new file mode 100644 index 00000000..77a50eef --- /dev/null +++ b/vendor/ipl/sql/src/Select.php @@ -0,0 +1,562 @@ +distinct; + } + + /** + * Set whether to SELECT DISTINCT + * + * @param bool $distinct + * + * @return $this + */ + public function distinct($distinct = true) + { + $this->distinct = $distinct; + + return $this; + } + + /** + * Get the columns for the SELECT query + * + * @return array + */ + public function getColumns() + { + return $this->columns ?: []; + } + + /** + * Add columns to the SELECT query + * + * Multiple calls to this method will not overwrite the previous set columns but append the columns to the query. + * + * Note that this method does NOT quote the columns you specify for the SELECT. + * If you allow user input here, you must protected yourself against SQL injection using + * {@link Connection::quoteIdentifier()} for the column names passed to this method. + * If you are using special column names, e.g. reserved keywords for your DBMS, you are required to use + * {@link Connection::quoteIdentifier()} as well. + * + * @param string|ExpressionInterface|Select|array $columns The column(s) to add to the SELECT. + * The items can be any mix of the following: 'column', + * 'column as alias', ['alias' => 'column'] + * + * @return $this + */ + public function columns($columns) + { + if (! is_array($columns)) { + $columns = [$columns]; + } + + $this->columns = array_merge($this->columns ?: [], $columns); + + return $this; + } + + /** + * Get the FROM part of the query + * + * @return array|null + */ + public function getFrom() + { + return $this->from; + } + + /** + * Add a FROM part to the query + * + * Multiple calls to this method will not overwrite the previous set FROM part but append the tables to the FROM. + * + * Note that this method does NOT quote the tables you specify for the FROM. + * If you allow user input here, you must protected yourself against SQL injection using + * {@link Connection::quoteIdentifier()} for the table names passed to this method. + * If you are using special table names, e.g. reserved keywords for your DBMS, you are required to use + * {@link Connection::quoteIdentifier()} as well. + * + * @param string|Select|array $tables The table(s) to add to the FROM part. The items can be any mix of the + * following: ['table', 'table alias', 'alias' => 'table'] + * + * @return $this + */ + public function from($tables) + { + if (! is_array($tables)) { + $tables = [$tables]; + } + + $this->from = array_merge($this->from ?: [], $tables); + + return $this; + } + + /** + * Get the JOIN part(s) of the query + * + * @return array|null + */ + public function getJoin() + { + return $this->join; + } + + /** + * Add a INNER JOIN part to the query + * + * @param string|Select|array $table The table to be joined, can be any of the following: + * 'table' 'table alias' ['alias' => 'table'] + * @param string|ExpressionInterface|Select|array $condition The join condition, i.e. the ON part of the JOIN. + * Please see {@link WhereInterface::where()} + * for the supported formats and + * restrictions regarding quoting of the field names. + * @param string $operator The operator to combine multiple conditions with, + * if the condition is in the array format + * + * @return $this + */ + public function join($table, $condition, $operator = Sql::ALL) + { + $this->join[] = ['INNER', $table, $this->buildCondition($condition, $operator)]; + + return $this; + } + + /** + * Add a LEFT JOIN part to the query + * + * @param string|Select|array $table The table to be joined, can be any of the following: + * 'table' 'table alias' ['alias' => 'table'] + * @param string|ExpressionInterface|Select|array $condition The join condition, i.e. the ON part of the JOIN. + * Please see {@link WhereInterface::where()} + * for the supported formats and + * restrictions regarding quoting of the field names. + * @param string $operator The operator to combine multiple conditions with, + * if the condition is in the array format + * + * @return $this + */ + public function joinLeft($table, $condition, $operator = Sql::ALL) + { + $this->join[] = ['LEFT', $table, $this->buildCondition($condition, $operator)]; + + return $this; + } + + /** + * Add a RIGHT JOIN part to the query + * + * @param string|Select|array $table The table to be joined, can be any of the following: + * 'table' 'table alias' ['alias' => 'table'] + * @param string|ExpressionInterface|Select|array $condition The join condition, i.e. the ON part of the JOIN. + * Please see {@link WhereInterface::where()} + * for the supported formats and + * restrictions regarding quoting of the field names. + * @param string $operator The operator to combine multiple conditions with, + * if the condition is in the array format + * + * @return $this + */ + public function joinRight($table, $condition, $operator = Sql::ALL) + { + $this->join[] = ['RIGHT', $table, $this->buildCondition($condition, $operator)]; + + return $this; + } + + /** + * Get the GROUP BY part of the query + * + * @return array|null + */ + public function getGroupBy() + { + return $this->groupBy; + } + + /** + * Add a GROUP BY part to the query - either plain columns or expressions or scalar subqueries + * + * This method does NOT quote the columns you specify for the GROUP BY. + * If you allow user input here, you must protected yourself against SQL injection using + * {@link Connection::quoteIdentifier()} for the field names passed to this method. + * If you are using special field names, e.g. reserved keywords for your DBMS, you are required to use + * {@link Connection::quoteIdentifier()} as well. + * + * Note that this method does not override an already set GROUP BY part. Instead, multiple calls to this function + * add the specified GROUP BY part. + * + * @param string|ExpressionInterface|Select|array $groupBy + * + * @return $this + */ + public function groupBy($groupBy) + { + $this->groupBy = array_merge( + $this->groupBy === null ? [] : $this->groupBy, + is_array($groupBy) ? $groupBy : [$groupBy] + ); + + return $this; + } + + /** + * Get the HAVING part of the query + * + * @return array|null + */ + public function getHaving() + { + return $this->having; + } + + /** + * Add a HAVING part of the query + * + * This method lets you specify the HAVING part of the query using one of the two following supported formats: + * * String format, e.g. 'id = 1' + * * Array format, e.g. ['id' => 1, ...] + * + * This method does NOT quote the columns you specify for the HAVING. + * If you allow user input here, you must protected yourself against SQL injection using + * {@link Connection::quoteIdentifier()} for the field names passed to this method. + * If you are using special field names, e.g. reserved keywords for your DBMS, you are required to use + * {@link Connection::quoteIdentifier()} as well. + * + * Note that this method does not override an already set HAVING part. Instead, multiple calls to this function add + * the specified HAVING part using the AND operator. + * + * @param string|ExpressionInterface|Select|array $condition The HAVING condition + * @param string $operator The operator to combine multiple conditions with, + * if the condition is in the array format + * + * @return $this + */ + public function having($condition, $operator = Sql::ALL) + { + $this->mergeCondition($this->having, $this->buildCondition($condition, $operator), Sql::ALL); + + return $this; + } + + /** + * Add a OR part to the HAVING part of the query + * + * Please see {@link having()} for the supported formats and restrictions regarding quoting of the field names. + * + * @param string|ExpressionInterface|Select|array $condition The HAVING condition + * @param string $operator The operator to combine multiple conditions with, + * if the condition is in the array format + * + * @return $this + */ + public function orHaving($condition, $operator = Sql::ALL) + { + $this->mergeCondition($this->having, $this->buildCondition($condition, $operator), Sql::ANY); + + return $this; + } + + /** + * Add a AND NOT part to the HAVING part of the query + * + * Please see {@link having()} for the supported formats and restrictions regarding quoting of the field names. + * + * @param string|ExpressionInterface|Select|array $condition The HAVING condition + * @param string $operator The operator to combine multiple conditions with, + * if the condition is in the array format + * + * @return $this + */ + public function notHaving($condition, $operator = Sql::ALL) + { + $this->mergeCondition($this->having, $this->buildCondition($condition, $operator), Sql::NOT_ALL); + + return $this; + } + + /** + * Add a OR NOT part to the HAVING part of the query + * + * Please see {@link having()} for the supported formats and restrictions regarding quoting of the field names. + * + * @param string|ExpressionInterface|Select|array $condition The HAVING condition + * @param string $operator The operator to combine multiple conditions with, + * if the condition is in the array format + * + * @return $this + */ + public function orNotHaving($condition, $operator = Sql::ALL) + { + $this->mergeCondition($this->having, $this->buildCondition($condition, $operator), Sql::NOT_ANY); + + return $this; + } + + /** + * Get the UNION parts of the query + * + * @return array|null + */ + public function getUnion() + { + return $this->union; + } + + /** + * Combine a query with UNION + * + * @param Select|string $query + * + * @return $this + */ + public function union($query) + { + $this->union[] = [$query, false]; + + return $this; + } + + /** + * Combine a query with UNION ALL + * + * @param Select|string $query + * + * @return $this + */ + public function unionAll($query) + { + $this->union[] = [$query, true]; + + return $this; + } + + /** + * Reset the DISTINCT part of the query + * + * @return $this + */ + public function resetDistinct() + { + $this->distinct = false; + + return $this; + } + + /** + * Reset the columns of the query + * + * @return $this + */ + public function resetColumns() + { + $this->columns = null; + + return $this; + } + + /** + * Reset the FROM part of the query + * + * @return $this + */ + public function resetFrom() + { + $this->from = null; + + return $this; + } + + /** + * Reset the JOIN parts of the query + * + * @return $this + */ + public function resetJoin() + { + $this->join = null; + + return $this; + } + + /** + * Reset the GROUP BY part of the query + * + * @return $this + */ + public function resetGroupBy() + { + $this->groupBy = null; + + return $this; + } + + /** + * Reset the HAVING part of the query + * + * @return $this + */ + public function resetHaving() + { + $this->having = null; + + return $this; + } + + /** + * Reset queries combined with UNION and UNION ALL + * + * @return $this + */ + public function resetUnion() + { + $this->union = null; + + return $this; + } + + /** + * Get the count query + * + * @return Select + */ + public function getCountQuery() + { + $countQuery = clone $this; + + $countQuery->orderBy = null; + $countQuery->limit = null; + $countQuery->offset = null; + + if (! empty($countQuery->groupBy) || $countQuery->getDistinct()) { + $countQuery = (new Select())->from(['s' => $countQuery]); + $countQuery->distinct(false); + } + + $countQuery->columns = ['cnt' => 'COUNT(*)']; + + return $countQuery; + } + + public function __clone() + { + $this->cloneCte(); + $this->cloneOrderBy(); + $this->cloneWhere(); + + if ($this->columns !== null) { + foreach ($this->columns as &$value) { + if ($value instanceof ExpressionInterface || $value instanceof Select) { + $value = clone $value; + } + } + unset($value); + } + + if ($this->from !== null) { + foreach ($this->from as &$from) { + if ($from instanceof Select) { + $from = clone $from; + } + } + unset($from); + } + + if ($this->join !== null) { + foreach ($this->join as &$join) { + if (is_array($join[1])) { + foreach ($join[1] as &$table) { + if ($table instanceof Select) { + $table = clone $table; + } + } + unset($table); + } elseif ($join[1] instanceof Select) { + $join[1] = clone $join[1]; + } + + $this->cloneCondition($join[2]); + } + unset($join); + } + + if ($this->groupBy !== null) { + foreach ($this->groupBy as &$value) { + if ($value instanceof ExpressionInterface || $value instanceof Select) { + $value = clone $value; + } + } + unset($value); + } + + if ($this->having !== null) { + $this->cloneCondition($this->having); + } + + if ($this->union !== null) { + foreach ($this->union as &$union) { + $union[0] = clone $union[0]; + } + unset($union); + } + } +} diff --git a/vendor/ipl/sql/src/Sql.php b/vendor/ipl/sql/src/Sql.php new file mode 100644 index 00000000..8170382a --- /dev/null +++ b/vendor/ipl/sql/src/Sql.php @@ -0,0 +1,70 @@ +table; + } + + /** + * Set the table for the UPDATE query + * + * Note that this method does NOT quote the table you specify for the UPDATE. + * If you allow user input here, you must protected yourself against SQL injection using + * {@link Connection::quoteIdentifier()} for the table names passed to this method. + * If you are using special table names, e.g. reserved keywords for your DBMS, you are required to use + * {@link Connection::quoteIdentifier()} as well. + * + * @param string|array $table The table to update. The table specification must be in one of the + * following formats: 'table', 'table alias', ['alias' => 'table'] + * + * @return $this + */ + public function table($table) + { + $this->table = is_array($table) ? $table : [$table]; + + return $this; + } + + /** + * Get the columns to update in terms of column-value pairs + * + * @return array|null + */ + public function getSet() + { + return $this->set; + } + + /** + * Set the columns to update in terms of column-value pairs + * + * Values may either be plain or expressions or scalar subqueries. + * + * Note that this method does NOT quote the columns you specify for the UPDATE. + * If you allow user input here, you must protected yourself against SQL injection using + * {@link Connection::quoteIdentifier()} for the column names passed to this method. + * If you are using special column names, e.g. reserved keywords for your DBMS, you are required to use + * {@link Connection::quoteIdentifier()} as well. + * + * @param iterable $set Associative set of column-value pairs + * + * @return $this + * + * @throws InvalidArgumentException If set type is invalid + */ + public function set($set) + { + $this->set = arrayval($set); + + return $this; + } + + public function __clone() + { + $this->cloneCte(); + $this->cloneWhere(); + + foreach ($this->set as &$value) { + if ($value instanceof ExpressionInterface || $value instanceof Select) { + $value = clone $value; + } + } + unset($value); + } +} diff --git a/vendor/ipl/sql/src/Where.php b/vendor/ipl/sql/src/Where.php new file mode 100644 index 00000000..f8628464 --- /dev/null +++ b/vendor/ipl/sql/src/Where.php @@ -0,0 +1,158 @@ +where; + } + + public function where($condition, ...$args) + { + list($condition, $operator) = $this->prepareConditionArguments($condition, $args); + $this->mergeCondition($this->where, $this->buildCondition($condition, $operator), Sql::ALL); + + return $this; + } + + public function orWhere($condition, ...$args) + { + list($condition, $operator) = $this->prepareConditionArguments($condition, $args); + $this->mergeCondition($this->where, $this->buildCondition($condition, $operator), Sql::ANY); + + return $this; + } + + public function notWhere($condition, ...$args) + { + list($condition, $operator) = $this->prepareConditionArguments($condition, $args); + $this->mergeCondition($this->where, $this->buildCondition($condition, $operator), Sql::NOT_ALL); + + return $this; + } + + public function orNotWhere($condition, ...$args) + { + list($condition, $operator) = $this->prepareConditionArguments($condition, $args); + $this->mergeCondition($this->where, $this->buildCondition($condition, $operator), Sql::NOT_ANY); + + return $this; + } + + public function resetWhere() + { + $this->where = null; + + return $this; + } + + /** + * Make $condition an array and build an array like this: [$operator, [$condition]] + * + * If $condition is empty, replace it with a boolean constant depending on the operator. + * + * @param string|array $condition + * @param string $operator + * + * @return array + */ + protected function buildCondition($condition, $operator) + { + if (is_array($condition)) { + if (empty($condition)) { + $condition = [$operator === Sql::ALL ? '1' : '0']; + } elseif (in_array(reset($condition), [Sql::ALL, Sql::ANY, Sql::NOT_ALL, Sql::NOT_ANY], true)) { + return $condition; + } + } else { + $condition = [$condition]; + } + + return [$operator, $condition]; + } + + /** + * Merge the given condition with ours via the given operator + * + * @param mixed $base Our condition + * @param array $condition As returned by {@link buildCondition()} + * @param string $operator + */ + protected function mergeCondition(&$base, array $condition, $operator) + { + if ($base === null) { + $base = [$operator, [$condition]]; + } else { + if ($base[0] === $operator) { + $base[1][] = $condition; + } elseif ($operator === Sql::NOT_ALL) { + $base = [Sql::ALL, [$base, [$operator, [$condition]]]]; + } elseif ($operator === Sql::NOT_ANY) { + $base = [Sql::ANY, [$base, [$operator, [$condition]]]]; + } else { + $base = [$operator, [$base, $condition]]; + } + } + } + + /** + * Prepare condition arguments from the different supported where styles + * + * @param mixed $condition + * @param array $args + * + * @return array + */ + protected function prepareConditionArguments($condition, array $args) + { + // Default operator + $operator = Sql::ALL; + + if (! is_array($condition) && ! empty($args)) { + // Variadic + $condition = [(string) $condition => $args]; + } else { + // Array or string format + $operator = array_shift($args) ?: $operator; + } + + return [$condition, $operator]; + } + + /** + * Clone the properties provided by this trait + * + * Shall be called by using classes in their __clone() + */ + protected function cloneWhere() + { + if ($this->where !== null) { + $this->cloneCondition($this->where); + } + } + + /** + * Clone a condition in-place + * + * @param array $condition As returned by {@link buildCondition()} + */ + protected function cloneCondition(array &$condition) + { + foreach ($condition as &$subCondition) { + if (is_array($subCondition)) { + $this->cloneCondition($subCondition); + } elseif ($subCondition instanceof ExpressionInterface || $subCondition instanceof Select) { + $subCondition = clone $subCondition; + } + } + unset($subCondition); + } +} diff --git a/vendor/ipl/sql/src/WhereInterface.php b/vendor/ipl/sql/src/WhereInterface.php new file mode 100644 index 00000000..e7244650 --- /dev/null +++ b/vendor/ipl/sql/src/WhereInterface.php @@ -0,0 +1,84 @@ + 1, ...], i.e. `where(array $condition [, string $operator])` + * + * This method does NOT quote the columns you specify for the WHERE. + * If you allow user input here, you must protected yourself against SQL injection using + * {@link Connection::quoteIdentifier()} for the field names passed to this method. + * If you are using special field names, e.g. reserved keywords for your DBMS, you are required to use + * {@link Connection::quoteIdentifier()} as well. + * + * Note that this method does not override an already set WHERE part. Instead, multiple calls to this function add + * the specified WHERE part using the AND operator. + * + * @param string|ExpressionInterface|Select|array $condition The WHERE condition + * @param mixed $args If condition is a string, parameter values for placeholders in the condition can be passed. + * If condition is an array, the only argument that is allowed is the operator to use to combine + * these conditions. By default, this operator is {@link Sql::ALL} (AND) + * + * @return $this + */ + public function where($condition, ...$args); + + /** + * Add a OR part to the WHERE part of the query + * + * Please see {@link where()} for the supported formats and restrictions regarding quoting of the field names. + * + * @param string|ExpressionInterface|Select|array $condition The WHERE condition + * @param mixed ...$args Please see {@link where()} for details + * + * @return $this + */ + public function orWhere($condition, ...$args); + + /** + * Add a AND NOT part to the WHERE part of the query + * + * Please see {@link where()} for the supported formats and restrictions regarding quoting of the field names. + * + * @param string|ExpressionInterface|Select|array $condition The WHERE condition + * @param mixed ...$args Please see {@link where()} for details + * + * @return $this + */ + public function notWhere($condition, ...$args); + + /** + * Add a OR NOT part to the WHERE part of the query + * + * Please see {@link where()} for the supported formats and restrictions regarding quoting of the field names. + * + * @param string|ExpressionInterface|Select|array $condition The WHERE condition + * @param mixed ...$args Please see {@link where()} for details + * + * @return $this + */ + public function orNotWhere($condition, ...$args); + + /** + * Reset the WHERE part of the query + * + * @return $this + */ + public function resetWhere(); +} diff --git a/vendor/ipl/stdlib/LICENSE b/vendor/ipl/stdlib/LICENSE new file mode 100644 index 00000000..58005ec1 --- /dev/null +++ b/vendor/ipl/stdlib/LICENSE @@ -0,0 +1,21 @@ +The MIT License + +Copyright (c) 2018 Icinga GmbH https://www.icinga.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/vendor/ipl/stdlib/composer.json b/vendor/ipl/stdlib/composer.json new file mode 100644 index 00000000..d32c7d30 --- /dev/null +++ b/vendor/ipl/stdlib/composer.json @@ -0,0 +1,22 @@ +{ + "name": "ipl/stdlib", + "description": "ipl Standard Library", + "type": "library", + "license": "MIT", + "autoload": { + "files": ["src/functions_include.php"], + "psr-4": { + "ipl\\Stdlib\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "ipl\\Tests\\Stdlib\\": "tests" + } + }, + "require": { + "php": ">=7.2", + "ext-openssl": "*", + "evenement/evenement": "^3" + } +} diff --git a/vendor/ipl/stdlib/src/BaseFilter.php b/vendor/ipl/stdlib/src/BaseFilter.php new file mode 100644 index 00000000..267decb2 --- /dev/null +++ b/vendor/ipl/stdlib/src/BaseFilter.php @@ -0,0 +1,45 @@ +baseFilter !== null; + } + + /** + * Get the base filter + * + * @return ?Rule + */ + public function getBaseFilter() + { + return $this->baseFilter; + } + + /** + * Set the base filter + * + * @param Rule $baseFilter + * + * @return $this + */ + public function setBaseFilter(Rule $baseFilter = null): self + { + $this->baseFilter = $baseFilter; + + return $this; + } +} diff --git a/vendor/ipl/stdlib/src/Contract/Filterable.php b/vendor/ipl/stdlib/src/Contract/Filterable.php new file mode 100644 index 00000000..2a6316a3 --- /dev/null +++ b/vendor/ipl/stdlib/src/Contract/Filterable.php @@ -0,0 +1,63 @@ +data); + } + + /** + * Check whether the given data exists + * + * @param string $name The name of the data + * + * @return bool + */ + public function has($name) + { + return array_key_exists($name, $this->data); + } + + /** + * Get the value of the given data + * + * @param string $name The name of the data + * @param mixed $default The value to return if there's no such data + * + * @return mixed + */ + public function get($name, $default = null) + { + if ($this->has($name)) { + return $this->data[$name]; + } + + return $default; + } + + /** + * Set the value of the given data + * + * @param string $name The name of the data + * @param mixed $value + * + * @return $this + */ + public function set($name, $value) + { + $this->data[$name] = $value; + + return $this; + } + + /** + * Merge the given data + * + * @param Data $with + * + * @return $this + */ + public function merge(self $with) + { + $this->data = array_merge($this->data, $with->data); + + return $this; + } + + /** + * Clear all data + * + * @return $this + */ + public function clear() + { + $this->data = []; + + return $this; + } +} diff --git a/vendor/ipl/stdlib/src/EventEmitter.php b/vendor/ipl/stdlib/src/EventEmitter.php new file mode 100644 index 00000000..6d189ee5 --- /dev/null +++ b/vendor/ipl/stdlib/src/EventEmitter.php @@ -0,0 +1,9 @@ +eventsEmittedOnce[$event])) { + $this->eventsEmittedOnce[$event] = true; + $this->emit($event, $arguments); + } + } + + /** + * @param string $event + * @param callable $listener + * @return $this + */ + public function on($event, callable $listener) + { + $this->assertValidEvent($event); + $this->evenementUnvalidatedOn($event, $listener); + + return $this; + } + + protected function assertValidEvent($event) + { + if (! $this->isValidEvent($event)) { + throw new InvalidArgumentException("$event is not a valid event"); + } + } + + /** + * @param string $event + * @return bool + */ + public function isValidEvent($event) + { + return true; + } +} diff --git a/vendor/ipl/stdlib/src/Filter.php b/vendor/ipl/stdlib/src/Filter.php new file mode 100644 index 00000000..9b60f8eb --- /dev/null +++ b/vendor/ipl/stdlib/src/Filter.php @@ -0,0 +1,578 @@ +performMatch($rule, $row); + } + + /** + * Create a rule that matches if **all** of the given rules do + * + * @param Rule ...$rules + * + * @return Chain + */ + public static function all(Rule ...$rules) + { + return new All(...$rules); + } + + /** + * Return whether the given rules all match the given item + * + * @param All $rules + * @param object $row + * + * @return bool + */ + protected function matchAll(All $rules, $row) + { + foreach ($rules as $rule) { + if (! $this->performMatch($rule, $row)) { + return false; + } + } + + return true; + } + + /** + * Create a rule that matches if **any** of the given rules do + * + * @param Rule ...$rules + * + * @return Chain + */ + public static function any(Rule ...$rules) + { + return new Any(...$rules); + } + + /** + * Return whether any of the given rules match the given item + * + * @param Any $rules + * @param object $row + * + * @return bool + */ + protected function matchAny(Any $rules, $row) + { + foreach ($rules as $rule) { + if ($this->performMatch($rule, $row)) { + return true; + } + } + + return false; + } + + /** + * Create a rule that matches if **none** of the given rules do + * + * @param Rule ...$rules + * + * @return Chain + */ + public static function none(Rule ...$rules) + { + return new None(...$rules); + } + + /** + * Return whether none of the given rules match the given item + * + * @param None $rules + * @param object $row + * + * @return bool + */ + protected function matchNone(None $rules, $row) + { + foreach ($rules as $rule) { + if ($this->performMatch($rule, $row)) { + return false; + } + } + + return true; + } + + /** + * Create a rule that matches rows with a column that **equals** the given value + * + * @param string $column + * @param array|bool|float|int|string $value + * + * @return Condition + */ + public static function equal($column, $value) + { + return new Equal($column, $value); + } + + /** + * Return whether the given rule's value equals the given item's value + * + * @param Equal|Unequal $rule + * @param object $row + * + * @return bool + */ + protected function matchEqual($rule, $row) + { + if (! $rule instanceof Equal && ! $rule instanceof Unequal) { + throw new InvalidArgumentException(sprintf( + 'Rule must be of type %s or %s, got %s instead', + Equal::class, + Unequal::class, + get_php_type($rule) + )); + } + + $rowValue = $this->extractValue($rule->getColumn(), $row); + $value = $rule->getValue(); + $this->normalizeTypes($rowValue, $value); + + if (! is_array($rowValue)) { + $rowValue = [$rowValue]; + } + + foreach ($rowValue as $rowVal) { + if ($this->performEqualityMatch($value, $rowVal, $rule->ignoresCase())) { + return true; + } + } + + return false; + } + + /** + * Create a rule that matches rows with a column that is **similar** to the given value + * + * Performs a wildcard search if the value contains asterisks. + * + * @param string $column + * @param string|string[] $value + * + * @return Condition + */ + public static function like($column, $value) + { + return new Like($column, $value); + } + + /** + * Return whether the given rule's value is similar to the given item's value + * + * @param Like|Unlike $rule + * @param object $row + * + * @return bool + */ + protected function matchSimilar($rule, $row) + { + if (! $rule instanceof Like && ! $rule instanceof Unlike) { + throw new InvalidArgumentException(sprintf( + 'Rule must be of type %s or %s, got %s instead', + Like::class, + Unlike::class, + get_php_type($rule) + )); + } + + $rowValue = $this->extractValue($rule->getColumn(), $row); + $value = $rule->getValue(); + $this->normalizeTypes($rowValue, $value); + + if (! is_array($rowValue)) { + $rowValue = [$rowValue]; + } + + foreach ($rowValue as $rowVal) { + if ($this->performSimilarityMatch($value, $rowVal, $rule->ignoresCase())) { + return true; + } + } + + return false; + } + + /** + * Apply equality matching rules on the given row value + * + * @param mixed $value + * @param mixed $rowValue + * @param bool $ignoreCase + * + * @return bool + */ + protected function performEqualityMatch($value, $rowValue, $ignoreCase = false) + { + if ($ignoreCase && is_string($rowValue)) { + $rowValue = strtolower($rowValue); + $value = is_array($value) + ? array_map('strtolower', $value) + : strtolower($value); + } + + if (is_array($value)) { + return in_array($rowValue, $value, true); + } elseif (! is_string($value)) { + if (is_string($rowValue)) { + $value = (string) $value; + } + } + + return $rowValue === $value; + } + + /** + * Apply similarity matching rules on the given row value + * + * @param string|string[] $value + * @param string $rowValue + * @param bool $ignoreCase + * + * @return bool + */ + protected function performSimilarityMatch($value, $rowValue, $ignoreCase = false) + { + if ($ignoreCase) { + $rowValue = strtolower($rowValue); + $value = is_array($value) + ? array_map('strtolower', $value) + : strtolower($value); + } + + if (is_array($value)) { + return in_array($rowValue, $value, true); + } + + $wildcardSubSegments = preg_split('~\*~', $value); + if (count($wildcardSubSegments) === 1) { + return $rowValue === $value; + } + + $parts = []; + foreach ($wildcardSubSegments as $part) { + $parts[] = preg_quote($part, '~'); + } + + $pattern = '~^' . join('.*', $parts) . '$~'; + + return (bool) preg_match($pattern, $rowValue); + } + + /** + * Create a rule that matches rows with a column that is **unequal** with the given value + * + * @param string $column + * @param array|bool|float|int|string $value + * + * @return Condition + */ + public static function unequal($column, $value) + { + return new Unequal($column, $value); + } + + /** + * Return whether the given rule's value does not equal the given item's value + * + * @param Unequal $rule + * @param object $row + * + * @return bool + */ + protected function matchUnequal(Unequal $rule, $row) + { + return ! $this->matchEqual($rule, $row); + } + + /** + * Create a rule that matches rows with a column that is **unlike** with the given value + * + * Performs a wildcard search if the value contains asterisks. + * + * @param string $column + * @param string|string[] $value + * + * @return Condition + */ + public static function unlike($column, $value) + { + return new Unlike($column, $value); + } + + /** + * Return whether the given rule's value is unlike the given item's value + * + * @param Unlike $rule + * @param object $row + * + * @return bool + */ + protected function matchUnlike(Unlike $rule, $row) + { + return ! $this->matchSimilar($rule, $row); + } + + /** + * Create a rule that matches rows with a column that is **greater** than the given value + * + * @param string $column + * @param float|int|string $value + * + * @return Condition + */ + public static function greaterThan($column, $value) + { + return new GreaterThan($column, $value); + } + + /** + * Return whether the given rule's value is greater than the given item's value + * + * @param GreaterThan $rule + * @param object $row + * + * @return bool + */ + protected function matchGreaterThan(GreaterThan $rule, $row) + { + return $this->extractValue($rule->getColumn(), $row) > $rule->getValue(); + } + + /** + * Create a rule that matches rows with a column that is **less** than the given value + * + * @param string $column + * @param float|int|string $value + * + * @return Condition + */ + public static function lessThan($column, $value) + { + return new LessThan($column, $value); + } + + /** + * Return whether the given rule's value is less than the given item's value + * + * @param LessThan $rule + * @param object $row + * + * @return bool + */ + protected function matchLessThan(LessThan $rule, $row) + { + $rowValue = $this->extractValue($rule->getColumn(), $row); + if ($rowValue === null) { + return false; + } + + return $rowValue < $rule->getValue(); + } + + /** + * Create a rule that matches rows with a column that is **greater** than or **equal** to the given value + * + * @param string $column + * @param float|int|string $value + * + * @return Condition + */ + public static function greaterThanOrEqual($column, $value) + { + return new GreaterThanOrEqual($column, $value); + } + + /** + * Return whether the given rule's value is greater than or equals the given item's value + * + * @param GreaterThanOrEqual $rule + * @param object $row + * + * @return bool + */ + protected function matchGreaterThanOrEqual(GreaterThanOrEqual $rule, $row) + { + return $this->extractValue($rule->getColumn(), $row) >= $rule->getValue(); + } + + /** + * Create a rule that matches rows with a column that is **less** than or **equal** to the given value + * + * @param string $column + * @param float|int|string $value + * + * @return Condition + */ + public static function lessThanOrEqual($column, $value) + { + return new LessThanOrEqual($column, $value); + } + + /** + * Return whether the given rule's value is less than or equals the given item's value + * + * @param LessThanOrEqual $rule + * @param object $row + * + * @return bool + */ + protected function matchLessThanOrEqual(LessThanOrEqual $rule, $row) + { + $rowValue = $this->extractValue($rule->getColumn(), $row); + if ($rowValue === null) { + return false; + } + + return $rowValue <= $rule->getValue(); + } + + /** + * Perform the appropriate match for the given rule on the given item + * + * @param Rule $rule + * @param object $row + * + * @return bool + */ + protected function performMatch(Rule $rule, $row) + { + switch (true) { + case $rule instanceof All: + return $this->matchAll($rule, $row); + case $rule instanceof Any: + return $this->matchAny($rule, $row); + case $rule instanceof Like: + return $this->matchSimilar($rule, $row); + case $rule instanceof Equal: + return $this->matchEqual($rule, $row); + case $rule instanceof GreaterThan: + return $this->matchGreaterThan($rule, $row); + case $rule instanceof GreaterThanOrEqual: + return $this->matchGreaterThanOrEqual($rule, $row); + case $rule instanceof LessThan: + return $this->matchLessThan($rule, $row); + case $rule instanceof LessThanOrEqual: + return $this->matchLessThanOrEqual($rule, $row); + case $rule instanceof None: + return $this->matchNone($rule, $row); + case $rule instanceof Unequal: + return $this->matchUnequal($rule, $row); + case $rule instanceof Unlike: + return $this->matchUnlike($rule, $row); + default: + throw new InvalidArgumentException(sprintf( + 'Unable to match filter. Rule type %s is unknown', + get_class($rule) + )); + } + } + + /** + * Return a value from the given row suitable to work with + * + * @param string $column + * @param object $row + * + * @return mixed + */ + protected function extractValue($column, $row) + { + try { + return $row->{$column}; + } catch (Exception $_) { + return null; + } + } + + /** + * Normalize type of $value to the one of $rowValue + * + * For details on how this works please see the corresponding test + * {@see \ipl\Tests\Stdlib\FilterTest::testConditionsAreValueTypeAgnostic} + * + * @param mixed $rowValue + * @param mixed $value + * + * @return void + */ + protected function normalizeTypes($rowValue, &$value) + { + if ($rowValue === null || $value === null) { + return; + } + + if (is_array($rowValue)) { + if (empty($rowValue)) { + return; + } + + $rowValue = array_shift($rowValue); + } + + if (is_array($value)) { + if (is_bool($rowValue) && ! empty($value) && is_string(array_values($value)[0])) { + return; + } + + $rowValueType = gettype($rowValue); + foreach ($value as &$val) { + settype($val, $rowValueType); + } + } elseif (! is_bool($rowValue) || ! is_string($value)) { + settype($value, gettype($rowValue)); + } + } +} diff --git a/vendor/ipl/stdlib/src/Filter/All.php b/vendor/ipl/stdlib/src/Filter/All.php new file mode 100644 index 00000000..67b47b66 --- /dev/null +++ b/vendor/ipl/stdlib/src/Filter/All.php @@ -0,0 +1,7 @@ +add($rule); + } + } + + /** + * Clone this chain's meta data and rules + */ + public function __clone() + { + if ($this->metaData !== null) { + $this->metaData = clone $this->metaData; + } + + foreach ($this->rules as $i => $rule) { + $this->rules[$i] = clone $rule; + } + } + + /** + * Get an iterator this chain's rules + * + * @return ArrayIterator + */ + public function getIterator(): Traversable + { + return new ArrayIterator($this->rules); + } + + /** + * Add a rule to this chain + * + * @param Rule $rule + * + * @return $this + */ + public function add(Rule $rule) + { + $this->rules[] = $rule; + + return $this; + } + + /** + * Prepend a rule to an existing rule in this chain + * + * @param Rule $rule + * @param Rule $before + * + * @throws OutOfBoundsException In case no existing rule is found + * @return $this + */ + public function insertBefore(Rule $rule, Rule $before) + { + $ruleAt = array_search($before, $this->rules, true); + if ($ruleAt === false) { + throw new OutOfBoundsException('Reference rule not found'); + } + + array_splice($this->rules, $ruleAt, 0, [$rule]); + + return $this; + } + + /** + * Append a rule to an existing rule in this chain + * + * @param Rule $rule + * @param Rule $after + * + * @throws OutOfBoundsException In case no existing rule is found + * @return $this + */ + public function insertAfter(Rule $rule, Rule $after) + { + $ruleAt = array_search($after, $this->rules, true); + if ($ruleAt === false) { + throw new OutOfBoundsException('Reference rule not found'); + } + + array_splice($this->rules, $ruleAt + 1, 0, [$rule]); + + return $this; + } + + /** + * Get whether this chain contains the given rule + * + * @param Rule $rule + * + * @return bool + */ + public function has(Rule $rule) + { + return array_search($rule, $this->rules, true) !== false; + } + + /** + * Replace a rule with another one in this chain + * + * @param Rule $rule + * @param Rule $replacement + * + * @throws OutOfBoundsException In case no existing rule is found + * @return $this + */ + public function replace(Rule $rule, Rule $replacement) + { + $ruleAt = array_search($rule, $this->rules, true); + if ($ruleAt === false) { + throw new OutOfBoundsException('Rule to replace not found'); + } + + array_splice($this->rules, $ruleAt, 1, [$replacement]); + + return $this; + } + + /** + * Remove a rule from this chain + * + * @param Rule $rule + * + * @return $this + */ + public function remove(Rule $rule) + { + $ruleAt = array_search($rule, $this->rules, true); + if ($ruleAt !== false) { + array_splice($this->rules, $ruleAt, 1, []); + } + + return $this; + } + + /** + * Get whether this chain has any rules + * + * @return bool + */ + public function isEmpty() + { + return empty($this->rules); + } + + /** + * Count this chain's rules + * + * @return int + */ + public function count(): int + { + return count($this->rules); + } +} diff --git a/vendor/ipl/stdlib/src/Filter/Condition.php b/vendor/ipl/stdlib/src/Filter/Condition.php new file mode 100644 index 00000000..cc356101 --- /dev/null +++ b/vendor/ipl/stdlib/src/Filter/Condition.php @@ -0,0 +1,84 @@ +setColumn($column) + ->setValue($value); + } + + /** + * Clone this condition's meta data + */ + public function __clone() + { + if ($this->metaData !== null) { + $this->metaData = clone $this->metaData; + } + } + + /** + * Set this condition's column + * + * @param string $column + * + * @return $this + */ + public function setColumn($column) + { + $this->column = $column; + + return $this; + } + + /** + * Get this condition's column + * + * @return string + */ + public function getColumn() + { + return $this->column; + } + + /** + * Set this condition's value + * + * @param mixed $value + * + * @return $this + */ + public function setValue($value) + { + $this->value = $value; + + return $this; + } + + /** + * Get this condition's value + * + * @return mixed + */ + public function getValue() + { + return $this->value; + } +} diff --git a/vendor/ipl/stdlib/src/Filter/Equal.php b/vendor/ipl/stdlib/src/Filter/Equal.php new file mode 100644 index 00000000..71da4902 --- /dev/null +++ b/vendor/ipl/stdlib/src/Filter/Equal.php @@ -0,0 +1,31 @@ +ignoreCase = true; + + return $this; + } + + /** + * Return whether this rule ignores case + * + * @return bool + */ + public function ignoresCase() + { + return $this->ignoreCase; + } +} diff --git a/vendor/ipl/stdlib/src/Filter/GreaterThan.php b/vendor/ipl/stdlib/src/Filter/GreaterThan.php new file mode 100644 index 00000000..fd8190c6 --- /dev/null +++ b/vendor/ipl/stdlib/src/Filter/GreaterThan.php @@ -0,0 +1,7 @@ +ignoreCase = true; + + return $this; + } + + /** + * Return whether this rule ignores case + * + * @return bool + */ + public function ignoresCase() + { + return $this->ignoreCase; + } +} diff --git a/vendor/ipl/stdlib/src/Filter/MetaData.php b/vendor/ipl/stdlib/src/Filter/MetaData.php new file mode 100644 index 00000000..6fe2523f --- /dev/null +++ b/vendor/ipl/stdlib/src/Filter/MetaData.php @@ -0,0 +1,20 @@ +metaData === null) { + $this->metaData = new Data(); + } + + return $this->metaData; + } +} diff --git a/vendor/ipl/stdlib/src/Filter/MetaDataProvider.php b/vendor/ipl/stdlib/src/Filter/MetaDataProvider.php new file mode 100644 index 00000000..ef9557e8 --- /dev/null +++ b/vendor/ipl/stdlib/src/Filter/MetaDataProvider.php @@ -0,0 +1,15 @@ +ignoreCase = true; + + return $this; + } + + /** + * Return whether this rule ignores case + * + * @return bool + */ + public function ignoresCase() + { + return $this->ignoreCase; + } +} diff --git a/vendor/ipl/stdlib/src/Filter/Unlike.php b/vendor/ipl/stdlib/src/Filter/Unlike.php new file mode 100644 index 00000000..16b9fb32 --- /dev/null +++ b/vendor/ipl/stdlib/src/Filter/Unlike.php @@ -0,0 +1,31 @@ +ignoreCase = true; + + return $this; + } + + /** + * Return whether this rule ignores case + * + * @return bool + */ + public function ignoresCase() + { + return $this->ignoreCase; + } +} diff --git a/vendor/ipl/stdlib/src/Filters.php b/vendor/ipl/stdlib/src/Filters.php new file mode 100644 index 00000000..defff436 --- /dev/null +++ b/vendor/ipl/stdlib/src/Filters.php @@ -0,0 +1,58 @@ +filter ?: Filter::all(); + } + + public function filter(Filter\Rule $filter) + { + $currentFilter = $this->getFilter(); + if ($currentFilter instanceof Filter\All) { + $this->filter = $currentFilter->add($filter); + } else { + $this->filter = Filter::all($filter); + if (! $currentFilter->isEmpty()) { + $this->filter->insertBefore($currentFilter, $filter); + } + } + + return $this; + } + + public function orFilter(Filter\Rule $filter) + { + $currentFilter = $this->getFilter(); + if ($currentFilter instanceof Filter\Any) { + $this->filter = $currentFilter->add($filter); + } else { + $this->filter = Filter::any($filter); + if (! $currentFilter->isEmpty()) { + $this->filter->insertBefore($currentFilter, $filter); + } + } + + return $this; + } + + public function notFilter(Filter\Rule $filter) + { + $this->filter(Filter::none($filter)); + + return $this; + } + + public function orNotFilter(Filter\Rule $filter) + { + $this->orFilter(Filter::none($filter)); + + return $this; + } +} diff --git a/vendor/ipl/stdlib/src/Loader/AutoloadingPluginLoader.php b/vendor/ipl/stdlib/src/Loader/AutoloadingPluginLoader.php new file mode 100644 index 00000000..ba195c6d --- /dev/null +++ b/vendor/ipl/stdlib/src/Loader/AutoloadingPluginLoader.php @@ -0,0 +1,52 @@ +namespace = $namespace; + $this->postfix = $postfix; + } + + /** + * Get the FQN of a plugin + * + * @param string $name Name of the plugin + * + * @return string + */ + protected function getFqn($name) + { + return $this->namespace . '\\' . ucfirst($name) . $this->postfix; + } + + public function load($name) + { + $class = $this->getFqn($name); + + if (! class_exists($class)) { + return false; + } + + return $class; + } +} diff --git a/vendor/ipl/stdlib/src/MessageContainer.php b/vendor/ipl/stdlib/src/MessageContainer.php new file mode 100644 index 00000000..3b383b17 --- /dev/null +++ b/vendor/ipl/stdlib/src/MessageContainer.php @@ -0,0 +1,9 @@ +messages); + } + + /** + * Get all messages + * + * @return array + */ + public function getMessages() + { + return $this->messages; + } + + /** + * Set the given messages overriding existing ones + * + * @param string[] $messages + * + * @return $this + */ + public function setMessages(array $messages) + { + $this->clearMessages(); + + foreach ($messages as $message) { + $this->addMessage($message); + } + + return $this; + } + + /** + * Add a single message + * + * @param string $message + * @param mixed ...$args Optional args for sprintf-style messages + * + * @return $this + */ + public function addMessage($message, ...$args) + { + if (empty($args)) { + $this->messages[] = $message; + } else { + $this->messages[] = vsprintf($message, $args); + } + + return $this; + } + + /** + * Add the given messages + * + * @param array $messages + * + * @return $this + */ + public function addMessages(array $messages) + { + $this->messages = array_merge($this->messages, $messages); + + return $this; + } + + /** + * Drop any existing message + * + * @return $this + */ + public function clearMessages() + { + $this->messages = []; + + return $this; + } +} diff --git a/vendor/ipl/stdlib/src/Plugins.php b/vendor/ipl/stdlib/src/Plugins.php new file mode 100644 index 00000000..a5dbb776 --- /dev/null +++ b/vendor/ipl/stdlib/src/Plugins.php @@ -0,0 +1,95 @@ +pluginLoaders[$type]); + } + + /** + * Add a plugin loader for the given type + * + * @param string $type + * @param PluginLoader|string $loaderOrNamespace + * @param string $postfix + * + * @return $this + */ + public function addPluginLoader($type, $loaderOrNamespace, $postfix = '') + { + $loader = static::wantPluginLoader($loaderOrNamespace, $postfix); + + if (! isset($this->pluginLoaders[$type])) { + $this->pluginLoaders[$type] = []; + } + + array_unshift($this->pluginLoaders[$type], $loader); + + return $this; + } + + /** + * Load the class file of the given plugin + * + * @param string $type + * @param string $name + * + * @return string|false + */ + public function loadPlugin($type, $name) + { + if ($this->hasPluginLoader($type)) { + /** @var PluginLoader $loader */ + foreach ($this->pluginLoaders[$type] as $loader) { + $class = $loader->load($name); + if ($class) { + return $class; + } + } + } + + return false; + } + + protected function addDefaultPluginLoader($type, $loaderOrNamespace, $postfix) + { + $this->pluginLoaders[$type][] = static::wantPluginLoader($loaderOrNamespace, $postfix); + + return $this; + } +} diff --git a/vendor/ipl/stdlib/src/PriorityQueue.php b/vendor/ipl/stdlib/src/PriorityQueue.php new file mode 100644 index 00000000..a50b31d4 --- /dev/null +++ b/vendor/ipl/stdlib/src/PriorityQueue.php @@ -0,0 +1,41 @@ +serial--]); + } + + /** + * Yield all items as priority-value pairs + * + * @return Generator + */ + public function yieldAll() + { + // Clone queue because the SplPriorityQueue acts as a heap and thus items are removed upon iteration + $queue = clone $this; + + $queue->setExtractFlags(static::EXTR_BOTH); + + foreach ($queue as $item) { + yield $item['priority'][0] => $item['data']; + } + } +} diff --git a/vendor/ipl/stdlib/src/Properties.php b/vendor/ipl/stdlib/src/Properties.php new file mode 100644 index 00000000..5726af3f --- /dev/null +++ b/vendor/ipl/stdlib/src/Properties.php @@ -0,0 +1,205 @@ +properties); + } + + /** + * Get whether a property with the given key exists + * + * @param string $key + * + * @return bool + */ + public function hasProperty($key) + { + return array_key_exists($key, $this->properties); + } + + /** + * Set the given properties + * + * @param array $properties + * + * @return $this + */ + public function setProperties(array $properties) + { + foreach ($properties as $key => $value) { + $this->setProperty($key, $value); + } + + return $this; + } + + /** + * Get the property by the given key + * + * @param string $key + * + * @return mixed + * + * @throws OutOfBoundsException If the property by the given key does not exist + */ + protected function getProperty($key) + { + if (array_key_exists($key, $this->properties)) { + return $this->properties[$key]; + } + + throw new OutOfBoundsException("Can't access property '$key'. Property does not exist"); + } + + /** + * Set a property with the given key and value + * + * @param string $key + * @param mixed $value + * + * @return $this + */ + protected function setProperty($key, $value) + { + $this->properties[$key] = $value; + + return $this; + } + + /** + * Iterate over all existing properties + * + * @return Traversable + */ + public function getIterator(): Traversable + { + foreach ($this->properties as $key => $value) { + yield $key => $value; + } + } + + /** + * Check whether an offset exists + * + * @param mixed $offset + * + * @return bool + */ + public function offsetExists($offset): bool + { + return isset($this->properties[$offset]); + } + + /** + * Get the value for an offset + * + * @param mixed $offset + * + * @return mixed + */ + #[\ReturnTypeWillChange] + public function offsetGet($offset) + { + return $this->getProperty($offset); + } + + /** + * Set the value for an offset + * + * @param mixed $offset + * @param mixed $value + */ + public function offsetSet($offset, $value): void + { + $this->setProperty($offset, $value); + } + + /** + * Unset the value for an offset + * + * @param mixed $offset + */ + public function offsetUnset($offset): void + { + unset($this->properties[$offset]); + } + + /** + * Get the value of a non-public property + * + * This is a PHP magic method which is implicitly called upon access to non-public properties, + * e.g. `$value = $object->property;`. + * Do not call this method directly. + * + * @param mixed $key + * + * @return mixed + */ + public function __get($key) + { + return $this->getProperty($key); + } + + /** + * Set the value of a non-public property + * + * This is a PHP magic method which is implicitly called upon access to non-public properties, + * e.g. `$object->property = $value;`. + * Do not call this method directly. + * + * @param string $key + * @param mixed $value + */ + public function __set($key, $value) + { + $this->setProperty($key, $value); + } + + /** + * Check whether a non-public property is defined and not null + * + * This is a PHP magic method which is implicitly called upon access to non-public properties, + * e.g. `isset($object->property);`. + * Do not call this method directly. + * + * @param string $key + * + * @return bool + */ + public function __isset($key) + { + return $this->offsetExists($key); + } + + /** + * Unset the value of a non-public property + * + * This is a PHP magic method which is implicitly called upon access to non-public properties, + * e.g. `unset($object->property);`. This method does nothing if the property does not exist. + * Do not call this method directly. + * + * @param string $key + */ + public function __unset($key) + { + $this->offsetUnset($key); + } +} diff --git a/vendor/ipl/stdlib/src/Seq.php b/vendor/ipl/stdlib/src/Seq.php new file mode 100644 index 00000000..0f40c938 --- /dev/null +++ b/vendor/ipl/stdlib/src/Seq.php @@ -0,0 +1,108 @@ + $item) { + $originalItem = $item; + if (! $caseSensitive && is_string($item)) { + $item = strtolower($item); + } + + if ($usesCallback && $needle($item)) { + return [$key, $originalItem]; + } elseif ($item === $needle) { + return [$key, $originalItem]; + } + } + + return [null, null]; + } + + /** + * Search in the traversable for the given needle and return its key + * + * @param array|iterable $traversable + * @param mixed $needle Might also be a closure + * @param bool $caseSensitive Whether strings should be compared case-sensitive + * + * @return mixed|null Null if nothing is found + */ + public static function findKey($traversable, $needle, $caseSensitive = true) + { + return self::find($traversable, $needle, $caseSensitive)[0]; + } + + /** + * Search in the traversable for the given needle and return its value + * + * @param array|iterable $traversable + * @param mixed $needle Might also be a closure + * @param bool $caseSensitive Whether strings should be compared case-sensitive + * + * @return mixed|null Null if nothing is found + */ + public static function findValue($traversable, $needle, $caseSensitive = true) + { + $usesCallback = is_callable($needle); + if (! $usesCallback && $caseSensitive && is_array($traversable)) { + return isset($traversable[$needle]) ? $traversable[$needle] : null; + } + + if (! $caseSensitive && is_string($needle) && ! $usesCallback) { + $needle = strtolower($needle); + } + + foreach ($traversable as $key => $item) { + if (! $caseSensitive && is_string($key)) { + $key = strtolower($key); + } + + if ($usesCallback && $needle($key)) { + return $item; + } elseif ($key === $needle) { + return $item; + } + } + + return null; + } +} diff --git a/vendor/ipl/stdlib/src/Str.php b/vendor/ipl/stdlib/src/Str.php new file mode 100644 index 00000000..d46989e1 --- /dev/null +++ b/vendor/ipl/stdlib/src/Str.php @@ -0,0 +1,93 @@ + $_) { + return $key; + } + + return null; +} diff --git a/vendor/ipl/stdlib/src/functions_include.php b/vendor/ipl/stdlib/src/functions_include.php new file mode 100644 index 00000000..9a2dc6f0 --- /dev/null +++ b/vendor/ipl/stdlib/src/functions_include.php @@ -0,0 +1,6 @@ +=7.2", + "ext-mbstring": "*", + "ext-openssl": "*", + "ipl/stdlib": ">=0.12.0", + "ipl/i18n": ">=0.2.0", + "psr/http-message": "~1.0" + }, + "autoload": { + "psr-4": { + "ipl\\Validator\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "ipl\\Tests\\Validator\\": "tests" + } + }, + "require-dev": { + "guzzlehttp/psr7": "^1" + } +} diff --git a/vendor/ipl/validator/src/BaseValidator.php b/vendor/ipl/validator/src/BaseValidator.php new file mode 100644 index 00000000..8faa79b0 --- /dev/null +++ b/vendor/ipl/validator/src/BaseValidator.php @@ -0,0 +1,11 @@ +setMin($options['min']) + ->setMax($options['max']) + ->setInclusive($options['inclusive'] ?? true); + } + + /** + * Return the min option + * + * @return mixed + */ + public function getMin() + { + return $this->min; + } + + /** + * Set the min option + * + * @param mixed $min + * + * @return $this + */ + public function setMin($min): self + { + $this->min = $min; + + return $this; + } + + /** + * Return the max option + * + * @return mixed + */ + public function getMax() + { + return $this->max; + } + + /** + * Set the max option + * + * @param mixed $max + * + * @return $this + */ + public function setMax($max): self + { + $this->max = $max; + + return $this; + } + + /** + * Return the inclusive option + * + * @return bool + */ + public function getInclusive(): bool + { + return $this->inclusive; + } + + /** + * Set the inclusive option + * + * @param bool $inclusive + * + * @return $this + */ + public function setInclusive($inclusive = true): self + { + $this->inclusive = (bool) $inclusive; + + return $this; + } + + public function isValid($value) + { + // Multiple isValid() calls must not stack validation messages + $this->clearMessages(); + + if ($this->getInclusive()) { + if ($this->getMin() > $value || $value > $this->getMax()) { + $this->addMessage(sprintf( + $this->translate("'%s' is not between '%s' and '%s', inclusively"), + $value, + $this->getMin(), + $this->getMax() + )); + + return false; + } + } elseif ($this->getMin() >= $value || $value >= $this->getMax()) { + $this->addMessage(sprintf( + $this->translate("'%s' is not between '%s' and '%s'"), + $value, + $this->getMin(), + $this->getMax() + )); + + return false; + } + + return true; + } +} diff --git a/vendor/ipl/validator/src/CallbackValidator.php b/vendor/ipl/validator/src/CallbackValidator.php new file mode 100644 index 00000000..611a45e9 --- /dev/null +++ b/vendor/ipl/validator/src/CallbackValidator.php @@ -0,0 +1,45 @@ +addMessage('Record already exists in database'); + * + * return false; + * } + * + * return true; + * }); + * + * $dedup->isValid($id); + * ``` + */ +class CallbackValidator extends BaseValidator +{ + /** @var callable Validation callback */ + protected $callback; + + /** + * Create a new callback validator + * + * @param callable $callback Validation callback + */ + public function __construct(callable $callback) + { + $this->callback = $callback; + } + + public function isValid($value) + { + // Multiple isValid() calls must not stack validation messages + $this->clearMessages(); + + return call_user_func($this->callback, $value, $this); + } +} diff --git a/vendor/ipl/validator/src/CidrValidator.php b/vendor/ipl/validator/src/CidrValidator.php new file mode 100644 index 00000000..32c11625 --- /dev/null +++ b/vendor/ipl/validator/src/CidrValidator.php @@ -0,0 +1,60 @@ +clearMessages(); + + $pieces = Str::trimSplit($value, '/'); + if (count($pieces) !== 2) { + $this->addMessage(sprintf( + $this->translate('CIDR "%s" does not conform to the required format $address/$prefix'), + $value + )); + + return false; + } + + list($address, $prefix) = $pieces; + $inaddr = @inet_pton($address); + if ($inaddr === false) { + $this->addMessage(sprintf($this->translate('CIDR "%s" contains an invalid address'), $value)); + + return false; + } + + if (! is_numeric($prefix)) { + $this->addMessage(sprintf($this->translate('Prefix of CIDR "%s" must be a number'), $value)); + + return false; + } + + $isIPv6 = isset($inaddr[4]); + $prefix = (int) $prefix; + $maxPrefixLength = $isIPv6 ? 128 : 32; + + if ($prefix < 0 || $prefix > $maxPrefixLength) { + $this->addMessage(sprintf( + $this->translate('Prefix length of CIDR "%s" must be between 0 and %d for IPv%d addresses'), + $value, + $maxPrefixLength, + $isIPv6 ? 6 : 4 + )); + + return false; + } + + return true; + } +} diff --git a/vendor/ipl/validator/src/DateTimeValidator.php b/vendor/ipl/validator/src/DateTimeValidator.php new file mode 100644 index 00000000..1e35d610 --- /dev/null +++ b/vendor/ipl/validator/src/DateTimeValidator.php @@ -0,0 +1,65 @@ +local = (bool) $local; + } + + /** + * Check whether the given date time is valid + * + * @param string|DateTime $value + * + * @return bool + */ + public function isValid($value) + { + // Multiple isValid() calls must not stack validation messages + $this->clearMessages(); + + if (! $value instanceof DateTime && ! is_string($value)) { + $this->addMessage($this->translate('Invalid date/time given.')); + + return false; + } + + if (! $value instanceof DateTime) { + $format = $this->local === true ? static::FORMAT : DateTime::RFC3339; + $dateTime = DateTime::createFromFormat($format, $value); + + if ($dateTime === false || $dateTime->format($format) !== $value) { + $this->addMessage(sprintf( + $this->translate("Date/time string not in the expected format: %s"), + $format + )); + + return false; + } + } + + return true; + } +} diff --git a/vendor/ipl/validator/src/DeferredInArrayValidator.php b/vendor/ipl/validator/src/DeferredInArrayValidator.php new file mode 100644 index 00000000..55b9b836 --- /dev/null +++ b/vendor/ipl/validator/src/DeferredInArrayValidator.php @@ -0,0 +1,55 @@ +callback = $callback; + + parent::__construct($options); + } + + public function getHaystack(): array + { + return $this->haystack ?? call_user_func($this->callback); + } + + /** + * Set the callback + * + * @param callable $callback + * + * @return $this + */ + public function setCallback(callable $callback): self + { + $this->haystack = null; + $this->callback = $callback; + + return $this; + } +} diff --git a/vendor/ipl/validator/src/EmailAddressValidator.php b/vendor/ipl/validator/src/EmailAddressValidator.php new file mode 100644 index 00000000..52c36977 --- /dev/null +++ b/vendor/ipl/validator/src/EmailAddressValidator.php @@ -0,0 +1,341 @@ +@) + * + * We currently do not support dot-atom syntax (refer RFC 2822 [https://www.ietf.org/rfc/rfc2822.txt] + * documentation for more details) for domain-literal part of an email address + * + */ +class EmailAddressValidator extends BaseValidator +{ + use Translation; + + /** + * If MX check should be enabled + * + * @var bool + */ + protected $mx = false; + + /** + * If a deep MX check should be enabled + * + * @var bool + */ + protected $deep = false; + + /** + * Create a new E-mail address validator with optional options + * + * Optional options: + * + * 'mx' => If an MX check should be enabled, boolean + * 'deep' => If a deep MX check should be enabled, boolean + * + * @param array $options + * + * @throws Exception + */ + public function __construct(array $options = []) + { + if (array_key_exists('mx', $options)) { + $this->setEnableMxCheck($options['mx']); + } + + if (array_key_exists('deep', $options)) { + $this->setEnableDeepMxCheck($options['deep']); + } + } + + /** + * Set MX check + * + * To validate if the hostname is a DNS mail exchange (MX) record set it to true + * + * @param bool $mx if MX check should be enabled + * + * @return $this + */ + public function setEnableMxCheck(bool $mx = true): self + { + $this->mx = $mx; + + return $this; + } + + /** + * Set Deep MX check + * + * To validate if the hostname is a DNS mail exchange (MX) record, and it points to an A record (for IPv4) or + * an AAAA / A6 record (for IPv6) set it to true + * + * @param bool $deep if deep MX check should be enabled + * + * @return $this + * + * @throws Exception in case MX check has not been enabled + */ + public function setEnableDeepMxCheck(bool $deep = true): self + { + if (! $this->mx) { + throw new Exception("MX record check has to be enabled to enable deep MX record check"); + } + + $this->deep = $deep; + + return $this; + } + + /** + * Validate the local part (username / the part before '@') of the email address + * + * @param string $localPart + * @param string $email + * + * @return bool + */ + private function validateLocalPart(string $localPart, string $email): bool + { + // First try to match the local part on the common dot-atom format + $result = false; + + // Dot-atom characters are: 1*atext *("." 1*atext) + // atext: ALPHA / DIGIT / and "!", "#", "$", "%", "&", "'", "*", + // "+", "-", "/", "=", "?", "^", "_", "`", "{", "|", "}", "~" + $atext = 'a-zA-Z0-9\x21\x23\x24\x25\x26\x27\x2a\x2b\x2d\x2f\x3d\x3f\x5e\x5f\x60\x7b\x7c\x7d\x7e'; + if (preg_match('/^[' . $atext . ']+(\x2e+[' . $atext . ']+)*$/', $localPart)) { + $result = true; + } else { + // Try quoted string format (RFC 5321 Chapter 4.1.2) + + // Quoted-string characters are: DQUOTE *(qtext/quoted-pair) DQUOTE + $qtext = '\x20-\x21\x23-\x5b\x5d-\x7e'; // %d32-33 / %d35-91 / %d93-126 + $quotedPair = '\x20-\x7e'; // %d92 %d32-126 + if (preg_match('/^"([' . $qtext . ']|\x5c[' . $quotedPair . '])*"$/', $localPart)) { + $result = true; + } else { + $this->addMessage(sprintf( + $this->translate( + "'%s' can not be matched against dot-atom format or quoted-string format" + ), + $localPart + )); + $this->addMessage(sprintf( + $this->translate("Hence '%s' is not a valid local part for email address '%s'"), + $localPart, + $email + )); + } + } + + return $result; + } + + /** + * Validate the hostname part of the email address + * + * @param string $hostname + * @param string $email + * + * @return bool + */ + private function validateHostnamePart(string $hostname, string $email): bool + { + $hostValidator = new HostnameValidator(); + + if ($this->validateIp($hostname)) { + return true; + } + + if (preg_match('/^\[([^\]]*)\]$/i', $hostname, $matches)) { + $validHostname = $matches[1]; + if (! $this->validateIp($validHostname)) { + $this->addMessage(sprintf( + $this->translate("host name %s is a domain literal and is invalid"), + $hostname + )); + + return false; + } + + return true; + } + + if (! $hostValidator->isValid($hostname)) { + $this->addMessage(sprintf( + $this->translate('%s is not a valid domain name for email address %s.'), + $hostname, + $email + )); + + return false; + } elseif ($this->mx) { + // MX check on hostname + return $this->validateMXRecords($hostname, $email); + } + + return true; + } + + /** + * Check if the given IP address is valid + * + * @param string $value + * + * @return bool + */ + private function validateIp(string $value): bool + { + if (! filter_var($value, FILTER_VALIDATE_IP)) { + return false; + } + + return true; + } + + /** + * Returns true if and only if $value is a valid email address + * according to RFC2822 + * + * @param string $value + * + * @return bool + */ + public function isValid($value): bool + { + $this->clearMessages(); + + $matches = []; + $length = true; + + // Split email address up and disallow '..' + if ( + (strpos($value, '..') !== false) + || (! preg_match('/^(.+)@([^@]+)$/', $value, $matches)) + ) { + $this->addMessage(sprintf( + $this->translate("'%s' is not a valid email address in the basic format local-part@hostname"), + $value + )); + return false; + } + + $localPart = $matches[1]; + $hostname = $matches[2]; + + if ((strlen($localPart) > 64) || (strlen($hostname) > 255)) { + $length = false; + $this->addMessage(sprintf( + $this->translate("'%s' exceeds the allowed length"), + $value + )); + } + + $local = $this->validateLocalPart($localPart, $value); + + // If both parts valid, return true + if (($local && $this->validateHostnamePart($hostname, $value)) && $length) { + return true; + } + + return false; + } + + /** + * Perform deep MX record validation + * + * Check if the hostname is a valid DNS mail exchange (MX) record in case deep MX record check is enabled, + * also checks if the corresponding MX record points to an A record (for IPv4) or an AAAA / A6 record (for IPv6) + * + * @param string $hostname + * @param string $email + * + * @return bool + */ + private function validateMXRecords(string $hostname, string $email): bool + { + $mxHosts = []; + //decode IDN domain name + $decodedHostname = idn_to_ascii($hostname, 0, INTL_IDNA_VARIANT_UTS46); + + $result = getmxrr($decodedHostname, $mxHosts); + if (! $result) { + $this->addMessage(sprintf( + $this->translate("'%s' does not appear to have a valid MX record for the email address '%s'"), + $hostname, + $email + )); + } elseif ($this->deep) { + $validAddress = false; + $reserved = true; + foreach ($mxHosts as $decodedHostname) { + $res = $this->isReserved($decodedHostname); + if (! $res) { + $reserved = false; + } + + if ( + ! $res + && ( + checkdnsrr($decodedHostname, "A") + || checkdnsrr($decodedHostname, "AAAA") + || checkdnsrr($decodedHostname, "A6") + ) + ) { + $validAddress = true; + break; + } + } + + if (! $validAddress) { + $result = false; + if ($reserved) { + $this->addMessage(sprintf( + $this->translate( + "'%s' is not in a routable network segment." . + " The email address '%s' should not be resolved from public network" + ), + $hostname, + $email + )); + } else { + $this->addMessage(sprintf( + $this->translate("'%s' does not appear to have a valid MX record for the email address '%s'"), + $hostname, + $email + )); + } + } + } + + return $result; + } + + /** + * Validate whether the given host is reserved + * + * @param string $host host name or ip address + * + * @return bool + */ + private function isReserved(string $host): bool + { + if (! preg_match('/^([0-9]{1,3}\.){3}[0-9]{1,3}$/', $host)) { + $host = gethostbyname($host); + } + + if (! filter_var($host, FILTER_VALIDATE_IP, FILTER_FLAG_NO_RES_RANGE | FILTER_FLAG_NO_PRIV_RANGE)) { + return true; + } + + return false; + } +} diff --git a/vendor/ipl/validator/src/FileValidator.php b/vendor/ipl/validator/src/FileValidator.php new file mode 100644 index 00000000..8c5b90ee --- /dev/null +++ b/vendor/ipl/validator/src/FileValidator.php @@ -0,0 +1,248 @@ +setMinSize($options['minSize'] ?? 0) + ->setMaxSize($options['maxSize'] ?? null) + ->setMaxFileNameLength($options['maxFileNameLength'] ?? null) + ->setAllowedMimeTypes($options['mimeType'] ?? null); + } + + /** + * Get the minimum allowed file size + * + * @return int + */ + public function getMinSize(): int + { + return $this->minSize; + } + + /** + * Set the minimum allowed file size + * + * @param int $minSize + * + * @return $this + */ + public function setMinSize(int $minSize): self + { + if (($max = $this->getMaxSize()) !== null && $minSize > $max) { + throw new LogicException( + sprintf( + 'The minSize must be less than or equal to the maxSize, but minSize: %d and maxSize: %d given.', + $minSize, + $max + ) + ); + } + + $this->minSize = $minSize; + + return $this; + } + + /** + * Get the maximum allowed file size + * + * @return ?int + */ + public function getMaxSize(): ?int + { + return $this->maxSize; + } + + /** + * Set the maximum allowed file size + * + * @param ?int $maxSize + * + * @return $this + */ + public function setMaxSize(?int $maxSize): self + { + if ($maxSize !== null && ($min = $this->getMinSize()) !== null && $maxSize < $min) { + throw new LogicException( + sprintf( + 'The minSize must be less than or equal to the maxSize, but minSize: %d and maxSize: %d given.', + $min, + $maxSize + ) + ); + } + + $this->maxSize = $maxSize; + + return $this; + } + + /** + * Get the allowed file mime types + * + * @return ?string[] + */ + public function getAllowedMimeTypes(): ?array + { + return $this->allowedMimeTypes; + } + + /** + * Set the allowed file mime types + * + * @param ?string[] $allowedMimeTypes + * + * @return $this + */ + public function setAllowedMimeTypes(?array $allowedMimeTypes): self + { + $this->allowedMimeTypes = $allowedMimeTypes; + + return $this; + } + + /** + * Get maximum allowed file name length + * + * @return ?int + */ + public function getMaxFileNameLength(): ?int + { + return $this->maxFileNameLength; + } + + /** + * Set maximum allowed file name length + * + * @param ?int $maxFileNameLength + * + * @return $this + */ + public function setMaxFileNameLength(?int $maxFileNameLength): self + { + $this->maxFileNameLength = $maxFileNameLength; + + return $this; + } + + public function isValid($value) + { + // Multiple isValid() calls must not stack validation messages + $this->clearMessages(); + + if (is_array($value)) { + foreach ($value as $file) { + if (! $this->validateFile($file)) { + return false; + } + } + + return true; + } + + return $this->validateFile($value); + } + + + private function validateFile(UploadedFileInterface $file): bool + { + $isValid = true; + if ($this->getMaxSize() && $file->getSize() > $this->getMaxSize()) { + $this->addMessage(sprintf( + $this->translate('File %s is bigger than the allowed maximum size of %d'), + $file->getClientFileName(), + $this->getMaxSize() + )); + + $isValid = false; + } + + if ($this->getMinSize() && $file->getSize() < $this->getMinSize()) { + $this->addMessage(sprintf( + $this->translate('File %s is smaller than the minimum required size of %d'), + $file->getClientFileName(), + $this->getMinSize() + )); + + $isValid = false; + } + + if ($this->getMaxFileNameLength()) { + $strValidator = new StringLengthValidator(['max' => $this->getMaxFileNameLength()]); + + if (! $strValidator->isValid($file->getClientFilename())) { + $this->addMessage(sprintf( + $this->translate('File name is longer than the allowed length of %d characters.'), + $this->maxFileNameLength + )); + + $isValid = false; + } + } + + if (! empty($this->getAllowedMimeTypes())) { + $hasAllowedMimeType = false; + foreach ($this->getAllowedMimeTypes() as $type) { + $fileMimetype = $file->getClientMediaType(); + if (($pos = strpos($type, '/*')) !== false) { // image/* + $typePrefix = substr($type, 0, $pos); + if (Str::startsWith($fileMimetype, $typePrefix)) { + $hasAllowedMimeType = true; + break; + } + } elseif ($fileMimetype === $type) { // image/png + $hasAllowedMimeType = true; + break; + } + } + + if (! $hasAllowedMimeType) { + $this->addMessage(sprintf( + $this->translate('File %s is of type %s. Only %s allowed.'), + $file->getClientFileName(), + $file->getClientMediaType(), + implode(', ', $this->allowedMimeTypes) + )); + + $isValid = false; + } + } + + return $isValid; + } +} diff --git a/vendor/ipl/validator/src/GreaterThanValidator.php b/vendor/ipl/validator/src/GreaterThanValidator.php new file mode 100644 index 00000000..e5de3d04 --- /dev/null +++ b/vendor/ipl/validator/src/GreaterThanValidator.php @@ -0,0 +1,69 @@ +setMin($options['min'] ?? 0); + } + + /** + * Get the min option + * + * @return mixed + */ + public function getMin() + { + return $this->min; + } + + /** + * Set the min option + * + * @param mixed $min + * + * @return $this + */ + public function setMin($min): self + { + $this->min = $min; + + return $this; + } + + public function isValid($value) + { + // Multiple isValid() calls must not stack validation messages + $this->clearMessages(); + + if ($this->getMin() >= $value) { + $this->addMessage(sprintf( + $this->translate("'%s' is not greater than '%s'"), + $value, + $this->min + )); + + return false; + } + + return true; + } +} diff --git a/vendor/ipl/validator/src/HexColorValidator.php b/vendor/ipl/validator/src/HexColorValidator.php new file mode 100644 index 00000000..e2da39c1 --- /dev/null +++ b/vendor/ipl/validator/src/HexColorValidator.php @@ -0,0 +1,37 @@ +clearMessages(); + + if (! preg_match('/\A#[0-9a-f]{6}\z/i', $value)) { + $this->addMessage(sprintf( + $this->translate('Color string not in the expected format %s'), + '#rrggbb' + )); + + return false; + } + + return true; + } +} diff --git a/vendor/ipl/validator/src/HostnameValidator.php b/vendor/ipl/validator/src/HostnameValidator.php new file mode 100644 index 00000000..3bb9b660 --- /dev/null +++ b/vendor/ipl/validator/src/HostnameValidator.php @@ -0,0 +1,37 @@ +clearMessages(); + + $asciiHostname = idn_to_ascii($value, 0, INTL_IDNA_VARIANT_UTS46); + if (filter_var($asciiHostname, FILTER_VALIDATE_DOMAIN, FILTER_FLAG_HOSTNAME) === false) { + $this->addMessage(sprintf( + $this->translate("%s is not a valid host name."), + $value ?? '' + )); + + return false; + } + + return true; + } +} diff --git a/vendor/ipl/validator/src/InArrayValidator.php b/vendor/ipl/validator/src/InArrayValidator.php new file mode 100644 index 00000000..f8c18ef2 --- /dev/null +++ b/vendor/ipl/validator/src/InArrayValidator.php @@ -0,0 +1,128 @@ +setHaystack($options['haystack']); + } + + $this->setStrict($options['strict'] ?? false); + } + + /** + * Get the haystack + * + * @return array + */ + public function getHaystack(): array + { + return $this->haystack ?? []; + } + + /** + * Set the haystack + * + * @param array $haystack + * + * @return $this + */ + public function setHaystack(array $haystack): self + { + $this->haystack = $haystack; + + return $this; + } + + /** + * Get whether the types of the needle in the haystack should also match + * + * @return bool + */ + public function isStrict(): bool + { + return $this->strict; + } + + /** + * Set whether the types of the needle in the haystack should also match + * + * @param bool $strict + * + * @return $this + */ + public function setStrict(bool $strict = true): self + { + $this->strict = $strict; + + return $this; + } + + public function isValid($value) + { + // Multiple isValid() calls must not stack validation messages + $this->clearMessages(); + + $notInArray = $this->findInvalid((array) $value); + + if (empty($notInArray)) { + return true; + } + + $this->addMessage(sprintf( + $this->translatePlural( + "%s was not found in the haystack", + "%s were not found in the haystack", + count($notInArray) + ), + implode(', ', $notInArray) + )); + + return false; + } + + /** + * Get the values from the specified array that are not present in the haystack + * + * @param array $values + * + * @return array Values not found in the haystack + */ + protected function findInvalid(array $values = []): array + { + $notInArray = []; + foreach ($values as $val) { + if (! in_array($val, $this->getHaystack(), $this->isStrict())) { + $notInArray[] = $val; + } + } + + return $notInArray; + } +} diff --git a/vendor/ipl/validator/src/LessThanValidator.php b/vendor/ipl/validator/src/LessThanValidator.php new file mode 100644 index 00000000..68e3daf3 --- /dev/null +++ b/vendor/ipl/validator/src/LessThanValidator.php @@ -0,0 +1,69 @@ +setMax($options['max'] ?? 0); + } + + /** + * Get the max option + * + * @return mixed + */ + public function getMax() + { + return $this->max; + } + + /** + * Set the max option + * + * @param mixed $max + * + * @return $this + */ + public function setMax($max): self + { + $this->max = $max; + + return $this; + } + + public function isValid($value) + { + // Multiple isValid() calls must not stack validation messages + $this->clearMessages(); + + if ($this->getMax() <= $value) { + $this->addMessage(sprintf( + $this->translate("'%s' is not less than '%s'"), + $value, + $this->getMax() + )); + + return false; + } + + return true; + } +} diff --git a/vendor/ipl/validator/src/PrivateKeyValidator.php b/vendor/ipl/validator/src/PrivateKeyValidator.php new file mode 100644 index 00000000..b629398c --- /dev/null +++ b/vendor/ipl/validator/src/PrivateKeyValidator.php @@ -0,0 +1,33 @@ +clearMessages(); + + if (preg_match('/\A\s*\w+:/', $value)) { + $this->addMessage($this->translate('URLs are not allowed')); + + return false; + } + + if (openssl_pkey_get_private($value) === false) { + $this->addMessage($this->translate('Not a valid PEM-encoded private key')); + + return false; + } + + return true; + } +} diff --git a/vendor/ipl/validator/src/StringLengthValidator.php b/vendor/ipl/validator/src/StringLengthValidator.php new file mode 100644 index 00000000..57df1ebd --- /dev/null +++ b/vendor/ipl/validator/src/StringLengthValidator.php @@ -0,0 +1,179 @@ +setMin($options['min'] ?? 0) + ->setMax($options['max'] ?? null) + ->setEncoding($options['encoding'] ?? null); + } + + /** + * Get the minimum required string length + * + * @return mixed + */ + public function getMin() + { + return $this->min; + } + + /** + * Set the minimum required string length + * + * @param mixed $min + * + * @return $this + * + * @throws LogicException When the $min is greater than the $max value + */ + public function setMin($min): self + { + if ($this->getMax() !== null && $min > $this->getMax()) { + throw new LogicException( + sprintf( + 'The min must be less than or equal to the max length, but min: %d and max: %d given.', + $min, + $this->getMax() + ) + ); + } + + $this->min = $min; + + return $this; + } + + /** + * Get the maximum required string length + * + * @return mixed + */ + public function getMax() + { + return $this->max; + } + + /** + * Set the minimum required string length + * + * @param mixed $max + * + * @return $this + * + * @throws LogicException When the $min is greater than the $max value + */ + public function setMax($max): self + { + if ($max !== null && $this->getMin() > $max) { + throw new LogicException( + sprintf( + 'The min must be less than or equal to the max length, but min: %d and max: %d given.', + $this->getMin(), + $max + ) + ); + } + + $this->max = $max; + + return $this; + } + + /** + * Get the encoding type to use + * + * @return ?string + */ + public function getEncoding(): ?string + { + return $this->encoding; + } + + /** + * Set the encoding type to use + * + * @param ?string $encoding + * + * @return $this + */ + public function setEncoding(?string $encoding): self + { + if ($encoding !== null) { + $availableEncodings = array_map('strtolower', mb_list_encodings()); + if (! in_array(strtolower($encoding), $availableEncodings, true)) { + throw new InvalidArgumentException( + sprintf('Given encoding "%s" is not supported on this OS!', $encoding) + ); + } + } + + $this->encoding = $encoding; + + return $this; + } + + public function isValid($value) + { + // Multiple isValid() calls must not stack validation messages + $this->clearMessages(); + + if ($encoding = $this->getEncoding()) { // because encoding is only nullable in php >= 8.0 + $length = mb_strlen($value, $encoding); + } else { + $length = mb_strlen($value); + } + + if ($length < $this->getMin()) { + $this->addMessage(sprintf( + $this->translate('String should be %d characters long, %d given'), + $this->getMin(), + $length + )); + + return false; + } + + if ($this->getMax() && $this->getMax() < $length) { + $this->addMessage(sprintf( + $this->translate('String should be %d characters long, %d given'), + $this->getMax(), + $length + )); + + return false; + } + + return true; + } +} diff --git a/vendor/ipl/validator/src/ValidatorChain.php b/vendor/ipl/validator/src/ValidatorChain.php new file mode 100644 index 00000000..2860a127 --- /dev/null +++ b/vendor/ipl/validator/src/ValidatorChain.php @@ -0,0 +1,284 @@ +validators = new PriorityQueue(); + $this->validatorsThatBreakTheChain = new SplObjectStorage(); + + $this->addDefaultPluginLoader('validator', __NAMESPACE__, 'Validator'); + } + + /** + * Get the validators that break the chain + * + * @return SplObjectStorage + */ + public function getValidatorsThatBreakTheChain() + { + return $this->validatorsThatBreakTheChain; + } + + /** + * Add a validator to the chain + * + * If $breakChainOnFailure is true and the validator fails, subsequent validators won't be executed. + * + * @param Validator $validator + * @param bool $breakChainOnFailure + * @param int $priority Priority at which to add validator + * + * @return $this + * + */ + public function add(Validator $validator, $breakChainOnFailure = false, $priority = self::DEFAULT_PRIORITY) + { + $this->validators->insert($validator, $priority); + + if ($breakChainOnFailure) { + $this->validatorsThatBreakTheChain->attach($validator); + } + + return $this; + } + + /** + * Add the validators from the given validator specification to the chain + * + * @param iterable $validators + * + * @return $this + * + * @throws InvalidArgumentException If $validators is not iterable or if the validator specification is invalid + */ + public function addValidators($validators) + { + if ($validators instanceof static) { + return $this->merge($validators); + } + + if (! is_iterable($validators)) { + throw new InvalidArgumentException(sprintf( + '%s expects parameter one to be iterable, got %s instead', + __METHOD__, + get_php_type($validators) + )); + } + + foreach ($validators as $name => $validator) { + $breakChainOnFailure = false; + + if (! $validator instanceof Validator) { + if (is_int($name)) { + if (! is_array($validator)) { + $name = $validator; + $validator = null; + } else { + if (! isset($validator['name'])) { + throw new InvalidArgumentException( + 'Invalid validator array specification: Key "name" is missing' + ); + } + + $name = $validator['name']; + unset($validator['name']); + } + } + + if (is_array($validator)) { + if (isset($validator['options'])) { + $options = $validator['options']; + + unset($validator['options']); + + $validator = array_merge($validator, $options); + } + + if (isset($validator['break_chain_on_failure'])) { + $breakChainOnFailure = $validator['break_chain_on_failure']; + + unset($validator['break_chain_on_failure']); + } + } + + $validator = $this->createValidator($name, $validator); + } + + $this->add($validator, $breakChainOnFailure); + } + + return $this; + } + + /** + * Add a validator loader + * + * @param string $namespace Namespace of the validators + * @param string $postfix Validator name postfix, if any + * + * @return $this + */ + public function addValidatorLoader($namespace, $postfix = null) + { + $this->addPluginLoader('validator', $namespace, $postfix); + + return $this; + } + + /** + * Remove all validators from the chain + * + * @return $this + */ + public function clearValidators() + { + $this->validators = new PriorityQueue(); + $this->validatorsThatBreakTheChain = new SplObjectStorage(); + + return $this; + } + + /** + * Create a validator from the given name and options + * + * @param string $name + * @param mixed $options + * + * @return Validator + * + * @throws InvalidArgumentException If the validator to load is unknown + * @throws UnexpectedValueException If a validator loader did not return an instance of {@link Validator} + */ + public function createValidator($name, $options = null) + { + $class = $this->loadPlugin('validator', $name); + + if (! $class) { + throw new InvalidArgumentException(sprintf( + "Can't load validator '%s'. Validator unknown", + $name + )); + } + + if (empty($options)) { + $validator = new $class(); + } else { + $validator = new $class($options); + } + + if (! $validator instanceof Validator) { + throw new UnexpectedValueException(sprintf( + "%s expects loader to return an instance of %s for validator '%s', got %s instead", + __METHOD__, + Validator::class, + $name, + get_php_type($validator) + )); + } + + return $validator; + } + + /** + * Merge all validators from the given chain into this one + * + * @param ValidatorChain $validatorChain + * + * @return $this + */ + public function merge(ValidatorChain $validatorChain) + { + $validatorsThatBreakTheChain = $validatorChain->getValidatorsThatBreakTheChain(); + + foreach ($validatorChain->validators->yieldAll() as $priority => $validator) { + $this->add($validator, $validatorsThatBreakTheChain->contains($validator), $priority); + } + + return $this; + } + + public function __clone() + { + $this->validators = clone $this->validators; + } + + /** + * Export the chain as array + * + * @return array + */ + public function toArray() + { + return array_values(iterator_to_array($this)); + } + + public function count(): int + { + return count($this->validators); + } + + /** + * Get an iterator for traversing the validators + * + * @return Validator[]|PriorityQueue + */ + public function getIterator(): Traversable + { + // Clone validators because the PriorityQueue acts as a heap and thus items are removed upon iteration + return clone $this->validators; + } + + public function isValid($value) + { + $this->clearMessages(); + + $valid = true; + + foreach ($this as $validator) { + if ($validator->isValid($value)) { + continue; + } + + $valid = false; + + $this->addMessages($validator->getMessages()); + + if ($this->validatorsThatBreakTheChain->contains($validator)) { + break; + } + } + + return $valid; + } +} diff --git a/vendor/ipl/validator/src/X509CertValidator.php b/vendor/ipl/validator/src/X509CertValidator.php new file mode 100644 index 00000000..7dfc4f7a --- /dev/null +++ b/vendor/ipl/validator/src/X509CertValidator.php @@ -0,0 +1,33 @@ +clearMessages(); + + if (preg_match('/\A\s*\w+:/', $value)) { + $this->addMessage($this->translate('URLs are not allowed')); + + return false; + } + + if (openssl_x509_parse($value) === false) { + $this->addMessage($this->translate('Not a valid PEM-encoded X.509 certificate')); + + return false; + } + + return true; + } +} diff --git a/vendor/ipl/web/LICENSE b/vendor/ipl/web/LICENSE new file mode 100644 index 00000000..a904102b --- /dev/null +++ b/vendor/ipl/web/LICENSE @@ -0,0 +1,21 @@ +The MIT License + +Copyright (c) 2018 Icinga GmbH https://icinga.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/vendor/ipl/web/composer.json b/vendor/ipl/web/composer.json new file mode 100644 index 00000000..70156ada --- /dev/null +++ b/vendor/ipl/web/composer.json @@ -0,0 +1,29 @@ +{ + "name": "ipl/web", + "type": "library", + "description": "Icinga PHP Library - Web Components", + "keywords": ["html"], + "homepage": "https://github.com/Icinga/ipl-web", + "license": "MIT", + "autoload": { + "psr-4": { + "ipl\\Web\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "ipl\\Tests\\Web\\": "tests", + "ipl\\Tests\\Html\\": "vendor/ipl/html/tests" + } + }, + "require": { + "php": ">=7.2", + "ext-json": "*", + "psr/http-message": "^1.0", + "ipl/html": ">=0.7.0", + "ipl/i18n": ">=0.2.0", + "ipl/scheduler": ">=0.1.0", + "ipl/stdlib": ">=0.12.0", + "fortawesome/font-awesome": "^6" + } +} diff --git a/vendor/ipl/web/src/Common/BaseTarget.php b/vendor/ipl/web/src/Common/BaseTarget.php new file mode 100644 index 00000000..db9be28d --- /dev/null +++ b/vendor/ipl/web/src/Common/BaseTarget.php @@ -0,0 +1,33 @@ +getAttributes()->get('data-base-target')->getValue(); + } + + /** + * Set the data-base-target attribute + * + * @param string $target + * + * @return $this + */ + public function setBaseTarget($target) + { + $this->getAttributes()->set('data-base-target', $target); + + return $this; + } +} diff --git a/vendor/ipl/web/src/Common/Card.php b/vendor/ipl/web/src/Common/Card.php new file mode 100644 index 00000000..e62bab59 --- /dev/null +++ b/vendor/ipl/web/src/Common/Card.php @@ -0,0 +1,55 @@ + 'card-body']); + + $this->assembleBody($body); + + return $body; + } + + protected function createFooter() + { + $footer = Html::tag('div', ['class' => 'card-footer']); + + $this->assembleFooter($footer); + + return $footer; + } + + protected function createHeader() + { + $header = Html::tag('div', ['class' => 'card-header']); + + $this->assembleHeader($header); + + return $header; + } + + protected function assemble() + { + $this->addAttributes(['class' => 'card']); + + $this->add([ + $this->createHeader(), + $this->createBody(), + $this->createFooter() + ]); + } +} diff --git a/vendor/ipl/web/src/Common/CsrfCounterMeasure.php b/vendor/ipl/web/src/Common/CsrfCounterMeasure.php new file mode 100644 index 00000000..348c4eeb --- /dev/null +++ b/vendor/ipl/web/src/Common/CsrfCounterMeasure.php @@ -0,0 +1,48 @@ +createElement( + 'hidden', + 'CSRFToken', + [ + 'ignore' => true, + 'required' => true, + 'value' => $token, + 'validators' => ['Callback' => function ($token) use ($uniqueId, $hashAlgo) { + if (strpos($token, '|') === false) { + die('Invalid CSRF token provided'); + } + + list($seed, $hash) = explode('|', $token); + + if ($hash !== hash($hashAlgo, $uniqueId . base64_decode($seed))) { + die('Invalid CSRF token provided'); + } + + return true; + }] + ] + ); + } +} diff --git a/vendor/ipl/web/src/Common/FormUid.php b/vendor/ipl/web/src/Common/FormUid.php new file mode 100644 index 00000000..05aac7b5 --- /dev/null +++ b/vendor/ipl/web/src/Common/FormUid.php @@ -0,0 +1,59 @@ +createElement('hidden', $this->uidElementName, ['ignore' => true]); + $element->getAttributes()->registerAttributeCallback('value', function () { + /** @var Form $this */ + return $this->getAttributes()->get('name')->getValue(); + }); + + return $element; + } + + /** + * Get whether the form has been sent + * + * A form is considered sent if the request's method equals the form's method + * and the sent UID is the form's UID. + * + * @return bool + */ + public function hasBeenSent() + { + if (! parent::hasBeenSent()) { + return false; + } elseif ($this->getMethod() === 'GET') { + // Get forms are unlikely to require a UID. If they do, change this. + return true; + } + + /** @var Form $this */ + $name = $this->getAttributes()->get('name')->getValue(); + if (! $name) { + throw new LogicException('Form has no name'); + } + + $values = $this->getRequest()->getParsedBody(); + + return isset($values[$this->uidElementName]) && $values[$this->uidElementName] === $name; + } +} diff --git a/vendor/ipl/web/src/Common/RedirectOption.php b/vendor/ipl/web/src/Common/RedirectOption.php new file mode 100644 index 00000000..0d73ef8a --- /dev/null +++ b/vendor/ipl/web/src/Common/RedirectOption.php @@ -0,0 +1,41 @@ +createElement('hidden', 'redirect'); + } + + /** + * @see Form::getRedirectUrl() + */ + public function getRedirectUrl() + { + /** @var Form $this */ + $redirectOption = $this->getValue('redirect'); + if (! $redirectOption) { + return parent::getRedirectUrl(); + } + + if (! $this->hasElement('CSRFToken') || ! $this->getElement('CSRFToken')->isValid()) { + throw new LogicException( + 'It is not safe to accept redirect targets from submit values without CSRF protection' + ); + } + + return $redirectOption; + } +} diff --git a/vendor/ipl/web/src/Common/StateBadges.php b/vendor/ipl/web/src/Common/StateBadges.php new file mode 100644 index 00000000..5898492d --- /dev/null +++ b/vendor/ipl/web/src/Common/StateBadges.php @@ -0,0 +1,184 @@ + 'state-badges']; + + /** + * Create a new widget for state badges + * + * @param object $item + */ + public function __construct($item) + { + $this->item = $item; + $this->type = $this->getType(); + $this->prefix = $this->getPrefix(); + $this->url = $this->getBaseUrl(); + } + + /** + * Get the badge base URL + * + * @return Url + */ + abstract protected function getBaseUrl(): Url; + + /** + * Get the type of the items + * + * @return string + */ + abstract protected function getType(): string; + + /** + * Get the prefix for accessing state information + * + * @return string + */ + abstract protected function getPrefix(): string; + + /** + * Get the integer of the given state text + * + * @param string $state + * + * @return int + */ + abstract protected function getStateInt(string $state): int; + + /** + * Get the badge URL + * + * @return Url + */ + public function getUrl(): Url + { + return $this->url; + } + + /** + * Set the badge URL + * + * @param Url $url + * + * @return $this + */ + public function setUrl(Url $url): self + { + $this->url = $url; + + return $this; + } + + /** + * Create a badge link + * + * @param $content + * @param array $params + * + * @return Link + */ + public function createLink($content, array $params = null): Link + { + $url = clone $this->getUrl(); + + if (! empty($params)) { + $url->getParams()->mergeValues($params); + } + + if ($this->hasBaseFilter()) { + $url->addFilter(Filter::fromQueryString(QueryString::render($this->getBaseFilter()))); + } + + return new Link($content, $url); + } + + /** + * Create a state bade + * + * @param string $state + * + * @return ?BaseHtmlElement + */ + protected function createBadge(string $state) + { + $key = $this->prefix . "_{$state}"; + + if (isset($this->item->$key) && $this->item->$key) { + return Html::tag('li', $this->createLink( + new StateBadge($this->item->$key, $state), + [$this->type . '.state.soft_state' => $this->getStateInt($state)] + )); + } + + return null; + } + + /** + * Create a state group + * + * @param string $state + * + * @return ?BaseHtmlElement + */ + protected function createGroup(string $state) + { + $content = []; + $handledKey = $this->prefix . "_{$state}_handled"; + $unhandledKey = $this->prefix . "_{$state}_unhandled"; + + if (isset($this->item->$unhandledKey) && $this->item->$unhandledKey) { + $content[] = Html::tag('li', $this->createLink( + new StateBadge($this->item->$unhandledKey, $state), + [ + $this->type . '.state.soft_state' => $this->getStateInt($state), + $this->type . '.state.is_handled' => 'n' + ] + )); + } + + if (isset($this->item->$handledKey) && $this->item->$handledKey) { + $content[] = Html::tag('li', $this->createLink( + new StateBadge($this->item->$handledKey, $state, true), + [ + $this->type . '.state.soft_state' => $this->getStateInt($state), + $this->type . '.state.is_handled' => 'y' + ] + )); + } + + if (empty($content)) { + return null; + } + + return Html::tag('li', Html::tag('ul', $content)); + } +} diff --git a/vendor/ipl/web/src/Compat/CompatController.php b/vendor/ipl/web/src/Compat/CompatController.php new file mode 100644 index 00000000..e05e9d33 --- /dev/null +++ b/vendor/ipl/web/src/Compat/CompatController.php @@ -0,0 +1,402 @@ +params->shift('isIframe'); + $this->params->shift('showFullscreen'); + $this->params->shift('showCompact'); + $this->params->shift('renderLayout'); + $this->params->shift('_disableLayout'); + $this->params->shift('_dev'); + if ($this->params->get('view') === 'compact') { + $this->params->remove('view'); + } + + $this->document = new HtmlDocument(); + $this->document->setSeparator("\n"); + $this->controls = new Controls(); + $this->controls->setAttribute('id', $this->getRequest()->protectId('controls')); + $this->content = new Content(); + $this->content->setAttribute('id', $this->getRequest()->protectId('content')); + $this->footer = new Footer(); + $this->footer->setAttribute('id', $this->getRequest()->protectId('footer')); + $this->tabs = new Tabs(); + $this->tabs->setAttribute('id', $this->getRequest()->protectId('tabs')); + $this->parts = []; + + $this->view->tabs = $this->tabs; + $this->controls->setTabs($this->tabs); + + ViewRenderer::inject(); + + $this->view->document = $this->document; + } + + /** + * Get the current server request + * + * @return ServerRequestInterface + */ + public function getServerRequest() + { + return ServerRequest::fromGlobals(); + } + + /** + * Get the document + * + * @return HtmlDocument + */ + public function getDocument() + { + return $this->document; + } + + /** + * Get the tabs + * + * @return Tabs + */ + public function getTabs() + { + return $this->tabs; + } + + /** + * Add content + * + * @param ValidHtml $content + * + * @return $this + */ + protected function addContent(ValidHtml $content) + { + $this->content->add($content); + + return $this; + } + + /** + * Add a control + * + * @param ValidHtml $control + * + * @return $this + */ + protected function addControl(ValidHtml $control) + { + $this->controls->add($control); + + if ( + $control instanceof PaginationControl + || $control instanceof LimitControl + || $control instanceof SortControl + || $control instanceof SearchBar + ) { + $this->controls->getAttributes() + ->get('class') + ->removeValue('default-layout') + ->addValue('default-layout'); + } + + return $this; + } + + /** + * Add footer + * + * @param ValidHtml $footer + * + * @return $this + */ + protected function addFooter(ValidHtml $footer) + { + $this->footer->add($footer); + + return $this; + } + + /** + * Add a part to be served as multipart-content + * + * If an id is passed the element is used as-is as the part's content. + * Otherwise (no id given) the element's content is used instead. + * + * @param ValidHtml $element + * @param string $id If not given, this is taken from $element + * + * @throws InvalidArgumentException If no id is given and the element also does not have one + * + * @return $this + */ + protected function addPart(ValidHtml $element, $id = null) + { + $part = new Multipart(); + + if ($id === null) { + if (! $element instanceof BaseHtmlElement) { + throw new InvalidArgumentException('If no id is given, $element must be a BaseHtmlElement'); + } + + $id = $element->getAttributes()->get('id')->getValue(); + if (! $id) { + throw new InvalidArgumentException('Element has no id'); + } + + $part->addFrom($element); + } else { + $part->add($element); + } + + $this->parts[] = $part->setFor($id); + + return $this; + } + + /** + * Set the given title as the window's title + * + * @param string $title + * @param mixed ...$args + * + * @return $this + */ + protected function setTitle($title, ...$args) + { + if (! empty($args)) { + $title = vsprintf($title, $args); + } + + $this->view->title = $title; + + return $this; + } + + /** + * Add an active tab with the given title and set it as the window's title too + * + * @param string $title + * @param mixed ...$args + * + * @return $this + */ + protected function addTitleTab($title, ...$args) + { + $this->setTitle($title, ...$args); + + $tabName = uniqid(); + $this->getTabs()->add($tabName, [ + 'label' => $this->view->title, + 'url' => $this->getRequest()->getUrl() + ])->activate($tabName); + + return $this; + } + + /** + * Create and return the LimitControl + * + * This automatically shifts the limit URL parameter from {@link $params}. + * + * @return LimitControl + */ + public function createLimitControl(): LimitControl + { + $limitControl = new LimitControl(Url::fromRequest()); + $limitControl->setDefaultLimit($this->getPageSize(null)); + + $this->params->shift($limitControl->getLimitParam()); + + return $limitControl; + } + + /** + * Create and return the PaginationControl + * + * This automatically shifts the pagination URL parameters from {@link $params}. + * + * @param Paginatable $paginatable + * + * @return PaginationControl + */ + public function createPaginationControl(Paginatable $paginatable): PaginationControl + { + $paginationControl = new PaginationControl($paginatable, Url::fromRequest()); + $paginationControl->setDefaultPageSize($this->getPageSize(null)); + $paginationControl->setAttribute('id', $this->getRequest()->protectId('pagination-control')); + + $this->params->shift($paginationControl->getPageParam()); + $this->params->shift($paginationControl->getPageSizeParam()); + + return $paginationControl->apply(); + } + + /** + * Create and return the SortControl + * + * This automatically shifts the sort URL parameter from {@link $params}. + * + * @param Query $query + * @param array $columns Possible sort columns as sort string-label pairs + * + * @return SortControl + */ + public function createSortControl(Query $query, array $columns): SortControl + { + $sortControl = SortControl::create($columns); + + $this->params->shift($sortControl->getSortParam()); + + return $sortControl->apply($query); + } + + /** + * Send a multipart update instead of a standard response + * + * As part of a multipart update, the tabs, content and footer as well as selected controls are + * transmitted in a way the client can render them exclusively instead of a full column reload. + * + * By default the only control included in the response is the pagination control, if added. + * + * @param BaseHtmlElement ...$additionalControls Additional controls to include + * + * @throws LogicException In case an additional control has not been added + */ + public function sendMultipartUpdate(BaseHtmlElement ...$additionalControls) + { + $searchBar = null; + $pagination = null; + $redirectUrl = null; + foreach ($this->controls->getContent() as $control) { + if ($control instanceof PaginationControl) { + $pagination = $control; + } elseif ($control instanceof SearchBar) { + $searchBar = $control; + $redirectUrl = $control->getRedirectUrl(); /** @var Url $redirectUrl */ + } + } + + if ($searchBar !== null && ($changes = $searchBar->getChanges()) !== null) { + $this->addPart(HtmlString::create(json_encode($changes)), 'Behavior:InputEnrichment'); + } + + foreach ($additionalControls as $control) { + $this->addPart($control); + } + + if ($searchBar !== null && $this->content->isEmpty() && ! $searchBar->isValid()) { + // No content and an invalid search bar? That's it then, further updates are not required + return; + } + + if ($this->tabs->count() > 0) { + if ($redirectUrl !== null) { + $this->tabs->setRefreshUrl($redirectUrl); + $this->tabs->getActiveTab()->setUrl($redirectUrl); + + // As long as we still depend on the legacy tab implementation + // there is no other way to influence what the tab extensions + // use as url. (https://github.com/Icinga/icingadb-web/issues/373) + $oldPathInfo = $this->getRequest()->getPathInfo(); + $oldQuery = $_SERVER['QUERY_STRING']; + $this->getRequest()->setPathInfo('/' . $redirectUrl->getPath()); + $_SERVER['QUERY_STRING'] = $redirectUrl->getParams()->toString(); + $this->tabs->ensureAssembled(); + $this->getRequest()->setPathInfo($oldPathInfo); + $_SERVER['QUERY_STRING'] = $oldQuery; + } + + $this->addPart($this->tabs); + } + + if ($pagination !== null) { + if ($redirectUrl !== null) { + $pagination->setUrl(clone $redirectUrl); + } + + $this->addPart($pagination); + } + + if (! $this->content->isEmpty()) { + $this->addPart($this->content); + } + + if (! $this->footer->isEmpty()) { + $this->addPart($this->footer); + } + + if ($redirectUrl !== null) { + $this->getResponse()->setHeader('X-Icinga-Location-Query', $redirectUrl->getParams()->toString()); + } + } + + public function postDispatch() + { + if (empty($this->parts)) { + if (! $this->content->isEmpty()) { + $this->document->prepend($this->content); + + if (! $this->view->compact && ! $this->controls->isEmpty()) { + $this->document->prepend($this->controls); + } + + if (! $this->footer->isEmpty()) { + $this->document->add($this->footer); + } + } + } else { + $partSeparator = base64_encode(random_bytes(16)); + $this->getResponse()->setHeader('X-Icinga-Multipart-Content', $partSeparator); + + $this->document->setSeparator("\n$partSeparator\n"); + $this->document->add($this->parts); + } + + parent::postDispatch(); + } +} diff --git a/vendor/ipl/web/src/Compat/CompatDecorator.php b/vendor/ipl/web/src/Compat/CompatDecorator.php new file mode 100644 index 00000000..856b7588 --- /dev/null +++ b/vendor/ipl/web/src/Compat/CompatDecorator.php @@ -0,0 +1,14 @@ + 'icinga-form icinga-controls']; + + /** + * Render the content of the element to HTML + * + * A duplicate of the primary submit button is being prepended if there is more than one present + * + * @return string + */ + public function renderContent(): string + { + if (count($this->submitElements) > 1) { + return (new HtmlDocument()) + ->setHtmlContent( + $this->duplicateSubmitButton($this->submitButton), + new HtmlString(parent::renderContent()) + ) + ->render(); + } + + return parent::renderContent(); + } + + public function hasDefaultElementDecorator() + { + if (parent::hasDefaultElementDecorator()) { + return true; + } + + $this->setDefaultElementDecorator(new IcingaFormDecorator()); + + return true; + } + + /** + * Return a duplicate of the given submit button with the `class` attribute fixed to `primary-submit-btn-duplicate` + * + * @param FormSubmitElement $originalSubmitButton + * + * @return SubmitElement + */ + public function duplicateSubmitButton(FormSubmitElement $originalSubmitButton): SubmitElement + { + $attributes = (clone $originalSubmitButton->getAttributes()) + ->set('class', 'primary-submit-btn-duplicate'); + $attributes->remove('id'); + + return new SubmitElement($originalSubmitButton->getName(), $attributes); + } +} diff --git a/vendor/ipl/web/src/Compat/Multipart.php b/vendor/ipl/web/src/Compat/Multipart.php new file mode 100644 index 00000000..432f837d --- /dev/null +++ b/vendor/ipl/web/src/Compat/Multipart.php @@ -0,0 +1,33 @@ +for = $id; + + return $this; + } + + protected function assemble() + { + $this->prepend(HtmlString::create(sprintf('for=%s', $this->for))); + } +} diff --git a/vendor/ipl/web/src/Compat/SearchControls.php b/vendor/ipl/web/src/Compat/SearchControls.php new file mode 100644 index 00000000..4832b0af --- /dev/null +++ b/vendor/ipl/web/src/Compat/SearchControls.php @@ -0,0 +1,279 @@ + Keys are column paths, values are labels + */ + public function fetchFilterColumns(Query $query) + { + $columns = []; + foreach ($query->getResolver()->getColumnDefinitions($query->getModel()) as $name => $definition) { + $columns[$name] = $definition->getLabel(); + } + + return $columns; + } + + /** + * Get whether {@see SearchControls::createSearchBar()} and {@see SearchControls::createSearchEditor()} + * should handle form submits. + * + * @return bool + */ + private function callHandleRequest() + { + return true; + } + + /** + * Create and return the SearchBar + * + * @param Query $query The query being filtered + * @param Url $redirectUrl Url to redirect to upon success + * @param array $preserveParams Query params to preserve when redirecting + * + * @return SearchBar + */ + public function createSearchBar(Query $query, ...$params): SearchBar + { + $requestUrl = Url::fromRequest(); + $preserveParams = array_pop($params) ?? []; + $redirectUrl = array_pop($params); + + if ($redirectUrl !== null) { + $redirectUrl->addParams($requestUrl->onlyWith($preserveParams)->getParams()->toArray(false)); + } else { + $redirectUrl = $requestUrl->onlyWith($preserveParams); + } + + $filter = QueryString::fromString((string) $this->params) + ->on(QueryString::ON_CONDITION, function (Filter\Condition $condition) use ($query) { + $this->enrichFilterCondition($condition, $query); + }) + ->parse(); + + $searchBar = new SearchBar(); + $searchBar->setFilter($filter); + $searchBar->setRedirectUrl($redirectUrl); + $searchBar->setAction($redirectUrl->getAbsoluteUrl()); + $searchBar->setIdProtector([$this->getRequest(), 'protectId']); + $searchBar->addWrapper(Html::tag('div', ['class' => 'search-controls'])); + + $moduleName = $this->getRequest()->getModuleName(); + $controllerName = $this->getRequest()->getControllerName(); + + if (method_exists($this, 'completeAction')) { + $searchBar->setSuggestionUrl(Url::fromPath( + "$moduleName/$controllerName/complete", + ['_disableLayout' => true, 'showCompact' => true] + )); + } + + if (method_exists($this, 'searchEditorAction')) { + $searchBar->setEditorUrl(Url::fromPath( + "$moduleName/$controllerName/search-editor" + )->setParams($redirectUrl->getParams())); + } + + $filterColumns = $this->fetchFilterColumns($query); + $columnValidator = function (SearchBar\ValidatedColumn $column) use ($query, $filterColumns) { + $searchPath = $column->getSearchValue(); + if (strpos($searchPath, '.') === false) { + $column->setSearchValue($query->getResolver()->qualifyPath( + $searchPath, + $query->getModel()->getTableAlias() + )); + } + + try { + $definition = $query->getResolver()->getColumnDefinition($searchPath); + } catch (InvalidRelationException $_) { + list($columnPath, $columnLabel) = Seq::find($filterColumns, $searchPath, false); + if ($columnPath === null) { + $column->setMessage(t('Is not a valid column')); + $column->setSearchValue($searchPath); // Resets the qualification made above + } else { + $column->setSearchValue($columnPath); + $column->setLabel($columnLabel); + } + } + + if (isset($definition)) { + $column->setLabel($definition->getLabel()); + } + }; + + $searchBar->on(SearchBar::ON_ADD, $columnValidator) + ->on(SearchBar::ON_INSERT, $columnValidator) + ->on(SearchBar::ON_SAVE, $columnValidator) + ->on(SearchBar::ON_SENT, function (SearchBar $form) { + /** @var Url $redirectUrl */ + $redirectUrl = $form->getRedirectUrl(); + $existingParams = $redirectUrl->getParams(); + $redirectUrl->setQueryString(QueryString::render($form->getFilter())); + foreach ($existingParams->toArray(false) as $name => $value) { + if (is_int($name)) { + $name = $value; + $value = true; + } + + $redirectUrl->getParams()->addEncoded($name, $value); + } + + $form->setRedirectUrl($redirectUrl); + })->on(SearchBar::ON_SUCCESS, function (SearchBar $form) { + $this->getResponse()->redirectAndExit($form->getRedirectUrl()); + }); + + if ($this->callHandleRequest()) { + $searchBar->handleRequest(ServerRequest::fromGlobals()); + } + + return $searchBar; + } + + /** + * Create and return the SearchEditor + * + * @param Query $query The query being filtered + * @param Url $redirectUrl Url to redirect to upon success + * @param array $preserveParams Query params to preserve when redirecting + * + * @return SearchEditor + */ + public function createSearchEditor(Query $query, ...$params): SearchEditor + { + $requestUrl = Url::fromRequest(); + $preserveParams = array_pop($params) ?? []; + $redirectUrl = array_pop($params); + $moduleName = $this->getRequest()->getModuleName(); + $controllerName = $this->getRequest()->getControllerName(); + + if ($redirectUrl !== null) { + $redirectUrl->addParams($requestUrl->onlyWith($preserveParams)->getParams()->toArray(false)); + } else { + $redirectUrl = Url::fromPath("$moduleName/$controllerName"); + if (! empty($preserveParams)) { + $redirectUrl->setParams($requestUrl->onlyWith($preserveParams)->getParams()); + } + } + + $editor = new SearchEditor(); + $editor->setRedirectUrl($redirectUrl); + $editor->setAction($requestUrl->getAbsoluteUrl()); + $editor->setQueryString((string) $this->params->without($preserveParams)); + + if (method_exists($this, 'completeAction')) { + $editor->setSuggestionUrl(Url::fromPath( + "$moduleName/$controllerName/complete", + ['_disableLayout' => true, 'showCompact' => true] + )); + } + + $editor->getParser()->on(QueryString::ON_CONDITION, function (Filter\Condition $condition) use ($query) { + if ($condition->getColumn()) { + $this->enrichFilterCondition($condition, $query); + } + }); + + $filterColumns = $this->fetchFilterColumns($query); + $editor->on(SearchEditor::ON_VALIDATE_COLUMN, function ( + Filter\Condition $condition + ) use ( + $query, + $filterColumns + ) { + $searchPath = $condition->getColumn(); + if (strpos($searchPath, '.') === false) { + $condition->setColumn($query->getResolver()->qualifyPath( + $searchPath, + $query->getModel()->getTableAlias() + )); + } + + try { + $query->getResolver()->getColumnDefinition($searchPath); + } catch (InvalidRelationException $_) { + $columnPath = Seq::findKey( + $filterColumns, + $condition->metaData()->get('columnLabel', $searchPath), + false + ); + if ($columnPath === null) { + $condition->setColumn($searchPath); + throw new SearchBar\SearchException(t('Is not a valid column')); + } else { + $condition->setColumn($columnPath); + } + } + })->on(SearchEditor::ON_SUCCESS, function (SearchEditor $form) { + /** @var Url $redirectUrl */ + $redirectUrl = $form->getRedirectUrl(); + $existingParams = $redirectUrl->getParams(); + $redirectUrl->setQueryString(QueryString::render($form->getFilter())); + foreach ($existingParams->toArray(false) as $name => $value) { + if (is_int($name)) { + $name = $value; + $value = true; + } + + $redirectUrl->getParams()->addEncoded($name, $value); + } + + $this->getResponse() + ->setHeader('X-Icinga-Container', '_self') + ->redirectAndExit($redirectUrl); + }); + + if ($this->callHandleRequest()) { + $editor->handleRequest(ServerRequest::fromGlobals()); + } + + return $editor; + } + + /** + * Enrich the filter condition with meta data from the query + * + * @param Filter\Condition $condition + * @param Query $query + * + * @return void + */ + protected function enrichFilterCondition(Filter\Condition $condition, Query $query) + { + $path = $condition->getColumn(); + if (strpos($path, '.') === false) { + $path = $query->getResolver()->qualifyPath($path, $query->getModel()->getTableAlias()); + $condition->setColumn($path); + } + + try { + $label = $query->getResolver()->getColumnDefinition($path)->getLabel(); + } catch (InvalidRelationException $_) { + $label = null; + } + + if (isset($label)) { + $condition->metaData()->set('columnLabel', $label); + } + } +} diff --git a/vendor/ipl/web/src/Compat/ViewRenderer.php b/vendor/ipl/web/src/Compat/ViewRenderer.php new file mode 100644 index 00000000..48ddcc37 --- /dev/null +++ b/vendor/ipl/web/src/Compat/ViewRenderer.php @@ -0,0 +1,60 @@ + $value) { + if ($property === '_inflector') { + continue; + } + + $inject->$property = $value; + } + + Zf1HelperBroker::removeHelper('ViewRenderer'); + Zf1HelperBroker::addHelper($inject); + } + + public function getName() + { + return 'ViewRenderer'; + } + + /** + * Render the view w/o using a view script + * + * {@inheritdoc} + */ + public function render($action = null, $name = null, $noController = null) + { + $view = $this->view; + + if ($view->document->isEmpty() || $this->getRequest()->getParam('error_handler') !== null) { + parent::render($action, $name, $noController); + + return; + } + + if ($name === null) { + $name = $this->getResponseSegment(); + } + + $this->getResponse()->appendBody($view->document->render(), $name); + + $this->setNoRender(); + } +} diff --git a/vendor/ipl/web/src/Control/LimitControl.php b/vendor/ipl/web/src/Control/LimitControl.php new file mode 100644 index 00000000..b390a0a4 --- /dev/null +++ b/vendor/ipl/web/src/Control/LimitControl.php @@ -0,0 +1,123 @@ + '25', + '50' => '50', + '100' => '100', + '500' => '500' + ]; + + /** @var string Name of the URL parameter which stores the limit */ + protected $limitParam = self::DEFAULT_LIMIT_PARAM; + + /** @var int */ + protected $defaultLimit; + + /** @var Url */ + protected $url; + + protected $method = 'GET'; + + public function __construct(Url $url) + { + $this->url = $url; + } + + /** + * Get the name of the URL parameter which stores the limit + * + * @return string + */ + public function getLimitParam() + { + return $this->limitParam; + } + + /** + * Set the name of the URL parameter which stores the limit + * + * @param string $limitParam + * + * @return $this + */ + public function setLimitParam($limitParam) + { + $this->limitParam = $limitParam; + + return $this; + } + + /** + * Get the default limit + * + * @return int + */ + public function getDefaultLimit() + { + return $this->defaultLimit ?: static::DEFAULT_LIMIT; + } + + /** + * Set the default limit + * + * @param int $limit + * + * @return $this + */ + public function setDefaultLimit($limit) + { + $this->defaultLimit = $limit; + + return $this; + } + + /** + * Get the limit + * + * @return int + */ + public function getLimit() + { + return $this->url->getParam($this->getLimitParam(), $this->getDefaultLimit()); + } + + protected function assemble() + { + $this->addAttributes(['class' => 'limit-control inline']); + + $limits = static::$limits; + if ($this->defaultLimit && ! isset($limits[$this->defaultLimit])) { + $limits[$this->defaultLimit] = $this->defaultLimit; + } + + $limit = $this->getLimit(); + if (! isset($limits[$limit])) { + $limits[$limit] = $limit; + } + + $this->addElement('select', $this->getLimitParam(), [ + 'class' => 'autosubmit', + 'label' => '#', + 'options' => $limits, + 'title' => t('Change item count per page'), + 'value' => $limit + ]); + } +} diff --git a/vendor/ipl/web/src/Control/PaginationControl.php b/vendor/ipl/web/src/Control/PaginationControl.php new file mode 100644 index 00000000..00f5c207 --- /dev/null +++ b/vendor/ipl/web/src/Control/PaginationControl.php @@ -0,0 +1,523 @@ +... + */ +class PaginationControl extends BaseHtmlElement +{ + /** @var int Default maximum number of items which should be shown per page */ + protected $defaultPageSize; + + /** @var string Name of the URL parameter which stores the current page number */ + protected $pageParam = 'page'; + + /** @var string Name of the URL parameter which holds the page size. If given, overrides {@link $defaultPageSize} */ + protected $pageSizeParam = 'limit'; + + /** @var string */ + protected $pageSpacer = '…'; + + /** @var Paginatable The pagination adapter which handles the underlying data source */ + protected $paginatable; + + /** @var Url The URL to base off pagination URLs */ + protected $url; + + /** @var int Cache for the total number of items */ + private $totalCount; + + protected $tag = 'div'; + + protected $defaultAttributes = [ + 'class' => 'pagination-control', + 'role' => 'navigation' + ]; + + /** + * Create a pagination control + * + * @param Paginatable $paginatable The paginatable + * @param Url $url The URL to base off paging URLs + */ + public function __construct(Paginatable $paginatable, Url $url) + { + $this->paginatable = $paginatable; + $this->url = $url; + } + + /** + * Set the URL to base off paging URLs + * + * @param Url $url + * + * @return $this + */ + public function setUrl(Url $url) + { + $this->url = $url; + + return $this; + } + + /** + * Get the default page size + * + * @return int + */ + public function getDefaultPageSize() + { + return $this->defaultPageSize ?: LimitControl::DEFAULT_LIMIT; + } + + /** + * Set the default page size + * + * @param int $defaultPageSize + * + * @return $this + */ + public function setDefaultPageSize($defaultPageSize) + { + $this->defaultPageSize = $defaultPageSize; + + return $this; + } + + /** + * Get the name of the URL parameter which stores the current page number + * + * @return string + */ + public function getPageParam() + { + return $this->pageParam; + } + + /** + * Set the name of the URL parameter which stores the current page number + * + * @param string $pageParam + * + * @return $this + */ + public function setPageParam($pageParam) + { + $this->pageParam = $pageParam; + + return $this; + } + + /** + * Get the name of the URL parameter which stores the page size + * + * @return string + */ + public function getPageSizeParam() + { + return $this->pageSizeParam; + } + /** + * Set the name of the URL parameter which stores the page size + * + * @param string $pageSizeParam + * + * @return $this + */ + public function setPageSizeParam($pageSizeParam) + { + $this->pageSizeParam = $pageSizeParam; + + return $this; + } + + /** + * Get the total number of items + * + * @return int + */ + public function getTotalCount() + { + if ($this->totalCount === null) { + $this->totalCount = $this->paginatable->count(); + } + + return $this->totalCount; + } + + /** + * Get the current page number + * + * @return int + */ + public function getCurrentPageNumber() + { + return (int) $this->url->getParam($this->pageParam, 1); + } + + /** + * Get the configured page size + * + * @return int + */ + public function getPageSize() + { + return (int) $this->url->getParam($this->pageSizeParam, $this->getDefaultPageSize()); + } + + /** + * Get the total page count + * + * @return int + */ + public function getPageCount() + { + $pageSize = $this->getPageSize(); + + if ($pageSize === 0) { + return 0; + } + + if ($pageSize < 0) { + return 1; + } + + return (int) ceil($this->getTotalCount() / $pageSize); + } + + /** + * Get the limit + * + * Use this method to set the LIMIT part of a query for fetching the current page. + * + * @return int If the page size is infinite, -1 will be returned + */ + public function getLimit() + { + $pageSize = $this->getPageSize(); + + return $pageSize < 0 ? -1 : $pageSize; + } + + /** + * Get the offset + * + * Use this method to set the OFFSET part of a query for fetching the current page. + * + * @return int + */ + public function getOffset() + { + $currentPageNumber = $this->getCurrentPageNumber(); + $pageSize = $this->getPageSize(); + + return $currentPageNumber <= 1 ? 0 : ($currentPageNumber - 1) * $pageSize; + } + + /** + * Apply limit and offset on the paginatable + * + * @return $this + */ + public function apply() + { + $this->paginatable->limit($this->getLimit()); + $this->paginatable->offset($this->getOffset()); + + return $this; + } + + /** + * Create a URL for paging from the given page number + * + * @param int $pageNumber The page number + * @param int $pageSize The number of items per page. If you want to stick to the defaults, + * don't set this parameter + * + * @return Url + */ + public function createUrl($pageNumber, $pageSize = null) + { + $params = [$this->getPageParam() => $pageNumber]; + + if ($pageSize !== null) { + $params[$this->getPageSizeParam()] = $pageSize; + } + + return $this->url->with($params); + } + + /** + * Get the first item number of the given page + * + * @param int $pageNumber + * + * @return int + */ + protected function getFirstItemNumberOfPage($pageNumber) + { + return ($pageNumber - 1) * $this->getPageSize() + 1; + } + + /** + * Get the last item number of the given page + * + * @param int $pageNumber + * + * @return int + */ + protected function getLastItemNumberOfPage($pageNumber) + { + return min($pageNumber * $this->getPageSize(), $this->getTotalCount()); + } + + /** + * Create the label for the given page number + * + * @param int $pageNumber + * + * @return string + */ + protected function createLabel($pageNumber) + { + return sprintf( + $this->translate('Show items %u to %u of %u'), + $this->getFirstItemNumberOfPage($pageNumber), + $this->getLastItemNumberOfPage($pageNumber), + $this->getTotalCount() + ); + } + + /** + * Create and return the previous page item + * + * @return BaseHtmlElement + */ + protected function createPreviousPageItem() + { + $prevIcon = new Icon('angle-left'); + + $currentPageNumber = $this->getCurrentPageNumber(); + + if ($currentPageNumber > 1) { + $prevItem = Html::tag('li', ['class' => 'nav-item']); + + $prevItem->add(Html::tag( + 'a', + [ + 'class' => 'previous-page', + 'href' => $this->createUrl($currentPageNumber - 1), + 'title' => $this->createLabel($currentPageNumber - 1) + ], + $prevIcon + )); + } else { + $prevItem = Html::tag( + 'li', + [ + 'aria-hidden' => true, + 'class' => 'nav-item disabled' + ] + ); + + $prevItem->add(Html::tag('span', ['class' => 'previous-page'], $prevIcon)); + } + + return $prevItem; + } + + /** + * Create and return the next page item + * + * @return BaseHtmlElement + */ + protected function createNextPageItem() + { + $nextIcon = new Icon('angle-right'); + + $currentPageNumber = $this->getCurrentPageNumber(); + + if ($currentPageNumber < $this->getPageCount()) { + $nextItem = Html::tag('li', ['class' => 'nav-item']); + + $nextItem->add(Html::tag( + 'a', + [ + 'class' => 'next-page', + 'href' => $this->createUrl($currentPageNumber + 1), + 'title' => $this->createLabel($currentPageNumber + 1) + ], + $nextIcon + )); + } else { + $nextItem = Html::tag( + 'li', + [ + 'aria-hidden' => true, + 'class' => 'nav-item disabled' + ] + ); + + $nextItem->add(Html::tag('span', ['class' => 'next-page'], $nextIcon)); + } + + return $nextItem; + } + + /** @TODO(el): Use ipl-translation when it's ready instead */ + private function translate($message) + { + return $message; + } + + /** + * Create and return the first page item + * + * @return BaseHtmlElement + */ + protected function createFirstPageItem() + { + $currentPageNumber = $this->getCurrentPageNumber(); + + $url = clone $this->url; + + $firstItem = Html::tag('li', ['class' => 'nav-item']); + + if ($currentPageNumber === 1) { + $firstItem->addAttributes(['class' => 'disabled']); + $firstItem->add(Html::tag( + 'span', + ['class' => 'first-page'], + $this->getFirstItemNumberOfPage(1) + )); + } else { + $firstItem->add(Html::tag( + 'a', + [ + 'class' => 'first-page', + 'href' => $url->remove(['page'])->getAbsoluteUrl(), + 'title' => $this->createLabel(1) + ], + $this->getFirstItemNumberOfPage(1) + )); + } + + return $firstItem; + } + + /** + * Create and return the last page item + * + * @return BaseHtmlElement + */ + protected function createLastPageItem() + { + $currentPageNumber = $this->getCurrentPageNumber(); + $lastItem = Html::tag('li', ['class' => 'nav-item']); + + if ($currentPageNumber === $this->getPageCount()) { + $lastItem->addAttributes(['class' => 'disabled']); + $lastItem->add(Html::tag( + 'span', + ['class' => 'last-page'], + $this->getPageCount() + )); + } else { + $lastItem->add(Html::tag( + 'a', + [ + 'class' => 'last-page', + 'href' => $this->url->setParam('page', $this->getPageCount()), + 'title' => $this->createLabel($this->getPageCount()) + ], + $this->getPageCount() + )); + } + + return $lastItem; + } + + /** + * Create and return the page selector item + * + * @return BaseHtmlElement + */ + protected function createPageSelectorItem() + { + $currentPageNumber = $this->getCurrentPageNumber(); + + $form = new CompatForm($this->url); + $form->addAttributes(['class' => 'inline']); + $form->setMethod('GET'); + + $select = Html::tag('select', [ + 'name' => $this->getPageParam(), + 'class' => 'autosubmit', + 'title' => t('Go to page …') + ]); + + if (isset($currentPageNumber)) { + if ($currentPageNumber === 1 || $currentPageNumber === $this->getPageCount()) { + $select->add(Html::tag('option', ['disabled' => '', 'selected' => ''], '…')); + } + } + + foreach (range(2, $this->getPageCount() - 1) as $page) { + $option = Html::tag('option', [ + 'value' => $page + ], $page); + + if ($page == $currentPageNumber) { + $option->addAttributes(['selected' => '']); + } + + $select->add($option); + } + + $form->add($select); + + $pageSelectorItem = Html::tag('li', $form); + + return $pageSelectorItem; + } + + protected function assemble() + { + if ($this->getPageCount() < 2) { + return; + } + + // Accessibility info + $this->add(Html::tag( + 'h2', + [ + 'class' => 'sr-only', + 'tabindex' => '-1' + ], + $this->translate('Pagination') + )); + + $paginator = Html::tag('ul', ['class' => 'tab-nav nav']); + + $paginator->add([ + $this->createFirstPageItem(), + $this->createPreviousPageItem(), + $this->createPageSelectorItem(), + $this->createNextPageItem(), + $this->createLastPageItem() + ]); + + $this->add($paginator); + } +} diff --git a/vendor/ipl/web/src/Control/SearchBar.php b/vendor/ipl/web/src/Control/SearchBar.php new file mode 100644 index 00000000..ab935ef1 --- /dev/null +++ b/vendor/ipl/web/src/Control/SearchBar.php @@ -0,0 +1,541 @@ + 'search-bar', + 'class' => 'search-bar', + 'name' => 'search-bar', + 'role' => 'search' + ]; + + /** @var Url */ + protected $editorUrl; + + /** @var Filter\Rule */ + protected $filter; + + /** @var string */ + protected $searchParameter; + + /** @var Url */ + protected $suggestionUrl; + + /** @var string */ + protected $submitLabel; + + /** @var callable */ + protected $protector; + + /** @var array */ + protected $changes; + + /** + * Set the url from which to load the editor + * + * @param Url $url + * + * @return $this + */ + public function setEditorUrl(Url $url) + { + $this->editorUrl = $url; + + return $this; + } + + /** + * Get the url from which to load the editor + * + * @return Url + */ + public function getEditorUrl() + { + return $this->editorUrl; + } + + /** + * Set the filter to use + * + * @param Filter\Rule $filter + * @return $this + */ + public function setFilter(Filter\Rule $filter) + { + $this->filter = $filter; + + return $this; + } + + /** + * Get the filter in use + * + * @return Filter\Rule + */ + public function getFilter() + { + return $this->filter; + } + + /** + * Set the search parameter to use + * + * @param string $name + * @return $this + */ + public function setSearchParameter($name) + { + $this->searchParameter = $name; + + return $this; + } + + /** + * Get the search parameter in use + * + * @return string + */ + public function getSearchParameter() + { + return $this->searchParameter ?: 'q'; + } + + /** + * Set the suggestion url + * + * @param Url $url + * @return $this + */ + public function setSuggestionUrl(Url $url) + { + $this->suggestionUrl = $url; + + return $this; + } + + /** + * Get the suggestion url + * + * @return Url + */ + public function getSuggestionUrl() + { + return $this->suggestionUrl; + } + + /** + * Set the submit label + * + * @param string $label + * @return $this + */ + public function setSubmitLabel($label) + { + $this->submitLabel = $label; + + return $this; + } + + /** + * Get the submit label + * + * @return string + */ + public function getSubmitLabel() + { + return $this->submitLabel; + } + + /** + * Set callback to protect ids with + * + * @param callable $protector + * + * @return $this + */ + public function setIdProtector($protector) + { + $this->protector = $protector; + + return $this; + } + + /** + * Get changes to be applied on the client + * + * @return array + */ + public function getChanges() + { + return $this->changes; + } + + private function protectId($id) + { + if (is_callable($this->protector)) { + return call_user_func($this->protector, $id); + } + + return $id; + } + + public function populate($values) + { + if (array_key_exists($this->getSearchParameter(), (array) $values)) { + // If a filter is set, it must be reset in case new data arrives. The new data controls the filter, + // though if no data is sent, (populate() is only called if the form is sent) then the filter must + // be reset explicitly here to not keep the outdated filter. + $this->filter = Filter::all(); + } + + parent::populate($values); + } + + public function isValidEvent($event) + { + switch ($event) { + case self::ON_ADD: + case self::ON_SAVE: + case self::ON_INSERT: + case self::ON_REMOVE: + return true; + default: + return parent::isValidEvent($event); + } + } + + private function validateCondition($eventType, $indices, $termsData, &$changes) + { + // TODO: In case of the query string validation, all three are guaranteed to be set. + // The Parser also provides defaults, why shouldn't we here? + $column = ValidatedColumn::fromTermData($termsData[0]); + $operator = isset($termsData[1]) + ? ValidatedOperator::fromTermData($termsData[1]) + : null; + $value = isset($termsData[2]) + ? ValidatedValue::fromTermData($termsData[2]) + : null; + + $this->emit($eventType, [$column, $operator, $value]); + + if ($eventType !== self::ON_REMOVE) { + if (! $column->isValid() || $column->hasBeenChanged()) { + $changes[$indices[0]] = array_merge($termsData[0], $column->toTermData()); + } + + if ($operator && ! $operator->isValid()) { + $changes[$indices[1]] = array_merge($termsData[1], $operator->toTermData()); + } + + if ($value && (! $value->isValid() || $value->hasBeenChanged())) { + $changes[$indices[2]] = array_merge($termsData[2], $value->toTermData()); + } + } + + return $column->isValid() && (! $operator || $operator->isValid()) && (! $value || $value->isValid()); + } + + + protected function assemble() + { + $termContainerId = $this->protectId('terms'); + $termInputId = $this->protectId('term-input'); + $dataInputId = $this->protectId('data-input'); + $searchInputId = $this->protectId('search-input'); + $suggestionsId = $this->protectId('suggestions'); + + $termContainer = (new Terms())->setAttribute('id', $termContainerId); + $termInput = new HiddenElement($this->getSearchParameter(), [ + 'id' => $termInputId, + 'disabled' => true + ]); + + if (! $this->getRequest()->getHeaderLine('X-Icinga-Autorefresh')) { + $termContainer->setFilter(function () { + return $this->getFilter(); + }); + $termInput->getAttributes()->registerAttributeCallback('value', function () { + return QueryString::render($this->getFilter()); + }); + } + + $dataInput = new HiddenElement('data', [ + 'id' => $dataInputId, + 'validators' => [ + new CallbackValidator(function ($data, CallbackValidator $_) use ($termContainer, $searchInputId) { + $data = $data ? json_decode($data, true) : null; + if (empty($data)) { + return true; + } + + switch ($data['type']) { + case 'add': + case 'exchange': + $type = self::ON_ADD; + + break; + case 'insert': + $type = self::ON_INSERT; + + break; + case 'save': + $type = self::ON_SAVE; + + break; + case 'remove': + $type = self::ON_REMOVE; + + break; + default: + return true; + } + + $changes = []; + $invalid = false; + $indices = [null, null, null]; + $termsData = [null, null, null]; + foreach (isset($data['terms']) ? $data['terms'] : [] as $termIndex => $termData) { + switch ($termData['type']) { + case 'column': + $indices[0] = $termIndex; + $termsData[0] = $termData; + + break; + case 'operator': + $indices[1] = $termIndex; + $termsData[1] = $termData; + + break; + case 'value': + $indices[2] = $termIndex; + $termsData[2] = $termData; + + break; + default: + if ($termsData[0] !== null) { + if (! $this->validateCondition($type, $indices, $termsData, $changes)) { + $invalid = true; + } + } + + $indices = $termsData = [null, null, null]; + } + } + + if ($termsData[0] !== null) { + if (! $this->validateCondition($type, $indices, $termsData, $changes)) { + $invalid = true; + } + } + + if (! empty($changes)) { + $this->changes = ['#' . $searchInputId, $changes]; + $termContainer->applyChanges($changes); + } + + return ! $invalid; + }) + ] + ]); + $this->registerElement($dataInput); + + $filterInput = new InputElement($this->getSearchParameter(), [ + 'type' => 'text', + 'placeholder' => 'Type to search. Use * as wildcard.', + 'class' => 'filter-input', + 'id' => $searchInputId, + 'autocomplete' => 'off', + 'data-enrichment-type' => 'filter', + 'data-data-input' => '#' . $dataInputId, + 'data-term-input' => '#' . $termInputId, + 'data-term-container' => '#' . $termContainerId, + 'data-term-suggestions' => '#' . $suggestionsId, + 'data-missing-log-op' => t('Please add a logical operator on the left.'), + 'data-incomplete-group' => t('Please close or remove this group.'), + 'data-choose-template' => t('Please type one of: %s', '..'), + 'data-choose-column' => t('Please enter a valid column.'), + 'validators' => [ + new CallbackValidator(function ($q, CallbackValidator $validator) use ($searchInputId) { + $submitted = $this->hasBeenSubmitted(); + $invalid = false; + $changes = []; + + $parser = QueryString::fromString($q); + $parser->on(QueryString::ON_CONDITION, function (Filter\Condition $condition) use ( + &$invalid, + &$changes, + $submitted + ) { + $columnIndex = $condition->metaData()->get('columnIndex'); + if (isset($this->changes[1][$columnIndex])) { + $change = $this->changes[1][$columnIndex]; + $condition->setColumn($change['search']); + } elseif (empty($this->changes)) { + $column = ValidatedColumn::fromFilterCondition($condition); + $operator = ValidatedOperator::fromFilterCondition($condition); + $value = ValidatedValue::fromFilterCondition($condition); + $this->emit(self::ON_ADD, [$column, $operator, $value]); + + $condition->setColumn($column->getSearchValue()); + $condition->setValue($value->getSearchValue()); + + if (! $column->isValid()) { + $invalid = true; + + if ($submitted) { + $condition->metaData()->merge($column->toMetaData()); + } else { + $changes[$columnIndex] = $column->toTermData(); + } + } + + if (! $operator->isValid()) { + $invalid = true; + + if ($submitted) { + $condition->metaData()->merge($operator->toMetaData()); + } else { + $changes[$condition->metaData()->get('operatorIndex')] = $operator->toTermData(); + } + } + + if (! $value->isValid()) { + $invalid = true; + + if ($submitted) { + $condition->metaData()->merge($value->toMetaData()); + } else { + $changes[$condition->metaData()->get('valueIndex')] = $value->toTermData(); + } + } + } + }); + + try { + $filter = $parser->parse(); + } catch (ParseException $e) { + $charAt = $e->getCharPos() - 1; + $char = $e->getChar(); + + $this->getElement($this->getSearchParameter()) + ->addAttributes([ + 'title' => sprintf(t('Unexpected %s at start of input'), $char), + 'pattern' => sprintf('^(?!%s).*', $char === ')' ? '\)' : $char), + 'data-has-syntax-error' => true + ]) + ->getAttributes() + ->registerAttributeCallback('value', function () use ($q, $charAt) { + return substr($q, $charAt); + }); + + $probablyValidQueryString = substr($q, 0, $charAt); + $this->setFilter(QueryString::parse($probablyValidQueryString)); + return false; + } + + $this->getElement($this->getSearchParameter()) + ->getAttributes() + ->registerAttributeCallback('value', function () { + return ''; + }); + $this->setFilter($filter); + + if (! empty($changes)) { + $this->changes = ['#' . $searchInputId, $changes]; + } + + return ! $invalid; + }) + ] + ]); + if ($this->getSuggestionUrl() !== null) { + $filterInput->getAttributes()->registerAttributeCallback('data-suggest-url', function () { + return (string) $this->getSuggestionUrl(); + }); + } + + $this->registerElement($filterInput); + + $submitButton = new SubmitElement('submit', ['label' => $this->getSubmitLabel() ?: 'hidden']); + $this->registerElement($submitButton); + + $editorOpener = null; + if ($this->getEditorUrl() !== null) { + $editorOpener = new HtmlElement( + 'button', + Attributes::create([ + 'type' => 'button', + 'class' => 'search-editor-opener control-button', + 'title' => t('Adjust Filter') + ])->registerAttributeCallback('data-search-editor-url', function () { + return (string) $this->getEditorUrl(); + }), + new Icon('cog') + ); + } + + $this->addHtml( + new HtmlElement( + 'button', + Attributes::create(['type' => 'button', 'class' => 'search-options']), + new Icon('search') + ), + new HtmlElement( + 'div', + Attributes::create(['class' => 'filter-input-area']), + $termContainer, + new HtmlElement('label', Attributes::create(['data-label' => '']), $filterInput) + ), + $dataInput, + $termInput, + $submitButton, + $this->createUidElement(), + new HtmlElement('div', Attributes::create([ + 'id' => $suggestionsId, + 'class' => 'search-suggestions', + 'data-base-target' => $suggestionsId + ])) + ); + + // Render the editor container outside of this form. It will contain a form as well later on + // loaded by XHR and HTML prohibits nested forms. It's style-wise also better... + $doc = new HtmlDocument(); + $this->prependWrapper($doc); + $doc->addHtml($this, ...($editorOpener ? [$editorOpener] : [])); + } +} diff --git a/vendor/ipl/web/src/Control/SearchBar/SearchException.php b/vendor/ipl/web/src/Control/SearchBar/SearchException.php new file mode 100644 index 00000000..a89c6ce1 --- /dev/null +++ b/vendor/ipl/web/src/Control/SearchBar/SearchException.php @@ -0,0 +1,9 @@ +searchTerm = $term; + + return $this; + } + + public function setData($data) + { + $this->data = $data; + + return $this; + } + + public function setDefault($default) + { + $this->default = $default; + + return $this; + } + + public function setType($type) + { + $this->type = $type; + + return $this; + } + + public function setFailureMessage($message) + { + $this->failureMessage = $message; + + return $this; + } + + /** + * Return whether the relation should be shown for the given column + * + * @param string $column + * + * @return bool + */ + protected function shouldShowRelationFor(string $column): bool + { + return false; + } + + /** + * Create a filter to provide as default for column suggestions + * + * @param string $searchTerm + * + * @return Filter\Rule + */ + abstract protected function createQuickSearchFilter($searchTerm); + + /** + * Fetch value suggestions for a particular column + * + * @param string $column + * @param string $searchTerm + * @param Filter\Chain $searchFilter + * + * @return Traversable + */ + abstract protected function fetchValueSuggestions($column, $searchTerm, Filter\Chain $searchFilter); + + /** + * Fetch column suggestions + * + * @param string $searchTerm + * + * @return Traversable + */ + abstract protected function fetchColumnSuggestions($searchTerm); + + protected function filterToTerms(Filter\Chain $filter) + { + $logicalSep = [ + 'label' => QueryString::getRuleSymbol($filter), + 'search' => QueryString::getRuleSymbol($filter), + 'class' => 'logical_operator', + 'type' => 'logical_operator' + ]; + + $terms = []; + foreach ($filter as $child) { + if ($child instanceof Filter\Chain) { + $terms[] = [ + 'search' => '(', + 'label' => '(', + 'type' => 'grouping_operator', + 'class' => 'grouping_operator_open' + ]; + $terms = array_merge($terms, $this->filterToTerms($child)); + $terms[] = [ + 'search' => ')', + 'label' => ')', + 'type' => 'grouping_operator', + 'class' => 'grouping_operator_close' + ]; + } else { + /** @var Filter\Condition $child */ + + $terms[] = [ + 'search' => $child->getColumn(), + 'label' => $child->metaData()->get('columnLabel') ?? $child->getColumn(), + 'type' => 'column' + ]; + $terms[] = [ + 'search' => QueryString::getRuleSymbol($child), + 'label' => QueryString::getRuleSymbol($child), + 'type' => 'operator' + ]; + $terms[] = [ + 'search' => $child->getValue(), + 'label' => $child->getValue(), + 'type' => 'value' + ]; + } + + $terms[] = $logicalSep; + } + + array_pop($terms); + return $terms; + } + + protected function assembleDefault() + { + if ($this->default === null) { + return; + } + + $attributes = [ + 'type' => 'button', + 'tabindex' => -1, + 'data-label' => $this->default['search'], + 'value' => $this->default['search'] + ]; + if (isset($this->default['type'])) { + $attributes['data-type'] = $this->default['type']; + } elseif ($this->type !== null) { + $attributes['data-type'] = $this->type; + } + + $button = new ButtonElement(null, $attributes); + if (isset($this->default['type']) && $this->default['type'] === 'terms') { + $terms = $this->filterToTerms($this->default['terms']); + $list = new HtmlElement('ul', Attributes::create(['class' => 'comma-separated'])); + foreach ($terms as $data) { + if ($data['type'] === 'column') { + $list->addHtml(new HtmlElement( + 'li', + null, + new HtmlElement('em', null, Text::create($data['label'])) + )); + } + } + + $button->setAttribute('data-terms', json_encode($terms)); + $button->addHtml(FormattedString::create( + t('Search for %s in: %s'), + new HtmlElement('em', null, Text::create($this->default['search'])), + $list + )); + } else { + $button->addHtml(FormattedString::create( + t('Search for %s'), + new HtmlElement('em', null, Text::create($this->default['search'])) + )); + } + + $this->prependHtml(new HtmlElement('li', Attributes::create(['class' => 'default']), $button)); + } + + protected function assemble() + { + if ($this->failureMessage !== null) { + $this->addHtml(new HtmlElement( + 'li', + Attributes::create(['class' => 'failure-message']), + new HtmlElement('em', null, Text::create(t('Can\'t search:'))), + Text::create($this->failureMessage) + )); + return; + } + + if ($this->data === null) { + $data = []; + } elseif ($this->data instanceof Paginatable) { + $this->data->limit(self::DEFAULT_LIMIT); + $data = $this->data; + } else { + $data = new LimitIterator(new IteratorIterator($this->data), 0, self::DEFAULT_LIMIT); + } + + foreach ($data as $term => $meta) { + if (is_int($term)) { + $term = $meta; + } + + $attributes = [ + 'type' => 'button', + 'tabindex' => -1, + 'data-search' => $term, + 'data-title' => $term + ]; + if ($this->type !== null) { + $attributes['data-type'] = $this->type; + } + + if (is_array($meta)) { + foreach ($meta as $key => $value) { + if ($key === 'label') { + $label = $value; + } + + $attributes['data-' . $key] = $value; + } + } else { + $label = $meta; + $attributes['data-label'] = $meta; + } + + $button = (new ButtonElement(null, $attributes)) + ->setAttribute('value', $label) + ->addHtml(Text::create($label)); + if ($this->type === 'column' && $this->shouldShowRelationFor($term)) { + $relationPath = substr($term, 0, strrpos($term, '.')); + $button->getAttributes()->add('class', 'has-details'); + $button->addHtml(new HtmlElement( + 'span', + Attributes::create(['class' => 'relation-path']), + Text::create($relationPath) + )); + } + + $this->addHtml(new HtmlElement('li', null, $button)); + } + + if ($this->hasMore($data, self::DEFAULT_LIMIT)) { + $this->getAttributes()->add('class', 'has-more'); + } + + $showDefault = true; + if ($this->searchTerm && $this->count() === 1) { + // The default option is only shown if the user's input does not result in an exact match + $input = $this->getFirst('li')->getFirst('button'); + $showDefault = $input->getContent() != $this->searchTerm + && $input->getAttributes()->get('data-search')->getValue() != $this->searchTerm; + } + + if ($this->type === 'column' && ! $this->isEmpty() && ! $this->getFirst('li')->getAttributes()->has('class')) { + // The column title is only added if there are any suggestions and the first item is not a title already + $this->prependHtml(new HtmlElement( + 'li', + Attributes::create(['class' => static::SUGGESTION_TITLE_CLASS]), + Text::create(t('Columns')) + )); + } + + if ($showDefault) { + $this->assembleDefault(); + } + + if (! $this->searchTerm && $this->isEmpty()) { + $this->addHtml(new HtmlElement( + 'li', + Attributes::create(['class' => 'nothing-to-suggest']), + new HtmlElement('em', null, Text::create(t('Nothing to suggest'))) + )); + } + } + + /** + * Load suggestions as requested by the client + * + * @param ServerRequestInterface $request + * + * @return $this + */ + public function forRequest(ServerRequestInterface $request) + { + if ($request->getMethod() !== 'POST') { + return $this; + } + + $requestData = json_decode($request->getBody()->read(8192), true); + if (empty($requestData)) { + return $this; + } + + $search = $requestData['term']['search']; + $label = $requestData['term']['label']; + $type = $requestData['term']['type']; + + $this->setSearchTerm($search); + $this->setType($type); + + switch ($type) { + case 'value': + if (! $requestData['column'] || $requestData['column'] === SearchEditor::FAKE_COLUMN) { + $this->setFailureMessage(t('Missing column name')); + break; + } + + $searchFilter = QueryString::parse( + isset($requestData['searchFilter']) + ? $requestData['searchFilter'] + : '' + ); + if ($searchFilter instanceof Filter\Condition) { + $searchFilter = Filter::all($searchFilter); + } + + try { + $this->setData($this->fetchValueSuggestions($requestData['column'], $label, $searchFilter)); + } catch (SearchException $e) { + $this->setFailureMessage($e->getMessage()); + } + + if ($search) { + $this->setDefault(['search' => $label]); + } + + break; + case 'column': + $this->setData($this->filterColumnSuggestions($this->fetchColumnSuggestions($label), $label)); + + if ($search && isset($requestData['showQuickSearch']) && $requestData['showQuickSearch']) { + $quickFilter = $this->createQuickSearchFilter($label); + if (! $quickFilter instanceof Filter\Chain || ! $quickFilter->isEmpty()) { + $this->setDefault([ + 'search' => $label, + 'type' => 'terms', + 'terms' => $quickFilter + ]); + } + } + } + + return $this; + } + + protected function hasMore($data, $than) + { + if (is_array($data)) { + return count($data) > $than; + } elseif ($data instanceof Countable) { + return $data->count() > $than; + } elseif ($data instanceof OuterIterator) { + return $this->hasMore($data->getInnerIterator(), $than); + } + + return false; + } + + /** + * Filter the given suggestions by the client's input + * + * @param Traversable $data + * @param string $searchTerm + * + * @return Generator + */ + protected function filterColumnSuggestions($data, $searchTerm) + { + foreach ($data as $key => $value) { + if ($this->matchSuggestion($key, $value, $searchTerm)) { + yield $key => $value; + } + } + } + + /** + * Get whether the given suggestion should be provided to the client + * + * @param string $path + * @param string $label + * @param string $searchTerm + * + * @return bool + */ + protected function matchSuggestion($path, $label, $searchTerm) + { + return fnmatch($searchTerm, $label, FNM_CASEFOLD) || fnmatch($searchTerm, $path, FNM_CASEFOLD); + } + + public function renderUnwrapped() + { + $this->ensureAssembled(); + + if ($this->isEmpty()) { + return ''; + } + + return parent::renderUnwrapped(); + } +} diff --git a/vendor/ipl/web/src/Control/SearchBar/Terms.php b/vendor/ipl/web/src/Control/SearchBar/Terms.php new file mode 100644 index 00000000..c81e3360 --- /dev/null +++ b/vendor/ipl/web/src/Control/SearchBar/Terms.php @@ -0,0 +1,255 @@ + 'terms']; + + /** @var callable|Filter\Rule */ + protected $filter; + + /** @var array */ + protected $changes; + + /** @var int */ + private $changeIndexCorrection = 0; + + /** @var int */ + private $currentIndex = 0; + + public function setFilter($filter) + { + $this->filter = $filter; + + return $this; + } + + /** + * Apply term changes + * + * @param array $changes + * + * @return $this + */ + public function applyChanges(array $changes) + { + $this->changes = $changes; + + return $this; + } + + protected function assemble() + { + $filter = $this->filter; + if (is_callable($filter)) { + $filter = $filter(); + } + + if ($filter === null) { + return; + } + + if ($filter instanceof Filter\Chain) { + if ($filter->isEmpty()) { + return; + } + + if ($filter instanceof Filter\None) { + $this->assembleChain($filter, $this, $filter->count() > 1); + } else { + $this->assembleConditions($filter, $this); + } + } else { + /** @var Filter\Condition $filter */ + $this->assembleCondition($filter, $this); + } + } + + protected function assembleConditions(Filter\Chain $filters, BaseHtmlElement $where) + { + foreach ($filters as $i => $filter) { + if ($i > 0) { + $logicalOperator = QueryString::getRuleSymbol($filters); + $this->assembleTerm([ + 'class' => 'logical_operator', + 'type' => 'logical_operator', + 'search' => $logicalOperator, + 'label' => $logicalOperator + ], $where); + } + + if ($filter instanceof Filter\Chain) { + $this->assembleChain($filter, $where, $filter->count() > 1); + } else { + /** @var Filter\Condition $filter */ + $this->assembleCondition($filter, $where); + } + } + } + + protected function assembleChain(Filter\Chain $chain, BaseHtmlElement $where, $wrap = false) + { + if ($wrap) { + $group = new HtmlElement( + 'div', + Attributes::create(['class' => 'filter-chain', 'data-group-type' => 'chain']) + ); + } else { + $group = $where; + } + + if ($chain instanceof Filter\None) { + $this->assembleTerm([ + 'class' => 'logical_operator', + 'type' => 'negation_operator', + 'search' => '!', + 'label' => '!' + ], $where); + } + + if ($wrap) { + $opening = $this->assembleTerm([ + 'class' => 'grouping_operator_open', + 'type' => 'grouping_operator', + 'search' => '(', + 'label' => '(' + ], $group); + } + + $this->assembleConditions($chain, $group); + + if ($wrap) { + $closing = $this->assembleTerm([ + 'class' => 'grouping_operator_close', + 'type' => 'grouping_operator', + 'search' => ')', + 'label' => ')' + ], $group); + + $opening->addAttributes([ + 'data-counterpart' => $closing->getAttributes()->get('data-index')->getValue() + ]); + $closing->addAttributes([ + 'data-counterpart' => $opening->getAttributes()->get('data-index')->getValue() + ]); + + $where->addHtml($group); + } + } + + protected function assembleCondition(Filter\Condition $filter, BaseHtmlElement $where) + { + $column = $filter->getColumn(); + $operator = QueryString::getRuleSymbol($filter); + $value = $filter->getValue(); + $columnLabel = $filter->metaData()->get('columnLabel', $column); + + $group = new HtmlElement( + 'div', + Attributes::create(['class' => 'filter-condition', 'data-group-type' => 'condition']), + new HtmlElement('button', Attributes::create(['type' => 'button']), new Icon('trash')) + ); + + $columnData = [ + 'class' => 'column', + 'type' => 'column', + 'search' => rawurlencode($column), + 'label' => $columnLabel, + 'title' => $column + ]; + if ($filter->metaData()->has('invalidColumnPattern')) { + $columnData['pattern'] = $filter->metaData()->get('invalidColumnPattern'); + if ($filter->metaData()->has('invalidColumnMessage')) { + $columnData['invalidMsg'] = $filter->metaData()->get('invalidColumnMessage'); + } + } + + $this->assembleTerm($columnData, $group); + + if ($value !== true) { + $operatorData = [ + 'class' => 'operator', + 'type' => 'operator', + 'search' => $operator, + 'label' => $operator + ]; + if ($filter->metaData()->has('invalidOperatorPattern')) { + $operatorData['pattern'] = $filter->metaData()->get('invalidOperatorPattern'); + if ($filter->metaData()->has('invalidOperatorMessage')) { + $operatorData['invalidMsg'] = $filter->metaData()->get('invalidOperatorMessage'); + } + } + + $this->assembleTerm($operatorData, $group); + + if (! empty($value) || ! is_string($value) || ctype_digit($value)) { + $valueData = [ + 'class' => 'value', + 'type' => 'value', + 'search' => rawurlencode($value), + 'label' => $value + ]; + if ($filter->metaData()->has('invalidValuePattern')) { + $valueData['pattern'] = $filter->metaData()->get('invalidValuePattern'); + if ($filter->metaData()->has('invalidValueMessage')) { + $valueData['invalidMsg'] = $filter->metaData()->get('invalidValueMessage'); + } + } + + $this->assembleTerm($valueData, $group); + } + } + + $where->addHtml($group); + } + + protected function assembleTerm(array $data, BaseHtmlElement $where) + { + if (isset($this->changes[$this->currentIndex - $this->changeIndexCorrection])) { + $change = $this->changes[$this->currentIndex - $this->changeIndexCorrection]; + if ($change['type'] !== $data['type']) { + // This can happen because the user didn't insert parentheses but the parser did + $this->changeIndexCorrection++; + } else { + $data = array_merge($data, $change); + } + } + + $term = new HtmlElement('label', Attributes::create([ + 'class' => $data['class'], + 'data-index' => $this->currentIndex++, + 'data-type' => $data['type'], + 'data-search' => $data['search'], + 'data-label' => $data['label'] + ]), new HtmlElement('input', Attributes::create([ + 'type' => 'text', + 'value' => $data['label'] + ]))); + + if (isset($data['title'])) { + $term->setAttribute('title', $data['title']); + } + + if (isset($data['pattern'])) { + $term->getFirst('input')->setAttribute('pattern', $data['pattern']); + + if (isset($data['invalidMsg'])) { + $term->getFirst('input')->setAttribute('data-invalid-msg', $data['invalidMsg']); + } + } + + $where->addHtml($term); + + return $term; + } +} diff --git a/vendor/ipl/web/src/Control/SearchBar/ValidatedColumn.php b/vendor/ipl/web/src/Control/SearchBar/ValidatedColumn.php new file mode 100644 index 00000000..5825790a --- /dev/null +++ b/vendor/ipl/web/src/Control/SearchBar/ValidatedColumn.php @@ -0,0 +1,44 @@ +getColumn(), $condition->metaData()->get('columnLabel')); + } + + public function toTermData() + { + $termData = parent::toTermData(); + $termData['type'] = 'column'; + + return $termData; + } + + public function toMetaData() + { + $data = new Data(); + if (($label = $this->getLabel()) !== null) { + $data->set('columnLabel', $label); + } + + if (! $this->isValid()) { + $data->set('invalidColumnMessage', $this->getMessage()) + ->set('invalidColumnPattern', $this->getPattern()); + } + + return $data; + } +} diff --git a/vendor/ipl/web/src/Control/SearchBar/ValidatedOperator.php b/vendor/ipl/web/src/Control/SearchBar/ValidatedOperator.php new file mode 100644 index 00000000..2ca6d776 --- /dev/null +++ b/vendor/ipl/web/src/Control/SearchBar/ValidatedOperator.php @@ -0,0 +1,80 @@ +'; + break; + case $condition instanceof Filter\LessThan: + $operator = '<'; + break; + case $condition instanceof Filter\GreaterThanOrEqual: + $operator = '>='; + break; + case $condition instanceof Filter\LessThanOrEqual: + $operator = '<='; + break; + default: + throw new InvalidArgumentException('Unknown condition type'); + } + + return new static($operator); + } + + public function toTermData() + { + $termData = parent::toTermData(); + $termData['type'] = 'operator'; + + return $termData; + } + + public function toMetaData() + { + $data = new Data(); + + if (! $this->isValid()) { + $data->set('invalidOperatorMessage', $this->getMessage()) + ->set('invalidOperatorPattern', $this->getPattern()); + } + + return $data; + } + + public function setSearchValue($searchValue) + { + throw new LogicException('Operators cannot be changed'); + } + + public function setLabel($label) + { + throw new LogicException('Operators cannot be changed'); + } +} diff --git a/vendor/ipl/web/src/Control/SearchBar/ValidatedTerm.php b/vendor/ipl/web/src/Control/SearchBar/ValidatedTerm.php new file mode 100644 index 00000000..e5525523 --- /dev/null +++ b/vendor/ipl/web/src/Control/SearchBar/ValidatedTerm.php @@ -0,0 +1,196 @@ +searchValue = $searchValue; + $this->label = $label; + } + + /** + * Create a new ValidatedTerm from the given data + * + * @param array $data + * + * @return static + */ + public static function fromTermData(array $data) + { + return new static($data['search'], isset($data['label']) ? $data['label'] : null); + } + + /** + * Check whether the term is valid + * + * @return bool + */ + public function isValid() + { + return $this->message === null; + } + + /** + * Check whether the term has been adjusted + * + * @return bool + */ + public function hasBeenChanged() + { + return $this->changed; + } + + /** + * Get the search value + * + * @return mixed + */ + public function getSearchValue() + { + return $this->searchValue; + } + + /** + * Set the search value + * + * @param mixed $searchValue + * + * @return $this + */ + public function setSearchValue($searchValue) + { + $this->searchValue = $searchValue; + $this->changed = true; + + return $this; + } + + /** + * Get the label + * + * @return string + */ + public function getLabel() + { + return $this->label; + } + + /** + * Set the label + * + * @param string $label + * + * @return $this + */ + public function setLabel($label) + { + $this->label = (string) $label; + $this->changed = true; + + return $this; + } + + /** + * Get the validation message + * + * @return string + */ + public function getMessage() + { + return $this->message; + } + + /** + * Set the validation message + * + * @param ?string $message + * + * @return $this + */ + public function setMessage($message) + { + $this->message = $message; + + return $this; + } + + /** + * Get the validation constraint + * + * Returns the default constraint if none is set. + * + * @return string + */ + public function getPattern() + { + if ($this->pattern === null) { + return sprintf(self::DEFAULT_PATTERN, $this->getSearchValue()); + } + + return $this->pattern; + } + + /** + * Set the validation constraint + * + * @param string $pattern + * + * @return $this + */ + public function setPattern($pattern) + { + $this->pattern = (string) $pattern; + + return $this; + } + + /** + * Get this term's data + * + * @return array + */ + public function toTermData() + { + return [ + 'search' => $this->getSearchValue(), + 'label' => $this->getLabel() ?: $this->getSearchValue(), + 'invalidMsg' => $this->getMessage(), + 'pattern' => $this->getPattern() + ]; + } + + /** + * Get this term's metadata + * + * @return Data + */ + abstract public function toMetaData(); +} diff --git a/vendor/ipl/web/src/Control/SearchBar/ValidatedValue.php b/vendor/ipl/web/src/Control/SearchBar/ValidatedValue.php new file mode 100644 index 00000000..423102dd --- /dev/null +++ b/vendor/ipl/web/src/Control/SearchBar/ValidatedValue.php @@ -0,0 +1,41 @@ +getValue()); + } + + public function toTermData() + { + $termData = parent::toTermData(); + $termData['type'] = 'value'; + + return $termData; + } + + public function toMetaData() + { + $data = new Data(); + + if (! $this->isValid()) { + $data->set('invalidValueMessage', $this->getMessage()) + ->set('invalidValuePattern', $this->getPattern()); + } + + return $data; + } +} diff --git a/vendor/ipl/web/src/Control/SearchEditor.php b/vendor/ipl/web/src/Control/SearchEditor.php new file mode 100644 index 00000000..dfcde2e5 --- /dev/null +++ b/vendor/ipl/web/src/Control/SearchEditor.php @@ -0,0 +1,617 @@ + 'search-editor', + 'class' => 'search-editor' + ]; + + /** @var string */ + protected $queryString; + + /** @var Url */ + protected $suggestionUrl; + + /** @var Parser */ + protected $parser; + + /** @var Filter\Rule */ + protected $filter; + + /** @var bool */ + protected $cleared = false; + + /** + * Set the filter query string to populate the form with + * + * Use {@see SearchEditor::getParser()} to subscribe to parser events. + * + * @param string $query + * + * @return $this + */ + public function setQueryString($query) + { + $this->queryString = $query; + + return $this; + } + + /** + * Get the suggestion url + * + * @return ?Url + */ + public function getSuggestionUrl(): ?Url + { + return $this->suggestionUrl; + } + + /** + * Set the suggestion url + * + * @param Url $url + * + * @return $this + */ + public function setSuggestionUrl(Url $url) + { + $this->suggestionUrl = $url; + + return $this; + } + + /** + * Get the query string parser being used + * + * @return Parser + */ + public function getParser() + { + if ($this->parser === null) { + $this->parser = new Parser(); + } + + return $this->parser; + } + + /** + * Get the current filter + * + * @return Filter\Rule + */ + public function getFilter() + { + if ($this->filter === null) { + $this->filter = $this->getParser() + ->setQueryString($this->queryString) + ->parse(); + } + + return $this->filter; + } + + public function populate($values) + { + // applyChanges() is basically this form's own populate implementation, hence + // why it changes $values and needs to run before actually populating the form + $filter = (new Parser(isset($values['filter']) ? $values['filter'] : $this->queryString)) + ->setStrict() + ->parse(); + $filter = $this->applyChanges($filter, $values); + + parent::populate($values); + + $this->filter = $this->applyStructuralChange($filter); + if ($this->filter !== null && ($this->filter instanceof Filter\Condition || ! $this->filter->isEmpty())) { + $this->queryString = (new Renderer($this->filter))->setStrict()->render(); + } else { + $this->queryString = ''; + } + + return $this; + } + + public function hasBeenSubmitted() + { + if (parent::hasBeenSubmitted()) { + return true; + } + + return $this->cleared; + } + + public function validate() + { + if ($this->cleared) { + $this->isValid = true; + } else { + parent::validate(); + } + + return $this; + } + + protected function applyChanges(Filter\Rule $rule, array &$values, array $path = [0]) + { + $identifier = 'rule-' . join('-', $path); + + if ($rule instanceof Filter\Condition) { + $newColumn = $this->popKey($values, $identifier . '-column-search'); + if ($newColumn === null) { + $newColumn = $this->popKey($values, $identifier . '-column'); + } else { + // Make sure we don't forget to present the column labels again + $rule->metaData()->set('columnLabel', $this->popKey($values, $identifier . '-column')); + } + + if ($newColumn !== null && $rule->getColumn() !== $newColumn) { + $rule->setColumn($newColumn ?: static::FAKE_COLUMN); + // TODO: Clear meta data? + } + + $newValue = $this->popKey($values, $identifier . '-value'); + $oldValue = $rule->getValue(); + if ($newValue !== null && $oldValue !== $newValue) { + $rule->setValue($newValue); + } + + $newOperator = $this->popKey($values, $identifier . '-operator'); + if ($newOperator !== null && QueryString::getRuleSymbol($rule) !== $newOperator) { + $value = $rule->getValue(); + $column = $rule->getColumn(); + switch ($newOperator) { + case '=': + if (is_string($value) && strpos($value, '*') !== false) { + return Filter::like($column, $value); + } + + return Filter::equal($column, $value); + case '!=': + if (is_string($value) && strpos($value, '*') !== false) { + return Filter::unlike($column, $value); + } + + return Filter::unequal($column, $value); + case '>': + return Filter::greaterThan($column, $value); + case '>=': + return Filter::greaterThanOrEqual($column, $value); + case '<': + return Filter::lessThan($column, $value); + case '<=': + return Filter::lessThanOrEqual($column, $value); + } + } + + $value = $rule->getValue(); + if ($oldValue !== $value && is_string($value) && strpos($value, '*') !== false) { + if (QueryString::getRuleSymbol($rule) === '=') { + return Filter::like($rule->getColumn(), $value); + } elseif (QueryString::getRuleSymbol($rule) === '!=') { + return Filter::unlike($rule->getColumn(), $value); + } + } + } else { + /** @var Filter\Chain $rule */ + $newGroupOperator = $this->popKey($values, $identifier); + $oldGroupOperator = $rule instanceof Filter\None ? '!' : QueryString::getRuleSymbol($rule); + if ($newGroupOperator !== null && $oldGroupOperator !== $newGroupOperator) { + switch ($newGroupOperator) { + case '&': + $rule = Filter::all(...$rule); + break; + case '|': + $rule = Filter::any(...$rule); + break; + case '!': + $rule = Filter::none(...$rule); + break; + } + } + + $i = 0; + foreach ($rule as $child) { + $childPath = $path; + $childPath[] = $i++; + $newChild = $this->applyChanges($child, $values, $childPath); + if ($child !== $newChild) { + $rule->replace($child, $newChild); + } + } + } + + return $rule; + } + + protected function applyStructuralChange(Filter\Rule $rule) + { + $structuralChange = $this->getPopulatedValue('structural-change'); + if (empty($structuralChange)) { + return $rule; + } elseif (is_array($structuralChange)) { + ksort($structuralChange); + } + + list($type, $where) = explode(':', is_array($structuralChange) + ? array_shift($structuralChange) + : $structuralChange); + $targetPath = explode('-', substr($where, 5)); + + $targetFinder = function ($path) use ($rule) { + $parent = null; + $target = null; + $children = [$rule]; + foreach ($path as $targetPos) { + if ($target !== null) { + $parent = $target; + $children = $parent instanceof Filter\Chain + ? iterator_to_array($parent) + : []; + } + + if (! isset($children[$targetPos])) { + return [null, null]; + } + + $target = $children[$targetPos]; + } + + return [$parent, $target]; + }; + + list($parent, $target) = $targetFinder($targetPath); + if ($target === null) { + return $rule; + } + + $emptyEqual = Filter::equal(static::FAKE_COLUMN, ''); + switch ($type) { + case 'move-rule': + if (! is_array($structuralChange) || empty($structuralChange)) { + return $rule; + } + + list($placement, $moveToPath) = explode(':', array_shift($structuralChange)); + list($moveToParent, $moveToTarget) = $targetFinder(explode('-', substr($moveToPath, 5))); + + $parent->remove($target); + if ($placement === 'to') { + $moveToTarget->add($target); + } elseif ($placement === 'before') { + $moveToParent->insertBefore($target, $moveToTarget); + } else { + $moveToParent->insertAfter($target, $moveToTarget); + } + + break; + case 'add-condition': + $target->add($emptyEqual); + + break; + case 'add-group': + $target->add(Filter::all($emptyEqual)); + + break; + case 'wrap-rule': + if ($parent !== null) { + $parent->replace($target, Filter::all($target)); + } else { + $rule = Filter::all($target); + } + + break; + case 'drop-rule': + if ($parent !== null) { + $parent->remove($target); + } else { + $rule = $emptyEqual; + } + + break; + case 'clear': + $this->cleared = true; + $rule = null; + } + + return $rule; + } + + protected function createTree(Filter\Rule $rule, array $path = [0]) + { + $identifier = 'rule-' . join('-', $path); + + if ($rule instanceof Filter\Condition) { + $parts = [$this->createCondition($rule, $identifier), $this->createButtons($rule, $identifier)]; + + if (count($path) === 1) { + $item = new HtmlElement('ol', null, new HtmlElement( + 'li', + Attributes::create(['id' => $identifier]), + ...$parts + )); + } else { + array_splice($parts, 1, 0, [ + new Icon('bars', ['class' => 'drag-initiator']) + ]); + + $item = (new HtmlDocument())->addHtml(...$parts); + } + } else { + /** @var Filter\Chain $rule */ + $item = new HtmlElement('ul'); + + $groupOperatorInput = $this->createElement('select', $identifier, [ + 'options' => [ + '&' => 'ALL', + '|' => 'ANY', + '!' => 'NONE' + ], + 'value' => $rule instanceof Filter\None ? '!' : QueryString::getRuleSymbol($rule) + ]); + $this->registerElement($groupOperatorInput); + $item->addHtml(HtmlElement::create('li', ['id' => $identifier], [ + $groupOperatorInput, + count($path) > 1 + ? new Icon('bars', ['class' => 'drag-initiator']) + : null, + $this->createButtons($rule, $identifier) + ])); + + $children = new HtmlElement('ol'); + $item->addHtml(new HtmlElement('li', null, $children)); + + $i = 0; + foreach ($rule as $child) { + $childPath = $path; + $childPath[] = $i++; + $children->addHtml(new HtmlElement( + 'li', + Attributes::create([ + 'id' => 'rule-' . join('-', $childPath), + 'class' => $child instanceof Filter\Condition + ? 'filter-condition' + : 'filter-chain' + ]), + $this->createTree($child, $childPath) + )); + } + } + + return $item; + } + + protected function createButtons(Filter\Rule $for, $identifier) + { + $buttons = []; + + if ($for instanceof Filter\Chain) { + $buttons[] = $this->createElement('submitButton', 'structural-change', [ + 'value' => 'add-condition:' . $identifier, + 'label' => t('Add Condition', 'to a group of filter conditions'), + 'formnovalidate' => true + ]); + $buttons[] = $this->createElement('submitButton', 'structural-change', [ + 'value' => 'add-group:' . $identifier, + 'label' => t('Add Group', 'of filter conditions'), + 'formnovalidate' => true + ]); + } + + $buttons[] = $this->createElement('submitButton', 'structural-change', [ + 'value' => 'wrap-rule:' . $identifier, + 'label' => t('Wrap in Group', 'a filter rule'), + 'formnovalidate' => true + ]); + $buttons[] = $this->createElement('submitButton', 'structural-change', [ + 'value' => 'drop-rule:' . $identifier, + 'label' => t('Delete', 'a filter rule'), + 'formnovalidate' => true + ]); + + $ul = new HtmlElement('ul'); + foreach ($buttons as $button) { + $ul->addHtml(new HtmlElement('li', null, $button)); + } + + return new HtmlElement( + 'div', + Attributes::create(['class' => 'buttons']), + $ul, + new Icon('ellipsis-h') + ); + } + + protected function createCondition(Filter\Condition $condition, $identifier) + { + $columnInput = $this->createElement('text', $identifier . '-column', [ + 'value' => $condition->metaData()->get( + 'columnLabel', + $condition->getColumn() !== static::FAKE_COLUMN + ? $condition->getColumn() + : null + ), + 'title' => $condition->getColumn() !== static::FAKE_COLUMN + ? $condition->getColumn() + : null, + 'required' => true, + 'autocomplete' => 'off', + 'data-type' => 'column', + 'data-enrichment-type' => 'completion', + 'data-term-suggestions' => '#search-editor-suggestions' + ]); + $columnInput->getAttributes()->registerAttributeCallback('data-suggest-url', function () { + return (string) $this->getSuggestionUrl(); + }); + (new CallbackDecorator(function ($element) { + $errors = new HtmlElement('ul', Attributes::create(['class' => 'search-errors'])); + + foreach ($element->getMessages() as $message) { + $errors->addHtml(new HtmlElement('li', null, Text::create($message))); + } + + if (! $errors->isEmpty()) { + if (trim($element->getValue())) { + $element->getAttributes()->add( + 'pattern', + sprintf( + '^\s*(?!%s\b).*\s*$', + $element->getValue() + ) + ); + } + + $element->prependWrapper(new HtmlElement( + 'div', + Attributes::create(['class' => 'search-error']), + $element, + $errors + )); + } + }))->decorate($columnInput); + + $columnFakeInput = $this->createElement('hidden', $identifier . '-column-search', [ + 'value' => static::FAKE_COLUMN + ]); + $columnSearchInput = $this->createElement('hidden', $identifier . '-column-search', [ + 'value' => $condition->getColumn() !== static::FAKE_COLUMN + ? $condition->getColumn() + : null, + 'validators' => ['Callback' => function ($value) use ($condition, $columnInput, &$columnSearchInput) { + if (! $this->hasBeenSubmitted()) { + return true; + } + + try { + $this->emit(static::ON_VALIDATE_COLUMN, [$condition]); + } catch (SearchException $e) { + $columnInput->addMessage($e->getMessage()); + return false; + } + + $columnSearchInput->setValue($condition->getColumn()); + $columnInput->setValue($condition->metaData()->get('columnLabel', $condition->getColumn())); + + return true; + }] + ]); + + $operatorInput = $this->createElement('select', $identifier . '-operator', [ + 'options' => [ + '=' => '=', + '!=' => '!=', + '>' => '>', + '<' => '<', + '>=' => '>=', + '<=' => '<=' + ], + 'value' => QueryString::getRuleSymbol($condition) + ]); + + $valueInput = $this->createElement('text', $identifier . '-value', [ + 'value' => $condition->getValue(), + 'autocomplete' => 'off', + 'data-type' => 'value', + 'data-enrichment-type' => 'completion', + 'data-term-suggestions' => '#search-editor-suggestions' + ]); + $valueInput->getAttributes()->registerAttributeCallback('data-suggest-url', function () { + return (string) $this->getSuggestionUrl(); + }); + + $this->registerElement($columnInput); + $this->registerElement($columnSearchInput); + $this->registerElement($operatorInput); + $this->registerElement($valueInput); + + return new HtmlElement( + 'fieldset', + Attributes::create(['name' => $identifier . '-']), + $columnInput, + $columnFakeInput, + $columnSearchInput, + $operatorInput, + $valueInput + ); + } + + protected function assemble() + { + $filterInput = $this->createElement('hidden', 'filter'); + $filterInput->getAttributes()->registerAttributeCallback( + 'value', + function () { + return $this->queryString ?: static::FAKE_COLUMN; + }, + [$this, 'setQueryString'] + ); + $this->addElement($filterInput); + + $filter = $this->getFilter(); + if ($filter instanceof Filter\Chain && $filter->isEmpty()) { + $filter = Filter::equal('', ''); + } + + $this->addHtml($this->createTree($filter)); + $this->addHtml(new HtmlElement('div', Attributes::create([ + 'id' => 'search-editor-suggestions', + 'class' => 'search-suggestions' + ]))); + + if ($this->queryString) { + $this->addHtml($this->createElement('submitButton', 'structural-change', [ + 'value' => 'clear:rule-0', + 'class' => 'cancel-button', + 'label' => t('Clear Filter'), + 'formnovalidate' => true + ])); + } + + $this->addElement('submit', 'btn_submit', [ + 'label' => t('Apply') + ]); + + // Add submit button also as first element to make Web 2 submit + // the form instead of using a structural change to submit if + // the user just presses Enter. + $this->prepend($this->getElement('btn_submit')); + } + + private function popKey(array &$from, $key, $default = null) + { + if (isset($from[$key])) { + $value = $from[$key]; + unset($from[$key]); + + return $value; + } + + return $default; + } +} diff --git a/vendor/ipl/web/src/Control/SortControl.php b/vendor/ipl/web/src/Control/SortControl.php new file mode 100644 index 00000000..a457d923 --- /dev/null +++ b/vendor/ipl/web/src/Control/SortControl.php @@ -0,0 +1,254 @@ + 'sort-control']; + + /** @var string Name of the URL parameter which stores the sort column */ + protected $sortParam = self::DEFAULT_SORT_PARAM; + + /** @var Url Request URL */ + protected $url; + + /** @var array Possible sort columns as sort string-value pairs */ + private $columns; + + /** @var string Default sort string */ + private $default; + + protected $method = 'GET'; + + /** + * Create a new sort control + * + * @param Url $url Request URL + */ + public function __construct(Url $url) + { + $this->url = $url; + } + + /** + * Create a new sort control with the given options + * + * @param array $options A sort spec to label map + * + * @return static + */ + public static function create(array $options) + { + $normalized = []; + foreach ($options as $spec => $label) { + $normalized[SortUtil::normalizeSortSpec($spec)] = $label; + } + + return (new static(Url::fromRequest())) + ->setColumns($normalized); + } + + /** + * Get the possible sort columns + * + * @return array Sort string-value pairs + */ + public function getColumns() + { + return $this->columns; + } + + /** + * Set the possible sort columns + * + * @param array $columns Sort string-value pairs + * + * @return $this + */ + public function setColumns(array $columns) + { + // We're working with lowercase keys throughout the sort control + $this->columns = array_change_key_case($columns, CASE_LOWER); + + return $this; + } + + /** + * Get the default sort string + * + * @return string + */ + public function getDefault() + { + return $this->default; + } + + /** + * Set the default sort string + * + * @param array|string $default + * + * @return $this + */ + public function setDefault($default) + { + // We're working with lowercase keys throughout the sort control + $this->default = strtolower($default); + + return $this; + } + + /** + * Get the name of the URL parameter which stores the sort + * + * @return string + */ + public function getSortParam() + { + return $this->sortParam; + } + + /** + * Set the name of the URL parameter which stores the sort + * + * @param string $sortParam + * + * @return $this + */ + public function setSortParam($sortParam) + { + $this->sortParam = $sortParam; + + return $this; + } + + /** + * Get the sort string + * + * @return string|null + */ + public function getSort() + { + $sort = $this->url->getParam($this->getSortParam(), $this->getDefault()); + + if (! empty($sort)) { + $columns = $this->getColumns(); + + if (! isset($columns[$sort])) { + // Choose sort string based on the first closest match + foreach (array_keys($columns) as $key) { + if (Str::startsWith($key, $sort)) { + $sort = $key; + + break; + } + } + } + } + + return $sort; + } + + /** + * Sort the given query according to the request + * + * @param Query $query + * + * @return $this + */ + public function apply(Query $query) + { + $default = (array) $query->getModel()->getDefaultSort(); + if (! empty($default)) { + $this->setDefault(SortUtil::normalizeSortSpec($default)); + } + + $sort = $this->getSort(); + if (! empty($sort)) { + $query->orderBy(SortUtil::createOrderBy($sort)); + } + + return $this; + } + + protected function assemble() + { + $columns = $this->getColumns(); + $sort = $this->getSort(); + + if (empty($sort)) { + reset($columns); + $sort = key($columns); + } + + $sort = explode(',', $sort, 2); + list($column, $direction) = Str::symmetricSplit(array_shift($sort), ' ', 2); + + if (! $direction || strtolower($direction) === 'asc') { + $toggleIcon = 'sort-alpha-down'; + $toggleDirection = 'desc'; + } else { + $toggleIcon = 'sort-alpha-down-alt'; + $toggleDirection = 'asc'; + } + + if ($direction !== null) { + $value = implode(',', array_merge(["{$column} {$direction}"], $sort)); + if (! isset($columns[$value])) { + foreach ([$column, "{$column} {$toggleDirection}"] as $key) { + $key = implode(',', array_merge([$key], $sort)); + if (isset($columns[$key])) { + $columns[$value] = $columns[$key]; + unset($columns[$key]); + + break; + } + } + } + } else { + $value = implode(',', array_merge([$column], $sort)); + } + + if (! isset($columns[$value])) { + $columns[$value] = 'Custom'; + } + + $this->addElement('select', $this->getSortParam(), [ + 'class' => 'autosubmit', + 'label' => 'Sort By', + 'options' => $columns, + 'value' => $value + ]); + $select = $this->getElement($this->getSortParam()); + (new DivDecorator())->decorate($select); + + // Apply Icinga Web 2 style, for now + $select->prependWrapper(HtmlElement::create('div', ['class' => 'icinga-controls'])); + + $toggleButton = new ButtonElement($this->getSortParam(), [ + 'class' => 'control-button spinner', + 'title' => t('Change sort direction'), + 'type' => 'submit', + 'value' => implode(',', array_merge(["{$column} {$toggleDirection}"], $sort)) + ]); + $toggleButton->add(new Icon($toggleIcon)); + + $this->addElement($toggleButton); + } +} diff --git a/vendor/ipl/web/src/Filter/ParseException.php b/vendor/ipl/web/src/Filter/ParseException.php new file mode 100644 index 00000000..bcafd09a --- /dev/null +++ b/vendor/ipl/web/src/Filter/ParseException.php @@ -0,0 +1,36 @@ +char = $char; + $this->charPos = $charPos; + } + + public function getChar() + { + return $this->char; + } + + public function getCharPos() + { + return $this->charPos; + } +} diff --git a/vendor/ipl/web/src/Filter/Parser.php b/vendor/ipl/web/src/Filter/Parser.php new file mode 100644 index 00000000..248b41c8 --- /dev/null +++ b/vendor/ipl/web/src/Filter/Parser.php @@ -0,0 +1,572 @@ +setQueryString($queryString); + } + } + + /** + * Set the query string to parse + * + * @param string $queryString + * + * @return $this + */ + public function setQueryString($queryString) + { + $this->string = (string) $queryString; + $this->length = strlen($queryString); + + return $this; + } + + /** + * Set whether strict mode is enabled + * + * @param bool $strict + * + * @return $this + */ + public function setStrict($strict = true) + { + $this->strict = (bool) $strict; + + return $this; + } + + /** + * Parse the string and derive a filter rule from it + * + * @return Filter\Rule + */ + public function parse() + { + if ($this->length === 0) { + return Filter::all(); + } + + $this->pos = 0; + $this->termIndex = 0; + + return $this->readFilters(); + } + + /** + * Read filters + * + * @param int $nestingLevel + * @param string $op + * @param array $filters + * @param bool $explicit + * + * @return Filter\Chain|Filter\Condition + * @throws ParseException + */ + protected function readFilters($nestingLevel = 0, $op = null, $filters = null, $explicit = true) + { + $filters = empty($filters) ? [] : $filters; + $isNone = false; + + while ($this->pos < $this->length) { + $filter = $this->readCondition(); + $next = $this->readChar(); + + if ($filter === false) { + if ($next === '!') { + $isNone = true; + $this->termIndex++; + continue; + } + + if ($op === null && ($this->strict || count($filters) > 0) && ($next === '&' || $next === '|')) { + $op = $next; + $this->termIndex++; + continue; + } + + if ($next === false) { + // Nothing more to read + break; + } + + if ($next === ')') { + if ($nestingLevel > 0) { + if (! $explicit) { + // The current chain was not initiated by a `(`, + // so this `)` does not belong to it, but still ends it + $this->pos--; + } else { + $this->termIndex++; + $next = $this->nextChar(); + if ($next !== false && ! in_array($next, ['&', '|', ')'])) { + $this->pos++; + $this->parseError($next, 'Expected logical operator'); + } + } + + break; + } + + $this->parseError($next); + } + + if ($next === '(') { + $this->termIndex++; + + $rule = $this->readFilters($nestingLevel + 1, $isNone ? '!' : null); + if ($this->strict || ! $rule instanceof Filter\Chain || ! $rule->isEmpty()) { + $filters[] = $rule; + } + + $isNone = false; + continue; + } + + if ($next === $op) { + $this->termIndex++; + continue; + } + + if (in_array($next, ['&', '|'])) { + $this->termIndex++; + + // It's a different logical operator, continue parsing based on its precedence + if ($op === '&') { + if (! empty($filters)) { + if (count($filters) > 1) { + $all = Filter::all(...$filters); + $filters = [$all]; + + $this->emit(self::ON_CHAIN, [$all]); + } else { + $filters = [$filters[0]]; + } + } + + $op = $next; + } elseif ($op === '|' || ($op === '!' && $next === '&')) { + $rule = $this->readFilters( + $nestingLevel + 1, + $next, + [array_pop($filters)], + false + ); + if (! $rule instanceof Filter\Chain || ! $rule->isEmpty()) { + $filters[] = $rule; + } + } + + continue; + } + + $this->parseError($next, "$op level $nestingLevel"); + } else { + if ($isNone) { + $isNone = false; + if ($filter->getValue() === true) { + // $filter is a result of `!column` + $filter->setValue(false); + $filters[] = $filter; + + $this->emit(self::ON_CONDITION, [$filter]); + } else { + // $filter is a result of `!column=[value]` + $none = Filter::none($filter); + $filters[] = $none; + + $this->emit(self::ON_CONDITION, [$filter]); + $this->emit(self::ON_CHAIN, [$none]); + } + } else { + $filters[] = $filter; + $this->emit(self::ON_CONDITION, [$filter]); + } + + if ($next === false) { + // Got filter, nothing more to read + break; + } + + if ($next === ')') { + if ($nestingLevel > 0) { + if (! $explicit) { + // The current chain was not initiated by a `(`, + // so this `)` does not belong to it, but still ends it + $this->pos--; + } else { + $this->termIndex++; + $next = $this->nextChar(); + if ($next !== false && ! in_array($next, ['&', '|', ')'])) { + $this->pos++; + $this->parseError($next, 'Expected logical operator'); + } + } + + break; + } + + $this->parseError($next); + } + + if ($next === $op) { + $this->termIndex++; + continue; + } + + if (in_array($next, ['&', '|'])) { + $this->termIndex++; + + // It's a different logical operator, continue parsing based on its precedence + if ($op === null || $op === '&') { + if ($op === '&') { + if (count($filters) > 1) { + $all = Filter::all(...$filters); + $filters = [$all]; + + $this->emit(self::ON_CHAIN, [$all]); + } else { + $filters = [$filters[0]]; + } + } + + $op = $next; + } elseif ($op === '|' || ($op === '!' && $next === '&')) { + $rule = $this->readFilters( + $nestingLevel + 1, + $next, + [array_pop($filters)], + false + ); + if (! $rule instanceof Filter\Chain || ! $rule->isEmpty()) { + $filters[] = $rule; + } + } + + continue; + } + + $this->parseError($next); + } + } + + if ($nestingLevel === 0 && $this->pos < $this->length) { + $this->parseError($op, 'Did not read full filter'); + } + + switch ($op) { + case '&': + $chain = Filter::all(...$filters); + break; + case '|': + $chain = Filter::any(...$filters); + break; + case '!': + $chain = Filter::none(...$filters); + break; + case null: + if ((! $this->strict || $nestingLevel === 0) && ! empty($filters)) { + // There is only one filter expression, no chain + return $filters[0]; + } + + $chain = Filter::all(...$filters); + break; + default: + $this->parseError($op); + } + + $this->emit(self::ON_CHAIN, [$chain]); + + return $chain; + } + + /** + * Read the next condition + * + * @return false|Filter\Condition + * + * @throws ParseException + */ + protected function readCondition() + { + if ('' === ($column = $this->readColumn())) { + return false; + } + + $columnIndex = $this->termIndex++; + + foreach (['<', '>'] as $operator) { + if (($pos = strpos($column, $operator)) !== false) { + if ($this->nextChar() === '=') { + break; + } + + $operatorIndex = $this->termIndex++; + + $value = substr($column, $pos + 1); + $column = substr($column, 0, $pos); + + $valueIndex = null; + if (ctype_digit($value)) { + $value = (float) $value; + $valueIndex = $this->termIndex++; + } elseif ($value) { + $valueIndex = $this->termIndex++; + } + + $condition = $this->createCondition($column, $operator, $value); + $condition->metaData() + ->set('columnIndex', $columnIndex) + ->set('operatorIndex', $operatorIndex) + ->set('valueIndex', $valueIndex); + + return $condition; + } + } + + if (in_array($this->nextChar(), ['=', '>', '<', '!'], true)) { + $operator = $this->readChar(); + } else { + $operator = false; + } + + if ($operator === false) { + $condition = Filter::equal($column, true); + $condition->metaData() + ->set('columnIndex', $columnIndex) + ->set('operatorIndex', null) + ->set('valueIndex', null); + + return $condition; + } + + $operatorIndex = $this->termIndex++; + + $toFloat = false; + if ($operator === '=') { + $last = substr($column, -1); + if ($last === '>' || $last === '<') { + $operator = $last . $operator; + $column = substr($column, 0, -1); + $toFloat = true; + } + } elseif (in_array($operator, ['>', '<', '!'], true)) { + $toFloat = $operator === '>' || $operator === '<'; + if ($this->nextChar() === '=') { + $operator .= $this->readChar(); + } + } + + $valueIndex = null; + $value = $this->readValue(); + if ($toFloat && ctype_digit($value)) { + $value = (float) $value; + $valueIndex = $this->termIndex++; + } elseif ($value) { + $valueIndex = $this->termIndex++; + } + + $condition = $this->createCondition($column, $operator, $value); + $condition->metaData() + ->set('columnIndex', $columnIndex) + ->set('operatorIndex', $operatorIndex) + ->set('valueIndex', $valueIndex); + + return $condition; + } + + /** + * Read the next column + * + * @return false|string false if there is none + */ + protected function readColumn() + { + $str = $this->readUntil('=', '(', ')', '&', '|', '>', '<', '!'); + + if ($str === false) { + return $str; + } + + return rawurldecode($str); + } + + /** + * Read the next value + * + * @return string|string[] + * + * @throws ParseException In case there's a missing `)` + */ + protected function readValue() + { + if ($this->nextChar() === '(') { + $this->readChar(); + $var = array_map('rawurldecode', preg_split('~\|~', $this->readUntil(')'))); + + if ($this->readChar() !== ')') { + $this->parseError(null, 'Expected ")"'); + } + } else { + $var = rawurldecode($this->readUntil(')', '&', '|', '>', '<')); + } + + return $var; + } + + /** + * Read until any of the given chars appears + * + * @param string ...$chars + * + * @return string + */ + protected function readUntil(...$chars) + { + $buffer = ''; + while (($c = $this->readChar()) !== false) { + if (in_array($c, $chars, true)) { + $this->pos--; + break; + } + + $buffer .= $c; + } + + return $buffer; + } + + /** + * Read a single character + * + * @return false|string false if there is no character left + */ + protected function readChar() + { + if ($this->length > $this->pos) { + return $this->string[$this->pos++]; + } + + return false; + } + + /** + * Look at the next character + * + * @return false|string false if there is no character left + */ + protected function nextChar() + { + if ($this->length > $this->pos) { + return $this->string[$this->pos]; + } + + return false; + } + + /** + * Create and return a condition + * + * @param string $column + * @param string $operator + * @param mixed $value + * + * @return Filter\Condition + */ + protected function createCondition($column, $operator, $value) + { + $column = trim($column); + + switch ($operator) { + case '=': + if (is_string($value) && strpos($value, "*") !== false) { + return Filter::like($column, $value); + } + + return Filter::equal($column, $value); + case '!=': + if (is_string($value) && strpos($value, '*') !== false) { + return Filter::unlike($column, $value); + } + + return Filter::unequal($column, $value); + case '>': + return Filter::greaterThan($column, $value); + case '>=': + return Filter::greaterThanOrEqual($column, $value); + case '<': + return Filter::lessThan($column, $value); + case '<=': + return Filter::lessThanOrEqual($column, $value); + } + } + + /** + * Throw a parse exception + * + * @param string $char + * @param string $extraMsg + * + * @throws ParseException + */ + protected function parseError($char = null, $extraMsg = null) + { + if ($extraMsg === null) { + $extra = ''; + } else { + $extra = ': ' . $extraMsg; + } + + if ($char === null) { + if ($this->pos < $this->length) { + $char = $this->string[$this->pos]; + } else { + $char = $this->string[--$this->pos]; + } + } + + throw new ParseException( + $this->string, + $char, + $this->pos, + $extra + ); + } +} diff --git a/vendor/ipl/web/src/Filter/QueryString.php b/vendor/ipl/web/src/Filter/QueryString.php new file mode 100644 index 00000000..235bf38d --- /dev/null +++ b/vendor/ipl/web/src/Filter/QueryString.php @@ -0,0 +1,92 @@ +parse(); + } + + /** + * Assemble a query string for the given rule + * + * @param Filter\Rule $rule + * + * @return string + */ + public static function render(Filter\Rule $rule) + { + return (new Renderer($rule))->render(); + } + + /** + * Get the symbol associated with the given rule + * + * @param Filter\Rule $rule + * + * @return string + */ + public static function getRuleSymbol(Filter\Rule $rule) + { + switch (true) { + case $rule instanceof Filter\Unequal: + case $rule instanceof Filter\Unlike: + return '!='; + case $rule instanceof Filter\Equal: + case $rule instanceof Filter\Like: + return '='; + case $rule instanceof Filter\GreaterThan: + return '>'; + case $rule instanceof Filter\LessThan: + return '<'; + case $rule instanceof Filter\GreaterThanOrEqual: + return '>='; + case $rule instanceof Filter\LessThanOrEqual: + return '<='; + case $rule instanceof Filter\All: + return '&'; + case $rule instanceof Filter\Any: + case $rule instanceof Filter\None: + return '|'; + default: + throw new InvalidArgumentException('Unknown rule type provided'); + } + } +} diff --git a/vendor/ipl/web/src/Filter/Renderer.php b/vendor/ipl/web/src/Filter/Renderer.php new file mode 100644 index 00000000..f01ccf4d --- /dev/null +++ b/vendor/ipl/web/src/Filter/Renderer.php @@ -0,0 +1,182 @@ +filter = $filter; + } + + /** + * Set whether strict mode is enabled + * + * @param bool $strict + * + * @return $this + */ + public function setStrict($strict = true) + { + $this->strict = (bool) $strict; + + return $this; + } + + /** + * Assemble and return the filter as query string + * + * @return string + */ + public function render() + { + if ($this->string !== null) { + return $this->string; + } + + $this->string = ''; + $filter = $this->filter; + + if ($filter instanceof Filter\Chain) { + $this->renderChain($filter, $this->strict); + } else { + /** @var Filter\Condition $filter */ + $this->renderCondition($filter); + } + + return $this->string; + } + + /** + * Assemble the given filter Chain + * + * @param Filter\Chain $chain + * @param bool $wrap + * + * @return void + */ + protected function renderChain(Filter\Chain $chain, $wrap = false) + { + if (! $this->strict && $chain->isEmpty()) { + return; + } + + $chainOperator = null; + switch (true) { + case $chain instanceof Filter\All: + $chainOperator = '&'; + break; + case $chain instanceof Filter\None: + $this->string .= '!'; + + // Force wrap, it may be the root node + if (! $wrap) { + if ($chain->count() > 1) { + $wrap = true; + } else { + $iterator = $chain->getIterator(); + $wrap = $iterator->current() instanceof Filter\None; + } + } + + // None shares the operator with Any + case $chain instanceof Filter\Any: + $chainOperator = '|'; + break; + } + + if ($wrap) { + $this->string .= '('; + } + + foreach ($chain as $rule) { + if ($rule instanceof Filter\Chain) { + $this->renderChain($rule, $this->strict || $rule->count() > 1); + } else { + /** @var Filter\Condition $rule */ + $this->renderCondition($rule); + } + + $this->string .= $chainOperator; + } + + if (! $chain->isEmpty() && (! $this->strict || ! ($chain instanceof Filter\Any && $chain->count() === 1))) { + // Remove redundant chain operator added last + $this->string = substr($this->string, 0, -1); + } elseif ($chain->isEmpty() && $chain instanceof Filter\Any) { + // If the chain is empty and strict mode is on, we need a + // chain operator to designate it's an OR, not an AND + $this->string .= $chainOperator; + } + + if ($wrap) { + $this->string .= ')'; + } + } + + /** + * Assemble the given filter Condition + * + * @param Filter\Condition $condition + * + * @return void + */ + protected function renderCondition(Filter\Condition $condition) + { + $value = $condition->getValue(); + if (is_bool($value) && ! $value) { + $this->string .= '!'; + } + + $this->string .= rawurlencode($condition->getColumn()); + + if (is_bool($value)) { + return; + } + + switch (true) { + case $condition instanceof Filter\Unequal: + case $condition instanceof Filter\Unlike: + $this->string .= '!='; + break; + case $condition instanceof Filter\Equal: + case $condition instanceof Filter\Like: + $this->string .= '='; + break; + case $condition instanceof Filter\GreaterThan: + $this->string .= rawurlencode('>'); + break; + case $condition instanceof Filter\LessThan: + $this->string .= rawurlencode('<'); + break; + case $condition instanceof Filter\GreaterThanOrEqual: + $this->string .= rawurlencode('>') . '='; + break; + case $condition instanceof Filter\LessThanOrEqual: + $this->string .= rawurlencode('<') . '='; + break; + } + + if (is_array($value)) { + $this->string .= '(' . join('|', array_map('rawurlencode', $value)) . ')'; + } elseif ($value !== null) { + $this->string .= rawurlencode($value); + } + } +} diff --git a/vendor/ipl/web/src/FormDecorator/IcingaFormDecorator.php b/vendor/ipl/web/src/FormDecorator/IcingaFormDecorator.php new file mode 100644 index 00000000..f0389310 --- /dev/null +++ b/vendor/ipl/web/src/FormDecorator/IcingaFormDecorator.php @@ -0,0 +1,123 @@ +formElement instanceof FormSubmitElement) { + $this->formElement->getAttributes()->add('class', 'btn-primary'); + } + + $element = parent::assembleElement(); + + if ($element instanceof CheckboxElement) { + return $this->createCheckbox($element); + } + + return $element; + } + + protected function createCheckbox(CheckboxElement $checkbox) + { + if (! $checkbox->getAttributes()->has('id')) { + $checkbox->setAttribute( + 'id', + $checkbox->getName() . '_' . Window::getInstance()->getContainerId() + ); + } + + $checkbox->getAttributes()->add('class', 'sr-only'); + + $classes = ['toggle-switch']; + if ($checkbox->getAttributes()->get('disabled')->getValue()) { + $classes[] = 'disabled'; + } + + $document = new HtmlDocument(); + $document->addHtml( + $checkbox, + new HtmlElement( + 'label', + Attributes::create([ + 'class' => $classes, + 'aria-hidden' => 'true', + 'for' => $checkbox->getAttributes()->get('id')->getValue() + ]), + new HtmlElement('span', Attributes::create(['class' => 'toggle-slider'])) + ) + ); + + $checkbox->prependWrapper($document); + + return $checkbox; + } + + protected function assembleLabel() + { + $label = parent::assembleLabel(); + if (! $this->formElement instanceof FieldsetElement) { + if ($label !== null) { + $label->addWrapper(new HtmlElement('div', Attributes::create(['class' => 'control-label-group']))); + } elseif (! $this->formElement instanceof FormSubmitElement) { + $label = new HtmlElement( + 'div', + Attributes::create(['class' => 'control-label-group']), + HtmlString::create(' ') + ); + } + } + + return $label; + } + + protected function assembleDescription() + { + if ($this->formElement instanceof FieldsetElement) { + return parent::assembleDescription(); + } + + if (($description = $this->formElement->getDescription()) !== null) { + $iconAttributes = [ + 'class' => 'control-info', + 'role' => 'image', + 'title' => $description + ]; + + $describedBy = null; + if ($this->formElement->getAttributes()->has('id')) { + $iconAttributes['aria-hidden'] = 'true'; + + $descriptionId = 'desc_' . $this->formElement->getAttributes()->get('id')->getValue(); + $describedBy = new HtmlElement('span', Attributes::create([ + 'id' => $descriptionId, + 'class' => 'sr-only' + ]), Text::create($description)); + + $this->formElement->getAttributes()->set('aria-describedby', $descriptionId); + } + + return [ + new Icon('info-circle', $iconAttributes), + $describedBy + ]; + } + } +} diff --git a/vendor/ipl/web/src/FormElement/ScheduleElement.php b/vendor/ipl/web/src/FormElement/ScheduleElement.php new file mode 100644 index 00000000..d79a1c25 --- /dev/null +++ b/vendor/ipl/web/src/FormElement/ScheduleElement.php @@ -0,0 +1,623 @@ + 'schedule-element']; + + /** @var array A list of allowed frequencies used to configure custom expressions */ + protected $customFrequencies = []; + + /** @var array */ + protected $advanced = []; + + /** @var array */ + protected $regulars = []; + + /** @var string Schedule frequency of this element */ + protected $frequency = self::NO_REPEAT; + + /** @var string */ + protected $customFrequency; + + /** @var DateTime */ + protected $start; + + /** @var WeeklyFields Weekly parts of this schedule element */ + protected $weeklyField; + + /** @var MonthlyFields Monthly parts of this schedule element */ + protected $monthlyFields; + + /** @var AnnuallyFields Annually parts of this schedule element */ + protected $annuallyFields; + + protected function init(): void + { + $this->start = new DateTime(); + $this->weeklyField = new WeeklyFields('weekly-fields', [ + 'default' => $this->start->format('D'), + 'protector' => function (string $day) { + return $this->protectId($day); + }, + ]); + + $this->monthlyFields = new MonthlyFields('monthly-fields', [ + 'default' => $this->start->format('j'), + 'availableFields' => (int) $this->start->format('t'), + 'protector' => function ($day) { + return $this->protectId($day); + } + ]); + + $this->annuallyFields = new AnnuallyFields('annually-fields', [ + 'default' => $this->start->format('M'), + 'protector' => function ($month) { + return $this->protectId($month); + } + ]); + + + $this->regulars = [ + RRule::MINUTELY => $this->translate('Minutely'), + RRule::HOURLY => $this->translate('Hourly'), + RRule::DAILY => $this->translate('Daily'), + RRule::WEEKLY => $this->translate('Weekly'), + RRule::MONTHLY => $this->translate('Monthly'), + RRule::QUARTERLY => $this->translate('Quarterly'), + RRule::YEARLY => $this->translate('Annually'), + ]; + + $this->customFrequencies = array_slice($this->regulars, 2); + unset($this->customFrequencies[RRule::QUARTERLY]); + + $this->advanced = [ + static::CUSTOM_EXPR => $this->translate('Custom…'), + static::CRON_EXPR => $this->translate('Cron Expression…') + ]; + } + + /** + * Get whether this element is rendering a cron expression + * + * @return bool + */ + public function hasCronExpression(): bool + { + return $this->getFrequency() === static::CRON_EXPR; + } + + /** + * Get the frequency of this element + * + * @return string + */ + public function getFrequency(): string + { + return $this->getValue('frequency', $this->frequency); + } + + /** + * Set the custom frequency of this schedule element + * + * @param string $frequency + * + * @return $this + */ + public function setFrequency(string $frequency): self + { + if ( + $frequency !== static::NO_REPEAT + && ! isset($this->regulars[$frequency]) + && ! isset($this->advanced[$frequency]) + ) { + throw new InvalidArgumentException(sprintf('Invalid frequency provided: %s', $frequency)); + } + + $this->frequency = $frequency; + + return $this; + } + + /** + * Get custom frequency of this element + * + * @return ?string + */ + public function getCustomFrequency(): ?string + { + return $this->getValue('custom-frequency', $this->customFrequency); + } + + /** + * Set custom frequency of this element + * + * @param string $frequency + * + * @return $this + */ + public function setCustomFrequency(string $frequency): self + { + if (! isset($this->customFrequencies[$frequency])) { + throw new InvalidArgumentException(sprintf('Invalid custom frequency provided: %s', $frequency)); + } + + $this->customFrequency = $frequency; + + return $this; + } + + /** + * Set start time of the parsed expressions + * + * @param DateTime $start + * + * @return $this + */ + public function setStart(DateTime $start): self + { + $this->start = $start; + + // Forward the start time update to the sub elements as well! + $this->weeklyField->setDefault($start->format('D')); + $this->annuallyFields->setDefault($start->format('M')); + $this->monthlyFields + ->setDefault((int) $start->format('j')) + ->setAvailableFields((int) $start->format('t')); + + return $this; + } + + public function getValue($name = null, $default = null) + { + if ($name !== null || ! $this->hasBeenValidated()) { + return parent::getValue($name, $default); + } + + $frequency = $this->getFrequency(); + $start = parent::getValue('start'); + switch ($frequency) { + case static::NO_REPEAT: + return new OneOff($start); + case static::CRON_EXPR: + $rule = new Cron(parent::getValue('cron_expression')); + + break; + case RRule::MINUTELY: + case RRule::HOURLY: + case RRule::DAILY: + case RRule::WEEKLY: + case RRule::MONTHLY: + case RRule::QUARTERLY: + case RRule::YEARLY: + $rule = RRule::fromFrequency($frequency); + + break; + default: // static::CUSTOM_EXPR + $interval = parent::getValue('interval', 1); + $customFrequency = parent::getValue('custom-frequency', RRule::DAILY); + switch ($customFrequency) { + case RRule::DAILY: + if ($interval === '*') { + $interval = 1; + } + + $rule = new RRule("FREQ=DAILY;INTERVAL=$interval"); + + break; + case RRule::WEEKLY: + $byDay = implode(',', $this->weeklyField->getSelectedWeekDays()); + + $rule = new RRule("FREQ=WEEKLY;INTERVAL=$interval;BYDAY=$byDay"); + + break; + /** @noinspection PhpMissingBreakStatementInspection */ + case RRule::MONTHLY: + $runsOn = $this->monthlyFields->getValue('runsOn', MonthlyFields::RUNS_EACH); + if ($runsOn === MonthlyFields::RUNS_EACH) { + $byMonth = implode(',', $this->monthlyFields->getSelectedDays()); + + $rule = new RRule("FREQ=MONTHLY;INTERVAL=$interval;BYMONTHDAY=$byMonth"); + + break; + } + // Fall-through to the next switch case + case RRule::YEARLY: + $rule = "FREQ=MONTHLY;INTERVAL=$interval;"; + if ($customFrequency === RRule::YEARLY) { + $runsOn = $this->annuallyFields->getValue('runsOnThe', 'n'); + $month = $this->annuallyFields->getValue('month', (int) $this->start->format('m')); + if (is_string($month)) { + $datetime = DateTime::createFromFormat('!M', $month); + if (! $datetime) { + throw new InvalidArgumentException(sprintf('Invalid month provided: %s', $month)); + } + + $month = (int) $datetime->format('m'); + } + + $rule = "FREQ=YEARLY;INTERVAL=1;BYMONTH=$month;"; + if ($runsOn === 'n') { + $rule = new RRule($rule); + + break; + } + } + + $element = $this->monthlyFields; + if ($customFrequency === RRule::YEARLY) { + $element = $this->annuallyFields; + } + + $runDay = $element->getValue('day', $element::$everyDay); + $ordinal = $element->getValue('ordinal', $element::$first); + $position = $element->getOrdinalAsInteger($ordinal); + + if ($runDay === $element::$everyDay) { + $rule .= "BYDAY=MO,TU,WE,TH,FR,SA,SU;BYSETPOS=$position"; + } elseif ($runDay === $element::$everyWeekday) { + $rule .= "BYDAY=MO,TU,WE,TH,FR;BYSETPOS=$position"; + } elseif ($runDay === $element::$everyWeekend) { + $rule .= "BYDAY=SA,SU;BYSETPOS=$position"; + } else { + $rule .= sprintf('BYDAY=%d%s', $position, $runDay); + } + + $rule = new RRule($rule); + + break; + default: + throw new LogicException(sprintf('Custom frequency %s is not supported!', $customFrequency)); + } + } + + $rule->startAt($start); + if (parent::getValue('use-end-time', 'n') === 'y') { + $rule->endAt(parent::getValue('end')); + } + + return $rule; + } + + public function setValue($value) + { + $values = $value; + $rule = $value; + if ($rule instanceof Frequency) { + if ($rule->getStart()) { + $this->setStart($rule->getStart()); + } + + $values = []; + if ($rule->getEnd() && ! $rule instanceof OneOff) { + $values['use-end-time'] = 'y'; + $values['end'] = $rule->getEnd(); + } + + if ($rule instanceof OneOff) { + $values['frequency'] = static::NO_REPEAT; + } elseif ($rule instanceof Cron) { + $values['cron_expression'] = $rule->getExpression(); + $values['frequency'] = static::CRON_EXPR; + + $this->setFrequency(static::CRON_EXPR); + } elseif ($rule instanceof RRule) { + $values['interval'] = $rule->getInterval(); + switch ($rule->getFrequency()) { + case RRule::DAILY: + if ($rule->getInterval() <= 1 && strpos($rule->getString(), 'INTERVAL=') === false) { + $this->setFrequency(RRule::DAILY); + } else { + $this + ->setFrequency(static::CUSTOM_EXPR) + ->setCustomFrequency(RRule::DAILY); + } + + break; + case RRule::WEEKLY: + if (! $rule->getByDay() || empty($rule->getByDay())) { + $this->setFrequency(RRule::WEEKLY); + } else { + $values['weekly-fields'] = $this->weeklyField->loadWeekDays($rule->getByDay()); + $this + ->setFrequency(static::CUSTOM_EXPR) + ->setCustomFrequency(RRule::WEEKLY); + } + + break; + case RRule::MONTHLY: + case RRule::YEARLY: + $isMonthly = $rule->getFrequency() === RRule::MONTHLY; + if ($rule->getByDay() || $rule->getByMonthDay() || $rule->getByMonth()) { + $this->setFrequency(static::CUSTOM_EXPR); + + if ($isMonthly) { + $values['monthly-fields'] = $this->monthlyFields->loadRRule($rule); + $this->setCustomFrequency(RRule::MONTHLY); + } else { + $values['annually-fields'] = $this->annuallyFields->loadRRule($rule); + $this->setCustomFrequency(RRule::YEARLY); + } + } elseif ($isMonthly && $rule->getInterval() === 3) { + $this->setFrequency(RRule::QUARTERLY); + } else { + $this->setFrequency($rule->getFrequency()); + } + + break; + default: + $this->setFrequency($rule->getFrequency()); + } + + $values['frequency'] = $this->getFrequency(); + $values['custom-frequency'] = $this->getCustomFrequency(); + } + } + + return parent::setValue($values); + } + + protected function assemble() + { + $start = $this->getPopulatedValue('start', $this->start); + if (! $start instanceof DateTime) { + $start = new DateTime($start); + } + $this->setStart($start); + + $this->addElement('localDateTime', 'start', [ + 'class' => ! $this->hasCronExpression() ? 'autosubmit' : null, + 'required' => true, + 'label' => $this->translate('Start'), + 'value' => $start, + 'description' => $this->translate('Start time of this schedule') + ]); + + $this->addElement('checkbox', 'use-end-time', [ + 'required' => false, + 'class' => 'autosubmit', + 'disabled' => $this->getPopulatedValue('frequency', static::NO_REPEAT) === static::NO_REPEAT ?: null, + 'value' => $this->getPopulatedValue('use-end-time', 'n'), + 'label' => $this->translate('Use End Time') + ]); + + if ($this->getPopulatedValue('use-end-time', 'n') === 'y') { + $end = $this->getPopulatedValue('end', new DateTime()); + if (! $end instanceof DateTime) { + $end = new DateTime($end); + } + + $this->addElement('localDateTime', 'end', [ + 'class' => ! $this->hasCronExpression() ? 'autosubmit' : null, + 'required' => true, + 'value' => $end, + 'label' => $this->translate('End'), + 'description' => $this->translate('End time of this schedule') + ]); + } + + $this->addElement('select', 'frequency', [ + 'required' => false, + 'class' => 'autosubmit', + 'label' => $this->translate('Frequency'), + 'description' => $this->translate('Specifies how often this job run should be recurring'), + 'options' => [ + static::NO_REPEAT => $this->translate('None'), + $this->translate('Regular') => $this->regulars, + $this->translate('Advanced') => $this->advanced + ], + ]); + + if ($this->getFrequency() === static::CUSTOM_EXPR) { + $this->addElement('select', 'custom-frequency', [ + 'required' => false, + 'class' => 'autosubmit', + 'value' => parent::getValue('custom-frequency'), + 'options' => $this->customFrequencies, + 'label' => $this->translate('Custom Frequency'), + 'description' => $this->translate('Specifies how often this job run should be recurring') + ]); + + switch (parent::getValue('custom-frequency', RRule::DAILY)) { + case RRule::DAILY: + $this->assembleCommonElements(); + + break; + case RRule::WEEKLY: + $this->assembleCommonElements(); + $this->addElement($this->weeklyField); + + break; + case RRule::MONTHLY: + $this->assembleCommonElements(); + $this->addElement($this->monthlyFields); + + break; + case RRule::YEARLY: + $this->addElement($this->annuallyFields); + } + } elseif ($this->hasCronExpression()) { + $this->addElement('text', 'cron_expression', [ + 'required' => true, + 'label' => $this->translate('Cron Expression'), + 'description' => $this->translate('Job cron Schedule'), + 'validators' => [ + new CallbackValidator(function ($value, CallbackValidator $validator) { + if ($value && ! Cron::isValid($value)) { + $validator->addMessage($this->translate('Invalid CRON expression')); + + return false; + } + + return true; + }) + ] + ]); + } + + if ($this->getFrequency() !== static::NO_REPEAT && ! $this->hasCronExpression()) { + $this->addElement( + new Recurrence('schedule-recurrences', [ + 'id' => $this->protectId('schedule-recurrences'), + 'label' => $this->translate('Next occurrences'), + 'validate' => function (): array { + $isValid = $this->isValid(); + $reason = null; + if (! $isValid && $this->getFrequency() === static::CUSTOM_EXPR) { + if (! $this->getElement('interval')->isValid()) { + $reason = current($this->getElement('interval')->getMessages()); + } else { + $frequency = $this->getCustomFrequency(); + switch ($frequency) { + case RRule::WEEKLY: + $reason = current($this->weeklyField->getMessages()); + + break; + default: // monthly + $reason = current($this->monthlyFields->getMessages()); + + break; + } + } + } + + return [$isValid, $reason]; + }, + 'frequency' => function (): Frequency { + if ($this->getFrequency() === static::CUSTOM_EXPR) { + $rule = $this->getValue(); + } else { + $rule = RRule::fromFrequency($this->getFrequency()); + } + + $now = new DateTime(); + $start = $this->getValue('start'); + if ($start < $now) { + $now->setTime($start->format('H'), $start->format('i'), $start->format('s')); + $start = $now; + } + + $rule->startAt($start); + if ($this->getPopulatedValue('use-end-time') === 'y') { + $rule->endAt($this->getValue('end')); + } + + return $rule; + } + ]) + ); + } + } + + /** + * Assemble common parts for all the frequencies + */ + private function assembleCommonElements(): void + { + $repeat = $this->getCustomFrequency(); + if ($repeat === RRule::WEEKLY) { + $text = $this->translate('week(s) on'); + $max = 53; + } elseif ($repeat === RRule::MONTHLY) { + $text = $this->translate('month(s)'); + $max = 12; + } else { + $text = $this->translate('day(s)'); + $max = 31; + } + + $options = ['min' => 1, 'max' => $max]; + $this->addElement('number', 'interval', [ + 'class' => 'autosubmit', + 'value' => 1, + 'min' => 1, + 'max' => $max, + 'validators' => [new BetweenValidator($options)] + ]); + + $numberSpecifier = HtmlElement::create('div', ['class' => 'number-specifier']); + $element = $this->getElement('interval'); + $element->prependWrapper($numberSpecifier); + + $numberSpecifier->prependHtml(HtmlElement::create('span', null, $this->translate('Every'))); + $numberSpecifier->addHtml($element); + $numberSpecifier->addHtml(HtmlElement::create('span', null, $text)); + } + + /** + * Get prepared multipart updates + * + * @param RequestInterface $request + * + * @return array + */ + public function prepareMultipartUpdate(RequestInterface $request): array + { + $autoSubmittedBy = $request->getHeader('X-Icinga-AutoSubmittedBy'); + $pattern = '/\[(weekly-fields|monthly-fields|annually-fields)]\[(ordinal|month|day(\d+)?|[A-Z]{2})]$/'; + + $partUpdates = []; + if ( + $autoSubmittedBy + && ! $this->hasCronExpression() + && ( + preg_match('/\[(start|end)]$/', $autoSubmittedBy[0], $matches) + || preg_match($pattern, $autoSubmittedBy[0]) + || preg_match('/\[interval]/', $autoSubmittedBy[0]) + ) + ) { + $this->ensureAssembled(); + + $partUpdates[] = $this->getElement('schedule-recurrences'); + if ( + $this->getFrequency() === static::CUSTOM_EXPR + && $this->getCustomFrequency() === RRule::MONTHLY + && isset($matches[1]) + && $matches[1] === 'start' + ) { + // To update the available fields/days based on the provided start time + $partUpdates[] = $this->monthlyFields; + } + } + + return $partUpdates; + } + + protected function registerAttributeCallbacks(Attributes $attributes) + { + parent::registerAttributeCallbacks($attributes); + + $attributes->registerAttributeCallback('protector', null, [$this, 'setIdProtector']); + } +} diff --git a/vendor/ipl/web/src/FormElement/ScheduleElement/AnnuallyFields.php b/vendor/ipl/web/src/FormElement/ScheduleElement/AnnuallyFields.php new file mode 100644 index 00000000..27cebfb6 --- /dev/null +++ b/vendor/ipl/web/src/FormElement/ScheduleElement/AnnuallyFields.php @@ -0,0 +1,149 @@ +months = [ + 'JAN' => $this->translate('Jan'), + 'FEB' => $this->translate('Feb'), + 'MAR' => $this->translate('Mar'), + 'APR' => $this->translate('Apr'), + 'MAY' => $this->translate('May'), + 'JUN' => $this->translate('Jun'), + 'JUL' => $this->translate('Jul'), + 'AUG' => $this->translate('Aug'), + 'SEP' => $this->translate('Sep'), + 'OCT' => $this->translate('Oct'), + 'NOV' => $this->translate('Nov'), + 'DEC' => $this->translate('Dec') + ]; + + parent::__construct($name, $attributes); + } + + protected function init(): void + { + parent::init(); + $this->initUtils(); + } + + public function onRegistered(Form $form) + { + $form->on(Form::ON_SENT, function ($form) { + $this->isAutoSubmitted = ! $form->hasBeenSubmitted(); + }); + } + + /** + * Set the default month to be activated + * + * @param string $default + * + * @return $this + */ + public function setDefault(string $default): self + { + if (! isset($this->months[strtoupper($this->default)])) { + throw new InvalidArgumentException(sprintf('Invalid month provided: %s', $default)); + } + + $this->default = strtoupper($default); + + return $this; + } + + protected function assemble() + { + $this->getAttributes()->set('id', $this->protectId('annually-fields')); + + $fieldsSelector = new FieldsRadio('month', [ + 'class' => ['autosubmit', 'sr-only'], + 'value' => $this->default, + 'options' => $this->months, + 'protector' => function ($value) { + return $this->protectId($value); + } + ]); + $this->registerElement($fieldsSelector); + + $runsOnThe = $this->getPopulatedValue('runsOnThe', 'n'); + $this->addElement('checkbox', 'runsOnThe', [ + 'class' => 'autosubmit', + 'value' => $runsOnThe + ]); + + $checkboxControls = HtmlElement::create('div', ['class' => 'toggle-slider-controls']); + $checkbox = $this->getElement('runsOnThe'); + $checkbox->prependWrapper($checkboxControls); + $checkboxControls->addHtml($checkbox, HtmlElement::create('span', null, $this->translate('On the'))); + + $annuallyWrapper = HtmlElement::create('div', ['class' => 'annually']); + $checkboxControls->prependWrapper($annuallyWrapper); + $annuallyWrapper->addHtml($fieldsSelector); + + $notes = HtmlElement::create('div', ['class' => 'note']); + $notes->addHtml( + FormattedString::create( + $this->translate('Use %s / %s keys to choose a month by keyboard.'), + new Icon('arrow-left'), + new Icon('arrow-right') + ) + ); + $annuallyWrapper->addHtml($notes); + + if ($runsOnThe === 'n' && $this->isAutoSubmitted) { + $this->clearPopulatedValue('ordinal'); + $this->clearPopulatedValue('day'); + } + + $enumerations = $this->createOrdinalElement(); + $enumerations->getAttributes()->set('disabled', $runsOnThe === 'n'); + $this->registerElement($enumerations); + + $selectableDays = $this->createOrdinalSelectableDays(); + $selectableDays->getAttributes()->set('disabled', $runsOnThe === 'n'); + $this->registerElement($selectableDays); + + $ordinalWrapper = HtmlElement::create('div', ['class' => ['ordinal', 'annually']]); + $this + ->decorate($enumerations) + ->addHtml($enumerations); + + $enumerations->prependWrapper($ordinalWrapper); + $ordinalWrapper->addHtml($enumerations, $selectableDays); + } + + protected function registerAttributeCallbacks(Attributes $attributes) + { + parent::registerAttributeCallbacks($attributes); + + $attributes + ->registerAttributeCallback('default', null, [$this, 'setDefault']) + ->registerAttributeCallback('protector', null, [$this, 'setIdProtector']); + } +} diff --git a/vendor/ipl/web/src/FormElement/ScheduleElement/Common/FieldsProtector.php b/vendor/ipl/web/src/FormElement/ScheduleElement/Common/FieldsProtector.php new file mode 100644 index 00000000..affd5198 --- /dev/null +++ b/vendor/ipl/web/src/FormElement/ScheduleElement/Common/FieldsProtector.php @@ -0,0 +1,41 @@ +protector = $protector; + + return $this; + } + + /** + * Protect the given html id + * + * The provided id is returned as is, if no protector is specified + * + * @param string $id + * + * @return string + */ + public function protectId(string $id): string + { + if (is_callable($this->protector)) { + return call_user_func($this->protector, $id); + } + + return $id; + } +} diff --git a/vendor/ipl/web/src/FormElement/ScheduleElement/Common/FieldsUtils.php b/vendor/ipl/web/src/FormElement/ScheduleElement/Common/FieldsUtils.php new file mode 100644 index 00000000..bf28255f --- /dev/null +++ b/vendor/ipl/web/src/FormElement/ScheduleElement/Common/FieldsUtils.php @@ -0,0 +1,243 @@ +regulars = [ + 'MO' => $this->translate('Monday'), + 'TU' => $this->translate('Tuesday'), + 'WE' => $this->translate('Wednesday'), + 'TH' => $this->translate('Thursday'), + 'FR' => $this->translate('Friday'), + 'SA' => $this->translate('Saturday'), + 'SU' => $this->translate('Sunday') + ]; + } + + protected function createOrdinalElement(): FormElement + { + return $this->createElement('select', 'ordinal', [ + 'class' => 'autosubmit', + 'value' => $this->getPopulatedValue('ordinal', static::$first), + 'options' => [ + static::$first => $this->translate('First'), + static::$second => $this->translate('Second'), + static::$third => $this->translate('Third'), + static::$fourth => $this->translate('Fourth'), + static::$fifth => $this->translate('Fifth'), + static::$last => $this->translate('Last') + ] + ]); + } + + protected function createOrdinalSelectableDays(): FormElement + { + $select = $this->createElement('select', 'day', [ + 'class' => 'autosubmit', + 'value' => $this->getPopulatedValue('day', static::$everyDay), + 'options' => $this->regulars + [ + 'separator' => '──────────────────────────', + static::$everyDay => $this->translate('Day'), + static::$everyWeekday => $this->translate('Weekday (Mon - Fri)'), + static::$everyWeekend => $this->translate('WeekEnd (Sat or Sun)') + ] + ]); + $select->getOption('separator')->getAttributes()->set('disabled', true); + + return $select; + } + + /** + * Load the given RRule instance into a list of key=>value pairs + * + * @param RRule $rule + * + * @return array + */ + public function loadRRule(RRule $rule): array + { + $values = []; + $isMonthly = $rule->getFrequency() === RRule::MONTHLY; + if ($isMonthly && (! empty($rule->getByMonthDay()) || empty($rule->getByDay()))) { + $monthDays = $rule->getByMonthDay() ?? []; + foreach (range(1, $this->availableFields) as $value) { + $values["day$value"] = in_array((string) $value, $monthDays, true) ? 'y' : 'n'; + } + + $values['runsOn'] = MonthlyFields::RUNS_EACH; + } else { + $position = $rule->getBySetPosition(); + $byDay = $rule->getByDay() ?? []; + + if ($isMonthly) { + $values['runsOn'] = MonthlyFields::RUNS_ONTHE; + } else { + $months = $rule->getByMonth(); + if (empty($months) && $rule->getStart()) { + $months[] = $rule->getStart()->format('m'); + } elseif (empty($months)) { + $months[] = date('m'); + } + + $values['month'] = strtoupper($this->getMonthByNumber((int)$months[0])); + $values['runsOnThe'] = ! empty($byDay) ? 'y' : 'n'; + } + + if (count($byDay) == 1 && preg_match('/^(-?\d)(\w.*)$/', $byDay[0], $matches)) { + $values['ordinal'] = $this->getOrdinalString($matches[1]); + $values['day'] = $this->getWeekdayName($matches[2]); + } elseif (! empty($byDay)) { + $values['ordinal'] = $this->getOrdinalString(current($position)); + switch (count($byDay)) { + case MonthlyFields::WEEK_DAYS: + $values['day'] = static::$everyDay; + + break; + case MonthlyFields::WEEK_DAYS - 2: + $values['day'] = static::$everyWeekday; + + break; + case 1: + $values['day'] = current($byDay); + + break; + case 2: + $byDay = array_flip($byDay); + if (isset($byDay['SA']) && isset($byDay['SU'])) { + $values['day'] = static::$everyWeekend; + } + } + } + } + + return $values; + } + + /** + * Transform the given expression part into a valid week day string representation + * + * @param string $day + * + * @return string + */ + public function getWeekdayName(string $day): string + { + // Not transformation is needed when the given day is part of the valid weekdays + if (isset($this->regulars[strtoupper($day)])) { + return $day; + } + + try { + // Try to figure it out using date time before raising an error + $datetime = new DateTime('Sunday'); + $datetime->add(new DateInterval("P$day" . 'D')); + + return $datetime->format('D'); + } catch (Exception $_) { + throw new InvalidArgumentException(sprintf('Invalid weekday provided: %s', $day)); + } + } + + /** + * Transform the given integer enums into something like first,second... + * + * @param string $ordinal + * + * @return string + */ + public function getOrdinalString(string $ordinal): string + { + switch ($ordinal) { + case '1': + return static::$first; + case '2': + return static::$second; + case '3': + return static::$third; + case '4': + return static::$fourth; + case '5': + return static::$fifth; + case '-1': + return static::$last; + default: + throw new InvalidArgumentException( + sprintf('Invalid ordinal string representation provided: %s', $ordinal) + ); + } + } + + /** + * Get the string representation of the given ordinal to an integer + * + * This transforms the given ordinal such as (first, second...) into its respective + * integral representation. At the moment only (1..5 + the non-standard "last") options + * are supported. So if this method returns the character "-1", is meant the last option. + * + * @param string $ordinal + * + * @return int + */ + public function getOrdinalAsInteger(string $ordinal): int + { + switch ($ordinal) { + case static::$first: + return 1; + case static::$second: + return 2; + case static::$third: + return 3; + case static::$fourth: + return 4; + case static::$fifth: + return 5; + case static::$last: + return -1; + default: + throw new InvalidArgumentException(sprintf('Invalid enumerator provided: %s', $ordinal)); + } + } + + /** + * Get a short textual representation of the given month + * + * @param int $month + * + * @return string + */ + public function getMonthByNumber(int $month): string + { + $time = DateTime::createFromFormat('!m', $month); + if ($time) { + return $time->format('M'); + } + + throw new InvalidArgumentException(sprintf('Invalid month number provided: %d', $month)); + } +} diff --git a/vendor/ipl/web/src/FormElement/ScheduleElement/FieldsRadio.php b/vendor/ipl/web/src/FormElement/ScheduleElement/FieldsRadio.php new file mode 100644 index 00000000..31b77c34 --- /dev/null +++ b/vendor/ipl/web/src/FormElement/ScheduleElement/FieldsRadio.php @@ -0,0 +1,58 @@ + ['schedule-element-fields', 'single-fields']]); + foreach ($this->options as $option) { + $radio = (new InputElement($this->getValueOfNameAttribute())) + ->setValue($option->getValue()) + ->setType($this->type); + + $radio->setAttributes(clone $this->getAttributes()); + + $htmlId = $this->protectId($option->getValue()); + $radio->getAttributes() + ->set('id', $htmlId) + ->registerAttributeCallback('checked', function () use ($option) { + return (string) $this->getValue() === (string) $option->getValue(); + }) + ->registerAttributeCallback('required', [$this, 'getRequiredAttribute']) + ->registerAttributeCallback('disabled', function () use ($option) { + return $this->getAttributes()->get('disabled')->getValue() || $option->isDisabled(); + }); + + $listItem = HtmlElement::create('li'); + $listItem->addHtml( + $radio, + HtmlElement::create('label', [ + 'for' => $htmlId, + 'class' => $option->getLabelCssClass(), + 'tabindex' => -1 + ], $option->getLabel()) + ); + $listItems->addHtml($listItem); + } + + $this->addHtml($listItems); + } + + protected function registerAttributeCallbacks(Attributes $attributes) + { + parent::registerAttributeCallbacks($attributes); + + $attributes + ->registerAttributeCallback('protector', null, [$this, 'setIdProtector']); + } +} diff --git a/vendor/ipl/web/src/FormElement/ScheduleElement/MonthlyFields.php b/vendor/ipl/web/src/FormElement/ScheduleElement/MonthlyFields.php new file mode 100644 index 00000000..26329fc1 --- /dev/null +++ b/vendor/ipl/web/src/FormElement/ScheduleElement/MonthlyFields.php @@ -0,0 +1,191 @@ +initUtils(); + + $this->availableFields = (int) date('t'); + } + + /** + * Set the available fields/days of the month to be rendered + * + * @param int $fields + * + * @return $this + */ + public function setAvailableFields(int $fields): self + { + $this->availableFields = $fields; + + return $this; + } + + /** + * Set the default field/day to be selected + * + * @param int $default + * + * @return $this + */ + public function setDefault(int $default): self + { + $this->default = $default; + + return $this; + } + + /** + * Get all the selected weekdays + * + * @return array + */ + public function getSelectedDays(): array + { + $selectedDays = []; + foreach (range(1, $this->availableFields) as $day) { + if ($this->getValue("day$day", 'n') === 'y') { + $selectedDays[] = $day; + } + } + + if (empty($selectedDays)) { + $selectedDays[] = $this->default; + } + + return $selectedDays; + } + + protected function assemble() + { + $this->getAttributes()->set('id', $this->protectId('monthly-fields')); + + $runsOn = $this->getPopulatedValue('runsOn', static::RUNS_EACH); + $this->addElement('radio', 'runsOn', [ + 'required' => true, + 'class' => 'autosubmit', + 'value' => $runsOn, + 'options' => [static::RUNS_EACH => $this->translate('Each')], + ]); + + $listItems = HtmlElement::create('ul', ['class' => ['schedule-element-fields', 'multiple-fields']]); + if ($runsOn === static::RUNS_ONTHE) { + $listItems->getAttributes()->add('class', 'disabled'); + } + + foreach (range(1, $this->availableFields) as $day) { + $checkbox = $this->createElement('checkbox', "day$day", [ + 'class' => ['autosubmit', 'sr-only'], + 'value' => $day === $this->default && $runsOn === static::RUNS_EACH + ]); + $this->registerElement($checkbox); + + $htmlId = $this->protectId("day$day"); + $checkbox->getAttributes()->set('id', $htmlId); + + $listItem = HtmlElement::create('li'); + $listItem->addHtml($checkbox, HtmlElement::create('label', ['for' => $htmlId], $day)); + $listItems->addHtml($listItem); + } + + $monthlyWrapper = HtmlElement::create('div', ['class' => 'monthly']); + $runsEach = $this->getElement('runsOn'); + $runsEach->prependWrapper($monthlyWrapper); + $monthlyWrapper->addHtml($runsEach, $listItems); + + $this->addElement('radio', 'runsOn', [ + 'required' => $runsOn !== static::RUNS_EACH, + 'class' => 'autosubmit', + 'options' => [static::RUNS_ONTHE => $this->translate('On the')], + 'validators' => [ + new InArrayValidator([ + 'strict' => true, + 'haystack' => [static::RUNS_EACH, static::RUNS_ONTHE] + ]) + ] + ]); + + $ordinalWrapper = HtmlElement::create('div', ['class' => 'ordinal']); + $runsOnThe = $this->getElement('runsOn'); + $runsOnThe->prependWrapper($ordinalWrapper); + $ordinalWrapper->addHtml($runsOnThe); + + $enumerations = $this->createOrdinalElement(); + $enumerations->getAttributes()->set('disabled', $runsOn === static::RUNS_EACH); + $this->registerElement($enumerations); + + $selectableDays = $this->createOrdinalSelectableDays(); + $selectableDays->getAttributes()->set('disabled', $runsOn === static::RUNS_EACH); + $this->registerElement($selectableDays); + + $ordinalWrapper->addHtml($enumerations, $selectableDays); + } + + protected function registerAttributeCallbacks(Attributes $attributes) + { + parent::registerAttributeCallbacks($attributes); + + $attributes + ->registerAttributeCallback('default', null, [$this, 'setDefault']) + ->registerAttributeCallback('availableFields', null, [$this, 'setAvailableFields']) + ->registerAttributeCallback('protector', null, [$this, 'setIdProtector']); + } + + protected function addDefaultValidators(ValidatorChain $chain): void + { + $chain->add( + new CallbackValidator(function ($_, CallbackValidator $validator): bool { + if ($this->getValue('runsOn', static::RUNS_EACH) !== static::RUNS_EACH) { + return true; + } + + $valid = false; + foreach (range(1, $this->availableFields) as $day) { + if ($this->getValue("day$day") === 'y') { + $valid = true; + + break; + } + } + + if (! $valid) { + $validator->addMessage($this->translate('You must select at least one of these days')); + } + + return $valid; + }) + ); + } +} diff --git a/vendor/ipl/web/src/FormElement/ScheduleElement/Recurrence.php b/vendor/ipl/web/src/FormElement/ScheduleElement/Recurrence.php new file mode 100644 index 00000000..8693b20b --- /dev/null +++ b/vendor/ipl/web/src/FormElement/ScheduleElement/Recurrence.php @@ -0,0 +1,89 @@ + 'schedule-recurrences']; + + /** @var callable A callable that generates a frequency instance */ + protected $frequencyCallback; + + /** @var callable A validation callback for the schedule element */ + protected $validateCallback; + + /** + * Set a validation callback that will be called when assembling this element + * + * @param callable $callback + * + * @return $this + */ + public function setValid(callable $callback): self + { + $this->validateCallback = $callback; + + return $this; + } + + /** + * Set a callback that generates an {@see Frequency} instance + * + * @param callable $callback + * + * @return $this + */ + public function setFrequency(callable $callback): self + { + $this->frequencyCallback = $callback; + + return $this; + } + + protected function assemble() + { + list($isValid, $reason) = ($this->validateCallback)(); + if (! $isValid) { + // Render why we can't generate the recurrences + $this->addHtml(Text::create($reason)); + + return; + } + + /** @var RRule $frequency */ + $frequency = ($this->frequencyCallback)(); + $recurrences = $frequency->getNextRecurrences(new DateTime(), 3); + if (! $recurrences->valid()) { + // Such a situation can be caused by setting an invalid end time + $this->addHtml(HtmlElement::create('p', null, Text::create($this->translate('Never')))); + + return; + } + + foreach ($recurrences as $recurrence) { + $this->addHtml(HtmlElement::create('p', null, $recurrence->format($this->translate('D, Y/m/d, H:i:s')))); + } + } + + protected function registerAttributeCallbacks(Attributes $attributes) + { + parent::registerAttributeCallbacks($attributes); + + $attributes + ->registerAttributeCallback('frequency', null, [$this, 'setFrequency']) + ->registerAttributeCallback('validate', null, [$this, 'setValid']); + } +} diff --git a/vendor/ipl/web/src/FormElement/ScheduleElement/WeeklyFields.php b/vendor/ipl/web/src/FormElement/ScheduleElement/WeeklyFields.php new file mode 100644 index 00000000..01933ca2 --- /dev/null +++ b/vendor/ipl/web/src/FormElement/ScheduleElement/WeeklyFields.php @@ -0,0 +1,151 @@ +weekdays = [ + 'MO' => $this->translate('Mon'), + 'TU' => $this->translate('Tue'), + 'WE' => $this->translate('Wed'), + 'TH' => $this->translate('Thu'), + 'FR' => $this->translate('Fri'), + 'SA' => $this->translate('Sat'), + 'SU' => $this->translate('Sun') + ]; + + parent::__construct($name, $attributes); + } + + /** + * Set the default weekday to be preselected + * + * @param string $default + * + * @return $this + */ + public function setDefault(string $default): self + { + $weekday = strlen($default) > 2 ? substr($default, 0, -1) : $default; + if (! isset($this->weekdays[strtoupper($weekday)])) { + throw new InvalidArgumentException(sprintf('Invalid weekday provided: %s', $default)); + } + + $this->default = strtoupper($weekday); + + return $this; + } + + /** + * Get all the selected weekdays + * + * @return array + */ + public function getSelectedWeekDays(): array + { + $selectedDays = []; + foreach ($this->weekdays as $day => $_) { + if ($this->getValue($day, 'n') === 'y') { + $selectedDays[] = $day; + } + } + + if (empty($selectedDays)) { + $selectedDays[] = $this->default; + } + + return $selectedDays; + } + + /** + * Transform the given weekdays into key=>value array that can be populated + * + * @param array $weekdays + * + * @return array + */ + public function loadWeekDays(array $weekdays): array + { + $values = []; + foreach ($this->weekdays as $weekday => $_) { + $values[$weekday] = in_array($weekday, $weekdays, true) ? 'y' : 'n'; + } + + return $values; + } + + protected function assemble() + { + $this->getAttributes()->set('id', $this->protectId('weekly-fields')); + + $fieldsWrapper = HtmlElement::create('div', ['class' => 'weekly']); + $listItems = HtmlElement::create('ul', ['class' => ['schedule-element-fields', 'multiple-fields']]); + + foreach ($this->weekdays as $day => $value) { + $checkbox = $this->createElement('checkbox', $day, [ + 'class' => ['autosubmit', 'sr-only'], + 'value' => $day === $this->default + ]); + $this->registerElement($checkbox); + + $htmlId = $this->protectId("weekday-$day"); + $checkbox->getAttributes()->set('id', $htmlId); + + $listItem = HtmlElement::create('li'); + $listItem->addHtml($checkbox, HtmlElement::create('label', ['for' => $htmlId], $value)); + $listItems->addHtml($listItem); + } + + $fieldsWrapper->addHtml($listItems); + $this->addHtml($fieldsWrapper); + } + + protected function registerAttributeCallbacks(Attributes $attributes) + { + parent::registerAttributeCallbacks($attributes); + + $attributes + ->registerAttributeCallback('default', null, [$this, 'setDefault']) + ->registerAttributeCallback('protector', null, [$this, 'setIdProtector']); + } + + protected function addDefaultValidators(ValidatorChain $chain): void + { + $chain->add( + new CallbackValidator(function ($_, CallbackValidator $validator): bool { + $valid = false; + foreach ($this->weekdays as $weekday => $_) { + if ($this->getValue($weekday) === 'y') { + $valid = true; + + break; + } + } + + if (! $valid) { + $validator->addMessage($this->translate('You must select at least one of these weekdays')); + } + + return $valid; + }) + ); + } +} diff --git a/vendor/ipl/web/src/Layout/Content.php b/vendor/ipl/web/src/Layout/Content.php new file mode 100644 index 00000000..bded4ab4 --- /dev/null +++ b/vendor/ipl/web/src/Layout/Content.php @@ -0,0 +1,17 @@ + 'content']; + + protected $tag = 'div'; +} diff --git a/vendor/ipl/web/src/Layout/Controls.php b/vendor/ipl/web/src/Layout/Controls.php new file mode 100644 index 00000000..87637755 --- /dev/null +++ b/vendor/ipl/web/src/Layout/Controls.php @@ -0,0 +1,59 @@ + 'controls']; + + protected $tag = 'div'; + + /** + * Get the tabs + * + * @return Tabs + */ + public function getTabs() + { + return $this->tabs; + } + + /** + * Set the tabs + * + * @param Tabs $tabs + * + * @return $this + */ + public function setTabs(Tabs $tabs) + { + $this->tabs = $tabs; + + return $this; + } + + public function isEmpty() + { + if (! parent::isEmpty()) { + return false; + } + + return $this->tabs->count() === 0; + } + + protected function assemble() + { + $this->prepend($this->getTabs()); + } +} diff --git a/vendor/ipl/web/src/Layout/Footer.php b/vendor/ipl/web/src/Layout/Footer.php new file mode 100644 index 00000000..21bf2622 --- /dev/null +++ b/vendor/ipl/web/src/Layout/Footer.php @@ -0,0 +1,17 @@ + 'footer']; + + protected $tag = 'div'; +} diff --git a/vendor/ipl/web/src/Url.php b/vendor/ipl/web/src/Url.php new file mode 100644 index 00000000..52620c43 --- /dev/null +++ b/vendor/ipl/web/src/Url.php @@ -0,0 +1,14 @@ +getAbsoluteUrl('&'); + } +} diff --git a/vendor/ipl/web/src/Widget/ActionBar.php b/vendor/ipl/web/src/Widget/ActionBar.php new file mode 100644 index 00000000..bf318450 --- /dev/null +++ b/vendor/ipl/web/src/Widget/ActionBar.php @@ -0,0 +1,51 @@ + 'action-bar', + 'data-base-target' => '_self' + ]; + + protected $tag = 'div'; + + /** + * Create a action bar + * + * @param Attributes|array $attributes + */ + public function __construct($attributes = null) + { + $this->getAttributes()->add($attributes); + } + + /** + * Add a link to the action bar + * + * @param mixed $content + * @param Url|string $url + * @param string $icon + * + * @return $this + */ + public function addLink($content, $url, $icon = null) + { + $this->add(new ActionLink($content, $url, $icon)); + + return $this; + } +} diff --git a/vendor/ipl/web/src/Widget/ActionLink.php b/vendor/ipl/web/src/Widget/ActionLink.php new file mode 100644 index 00000000..289d7008 --- /dev/null +++ b/vendor/ipl/web/src/Widget/ActionLink.php @@ -0,0 +1,31 @@ + 'action-link']; + + /** + * Create a action link + * + * @param mixed $content + * @param Url|string $url + * @param string $icon + * @param Attributes|array $attributes + */ + public function __construct($content, $url, $icon = null, $attributes = null) + { + parent::__construct($content, $url, $attributes); + + if ($icon !== null) { + $this->prepend(new Icon($icon)); + } + } +} diff --git a/vendor/ipl/web/src/Widget/ButtonLink.php b/vendor/ipl/web/src/Widget/ButtonLink.php new file mode 100644 index 00000000..2da5dfd8 --- /dev/null +++ b/vendor/ipl/web/src/Widget/ButtonLink.php @@ -0,0 +1,14 @@ + 'button-link', + 'data-base-target' => '_main' + ]; +} diff --git a/vendor/ipl/web/src/Widget/ContinueWith.php b/vendor/ipl/web/src/Widget/ContinueWith.php new file mode 100644 index 00000000..4aaf52eb --- /dev/null +++ b/vendor/ipl/web/src/Widget/ContinueWith.php @@ -0,0 +1,72 @@ + 'continue-with']; + + /** @var Url */ + protected $url; + + /** @var Filter\Rule|callable */ + protected $filter; + + /** @var string */ + protected $title; + + public function __construct(Url $url, $filter) + { + $this->url = $url; + $this->filter = $filter; + } + + /** + * Set title for the anchor + * + * @param string $title + * + * @return $this + */ + public function setTitle($title) + { + $this->title = $title; + + return $this; + } + + public function assemble() + { + $filter = $this->filter; + if (is_callable($filter)) { + $filter = $filter(); /** @var Filter\Rule $filter */ + } + + if ($filter instanceof Filter\Chain && $filter->isEmpty()) { + $this->addHtml(new HtmlElement( + 'span', + Attributes::create(['class' => ['control-button', 'disabled']]), + new Icon('share') + )); + } else { + $this->addHtml(new ActionLink( + null, + $this->url->setQueryString(QueryString::render($filter)), + 'share', + ['class' => 'control-button', 'title' => $this->title] + )); + } + } +} diff --git a/vendor/ipl/web/src/Widget/Dropdown.php b/vendor/ipl/web/src/Widget/Dropdown.php new file mode 100644 index 00000000..b6eb20d1 --- /dev/null +++ b/vendor/ipl/web/src/Widget/Dropdown.php @@ -0,0 +1,63 @@ + 'dropdown']; + + protected $tag = 'div'; + + /** + * Create a dropdown element + * + * @param mixed $content + * @param Attributes|array $attributes + */ + public function __construct($content, $attributes = null) + { + $toggle = new ActionLink($content, '#', null, [ + 'aria-expanded' => false, + 'aria-haspopup' => true, + 'class' => 'dropdown-toggle', + 'role' => 'button' + ]); + + $this + ->setContent($toggle) + ->getAttributes() + ->add($attributes); + } + + /** + * Add a link to the dropdown + * + * @param mixed $content + * @param Url|string $url + * @param string $icon + * + * @return $this + */ + public function addLink($content, $url, $icon = null) + { + $this->links[] = new ActionLink($content, $url, $icon, ['class' => 'dropdown-item']); + + return $this; + } + + protected function assemble() + { + $this->add(Html::tag('div', ['class' => 'dropdown-menu'], $this->links)); + } +} diff --git a/vendor/ipl/web/src/Widget/HorizontalKeyValue.php b/vendor/ipl/web/src/Widget/HorizontalKeyValue.php new file mode 100644 index 00000000..1d1195e9 --- /dev/null +++ b/vendor/ipl/web/src/Widget/HorizontalKeyValue.php @@ -0,0 +1,31 @@ + 'horizontal-key-value']; + + protected $tag = 'div'; + + public function __construct($key, $value) + { + $this->key = $key; + $this->value = $value; + } + + protected function assemble() + { + $this->add([ + Html::tag('div', ['class' => 'key'], $this->key), + Html::tag('div', ['class' => 'value'], $this->value) + ]); + } +} diff --git a/vendor/ipl/web/src/Widget/IcingaIcon.php b/vendor/ipl/web/src/Widget/IcingaIcon.php new file mode 100644 index 00000000..8002dcc1 --- /dev/null +++ b/vendor/ipl/web/src/Widget/IcingaIcon.php @@ -0,0 +1,26 @@ +. The given + * name will be used as automatically added CSS class for the icon element in the format 'iicon-$name'. In addition, + * the CSS class 'icon' will be automatically added too. + * + * @param string $name The name of the icon + * @param Attributes|array $attributes The HTML attributes for the element + */ + public function __construct($name, $attributes = null) + { + $this + ->getAttributes() + ->add('class', ['icon', "iicon-$name"]) + ->add($attributes); + } +} diff --git a/vendor/ipl/web/src/Widget/Icon.php b/vendor/ipl/web/src/Widget/Icon.php new file mode 100644 index 00000000..2198c875 --- /dev/null +++ b/vendor/ipl/web/src/Widget/Icon.php @@ -0,0 +1,32 @@ +. The given + * name will be used as automatically added CSS class for the icon element in the format 'icon-$name'. In addition, + * the CSS class 'icon' will be automatically added too. + * + * @param string $name The name of the icon + * @param Attributes|array $attributes The HTML attributes for the element + */ + public function __construct($name, $attributes = null) + { + $this + ->getAttributes() + ->add('class', ['icon', 'fa', "fa-$name"]) + ->add($attributes); + } +} diff --git a/vendor/ipl/web/src/Widget/Link.php b/vendor/ipl/web/src/Widget/Link.php new file mode 100644 index 00000000..2d7c9f57 --- /dev/null +++ b/vendor/ipl/web/src/Widget/Link.php @@ -0,0 +1,83 @@ +setContent($content) + ->setUrl($url) + ->getAttributes() + ->add($attributes) + ->registerAttributeCallback('href', [$this, 'createHrefAttribute']); + } + + /** + * Get the URL of the link + * + * @return Url + */ + public function getUrl() + { + return $this->url; + } + + /** + * Set the URL of the link + * + * @param Url|string $url + * + * @return $this + */ + public function setUrl($url) + { + if (! $url instanceof Url) { + try { + $url = Url::fromPath($url); + } catch (\Exception $e) { + $url = 'invalid'; + } + } + + $this->url = $url; + + return $this; + } + + /** + * Create and return the href attribute + * + * Used as attribute callback for the href attribute. + * + * @return Attribute + */ + public function createHrefAttribute() + { + return new Attribute('href', (string) $this->getUrl()); + } +} diff --git a/vendor/ipl/web/src/Widget/StateBadge.php b/vendor/ipl/web/src/Widget/StateBadge.php new file mode 100644 index 00000000..908a348b --- /dev/null +++ b/vendor/ipl/web/src/Widget/StateBadge.php @@ -0,0 +1,47 @@ + 'state-badge']; + + /** @var mixed Badge content */ + protected $content; + + /** @var bool Whether the state is handled */ + protected $isHandled; + + /** @var string Textual representation of a state */ + protected $state; + + /** + * Create a new state badge + * + * @param mixed $content Content of the badge + * @param string $state Textual representation of a state + * @param bool $isHandled True if state is handled + */ + public function __construct($content, string $state, bool $isHandled = false) + { + $this->content = $content; + $this->isHandled = $isHandled; + $this->state = $state; + } + + protected function assemble() + { + $this->setTag('span'); + + $class = "state-{$this->state}"; + if ($this->isHandled) { + $class .= ' handled'; + } + + $this->addAttributes(['class' => $class]); + + $this->add($this->content); + } +} diff --git a/vendor/ipl/web/src/Widget/StateBall.php b/vendor/ipl/web/src/Widget/StateBall.php new file mode 100644 index 00000000..5a1216d7 --- /dev/null +++ b/vendor/ipl/web/src/Widget/StateBall.php @@ -0,0 +1,43 @@ +defaultAttributes = ['class' => "state-ball state-$state ball-size-$size"]; + } +} diff --git a/vendor/ipl/web/src/Widget/Tabs.php b/vendor/ipl/web/src/Widget/Tabs.php new file mode 100644 index 00000000..32ba8e99 --- /dev/null +++ b/vendor/ipl/web/src/Widget/Tabs.php @@ -0,0 +1,190 @@ + 'tabs primary-nav nav']; + + /** @var \Icinga\Web\Widget\Tabs */ + protected $tabs; + + /** @var bool Whether data exports are enabled */ + protected $dataExportsEnabled = false; + + /** @var bool Whether the legacy extensions should be shown by default */ + protected $legacyExtensionsEnabled = true; + + /** @var Url */ + protected $refreshUrl; + + public function __construct() + { + $this->tabs = new \Icinga\Web\Widget\Tabs(); + } + + /** + * Don't show legacy extensions by default + */ + public function disableLegacyExtensions() + { + $this->legacyExtensionsEnabled = false; + } + + /** + * Show export actions for JSON and CSV + */ + public function enableDataExports() + { + $this->dataExportsEnabled = true; + } + + /** + * Set the url for the refresh button + * + * @param Url $url + * + * @return $this + */ + public function setRefreshUrl(Url $url) + { + $this->refreshUrl = $url; + + return $this; + } + + protected function assemble() + { + if ($this->legacyExtensionsEnabled) { + $this->tabs->extend(new OutputFormat( + $this->dataExportsEnabled + ? [] + : [OutputFormat::TYPE_CSV, OutputFormat::TYPE_JSON] + )) + ->extend(new DashboardAction()) + ->extend(new MenuAction()); + } + + $tabHtml = substr($this->tabs->render(), 34, -5); + if ($this->refreshUrl !== null) { + $tabHtml = preg_replace( + '/(?<=class="refresh-container-control spinner" href=")([^"]*)/', + $this->refreshUrl->getAbsoluteUrl(), + $tabHtml + ); + } + + parent::add(HtmlString::create($tabHtml)); + } + + /** + * Activate the tab with the given name + * + * @param string $name + * + * @return $this + * + * @throws InvalidArgumentException + */ + public function activate($name) + { + try { + $this->tabs->activate($name); + } catch (Exception $e) { + throw new InvalidArgumentException($e->getMessage()); + } + + return $this; + } + + /** + * Get active tab + * + * @return \Icinga\Web\Widget\Tab + */ + public function getActiveTab() + { + return $this->tabs->get($this->tabs->getActiveName()); + } + + /** + * Add the given tab + * + * @param string $name + * @param mixed $tab + * + * @return $this + * + * @throws InvalidArgumentException + */ + public function add($name, $tab = null) + { + if ($tab === null) { + throw new InvalidArgumentException('Argument $tab is required'); + } + + try { + $this->tabs->add($name, $tab); + } catch (Exception $e) { + throw new InvalidArgumentException($e->getMessage()); + } + + if (is_array($tab) && isset($tab['active']) && $tab['active']) { + // Otherwise Tabs::getActiveName() returns null + $this->tabs->activate($name); + } + + return $this; + } + + /** + * Get a tab + * + * @param string $name + * + * @return \Icinga\Web\Widget\Tab|null + */ + public function get($name) + { + return $this->tabs->get($name); + } + + /** + * Count tabs + * + * @return int + */ + public function count(): int + { + return $this->tabs->count(); + } + + /** + * Apply a Tabextension on $this->tabs object not on this class + * + * @param Tabextension $extension + * + * @return $this + */ + public function extend(Tabextension $extension) + { + $this->tabs->extend($extension); + + return $this; + } +} diff --git a/vendor/ipl/web/src/Widget/TimeAgo.php b/vendor/ipl/web/src/Widget/TimeAgo.php new file mode 100644 index 00000000..cbd0dad2 --- /dev/null +++ b/vendor/ipl/web/src/Widget/TimeAgo.php @@ -0,0 +1,33 @@ + 'time-ago']; + + public function __construct($ago) + { + $this->ago = (int) $ago; + } + + protected function assemble() + { + $dateTime = DateFormatter::formatDateTime($this->ago); + + $this->addAttributes([ + 'datetime' => $dateTime, + 'title' => $dateTime + ]); + + $this->add(DateFormatter::timeAgo($this->ago)); + } +} diff --git a/vendor/ipl/web/src/Widget/TimeSince.php b/vendor/ipl/web/src/Widget/TimeSince.php new file mode 100644 index 00000000..308e3580 --- /dev/null +++ b/vendor/ipl/web/src/Widget/TimeSince.php @@ -0,0 +1,33 @@ + 'time-since']; + + public function __construct($since) + { + $this->since = (int) $since; + } + + protected function assemble() + { + $dateTime = DateFormatter::formatDateTime($this->since); + + $this->addAttributes([ + 'datetime' => $dateTime, + 'title' => $dateTime + ]); + + $this->add(DateFormatter::timeSince($this->since)); + } +} diff --git a/vendor/ipl/web/src/Widget/TimeUntil.php b/vendor/ipl/web/src/Widget/TimeUntil.php new file mode 100644 index 00000000..ba1f527e --- /dev/null +++ b/vendor/ipl/web/src/Widget/TimeUntil.php @@ -0,0 +1,33 @@ + 'time-until']; + + public function __construct($until) + { + $this->until = (int) $until; + } + + protected function assemble() + { + $dateTime = DateFormatter::formatDateTime($this->until); + + $this->addAttributes([ + 'datetime' => $dateTime, + 'title' => $dateTime + ]); + + $this->add(DateFormatter::timeUntil($this->until)); + } +} diff --git a/vendor/ipl/web/src/Widget/VerticalKeyValue.php b/vendor/ipl/web/src/Widget/VerticalKeyValue.php new file mode 100644 index 00000000..388c740c --- /dev/null +++ b/vendor/ipl/web/src/Widget/VerticalKeyValue.php @@ -0,0 +1,32 @@ + 'vertical-key-value']; + + public function __construct($key, $value) + { + $this->key = $key; + $this->value = $value; + } + + protected function assemble() + { + $this->add([ + Html::tag('span', ['class' => 'value'], $this->value), + Html::tag('br'), + Html::tag('span', ['class' => 'key'], $this->key), + ]); + } +} diff --git a/vendor/paragonie/random_compat/LICENSE b/vendor/paragonie/random_compat/LICENSE new file mode 100644 index 00000000..45c7017d --- /dev/null +++ b/vendor/paragonie/random_compat/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 Paragon Initiative Enterprises + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/vendor/paragonie/random_compat/composer.json b/vendor/paragonie/random_compat/composer.json new file mode 100644 index 00000000..f2b9c4e5 --- /dev/null +++ b/vendor/paragonie/random_compat/composer.json @@ -0,0 +1,34 @@ +{ + "name": "paragonie/random_compat", + "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", + "keywords": [ + "csprng", + "random", + "polyfill", + "pseudorandom" + ], + "license": "MIT", + "type": "library", + "authors": [ + { + "name": "Paragon Initiative Enterprises", + "email": "security@paragonie.com", + "homepage": "https://paragonie.com" + } + ], + "support": { + "issues": "https://github.com/paragonie/random_compat/issues", + "email": "info@paragonie.com", + "source": "https://github.com/paragonie/random_compat" + }, + "require": { + "php": ">= 7" + }, + "require-dev": { + "vimeo/psalm": "^1", + "phpunit/phpunit": "4.*|5.*" + }, + "suggest": { + "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." + } +} diff --git a/vendor/paragonie/random_compat/lib/random.php b/vendor/paragonie/random_compat/lib/random.php new file mode 100644 index 00000000..c7731a56 --- /dev/null +++ b/vendor/paragonie/random_compat/lib/random.php @@ -0,0 +1,32 @@ +buildFromDirectory(dirname(__DIR__).'/lib'); +rename( + dirname(__DIR__).'/lib/index.php', + dirname(__DIR__).'/lib/random.php' +); + +/** + * If we pass an (optional) path to a private key as a second argument, we will + * sign the Phar with OpenSSL. + * + * If you leave this out, it will produce an unsigned .phar! + */ +if ($argc > 1) { + if (!@is_readable($argv[1])) { + echo 'Could not read the private key file:', $argv[1], "\n"; + exit(255); + } + $pkeyFile = file_get_contents($argv[1]); + + $private = openssl_get_privatekey($pkeyFile); + if ($private !== false) { + $pkey = ''; + openssl_pkey_export($private, $pkey); + $phar->setSignatureAlgorithm(Phar::OPENSSL, $pkey); + + /** + * Save the corresponding public key to the file + */ + if (!@is_readable($dist.'/random_compat.phar.pubkey')) { + $details = openssl_pkey_get_details($private); + file_put_contents( + $dist.'/random_compat.phar.pubkey', + $details['key'] + ); + } + } else { + echo 'An error occurred reading the private key from OpenSSL.', "\n"; + exit(255); + } +} diff --git a/vendor/paragonie/random_compat/psalm-autoload.php b/vendor/paragonie/random_compat/psalm-autoload.php new file mode 100644 index 00000000..d71d1b81 --- /dev/null +++ b/vendor/paragonie/random_compat/psalm-autoload.php @@ -0,0 +1,9 @@ +=5.3.0" + }, + "autoload": { + "psr-4": { + "Psr\\Http\\Message\\": "src/" + } + }, + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + } +} diff --git a/vendor/psr/http-message/src/MessageInterface.php b/vendor/psr/http-message/src/MessageInterface.php new file mode 100644 index 00000000..dd46e5ec --- /dev/null +++ b/vendor/psr/http-message/src/MessageInterface.php @@ -0,0 +1,187 @@ +getHeaders() as $name => $values) { + * echo $name . ": " . implode(", ", $values); + * } + * + * // Emit headers iteratively: + * foreach ($message->getHeaders() as $name => $values) { + * foreach ($values as $value) { + * header(sprintf('%s: %s', $name, $value), false); + * } + * } + * + * While header names are not case-sensitive, getHeaders() will preserve the + * exact case in which headers were originally specified. + * + * @return string[][] Returns an associative array of the message's headers. Each + * key MUST be a header name, and each value MUST be an array of strings + * for that header. + */ + public function getHeaders(); + + /** + * Checks if a header exists by the given case-insensitive name. + * + * @param string $name Case-insensitive header field name. + * @return bool Returns true if any header names match the given header + * name using a case-insensitive string comparison. Returns false if + * no matching header name is found in the message. + */ + public function hasHeader($name); + + /** + * Retrieves a message header value by the given case-insensitive name. + * + * This method returns an array of all the header values of the given + * case-insensitive header name. + * + * If the header does not appear in the message, this method MUST return an + * empty array. + * + * @param string $name Case-insensitive header field name. + * @return string[] An array of string values as provided for the given + * header. If the header does not appear in the message, this method MUST + * return an empty array. + */ + public function getHeader($name); + + /** + * Retrieves a comma-separated string of the values for a single header. + * + * This method returns all of the header values of the given + * case-insensitive header name as a string concatenated together using + * a comma. + * + * NOTE: Not all header values may be appropriately represented using + * comma concatenation. For such headers, use getHeader() instead + * and supply your own delimiter when concatenating. + * + * If the header does not appear in the message, this method MUST return + * an empty string. + * + * @param string $name Case-insensitive header field name. + * @return string A string of values as provided for the given header + * concatenated together using a comma. If the header does not appear in + * the message, this method MUST return an empty string. + */ + public function getHeaderLine($name); + + /** + * Return an instance with the provided value replacing the specified header. + * + * While header names are case-insensitive, the casing of the header will + * be preserved by this function, and returned from getHeaders(). + * + * This method MUST be implemented in such a way as to retain the + * immutability of the message, and MUST return an instance that has the + * new and/or updated header and value. + * + * @param string $name Case-insensitive header field name. + * @param string|string[] $value Header value(s). + * @return static + * @throws \InvalidArgumentException for invalid header names or values. + */ + public function withHeader($name, $value); + + /** + * Return an instance with the specified header appended with the given value. + * + * Existing values for the specified header will be maintained. The new + * value(s) will be appended to the existing list. If the header did not + * exist previously, it will be added. + * + * This method MUST be implemented in such a way as to retain the + * immutability of the message, and MUST return an instance that has the + * new header and/or value. + * + * @param string $name Case-insensitive header field name to add. + * @param string|string[] $value Header value(s). + * @return static + * @throws \InvalidArgumentException for invalid header names or values. + */ + public function withAddedHeader($name, $value); + + /** + * Return an instance without the specified header. + * + * Header resolution MUST be done without case-sensitivity. + * + * This method MUST be implemented in such a way as to retain the + * immutability of the message, and MUST return an instance that removes + * the named header. + * + * @param string $name Case-insensitive header field name to remove. + * @return static + */ + public function withoutHeader($name); + + /** + * Gets the body of the message. + * + * @return StreamInterface Returns the body as a stream. + */ + public function getBody(); + + /** + * Return an instance with the specified message body. + * + * The body MUST be a StreamInterface object. + * + * This method MUST be implemented in such a way as to retain the + * immutability of the message, and MUST return a new instance that has the + * new body stream. + * + * @param StreamInterface $body Body. + * @return static + * @throws \InvalidArgumentException When the body is not valid. + */ + public function withBody(StreamInterface $body); +} diff --git a/vendor/psr/http-message/src/RequestInterface.php b/vendor/psr/http-message/src/RequestInterface.php new file mode 100644 index 00000000..a96d4fd6 --- /dev/null +++ b/vendor/psr/http-message/src/RequestInterface.php @@ -0,0 +1,129 @@ +getQuery()` + * or from the `QUERY_STRING` server param. + * + * @return array + */ + public function getQueryParams(); + + /** + * Return an instance with the specified query string arguments. + * + * These values SHOULD remain immutable over the course of the incoming + * request. They MAY be injected during instantiation, such as from PHP's + * $_GET superglobal, or MAY be derived from some other value such as the + * URI. In cases where the arguments are parsed from the URI, the data + * MUST be compatible with what PHP's parse_str() would return for + * purposes of how duplicate query parameters are handled, and how nested + * sets are handled. + * + * Setting query string arguments MUST NOT change the URI stored by the + * request, nor the values in the server params. + * + * This method MUST be implemented in such a way as to retain the + * immutability of the message, and MUST return an instance that has the + * updated query string arguments. + * + * @param array $query Array of query string arguments, typically from + * $_GET. + * @return static + */ + public function withQueryParams(array $query); + + /** + * Retrieve normalized file upload data. + * + * This method returns upload metadata in a normalized tree, with each leaf + * an instance of Psr\Http\Message\UploadedFileInterface. + * + * These values MAY be prepared from $_FILES or the message body during + * instantiation, or MAY be injected via withUploadedFiles(). + * + * @return array An array tree of UploadedFileInterface instances; an empty + * array MUST be returned if no data is present. + */ + public function getUploadedFiles(); + + /** + * Create a new instance with the specified uploaded files. + * + * This method MUST be implemented in such a way as to retain the + * immutability of the message, and MUST return an instance that has the + * updated body parameters. + * + * @param array $uploadedFiles An array tree of UploadedFileInterface instances. + * @return static + * @throws \InvalidArgumentException if an invalid structure is provided. + */ + public function withUploadedFiles(array $uploadedFiles); + + /** + * Retrieve any parameters provided in the request body. + * + * If the request Content-Type is either application/x-www-form-urlencoded + * or multipart/form-data, and the request method is POST, this method MUST + * return the contents of $_POST. + * + * Otherwise, this method may return any results of deserializing + * the request body content; as parsing returns structured content, the + * potential types MUST be arrays or objects only. A null value indicates + * the absence of body content. + * + * @return null|array|object The deserialized body parameters, if any. + * These will typically be an array or object. + */ + public function getParsedBody(); + + /** + * Return an instance with the specified body parameters. + * + * These MAY be injected during instantiation. + * + * If the request Content-Type is either application/x-www-form-urlencoded + * or multipart/form-data, and the request method is POST, use this method + * ONLY to inject the contents of $_POST. + * + * The data IS NOT REQUIRED to come from $_POST, but MUST be the results of + * deserializing the request body content. Deserialization/parsing returns + * structured data, and, as such, this method ONLY accepts arrays or objects, + * or a null value if nothing was available to parse. + * + * As an example, if content negotiation determines that the request data + * is a JSON payload, this method could be used to create a request + * instance with the deserialized parameters. + * + * This method MUST be implemented in such a way as to retain the + * immutability of the message, and MUST return an instance that has the + * updated body parameters. + * + * @param null|array|object $data The deserialized body data. This will + * typically be in an array or object. + * @return static + * @throws \InvalidArgumentException if an unsupported argument type is + * provided. + */ + public function withParsedBody($data); + + /** + * Retrieve attributes derived from the request. + * + * The request "attributes" may be used to allow injection of any + * parameters derived from the request: e.g., the results of path + * match operations; the results of decrypting cookies; the results of + * deserializing non-form-encoded message bodies; etc. Attributes + * will be application and request specific, and CAN be mutable. + * + * @return array Attributes derived from the request. + */ + public function getAttributes(); + + /** + * Retrieve a single derived request attribute. + * + * Retrieves a single derived request attribute as described in + * getAttributes(). If the attribute has not been previously set, returns + * the default value as provided. + * + * This method obviates the need for a hasAttribute() method, as it allows + * specifying a default value to return if the attribute is not found. + * + * @see getAttributes() + * @param string $name The attribute name. + * @param mixed $default Default value to return if the attribute does not exist. + * @return mixed + */ + public function getAttribute($name, $default = null); + + /** + * Return an instance with the specified derived request attribute. + * + * This method allows setting a single derived request attribute as + * described in getAttributes(). + * + * This method MUST be implemented in such a way as to retain the + * immutability of the message, and MUST return an instance that has the + * updated attribute. + * + * @see getAttributes() + * @param string $name The attribute name. + * @param mixed $value The value of the attribute. + * @return static + */ + public function withAttribute($name, $value); + + /** + * Return an instance that removes the specified derived request attribute. + * + * This method allows removing a single derived request attribute as + * described in getAttributes(). + * + * This method MUST be implemented in such a way as to retain the + * immutability of the message, and MUST return an instance that removes + * the attribute. + * + * @see getAttributes() + * @param string $name The attribute name. + * @return static + */ + public function withoutAttribute($name); +} diff --git a/vendor/psr/http-message/src/StreamInterface.php b/vendor/psr/http-message/src/StreamInterface.php new file mode 100644 index 00000000..f68f3912 --- /dev/null +++ b/vendor/psr/http-message/src/StreamInterface.php @@ -0,0 +1,158 @@ + + * [user-info@]host[:port] + * + * + * If the port component is not set or is the standard port for the current + * scheme, it SHOULD NOT be included. + * + * @see https://tools.ietf.org/html/rfc3986#section-3.2 + * @return string The URI authority, in "[user-info@]host[:port]" format. + */ + public function getAuthority(); + + /** + * Retrieve the user information component of the URI. + * + * If no user information is present, this method MUST return an empty + * string. + * + * If a user is present in the URI, this will return that value; + * additionally, if the password is also present, it will be appended to the + * user value, with a colon (":") separating the values. + * + * The trailing "@" character is not part of the user information and MUST + * NOT be added. + * + * @return string The URI user information, in "username[:password]" format. + */ + public function getUserInfo(); + + /** + * Retrieve the host component of the URI. + * + * If no host is present, this method MUST return an empty string. + * + * The value returned MUST be normalized to lowercase, per RFC 3986 + * Section 3.2.2. + * + * @see http://tools.ietf.org/html/rfc3986#section-3.2.2 + * @return string The URI host. + */ + public function getHost(); + + /** + * Retrieve the port component of the URI. + * + * If a port is present, and it is non-standard for the current scheme, + * this method MUST return it as an integer. If the port is the standard port + * used with the current scheme, this method SHOULD return null. + * + * If no port is present, and no scheme is present, this method MUST return + * a null value. + * + * If no port is present, but a scheme is present, this method MAY return + * the standard port for that scheme, but SHOULD return null. + * + * @return null|int The URI port. + */ + public function getPort(); + + /** + * Retrieve the path component of the URI. + * + * The path can either be empty or absolute (starting with a slash) or + * rootless (not starting with a slash). Implementations MUST support all + * three syntaxes. + * + * Normally, the empty path "" and absolute path "/" are considered equal as + * defined in RFC 7230 Section 2.7.3. But this method MUST NOT automatically + * do this normalization because in contexts with a trimmed base path, e.g. + * the front controller, this difference becomes significant. It's the task + * of the user to handle both "" and "/". + * + * The value returned MUST be percent-encoded, but MUST NOT double-encode + * any characters. To determine what characters to encode, please refer to + * RFC 3986, Sections 2 and 3.3. + * + * As an example, if the value should include a slash ("/") not intended as + * delimiter between path segments, that value MUST be passed in encoded + * form (e.g., "%2F") to the instance. + * + * @see https://tools.ietf.org/html/rfc3986#section-2 + * @see https://tools.ietf.org/html/rfc3986#section-3.3 + * @return string The URI path. + */ + public function getPath(); + + /** + * Retrieve the query string of the URI. + * + * If no query string is present, this method MUST return an empty string. + * + * The leading "?" character is not part of the query and MUST NOT be + * added. + * + * The value returned MUST be percent-encoded, but MUST NOT double-encode + * any characters. To determine what characters to encode, please refer to + * RFC 3986, Sections 2 and 3.4. + * + * As an example, if a value in a key/value pair of the query string should + * include an ampersand ("&") not intended as a delimiter between values, + * that value MUST be passed in encoded form (e.g., "%26") to the instance. + * + * @see https://tools.ietf.org/html/rfc3986#section-2 + * @see https://tools.ietf.org/html/rfc3986#section-3.4 + * @return string The URI query string. + */ + public function getQuery(); + + /** + * Retrieve the fragment component of the URI. + * + * If no fragment is present, this method MUST return an empty string. + * + * The leading "#" character is not part of the fragment and MUST NOT be + * added. + * + * The value returned MUST be percent-encoded, but MUST NOT double-encode + * any characters. To determine what characters to encode, please refer to + * RFC 3986, Sections 2 and 3.5. + * + * @see https://tools.ietf.org/html/rfc3986#section-2 + * @see https://tools.ietf.org/html/rfc3986#section-3.5 + * @return string The URI fragment. + */ + public function getFragment(); + + /** + * Return an instance with the specified scheme. + * + * This method MUST retain the state of the current instance, and return + * an instance that contains the specified scheme. + * + * Implementations MUST support the schemes "http" and "https" case + * insensitively, and MAY accommodate other schemes if required. + * + * An empty scheme is equivalent to removing the scheme. + * + * @param string $scheme The scheme to use with the new instance. + * @return static A new instance with the specified scheme. + * @throws \InvalidArgumentException for invalid or unsupported schemes. + */ + public function withScheme($scheme); + + /** + * Return an instance with the specified user information. + * + * This method MUST retain the state of the current instance, and return + * an instance that contains the specified user information. + * + * Password is optional, but the user information MUST include the + * user; an empty string for the user is equivalent to removing user + * information. + * + * @param string $user The user name to use for authority. + * @param null|string $password The password associated with $user. + * @return static A new instance with the specified user information. + */ + public function withUserInfo($user, $password = null); + + /** + * Return an instance with the specified host. + * + * This method MUST retain the state of the current instance, and return + * an instance that contains the specified host. + * + * An empty host value is equivalent to removing the host. + * + * @param string $host The hostname to use with the new instance. + * @return static A new instance with the specified host. + * @throws \InvalidArgumentException for invalid hostnames. + */ + public function withHost($host); + + /** + * Return an instance with the specified port. + * + * This method MUST retain the state of the current instance, and return + * an instance that contains the specified port. + * + * Implementations MUST raise an exception for ports outside the + * established TCP and UDP port ranges. + * + * A null value provided for the port is equivalent to removing the port + * information. + * + * @param null|int $port The port to use with the new instance; a null value + * removes the port information. + * @return static A new instance with the specified port. + * @throws \InvalidArgumentException for invalid ports. + */ + public function withPort($port); + + /** + * Return an instance with the specified path. + * + * This method MUST retain the state of the current instance, and return + * an instance that contains the specified path. + * + * The path can either be empty or absolute (starting with a slash) or + * rootless (not starting with a slash). Implementations MUST support all + * three syntaxes. + * + * If the path is intended to be domain-relative rather than path relative then + * it must begin with a slash ("/"). Paths not starting with a slash ("/") + * are assumed to be relative to some base path known to the application or + * consumer. + * + * Users can provide both encoded and decoded path characters. + * Implementations ensure the correct encoding as outlined in getPath(). + * + * @param string $path The path to use with the new instance. + * @return static A new instance with the specified path. + * @throws \InvalidArgumentException for invalid paths. + */ + public function withPath($path); + + /** + * Return an instance with the specified query string. + * + * This method MUST retain the state of the current instance, and return + * an instance that contains the specified query string. + * + * Users can provide both encoded and decoded query characters. + * Implementations ensure the correct encoding as outlined in getQuery(). + * + * An empty query string value is equivalent to removing the query string. + * + * @param string $query The query string to use with the new instance. + * @return static A new instance with the specified query string. + * @throws \InvalidArgumentException for invalid query strings. + */ + public function withQuery($query); + + /** + * Return an instance with the specified URI fragment. + * + * This method MUST retain the state of the current instance, and return + * an instance that contains the specified URI fragment. + * + * Users can provide both encoded and decoded fragment characters. + * Implementations ensure the correct encoding as outlined in getFragment(). + * + * An empty fragment value is equivalent to removing the fragment. + * + * @param string $fragment The fragment to use with the new instance. + * @return static A new instance with the specified fragment. + */ + public function withFragment($fragment); + + /** + * Return the string representation as a URI reference. + * + * Depending on which components of the URI are present, the resulting + * string is either a full URI or relative reference according to RFC 3986, + * Section 4.1. The method concatenates the various components of the URI, + * using the appropriate delimiters: + * + * - If a scheme is present, it MUST be suffixed by ":". + * - If an authority is present, it MUST be prefixed by "//". + * - The path can be concatenated without delimiters. But there are two + * cases where the path has to be adjusted to make the URI reference + * valid as PHP does not allow to throw an exception in __toString(): + * - If the path is rootless and an authority is present, the path MUST + * be prefixed by "/". + * - If the path is starting with more than one "/" and no authority is + * present, the starting slashes MUST be reduced to one. + * - If a query is present, it MUST be prefixed by "?". + * - If a fragment is present, it MUST be prefixed by "#". + * + * @see http://tools.ietf.org/html/rfc3986#section-4.1 + * @return string + */ + public function __toString(); +} diff --git a/vendor/psr/log/LICENSE b/vendor/psr/log/LICENSE new file mode 100644 index 00000000..474c952b --- /dev/null +++ b/vendor/psr/log/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2012 PHP Framework Interoperability Group + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/vendor/psr/log/Psr/Log/AbstractLogger.php b/vendor/psr/log/Psr/Log/AbstractLogger.php new file mode 100644 index 00000000..e02f9daf --- /dev/null +++ b/vendor/psr/log/Psr/Log/AbstractLogger.php @@ -0,0 +1,128 @@ +log(LogLevel::EMERGENCY, $message, $context); + } + + /** + * Action must be taken immediately. + * + * Example: Entire website down, database unavailable, etc. This should + * trigger the SMS alerts and wake you up. + * + * @param string $message + * @param mixed[] $context + * + * @return void + */ + public function alert($message, array $context = array()) + { + $this->log(LogLevel::ALERT, $message, $context); + } + + /** + * Critical conditions. + * + * Example: Application component unavailable, unexpected exception. + * + * @param string $message + * @param mixed[] $context + * + * @return void + */ + public function critical($message, array $context = array()) + { + $this->log(LogLevel::CRITICAL, $message, $context); + } + + /** + * Runtime errors that do not require immediate action but should typically + * be logged and monitored. + * + * @param string $message + * @param mixed[] $context + * + * @return void + */ + public function error($message, array $context = array()) + { + $this->log(LogLevel::ERROR, $message, $context); + } + + /** + * Exceptional occurrences that are not errors. + * + * Example: Use of deprecated APIs, poor use of an API, undesirable things + * that are not necessarily wrong. + * + * @param string $message + * @param mixed[] $context + * + * @return void + */ + public function warning($message, array $context = array()) + { + $this->log(LogLevel::WARNING, $message, $context); + } + + /** + * Normal but significant events. + * + * @param string $message + * @param mixed[] $context + * + * @return void + */ + public function notice($message, array $context = array()) + { + $this->log(LogLevel::NOTICE, $message, $context); + } + + /** + * Interesting events. + * + * Example: User logs in, SQL logs. + * + * @param string $message + * @param mixed[] $context + * + * @return void + */ + public function info($message, array $context = array()) + { + $this->log(LogLevel::INFO, $message, $context); + } + + /** + * Detailed debug information. + * + * @param string $message + * @param mixed[] $context + * + * @return void + */ + public function debug($message, array $context = array()) + { + $this->log(LogLevel::DEBUG, $message, $context); + } +} diff --git a/vendor/psr/log/Psr/Log/InvalidArgumentException.php b/vendor/psr/log/Psr/Log/InvalidArgumentException.php new file mode 100644 index 00000000..67f852d1 --- /dev/null +++ b/vendor/psr/log/Psr/Log/InvalidArgumentException.php @@ -0,0 +1,7 @@ +logger = $logger; + } +} diff --git a/vendor/psr/log/Psr/Log/LoggerInterface.php b/vendor/psr/log/Psr/Log/LoggerInterface.php new file mode 100644 index 00000000..2206cfde --- /dev/null +++ b/vendor/psr/log/Psr/Log/LoggerInterface.php @@ -0,0 +1,125 @@ +log(LogLevel::EMERGENCY, $message, $context); + } + + /** + * Action must be taken immediately. + * + * Example: Entire website down, database unavailable, etc. This should + * trigger the SMS alerts and wake you up. + * + * @param string $message + * @param array $context + * + * @return void + */ + public function alert($message, array $context = array()) + { + $this->log(LogLevel::ALERT, $message, $context); + } + + /** + * Critical conditions. + * + * Example: Application component unavailable, unexpected exception. + * + * @param string $message + * @param array $context + * + * @return void + */ + public function critical($message, array $context = array()) + { + $this->log(LogLevel::CRITICAL, $message, $context); + } + + /** + * Runtime errors that do not require immediate action but should typically + * be logged and monitored. + * + * @param string $message + * @param array $context + * + * @return void + */ + public function error($message, array $context = array()) + { + $this->log(LogLevel::ERROR, $message, $context); + } + + /** + * Exceptional occurrences that are not errors. + * + * Example: Use of deprecated APIs, poor use of an API, undesirable things + * that are not necessarily wrong. + * + * @param string $message + * @param array $context + * + * @return void + */ + public function warning($message, array $context = array()) + { + $this->log(LogLevel::WARNING, $message, $context); + } + + /** + * Normal but significant events. + * + * @param string $message + * @param array $context + * + * @return void + */ + public function notice($message, array $context = array()) + { + $this->log(LogLevel::NOTICE, $message, $context); + } + + /** + * Interesting events. + * + * Example: User logs in, SQL logs. + * + * @param string $message + * @param array $context + * + * @return void + */ + public function info($message, array $context = array()) + { + $this->log(LogLevel::INFO, $message, $context); + } + + /** + * Detailed debug information. + * + * @param string $message + * @param array $context + * + * @return void + */ + public function debug($message, array $context = array()) + { + $this->log(LogLevel::DEBUG, $message, $context); + } + + /** + * Logs with an arbitrary level. + * + * @param mixed $level + * @param string $message + * @param array $context + * + * @return void + * + * @throws \Psr\Log\InvalidArgumentException + */ + abstract public function log($level, $message, array $context = array()); +} diff --git a/vendor/psr/log/Psr/Log/NullLogger.php b/vendor/psr/log/Psr/Log/NullLogger.php new file mode 100644 index 00000000..c8f7293b --- /dev/null +++ b/vendor/psr/log/Psr/Log/NullLogger.php @@ -0,0 +1,30 @@ +logger) { }` + * blocks. + */ +class NullLogger extends AbstractLogger +{ + /** + * Logs with an arbitrary level. + * + * @param mixed $level + * @param string $message + * @param array $context + * + * @return void + * + * @throws \Psr\Log\InvalidArgumentException + */ + public function log($level, $message, array $context = array()) + { + // noop + } +} diff --git a/vendor/psr/log/Psr/Log/Test/DummyTest.php b/vendor/psr/log/Psr/Log/Test/DummyTest.php new file mode 100644 index 00000000..9638c110 --- /dev/null +++ b/vendor/psr/log/Psr/Log/Test/DummyTest.php @@ -0,0 +1,18 @@ + ". + * + * Example ->error('Foo') would yield "error Foo". + * + * @return string[] + */ + abstract public function getLogs(); + + public function testImplements() + { + $this->assertInstanceOf('Psr\Log\LoggerInterface', $this->getLogger()); + } + + /** + * @dataProvider provideLevelsAndMessages + */ + public function testLogsAtAllLevels($level, $message) + { + $logger = $this->getLogger(); + $logger->{$level}($message, array('user' => 'Bob')); + $logger->log($level, $message, array('user' => 'Bob')); + + $expected = array( + $level.' message of level '.$level.' with context: Bob', + $level.' message of level '.$level.' with context: Bob', + ); + $this->assertEquals($expected, $this->getLogs()); + } + + public function provideLevelsAndMessages() + { + return array( + LogLevel::EMERGENCY => array(LogLevel::EMERGENCY, 'message of level emergency with context: {user}'), + LogLevel::ALERT => array(LogLevel::ALERT, 'message of level alert with context: {user}'), + LogLevel::CRITICAL => array(LogLevel::CRITICAL, 'message of level critical with context: {user}'), + LogLevel::ERROR => array(LogLevel::ERROR, 'message of level error with context: {user}'), + LogLevel::WARNING => array(LogLevel::WARNING, 'message of level warning with context: {user}'), + LogLevel::NOTICE => array(LogLevel::NOTICE, 'message of level notice with context: {user}'), + LogLevel::INFO => array(LogLevel::INFO, 'message of level info with context: {user}'), + LogLevel::DEBUG => array(LogLevel::DEBUG, 'message of level debug with context: {user}'), + ); + } + + /** + * @expectedException \Psr\Log\InvalidArgumentException + */ + public function testThrowsOnInvalidLevel() + { + $logger = $this->getLogger(); + $logger->log('invalid level', 'Foo'); + } + + public function testContextReplacement() + { + $logger = $this->getLogger(); + $logger->info('{Message {nothing} {user} {foo.bar} a}', array('user' => 'Bob', 'foo.bar' => 'Bar')); + + $expected = array('info {Message {nothing} Bob Bar a}'); + $this->assertEquals($expected, $this->getLogs()); + } + + public function testObjectCastToString() + { + if (method_exists($this, 'createPartialMock')) { + $dummy = $this->createPartialMock('Psr\Log\Test\DummyTest', array('__toString')); + } else { + $dummy = $this->getMock('Psr\Log\Test\DummyTest', array('__toString')); + } + $dummy->expects($this->once()) + ->method('__toString') + ->will($this->returnValue('DUMMY')); + + $this->getLogger()->warning($dummy); + + $expected = array('warning DUMMY'); + $this->assertEquals($expected, $this->getLogs()); + } + + public function testContextCanContainAnything() + { + $closed = fopen('php://memory', 'r'); + fclose($closed); + + $context = array( + 'bool' => true, + 'null' => null, + 'string' => 'Foo', + 'int' => 0, + 'float' => 0.5, + 'nested' => array('with object' => new DummyTest), + 'object' => new \DateTime, + 'resource' => fopen('php://memory', 'r'), + 'closed' => $closed, + ); + + $this->getLogger()->warning('Crazy context data', $context); + + $expected = array('warning Crazy context data'); + $this->assertEquals($expected, $this->getLogs()); + } + + public function testContextExceptionKeyCanBeExceptionOrOtherValues() + { + $logger = $this->getLogger(); + $logger->warning('Random message', array('exception' => 'oops')); + $logger->critical('Uncaught Exception!', array('exception' => new \LogicException('Fail'))); + + $expected = array( + 'warning Random message', + 'critical Uncaught Exception!' + ); + $this->assertEquals($expected, $this->getLogs()); + } +} diff --git a/vendor/psr/log/Psr/Log/Test/TestLogger.php b/vendor/psr/log/Psr/Log/Test/TestLogger.php new file mode 100644 index 00000000..1be32304 --- /dev/null +++ b/vendor/psr/log/Psr/Log/Test/TestLogger.php @@ -0,0 +1,147 @@ + $level, + 'message' => $message, + 'context' => $context, + ]; + + $this->recordsByLevel[$record['level']][] = $record; + $this->records[] = $record; + } + + public function hasRecords($level) + { + return isset($this->recordsByLevel[$level]); + } + + public function hasRecord($record, $level) + { + if (is_string($record)) { + $record = ['message' => $record]; + } + return $this->hasRecordThatPasses(function ($rec) use ($record) { + if ($rec['message'] !== $record['message']) { + return false; + } + if (isset($record['context']) && $rec['context'] !== $record['context']) { + return false; + } + return true; + }, $level); + } + + public function hasRecordThatContains($message, $level) + { + return $this->hasRecordThatPasses(function ($rec) use ($message) { + return strpos($rec['message'], $message) !== false; + }, $level); + } + + public function hasRecordThatMatches($regex, $level) + { + return $this->hasRecordThatPasses(function ($rec) use ($regex) { + return preg_match($regex, $rec['message']) > 0; + }, $level); + } + + public function hasRecordThatPasses(callable $predicate, $level) + { + if (!isset($this->recordsByLevel[$level])) { + return false; + } + foreach ($this->recordsByLevel[$level] as $i => $rec) { + if (call_user_func($predicate, $rec, $i)) { + return true; + } + } + return false; + } + + public function __call($method, $args) + { + if (preg_match('/(.*)(Debug|Info|Notice|Warning|Error|Critical|Alert|Emergency)(.*)/', $method, $matches) > 0) { + $genericMethod = $matches[1] . ('Records' !== $matches[3] ? 'Record' : '') . $matches[3]; + $level = strtolower($matches[2]); + if (method_exists($this, $genericMethod)) { + $args[] = $level; + return call_user_func_array([$this, $genericMethod], $args); + } + } + throw new \BadMethodCallException('Call to undefined method ' . get_class($this) . '::' . $method . '()'); + } + + public function reset() + { + $this->records = []; + $this->recordsByLevel = []; + } +} diff --git a/vendor/psr/log/composer.json b/vendor/psr/log/composer.json new file mode 100644 index 00000000..ca056953 --- /dev/null +++ b/vendor/psr/log/composer.json @@ -0,0 +1,26 @@ +{ + "name": "psr/log", + "description": "Common interface for logging libraries", + "keywords": ["psr", "psr-3", "log"], + "homepage": "https://github.com/php-fig/log", + "license": "MIT", + "authors": [ + { + "name": "PHP-FIG", + "homepage": "https://www.php-fig.org/" + } + ], + "require": { + "php": ">=5.3.0" + }, + "autoload": { + "psr-4": { + "Psr\\Log\\": "Psr/Log/" + } + }, + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev" + } + } +} diff --git a/vendor/ralouphie/getallheaders/LICENSE b/vendor/ralouphie/getallheaders/LICENSE new file mode 100644 index 00000000..be5540c2 --- /dev/null +++ b/vendor/ralouphie/getallheaders/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Ralph Khattar + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/vendor/ralouphie/getallheaders/composer.json b/vendor/ralouphie/getallheaders/composer.json new file mode 100644 index 00000000..de8ce62e --- /dev/null +++ b/vendor/ralouphie/getallheaders/composer.json @@ -0,0 +1,26 @@ +{ + "name": "ralouphie/getallheaders", + "description": "A polyfill for getallheaders.", + "license": "MIT", + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "require": { + "php": ">=5.6" + }, + "require-dev": { + "phpunit/phpunit": "^5 || ^6.5", + "php-coveralls/php-coveralls": "^2.1" + }, + "autoload": { + "files": ["src/getallheaders.php"] + }, + "autoload-dev": { + "psr-4": { + "getallheaders\\Tests\\": "tests/" + } + } +} diff --git a/vendor/ralouphie/getallheaders/src/getallheaders.php b/vendor/ralouphie/getallheaders/src/getallheaders.php new file mode 100644 index 00000000..c7285a5b --- /dev/null +++ b/vendor/ralouphie/getallheaders/src/getallheaders.php @@ -0,0 +1,46 @@ + 'Content-Type', + 'CONTENT_LENGTH' => 'Content-Length', + 'CONTENT_MD5' => 'Content-Md5', + ); + + foreach ($_SERVER as $key => $value) { + if (substr($key, 0, 5) === 'HTTP_') { + $key = substr($key, 5); + if (!isset($copy_server[$key]) || !isset($_SERVER[$key])) { + $key = str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', $key)))); + $headers[$key] = $value; + } + } elseif (isset($copy_server[$key])) { + $headers[$copy_server[$key]] = $value; + } + } + + if (!isset($headers['Authorization'])) { + if (isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION'])) { + $headers['Authorization'] = $_SERVER['REDIRECT_HTTP_AUTHORIZATION']; + } elseif (isset($_SERVER['PHP_AUTH_USER'])) { + $basic_pass = isset($_SERVER['PHP_AUTH_PW']) ? $_SERVER['PHP_AUTH_PW'] : ''; + $headers['Authorization'] = 'Basic ' . base64_encode($_SERVER['PHP_AUTH_USER'] . ':' . $basic_pass); + } elseif (isset($_SERVER['PHP_AUTH_DIGEST'])) { + $headers['Authorization'] = $_SERVER['PHP_AUTH_DIGEST']; + } + } + + return $headers; + } + +} diff --git a/vendor/ramsey/uuid/LICENSE b/vendor/ramsey/uuid/LICENSE new file mode 100644 index 00000000..1db0ef8c --- /dev/null +++ b/vendor/ramsey/uuid/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2012-2021 Ben Ramsey + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/vendor/ramsey/uuid/composer.json b/vendor/ramsey/uuid/composer.json new file mode 100644 index 00000000..8f5505d9 --- /dev/null +++ b/vendor/ramsey/uuid/composer.json @@ -0,0 +1,95 @@ +{ + "name": "ramsey/uuid", + "type": "library", + "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", + "keywords": ["uuid", "identifier", "guid"], + "homepage": "https://github.com/ramsey/uuid", + "license": "MIT", + "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + }, + { + "name": "Marijn Huizendveld", + "email": "marijn.huizendveld@gmail.com" + }, + { + "name": "Thibaud Fabre", + "email": "thibaud@aztech.io" + } + ], + "require": { + "php": "^5.4 | ^7.0 | ^8.0", + "ext-json": "*", + "paragonie/random_compat": "^1 | ^2 | ^9.99.99", + "symfony/polyfill-ctype": "^1.8" + }, + "require-dev": { + "codeception/aspect-mock": "^1 | ^2", + "doctrine/annotations": "^1.2", + "goaop/framework": "1.0.0-alpha.2 | ^1 | >=2.1.0 <=2.3.2", + "mockery/mockery": "^0.9.11 | ^1", + "moontoast/math": "^1.1", + "nikic/php-parser": "<=4.5.0", + "paragonie/random-lib": "^2", + "php-mock/php-mock-phpunit": "^0.3 | ^1.1 | ^2.6", + "php-parallel-lint/php-parallel-lint": "^1.3", + "phpunit/phpunit": ">=4.8.36 <9.0.0 | >=9.3.0", + "squizlabs/php_codesniffer": "^3.5", + "yoast/phpunit-polyfills": "^1.0" + }, + "suggest": { + "ext-ctype": "Provides support for PHP Ctype functions", + "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator", + "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator", + "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator", + "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).", + "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid", + "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type.", + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter" + }, + "config": { + "sort-packages": true, + "allow-plugins": { + "phpstan/extension-installer": true, + "dealerdirect/phpcodesniffer-composer-installer": true, + "ergebnis/composer-normalize": true, + "captainhook/plugin-composer": true + } + }, + "replace": { + "rhumsaa/uuid": "self.version" + }, + "autoload": { + "psr-4": { + "Ramsey\\Uuid\\": "src/" + }, + "files": [ + "src/functions.php" + ] + }, + "autoload-dev": { + "psr-4": { + "Ramsey\\Uuid\\Test\\": "tests/" + } + }, + "scripts": { + "lint": "parallel-lint src tests", + "phpcs": "phpcs src tests --standard=psr2 -sp --colors", + "phpunit": "phpunit --verbose --colors=always", + "phpunit-coverage": "phpunit --verbose --colors=always --coverage-html build/coverage", + "test": [ + "@lint", + "@phpcs", + "@phpunit" + ] + }, + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "rss": "https://github.com/ramsey/uuid/releases.atom", + "source": "https://github.com/ramsey/uuid", + "wiki": "https://github.com/ramsey/uuid/wiki" + } +} diff --git a/vendor/ramsey/uuid/src/BinaryUtils.php b/vendor/ramsey/uuid/src/BinaryUtils.php new file mode 100644 index 00000000..18ea467d --- /dev/null +++ b/vendor/ramsey/uuid/src/BinaryUtils.php @@ -0,0 +1,41 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Builder; + +use Ramsey\Uuid\Codec\CodecInterface; +use Ramsey\Uuid\Converter\NumberConverterInterface; +use Ramsey\Uuid\Uuid; + +/** + * DefaultUuidBuilder is the default UUID builder for ramsey/uuid; it builds + * instances of Uuid objects + */ +class DefaultUuidBuilder implements UuidBuilderInterface +{ + /** + * @var NumberConverterInterface + */ + private $converter; + + /** + * Constructs the DefaultUuidBuilder + * + * @param NumberConverterInterface $converter The number converter to use when constructing the Uuid + */ + public function __construct(NumberConverterInterface $converter) + { + $this->converter = $converter; + } + + /** + * Builds a Uuid + * + * @param CodecInterface $codec The codec to use for building this Uuid + * @param array $fields An array of fields from which to construct the Uuid; + * see {@see \Ramsey\Uuid\UuidInterface::getFieldsHex()} for array structure. + * @return Uuid + */ + public function build(CodecInterface $codec, array $fields) + { + return new Uuid($fields, $this->converter, $codec); + } +} diff --git a/vendor/ramsey/uuid/src/Builder/DegradedUuidBuilder.php b/vendor/ramsey/uuid/src/Builder/DegradedUuidBuilder.php new file mode 100644 index 00000000..7edb6deb --- /dev/null +++ b/vendor/ramsey/uuid/src/Builder/DegradedUuidBuilder.php @@ -0,0 +1,53 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Builder; + +use Ramsey\Uuid\Codec\CodecInterface; +use Ramsey\Uuid\Converter\NumberConverterInterface; +use Ramsey\Uuid\DegradedUuid; + +/** + * DegradedUuidBuilder builds instances of DegradedUuid + */ +class DegradedUuidBuilder implements UuidBuilderInterface +{ + /** + * @var NumberConverterInterface + */ + private $converter; + + /** + * Constructs the DegradedUuidBuilder + * + * @param NumberConverterInterface $converter The number converter to use when constructing the DegradedUuid + */ + public function __construct(NumberConverterInterface $converter) + { + $this->converter = $converter; + } + + /** + * Builds a DegradedUuid + * + * @param CodecInterface $codec The codec to use for building this DegradedUuid + * @param array $fields An array of fields from which to construct the DegradedUuid; + * see {@see \Ramsey\Uuid\UuidInterface::getFieldsHex()} for array structure. + * @return DegradedUuid + */ + public function build(CodecInterface $codec, array $fields) + { + return new DegradedUuid($fields, $this->converter, $codec); + } +} diff --git a/vendor/ramsey/uuid/src/Builder/UuidBuilderInterface.php b/vendor/ramsey/uuid/src/Builder/UuidBuilderInterface.php new file mode 100644 index 00000000..e4e99010 --- /dev/null +++ b/vendor/ramsey/uuid/src/Builder/UuidBuilderInterface.php @@ -0,0 +1,34 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Builder; + +use Ramsey\Uuid\Codec\CodecInterface; +use Ramsey\Uuid\UuidInterface; + +/** + * UuidBuilderInterface builds instances UuidInterface + */ +interface UuidBuilderInterface +{ + /** + * Builds an instance of a UuidInterface + * + * @param CodecInterface $codec The codec to use for building this UuidInterface instance + * @param array $fields An array of fields from which to construct a UuidInterface instance; + * see {@see \Ramsey\Uuid\UuidInterface::getFieldsHex()} for array structure. + * @return UuidInterface + */ + public function build(CodecInterface $codec, array $fields); +} diff --git a/vendor/ramsey/uuid/src/Codec/CodecInterface.php b/vendor/ramsey/uuid/src/Codec/CodecInterface.php new file mode 100644 index 00000000..c6c54c78 --- /dev/null +++ b/vendor/ramsey/uuid/src/Codec/CodecInterface.php @@ -0,0 +1,60 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Codec; + +use InvalidArgumentException; +use Ramsey\Uuid\Exception\InvalidUuidStringException; +use Ramsey\Uuid\UuidInterface; + +/** + * CodecInterface represents a UUID coder-decoder + */ +interface CodecInterface +{ + /** + * Encodes a UuidInterface as a string representation of a UUID + * + * @param UuidInterface $uuid + * @return string Hexadecimal string representation of a UUID + */ + public function encode(UuidInterface $uuid); + + /** + * Encodes a UuidInterface as a binary representation of a UUID + * + * @param UuidInterface $uuid + * @return string Binary string representation of a UUID + */ + public function encodeBinary(UuidInterface $uuid); + + /** + * Decodes a string representation of a UUID into a UuidInterface object instance + * + * @param string $encodedUuid + * @return UuidInterface + * @throws InvalidUuidStringException + */ + public function decode($encodedUuid); + + /** + * Decodes a binary representation of a UUID into a UuidInterface object instance + * + * @param string $bytes + * @return UuidInterface + * @throws InvalidUuidStringException + * @throws InvalidArgumentException if string has not 16 characters + */ + public function decodeBytes($bytes); +} diff --git a/vendor/ramsey/uuid/src/Codec/GuidStringCodec.php b/vendor/ramsey/uuid/src/Codec/GuidStringCodec.php new file mode 100644 index 00000000..36754807 --- /dev/null +++ b/vendor/ramsey/uuid/src/Codec/GuidStringCodec.php @@ -0,0 +1,103 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Codec; + +use Ramsey\Uuid\Exception\InvalidUuidStringException; +use Ramsey\Uuid\UuidInterface; + +/** + * GuidStringCodec encodes and decodes globally unique identifiers (GUID) + * + * @link https://en.wikipedia.org/wiki/Globally_unique_identifier + */ +class GuidStringCodec extends StringCodec +{ + /** + * Encodes a UuidInterface as a string representation of a GUID + * + * @param UuidInterface $uuid + * @return string Hexadecimal string representation of a GUID + */ + public function encode(UuidInterface $uuid) + { + $components = array_values($uuid->getFieldsHex()); + + // Swap byte-order on the first three fields + $this->swapFields($components); + + return vsprintf( + '%08s-%04s-%04s-%02s%02s-%012s', + $components + ); + } + + /** + * Encodes a UuidInterface as a binary representation of a GUID + * + * @param UuidInterface $uuid + * @return string Binary string representation of a GUID + */ + public function encodeBinary(UuidInterface $uuid) + { + $components = array_values($uuid->getFieldsHex()); + + return hex2bin(implode('', $components)); + } + + /** + * Decodes a string representation of a GUID into a UuidInterface object instance + * + * @param string $encodedUuid + * @return UuidInterface + * @throws InvalidUuidStringException + */ + public function decode($encodedUuid) + { + $components = $this->extractComponents($encodedUuid); + + $this->swapFields($components); + + return $this->getBuilder()->build($this, $this->getFields($components)); + } + + /** + * Decodes a binary representation of a GUID into a UuidInterface object instance + * + * @param string $bytes + * @return UuidInterface + * @throws InvalidUuidStringException + */ + public function decodeBytes($bytes) + { + // Specifically call parent::decode to preserve correct byte order + return parent::decode(bin2hex($bytes)); + } + + /** + * Swaps fields to support GUID byte order + * + * @param array $components An array of UUID components (the UUID exploded on its dashes) + * @return void + */ + protected function swapFields(array &$components) + { + $hex = unpack('H*', pack('L', hexdec($components[0]))); + $components[0] = $hex[1]; + $hex = unpack('H*', pack('S', hexdec($components[1]))); + $components[1] = $hex[1]; + $hex = unpack('H*', pack('S', hexdec($components[2]))); + $components[2] = $hex[1]; + } +} diff --git a/vendor/ramsey/uuid/src/Codec/OrderedTimeCodec.php b/vendor/ramsey/uuid/src/Codec/OrderedTimeCodec.php new file mode 100644 index 00000000..de91aab8 --- /dev/null +++ b/vendor/ramsey/uuid/src/Codec/OrderedTimeCodec.php @@ -0,0 +1,68 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ +namespace Ramsey\Uuid\Codec; + +use InvalidArgumentException; +use Ramsey\Uuid\UuidInterface; + +/** + * OrderedTimeCodec optimizes the bytes to increment UUIDs when time goes by, to improve database INSERTs. + * The string value will be unchanged from StringCodec. Only works for UUID type 1. + */ +class OrderedTimeCodec extends StringCodec +{ + + /** + * Encodes a UuidInterface as an optimized binary representation of a UUID + * + * @param UuidInterface $uuid + * @return string Binary string representation of a UUID + */ + public function encodeBinary(UuidInterface $uuid) + { + $fields = $uuid->getFieldsHex(); + + $optimized = [ + $fields['time_hi_and_version'], + $fields['time_mid'], + $fields['time_low'], + $fields['clock_seq_hi_and_reserved'], + $fields['clock_seq_low'], + $fields['node'], + ]; + + return hex2bin(implode('', $optimized)); + } + + /** + * Decodes an optimized binary representation of a UUID into a UuidInterface object instance + * + * @param string $bytes + * @return UuidInterface + * @throws InvalidArgumentException if string has not 16 characters + */ + public function decodeBytes($bytes) + { + if (strlen($bytes) !== 16) { + throw new InvalidArgumentException('$bytes string should contain 16 characters.'); + } + + $hex = unpack('H*', $bytes)[1]; + + // Rearrange the fields to their original order + $hex = substr($hex, 8, 4) . substr($hex, 12, 4) . substr($hex, 4, 4) . substr($hex, 0, 4) . substr($hex, 16); + + return $this->decode($hex); + } +} diff --git a/vendor/ramsey/uuid/src/Codec/StringCodec.php b/vendor/ramsey/uuid/src/Codec/StringCodec.php new file mode 100644 index 00000000..f1bc0249 --- /dev/null +++ b/vendor/ramsey/uuid/src/Codec/StringCodec.php @@ -0,0 +1,170 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Codec; + +use InvalidArgumentException; +use Ramsey\Uuid\Builder\UuidBuilderInterface; +use Ramsey\Uuid\Exception\InvalidUuidStringException; +use Ramsey\Uuid\Uuid; +use Ramsey\Uuid\UuidInterface; + +/** + * StringCodec encodes and decodes RFC 4122 UUIDs + * + * @link http://tools.ietf.org/html/rfc4122 + */ +class StringCodec implements CodecInterface +{ + /** + * @var UuidBuilderInterface + */ + private $builder; + + /** + * Constructs a StringCodec for use encoding and decoding UUIDs + * + * @param UuidBuilderInterface $builder The UUID builder to use when encoding UUIDs + */ + public function __construct(UuidBuilderInterface $builder) + { + $this->builder = $builder; + } + + /** + * Encodes a UuidInterface as a string representation of a UUID + * + * @param UuidInterface $uuid + * @return string Hexadecimal string representation of a UUID + */ + public function encode(UuidInterface $uuid) + { + $fields = array_values($uuid->getFieldsHex()); + + return vsprintf( + '%08s-%04s-%04s-%02s%02s-%012s', + $fields + ); + } + + /** + * Encodes a UuidInterface as a binary representation of a UUID + * + * @param UuidInterface $uuid + * @return string Binary string representation of a UUID + */ + public function encodeBinary(UuidInterface $uuid) + { + return hex2bin($uuid->getHex()); + } + + /** + * Decodes a string representation of a UUID into a UuidInterface object instance + * + * @param string $encodedUuid + * @return UuidInterface + * @throws InvalidUuidStringException + */ + public function decode($encodedUuid) + { + $components = $this->extractComponents($encodedUuid); + $fields = $this->getFields($components); + + return $this->builder->build($this, $fields); + } + + /** + * Decodes a binary representation of a UUID into a UuidInterface object instance + * + * @param string $bytes + * @return UuidInterface + * @throws InvalidArgumentException if string has not 16 characters + */ + public function decodeBytes($bytes) + { + if (strlen($bytes) !== 16) { + throw new InvalidArgumentException('$bytes string should contain 16 characters.'); + } + + $hexUuid = unpack('H*', $bytes); + + return $this->decode($hexUuid[1]); + } + + /** + * Returns the UUID builder + * + * @return UuidBuilderInterface + */ + protected function getBuilder() + { + return $this->builder; + } + + /** + * Returns an array of UUID components (the UUID exploded on its dashes) + * + * @param string $encodedUuid + * @return array + * @throws InvalidUuidStringException + */ + protected function extractComponents($encodedUuid) + { + $nameParsed = str_replace([ + 'urn:', + 'uuid:', + '{', + '}', + '-' + ], '', $encodedUuid); + + // We have stripped out the dashes and are breaking up the string using + // substr(). In this way, we can accept a full hex value that doesn't + // contain dashes. + $components = [ + substr($nameParsed, 0, 8), + substr($nameParsed, 8, 4), + substr($nameParsed, 12, 4), + substr($nameParsed, 16, 4), + substr($nameParsed, 20) + ]; + + $nameParsed = implode('-', $components); + + if (!Uuid::isValid($nameParsed)) { + throw new InvalidUuidStringException('Invalid UUID string: ' . $encodedUuid); + } + + return $components; + } + + /** + * Returns the fields that make up this UUID + * + * @see \Ramsey\Uuid\UuidInterface::getFieldsHex() + * @param array $components + * @return array + */ + protected function getFields(array $components) + { + return [ + 'time_low' => str_pad($components[0], 8, '0', STR_PAD_LEFT), + 'time_mid' => str_pad($components[1], 4, '0', STR_PAD_LEFT), + 'time_hi_and_version' => str_pad($components[2], 4, '0', STR_PAD_LEFT), + 'clock_seq_hi_and_reserved' => str_pad(substr($components[3], 0, 2), 2, '0', STR_PAD_LEFT), + 'clock_seq_low' => str_pad(substr($components[3], 2), 2, '0', STR_PAD_LEFT), + 'node' => str_pad($components[4], 12, '0', STR_PAD_LEFT) + ]; + } +} diff --git a/vendor/ramsey/uuid/src/Codec/TimestampFirstCombCodec.php b/vendor/ramsey/uuid/src/Codec/TimestampFirstCombCodec.php new file mode 100644 index 00000000..9d13af70 --- /dev/null +++ b/vendor/ramsey/uuid/src/Codec/TimestampFirstCombCodec.php @@ -0,0 +1,108 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ +namespace Ramsey\Uuid\Codec; + +use Ramsey\Uuid\Exception\InvalidUuidStringException; +use Ramsey\Uuid\UuidInterface; + +/** + * TimestampFirstCombCodec encodes and decodes COMB UUIDs which have the timestamp as the first 48 bits. + * To be used with MySQL, PostgreSQL, Oracle. + */ +class TimestampFirstCombCodec extends StringCodec +{ + /** + * Encodes a UuidInterface as a string representation of a timestamp first COMB UUID + * + * @param UuidInterface $uuid + * + * @return string Hexadecimal string representation of a GUID + */ + public function encode(UuidInterface $uuid) + { + $sixPieceComponents = array_values($uuid->getFieldsHex()); + + $this->swapTimestampAndRandomBits($sixPieceComponents); + + return vsprintf( + '%08s-%04s-%04s-%02s%02s-%012s', + $sixPieceComponents + ); + } + + /** + * Encodes a UuidInterface as a binary representation of timestamp first COMB UUID + * + * @param UuidInterface $uuid + * + * @return string Binary string representation of timestamp first COMB UUID + */ + public function encodeBinary(UuidInterface $uuid) + { + $stringEncoding = $this->encode($uuid); + + return hex2bin(str_replace('-', '', $stringEncoding)); + } + + /** + * Decodes a string representation of timestamp first COMB UUID into a UuidInterface object instance + * + * @param string $encodedUuid + * + * @return UuidInterface + * @throws InvalidUuidStringException + */ + public function decode($encodedUuid) + { + $fivePieceComponents = $this->extractComponents($encodedUuid); + + $this->swapTimestampAndRandomBits($fivePieceComponents); + + return $this->getBuilder()->build($this, $this->getFields($fivePieceComponents)); + } + + /** + * Decodes a binary representation of timestamp first COMB UUID into a UuidInterface object instance + * + * @param string $bytes + * + * @return UuidInterface + * @throws InvalidUuidStringException + */ + public function decodeBytes($bytes) + { + return $this->decode(bin2hex($bytes)); + } + + /** + * Swaps the first 48 bits with the last 48 bits + * + * @param array $components An array of UUID components (the UUID exploded on its dashes) + * + * @return void + */ + protected function swapTimestampAndRandomBits(array &$components) + { + $last48Bits = $components[4]; + if (count($components) == 6) { + $last48Bits = $components[5]; + $components[5] = $components[0] . $components[1]; + } else { + $components[4] = $components[0] . $components[1]; + } + + $components[0] = substr($last48Bits, 0, 8); + $components[1] = substr($last48Bits, 8, 4); + } +} diff --git a/vendor/ramsey/uuid/src/Codec/TimestampLastCombCodec.php b/vendor/ramsey/uuid/src/Codec/TimestampLastCombCodec.php new file mode 100644 index 00000000..240f613e --- /dev/null +++ b/vendor/ramsey/uuid/src/Codec/TimestampLastCombCodec.php @@ -0,0 +1,22 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ +namespace Ramsey\Uuid\Codec; + +/** + * TimestampLastCombCodec encodes and decodes COMB UUIDs which have the timestamp as the last 48 bits. + * To be used with MSSQL. + */ +class TimestampLastCombCodec extends StringCodec +{ +} diff --git a/vendor/ramsey/uuid/src/Converter/Number/BigNumberConverter.php b/vendor/ramsey/uuid/src/Converter/Number/BigNumberConverter.php new file mode 100644 index 00000000..d2351225 --- /dev/null +++ b/vendor/ramsey/uuid/src/Converter/Number/BigNumberConverter.php @@ -0,0 +1,54 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Converter\Number; + +use Moontoast\Math\BigNumber; +use Ramsey\Uuid\Converter\NumberConverterInterface; + +/** + * BigNumberConverter converts UUIDs from hexadecimal characters into + * moontoast/math `BigNumber` representations of integers and vice versa + */ +class BigNumberConverter implements NumberConverterInterface +{ + /** + * Converts a hexadecimal number into a `Moontoast\Math\BigNumber` representation + * + * @param string $hex The hexadecimal string representation to convert + * @return BigNumber + */ + public function fromHex($hex) + { + $number = BigNumber::convertToBase10($hex, 16); + + return new BigNumber($number); + } + + /** + * Converts an integer or `Moontoast\Math\BigNumber` integer representation + * into a hexadecimal string representation + * + * @param int|string|BigNumber $integer An integer or `Moontoast\Math\BigNumber` + * @return string Hexadecimal string + */ + public function toHex($integer) + { + if (!$integer instanceof BigNumber) { + $integer = new BigNumber($integer); + } + + return BigNumber::convertFromBase10($integer, 16); + } +} diff --git a/vendor/ramsey/uuid/src/Converter/Number/DegradedNumberConverter.php b/vendor/ramsey/uuid/src/Converter/Number/DegradedNumberConverter.php new file mode 100644 index 00000000..96a011c6 --- /dev/null +++ b/vendor/ramsey/uuid/src/Converter/Number/DegradedNumberConverter.php @@ -0,0 +1,58 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Converter\Number; + +use Ramsey\Uuid\Exception\UnsatisfiedDependencyException; +use Ramsey\Uuid\Converter\NumberConverterInterface; + +/** + * DegradedNumberConverter throws `UnsatisfiedDependencyException` exceptions + * if attempting to use number conversion functionality in an environment that + * does not support large integers (i.e. when moontoast/math is not available) + */ +class DegradedNumberConverter implements NumberConverterInterface +{ + /** + * Throws an `UnsatisfiedDependencyException` + * + * @param string $hex The hexadecimal string representation to convert + * @return void + * @throws UnsatisfiedDependencyException + */ + public function fromHex($hex) + { + throw new UnsatisfiedDependencyException( + 'Cannot call ' . __METHOD__ . ' without support for large ' + . 'integers, since integer is an unsigned ' + . '128-bit integer; Moontoast\Math\BigNumber is required.' + ); + } + + /** + * Throws an `UnsatisfiedDependencyException` + * + * @param mixed $integer An integer representation to convert + * @return void + * @throws UnsatisfiedDependencyException + */ + public function toHex($integer) + { + throw new UnsatisfiedDependencyException( + 'Cannot call ' . __METHOD__ . ' without support for large ' + . 'integers, since integer is an unsigned ' + . '128-bit integer; Moontoast\Math\BigNumber is required. ' + ); + } +} diff --git a/vendor/ramsey/uuid/src/Converter/NumberConverterInterface.php b/vendor/ramsey/uuid/src/Converter/NumberConverterInterface.php new file mode 100644 index 00000000..b978e2e7 --- /dev/null +++ b/vendor/ramsey/uuid/src/Converter/NumberConverterInterface.php @@ -0,0 +1,48 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Converter; + +use Ramsey\Uuid\Exception\UnsatisfiedDependencyException; + +/** + * NumberConverterInterface converts UUIDs from hexadecimal characters into + * representations of integers and vice versa + */ +interface NumberConverterInterface +{ + /** + * Converts a hexadecimal number into an integer representation of the number + * + * The integer representation returned may be an object or a string + * representation of the integer, depending on the implementation. + * + * @param string $hex The hexadecimal string representation to convert + * @return mixed + * @throws UnsatisfiedDependencyException if `Moontoast\Math\BigNumber` is not present + */ + public function fromHex($hex); + + /** + * Converts an integer representation into a hexadecimal string representation + * of the number + * + * @param mixed $integer An integer representation to convert; this may be + * a true integer, a string integer, or a object representation that + * this converter can understand + * @return string Hexadecimal string + * @throws UnsatisfiedDependencyException if `Moontoast\Math\BigNumber` is not present + */ + public function toHex($integer); +} diff --git a/vendor/ramsey/uuid/src/Converter/Time/BigNumberTimeConverter.php b/vendor/ramsey/uuid/src/Converter/Time/BigNumberTimeConverter.php new file mode 100644 index 00000000..112f7227 --- /dev/null +++ b/vendor/ramsey/uuid/src/Converter/Time/BigNumberTimeConverter.php @@ -0,0 +1,59 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Converter\Time; + +use Moontoast\Math\BigNumber; +use Ramsey\Uuid\Converter\TimeConverterInterface; + +/** + * BigNumberTimeConverter uses the moontoast/math library's `BigNumber` to + * provide facilities for converting parts of time into representations that may + * be used in UUIDs + */ +class BigNumberTimeConverter implements TimeConverterInterface +{ + /** + * Uses the provided seconds and micro-seconds to calculate the time_low, + * time_mid, and time_high fields used by RFC 4122 version 1 UUIDs + * + * @param string $seconds + * @param string $microSeconds + * @return string[] An array containing `low`, `mid`, and `high` keys + * @link http://tools.ietf.org/html/rfc4122#section-4.2.2 + */ + public function calculateTime($seconds, $microSeconds) + { + $uuidTime = new BigNumber('0'); + + $sec = new BigNumber($seconds); + $sec->multiply('10000000'); + + $usec = new BigNumber($microSeconds); + $usec->multiply('10'); + + $uuidTime + ->add($sec) + ->add($usec) + ->add('122192928000000000'); + + $uuidTimeHex = sprintf('%016s', $uuidTime->convertToBase(16)); + + return [ + 'low' => substr($uuidTimeHex, 8), + 'mid' => substr($uuidTimeHex, 4, 4), + 'hi' => substr($uuidTimeHex, 0, 4), + ]; + } +} diff --git a/vendor/ramsey/uuid/src/Converter/Time/DegradedTimeConverter.php b/vendor/ramsey/uuid/src/Converter/Time/DegradedTimeConverter.php new file mode 100644 index 00000000..b94589cd --- /dev/null +++ b/vendor/ramsey/uuid/src/Converter/Time/DegradedTimeConverter.php @@ -0,0 +1,42 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Converter\Time; + +use Ramsey\Uuid\Converter\TimeConverterInterface; +use Ramsey\Uuid\Exception\UnsatisfiedDependencyException; + +/** + * DegradedTimeConverter throws `UnsatisfiedDependencyException` exceptions + * if attempting to use time conversion functionality in an environment that + * does not support large integers (i.e. when moontoast/math is not available) + */ +class DegradedTimeConverter implements TimeConverterInterface +{ + /** + * Throws an `UnsatisfiedDependencyException` + * + * @param string $seconds + * @param string $microSeconds + * @return void + * @throws UnsatisfiedDependencyException if called on a 32-bit system and `Moontoast\Math\BigNumber` is not present + */ + public function calculateTime($seconds, $microSeconds) + { + throw new UnsatisfiedDependencyException( + 'When calling ' . __METHOD__ . ' on a 32-bit system, ' + . 'Moontoast\Math\BigNumber must be present.' + ); + } +} diff --git a/vendor/ramsey/uuid/src/Converter/Time/PhpTimeConverter.php b/vendor/ramsey/uuid/src/Converter/Time/PhpTimeConverter.php new file mode 100644 index 00000000..57c882db --- /dev/null +++ b/vendor/ramsey/uuid/src/Converter/Time/PhpTimeConverter.php @@ -0,0 +1,47 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Converter\Time; + +use Ramsey\Uuid\Converter\TimeConverterInterface; + +/** + * PhpTimeConverter uses built-in PHP functions and standard math operations + * available to the PHP programming language to provide facilities for + * converting parts of time into representations that may be used in UUIDs + */ +class PhpTimeConverter implements TimeConverterInterface +{ + /** + * Uses the provided seconds and micro-seconds to calculate the time_low, + * time_mid, and time_high fields used by RFC 4122 version 1 UUIDs + * + * @param string $seconds + * @param string $microSeconds + * @return string[] An array containing `low`, `mid`, and `high` keys + * @link http://tools.ietf.org/html/rfc4122#section-4.2.2 + */ + public function calculateTime($seconds, $microSeconds) + { + // 0x01b21dd213814000 is the number of 100-ns intervals between the + // UUID epoch 1582-10-15 00:00:00 and the Unix epoch 1970-01-01 00:00:00. + $uuidTime = ($seconds * 10000000) + ($microSeconds * 10) + 0x01b21dd213814000; + + return [ + 'low' => sprintf('%08x', $uuidTime & 0xffffffff), + 'mid' => sprintf('%04x', ($uuidTime >> 32) & 0xffff), + 'hi' => sprintf('%04x', ($uuidTime >> 48) & 0x0fff), + ]; + } +} diff --git a/vendor/ramsey/uuid/src/Converter/TimeConverterInterface.php b/vendor/ramsey/uuid/src/Converter/TimeConverterInterface.php new file mode 100644 index 00000000..23cf1640 --- /dev/null +++ b/vendor/ramsey/uuid/src/Converter/TimeConverterInterface.php @@ -0,0 +1,37 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Converter; + +use Ramsey\Uuid\Exception\UnsatisfiedDependencyException; + +/** + * TimeConverterInterface provides facilities for converting parts of time into + * representations that may be used in UUIDs + */ +interface TimeConverterInterface +{ + /** + * Uses the provided seconds and micro-seconds to calculate the time_low, + * time_mid, and time_high fields used by RFC 4122 version 1 UUIDs + * + * @param string $seconds + * @param string $microSeconds + * @return string[] An array guaranteed to contain `low`, `mid`, and `hi` keys + * @throws UnsatisfiedDependencyException if called on a 32-bit system and + * `Moontoast\Math\BigNumber` is not present + * @link http://tools.ietf.org/html/rfc4122#section-4.2.2 + */ + public function calculateTime($seconds, $microSeconds); +} diff --git a/vendor/ramsey/uuid/src/DegradedUuid.php b/vendor/ramsey/uuid/src/DegradedUuid.php new file mode 100644 index 00000000..4e11272d --- /dev/null +++ b/vendor/ramsey/uuid/src/DegradedUuid.php @@ -0,0 +1,116 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid; + +use DateTime; +use Moontoast\Math\BigNumber; +use Ramsey\Uuid\Exception\UnsatisfiedDependencyException; +use Ramsey\Uuid\Exception\UnsupportedOperationException; + +/** + * DegradedUuid represents an RFC 4122 UUID on 32-bit systems + * + * @see Uuid + */ +class DegradedUuid extends Uuid +{ + /** + * @inheritdoc + */ + public function getDateTime() + { + if ($this->getVersion() != 1) { + throw new UnsupportedOperationException('Not a time-based UUID'); + } + + $time = $this->converter->fromHex($this->getTimestampHex()); + + $ts = new BigNumber($time, 20); + $ts->subtract('122192928000000000'); + $ts->divide('10000000.0'); + $ts->floor(); + $unixTime = $ts->getValue(); + + return new DateTime("@{$unixTime}"); + } + + /** + * For degraded UUIDs, throws an `UnsatisfiedDependencyException` when + * called on a 32-bit system + * + * @throws UnsatisfiedDependencyException if called on a 32-bit system + */ + public function getFields() + { + throw new UnsatisfiedDependencyException( + 'Cannot call ' . __METHOD__ . ' on a 32-bit system, since some ' + . 'values overflow the system max integer value' + . '; consider calling getFieldsHex instead' + ); + } + + /** + * For degraded UUIDs, throws an `UnsatisfiedDependencyException` when + * called on a 32-bit system + * + * @throws UnsatisfiedDependencyException if called on a 32-bit system + */ + public function getNode() + { + throw new UnsatisfiedDependencyException( + 'Cannot call ' . __METHOD__ . ' on a 32-bit system, since node ' + . 'is an unsigned 48-bit integer and can overflow the system ' + . 'max integer value' + . '; consider calling getNodeHex instead' + ); + } + + /** + * For degraded UUIDs, throws an `UnsatisfiedDependencyException` when + * called on a 32-bit system + * + * @throws UnsatisfiedDependencyException if called on a 32-bit system + */ + public function getTimeLow() + { + throw new UnsatisfiedDependencyException( + 'Cannot call ' . __METHOD__ . ' on a 32-bit system, since time_low ' + . 'is an unsigned 32-bit integer and can overflow the system ' + . 'max integer value' + . '; consider calling getTimeLowHex instead' + ); + } + + /** + * For degraded UUIDs, throws an `UnsatisfiedDependencyException` when + * called on a 32-bit system + * + * @throws UnsatisfiedDependencyException if called on a 32-bit system + * @throws UnsupportedOperationException If this UUID is not a version 1 UUID + */ + public function getTimestamp() + { + if ($this->getVersion() != 1) { + throw new UnsupportedOperationException('Not a time-based UUID'); + } + + throw new UnsatisfiedDependencyException( + 'Cannot call ' . __METHOD__ . ' on a 32-bit system, since timestamp ' + . 'is an unsigned 60-bit integer and can overflow the system ' + . 'max integer value' + . '; consider calling getTimestampHex instead' + ); + } +} diff --git a/vendor/ramsey/uuid/src/Exception/InvalidUuidStringException.php b/vendor/ramsey/uuid/src/Exception/InvalidUuidStringException.php new file mode 100644 index 00000000..7df0e8cc --- /dev/null +++ b/vendor/ramsey/uuid/src/Exception/InvalidUuidStringException.php @@ -0,0 +1,24 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Exception; + +use InvalidArgumentException; + +/** + * Thrown to indicate that the parsed UUID string is invalid. + */ +class InvalidUuidStringException extends InvalidArgumentException +{ +} diff --git a/vendor/ramsey/uuid/src/Exception/UnsatisfiedDependencyException.php b/vendor/ramsey/uuid/src/Exception/UnsatisfiedDependencyException.php new file mode 100644 index 00000000..89c73965 --- /dev/null +++ b/vendor/ramsey/uuid/src/Exception/UnsatisfiedDependencyException.php @@ -0,0 +1,25 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Exception; + +use RuntimeException; + +/** + * Thrown to indicate that the requested operation has dependencies that have not + * been satisfied. + */ +class UnsatisfiedDependencyException extends RuntimeException +{ +} diff --git a/vendor/ramsey/uuid/src/Exception/UnsupportedOperationException.php b/vendor/ramsey/uuid/src/Exception/UnsupportedOperationException.php new file mode 100644 index 00000000..43409470 --- /dev/null +++ b/vendor/ramsey/uuid/src/Exception/UnsupportedOperationException.php @@ -0,0 +1,24 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Exception; + +use RuntimeException; + +/** + * Thrown to indicate that the requested operation is not supported. + */ +class UnsupportedOperationException extends RuntimeException +{ +} diff --git a/vendor/ramsey/uuid/src/FeatureSet.php b/vendor/ramsey/uuid/src/FeatureSet.php new file mode 100644 index 00000000..2027b9e0 --- /dev/null +++ b/vendor/ramsey/uuid/src/FeatureSet.php @@ -0,0 +1,335 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid; + +use Ramsey\Uuid\Converter\TimeConverterInterface; +use Ramsey\Uuid\Generator\PeclUuidTimeGenerator; +use Ramsey\Uuid\Provider\Node\FallbackNodeProvider; +use Ramsey\Uuid\Provider\Node\RandomNodeProvider; +use Ramsey\Uuid\Provider\Node\SystemNodeProvider; +use Ramsey\Uuid\Converter\NumberConverterInterface; +use Ramsey\Uuid\Converter\Number\BigNumberConverter; +use Ramsey\Uuid\Converter\Number\DegradedNumberConverter; +use Ramsey\Uuid\Converter\Time\BigNumberTimeConverter; +use Ramsey\Uuid\Converter\Time\DegradedTimeConverter; +use Ramsey\Uuid\Converter\Time\PhpTimeConverter; +use Ramsey\Uuid\Provider\Time\SystemTimeProvider; +use Ramsey\Uuid\Builder\UuidBuilderInterface; +use Ramsey\Uuid\Builder\DefaultUuidBuilder; +use Ramsey\Uuid\Codec\CodecInterface; +use Ramsey\Uuid\Codec\StringCodec; +use Ramsey\Uuid\Codec\GuidStringCodec; +use Ramsey\Uuid\Builder\DegradedUuidBuilder; +use Ramsey\Uuid\Generator\RandomGeneratorFactory; +use Ramsey\Uuid\Generator\RandomGeneratorInterface; +use Ramsey\Uuid\Generator\TimeGeneratorFactory; +use Ramsey\Uuid\Generator\TimeGeneratorInterface; +use Ramsey\Uuid\Provider\TimeProviderInterface; +use Ramsey\Uuid\Provider\NodeProviderInterface; + +/** + * FeatureSet detects and exposes available features in the current environment + * (32- or 64-bit, available dependencies, etc.) + */ +class FeatureSet +{ + /** + * @var bool + */ + private $disableBigNumber = false; + + /** + * @var bool + */ + private $disable64Bit = false; + + /** + * @var bool + */ + private $ignoreSystemNode = false; + + /** + * @var bool + */ + private $enablePecl = false; + + /** + * @var UuidBuilderInterface + */ + private $builder; + + /** + * @var CodecInterface + */ + private $codec; + + /** + * @var NodeProviderInterface + */ + private $nodeProvider; + + /** + * @var NumberConverterInterface + */ + private $numberConverter; + + /** + * @var RandomGeneratorInterface + */ + private $randomGenerator; + + /** + * @var TimeGeneratorInterface + */ + private $timeGenerator; + + /** + * Constructs a `FeatureSet` for use by a `UuidFactory` to determine or set + * features available to the environment + * + * @param bool $useGuids Whether to build UUIDs using the `GuidStringCodec` + * @param bool $force32Bit Whether to force the use of 32-bit functionality + * (primarily for testing purposes) + * @param bool $forceNoBigNumber Whether to disable the use of moontoast/math + * `BigNumber` (primarily for testing purposes) + * @param bool $ignoreSystemNode Whether to disable attempts to check for + * the system host ID (primarily for testing purposes) + * @param bool $enablePecl Whether to enable the use of the `PeclUuidTimeGenerator` + * to generate version 1 UUIDs + */ + public function __construct( + $useGuids = false, + $force32Bit = false, + $forceNoBigNumber = false, + $ignoreSystemNode = false, + $enablePecl = false + ) { + $this->disableBigNumber = $forceNoBigNumber; + $this->disable64Bit = $force32Bit; + $this->ignoreSystemNode = $ignoreSystemNode; + $this->enablePecl = $enablePecl; + + $this->numberConverter = $this->buildNumberConverter(); + $this->builder = $this->buildUuidBuilder(); + $this->codec = $this->buildCodec($useGuids); + $this->nodeProvider = $this->buildNodeProvider(); + $this->randomGenerator = $this->buildRandomGenerator(); + $this->setTimeProvider(new SystemTimeProvider()); + } + + /** + * Returns the builder configured for this environment + * + * @return UuidBuilderInterface + */ + public function getBuilder() + { + return $this->builder; + } + + /** + * Returns the UUID UUID coder-decoder configured for this environment + * + * @return CodecInterface + */ + public function getCodec() + { + return $this->codec; + } + + /** + * Returns the system node ID provider configured for this environment + * + * @return NodeProviderInterface + */ + public function getNodeProvider() + { + return $this->nodeProvider; + } + + /** + * Returns the number converter configured for this environment + * + * @return NumberConverterInterface + */ + public function getNumberConverter() + { + return $this->numberConverter; + } + + /** + * Returns the random UUID generator configured for this environment + * + * @return RandomGeneratorInterface + */ + public function getRandomGenerator() + { + return $this->randomGenerator; + } + + /** + * Returns the time-based UUID generator configured for this environment + * + * @return TimeGeneratorInterface + */ + public function getTimeGenerator() + { + return $this->timeGenerator; + } + + /** + * Sets the time provider for use in this environment + * + * @param TimeProviderInterface $timeProvider + */ + public function setTimeProvider(TimeProviderInterface $timeProvider) + { + $this->timeGenerator = $this->buildTimeGenerator($timeProvider); + } + + /** + * Determines which UUID coder-decoder to use and returns the configured + * codec for this environment + * + * @param bool $useGuids Whether to build UUIDs using the `GuidStringCodec` + * @return CodecInterface + */ + protected function buildCodec($useGuids = false) + { + if ($useGuids) { + return new GuidStringCodec($this->builder); + } + + return new StringCodec($this->builder); + } + + /** + * Determines which system node ID provider to use and returns the configured + * system node ID provider for this environment + * + * @return NodeProviderInterface + */ + protected function buildNodeProvider() + { + if ($this->ignoreSystemNode) { + return new RandomNodeProvider(); + } + + return new FallbackNodeProvider([ + new SystemNodeProvider(), + new RandomNodeProvider() + ]); + } + + /** + * Determines which number converter to use and returns the configured + * number converter for this environment + * + * @return NumberConverterInterface + */ + protected function buildNumberConverter() + { + if ($this->hasBigNumber()) { + return new BigNumberConverter(); + } + + return new DegradedNumberConverter(); + } + + /** + * Determines which random UUID generator to use and returns the configured + * random UUID generator for this environment + * + * @return RandomGeneratorInterface + */ + protected function buildRandomGenerator() + { + return (new RandomGeneratorFactory())->getGenerator(); + } + + /** + * Determines which time-based UUID generator to use and returns the configured + * time-based UUID generator for this environment + * + * @param TimeProviderInterface $timeProvider + * @return TimeGeneratorInterface + */ + protected function buildTimeGenerator(TimeProviderInterface $timeProvider) + { + if ($this->enablePecl) { + return new PeclUuidTimeGenerator(); + } + + return (new TimeGeneratorFactory( + $this->nodeProvider, + $this->buildTimeConverter(), + $timeProvider + ))->getGenerator(); + } + + /** + * Determines which time converter to use and returns the configured + * time converter for this environment + * + * @return TimeConverterInterface + */ + protected function buildTimeConverter() + { + if ($this->is64BitSystem()) { + return new PhpTimeConverter(); + } + + if ($this->hasBigNumber()) { + return new BigNumberTimeConverter(); + } + + return new DegradedTimeConverter(); + } + + /** + * Determines which UUID builder to use and returns the configured UUID + * builder for this environment + * + * @return UuidBuilderInterface + */ + protected function buildUuidBuilder() + { + if ($this->is64BitSystem()) { + return new DefaultUuidBuilder($this->numberConverter); + } + + return new DegradedUuidBuilder($this->numberConverter); + } + + /** + * Returns true if the system has `Moontoast\Math\BigNumber` + * + * @return bool + */ + protected function hasBigNumber() + { + return class_exists('Moontoast\Math\BigNumber') && !$this->disableBigNumber; + } + + /** + * Returns true if the system is 64-bit, false otherwise + * + * @return bool + */ + protected function is64BitSystem() + { + return PHP_INT_SIZE == 8 && !$this->disable64Bit; + } +} diff --git a/vendor/ramsey/uuid/src/Generator/CombGenerator.php b/vendor/ramsey/uuid/src/Generator/CombGenerator.php new file mode 100644 index 00000000..1d4a5f60 --- /dev/null +++ b/vendor/ramsey/uuid/src/Generator/CombGenerator.php @@ -0,0 +1,91 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Generator; + +use Exception; +use InvalidArgumentException; +use Ramsey\Uuid\Converter\NumberConverterInterface; +use Ramsey\Uuid\Exception\UnsatisfiedDependencyException; + +/** + * CombGenerator provides functionality to generate COMB (combined GUID/timestamp) + * sequential UUIDs + * + * @link https://en.wikipedia.org/wiki/Globally_unique_identifier#Sequential_algorithms + */ +class CombGenerator implements RandomGeneratorInterface +{ + const TIMESTAMP_BYTES = 6; + + /** + * @var RandomGeneratorInterface + */ + private $randomGenerator; + + /** + * @var NumberConverterInterface + */ + private $converter; + + /** + * Constructs a `CombGenerator` using a random-number generator and a number converter + * + * @param RandomGeneratorInterface $generator Random-number generator for the non-time part. + * @param NumberConverterInterface $numberConverter Instance of number converter. + */ + public function __construct(RandomGeneratorInterface $generator, NumberConverterInterface $numberConverter) + { + $this->converter = $numberConverter; + $this->randomGenerator = $generator; + } + + /** + * Generates a string of binary data of the specified length + * + * @param integer $length The number of bytes of random binary data to generate + * @return string A binary string + * @throws UnsatisfiedDependencyException if `Moontoast\Math\BigNumber` is not present + * @throws InvalidArgumentException if length is not a positive integer + * @throws Exception + */ + public function generate($length) + { + if ($length < self::TIMESTAMP_BYTES || $length < 0) { + throw new InvalidArgumentException('Length must be a positive integer.'); + } + + $hash = ''; + + if (self::TIMESTAMP_BYTES > 0 && $length > self::TIMESTAMP_BYTES) { + $hash = $this->randomGenerator->generate($length - self::TIMESTAMP_BYTES); + } + + $lsbTime = str_pad($this->converter->toHex($this->timestamp()), self::TIMESTAMP_BYTES * 2, '0', STR_PAD_LEFT); + + return hex2bin(str_pad(bin2hex($hash), $length - self::TIMESTAMP_BYTES, '0') . $lsbTime); + } + + /** + * Returns current timestamp as integer, precise to 0.00001 seconds + * + * @return string + */ + private function timestamp() + { + $time = explode(' ', microtime(false)); + + return $time[1] . substr($time[0], 2, 5); + } +} diff --git a/vendor/ramsey/uuid/src/Generator/DefaultTimeGenerator.php b/vendor/ramsey/uuid/src/Generator/DefaultTimeGenerator.php new file mode 100644 index 00000000..5c5ccb29 --- /dev/null +++ b/vendor/ramsey/uuid/src/Generator/DefaultTimeGenerator.php @@ -0,0 +1,141 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Generator; + +use Exception; +use InvalidArgumentException; +use Ramsey\Uuid\BinaryUtils; +use Ramsey\Uuid\Converter\TimeConverterInterface; +use Ramsey\Uuid\Exception\UnsatisfiedDependencyException; +use Ramsey\Uuid\Provider\NodeProviderInterface; +use Ramsey\Uuid\Provider\TimeProviderInterface; + +/** + * DefaultTimeGenerator provides functionality to generate strings of binary + * data for version 1 UUIDs based on a host ID, sequence number, and the current + * time + */ +class DefaultTimeGenerator implements TimeGeneratorInterface +{ + /** + * @var NodeProviderInterface + */ + private $nodeProvider; + + /** + * @var TimeConverterInterface + */ + private $timeConverter; + + /** + * @var TimeProviderInterface + */ + private $timeProvider; + + /** + * Constructs a `DefaultTimeGenerator` using a node provider, time converter, + * and time provider + * + * @param NodeProviderInterface $nodeProvider + * @param TimeConverterInterface $timeConverter + * @param TimeProviderInterface $timeProvider + */ + public function __construct( + NodeProviderInterface $nodeProvider, + TimeConverterInterface $timeConverter, + TimeProviderInterface $timeProvider + ) { + $this->nodeProvider = $nodeProvider; + $this->timeConverter = $timeConverter; + $this->timeProvider = $timeProvider; + } + + /** + * Generate a version 1 UUID from a host ID, sequence number, and the current time + * + * If $node is not given, we will attempt to obtain the local hardware + * address. If $clockSeq is given, it is used as the sequence number; + * otherwise a random 14-bit sequence number is chosen. + * + * @param int|string $node A 48-bit number representing the hardware address + * This number may be represented as an integer or a hexadecimal string. + * @param int $clockSeq A 14-bit number used to help avoid duplicates that + * could arise when the clock is set backwards in time or if the node ID + * changes. + * @return string A binary string + * @throws UnsatisfiedDependencyException if called on a 32-bit system and + * `Moontoast\Math\BigNumber` is not present + * @throws InvalidArgumentException + * @throws Exception if it was not possible to gather sufficient entropy + */ + public function generate($node = null, $clockSeq = null) + { + $node = $this->getValidNode($node); + + if ($clockSeq === null) { + // Not using "stable storage"; see RFC 4122, Section 4.2.1.1 + $clockSeq = random_int(0, 0x3fff); + } + + // Create a 60-bit time value as a count of 100-nanosecond intervals + // since 00:00:00.00, 15 October 1582 + $timeOfDay = $this->timeProvider->currentTime(); + $uuidTime = $this->timeConverter->calculateTime($timeOfDay['sec'], $timeOfDay['usec']); + + $timeHi = BinaryUtils::applyVersion($uuidTime['hi'], 1); + $clockSeqHi = BinaryUtils::applyVariant($clockSeq >> 8); + + $hex = vsprintf( + '%08s%04s%04s%02s%02s%012s', + [ + $uuidTime['low'], + $uuidTime['mid'], + sprintf('%04x', $timeHi), + sprintf('%02x', $clockSeqHi), + sprintf('%02x', $clockSeq & 0xff), + $node, + ] + ); + + return hex2bin($hex); + } + + /** + * Uses the node provider given when constructing this instance to get + * the node ID (usually a MAC address) + * + * @param string|int $node A node value that may be used to override the node provider + * @return string Hexadecimal representation of the node ID + * @throws InvalidArgumentException + * @throws Exception + */ + protected function getValidNode($node) + { + if ($node === null) { + $node = $this->nodeProvider->getNode(); + } + + // Convert the node to hex, if it is still an integer + if (is_int($node)) { + $node = sprintf('%012x', $node); + } + + if (!ctype_xdigit($node) || strlen($node) > 12) { + throw new InvalidArgumentException('Invalid node value'); + } + + return strtolower(sprintf('%012s', $node)); + } +} diff --git a/vendor/ramsey/uuid/src/Generator/MtRandGenerator.php b/vendor/ramsey/uuid/src/Generator/MtRandGenerator.php new file mode 100644 index 00000000..8d4b5f9b --- /dev/null +++ b/vendor/ramsey/uuid/src/Generator/MtRandGenerator.php @@ -0,0 +1,45 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Generator; + +/** + * MtRandRandomGenerator provides functionality to generate strings of random + * binary data using the `mt_rand()` PHP function + * + * @deprecated The mt_rand() function is not a reliable source of randomness. + * The default RandomBytesGenerator, which uses the random_bytes() function, + * is recommended as the safest and most reliable source of randomness. + * This generator will be removed in ramsey/uuid 4.0.0. + * @link http://php.net/mt_rand + */ +class MtRandGenerator implements RandomGeneratorInterface +{ + /** + * Generates a string of random binary data of the specified length + * + * @param integer $length The number of bytes of random binary data to generate + * @return string A binary string + */ + public function generate($length) + { + $bytes = ''; + + for ($i = 1; $i <= $length; $i++) { + $bytes = chr(mt_rand(0, 255)) . $bytes; + } + + return $bytes; + } +} diff --git a/vendor/ramsey/uuid/src/Generator/OpenSslGenerator.php b/vendor/ramsey/uuid/src/Generator/OpenSslGenerator.php new file mode 100644 index 00000000..47abf9bb --- /dev/null +++ b/vendor/ramsey/uuid/src/Generator/OpenSslGenerator.php @@ -0,0 +1,43 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Generator; + +/** + * OpenSslRandomGenerator provides functionality to generate strings of random + * binary data using the `openssl_random_pseudo_bytes()` PHP function + * + * The use of this generator requires PHP to be compiled using the + * `--with-openssl` option. + * + * @deprecated The openssl_random_pseudo_bytes() function is not a reliable + * source of randomness. The default RandomBytesGenerator, which uses the + * random_bytes() function, is recommended as the safest and most reliable + * source of randomness. + * This generator will be removed in ramsey/uuid 4.0.0. + * @link http://php.net/openssl_random_pseudo_bytes + */ +class OpenSslGenerator implements RandomGeneratorInterface +{ + /** + * Generates a string of random binary data of the specified length + * + * @param integer $length The number of bytes of random binary data to generate + * @return string A binary string + */ + public function generate($length) + { + return openssl_random_pseudo_bytes($length); + } +} diff --git a/vendor/ramsey/uuid/src/Generator/PeclUuidRandomGenerator.php b/vendor/ramsey/uuid/src/Generator/PeclUuidRandomGenerator.php new file mode 100644 index 00000000..fc2ef7e4 --- /dev/null +++ b/vendor/ramsey/uuid/src/Generator/PeclUuidRandomGenerator.php @@ -0,0 +1,37 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Generator; + +/** + * PeclUuidRandomGenerator provides functionality to generate strings of random + * binary data using the PECL UUID PHP extension + * + * @link https://pecl.php.net/package/uuid + */ +class PeclUuidRandomGenerator implements RandomGeneratorInterface +{ + /** + * Generates a string of random binary data of the specified length + * + * @param integer $length The number of bytes of random binary data to generate + * @return string A binary string + */ + public function generate($length) + { + $uuid = uuid_create(UUID_TYPE_RANDOM); + + return uuid_parse($uuid); + } +} diff --git a/vendor/ramsey/uuid/src/Generator/PeclUuidTimeGenerator.php b/vendor/ramsey/uuid/src/Generator/PeclUuidTimeGenerator.php new file mode 100644 index 00000000..7ccf16fd --- /dev/null +++ b/vendor/ramsey/uuid/src/Generator/PeclUuidTimeGenerator.php @@ -0,0 +1,38 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Generator; + +/** + * PeclUuidTimeGenerator provides functionality to generate strings of binary + * data for version 1 UUIDs using the PECL UUID PHP extension + * + * @link https://pecl.php.net/package/uuid + */ +class PeclUuidTimeGenerator implements TimeGeneratorInterface +{ + /** + * Generate a version 1 UUID using the PECL UUID extension + * + * @param int|string $node Not used in this context + * @param int $clockSeq Not used in this context + * @return string A binary string + */ + public function generate($node = null, $clockSeq = null) + { + $uuid = uuid_create(UUID_TYPE_TIME); + + return uuid_parse($uuid); + } +} diff --git a/vendor/ramsey/uuid/src/Generator/RandomBytesGenerator.php b/vendor/ramsey/uuid/src/Generator/RandomBytesGenerator.php new file mode 100644 index 00000000..cc3d3798 --- /dev/null +++ b/vendor/ramsey/uuid/src/Generator/RandomBytesGenerator.php @@ -0,0 +1,39 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Generator; + +use Exception; + +/** + * RandomBytesGenerator provides functionality to generate strings of random + * binary data using `random_bytes()` function in PHP 7+ or paragonie/random_compat + * + * @link http://php.net/random_bytes + * @link https://github.com/paragonie/random_compat + */ +class RandomBytesGenerator implements RandomGeneratorInterface +{ + /** + * Generates a string of random binary data of the specified length + * + * @param integer $length The number of bytes of random binary data to generate + * @return string A binary string + * @throws Exception if it was not possible to gather sufficient entropy + */ + public function generate($length) + { + return random_bytes($length); + } +} diff --git a/vendor/ramsey/uuid/src/Generator/RandomGeneratorFactory.php b/vendor/ramsey/uuid/src/Generator/RandomGeneratorFactory.php new file mode 100644 index 00000000..39110622 --- /dev/null +++ b/vendor/ramsey/uuid/src/Generator/RandomGeneratorFactory.php @@ -0,0 +1,31 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Generator; + +/** + * A factory for retrieving a random generator, based on the environment + */ +class RandomGeneratorFactory +{ + /** + * Returns a default random generator, based on the current environment + * + * @return RandomGeneratorInterface + */ + public static function getGenerator() + { + return new RandomBytesGenerator(); + } +} diff --git a/vendor/ramsey/uuid/src/Generator/RandomGeneratorInterface.php b/vendor/ramsey/uuid/src/Generator/RandomGeneratorInterface.php new file mode 100644 index 00000000..b791d60d --- /dev/null +++ b/vendor/ramsey/uuid/src/Generator/RandomGeneratorInterface.php @@ -0,0 +1,37 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Generator; + +use Exception; +use InvalidArgumentException; +use Ramsey\Uuid\Exception\UnsatisfiedDependencyException; + +/** + * RandomGeneratorInterface provides functionality to generate strings of random + * binary data + */ +interface RandomGeneratorInterface +{ + /** + * Generates a string of random binary data of the specified length + * + * @param integer $length The number of bytes of random binary data to generate + * @return string A binary string + * @throws UnsatisfiedDependencyException if `Moontoast\Math\BigNumber` is not present + * @throws InvalidArgumentException + * @throws Exception if it was not possible to gather sufficient entropy + */ + public function generate($length); +} diff --git a/vendor/ramsey/uuid/src/Generator/RandomLibAdapter.php b/vendor/ramsey/uuid/src/Generator/RandomLibAdapter.php new file mode 100644 index 00000000..5aa0e886 --- /dev/null +++ b/vendor/ramsey/uuid/src/Generator/RandomLibAdapter.php @@ -0,0 +1,62 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Generator; + +use RandomLib\Generator; +use RandomLib\Factory; + +/** + * RandomLibAdapter provides functionality to generate strings of random + * binary data using the paragonie/random-lib library + * + * @link https://packagist.org/packages/paragonie/random-lib + */ +class RandomLibAdapter implements RandomGeneratorInterface +{ + /** + * @var Generator + */ + private $generator; + + /** + * Constructs a `RandomLibAdapter` using a `RandomLib\Generator` + * + * By default, if no `Generator` is passed in, this creates a high-strength + * generator to use when generating random binary data. + * + * @param Generator $generator An paragonie/random-lib `Generator` + */ + public function __construct(Generator $generator = null) + { + $this->generator = $generator; + + if ($this->generator === null) { + $factory = new Factory(); + + $this->generator = $factory->getHighStrengthGenerator(); + } + } + + /** + * Generates a string of random binary data of the specified length + * + * @param integer $length The number of bytes of random binary data to generate + * @return string A binary string + */ + public function generate($length) + { + return $this->generator->generate($length); + } +} diff --git a/vendor/ramsey/uuid/src/Generator/SodiumRandomGenerator.php b/vendor/ramsey/uuid/src/Generator/SodiumRandomGenerator.php new file mode 100644 index 00000000..f4ccf859 --- /dev/null +++ b/vendor/ramsey/uuid/src/Generator/SodiumRandomGenerator.php @@ -0,0 +1,41 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Generator; + +/** + * SodiumRandomGenerator provides functionality to generate strings of random + * binary data using the PECL libsodium extension + * + * @deprecated As of PHP 7.2.0, the libsodium extension is bundled with PHP, and + * the random_bytes() PHP function is now the recommended method for + * generating random byes. The default RandomBytesGenerator uses the + * random_bytes() function. + * This generator will be removed in ramsey/uuid 4.0.0. + * @link http://pecl.php.net/package/libsodium + * @link https://paragonie.com/book/pecl-libsodium + */ +class SodiumRandomGenerator implements RandomGeneratorInterface +{ + /** + * Generates a string of random binary data of the specified length + * + * @param integer $length The number of bytes of random binary data to generate + * @return string A binary string + */ + public function generate($length) + { + return \Sodium\randombytes_buf($length); + } +} diff --git a/vendor/ramsey/uuid/src/Generator/TimeGeneratorFactory.php b/vendor/ramsey/uuid/src/Generator/TimeGeneratorFactory.php new file mode 100644 index 00000000..24d501bb --- /dev/null +++ b/vendor/ramsey/uuid/src/Generator/TimeGeneratorFactory.php @@ -0,0 +1,72 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Generator; + +use Ramsey\Uuid\Converter\TimeConverterInterface; +use Ramsey\Uuid\Provider\NodeProviderInterface; +use Ramsey\Uuid\Provider\TimeProviderInterface; + +/** + * A factory for retrieving a time generator, based on the environment + */ +class TimeGeneratorFactory +{ + /** + * @var NodeProviderInterface + */ + private $nodeProvider; + + /** + * @var TimeConverterInterface + */ + private $timeConverter; + + /** + * @var TimeProviderInterface + */ + private $timeProvider; + + /** + * Constructs a `TimeGeneratorFactory` using a node provider, time converter, + * and time provider + * + * @param NodeProviderInterface $nodeProvider + * @param TimeConverterInterface $timeConverter + * @param TimeProviderInterface $timeProvider + */ + public function __construct( + NodeProviderInterface $nodeProvider, + TimeConverterInterface $timeConverter, + TimeProviderInterface $timeProvider + ) { + $this->nodeProvider = $nodeProvider; + $this->timeConverter = $timeConverter; + $this->timeProvider = $timeProvider; + } + + /** + * Returns a default time generator, based on the current environment + * + * @return TimeGeneratorInterface + */ + public function getGenerator() + { + return new DefaultTimeGenerator( + $this->nodeProvider, + $this->timeConverter, + $this->timeProvider + ); + } +} diff --git a/vendor/ramsey/uuid/src/Generator/TimeGeneratorInterface.php b/vendor/ramsey/uuid/src/Generator/TimeGeneratorInterface.php new file mode 100644 index 00000000..27c74590 --- /dev/null +++ b/vendor/ramsey/uuid/src/Generator/TimeGeneratorInterface.php @@ -0,0 +1,43 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Generator; + +use Exception; +use InvalidArgumentException; +use Ramsey\Uuid\Exception\UnsatisfiedDependencyException; + +/** + * TimeGeneratorInterface provides functionality to generate strings of binary + * data for version 1 UUIDs based on a host ID, sequence number, and the current + * time + */ +interface TimeGeneratorInterface +{ + /** + * Generate a version 1 UUID from a host ID, sequence number, and the current time + * + * @param int|string $node A 48-bit number representing the hardware address + * This number may be represented as an integer or a hexadecimal string. + * @param int $clockSeq A 14-bit number used to help avoid duplicates that + * could arise when the clock is set backwards in time or if the node ID + * changes. + * @return string A binary string + * @throws UnsatisfiedDependencyException if called on a 32-bit system and + * `Moontoast\Math\BigNumber` is not present + * @throws InvalidArgumentException + * @throws Exception if it was not possible to gather sufficient entropy + */ + public function generate($node = null, $clockSeq = null); +} diff --git a/vendor/ramsey/uuid/src/Provider/Node/FallbackNodeProvider.php b/vendor/ramsey/uuid/src/Provider/Node/FallbackNodeProvider.php new file mode 100644 index 00000000..83488ab9 --- /dev/null +++ b/vendor/ramsey/uuid/src/Provider/Node/FallbackNodeProvider.php @@ -0,0 +1,59 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Provider\Node; + +use Exception; +use Ramsey\Uuid\Provider\NodeProviderInterface; + +/** + * FallbackNodeProvider attempts to gain the system host ID from an array of + * providers, falling back to the next in line in the event a host ID can not be + * obtained + */ +class FallbackNodeProvider implements NodeProviderInterface +{ + /** + * @var NodeProviderInterface[] + */ + private $nodeProviders; + + /** + * Constructs a `FallbackNodeProvider` using an array of node providers + * + * @param NodeProviderInterface[] $providers Array of node providers + */ + public function __construct(array $providers) + { + $this->nodeProviders = $providers; + } + + /** + * Returns the system node ID by iterating over an array of node providers + * and returning the first non-empty value found + * + * @return string System node ID as a hexadecimal string + * @throws Exception + */ + public function getNode() + { + foreach ($this->nodeProviders as $provider) { + if ($node = $provider->getNode()) { + return $node; + } + } + + return null; + } +} diff --git a/vendor/ramsey/uuid/src/Provider/Node/RandomNodeProvider.php b/vendor/ramsey/uuid/src/Provider/Node/RandomNodeProvider.php new file mode 100644 index 00000000..79ec63cb --- /dev/null +++ b/vendor/ramsey/uuid/src/Provider/Node/RandomNodeProvider.php @@ -0,0 +1,57 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Provider\Node; + +use Exception; +use Ramsey\Uuid\Provider\NodeProviderInterface; + +/** + * RandomNodeProvider provides functionality to generate a random node ID, in + * the event that the node ID could not be obtained from the host system + * + * @link http://tools.ietf.org/html/rfc4122#section-4.5 + */ +class RandomNodeProvider implements NodeProviderInterface +{ + /** + * Returns the system node ID + * + * @return string System node ID as a hexadecimal string + * @throws Exception if it was not possible to gather sufficient entropy + */ + public function getNode() + { + $nodeBytes = random_bytes(6); + + // Split the node bytes for math on 32-bit systems. + $nodeMsb = substr($nodeBytes, 0, 3); + $nodeLsb = substr($nodeBytes, 3); + + // Set the multicast bit; see RFC 4122, section 4.5. + $nodeMsb = hex2bin( + str_pad( + dechex(hexdec(bin2hex($nodeMsb)) | 0x010000), + 6, + '0', + STR_PAD_LEFT + ) + ); + + // Recombine the node bytes. + $node = $nodeMsb . $nodeLsb; + + return str_pad(bin2hex($node), 12, '0', STR_PAD_LEFT); + } +} diff --git a/vendor/ramsey/uuid/src/Provider/Node/SystemNodeProvider.php b/vendor/ramsey/uuid/src/Provider/Node/SystemNodeProvider.php new file mode 100644 index 00000000..57015133 --- /dev/null +++ b/vendor/ramsey/uuid/src/Provider/Node/SystemNodeProvider.php @@ -0,0 +1,128 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Provider\Node; + +use Ramsey\Uuid\Provider\NodeProviderInterface; + +/** + * SystemNodeProvider provides functionality to get the system node ID (MAC + * address) using external system calls + */ +class SystemNodeProvider implements NodeProviderInterface +{ + /** + * Returns the system node ID + * + * @return string|false System node ID as a hexadecimal string, or false if it is not found + */ + public function getNode() + { + static $node = null; + + if ($node !== null) { + return $node; + } + + $pattern = '/[^:]([0-9A-Fa-f]{2}([:-])[0-9A-Fa-f]{2}(\2[0-9A-Fa-f]{2}){4})[^:]/'; + $matches = []; + + // first try a linux specific way + $node = $this->getSysfs(); + + // Search the ifconfig output for all MAC addresses and return + // the first one found + if ($node === false) { + if (preg_match_all($pattern, $this->getIfconfig(), $matches, PREG_PATTERN_ORDER)) { + $node = $matches[1][0]; + } + } + if ($node !== false) { + $node = str_replace([':', '-'], '', $node); + } + return $node; + } + + /** + * Returns the network interface configuration for the system + * + * @codeCoverageIgnore + * @return string + */ + protected function getIfconfig() + { + if (strpos(strtolower(ini_get('disable_functions')), 'passthru') !== false) { + return ''; + } + + ob_start(); + switch (strtoupper(substr(constant('PHP_OS'), 0, 3))) { + case 'WIN': + passthru('ipconfig /all 2>&1'); + break; + case 'DAR': + passthru('ifconfig 2>&1'); + break; + case 'FRE': + passthru('netstat -i -f link 2>&1'); + break; + case 'LIN': + default: + passthru('netstat -ie 2>&1'); + break; + } + + return ob_get_clean(); + } + + /** + * Returns mac address from the first system interface via the sysfs interface + * + * @return string|bool + */ + protected function getSysfs() + { + $mac = false; + + if (strtoupper(constant('PHP_OS')) === 'LINUX') { + $addressPaths = glob('/sys/class/net/*/address', GLOB_NOSORT); + + if (empty($addressPaths)) { + return false; + } + + $macs = []; + array_walk($addressPaths, function ($addressPath) use (&$macs) { + if (is_readable($addressPath)) { + $macs[] = file_get_contents($addressPath); + } + }); + + $macs = array_map('trim', $macs); + + // remove invalid entries + $macs = array_filter($macs, function ($mac) { + return + // localhost adapter + $mac !== '00:00:00:00:00:00' && + // must match mac adress + preg_match('/^([0-9a-f]{2}:){5}[0-9a-f]{2}$/i', $mac); + }); + + $mac = reset($macs); + } + + return $mac; + } +} diff --git a/vendor/ramsey/uuid/src/Provider/NodeProviderInterface.php b/vendor/ramsey/uuid/src/Provider/NodeProviderInterface.php new file mode 100644 index 00000000..b6f721fe --- /dev/null +++ b/vendor/ramsey/uuid/src/Provider/NodeProviderInterface.php @@ -0,0 +1,32 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Provider; + +use Exception; + +/** + * NodeProviderInterface provides functionality to get the node ID (or host ID + * in the form of the system's MAC address) from a specific type of node provider + */ +interface NodeProviderInterface +{ + /** + * Returns the system node ID + * + * @return string System node ID as a hexadecimal string + * @throws Exception if it was not possible to gather sufficient entropy + */ + public function getNode(); +} diff --git a/vendor/ramsey/uuid/src/Provider/Time/FixedTimeProvider.php b/vendor/ramsey/uuid/src/Provider/Time/FixedTimeProvider.php new file mode 100644 index 00000000..79a9d04e --- /dev/null +++ b/vendor/ramsey/uuid/src/Provider/Time/FixedTimeProvider.php @@ -0,0 +1,77 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Provider\Time; + +use InvalidArgumentException; +use Ramsey\Uuid\Provider\TimeProviderInterface; + +/** + * FixedTimeProvider uses an previously-generated timestamp to provide the time + * + * This provider allows the use of a previously-generated timestamp, such as one + * stored in a database, when creating version 1 UUIDs. + */ +class FixedTimeProvider implements TimeProviderInterface +{ + /** + * @var int[] Array containing `sec` and `usec` components of a timestamp + */ + private $fixedTime; + + /** + * Constructs a `FixedTimeProvider` using the provided `$timestamp` + * + * @param int[] Array containing `sec` and `usec` components of a timestamp + * @throws InvalidArgumentException if the `$timestamp` does not contain `sec` or `usec` components + */ + public function __construct(array $timestamp) + { + if (!array_key_exists('sec', $timestamp) || !array_key_exists('usec', $timestamp)) { + throw new InvalidArgumentException('Array must contain sec and usec keys.'); + } + + $this->fixedTime = $timestamp; + } + + /** + * Sets the `usec` component of the timestamp + * + * @param int $value The `usec` value to set + */ + public function setUsec($value) + { + $this->fixedTime['usec'] = $value; + } + + /** + * Sets the `sec` component of the timestamp + * + * @param int $value The `sec` value to set + */ + public function setSec($value) + { + $this->fixedTime['sec'] = $value; + } + + /** + * Returns a timestamp array + * + * @return int[] Array containing `sec` and `usec` components of a timestamp + */ + public function currentTime() + { + return $this->fixedTime; + } +} diff --git a/vendor/ramsey/uuid/src/Provider/Time/SystemTimeProvider.php b/vendor/ramsey/uuid/src/Provider/Time/SystemTimeProvider.php new file mode 100644 index 00000000..6442985f --- /dev/null +++ b/vendor/ramsey/uuid/src/Provider/Time/SystemTimeProvider.php @@ -0,0 +1,33 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Provider\Time; + +use Ramsey\Uuid\Provider\TimeProviderInterface; + +/** + * SystemTimeProvider uses built-in PHP functions to provide the time + */ +class SystemTimeProvider implements TimeProviderInterface +{ + /** + * Returns a timestamp array + * + * @return int[] Array containing `sec` and `usec` components of a timestamp + */ + public function currentTime() + { + return gettimeofday(); + } +} diff --git a/vendor/ramsey/uuid/src/Provider/TimeProviderInterface.php b/vendor/ramsey/uuid/src/Provider/TimeProviderInterface.php new file mode 100644 index 00000000..ef8099dd --- /dev/null +++ b/vendor/ramsey/uuid/src/Provider/TimeProviderInterface.php @@ -0,0 +1,29 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid\Provider; + +/** + * TimeProviderInterface provides functionality to get the time from a specific + * type of time provider + */ +interface TimeProviderInterface +{ + /** + * Returns a timestamp array + * + * @return int[] Array guaranteed to contain `sec` and `usec` components of a timestamp + */ + public function currentTime(); +} diff --git a/vendor/ramsey/uuid/src/Uuid.php b/vendor/ramsey/uuid/src/Uuid.php new file mode 100644 index 00000000..1744d28d --- /dev/null +++ b/vendor/ramsey/uuid/src/Uuid.php @@ -0,0 +1,781 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid; + +use DateTime; +use Exception; +use InvalidArgumentException; +use Ramsey\Uuid\Converter\NumberConverterInterface; +use Ramsey\Uuid\Codec\CodecInterface; +use Ramsey\Uuid\Exception\InvalidUuidStringException; +use Ramsey\Uuid\Exception\UnsatisfiedDependencyException; +use Ramsey\Uuid\Exception\UnsupportedOperationException; +use ReturnTypeWillChange; + +/** + * Represents a universally unique identifier (UUID), according to RFC 4122. + * + * This class provides immutable UUID objects (the Uuid class) and the static + * methods `uuid1()`, `uuid3()`, `uuid4()`, and `uuid5()` for generating version + * 1, 3, 4, and 5 UUIDs as specified in RFC 4122. + * + * If all you want is a unique ID, you should probably call `uuid1()` or `uuid4()`. + * Note that `uuid1()` may compromise privacy since it creates a UUID containing + * the computer’s network address. `uuid4()` creates a random UUID. + * + * @link http://tools.ietf.org/html/rfc4122 + * @link http://en.wikipedia.org/wiki/Universally_unique_identifier + * @link http://docs.python.org/3/library/uuid.html + * @link http://docs.oracle.com/javase/6/docs/api/java/util/UUID.html + */ +class Uuid implements UuidInterface +{ + /** + * When this namespace is specified, the name string is a fully-qualified domain name. + * @link http://tools.ietf.org/html/rfc4122#appendix-C + */ + const NAMESPACE_DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8'; + + /** + * When this namespace is specified, the name string is a URL. + * @link http://tools.ietf.org/html/rfc4122#appendix-C + */ + const NAMESPACE_URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8'; + + /** + * When this namespace is specified, the name string is an ISO OID. + * @link http://tools.ietf.org/html/rfc4122#appendix-C + */ + const NAMESPACE_OID = '6ba7b812-9dad-11d1-80b4-00c04fd430c8'; + + /** + * When this namespace is specified, the name string is an X.500 DN in DER or a text output format. + * @link http://tools.ietf.org/html/rfc4122#appendix-C + */ + const NAMESPACE_X500 = '6ba7b814-9dad-11d1-80b4-00c04fd430c8'; + + /** + * The nil UUID is special form of UUID that is specified to have all 128 bits set to zero. + * @link http://tools.ietf.org/html/rfc4122#section-4.1.7 + */ + const NIL = '00000000-0000-0000-0000-000000000000'; + + /** + * Reserved for NCS compatibility. + * @link http://tools.ietf.org/html/rfc4122#section-4.1.1 + */ + const RESERVED_NCS = 0; + + /** + * Specifies the UUID layout given in RFC 4122. + * @link http://tools.ietf.org/html/rfc4122#section-4.1.1 + */ + const RFC_4122 = 2; + + /** + * Reserved for Microsoft compatibility. + * @link http://tools.ietf.org/html/rfc4122#section-4.1.1 + */ + const RESERVED_MICROSOFT = 6; + + /** + * Reserved for future definition. + * @link http://tools.ietf.org/html/rfc4122#section-4.1.1 + */ + const RESERVED_FUTURE = 7; + + /** + * Regular expression pattern for matching a valid UUID of any variant. + */ + const VALID_PATTERN = '^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$'; + + /** + * Version 1 (time-based) UUID object constant identifier + */ + const UUID_TYPE_TIME = 1; + + /** + * Version 2 (identifier-based) UUID object constant identifier + */ + const UUID_TYPE_IDENTIFIER = 2; + + /** + * Version 3 (name-based and hashed with MD5) UUID object constant identifier + */ + const UUID_TYPE_HASH_MD5 = 3; + + /** + * Version 4 (random) UUID object constant identifier + */ + const UUID_TYPE_RANDOM = 4; + + /** + * Version 5 (name-based and hashed with SHA1) UUID object constant identifier + */ + const UUID_TYPE_HASH_SHA1 = 5; + + /** + * The factory to use when creating UUIDs. + * @var UuidFactoryInterface + */ + private static $factory = null; + + /** + * The codec to use when encoding or decoding UUID strings. + * @var CodecInterface + */ + protected $codec; + + /** + * The fields that make up this UUID. + * + * This is initialized to the nil value. + * + * @var array + * @see UuidInterface::getFieldsHex() + */ + protected $fields = [ + 'time_low' => '00000000', + 'time_mid' => '0000', + 'time_hi_and_version' => '0000', + 'clock_seq_hi_and_reserved' => '00', + 'clock_seq_low' => '00', + 'node' => '000000000000', + ]; + + /** + * The number converter to use for converting hex values to/from integers. + * @var NumberConverterInterface + */ + protected $converter; + + /** + * Creates a universally unique identifier (UUID) from an array of fields. + * + * Unless you're making advanced use of this library to generate identifiers + * that deviate from RFC 4122, you probably do not want to instantiate a + * UUID directly. Use the static methods, instead: + * + * ``` + * use Ramsey\Uuid\Uuid; + * + * $timeBasedUuid = Uuid::uuid1(); + * $namespaceMd5Uuid = Uuid::uuid3(Uuid::NAMESPACE_URL, 'http://php.net/'); + * $randomUuid = Uuid::uuid4(); + * $namespaceSha1Uuid = Uuid::uuid5(Uuid::NAMESPACE_URL, 'http://php.net/'); + * ``` + * + * @param array $fields An array of fields from which to construct a UUID; + * see {@see \Ramsey\Uuid\UuidInterface::getFieldsHex()} for array structure. + * @param NumberConverterInterface $converter The number converter to use + * for converting hex values to/from integers. + * @param CodecInterface $codec The codec to use when encoding or decoding + * UUID strings. + */ + public function __construct( + array $fields, + NumberConverterInterface $converter, + CodecInterface $codec + ) { + $this->fields = $fields; + $this->codec = $codec; + $this->converter = $converter; + } + + /** + * Converts this UUID object to a string when the object is used in any + * string context. + * + * @return string + * @link http://www.php.net/manual/en/language.oop5.magic.php#object.tostring + */ + public function __toString() + { + return $this->toString(); + } + + /** + * Converts this UUID object to a string when the object is serialized + * with `json_encode()` + * + * @return string + * @link http://php.net/manual/en/class.jsonserializable.php + */ + #[ReturnTypeWillChange] + public function jsonSerialize() + { + return $this->toString(); + } + + /** + * Converts this UUID object to a string when the object is serialized + * with `serialize()` + * + * @return string + * @link http://php.net/manual/en/class.serializable.php + */ + #[ReturnTypeWillChange] + public function serialize() + { + return $this->toString(); + } + + /** + * @return array{string: string} + */ + #[ReturnTypeWillChange] + public function __serialize() + { + return ['string' => $this->toString()]; + } + + /** + * Re-constructs the object from its serialized form. + * + * @param string $serialized + * @link http://php.net/manual/en/class.serializable.php + * @throws InvalidUuidStringException + */ + #[ReturnTypeWillChange] + public function unserialize($serialized) + { + $uuid = self::fromString($serialized); + $this->codec = $uuid->codec; + $this->converter = $uuid->converter; + $this->fields = $uuid->fields; + } + + /** + * @param array{string: string} $serialized + * @return void + * @throws InvalidUuidStringException + */ + #[ReturnTypeWillChange] + public function __unserialize(array $serialized) + { + // @codeCoverageIgnoreStart + if (!isset($serialized['string'])) { + throw new InvalidUuidStringException(); + } + // @codeCoverageIgnoreEnd + + $this->unserialize($serialized['string']); + } + + public function compareTo(UuidInterface $other) + { + if ($this->getMostSignificantBitsHex() < $other->getMostSignificantBitsHex()) { + return -1; + } + + if ($this->getMostSignificantBitsHex() > $other->getMostSignificantBitsHex()) { + return 1; + } + + if ($this->getLeastSignificantBitsHex() < $other->getLeastSignificantBitsHex()) { + return -1; + } + + if ($this->getLeastSignificantBitsHex() > $other->getLeastSignificantBitsHex()) { + return 1; + } + + return 0; + } + + public function equals($other) + { + if (!$other instanceof UuidInterface) { + return false; + } + + return $this->compareTo($other) == 0; + } + + public function getBytes() + { + return $this->codec->encodeBinary($this); + } + + /** + * Returns the high field of the clock sequence multiplexed with the variant + * (bits 65-72 of the UUID). + * + * @return int Unsigned 8-bit integer value of clock_seq_hi_and_reserved + */ + public function getClockSeqHiAndReserved() + { + return hexdec($this->getClockSeqHiAndReservedHex()); + } + + public function getClockSeqHiAndReservedHex() + { + return $this->fields['clock_seq_hi_and_reserved']; + } + + /** + * Returns the low field of the clock sequence (bits 73-80 of the UUID). + * + * @return int Unsigned 8-bit integer value of clock_seq_low + */ + public function getClockSeqLow() + { + return hexdec($this->getClockSeqLowHex()); + } + + public function getClockSeqLowHex() + { + return $this->fields['clock_seq_low']; + } + + /** + * Returns the clock sequence value associated with this UUID. + * + * For UUID version 1, the clock sequence is used to help avoid + * duplicates that could arise when the clock is set backwards in time + * or if the node ID changes. + * + * For UUID version 3 or 5, the clock sequence is a 14-bit value + * constructed from a name as described in RFC 4122, Section 4.3. + * + * For UUID version 4, clock sequence is a randomly or pseudo-randomly + * generated 14-bit value as described in RFC 4122, Section 4.4. + * + * @return int Unsigned 14-bit integer value of clock sequence + * @link http://tools.ietf.org/html/rfc4122#section-4.1.5 + */ + public function getClockSequence() + { + return ($this->getClockSeqHiAndReserved() & 0x3f) << 8 | $this->getClockSeqLow(); + } + + public function getClockSequenceHex() + { + return sprintf('%04x', $this->getClockSequence()); + } + + public function getNumberConverter() + { + return $this->converter; + } + + /** + * @inheritdoc + */ + public function getDateTime() + { + if ($this->getVersion() != 1) { + throw new UnsupportedOperationException('Not a time-based UUID'); + } + + $unixTimeNanoseconds = $this->getTimestamp() - 0x01b21dd213814000; + $unixTime = ($unixTimeNanoseconds - $unixTimeNanoseconds % 1e7) / 1e7; + + return new DateTime("@{$unixTime}"); + } + + /** + * Returns an array of the fields of this UUID, with keys named according + * to the RFC 4122 names for the fields. + * + * * **time_low**: The low field of the timestamp, an unsigned 32-bit integer + * * **time_mid**: The middle field of the timestamp, an unsigned 16-bit integer + * * **time_hi_and_version**: The high field of the timestamp multiplexed with + * the version number, an unsigned 16-bit integer + * * **clock_seq_hi_and_reserved**: The high field of the clock sequence + * multiplexed with the variant, an unsigned 8-bit integer + * * **clock_seq_low**: The low field of the clock sequence, an unsigned + * 8-bit integer + * * **node**: The spatially unique node identifier, an unsigned 48-bit + * integer + * + * @return array The UUID fields represented as integer values + * @link http://tools.ietf.org/html/rfc4122#section-4.1.2 + */ + public function getFields() + { + return [ + 'time_low' => $this->getTimeLow(), + 'time_mid' => $this->getTimeMid(), + 'time_hi_and_version' => $this->getTimeHiAndVersion(), + 'clock_seq_hi_and_reserved' => $this->getClockSeqHiAndReserved(), + 'clock_seq_low' => $this->getClockSeqLow(), + 'node' => $this->getNode(), + ]; + } + + public function getFieldsHex() + { + return $this->fields; + } + + public function getHex() + { + return str_replace('-', '', $this->toString()); + } + + /** + * @inheritdoc + */ + public function getInteger() + { + return $this->converter->fromHex($this->getHex()); + } + + /** + * Returns the least significant 64 bits of this UUID's 128 bit value. + * + * @return mixed Converted representation of the unsigned 64-bit integer value + * @throws UnsatisfiedDependencyException if `Moontoast\Math\BigNumber` is not present + */ + public function getLeastSignificantBits() + { + return $this->converter->fromHex($this->getLeastSignificantBitsHex()); + } + + public function getLeastSignificantBitsHex() + { + return sprintf( + '%02s%02s%012s', + $this->fields['clock_seq_hi_and_reserved'], + $this->fields['clock_seq_low'], + $this->fields['node'] + ); + } + + /** + * Returns the most significant 64 bits of this UUID's 128 bit value. + * + * @return mixed Converted representation of the unsigned 64-bit integer value + * @throws UnsatisfiedDependencyException if `Moontoast\Math\BigNumber` is not present + */ + public function getMostSignificantBits() + { + return $this->converter->fromHex($this->getMostSignificantBitsHex()); + } + + public function getMostSignificantBitsHex() + { + return sprintf( + '%08s%04s%04s', + $this->fields['time_low'], + $this->fields['time_mid'], + $this->fields['time_hi_and_version'] + ); + } + + /** + * Returns the node value associated with this UUID + * + * For UUID version 1, the node field consists of an IEEE 802 MAC + * address, usually the host address. For systems with multiple IEEE + * 802 addresses, any available one can be used. The lowest addressed + * octet (octet number 10) contains the global/local bit and the + * unicast/multicast bit, and is the first octet of the address + * transmitted on an 802.3 LAN. + * + * For systems with no IEEE address, a randomly or pseudo-randomly + * generated value may be used; see RFC 4122, Section 4.5. The + * multicast bit must be set in such addresses, in order that they + * will never conflict with addresses obtained from network cards. + * + * For UUID version 3 or 5, the node field is a 48-bit value constructed + * from a name as described in RFC 4122, Section 4.3. + * + * For UUID version 4, the node field is a randomly or pseudo-randomly + * generated 48-bit value as described in RFC 4122, Section 4.4. + * + * @return int Unsigned 48-bit integer value of node + * @link http://tools.ietf.org/html/rfc4122#section-4.1.6 + */ + public function getNode() + { + return hexdec($this->getNodeHex()); + } + + public function getNodeHex() + { + return $this->fields['node']; + } + + /** + * Returns the high field of the timestamp multiplexed with the version + * number (bits 49-64 of the UUID). + * + * @return int Unsigned 16-bit integer value of time_hi_and_version + */ + public function getTimeHiAndVersion() + { + return hexdec($this->getTimeHiAndVersionHex()); + } + + public function getTimeHiAndVersionHex() + { + return $this->fields['time_hi_and_version']; + } + + /** + * Returns the low field of the timestamp (the first 32 bits of the UUID). + * + * @return int Unsigned 32-bit integer value of time_low + */ + public function getTimeLow() + { + return hexdec($this->getTimeLowHex()); + } + + public function getTimeLowHex() + { + return $this->fields['time_low']; + } + + /** + * Returns the middle field of the timestamp (bits 33-48 of the UUID). + * + * @return int Unsigned 16-bit integer value of time_mid + */ + public function getTimeMid() + { + return hexdec($this->getTimeMidHex()); + } + + public function getTimeMidHex() + { + return $this->fields['time_mid']; + } + + /** + * Returns the timestamp value associated with this UUID. + * + * The 60 bit timestamp value is constructed from the time_low, + * time_mid, and time_hi fields of this UUID. The resulting + * timestamp is measured in 100-nanosecond units since midnight, + * October 15, 1582 UTC. + * + * The timestamp value is only meaningful in a time-based UUID, which + * has version type 1. If this UUID is not a time-based UUID then + * this method throws UnsupportedOperationException. + * + * @return int Unsigned 60-bit integer value of the timestamp + * @throws UnsupportedOperationException If this UUID is not a version 1 UUID + * @link http://tools.ietf.org/html/rfc4122#section-4.1.4 + */ + public function getTimestamp() + { + if ($this->getVersion() != 1) { + throw new UnsupportedOperationException('Not a time-based UUID'); + } + + return hexdec($this->getTimestampHex()); + } + + /** + * @inheritdoc + */ + public function getTimestampHex() + { + if ($this->getVersion() != 1) { + throw new UnsupportedOperationException('Not a time-based UUID'); + } + + return sprintf( + '%03x%04s%08s', + ($this->getTimeHiAndVersion() & 0x0fff), + $this->fields['time_mid'], + $this->fields['time_low'] + ); + } + + public function getUrn() + { + return 'urn:uuid:' . $this->toString(); + } + + public function getVariant() + { + $clockSeq = $this->getClockSeqHiAndReserved(); + + if (0 === ($clockSeq & 0x80)) { + return self::RESERVED_NCS; + } + + if (0 === ($clockSeq & 0x40)) { + return self::RFC_4122; + } + + if (0 === ($clockSeq & 0x20)) { + return self::RESERVED_MICROSOFT; + } + + return self::RESERVED_FUTURE; + } + + public function getVersion() + { + if ($this->getVariant() == self::RFC_4122) { + return (int) (($this->getTimeHiAndVersion() >> 12) & 0x0f); + } + + return null; + } + + public function toString() + { + return $this->codec->encode($this); + } + + /** + * Returns the currently set factory used to create UUIDs. + * + * @return UuidFactoryInterface + */ + public static function getFactory() + { + if (!self::$factory) { + self::$factory = new UuidFactory(); + } + + return self::$factory; + } + + /** + * Sets the factory used to create UUIDs. + * + * @param UuidFactoryInterface $factory + */ + public static function setFactory(UuidFactoryInterface $factory) + { + self::$factory = $factory; + } + + /** + * Creates a UUID from a byte string. + * + * @param string $bytes + * @return UuidInterface + * @throws InvalidUuidStringException + * @throws InvalidArgumentException + */ + public static function fromBytes($bytes) + { + return self::getFactory()->fromBytes($bytes); + } + + /** + * Creates a UUID from the string standard representation. + * + * @param string $name A string that specifies a UUID + * @return UuidInterface + * @throws InvalidUuidStringException + */ + public static function fromString($name) + { + return self::getFactory()->fromString($name); + } + + /** + * Creates a UUID from a 128-bit integer string. + * + * @param string $integer String representation of 128-bit integer + * @return UuidInterface + * @throws UnsatisfiedDependencyException if `Moontoast\Math\BigNumber` is not present + * @throws InvalidUuidStringException + */ + public static function fromInteger($integer) + { + return self::getFactory()->fromInteger($integer); + } + + /** + * Check if a string is a valid UUID. + * + * @param string $uuid The string UUID to test + * @return boolean + */ + public static function isValid($uuid) + { + $uuid = str_replace(['urn:', 'uuid:', 'URN:', 'UUID:', '{', '}'], '', $uuid); + + if ($uuid == self::NIL) { + return true; + } + + if (!preg_match('/' . self::VALID_PATTERN . '/D', $uuid)) { + return false; + } + + return true; + } + + /** + * Generate a version 1 UUID from a host ID, sequence number, and the current time. + * + * @param int|string $node A 48-bit number representing the hardware address + * This number may be represented as an integer or a hexadecimal string. + * @param int $clockSeq A 14-bit number used to help avoid duplicates that + * could arise when the clock is set backwards in time or if the node ID + * changes. + * @return UuidInterface + * @throws UnsatisfiedDependencyException if called on a 32-bit system and + * `Moontoast\Math\BigNumber` is not present + * @throws InvalidArgumentException + * @throws Exception if it was not possible to gather sufficient entropy + */ + public static function uuid1($node = null, $clockSeq = null) + { + return self::getFactory()->uuid1($node, $clockSeq); + } + + /** + * Generate a version 3 UUID based on the MD5 hash of a namespace identifier + * (which is a UUID) and a name (which is a string). + * + * @param string|UuidInterface $ns The UUID namespace in which to create the named UUID + * @param string $name The name to create a UUID for + * @return UuidInterface + * @throws InvalidUuidStringException + */ + public static function uuid3($ns, $name) + { + return self::getFactory()->uuid3($ns, $name); + } + + /** + * Generate a version 4 (random) UUID. + * + * @return UuidInterface + * @throws UnsatisfiedDependencyException if `Moontoast\Math\BigNumber` is not present + * @throws InvalidArgumentException + * @throws Exception + */ + public static function uuid4() + { + return self::getFactory()->uuid4(); + } + + /** + * Generate a version 5 UUID based on the SHA-1 hash of a namespace + * identifier (which is a UUID) and a name (which is a string). + * + * @param string|UuidInterface $ns The UUID namespace in which to create the named UUID + * @param string $name The name to create a UUID for + * @return UuidInterface + * @throws InvalidUuidStringException + */ + public static function uuid5($ns, $name) + { + return self::getFactory()->uuid5($ns, $name); + } +} diff --git a/vendor/ramsey/uuid/src/UuidFactory.php b/vendor/ramsey/uuid/src/UuidFactory.php new file mode 100644 index 00000000..5a57b09b --- /dev/null +++ b/vendor/ramsey/uuid/src/UuidFactory.php @@ -0,0 +1,315 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid; + +use Ramsey\Uuid\Converter\NumberConverterInterface; +use Ramsey\Uuid\Exception\InvalidUuidStringException; +use Ramsey\Uuid\Provider\NodeProviderInterface; +use Ramsey\Uuid\Generator\RandomGeneratorInterface; +use Ramsey\Uuid\Generator\TimeGeneratorInterface; +use Ramsey\Uuid\Codec\CodecInterface; +use Ramsey\Uuid\Builder\UuidBuilderInterface; + +class UuidFactory implements UuidFactoryInterface +{ + /** + * @var CodecInterface + */ + private $codec = null; + + /** + * @var NodeProviderInterface + */ + private $nodeProvider = null; + + /** + * @var NumberConverterInterface + */ + private $numberConverter = null; + + /** + * @var RandomGeneratorInterface + */ + private $randomGenerator = null; + + /** + * @var TimeGeneratorInterface + */ + private $timeGenerator = null; + + /** + * @var UuidBuilderInterface + */ + private $uuidBuilder = null; + + /** + * Constructs a `UuidFactory` for creating `Ramsey\Uuid\UuidInterface` instances + * + * @param FeatureSet $features A set of features for use when creating UUIDs + */ + public function __construct(FeatureSet $features = null) + { + $features = $features ?: new FeatureSet(); + + $this->codec = $features->getCodec(); + $this->nodeProvider = $features->getNodeProvider(); + $this->numberConverter = $features->getNumberConverter(); + $this->randomGenerator = $features->getRandomGenerator(); + $this->timeGenerator = $features->getTimeGenerator(); + $this->uuidBuilder = $features->getBuilder(); + } + + /** + * Returns the UUID coder-decoder used by this factory + * + * @return CodecInterface + */ + public function getCodec() + { + return $this->codec; + } + + /** + * Sets the UUID coder-decoder used by this factory + * + * @param CodecInterface $codec + */ + public function setCodec(CodecInterface $codec) + { + $this->codec = $codec; + } + + /** + * Returns the system node ID provider used by this factory + * + * @return NodeProviderInterface + */ + public function getNodeProvider() + { + return $this->nodeProvider; + } + + /** + * Returns the random UUID generator used by this factory + * + * @return RandomGeneratorInterface + */ + public function getRandomGenerator() + { + return $this->randomGenerator; + } + + /** + * Returns the time-based UUID generator used by this factory + * + * @return TimeGeneratorInterface + */ + public function getTimeGenerator() + { + return $this->timeGenerator; + } + + /** + * Sets the time-based UUID generator this factory will use to generate version 1 UUIDs + * + * @param TimeGeneratorInterface $generator + */ + public function setTimeGenerator(TimeGeneratorInterface $generator) + { + $this->timeGenerator = $generator; + } + + /** + * Returns the number converter used by this factory + * + * @return NumberConverterInterface + */ + public function getNumberConverter() + { + return $this->numberConverter; + } + + /** + * Sets the random UUID generator this factory will use to generate version 4 UUIDs + * + * @param RandomGeneratorInterface $generator + */ + public function setRandomGenerator(RandomGeneratorInterface $generator) + { + $this->randomGenerator = $generator; + } + + /** + * Sets the number converter this factory will use + * + * @param NumberConverterInterface $converter + */ + public function setNumberConverter(NumberConverterInterface $converter) + { + $this->numberConverter = $converter; + } + + /** + * Returns the UUID builder this factory uses when creating `Uuid` instances + * + * @return UuidBuilderInterface $builder + */ + public function getUuidBuilder() + { + return $this->uuidBuilder; + } + + /** + * Sets the UUID builder this factory will use when creating `Uuid` instances + * + * @param UuidBuilderInterface $builder + */ + public function setUuidBuilder(UuidBuilderInterface $builder) + { + $this->uuidBuilder = $builder; + } + + /** + * @inheritdoc + */ + public function fromBytes($bytes) + { + return $this->codec->decodeBytes($bytes); + } + + /** + * @inheritdoc + */ + public function fromString($uuid) + { + $uuid = strtolower($uuid); + return $this->codec->decode($uuid); + } + + /** + * @inheritdoc + */ + public function fromInteger($integer) + { + $hex = $this->numberConverter->toHex($integer); + $hex = str_pad($hex, 32, '0', STR_PAD_LEFT); + + return $this->fromString($hex); + } + + /** + * @inheritdoc + */ + public function uuid1($node = null, $clockSeq = null) + { + $bytes = $this->timeGenerator->generate($node, $clockSeq); + $hex = bin2hex($bytes); + + return $this->uuidFromHashedName($hex, 1); + } + + /** + * @inheritdoc + */ + public function uuid3($ns, $name) + { + return $this->uuidFromNsAndName($ns, $name, 3, 'md5'); + } + + /** + * @inheritdoc + */ + public function uuid4() + { + $bytes = $this->randomGenerator->generate(16); + + // When converting the bytes to hex, it turns into a 32-character + // hexadecimal string that looks a lot like an MD5 hash, so at this + // point, we can just pass it to uuidFromHashedName. + $hex = bin2hex($bytes); + + return $this->uuidFromHashedName($hex, 4); + } + + /** + * @inheritdoc + */ + public function uuid5($ns, $name) + { + return $this->uuidFromNsAndName($ns, $name, 5, 'sha1'); + } + + /** + * Returns a `Uuid` + * + * Uses the configured builder and codec and the provided array of hexadecimal + * value UUID fields to construct a `Uuid` object. + * + * @param array $fields An array of fields from which to construct a UUID; + * see {@see \Ramsey\Uuid\UuidInterface::getFieldsHex()} for array structure. + * @return UuidInterface + */ + public function uuid(array $fields) + { + return $this->uuidBuilder->build($this->codec, $fields); + } + + /** + * Returns a version 3 or 5 namespaced `Uuid` + * + * @param string|UuidInterface $ns The UUID namespace to use + * @param string $name The string to hash together with the namespace + * @param int $version The version of UUID to create (3 or 5) + * @param string $hashFunction The hash function to use when hashing together + * the namespace and name + * @return UuidInterface + * @throws InvalidUuidStringException + */ + protected function uuidFromNsAndName($ns, $name, $version, $hashFunction) + { + if (!($ns instanceof UuidInterface)) { + $ns = $this->codec->decode($ns); + } + + $hash = call_user_func($hashFunction, ($ns->getBytes() . $name)); + + return $this->uuidFromHashedName($hash, $version); + } + + /** + * Returns a `Uuid` created from `$hash` with the version field set to `$version` + * and the variant field set for RFC 4122 + * + * @param string $hash The hash to use when creating the UUID + * @param int $version The UUID version to set for this hash (1, 3, 4, or 5) + * @return UuidInterface + */ + protected function uuidFromHashedName($hash, $version) + { + $timeHi = BinaryUtils::applyVersion(substr($hash, 12, 4), $version); + $clockSeqHi = BinaryUtils::applyVariant(hexdec(substr($hash, 16, 2))); + + $fields = [ + 'time_low' => substr($hash, 0, 8), + 'time_mid' => substr($hash, 8, 4), + 'time_hi_and_version' => str_pad(dechex($timeHi), 4, '0', STR_PAD_LEFT), + 'clock_seq_hi_and_reserved' => str_pad(dechex($clockSeqHi), 2, '0', STR_PAD_LEFT), + 'clock_seq_low' => substr($hash, 18, 2), + 'node' => substr($hash, 20, 12), + ]; + + return $this->uuid($fields); + } +} diff --git a/vendor/ramsey/uuid/src/UuidFactoryInterface.php b/vendor/ramsey/uuid/src/UuidFactoryInterface.php new file mode 100644 index 00000000..1c1651d6 --- /dev/null +++ b/vendor/ramsey/uuid/src/UuidFactoryInterface.php @@ -0,0 +1,108 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid; + +use Exception; +use InvalidArgumentException; +use Ramsey\Uuid\Exception\InvalidUuidStringException; +use Ramsey\Uuid\Exception\UnsatisfiedDependencyException; + +/** + * UuidFactoryInterface defines common functionality all `UuidFactory` instances + * must implement + */ +interface UuidFactoryInterface +{ + /** + * Generate a version 1 UUID from a host ID, sequence number, and the current time. + * + * @param int|string|null $node A 48-bit number representing the hardware address + * This number may be represented as an integer or a hexadecimal string. + * @param int|null $clockSeq A 14-bit number used to help avoid duplicates that + * could arise when the clock is set backwards in time or if the node ID + * changes. + * @return UuidInterface + * @throws UnsatisfiedDependencyException if called on a 32-bit system and + * `Moontoast\Math\BigNumber` is not present + * @throws InvalidArgumentException + * @throws Exception if it was not possible to gather sufficient entropy + */ + public function uuid1($node = null, $clockSeq = null); + + /** + * Generate a version 3 UUID based on the MD5 hash of a namespace identifier + * (which is a UUID) and a name (which is a string). + * + * @param string|UuidInterface $ns The UUID namespace in which to create the named UUID + * @param string $name The name to create a UUID for + * @return UuidInterface + * @throws InvalidUuidStringException + */ + public function uuid3($ns, $name); + + /** + * Generate a version 4 (random) UUID. + * + * @return UuidInterface + * @throws UnsatisfiedDependencyException if `Moontoast\Math\BigNumber` is not present + * @throws InvalidArgumentException + * @throws Exception + */ + public function uuid4(); + + /** + * Generate a version 5 UUID based on the SHA-1 hash of a namespace + * identifier (which is a UUID) and a name (which is a string). + * + * @param string|UuidInterface $ns The UUID namespace in which to create the named UUID + * @param string $name The name to create a UUID for + * @return UuidInterface + * @throws InvalidUuidStringException + */ + public function uuid5($ns, $name); + + /** + * Creates a UUID from a byte string. + * + * @param string $bytes A 16-byte string representation of a UUID + * @return UuidInterface + * @throws InvalidUuidStringException + * @throws InvalidArgumentException if string has not 16 characters + */ + public function fromBytes($bytes); + + /** + * Creates a UUID from the string standard representation + * + * @param string $uuid A string representation of a UUID + * @return UuidInterface + * @throws InvalidUuidStringException + */ + public function fromString($uuid); + + /** + * Creates a `Uuid` from an integer representation + * + * The integer representation may be a real integer, a string integer, or + * an integer representation supported by a configured number converter. + * + * @param mixed $integer The integer to use when creating a `Uuid` from an + * integer; may be of any type understood by the configured number converter + * @return UuidInterface + * @throws UnsatisfiedDependencyException if `Moontoast\Math\BigNumber` is not present + * @throws InvalidUuidStringException + */ + public function fromInteger($integer); +} diff --git a/vendor/ramsey/uuid/src/UuidInterface.php b/vendor/ramsey/uuid/src/UuidInterface.php new file mode 100644 index 00000000..42a3ad7f --- /dev/null +++ b/vendor/ramsey/uuid/src/UuidInterface.php @@ -0,0 +1,274 @@ + + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ + +namespace Ramsey\Uuid; + +use DateTime; +use JsonSerializable; +use Ramsey\Uuid\Converter\NumberConverterInterface; +use Ramsey\Uuid\Exception\UnsatisfiedDependencyException; +use Ramsey\Uuid\Exception\UnsupportedOperationException; +use Serializable; + +/** + * UuidInterface defines common functionality for all universally unique + * identifiers (UUIDs) + */ +interface UuidInterface extends JsonSerializable, Serializable +{ + /** + * Compares this UUID to the specified UUID. + * + * The first of two UUIDs is greater than the second if the most + * significant field in which the UUIDs differ is greater for the first + * UUID. + * + * * Q. What's the value of being able to sort UUIDs? + * * A. Use them as keys in a B-Tree or similar mapping. + * + * @param UuidInterface $other UUID to which this UUID is compared + * @return int -1, 0 or 1 as this UUID is less than, equal to, or greater than `$uuid` + */ + public function compareTo(UuidInterface $other); + + /** + * Compares this object to the specified object. + * + * The result is true if and only if the argument is not null, is a UUID + * object, has the same variant, and contains the same value, bit for bit, + * as this UUID. + * + * @param object $other + * @return bool True if `$other` is equal to this UUID + */ + public function equals($other); + + /** + * Returns the UUID as a 16-byte string (containing the six integer fields + * in big-endian byte order). + * + * @return string + */ + public function getBytes(); + + /** + * Returns the number converter to use for converting hex values to/from integers. + * + * @return NumberConverterInterface + */ + public function getNumberConverter(); + + /** + * Returns the hexadecimal value of the UUID. + * + * @return string + */ + public function getHex(); + + /** + * Returns an array of the fields of this UUID, with keys named according + * to the RFC 4122 names for the fields. + * + * * **time_low**: The low field of the timestamp, an unsigned 32-bit integer + * * **time_mid**: The middle field of the timestamp, an unsigned 16-bit integer + * * **time_hi_and_version**: The high field of the timestamp multiplexed with + * the version number, an unsigned 16-bit integer + * * **clock_seq_hi_and_reserved**: The high field of the clock sequence + * multiplexed with the variant, an unsigned 8-bit integer + * * **clock_seq_low**: The low field of the clock sequence, an unsigned + * 8-bit integer + * * **node**: The spatially unique node identifier, an unsigned 48-bit + * integer + * + * @return array The UUID fields represented as hexadecimal values + */ + public function getFieldsHex(); + + /** + * Returns the high field of the clock sequence multiplexed with the variant + * (bits 65-72 of the UUID). + * + * @return string Hexadecimal value of clock_seq_hi_and_reserved + */ + public function getClockSeqHiAndReservedHex(); + + /** + * Returns the low field of the clock sequence (bits 73-80 of the UUID). + * + * @return string Hexadecimal value of clock_seq_low + */ + public function getClockSeqLowHex(); + + /** + * Returns the clock sequence value associated with this UUID. + * + * @return string Hexadecimal value of clock sequence + */ + public function getClockSequenceHex(); + + /** + * Returns a PHP `DateTime` object representing the timestamp associated + * with this UUID. + * + * The timestamp value is only meaningful in a time-based UUID, which + * has version type 1. If this UUID is not a time-based UUID then + * this method throws `UnsupportedOperationException`. + * + * @return DateTime A PHP DateTime representation of the date + * @throws UnsupportedOperationException If this UUID is not a version 1 UUID + * @throws UnsatisfiedDependencyException if called in a 32-bit system and + * `Moontoast\Math\BigNumber` is not present + */ + public function getDateTime(); + + /** + * Returns the integer value of the UUID, converted to an appropriate number + * representation. + * + * @return mixed Converted representation of the unsigned 128-bit integer value + * @throws UnsatisfiedDependencyException if `Moontoast\Math\BigNumber` is not present + */ + public function getInteger(); + + /** + * Returns the least significant 64 bits of this UUID's 128 bit value. + * + * @return string Hexadecimal value of least significant bits + */ + public function getLeastSignificantBitsHex(); + + /** + * Returns the most significant 64 bits of this UUID's 128 bit value. + * + * @return string Hexadecimal value of most significant bits + */ + public function getMostSignificantBitsHex(); + + /** + * Returns the node value associated with this UUID + * + * For UUID version 1, the node field consists of an IEEE 802 MAC + * address, usually the host address. For systems with multiple IEEE + * 802 addresses, any available one can be used. The lowest addressed + * octet (octet number 10) contains the global/local bit and the + * unicast/multicast bit, and is the first octet of the address + * transmitted on an 802.3 LAN. + * + * For systems with no IEEE address, a randomly or pseudo-randomly + * generated value may be used; see RFC 4122, Section 4.5. The + * multicast bit must be set in such addresses, in order that they + * will never conflict with addresses obtained from network cards. + * + * For UUID version 3 or 5, the node field is a 48-bit value constructed + * from a name as described in RFC 4122, Section 4.3. + * + * For UUID version 4, the node field is a randomly or pseudo-randomly + * generated 48-bit value as described in RFC 4122, Section 4.4. + * + * @return string Hexadecimal value of node + * @link http://tools.ietf.org/html/rfc4122#section-4.1.6 + */ + public function getNodeHex(); + + /** + * Returns the high field of the timestamp multiplexed with the version + * number (bits 49-64 of the UUID). + * + * @return string Hexadecimal value of time_hi_and_version + */ + public function getTimeHiAndVersionHex(); + + /** + * Returns the low field of the timestamp (the first 32 bits of the UUID). + * + * @return string Hexadecimal value of time_low + */ + public function getTimeLowHex(); + + /** + * Returns the middle field of the timestamp (bits 33-48 of the UUID). + * + * @return string Hexadecimal value of time_mid + */ + public function getTimeMidHex(); + + /** + * Returns the timestamp value associated with this UUID. + * + * The 60 bit timestamp value is constructed from the time_low, + * time_mid, and time_hi fields of this UUID. The resulting + * timestamp is measured in 100-nanosecond units since midnight, + * October 15, 1582 UTC. + * + * The timestamp value is only meaningful in a time-based UUID, which + * has version type 1. If this UUID is not a time-based UUID then + * this method throws UnsupportedOperationException. + * + * @return string Hexadecimal value of the timestamp + * @throws UnsupportedOperationException If this UUID is not a version 1 UUID + * @link http://tools.ietf.org/html/rfc4122#section-4.1.4 + */ + public function getTimestampHex(); + + /** + * Returns the string representation of the UUID as a URN. + * + * @return string + * @link http://en.wikipedia.org/wiki/Uniform_Resource_Name + */ + public function getUrn(); + + /** + * Returns the variant number associated with this UUID. + * + * The variant number describes the layout of the UUID. The variant + * number has the following meaning: + * + * * 0 - Reserved for NCS backward compatibility + * * 2 - The RFC 4122 variant (used by this class) + * * 6 - Reserved, Microsoft Corporation backward compatibility + * * 7 - Reserved for future definition + * + * @return int + * @link http://tools.ietf.org/html/rfc4122#section-4.1.1 + */ + public function getVariant(); + + /** + * Returns the version number associated with this UUID. + * + * The version number describes how this UUID was generated and has the + * following meaning: + * + * * 1 - Time-based UUID + * * 2 - DCE security UUID + * * 3 - Name-based UUID hashed with MD5 + * * 4 - Randomly generated UUID + * * 5 - Name-based UUID hashed with SHA-1 + * + * Returns null if this UUID is not an RFC 4122 variant, since version + * is only meaningful for this variant. + * + * @return int|null + * @link http://tools.ietf.org/html/rfc4122#section-4.1.3 + */ + public function getVersion(); + + /** + * Converts this UUID into a string representation. + * + * @return string + */ + public function toString(); +} diff --git a/vendor/ramsey/uuid/src/functions.php b/vendor/ramsey/uuid/src/functions.php new file mode 100644 index 00000000..b5db3418 --- /dev/null +++ b/vendor/ramsey/uuid/src/functions.php @@ -0,0 +1,78 @@ + + * @license http://opensource.org/licenses/MIT MIT + */ + +namespace Ramsey\Uuid; + +use Exception; +use InvalidArgumentException; +use Ramsey\Uuid\Exception\InvalidUuidStringException; +use Ramsey\Uuid\Exception\UnsatisfiedDependencyException; + +/** + * Generate a version 1 UUID from a host ID, sequence number, and the current time. + * + * @param int|string|null $node A 48-bit number representing the hardware address + * This number may be represented as an integer or a hexadecimal string. + * @param int|null $clockSeq A 14-bit number used to help avoid duplicates that + * could arise when the clock is set backwards in time or if the node ID + * changes. + * @return string + * @throws UnsatisfiedDependencyException if called on a 32-bit system and + * `Moontoast\Math\BigNumber` is not present + * @throws InvalidArgumentException + * @throws Exception if it was not possible to gather sufficient entropy + */ +function v1($node = null, $clockSeq = null) +{ + return Uuid::uuid1($node, $clockSeq)->toString(); +} + +/** + * Generate a version 3 UUID based on the MD5 hash of a namespace identifier + * (which is a UUID) and a name (which is a string). + * + * @param string|UuidInterface $ns The UUID namespace in which to create the named UUID + * @param string $name The name to create a UUID for + * @return string + * @throws InvalidUuidStringException + */ +function v3($ns, $name) +{ + return Uuid::uuid3($ns, $name)->toString(); +} + +/** + * Generate a version 4 (random) UUID. + * + * @return string + * @throws UnsatisfiedDependencyException if `Moontoast\Math\BigNumber` is not present + * @throws InvalidArgumentException + * @throws Exception + */ +function v4() +{ + return Uuid::uuid4()->toString(); +} + +/** + * Generate a version 5 UUID based on the SHA-1 hash of a namespace + * identifier (which is a UUID) and a name (which is a string). + * + * @param string|UuidInterface $ns The UUID namespace in which to create the named UUID + * @param string $name The name to create a UUID for + * @return string + * @throws InvalidUuidStringException + */ +function v5($ns, $name) +{ + return Uuid::uuid5($ns, $name)->toString(); +} diff --git a/vendor/react/event-loop/LICENSE b/vendor/react/event-loop/LICENSE new file mode 100644 index 00000000..d6f8901f --- /dev/null +++ b/vendor/react/event-loop/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2012 Christian Lück, Cees-Jan Kiewiet, Jan Sorgalla, Chris Boden, Igor Wiedler + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/vendor/react/event-loop/composer.json b/vendor/react/event-loop/composer.json new file mode 100644 index 00000000..d9b032e1 --- /dev/null +++ b/vendor/react/event-loop/composer.json @@ -0,0 +1,49 @@ +{ + "name": "react/event-loop", + "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.", + "keywords": ["event-loop", "asynchronous"], + "license": "MIT", + "authors": [ + { + "name": "Christian Lück", + "homepage": "https://clue.engineering/", + "email": "christian@clue.engineering" + }, + { + "name": "Cees-Jan Kiewiet", + "homepage": "https://wyrihaximus.net/", + "email": "reactphp@ceesjankiewiet.nl" + }, + { + "name": "Jan Sorgalla", + "homepage": "https://sorgalla.com/", + "email": "jsorgalla@gmail.com" + }, + { + "name": "Chris Boden", + "homepage": "https://cboden.dev/", + "email": "cboden@gmail.com" + } + ], + "require": { + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35" + }, + "suggest": { + "ext-event": "~1.0 for ExtEventLoop", + "ext-pcntl": "For signal handling support when using the StreamSelectLoop", + "ext-uv": "* for ExtUvLoop" + }, + "autoload": { + "psr-4": { + "React\\EventLoop\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "React\\Tests\\EventLoop\\": "tests" + } + } +} diff --git a/vendor/react/event-loop/src/ExtEvLoop.php b/vendor/react/event-loop/src/ExtEvLoop.php new file mode 100644 index 00000000..a3fcec68 --- /dev/null +++ b/vendor/react/event-loop/src/ExtEvLoop.php @@ -0,0 +1,253 @@ +loop = new EvLoop(); + $this->futureTickQueue = new FutureTickQueue(); + $this->timers = new SplObjectStorage(); + $this->signals = new SignalsHandler(); + } + + public function addReadStream($stream, $listener) + { + $key = (int)$stream; + + if (isset($this->readStreams[$key])) { + return; + } + + $callback = $this->getStreamListenerClosure($stream, $listener); + $event = $this->loop->io($stream, Ev::READ, $callback); + $this->readStreams[$key] = $event; + } + + /** + * @param resource $stream + * @param callable $listener + * + * @return \Closure + */ + private function getStreamListenerClosure($stream, $listener) + { + return function () use ($stream, $listener) { + \call_user_func($listener, $stream); + }; + } + + public function addWriteStream($stream, $listener) + { + $key = (int)$stream; + + if (isset($this->writeStreams[$key])) { + return; + } + + $callback = $this->getStreamListenerClosure($stream, $listener); + $event = $this->loop->io($stream, Ev::WRITE, $callback); + $this->writeStreams[$key] = $event; + } + + public function removeReadStream($stream) + { + $key = (int)$stream; + + if (!isset($this->readStreams[$key])) { + return; + } + + $this->readStreams[$key]->stop(); + unset($this->readStreams[$key]); + } + + public function removeWriteStream($stream) + { + $key = (int)$stream; + + if (!isset($this->writeStreams[$key])) { + return; + } + + $this->writeStreams[$key]->stop(); + unset($this->writeStreams[$key]); + } + + public function addTimer($interval, $callback) + { + $timer = new Timer($interval, $callback, false); + + $that = $this; + $timers = $this->timers; + $callback = function () use ($timer, $timers, $that) { + \call_user_func($timer->getCallback(), $timer); + + if ($timers->contains($timer)) { + $that->cancelTimer($timer); + } + }; + + $event = $this->loop->timer($timer->getInterval(), 0.0, $callback); + $this->timers->attach($timer, $event); + + return $timer; + } + + public function addPeriodicTimer($interval, $callback) + { + $timer = new Timer($interval, $callback, true); + + $callback = function () use ($timer) { + \call_user_func($timer->getCallback(), $timer); + }; + + $event = $this->loop->timer($timer->getInterval(), $timer->getInterval(), $callback); + $this->timers->attach($timer, $event); + + return $timer; + } + + public function cancelTimer(TimerInterface $timer) + { + if (!isset($this->timers[$timer])) { + return; + } + + $event = $this->timers[$timer]; + $event->stop(); + $this->timers->detach($timer); + } + + public function futureTick($listener) + { + $this->futureTickQueue->add($listener); + } + + public function run() + { + $this->running = true; + + while ($this->running) { + $this->futureTickQueue->tick(); + + $hasPendingCallbacks = !$this->futureTickQueue->isEmpty(); + $wasJustStopped = !$this->running; + $nothingLeftToDo = !$this->readStreams + && !$this->writeStreams + && !$this->timers->count() + && $this->signals->isEmpty(); + + $flags = Ev::RUN_ONCE; + if ($wasJustStopped || $hasPendingCallbacks) { + $flags |= Ev::RUN_NOWAIT; + } elseif ($nothingLeftToDo) { + break; + } + + $this->loop->run($flags); + } + } + + public function stop() + { + $this->running = false; + } + + public function __destruct() + { + /** @var TimerInterface $timer */ + foreach ($this->timers as $timer) { + $this->cancelTimer($timer); + } + + foreach ($this->readStreams as $key => $stream) { + $this->removeReadStream($key); + } + + foreach ($this->writeStreams as $key => $stream) { + $this->removeWriteStream($key); + } + } + + public function addSignal($signal, $listener) + { + $this->signals->add($signal, $listener); + + if (!isset($this->signalEvents[$signal])) { + $this->signalEvents[$signal] = $this->loop->signal($signal, function() use ($signal) { + $this->signals->call($signal); + }); + } + } + + public function removeSignal($signal, $listener) + { + $this->signals->remove($signal, $listener); + + if (isset($this->signalEvents[$signal])) { + $this->signalEvents[$signal]->stop(); + unset($this->signalEvents[$signal]); + } + } +} diff --git a/vendor/react/event-loop/src/ExtEventLoop.php b/vendor/react/event-loop/src/ExtEventLoop.php new file mode 100644 index 00000000..b162a402 --- /dev/null +++ b/vendor/react/event-loop/src/ExtEventLoop.php @@ -0,0 +1,275 @@ +requireFeatures(\EventConfig::FEATURE_FDS); + } + + $this->eventBase = new EventBase($config); + $this->futureTickQueue = new FutureTickQueue(); + $this->timerEvents = new SplObjectStorage(); + $this->signals = new SignalsHandler(); + + $this->createTimerCallback(); + $this->createStreamCallback(); + } + + public function __destruct() + { + // explicitly clear all references to Event objects to prevent SEGFAULTs on Windows + foreach ($this->timerEvents as $timer) { + $this->timerEvents->detach($timer); + } + + $this->readEvents = array(); + $this->writeEvents = array(); + } + + public function addReadStream($stream, $listener) + { + $key = (int) $stream; + if (isset($this->readListeners[$key])) { + return; + } + + $event = new Event($this->eventBase, $stream, Event::PERSIST | Event::READ, $this->streamCallback); + $event->add(); + $this->readEvents[$key] = $event; + $this->readListeners[$key] = $listener; + + // ext-event does not increase refcount on stream resources for PHP 7+ + // manually keep track of stream resource to prevent premature garbage collection + if (\PHP_VERSION_ID >= 70000) { + $this->readRefs[$key] = $stream; + } + } + + public function addWriteStream($stream, $listener) + { + $key = (int) $stream; + if (isset($this->writeListeners[$key])) { + return; + } + + $event = new Event($this->eventBase, $stream, Event::PERSIST | Event::WRITE, $this->streamCallback); + $event->add(); + $this->writeEvents[$key] = $event; + $this->writeListeners[$key] = $listener; + + // ext-event does not increase refcount on stream resources for PHP 7+ + // manually keep track of stream resource to prevent premature garbage collection + if (\PHP_VERSION_ID >= 70000) { + $this->writeRefs[$key] = $stream; + } + } + + public function removeReadStream($stream) + { + $key = (int) $stream; + + if (isset($this->readEvents[$key])) { + $this->readEvents[$key]->free(); + unset( + $this->readEvents[$key], + $this->readListeners[$key], + $this->readRefs[$key] + ); + } + } + + public function removeWriteStream($stream) + { + $key = (int) $stream; + + if (isset($this->writeEvents[$key])) { + $this->writeEvents[$key]->free(); + unset( + $this->writeEvents[$key], + $this->writeListeners[$key], + $this->writeRefs[$key] + ); + } + } + + public function addTimer($interval, $callback) + { + $timer = new Timer($interval, $callback, false); + + $this->scheduleTimer($timer); + + return $timer; + } + + public function addPeriodicTimer($interval, $callback) + { + $timer = new Timer($interval, $callback, true); + + $this->scheduleTimer($timer); + + return $timer; + } + + public function cancelTimer(TimerInterface $timer) + { + if ($this->timerEvents->contains($timer)) { + $this->timerEvents[$timer]->free(); + $this->timerEvents->detach($timer); + } + } + + public function futureTick($listener) + { + $this->futureTickQueue->add($listener); + } + + public function addSignal($signal, $listener) + { + $this->signals->add($signal, $listener); + + if (!isset($this->signalEvents[$signal])) { + $this->signalEvents[$signal] = Event::signal($this->eventBase, $signal, array($this->signals, 'call')); + $this->signalEvents[$signal]->add(); + } + } + + public function removeSignal($signal, $listener) + { + $this->signals->remove($signal, $listener); + + if (isset($this->signalEvents[$signal]) && $this->signals->count($signal) === 0) { + $this->signalEvents[$signal]->free(); + unset($this->signalEvents[$signal]); + } + } + + public function run() + { + $this->running = true; + + while ($this->running) { + $this->futureTickQueue->tick(); + + $flags = EventBase::LOOP_ONCE; + if (!$this->running || !$this->futureTickQueue->isEmpty()) { + $flags |= EventBase::LOOP_NONBLOCK; + } elseif (!$this->readEvents && !$this->writeEvents && !$this->timerEvents->count() && $this->signals->isEmpty()) { + break; + } + + $this->eventBase->loop($flags); + } + } + + public function stop() + { + $this->running = false; + } + + /** + * Schedule a timer for execution. + * + * @param TimerInterface $timer + */ + private function scheduleTimer(TimerInterface $timer) + { + $flags = Event::TIMEOUT; + + if ($timer->isPeriodic()) { + $flags |= Event::PERSIST; + } + + $event = new Event($this->eventBase, -1, $flags, $this->timerCallback, $timer); + $this->timerEvents[$timer] = $event; + + $event->add($timer->getInterval()); + } + + /** + * Create a callback used as the target of timer events. + * + * A reference is kept to the callback for the lifetime of the loop + * to prevent "Cannot destroy active lambda function" fatal error from + * the event extension. + */ + private function createTimerCallback() + { + $timers = $this->timerEvents; + $this->timerCallback = function ($_, $__, $timer) use ($timers) { + \call_user_func($timer->getCallback(), $timer); + + if (!$timer->isPeriodic() && $timers->contains($timer)) { + $this->cancelTimer($timer); + } + }; + } + + /** + * Create a callback used as the target of stream events. + * + * A reference is kept to the callback for the lifetime of the loop + * to prevent "Cannot destroy active lambda function" fatal error from + * the event extension. + */ + private function createStreamCallback() + { + $read =& $this->readListeners; + $write =& $this->writeListeners; + $this->streamCallback = function ($stream, $flags) use (&$read, &$write) { + $key = (int) $stream; + + if (Event::READ === (Event::READ & $flags) && isset($read[$key])) { + \call_user_func($read[$key], $stream); + } + + if (Event::WRITE === (Event::WRITE & $flags) && isset($write[$key])) { + \call_user_func($write[$key], $stream); + } + }; + } +} diff --git a/vendor/react/event-loop/src/ExtLibevLoop.php b/vendor/react/event-loop/src/ExtLibevLoop.php new file mode 100644 index 00000000..c303fdd5 --- /dev/null +++ b/vendor/react/event-loop/src/ExtLibevLoop.php @@ -0,0 +1,201 @@ +loop = new EventLoop(); + $this->futureTickQueue = new FutureTickQueue(); + $this->timerEvents = new SplObjectStorage(); + $this->signals = new SignalsHandler(); + } + + public function addReadStream($stream, $listener) + { + if (isset($this->readEvents[(int) $stream])) { + return; + } + + $callback = function () use ($stream, $listener) { + \call_user_func($listener, $stream); + }; + + $event = new IOEvent($callback, $stream, IOEvent::READ); + $this->loop->add($event); + + $this->readEvents[(int) $stream] = $event; + } + + public function addWriteStream($stream, $listener) + { + if (isset($this->writeEvents[(int) $stream])) { + return; + } + + $callback = function () use ($stream, $listener) { + \call_user_func($listener, $stream); + }; + + $event = new IOEvent($callback, $stream, IOEvent::WRITE); + $this->loop->add($event); + + $this->writeEvents[(int) $stream] = $event; + } + + public function removeReadStream($stream) + { + $key = (int) $stream; + + if (isset($this->readEvents[$key])) { + $this->readEvents[$key]->stop(); + $this->loop->remove($this->readEvents[$key]); + unset($this->readEvents[$key]); + } + } + + public function removeWriteStream($stream) + { + $key = (int) $stream; + + if (isset($this->writeEvents[$key])) { + $this->writeEvents[$key]->stop(); + $this->loop->remove($this->writeEvents[$key]); + unset($this->writeEvents[$key]); + } + } + + public function addTimer($interval, $callback) + { + $timer = new Timer( $interval, $callback, false); + + $that = $this; + $timers = $this->timerEvents; + $callback = function () use ($timer, $timers, $that) { + \call_user_func($timer->getCallback(), $timer); + + if ($timers->contains($timer)) { + $that->cancelTimer($timer); + } + }; + + $event = new TimerEvent($callback, $timer->getInterval()); + $this->timerEvents->attach($timer, $event); + $this->loop->add($event); + + return $timer; + } + + public function addPeriodicTimer($interval, $callback) + { + $timer = new Timer($interval, $callback, true); + + $callback = function () use ($timer) { + \call_user_func($timer->getCallback(), $timer); + }; + + $event = new TimerEvent($callback, $timer->getInterval(), $timer->getInterval()); + $this->timerEvents->attach($timer, $event); + $this->loop->add($event); + + return $timer; + } + + public function cancelTimer(TimerInterface $timer) + { + if (isset($this->timerEvents[$timer])) { + $this->loop->remove($this->timerEvents[$timer]); + $this->timerEvents->detach($timer); + } + } + + public function futureTick($listener) + { + $this->futureTickQueue->add($listener); + } + + public function addSignal($signal, $listener) + { + $this->signals->add($signal, $listener); + + if (!isset($this->signalEvents[$signal])) { + $signals = $this->signals; + $this->signalEvents[$signal] = new SignalEvent(function () use ($signals, $signal) { + $signals->call($signal); + }, $signal); + $this->loop->add($this->signalEvents[$signal]); + } + } + + public function removeSignal($signal, $listener) + { + $this->signals->remove($signal, $listener); + + if (isset($this->signalEvents[$signal]) && $this->signals->count($signal) === 0) { + $this->signalEvents[$signal]->stop(); + $this->loop->remove($this->signalEvents[$signal]); + unset($this->signalEvents[$signal]); + } + } + + public function run() + { + $this->running = true; + + while ($this->running) { + $this->futureTickQueue->tick(); + + $flags = EventLoop::RUN_ONCE; + if (!$this->running || !$this->futureTickQueue->isEmpty()) { + $flags |= EventLoop::RUN_NOWAIT; + } elseif (!$this->readEvents && !$this->writeEvents && !$this->timerEvents->count() && $this->signals->isEmpty()) { + break; + } + + $this->loop->run($flags); + } + } + + public function stop() + { + $this->running = false; + } +} diff --git a/vendor/react/event-loop/src/ExtLibeventLoop.php b/vendor/react/event-loop/src/ExtLibeventLoop.php new file mode 100644 index 00000000..099293a4 --- /dev/null +++ b/vendor/react/event-loop/src/ExtLibeventLoop.php @@ -0,0 +1,285 @@ +eventBase = \event_base_new(); + $this->futureTickQueue = new FutureTickQueue(); + $this->timerEvents = new SplObjectStorage(); + $this->signals = new SignalsHandler(); + + $this->createTimerCallback(); + $this->createStreamCallback(); + } + + public function addReadStream($stream, $listener) + { + $key = (int) $stream; + if (isset($this->readListeners[$key])) { + return; + } + + $event = \event_new(); + \event_set($event, $stream, \EV_PERSIST | \EV_READ, $this->streamCallback); + \event_base_set($event, $this->eventBase); + \event_add($event); + + $this->readEvents[$key] = $event; + $this->readListeners[$key] = $listener; + } + + public function addWriteStream($stream, $listener) + { + $key = (int) $stream; + if (isset($this->writeListeners[$key])) { + return; + } + + $event = \event_new(); + \event_set($event, $stream, \EV_PERSIST | \EV_WRITE, $this->streamCallback); + \event_base_set($event, $this->eventBase); + \event_add($event); + + $this->writeEvents[$key] = $event; + $this->writeListeners[$key] = $listener; + } + + public function removeReadStream($stream) + { + $key = (int) $stream; + + if (isset($this->readListeners[$key])) { + $event = $this->readEvents[$key]; + \event_del($event); + \event_free($event); + + unset( + $this->readEvents[$key], + $this->readListeners[$key] + ); + } + } + + public function removeWriteStream($stream) + { + $key = (int) $stream; + + if (isset($this->writeListeners[$key])) { + $event = $this->writeEvents[$key]; + \event_del($event); + \event_free($event); + + unset( + $this->writeEvents[$key], + $this->writeListeners[$key] + ); + } + } + + public function addTimer($interval, $callback) + { + $timer = new Timer($interval, $callback, false); + + $this->scheduleTimer($timer); + + return $timer; + } + + public function addPeriodicTimer($interval, $callback) + { + $timer = new Timer($interval, $callback, true); + + $this->scheduleTimer($timer); + + return $timer; + } + + public function cancelTimer(TimerInterface $timer) + { + if ($this->timerEvents->contains($timer)) { + $event = $this->timerEvents[$timer]; + \event_del($event); + \event_free($event); + + $this->timerEvents->detach($timer); + } + } + + public function futureTick($listener) + { + $this->futureTickQueue->add($listener); + } + + public function addSignal($signal, $listener) + { + $this->signals->add($signal, $listener); + + if (!isset($this->signalEvents[$signal])) { + $this->signalEvents[$signal] = \event_new(); + \event_set($this->signalEvents[$signal], $signal, \EV_PERSIST | \EV_SIGNAL, array($this->signals, 'call')); + \event_base_set($this->signalEvents[$signal], $this->eventBase); + \event_add($this->signalEvents[$signal]); + } + } + + public function removeSignal($signal, $listener) + { + $this->signals->remove($signal, $listener); + + if (isset($this->signalEvents[$signal]) && $this->signals->count($signal) === 0) { + \event_del($this->signalEvents[$signal]); + \event_free($this->signalEvents[$signal]); + unset($this->signalEvents[$signal]); + } + } + + public function run() + { + $this->running = true; + + while ($this->running) { + $this->futureTickQueue->tick(); + + $flags = \EVLOOP_ONCE; + if (!$this->running || !$this->futureTickQueue->isEmpty()) { + $flags |= \EVLOOP_NONBLOCK; + } elseif (!$this->readEvents && !$this->writeEvents && !$this->timerEvents->count() && $this->signals->isEmpty()) { + break; + } + + \event_base_loop($this->eventBase, $flags); + } + } + + public function stop() + { + $this->running = false; + } + + /** + * Schedule a timer for execution. + * + * @param TimerInterface $timer + */ + private function scheduleTimer(TimerInterface $timer) + { + $this->timerEvents[$timer] = $event = \event_timer_new(); + + \event_timer_set($event, $this->timerCallback, $timer); + \event_base_set($event, $this->eventBase); + \event_add($event, $timer->getInterval() * self::MICROSECONDS_PER_SECOND); + } + + /** + * Create a callback used as the target of timer events. + * + * A reference is kept to the callback for the lifetime of the loop + * to prevent "Cannot destroy active lambda function" fatal error from + * the event extension. + */ + private function createTimerCallback() + { + $that = $this; + $timers = $this->timerEvents; + $this->timerCallback = function ($_, $__, $timer) use ($timers, $that) { + \call_user_func($timer->getCallback(), $timer); + + // Timer already cancelled ... + if (!$timers->contains($timer)) { + return; + } + + // Reschedule periodic timers ... + if ($timer->isPeriodic()) { + \event_add( + $timers[$timer], + $timer->getInterval() * ExtLibeventLoop::MICROSECONDS_PER_SECOND + ); + + // Clean-up one shot timers ... + } else { + $that->cancelTimer($timer); + } + }; + } + + /** + * Create a callback used as the target of stream events. + * + * A reference is kept to the callback for the lifetime of the loop + * to prevent "Cannot destroy active lambda function" fatal error from + * the event extension. + */ + private function createStreamCallback() + { + $read =& $this->readListeners; + $write =& $this->writeListeners; + $this->streamCallback = function ($stream, $flags) use (&$read, &$write) { + $key = (int) $stream; + + if (\EV_READ === (\EV_READ & $flags) && isset($read[$key])) { + \call_user_func($read[$key], $stream); + } + + if (\EV_WRITE === (\EV_WRITE & $flags) && isset($write[$key])) { + \call_user_func($write[$key], $stream); + } + }; + } +} diff --git a/vendor/react/event-loop/src/ExtUvLoop.php b/vendor/react/event-loop/src/ExtUvLoop.php new file mode 100644 index 00000000..631a4593 --- /dev/null +++ b/vendor/react/event-loop/src/ExtUvLoop.php @@ -0,0 +1,342 @@ +uv = \uv_loop_new(); + $this->futureTickQueue = new FutureTickQueue(); + $this->timers = new SplObjectStorage(); + $this->streamListener = $this->createStreamListener(); + $this->signals = new SignalsHandler(); + } + + /** + * Returns the underlying ext-uv event loop. (Internal ReactPHP use only.) + * + * @internal + * + * @return resource + */ + public function getUvLoop() + { + return $this->uv; + } + + /** + * {@inheritdoc} + */ + public function addReadStream($stream, $listener) + { + if (isset($this->readStreams[(int) $stream])) { + return; + } + + $this->readStreams[(int) $stream] = $listener; + $this->addStream($stream); + } + + /** + * {@inheritdoc} + */ + public function addWriteStream($stream, $listener) + { + if (isset($this->writeStreams[(int) $stream])) { + return; + } + + $this->writeStreams[(int) $stream] = $listener; + $this->addStream($stream); + } + + /** + * {@inheritdoc} + */ + public function removeReadStream($stream) + { + if (!isset($this->streamEvents[(int) $stream])) { + return; + } + + unset($this->readStreams[(int) $stream]); + $this->removeStream($stream); + } + + /** + * {@inheritdoc} + */ + public function removeWriteStream($stream) + { + if (!isset($this->streamEvents[(int) $stream])) { + return; + } + + unset($this->writeStreams[(int) $stream]); + $this->removeStream($stream); + } + + /** + * {@inheritdoc} + */ + public function addTimer($interval, $callback) + { + $timer = new Timer($interval, $callback, false); + + $that = $this; + $timers = $this->timers; + $callback = function () use ($timer, $timers, $that) { + \call_user_func($timer->getCallback(), $timer); + + if ($timers->contains($timer)) { + $that->cancelTimer($timer); + } + }; + + $event = \uv_timer_init($this->uv); + $this->timers->attach($timer, $event); + \uv_timer_start( + $event, + $this->convertFloatSecondsToMilliseconds($interval), + 0, + $callback + ); + + return $timer; + } + + /** + * {@inheritdoc} + */ + public function addPeriodicTimer($interval, $callback) + { + $timer = new Timer($interval, $callback, true); + + $callback = function () use ($timer) { + \call_user_func($timer->getCallback(), $timer); + }; + + $interval = $this->convertFloatSecondsToMilliseconds($interval); + $event = \uv_timer_init($this->uv); + $this->timers->attach($timer, $event); + \uv_timer_start( + $event, + $interval, + (int) $interval === 0 ? 1 : $interval, + $callback + ); + + return $timer; + } + + /** + * {@inheritdoc} + */ + public function cancelTimer(TimerInterface $timer) + { + if (isset($this->timers[$timer])) { + @\uv_timer_stop($this->timers[$timer]); + $this->timers->detach($timer); + } + } + + /** + * {@inheritdoc} + */ + public function futureTick($listener) + { + $this->futureTickQueue->add($listener); + } + + public function addSignal($signal, $listener) + { + $this->signals->add($signal, $listener); + + if (!isset($this->signalEvents[$signal])) { + $signals = $this->signals; + $this->signalEvents[$signal] = \uv_signal_init($this->uv); + \uv_signal_start($this->signalEvents[$signal], function () use ($signals, $signal) { + $signals->call($signal); + }, $signal); + } + } + + public function removeSignal($signal, $listener) + { + $this->signals->remove($signal, $listener); + + if (isset($this->signalEvents[$signal]) && $this->signals->count($signal) === 0) { + \uv_signal_stop($this->signalEvents[$signal]); + unset($this->signalEvents[$signal]); + } + } + + /** + * {@inheritdoc} + */ + public function run() + { + $this->running = true; + + while ($this->running) { + $this->futureTickQueue->tick(); + + $hasPendingCallbacks = !$this->futureTickQueue->isEmpty(); + $wasJustStopped = !$this->running; + $nothingLeftToDo = !$this->readStreams + && !$this->writeStreams + && !$this->timers->count() + && $this->signals->isEmpty(); + + // Use UV::RUN_ONCE when there are only I/O events active in the loop and block until one of those triggers, + // otherwise use UV::RUN_NOWAIT. + // @link http://docs.libuv.org/en/v1.x/loop.html#c.uv_run + $flags = \UV::RUN_ONCE; + if ($wasJustStopped || $hasPendingCallbacks) { + $flags = \UV::RUN_NOWAIT; + } elseif ($nothingLeftToDo) { + break; + } + + \uv_run($this->uv, $flags); + } + } + + /** + * {@inheritdoc} + */ + public function stop() + { + $this->running = false; + } + + private function addStream($stream) + { + if (!isset($this->streamEvents[(int) $stream])) { + $this->streamEvents[(int)$stream] = \uv_poll_init_socket($this->uv, $stream); + } + + if ($this->streamEvents[(int) $stream] !== false) { + $this->pollStream($stream); + } + } + + private function removeStream($stream) + { + if (!isset($this->streamEvents[(int) $stream])) { + return; + } + + if (!isset($this->readStreams[(int) $stream]) + && !isset($this->writeStreams[(int) $stream])) { + \uv_poll_stop($this->streamEvents[(int) $stream]); + \uv_close($this->streamEvents[(int) $stream]); + unset($this->streamEvents[(int) $stream]); + return; + } + + $this->pollStream($stream); + } + + private function pollStream($stream) + { + if (!isset($this->streamEvents[(int) $stream])) { + return; + } + + $flags = 0; + if (isset($this->readStreams[(int) $stream])) { + $flags |= \UV::READABLE; + } + + if (isset($this->writeStreams[(int) $stream])) { + $flags |= \UV::WRITABLE; + } + + \uv_poll_start($this->streamEvents[(int) $stream], $flags, $this->streamListener); + } + + /** + * Create a stream listener + * + * @return callable Returns a callback + */ + private function createStreamListener() + { + $callback = function ($event, $status, $events, $stream) { + // libuv automatically stops polling on error, re-enable polling to match other loop implementations + if ($status !== 0) { + $this->pollStream($stream); + + // libuv may report no events on error, but this should still invoke stream listeners to report closed connections + // re-enable both readable and writable, correct listeners will be checked below anyway + if ($events === 0) { + $events = \UV::READABLE | \UV::WRITABLE; + } + } + + if (isset($this->readStreams[(int) $stream]) && ($events & \UV::READABLE)) { + \call_user_func($this->readStreams[(int) $stream], $stream); + } + + if (isset($this->writeStreams[(int) $stream]) && ($events & \UV::WRITABLE)) { + \call_user_func($this->writeStreams[(int) $stream], $stream); + } + }; + + return $callback; + } + + /** + * @param float $interval + * @return int + */ + private function convertFloatSecondsToMilliseconds($interval) + { + if ($interval < 0) { + return 0; + } + + $maxValue = (int) (\PHP_INT_MAX / 1000); + $intInterval = (int) $interval; + + if (($intInterval <= 0 && $interval > 1) || $intInterval >= $maxValue) { + throw new \InvalidArgumentException( + "Interval overflow, value must be lower than '{$maxValue}', but '{$interval}' passed." + ); + } + + return (int) \floor($interval * 1000); + } +} diff --git a/vendor/react/event-loop/src/Factory.php b/vendor/react/event-loop/src/Factory.php new file mode 100644 index 00000000..30bbfd7c --- /dev/null +++ b/vendor/react/event-loop/src/Factory.php @@ -0,0 +1,75 @@ +futureTick(function () use (&$hasRun) { + $hasRun = true; + }); + + $stopped =& self::$stopped; + register_shutdown_function(function () use ($loop, &$hasRun, &$stopped) { + // Don't run if we're coming from a fatal error (uncaught exception). + $error = error_get_last(); + if ((isset($error['type']) ? $error['type'] : 0) & (E_ERROR | E_CORE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_RECOVERABLE_ERROR)) { + return; + } + + if (!$hasRun && !$stopped) { + $loop->run(); + } + }); + // @codeCoverageIgnoreEnd + + return self::$instance; + } + + /** + * Internal undocumented method, behavior might change or throw in the + * future. Use with caution and at your own risk. + * + * @internal + * @return void + */ + public static function set(LoopInterface $loop) + { + self::$instance = $loop; + } + + /** + * [Advanced] Register a listener to be notified when a stream is ready to read. + * + * @param resource $stream + * @param callable $listener + * @return void + * @throws \Exception + * @see LoopInterface::addReadStream() + */ + public static function addReadStream($stream, $listener) + { + self::get()->addReadStream($stream, $listener); + } + + /** + * [Advanced] Register a listener to be notified when a stream is ready to write. + * + * @param resource $stream + * @param callable $listener + * @return void + * @throws \Exception + * @see LoopInterface::addWriteStream() + */ + public static function addWriteStream($stream, $listener) + { + self::get()->addWriteStream($stream, $listener); + } + + /** + * Remove the read event listener for the given stream. + * + * @param resource $stream + * @return void + * @see LoopInterface::removeReadStream() + */ + public static function removeReadStream($stream) + { + self::get()->removeReadStream($stream); + } + + /** + * Remove the write event listener for the given stream. + * + * @param resource $stream + * @return void + * @see LoopInterface::removeWriteStream() + */ + public static function removeWriteStream($stream) + { + self::get()->removeWriteStream($stream); + } + + /** + * Enqueue a callback to be invoked once after the given interval. + * + * @param float $interval + * @param callable $callback + * @return TimerInterface + * @see LoopInterface::addTimer() + */ + public static function addTimer($interval, $callback) + { + return self::get()->addTimer($interval, $callback); + } + + /** + * Enqueue a callback to be invoked repeatedly after the given interval. + * + * @param float $interval + * @param callable $callback + * @return TimerInterface + * @see LoopInterface::addPeriodicTimer() + */ + public static function addPeriodicTimer($interval, $callback) + { + return self::get()->addPeriodicTimer($interval, $callback); + } + + /** + * Cancel a pending timer. + * + * @param TimerInterface $timer + * @return void + * @see LoopInterface::cancelTimer() + */ + public static function cancelTimer(TimerInterface $timer) + { + return self::get()->cancelTimer($timer); + } + + /** + * Schedule a callback to be invoked on a future tick of the event loop. + * + * @param callable $listener + * @return void + * @see LoopInterface::futureTick() + */ + public static function futureTick($listener) + { + self::get()->futureTick($listener); + } + + /** + * Register a listener to be notified when a signal has been caught by this process. + * + * @param int $signal + * @param callable $listener + * @return void + * @see LoopInterface::addSignal() + */ + public static function addSignal($signal, $listener) + { + self::get()->addSignal($signal, $listener); + } + + /** + * Removes a previously added signal listener. + * + * @param int $signal + * @param callable $listener + * @return void + * @see LoopInterface::removeSignal() + */ + public static function removeSignal($signal, $listener) + { + self::get()->removeSignal($signal, $listener); + } + + /** + * Run the event loop until there are no more tasks to perform. + * + * @return void + * @see LoopInterface::run() + */ + public static function run() + { + self::get()->run(); + } + + /** + * Instruct a running event loop to stop. + * + * @return void + * @see LoopInterface::stop() + */ + public static function stop() + { + self::$stopped = true; + self::get()->stop(); + } +} diff --git a/vendor/react/event-loop/src/LoopInterface.php b/vendor/react/event-loop/src/LoopInterface.php new file mode 100644 index 00000000..9266f718 --- /dev/null +++ b/vendor/react/event-loop/src/LoopInterface.php @@ -0,0 +1,472 @@ +addReadStream($stream, function ($stream) use ($name) { + * echo $name . ' said: ' . fread($stream); + * }); + * ``` + * + * See also [example #11](examples). + * + * You can invoke [`removeReadStream()`](#removereadstream) to remove the + * read event listener for this stream. + * + * The execution order of listeners when multiple streams become ready at + * the same time is not guaranteed. + * + * @param resource $stream The PHP stream resource to check. + * @param callable $listener Invoked when the stream is ready. + * @throws \Exception if the given resource type is not supported by this loop implementation + * @see self::removeReadStream() + */ + public function addReadStream($stream, $listener); + + /** + * [Advanced] Register a listener to be notified when a stream is ready to write. + * + * Note that this low-level API is considered advanced usage. + * Most use cases should probably use the higher-level + * [writable Stream API](https://github.com/reactphp/stream#writablestreaminterface) + * instead. + * + * The first parameter MUST be a valid stream resource that supports + * checking whether it is ready to write by this loop implementation. + * A single stream resource MUST NOT be added more than once. + * Instead, either call [`removeWriteStream()`](#removewritestream) first or + * react to this event with a single listener and then dispatch from this + * listener. This method MAY throw an `Exception` if the given resource type + * is not supported by this loop implementation. + * + * The second parameter MUST be a listener callback function that accepts + * the stream resource as its only parameter. + * If you don't use the stream resource inside your listener callback function + * you MAY use a function which has no parameters at all. + * + * The listener callback function MUST NOT throw an `Exception`. + * The return value of the listener callback function will be ignored and has + * no effect, so for performance reasons you're recommended to not return + * any excessive data structures. + * + * If you want to access any variables within your callback function, you + * can bind arbitrary data to a callback closure like this: + * + * ```php + * $loop->addWriteStream($stream, function ($stream) use ($name) { + * fwrite($stream, 'Hello ' . $name); + * }); + * ``` + * + * See also [example #12](examples). + * + * You can invoke [`removeWriteStream()`](#removewritestream) to remove the + * write event listener for this stream. + * + * The execution order of listeners when multiple streams become ready at + * the same time is not guaranteed. + * + * Some event loop implementations are known to only trigger the listener if + * the stream *becomes* readable (edge-triggered) and may not trigger if the + * stream has already been readable from the beginning. + * This also implies that a stream may not be recognized as readable when data + * is still left in PHP's internal stream buffers. + * As such, it's recommended to use `stream_set_read_buffer($stream, 0);` + * to disable PHP's internal read buffer in this case. + * + * @param resource $stream The PHP stream resource to check. + * @param callable $listener Invoked when the stream is ready. + * @throws \Exception if the given resource type is not supported by this loop implementation + * @see self::removeWriteStream() + */ + public function addWriteStream($stream, $listener); + + /** + * Remove the read event listener for the given stream. + * + * Removing a stream from the loop that has already been removed or trying + * to remove a stream that was never added or is invalid has no effect. + * + * @param resource $stream The PHP stream resource. + */ + public function removeReadStream($stream); + + /** + * Remove the write event listener for the given stream. + * + * Removing a stream from the loop that has already been removed or trying + * to remove a stream that was never added or is invalid has no effect. + * + * @param resource $stream The PHP stream resource. + */ + public function removeWriteStream($stream); + + /** + * Enqueue a callback to be invoked once after the given interval. + * + * The second parameter MUST be a timer callback function that accepts + * the timer instance as its only parameter. + * If you don't use the timer instance inside your timer callback function + * you MAY use a function which has no parameters at all. + * + * The timer callback function MUST NOT throw an `Exception`. + * The return value of the timer callback function will be ignored and has + * no effect, so for performance reasons you're recommended to not return + * any excessive data structures. + * + * This method returns a timer instance. The same timer instance will also be + * passed into the timer callback function as described above. + * You can invoke [`cancelTimer`](#canceltimer) to cancel a pending timer. + * Unlike [`addPeriodicTimer()`](#addperiodictimer), this method will ensure + * the callback will be invoked only once after the given interval. + * + * ```php + * $loop->addTimer(0.8, function () { + * echo 'world!' . PHP_EOL; + * }); + * + * $loop->addTimer(0.3, function () { + * echo 'hello '; + * }); + * ``` + * + * See also [example #1](examples). + * + * If you want to access any variables within your callback function, you + * can bind arbitrary data to a callback closure like this: + * + * ```php + * function hello($name, LoopInterface $loop) + * { + * $loop->addTimer(1.0, function () use ($name) { + * echo "hello $name\n"; + * }); + * } + * + * hello('Tester', $loop); + * ``` + * + * This interface does not enforce any particular timer resolution, so + * special care may have to be taken if you rely on very high precision with + * millisecond accuracy or below. Event loop implementations SHOULD work on + * a best effort basis and SHOULD provide at least millisecond accuracy + * unless otherwise noted. Many existing event loop implementations are + * known to provide microsecond accuracy, but it's generally not recommended + * to rely on this high precision. + * + * Similarly, the execution order of timers scheduled to execute at the + * same time (within its possible accuracy) is not guaranteed. + * + * This interface suggests that event loop implementations SHOULD use a + * monotonic time source if available. Given that a monotonic time source is + * only available as of PHP 7.3 by default, event loop implementations MAY + * fall back to using wall-clock time. + * While this does not affect many common use cases, this is an important + * distinction for programs that rely on a high time precision or on systems + * that are subject to discontinuous time adjustments (time jumps). + * This means that if you schedule a timer to trigger in 30s and then adjust + * your system time forward by 20s, the timer SHOULD still trigger in 30s. + * See also [event loop implementations](#loop-implementations) for more details. + * + * @param int|float $interval The number of seconds to wait before execution. + * @param callable $callback The callback to invoke. + * + * @return TimerInterface + */ + public function addTimer($interval, $callback); + + /** + * Enqueue a callback to be invoked repeatedly after the given interval. + * + * The second parameter MUST be a timer callback function that accepts + * the timer instance as its only parameter. + * If you don't use the timer instance inside your timer callback function + * you MAY use a function which has no parameters at all. + * + * The timer callback function MUST NOT throw an `Exception`. + * The return value of the timer callback function will be ignored and has + * no effect, so for performance reasons you're recommended to not return + * any excessive data structures. + * + * This method returns a timer instance. The same timer instance will also be + * passed into the timer callback function as described above. + * Unlike [`addTimer()`](#addtimer), this method will ensure the callback + * will be invoked infinitely after the given interval or until you invoke + * [`cancelTimer`](#canceltimer). + * + * ```php + * $timer = $loop->addPeriodicTimer(0.1, function () { + * echo 'tick!' . PHP_EOL; + * }); + * + * $loop->addTimer(1.0, function () use ($loop, $timer) { + * $loop->cancelTimer($timer); + * echo 'Done' . PHP_EOL; + * }); + * ``` + * + * See also [example #2](examples). + * + * If you want to limit the number of executions, you can bind + * arbitrary data to a callback closure like this: + * + * ```php + * function hello($name, LoopInterface $loop) + * { + * $n = 3; + * $loop->addPeriodicTimer(1.0, function ($timer) use ($name, $loop, &$n) { + * if ($n > 0) { + * --$n; + * echo "hello $name\n"; + * } else { + * $loop->cancelTimer($timer); + * } + * }); + * } + * + * hello('Tester', $loop); + * ``` + * + * This interface does not enforce any particular timer resolution, so + * special care may have to be taken if you rely on very high precision with + * millisecond accuracy or below. Event loop implementations SHOULD work on + * a best effort basis and SHOULD provide at least millisecond accuracy + * unless otherwise noted. Many existing event loop implementations are + * known to provide microsecond accuracy, but it's generally not recommended + * to rely on this high precision. + * + * Similarly, the execution order of timers scheduled to execute at the + * same time (within its possible accuracy) is not guaranteed. + * + * This interface suggests that event loop implementations SHOULD use a + * monotonic time source if available. Given that a monotonic time source is + * only available as of PHP 7.3 by default, event loop implementations MAY + * fall back to using wall-clock time. + * While this does not affect many common use cases, this is an important + * distinction for programs that rely on a high time precision or on systems + * that are subject to discontinuous time adjustments (time jumps). + * This means that if you schedule a timer to trigger in 30s and then adjust + * your system time forward by 20s, the timer SHOULD still trigger in 30s. + * See also [event loop implementations](#loop-implementations) for more details. + * + * Additionally, periodic timers may be subject to timer drift due to + * re-scheduling after each invocation. As such, it's generally not + * recommended to rely on this for high precision intervals with millisecond + * accuracy or below. + * + * @param int|float $interval The number of seconds to wait before execution. + * @param callable $callback The callback to invoke. + * + * @return TimerInterface + */ + public function addPeriodicTimer($interval, $callback); + + /** + * Cancel a pending timer. + * + * See also [`addPeriodicTimer()`](#addperiodictimer) and [example #2](examples). + * + * Calling this method on a timer instance that has not been added to this + * loop instance or on a timer that has already been cancelled has no effect. + * + * @param TimerInterface $timer The timer to cancel. + * + * @return void + */ + public function cancelTimer(TimerInterface $timer); + + /** + * Schedule a callback to be invoked on a future tick of the event loop. + * + * This works very much similar to timers with an interval of zero seconds, + * but does not require the overhead of scheduling a timer queue. + * + * The tick callback function MUST be able to accept zero parameters. + * + * The tick callback function MUST NOT throw an `Exception`. + * The return value of the tick callback function will be ignored and has + * no effect, so for performance reasons you're recommended to not return + * any excessive data structures. + * + * If you want to access any variables within your callback function, you + * can bind arbitrary data to a callback closure like this: + * + * ```php + * function hello($name, LoopInterface $loop) + * { + * $loop->futureTick(function () use ($name) { + * echo "hello $name\n"; + * }); + * } + * + * hello('Tester', $loop); + * ``` + * + * Unlike timers, tick callbacks are guaranteed to be executed in the order + * they are enqueued. + * Also, once a callback is enqueued, there's no way to cancel this operation. + * + * This is often used to break down bigger tasks into smaller steps (a form + * of cooperative multitasking). + * + * ```php + * $loop->futureTick(function () { + * echo 'b'; + * }); + * $loop->futureTick(function () { + * echo 'c'; + * }); + * echo 'a'; + * ``` + * + * See also [example #3](examples). + * + * @param callable $listener The callback to invoke. + * + * @return void + */ + public function futureTick($listener); + + /** + * Register a listener to be notified when a signal has been caught by this process. + * + * This is useful to catch user interrupt signals or shutdown signals from + * tools like `supervisor` or `systemd`. + * + * The second parameter MUST be a listener callback function that accepts + * the signal as its only parameter. + * If you don't use the signal inside your listener callback function + * you MAY use a function which has no parameters at all. + * + * The listener callback function MUST NOT throw an `Exception`. + * The return value of the listener callback function will be ignored and has + * no effect, so for performance reasons you're recommended to not return + * any excessive data structures. + * + * ```php + * $loop->addSignal(SIGINT, function (int $signal) { + * echo 'Caught user interrupt signal' . PHP_EOL; + * }); + * ``` + * + * See also [example #4](examples). + * + * Signaling is only available on Unix-like platforms, Windows isn't + * supported due to operating system limitations. + * This method may throw a `BadMethodCallException` if signals aren't + * supported on this platform, for example when required extensions are + * missing. + * + * **Note: A listener can only be added once to the same signal, any + * attempts to add it more than once will be ignored.** + * + * @param int $signal + * @param callable $listener + * + * @throws \BadMethodCallException when signals aren't supported on this + * platform, for example when required extensions are missing. + * + * @return void + */ + public function addSignal($signal, $listener); + + /** + * Removes a previously added signal listener. + * + * ```php + * $loop->removeSignal(SIGINT, $listener); + * ``` + * + * Any attempts to remove listeners that aren't registered will be ignored. + * + * @param int $signal + * @param callable $listener + * + * @return void + */ + public function removeSignal($signal, $listener); + + /** + * Run the event loop until there are no more tasks to perform. + * + * For many applications, this method is the only directly visible + * invocation on the event loop. + * As a rule of thumb, it is usually recommended to attach everything to the + * same loop instance and then run the loop once at the bottom end of the + * application. + * + * ```php + * $loop->run(); + * ``` + * + * This method will keep the loop running until there are no more tasks + * to perform. In other words: This method will block until the last + * timer, stream and/or signal has been removed. + * + * Likewise, it is imperative to ensure the application actually invokes + * this method once. Adding listeners to the loop and missing to actually + * run it will result in the application exiting without actually waiting + * for any of the attached listeners. + * + * This method MUST NOT be called while the loop is already running. + * This method MAY be called more than once after it has explicitly been + * [`stop()`ped](#stop) or after it automatically stopped because it + * previously did no longer have anything to do. + * + * @return void + */ + public function run(); + + /** + * Instruct a running event loop to stop. + * + * This method is considered advanced usage and should be used with care. + * As a rule of thumb, it is usually recommended to let the loop stop + * only automatically when it no longer has anything to do. + * + * This method can be used to explicitly instruct the event loop to stop: + * + * ```php + * $loop->addTimer(3.0, function () use ($loop) { + * $loop->stop(); + * }); + * ``` + * + * Calling this method on a loop instance that is not currently running or + * on a loop instance that has already been stopped has no effect. + * + * @return void + */ + public function stop(); +} diff --git a/vendor/react/event-loop/src/SignalsHandler.php b/vendor/react/event-loop/src/SignalsHandler.php new file mode 100644 index 00000000..10d125df --- /dev/null +++ b/vendor/react/event-loop/src/SignalsHandler.php @@ -0,0 +1,63 @@ +signals[$signal])) { + $this->signals[$signal] = array(); + } + + if (\in_array($listener, $this->signals[$signal])) { + return; + } + + $this->signals[$signal][] = $listener; + } + + public function remove($signal, $listener) + { + if (!isset($this->signals[$signal])) { + return; + } + + $index = \array_search($listener, $this->signals[$signal], true); + unset($this->signals[$signal][$index]); + + if (isset($this->signals[$signal]) && \count($this->signals[$signal]) === 0) { + unset($this->signals[$signal]); + } + } + + public function call($signal) + { + if (!isset($this->signals[$signal])) { + return; + } + + foreach ($this->signals[$signal] as $listener) { + \call_user_func($listener, $signal); + } + } + + public function count($signal) + { + if (!isset($this->signals[$signal])) { + return 0; + } + + return \count($this->signals[$signal]); + } + + public function isEmpty() + { + return !$this->signals; + } +} diff --git a/vendor/react/event-loop/src/StreamSelectLoop.php b/vendor/react/event-loop/src/StreamSelectLoop.php new file mode 100644 index 00000000..71983da0 --- /dev/null +++ b/vendor/react/event-loop/src/StreamSelectLoop.php @@ -0,0 +1,329 @@ +futureTickQueue = new FutureTickQueue(); + $this->timers = new Timers(); + $this->pcntl = \function_exists('pcntl_signal') && \function_exists('pcntl_signal_dispatch'); + $this->pcntlPoll = $this->pcntl && !\function_exists('pcntl_async_signals'); + $this->signals = new SignalsHandler(); + + // prefer async signals if available (PHP 7.1+) or fall back to dispatching on each tick + if ($this->pcntl && !$this->pcntlPoll) { + \pcntl_async_signals(true); + } + } + + public function addReadStream($stream, $listener) + { + $key = (int) $stream; + + if (!isset($this->readStreams[$key])) { + $this->readStreams[$key] = $stream; + $this->readListeners[$key] = $listener; + } + } + + public function addWriteStream($stream, $listener) + { + $key = (int) $stream; + + if (!isset($this->writeStreams[$key])) { + $this->writeStreams[$key] = $stream; + $this->writeListeners[$key] = $listener; + } + } + + public function removeReadStream($stream) + { + $key = (int) $stream; + + unset( + $this->readStreams[$key], + $this->readListeners[$key] + ); + } + + public function removeWriteStream($stream) + { + $key = (int) $stream; + + unset( + $this->writeStreams[$key], + $this->writeListeners[$key] + ); + } + + public function addTimer($interval, $callback) + { + $timer = new Timer($interval, $callback, false); + + $this->timers->add($timer); + + return $timer; + } + + public function addPeriodicTimer($interval, $callback) + { + $timer = new Timer($interval, $callback, true); + + $this->timers->add($timer); + + return $timer; + } + + public function cancelTimer(TimerInterface $timer) + { + $this->timers->cancel($timer); + } + + public function futureTick($listener) + { + $this->futureTickQueue->add($listener); + } + + public function addSignal($signal, $listener) + { + if ($this->pcntl === false) { + throw new \BadMethodCallException('Event loop feature "signals" isn\'t supported by the "StreamSelectLoop"'); + } + + $first = $this->signals->count($signal) === 0; + $this->signals->add($signal, $listener); + + if ($first) { + \pcntl_signal($signal, array($this->signals, 'call')); + } + } + + public function removeSignal($signal, $listener) + { + if (!$this->signals->count($signal)) { + return; + } + + $this->signals->remove($signal, $listener); + + if ($this->signals->count($signal) === 0) { + \pcntl_signal($signal, \SIG_DFL); + } + } + + public function run() + { + $this->running = true; + + while ($this->running) { + $this->futureTickQueue->tick(); + + $this->timers->tick(); + + // Future-tick queue has pending callbacks ... + if (!$this->running || !$this->futureTickQueue->isEmpty()) { + $timeout = 0; + + // There is a pending timer, only block until it is due ... + } elseif ($scheduledAt = $this->timers->getFirst()) { + $timeout = $scheduledAt - $this->timers->getTime(); + if ($timeout < 0) { + $timeout = 0; + } else { + // Convert float seconds to int microseconds. + // Ensure we do not exceed maximum integer size, which may + // cause the loop to tick once every ~35min on 32bit systems. + $timeout *= self::MICROSECONDS_PER_SECOND; + $timeout = $timeout > \PHP_INT_MAX ? \PHP_INT_MAX : (int)$timeout; + } + + // The only possible event is stream or signal activity, so wait forever ... + } elseif ($this->readStreams || $this->writeStreams || !$this->signals->isEmpty()) { + $timeout = null; + + // There's nothing left to do ... + } else { + break; + } + + $this->waitForStreamActivity($timeout); + } + } + + public function stop() + { + $this->running = false; + } + + /** + * Wait/check for stream activity, or until the next timer is due. + * + * @param integer|null $timeout Activity timeout in microseconds, or null to wait forever. + */ + private function waitForStreamActivity($timeout) + { + $read = $this->readStreams; + $write = $this->writeStreams; + + $available = $this->streamSelect($read, $write, $timeout); + if ($this->pcntlPoll) { + \pcntl_signal_dispatch(); + } + if (false === $available) { + // if a system call has been interrupted, + // we cannot rely on it's outcome + return; + } + + foreach ($read as $stream) { + $key = (int) $stream; + + if (isset($this->readListeners[$key])) { + \call_user_func($this->readListeners[$key], $stream); + } + } + + foreach ($write as $stream) { + $key = (int) $stream; + + if (isset($this->writeListeners[$key])) { + \call_user_func($this->writeListeners[$key], $stream); + } + } + } + + /** + * Emulate a stream_select() implementation that does not break when passed + * empty stream arrays. + * + * @param array $read An array of read streams to select upon. + * @param array $write An array of write streams to select upon. + * @param int|null $timeout Activity timeout in microseconds, or null to wait forever. + * + * @return int|false The total number of streams that are ready for read/write. + * Can return false if stream_select() is interrupted by a signal. + */ + private function streamSelect(array &$read, array &$write, $timeout) + { + if ($read || $write) { + // We do not usually use or expose the `exceptfds` parameter passed to the underlying `select`. + // However, Windows does not report failed connection attempts in `writefds` passed to `select` like most other platforms. + // Instead, it uses `writefds` only for successful connection attempts and `exceptfds` for failed connection attempts. + // We work around this by adding all sockets that look like a pending connection attempt to `exceptfds` automatically on Windows and merge it back later. + // This ensures the public API matches other loop implementations across all platforms (see also test suite or rather test matrix). + // Lacking better APIs, every write-only socket that has not yet read any data is assumed to be in a pending connection attempt state. + // @link https://docs.microsoft.com/de-de/windows/win32/api/winsock2/nf-winsock2-select + $except = null; + if (\DIRECTORY_SEPARATOR === '\\') { + $except = array(); + foreach ($write as $key => $socket) { + if (!isset($read[$key]) && @\ftell($socket) === 0) { + $except[$key] = $socket; + } + } + } + + /** @var ?callable $previous */ + $previous = \set_error_handler(function ($errno, $errstr) use (&$previous) { + // suppress warnings that occur when `stream_select()` is interrupted by a signal + $eintr = \defined('SOCKET_EINTR') ? \SOCKET_EINTR : 4; + if ($errno === \E_WARNING && \strpos($errstr, '[' . $eintr .']: ') !== false) { + return; + } + + // forward any other error to registered error handler or print warning + return ($previous !== null) ? \call_user_func_array($previous, \func_get_args()) : false; + }); + + try { + $ret = \stream_select($read, $write, $except, $timeout === null ? null : 0, $timeout); + \restore_error_handler(); + } catch (\Throwable $e) { // @codeCoverageIgnoreStart + \restore_error_handler(); + throw $e; + } catch (\Exception $e) { + \restore_error_handler(); + throw $e; + } // @codeCoverageIgnoreEnd + + if ($except) { + $write = \array_merge($write, $except); + } + return $ret; + } + + if ($timeout > 0) { + \usleep($timeout); + } elseif ($timeout === null) { + // wait forever (we only reach this if we're only awaiting signals) + // this may be interrupted and return earlier when a signal is received + \sleep(PHP_INT_MAX); + } + + return 0; + } +} diff --git a/vendor/react/event-loop/src/Tick/FutureTickQueue.php b/vendor/react/event-loop/src/Tick/FutureTickQueue.php new file mode 100644 index 00000000..efabcbc5 --- /dev/null +++ b/vendor/react/event-loop/src/Tick/FutureTickQueue.php @@ -0,0 +1,60 @@ +queue = new SplQueue(); + } + + /** + * Add a callback to be invoked on a future tick of the event loop. + * + * Callbacks are guaranteed to be executed in the order they are enqueued. + * + * @param callable $listener The callback to invoke. + */ + public function add($listener) + { + $this->queue->enqueue($listener); + } + + /** + * Flush the callback queue. + */ + public function tick() + { + // Only invoke as many callbacks as were on the queue when tick() was called. + $count = $this->queue->count(); + + while ($count--) { + \call_user_func( + $this->queue->dequeue() + ); + } + } + + /** + * Check if the next tick queue is empty. + * + * @return boolean + */ + public function isEmpty() + { + return $this->queue->isEmpty(); + } +} diff --git a/vendor/react/event-loop/src/Timer/Timer.php b/vendor/react/event-loop/src/Timer/Timer.php new file mode 100644 index 00000000..da3602a3 --- /dev/null +++ b/vendor/react/event-loop/src/Timer/Timer.php @@ -0,0 +1,55 @@ +interval = (float) $interval; + $this->callback = $callback; + $this->periodic = (bool) $periodic; + } + + public function getInterval() + { + return $this->interval; + } + + public function getCallback() + { + return $this->callback; + } + + public function isPeriodic() + { + return $this->periodic; + } +} diff --git a/vendor/react/event-loop/src/Timer/Timers.php b/vendor/react/event-loop/src/Timer/Timers.php new file mode 100644 index 00000000..3a33b8ce --- /dev/null +++ b/vendor/react/event-loop/src/Timer/Timers.php @@ -0,0 +1,112 @@ +useHighResolution = \function_exists('hrtime'); + } + + public function updateTime() + { + return $this->time = $this->useHighResolution ? \hrtime(true) * 1e-9 : \microtime(true); + } + + public function getTime() + { + return $this->time ?: $this->updateTime(); + } + + public function add(TimerInterface $timer) + { + $id = \spl_object_hash($timer); + $this->timers[$id] = $timer; + $this->schedule[$id] = $timer->getInterval() + $this->updateTime(); + $this->sorted = false; + } + + public function contains(TimerInterface $timer) + { + return isset($this->timers[\spl_object_hash($timer)]); + } + + public function cancel(TimerInterface $timer) + { + $id = \spl_object_hash($timer); + unset($this->timers[$id], $this->schedule[$id]); + } + + public function getFirst() + { + // ensure timers are sorted to simply accessing next (first) one + if (!$this->sorted) { + $this->sorted = true; + \asort($this->schedule); + } + + return \reset($this->schedule); + } + + public function isEmpty() + { + return \count($this->timers) === 0; + } + + public function tick() + { + // hot path: skip timers if nothing is scheduled + if (!$this->schedule) { + return; + } + + // ensure timers are sorted so we can execute in order + if (!$this->sorted) { + $this->sorted = true; + \asort($this->schedule); + } + + $time = $this->updateTime(); + + foreach ($this->schedule as $id => $scheduled) { + // schedule is ordered, so loop until first timer that is not scheduled for execution now + if ($scheduled >= $time) { + break; + } + + // skip any timers that are removed while we process the current schedule + if (!isset($this->schedule[$id]) || $this->schedule[$id] !== $scheduled) { + continue; + } + + $timer = $this->timers[$id]; + \call_user_func($timer->getCallback(), $timer); + + // re-schedule if this is a periodic timer and it has not been cancelled explicitly already + if ($timer->isPeriodic() && isset($this->timers[$id])) { + $this->schedule[$id] = $timer->getInterval() + $time; + $this->sorted = false; + } else { + unset($this->timers[$id], $this->schedule[$id]); + } + } + } +} diff --git a/vendor/react/event-loop/src/TimerInterface.php b/vendor/react/event-loop/src/TimerInterface.php new file mode 100644 index 00000000..cdcf7732 --- /dev/null +++ b/vendor/react/event-loop/src/TimerInterface.php @@ -0,0 +1,27 @@ +=5.4.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36" + }, + "autoload": { + "psr-4": { + "React\\Promise\\": "src/" + }, + "files": ["src/functions_include.php"] + }, + "autoload-dev": { + "psr-4": { + "React\\Promise\\": ["tests", "tests/fixtures"] + } + }, + "keywords": [ + "promise", + "promises" + ] +} diff --git a/vendor/react/promise/src/CancellablePromiseInterface.php b/vendor/react/promise/src/CancellablePromiseInterface.php new file mode 100644 index 00000000..6b3a8c65 --- /dev/null +++ b/vendor/react/promise/src/CancellablePromiseInterface.php @@ -0,0 +1,17 @@ +started) { + return; + } + + $this->started = true; + $this->drain(); + } + + public function enqueue($cancellable) + { + if (!\is_object($cancellable) || !\method_exists($cancellable, 'then') || !\method_exists($cancellable, 'cancel')) { + return; + } + + $length = \array_push($this->queue, $cancellable); + + if ($this->started && 1 === $length) { + $this->drain(); + } + } + + private function drain() + { + for ($i = key($this->queue); isset($this->queue[$i]); $i++) { + $cancellable = $this->queue[$i]; + + $exception = null; + + try { + $cancellable->cancel(); + } catch (\Throwable $exception) { + } catch (\Exception $exception) { + } + + unset($this->queue[$i]); + + if ($exception) { + throw $exception; + } + } + + $this->queue = []; + } +} diff --git a/vendor/react/promise/src/Deferred.php b/vendor/react/promise/src/Deferred.php new file mode 100644 index 00000000..3ca034b8 --- /dev/null +++ b/vendor/react/promise/src/Deferred.php @@ -0,0 +1,65 @@ +canceller = $canceller; + } + + public function promise() + { + if (null === $this->promise) { + $this->promise = new Promise(function ($resolve, $reject, $notify) { + $this->resolveCallback = $resolve; + $this->rejectCallback = $reject; + $this->notifyCallback = $notify; + }, $this->canceller); + $this->canceller = null; + } + + return $this->promise; + } + + public function resolve($value = null) + { + $this->promise(); + + \call_user_func($this->resolveCallback, $value); + } + + public function reject($reason = null) + { + $this->promise(); + + \call_user_func($this->rejectCallback, $reason); + } + + /** + * @deprecated 2.6.0 Progress support is deprecated and should not be used anymore. + * @param mixed $update + */ + public function notify($update = null) + { + $this->promise(); + + \call_user_func($this->notifyCallback, $update); + } + + /** + * @deprecated 2.2.0 + * @see Deferred::notify() + */ + public function progress($update = null) + { + $this->notify($update); + } +} diff --git a/vendor/react/promise/src/Exception/LengthException.php b/vendor/react/promise/src/Exception/LengthException.php new file mode 100644 index 00000000..775c48db --- /dev/null +++ b/vendor/react/promise/src/Exception/LengthException.php @@ -0,0 +1,7 @@ +then(null, $onRejected); + * ``` + * + * Additionally, you can type hint the `$reason` argument of `$onRejected` to catch + * only specific errors. + * + * @param callable $onRejected + * @return ExtendedPromiseInterface + */ + public function otherwise(callable $onRejected); + + /** + * Allows you to execute "cleanup" type tasks in a promise chain. + * + * It arranges for `$onFulfilledOrRejected` to be called, with no arguments, + * when the promise is either fulfilled or rejected. + * + * * If `$promise` fulfills, and `$onFulfilledOrRejected` returns successfully, + * `$newPromise` will fulfill with the same value as `$promise`. + * * If `$promise` fulfills, and `$onFulfilledOrRejected` throws or returns a + * rejected promise, `$newPromise` will reject with the thrown exception or + * rejected promise's reason. + * * If `$promise` rejects, and `$onFulfilledOrRejected` returns successfully, + * `$newPromise` will reject with the same reason as `$promise`. + * * If `$promise` rejects, and `$onFulfilledOrRejected` throws or returns a + * rejected promise, `$newPromise` will reject with the thrown exception or + * rejected promise's reason. + * + * `always()` behaves similarly to the synchronous finally statement. When combined + * with `otherwise()`, `always()` allows you to write code that is similar to the familiar + * synchronous catch/finally pair. + * + * Consider the following synchronous code: + * + * ```php + * try { + * return doSomething(); + * } catch(\Exception $e) { + * return handleError($e); + * } finally { + * cleanup(); + * } + * ``` + * + * Similar asynchronous code (with `doSomething()` that returns a promise) can be + * written: + * + * ```php + * return doSomething() + * ->otherwise('handleError') + * ->always('cleanup'); + * ``` + * + * @param callable $onFulfilledOrRejected + * @return ExtendedPromiseInterface + */ + public function always(callable $onFulfilledOrRejected); + + /** + * Registers a handler for progress updates from promise. It is a shortcut for: + * + * ```php + * $promise->then(null, null, $onProgress); + * ``` + * + * @param callable $onProgress + * @return ExtendedPromiseInterface + * @deprecated 2.6.0 Progress support is deprecated and should not be used anymore. + */ + public function progress(callable $onProgress); +} diff --git a/vendor/react/promise/src/FulfilledPromise.php b/vendor/react/promise/src/FulfilledPromise.php new file mode 100644 index 00000000..14727527 --- /dev/null +++ b/vendor/react/promise/src/FulfilledPromise.php @@ -0,0 +1,71 @@ +value = $value; + } + + public function then(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) + { + if (null === $onFulfilled) { + return $this; + } + + try { + return resolve($onFulfilled($this->value)); + } catch (\Throwable $exception) { + return new RejectedPromise($exception); + } catch (\Exception $exception) { + return new RejectedPromise($exception); + } + } + + public function done(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) + { + if (null === $onFulfilled) { + return; + } + + $result = $onFulfilled($this->value); + + if ($result instanceof ExtendedPromiseInterface) { + $result->done(); + } + } + + public function otherwise(callable $onRejected) + { + return $this; + } + + public function always(callable $onFulfilledOrRejected) + { + return $this->then(function ($value) use ($onFulfilledOrRejected) { + return resolve($onFulfilledOrRejected())->then(function () use ($value) { + return $value; + }); + }); + } + + public function progress(callable $onProgress) + { + return $this; + } + + public function cancel() + { + } +} diff --git a/vendor/react/promise/src/LazyPromise.php b/vendor/react/promise/src/LazyPromise.php new file mode 100644 index 00000000..bbe9293e --- /dev/null +++ b/vendor/react/promise/src/LazyPromise.php @@ -0,0 +1,66 @@ +factory = $factory; + } + + public function then(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) + { + return $this->promise()->then($onFulfilled, $onRejected, $onProgress); + } + + public function done(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) + { + return $this->promise()->done($onFulfilled, $onRejected, $onProgress); + } + + public function otherwise(callable $onRejected) + { + return $this->promise()->otherwise($onRejected); + } + + public function always(callable $onFulfilledOrRejected) + { + return $this->promise()->always($onFulfilledOrRejected); + } + + public function progress(callable $onProgress) + { + return $this->promise()->progress($onProgress); + } + + public function cancel() + { + return $this->promise()->cancel(); + } + + /** + * @internal + * @see Promise::settle() + */ + public function promise() + { + if (null === $this->promise) { + try { + $this->promise = resolve(\call_user_func($this->factory)); + } catch (\Throwable $exception) { + $this->promise = new RejectedPromise($exception); + } catch (\Exception $exception) { + $this->promise = new RejectedPromise($exception); + } + } + + return $this->promise; + } +} diff --git a/vendor/react/promise/src/Promise.php b/vendor/react/promise/src/Promise.php new file mode 100644 index 00000000..33759e6f --- /dev/null +++ b/vendor/react/promise/src/Promise.php @@ -0,0 +1,256 @@ +canceller = $canceller; + + // Explicitly overwrite arguments with null values before invoking + // resolver function. This ensure that these arguments do not show up + // in the stack trace in PHP 7+ only. + $cb = $resolver; + $resolver = $canceller = null; + $this->call($cb); + } + + public function then(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) + { + if (null !== $this->result) { + return $this->result->then($onFulfilled, $onRejected, $onProgress); + } + + if (null === $this->canceller) { + return new static($this->resolver($onFulfilled, $onRejected, $onProgress)); + } + + // This promise has a canceller, so we create a new child promise which + // has a canceller that invokes the parent canceller if all other + // followers are also cancelled. We keep a reference to this promise + // instance for the static canceller function and clear this to avoid + // keeping a cyclic reference between parent and follower. + $parent = $this; + ++$parent->requiredCancelRequests; + + return new static( + $this->resolver($onFulfilled, $onRejected, $onProgress), + static function () use (&$parent) { + if (++$parent->cancelRequests >= $parent->requiredCancelRequests) { + $parent->cancel(); + } + + $parent = null; + } + ); + } + + public function done(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) + { + if (null !== $this->result) { + return $this->result->done($onFulfilled, $onRejected, $onProgress); + } + + $this->handlers[] = static function (ExtendedPromiseInterface $promise) use ($onFulfilled, $onRejected) { + $promise + ->done($onFulfilled, $onRejected); + }; + + if ($onProgress) { + $this->progressHandlers[] = $onProgress; + } + } + + public function otherwise(callable $onRejected) + { + return $this->then(null, static function ($reason) use ($onRejected) { + if (!_checkTypehint($onRejected, $reason)) { + return new RejectedPromise($reason); + } + + return $onRejected($reason); + }); + } + + public function always(callable $onFulfilledOrRejected) + { + return $this->then(static function ($value) use ($onFulfilledOrRejected) { + return resolve($onFulfilledOrRejected())->then(function () use ($value) { + return $value; + }); + }, static function ($reason) use ($onFulfilledOrRejected) { + return resolve($onFulfilledOrRejected())->then(function () use ($reason) { + return new RejectedPromise($reason); + }); + }); + } + + public function progress(callable $onProgress) + { + return $this->then(null, null, $onProgress); + } + + public function cancel() + { + if (null === $this->canceller || null !== $this->result) { + return; + } + + $canceller = $this->canceller; + $this->canceller = null; + + $this->call($canceller); + } + + private function resolver(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) + { + return function ($resolve, $reject, $notify) use ($onFulfilled, $onRejected, $onProgress) { + if ($onProgress) { + $progressHandler = static function ($update) use ($notify, $onProgress) { + try { + $notify($onProgress($update)); + } catch (\Throwable $e) { + $notify($e); + } catch (\Exception $e) { + $notify($e); + } + }; + } else { + $progressHandler = $notify; + } + + $this->handlers[] = static function (ExtendedPromiseInterface $promise) use ($onFulfilled, $onRejected, $resolve, $reject, $progressHandler) { + $promise + ->then($onFulfilled, $onRejected) + ->done($resolve, $reject, $progressHandler); + }; + + $this->progressHandlers[] = $progressHandler; + }; + } + + private function reject($reason = null) + { + if (null !== $this->result) { + return; + } + + $this->settle(reject($reason)); + } + + private function settle(ExtendedPromiseInterface $promise) + { + $promise = $this->unwrap($promise); + + if ($promise === $this) { + $promise = new RejectedPromise( + new \LogicException('Cannot resolve a promise with itself.') + ); + } + + $handlers = $this->handlers; + + $this->progressHandlers = $this->handlers = []; + $this->result = $promise; + $this->canceller = null; + + foreach ($handlers as $handler) { + $handler($promise); + } + } + + private function unwrap($promise) + { + $promise = $this->extract($promise); + + while ($promise instanceof self && null !== $promise->result) { + $promise = $this->extract($promise->result); + } + + return $promise; + } + + private function extract($promise) + { + if ($promise instanceof LazyPromise) { + $promise = $promise->promise(); + } + + return $promise; + } + + private function call(callable $cb) + { + // Explicitly overwrite argument with null value. This ensure that this + // argument does not show up in the stack trace in PHP 7+ only. + $callback = $cb; + $cb = null; + + // Use reflection to inspect number of arguments expected by this callback. + // We did some careful benchmarking here: Using reflection to avoid unneeded + // function arguments is actually faster than blindly passing them. + // Also, this helps avoiding unnecessary function arguments in the call stack + // if the callback creates an Exception (creating garbage cycles). + if (\is_array($callback)) { + $ref = new \ReflectionMethod($callback[0], $callback[1]); + } elseif (\is_object($callback) && !$callback instanceof \Closure) { + $ref = new \ReflectionMethod($callback, '__invoke'); + } else { + $ref = new \ReflectionFunction($callback); + } + $args = $ref->getNumberOfParameters(); + + try { + if ($args === 0) { + $callback(); + } else { + // Keep references to this promise instance for the static resolve/reject functions. + // By using static callbacks that are not bound to this instance + // and passing the target promise instance by reference, we can + // still execute its resolving logic and still clear this + // reference when settling the promise. This helps avoiding + // garbage cycles if any callback creates an Exception. + // These assumptions are covered by the test suite, so if you ever feel like + // refactoring this, go ahead, any alternative suggestions are welcome! + $target =& $this; + $progressHandlers =& $this->progressHandlers; + + $callback( + static function ($value = null) use (&$target) { + if ($target !== null) { + $target->settle(resolve($value)); + $target = null; + } + }, + static function ($reason = null) use (&$target) { + if ($target !== null) { + $target->reject($reason); + $target = null; + } + }, + static function ($update = null) use (&$progressHandlers) { + foreach ($progressHandlers as $handler) { + $handler($update); + } + } + ); + } + } catch (\Throwable $e) { + $target = null; + $this->reject($e); + } catch (\Exception $e) { + $target = null; + $this->reject($e); + } + } +} diff --git a/vendor/react/promise/src/PromiseInterface.php b/vendor/react/promise/src/PromiseInterface.php new file mode 100644 index 00000000..edcb0077 --- /dev/null +++ b/vendor/react/promise/src/PromiseInterface.php @@ -0,0 +1,41 @@ +reason = $reason; + } + + public function then(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) + { + if (null === $onRejected) { + return $this; + } + + try { + return resolve($onRejected($this->reason)); + } catch (\Throwable $exception) { + return new RejectedPromise($exception); + } catch (\Exception $exception) { + return new RejectedPromise($exception); + } + } + + public function done(callable $onFulfilled = null, callable $onRejected = null, callable $onProgress = null) + { + if (null === $onRejected) { + throw UnhandledRejectionException::resolve($this->reason); + } + + $result = $onRejected($this->reason); + + if ($result instanceof self) { + throw UnhandledRejectionException::resolve($result->reason); + } + + if ($result instanceof ExtendedPromiseInterface) { + $result->done(); + } + } + + public function otherwise(callable $onRejected) + { + if (!_checkTypehint($onRejected, $this->reason)) { + return $this; + } + + return $this->then(null, $onRejected); + } + + public function always(callable $onFulfilledOrRejected) + { + return $this->then(null, function ($reason) use ($onFulfilledOrRejected) { + return resolve($onFulfilledOrRejected())->then(function () use ($reason) { + return new RejectedPromise($reason); + }); + }); + } + + public function progress(callable $onProgress) + { + return $this; + } + + public function cancel() + { + } +} diff --git a/vendor/react/promise/src/UnhandledRejectionException.php b/vendor/react/promise/src/UnhandledRejectionException.php new file mode 100644 index 00000000..e7fe2f7a --- /dev/null +++ b/vendor/react/promise/src/UnhandledRejectionException.php @@ -0,0 +1,31 @@ +reason = $reason; + + $message = \sprintf('Unhandled Rejection: %s', \json_encode($reason)); + + parent::__construct($message, 0); + } + + public function getReason() + { + return $this->reason; + } +} diff --git a/vendor/react/promise/src/functions.php b/vendor/react/promise/src/functions.php new file mode 100644 index 00000000..429f0e73 --- /dev/null +++ b/vendor/react/promise/src/functions.php @@ -0,0 +1,407 @@ +then($resolve, $reject, $notify); + }, $canceller); + } + + return new FulfilledPromise($promiseOrValue); +} + +/** + * Creates a rejected promise for the supplied `$promiseOrValue`. + * + * If `$promiseOrValue` is a value, it will be the rejection value of the + * returned promise. + * + * If `$promiseOrValue` is a promise, its completion value will be the rejected + * value of the returned promise. + * + * This can be useful in situations where you need to reject a promise without + * throwing an exception. For example, it allows you to propagate a rejection with + * the value of another promise. + * + * @param mixed $promiseOrValue + * @return PromiseInterface + */ +function reject($promiseOrValue = null) +{ + if ($promiseOrValue instanceof PromiseInterface) { + return resolve($promiseOrValue)->then(function ($value) { + return new RejectedPromise($value); + }); + } + + return new RejectedPromise($promiseOrValue); +} + +/** + * Returns a promise that will resolve only once all the items in + * `$promisesOrValues` have resolved. The resolution value of the returned promise + * will be an array containing the resolution values of each of the items in + * `$promisesOrValues`. + * + * @param array $promisesOrValues + * @return PromiseInterface + */ +function all($promisesOrValues) +{ + return map($promisesOrValues, function ($val) { + return $val; + }); +} + +/** + * Initiates a competitive race that allows one winner. Returns a promise which is + * resolved in the same way the first settled promise resolves. + * + * The returned promise will become **infinitely pending** if `$promisesOrValues` + * contains 0 items. + * + * @param array $promisesOrValues + * @return PromiseInterface + */ +function race($promisesOrValues) +{ + $cancellationQueue = new CancellationQueue(); + $cancellationQueue->enqueue($promisesOrValues); + + return new Promise(function ($resolve, $reject, $notify) use ($promisesOrValues, $cancellationQueue) { + resolve($promisesOrValues) + ->done(function ($array) use ($cancellationQueue, $resolve, $reject, $notify) { + if (!is_array($array) || !$array) { + $resolve(); + return; + } + + foreach ($array as $promiseOrValue) { + $cancellationQueue->enqueue($promiseOrValue); + + resolve($promiseOrValue) + ->done($resolve, $reject, $notify); + } + }, $reject, $notify); + }, $cancellationQueue); +} + +/** + * Returns a promise that will resolve when any one of the items in + * `$promisesOrValues` resolves. The resolution value of the returned promise + * will be the resolution value of the triggering item. + * + * The returned promise will only reject if *all* items in `$promisesOrValues` are + * rejected. The rejection value will be an array of all rejection reasons. + * + * The returned promise will also reject with a `React\Promise\Exception\LengthException` + * if `$promisesOrValues` contains 0 items. + * + * @param array $promisesOrValues + * @return PromiseInterface + */ +function any($promisesOrValues) +{ + return some($promisesOrValues, 1) + ->then(function ($val) { + return \array_shift($val); + }); +} + +/** + * Returns a promise that will resolve when `$howMany` of the supplied items in + * `$promisesOrValues` resolve. The resolution value of the returned promise + * will be an array of length `$howMany` containing the resolution values of the + * triggering items. + * + * The returned promise will reject if it becomes impossible for `$howMany` items + * to resolve (that is, when `(count($promisesOrValues) - $howMany) + 1` items + * reject). The rejection value will be an array of + * `(count($promisesOrValues) - $howMany) + 1` rejection reasons. + * + * The returned promise will also reject with a `React\Promise\Exception\LengthException` + * if `$promisesOrValues` contains less items than `$howMany`. + * + * @param array $promisesOrValues + * @param int $howMany + * @return PromiseInterface + */ +function some($promisesOrValues, $howMany) +{ + $cancellationQueue = new CancellationQueue(); + $cancellationQueue->enqueue($promisesOrValues); + + return new Promise(function ($resolve, $reject, $notify) use ($promisesOrValues, $howMany, $cancellationQueue) { + resolve($promisesOrValues) + ->done(function ($array) use ($howMany, $cancellationQueue, $resolve, $reject, $notify) { + if (!\is_array($array) || $howMany < 1) { + $resolve([]); + return; + } + + $len = \count($array); + + if ($len < $howMany) { + throw new Exception\LengthException( + \sprintf( + 'Input array must contain at least %d item%s but contains only %s item%s.', + $howMany, + 1 === $howMany ? '' : 's', + $len, + 1 === $len ? '' : 's' + ) + ); + } + + $toResolve = $howMany; + $toReject = ($len - $toResolve) + 1; + $values = []; + $reasons = []; + + foreach ($array as $i => $promiseOrValue) { + $fulfiller = function ($val) use ($i, &$values, &$toResolve, $toReject, $resolve) { + if ($toResolve < 1 || $toReject < 1) { + return; + } + + $values[$i] = $val; + + if (0 === --$toResolve) { + $resolve($values); + } + }; + + $rejecter = function ($reason) use ($i, &$reasons, &$toReject, $toResolve, $reject) { + if ($toResolve < 1 || $toReject < 1) { + return; + } + + $reasons[$i] = $reason; + + if (0 === --$toReject) { + $reject($reasons); + } + }; + + $cancellationQueue->enqueue($promiseOrValue); + + resolve($promiseOrValue) + ->done($fulfiller, $rejecter, $notify); + } + }, $reject, $notify); + }, $cancellationQueue); +} + +/** + * Traditional map function, similar to `array_map()`, but allows input to contain + * promises and/or values, and `$mapFunc` may return either a value or a promise. + * + * The map function receives each item as argument, where item is a fully resolved + * value of a promise or value in `$promisesOrValues`. + * + * @param array $promisesOrValues + * @param callable $mapFunc + * @return PromiseInterface + */ +function map($promisesOrValues, callable $mapFunc) +{ + $cancellationQueue = new CancellationQueue(); + $cancellationQueue->enqueue($promisesOrValues); + + return new Promise(function ($resolve, $reject, $notify) use ($promisesOrValues, $mapFunc, $cancellationQueue) { + resolve($promisesOrValues) + ->done(function ($array) use ($mapFunc, $cancellationQueue, $resolve, $reject, $notify) { + if (!\is_array($array) || !$array) { + $resolve([]); + return; + } + + $toResolve = \count($array); + $values = []; + + foreach ($array as $i => $promiseOrValue) { + $cancellationQueue->enqueue($promiseOrValue); + $values[$i] = null; + + resolve($promiseOrValue) + ->then($mapFunc) + ->done( + function ($mapped) use ($i, &$values, &$toResolve, $resolve) { + $values[$i] = $mapped; + + if (0 === --$toResolve) { + $resolve($values); + } + }, + $reject, + $notify + ); + } + }, $reject, $notify); + }, $cancellationQueue); +} + +/** + * Traditional reduce function, similar to `array_reduce()`, but input may contain + * promises and/or values, and `$reduceFunc` may return either a value or a + * promise, *and* `$initialValue` may be a promise or a value for the starting + * value. + * + * @param array $promisesOrValues + * @param callable $reduceFunc + * @param mixed $initialValue + * @return PromiseInterface + */ +function reduce($promisesOrValues, callable $reduceFunc, $initialValue = null) +{ + $cancellationQueue = new CancellationQueue(); + $cancellationQueue->enqueue($promisesOrValues); + + return new Promise(function ($resolve, $reject, $notify) use ($promisesOrValues, $reduceFunc, $initialValue, $cancellationQueue) { + resolve($promisesOrValues) + ->done(function ($array) use ($reduceFunc, $initialValue, $cancellationQueue, $resolve, $reject, $notify) { + if (!\is_array($array)) { + $array = []; + } + + $total = \count($array); + $i = 0; + + // Wrap the supplied $reduceFunc with one that handles promises and then + // delegates to the supplied. + $wrappedReduceFunc = function ($current, $val) use ($reduceFunc, $cancellationQueue, $total, &$i) { + $cancellationQueue->enqueue($val); + + return $current + ->then(function ($c) use ($reduceFunc, $total, &$i, $val) { + return resolve($val) + ->then(function ($value) use ($reduceFunc, $total, &$i, $c) { + return $reduceFunc($c, $value, $i++, $total); + }); + }); + }; + + $cancellationQueue->enqueue($initialValue); + + \array_reduce($array, $wrappedReduceFunc, resolve($initialValue)) + ->done($resolve, $reject, $notify); + }, $reject, $notify); + }, $cancellationQueue); +} + +/** + * @internal + */ +function _checkTypehint(callable $callback, $object) +{ + if (!\is_object($object)) { + return true; + } + + if (\is_array($callback)) { + $callbackReflection = new \ReflectionMethod($callback[0], $callback[1]); + } elseif (\is_object($callback) && !$callback instanceof \Closure) { + $callbackReflection = new \ReflectionMethod($callback, '__invoke'); + } else { + $callbackReflection = new \ReflectionFunction($callback); + } + + $parameters = $callbackReflection->getParameters(); + + if (!isset($parameters[0])) { + return true; + } + + $expectedException = $parameters[0]; + + // PHP before v8 used an easy API: + if (\PHP_VERSION_ID < 70100 || \defined('HHVM_VERSION')) { + if (!$expectedException->getClass()) { + return true; + } + + return $expectedException->getClass()->isInstance($object); + } + + // Extract the type of the argument and handle different possibilities + $type = $expectedException->getType(); + + $isTypeUnion = true; + $types = []; + + switch (true) { + case $type === null: + break; + case $type instanceof \ReflectionNamedType: + $types = [$type]; + break; + case $type instanceof \ReflectionIntersectionType: + $isTypeUnion = false; + case $type instanceof \ReflectionUnionType; + $types = $type->getTypes(); + break; + default: + throw new \LogicException('Unexpected return value of ReflectionParameter::getType'); + } + + // If there is no type restriction, it matches + if (empty($types)) { + return true; + } + + foreach ($types as $type) { + if (!$type instanceof \ReflectionNamedType) { + throw new \LogicException('This implementation does not support groups of intersection or union types'); + } + + // A named-type can be either a class-name or a built-in type like string, int, array, etc. + $matches = ($type->isBuiltin() && \gettype($object) === $type->getName()) + || (new \ReflectionClass($type->getName()))->isInstance($object); + + + // If we look for a single match (union), we can return early on match + // If we look for a full match (intersection), we can return early on mismatch + if ($matches) { + if ($isTypeUnion) { + return true; + } + } else { + if (!$isTypeUnion) { + return false; + } + } + } + + // If we look for a single match (union) and did not return early, we matched no type and are false + // If we look for a full match (intersection) and did not return early, we matched all types and are true + return $isTypeUnion ? false : true; +} diff --git a/vendor/react/promise/src/functions_include.php b/vendor/react/promise/src/functions_include.php new file mode 100644 index 00000000..bd0c54fd --- /dev/null +++ b/vendor/react/promise/src/functions_include.php @@ -0,0 +1,5 @@ + and Lars Schöning + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. Neither the name of The author nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE AUTHOR AND CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/vendor/simshaun/recurr/composer.json b/vendor/simshaun/recurr/composer.json new file mode 100644 index 00000000..b9b009fd --- /dev/null +++ b/vendor/simshaun/recurr/composer.json @@ -0,0 +1,41 @@ +{ + "name": "simshaun/recurr", + "description": "PHP library for working with recurrence rules", + "keywords": ["rrule", "recurrence", "recurring", "events", "dates"], + "homepage": "https://github.com/simshaun/recurr", + "type": "library", + "license": "MIT", + "authors": [ + { + "name": "Shaun Simmons", + "email": "shaun@shaun.pub", + "homepage": "https://shaun.pub" + } + ], + "require": { + "php": "^7.2||^8.0", + "doctrine/collections": "~1.6" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.16", + "symfony/yaml": "^5.3" + }, + "autoload": { + "psr-4": { + "Recurr\\": "src/Recurr/" + } + }, + "autoload-dev": { + "psr-4": { + "Recurr\\Test\\": "tests/Recurr/Test" + } + }, + "extra": { + "branch-alias": { + "dev-master": "0.x-dev" + } + }, + "scripts": { + "test": "./vendor/bin/phpunit --color=always" + } +} diff --git a/vendor/simshaun/recurr/src/Recurr/DateExclusion.php b/vendor/simshaun/recurr/src/Recurr/DateExclusion.php new file mode 100644 index 00000000..6ecb6ecf --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/DateExclusion.php @@ -0,0 +1,48 @@ + + */ +class DateExclusion +{ + /** @var \DateTimeInterface */ + public $date; + + /** @var bool Day of year */ + public $hasTime; + + /** @var bool */ + public $isUtcExplicit; + + /** + * Constructor + * + * @param \DateTimeInterface $date + * @param bool $hasTime + * @param bool $isUtcExplicit + */ + public function __construct(\DateTimeInterface $date, $hasTime = true, $isUtcExplicit = false) + { + $this->date = $date; + $this->hasTime = $hasTime; + $this->isUtcExplicit = $isUtcExplicit; + } +} diff --git a/vendor/simshaun/recurr/src/Recurr/DateInclusion.php b/vendor/simshaun/recurr/src/Recurr/DateInclusion.php new file mode 100644 index 00000000..0ee6e84c --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/DateInclusion.php @@ -0,0 +1,48 @@ + + */ +class DateInclusion +{ + /** @var \DateTimeInterface */ + public $date; + + /** @var bool Day of year */ + public $hasTime; + + /** @var bool */ + public $isUtcExplicit; + + /** + * Constructor + * + * @param \DateTimeInterface $date + * @param bool $hasTime + * @param bool $isUtcExplicit + */ + public function __construct(\DateTimeInterface $date, $hasTime = true, $isUtcExplicit = false) + { + $this->date = $date; + $this->hasTime = $hasTime; + $this->isUtcExplicit = $isUtcExplicit; + } +} diff --git a/vendor/simshaun/recurr/src/Recurr/DateInfo.php b/vendor/simshaun/recurr/src/Recurr/DateInfo.php new file mode 100644 index 00000000..453734da --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/DateInfo.php @@ -0,0 +1,73 @@ + + */ +class DateInfo +{ + /** @var \DateTime */ + public $dt; + + /** + * @var int Number of days in the month. + */ + public $monthLength; + + /** + * @var int Number of days in the year (365 normally, 366 on leap years) + */ + public $yearLength; + + /** + * @var int Number of days in the next year (365 normally, 366 on leap years) + */ + public $nextYearLength; + + /** + * @var array Day of year of last day of each month. + */ + public $mRanges; + + /** @var int Day of week */ + public $dayOfWeek; + + /** @var int Day of week of the year's first day */ + public $dayOfWeekYearDay1; + + /** + * @var array Month number for each day of the year. + */ + public $mMask; + + /** + * @var array Month-daynumber for each day of the year. + */ + public $mDayMask; + + /** + * @var array Month-daynumber for each day of the year (in reverse). + */ + public $mDayMaskNeg; + + /** + * @var array Day of week (0-6) for each day of the year, 0 being Monday + */ + public $wDayMask; +} diff --git a/vendor/simshaun/recurr/src/Recurr/DateUtil.php b/vendor/simshaun/recurr/src/Recurr/DateUtil.php new file mode 100644 index 00000000..48a4e874 --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/DateUtil.php @@ -0,0 +1,571 @@ + + * Copyright (c) 2012 - Tomi Pieviläinen + */ + +namespace Recurr; + +/** + * Class DateUtil is responsible for providing utilities applicable to Rules. + * + * @package Recurr + * @author Shaun Simmons + */ +class DateUtil +{ + public static $leapBug = null; + + public static $monthEndDoY366 = array( + 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 + ); + + public static $monthEndDoY365 = array( + 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 + ); + + public static $wDayMask = array( + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, 0, 1, 2, 3, 4, 5, 6, + 0, 1, 2, 3, 4, 5, 6, + ); + + /** + * Get an object containing info for a particular date + * + * @param \DateTimeInterface $dt + * + * @return DateInfo + */ + public static function getDateInfo(\DateTimeInterface $dt) + { + $i = new DateInfo(); + $i->dt = $dt; + $i->dayOfWeek = self::getDayOfWeek($dt); + $i->monthLength = $dt->format('t'); + $i->yearLength = self::getYearLength($dt); + + $i->mMask = self::getMonthMask($dt); + $i->mDayMask = self::getMonthDaysMask($dt); + $i->mDayMaskNeg = self::getMonthDaysMask($dt, true); + + if ($i->yearLength == 365) { + $i->mRanges = self::$monthEndDoY365; + } else { + $i->mRanges = self::$monthEndDoY366; + } + + $tmpDt = clone $dt; + $tmpDt = $tmpDt->setDate($dt->format('Y') + 1, 1, 1); + $i->nextYearLength = self::getYearLength($tmpDt); + + $tmpDt = clone $dt; + $tmpDt = $tmpDt->setDate($dt->format('Y'), 1, 1); + $i->dayOfWeekYearDay1 = self::getDayOfWeek($tmpDt); + + $i->wDayMask = array_slice( + self::$wDayMask, + $i->dayOfWeekYearDay1 + ); + + return $i; + } + + /** + * Get an array of DOY (Day of Year) for each day in a particular week. + * + * @param \DateTimeInterface $dt + * @param \DateTimeInterface $start + * @param null|Rule $rule + * @param null|DateInfo $dtInfo + * + * @return DaySet + */ + public static function getDaySetOfWeek( + \DateTimeInterface $dt, + \DateTimeInterface $start, + Rule $rule = null, + DateInfo $dtInfo = null + ) + { + $start = clone $dt; + $start = $start->setDate($start->format('Y'), 1, 1); + + $diff = $dt->diff($start); + $start = $diff->days; + + $set = array(); + for ($i = $start, $k = 0; $k < 7; $k++) { + $set[] = $i; + ++$i; + + if (null !== $dtInfo && null !== $rule && $dtInfo->wDayMask[$i] == $rule->getWeekStartAsNum()) { + break; + } + } + + $obj = new DaySet($set, $start, $i); + + return $obj; + } + + /** + * @param Rule $rule + * @param \DateTimeInterface $dt + * @param DateInfo $dtInfo + * @param \DateTimeInterface $start + * + * @return DaySet + */ + public static function getDaySet(Rule $rule, \DateTimeInterface $dt, DateInfo $dtInfo, $start) + { + switch ($rule->getFreq()) { + case Frequency::SECONDLY: + return self::getDaySetOfDay($dt, $start, $rule, $dtInfo); + break; + case Frequency::MINUTELY: + return self::getDaySetOfDay($dt, $start, $rule, $dtInfo); + break; + case Frequency::HOURLY: + return self::getDaySetOfDay($dt, $start, $rule, $dtInfo); + break; + case Frequency::DAILY: + return self::getDaySetOfDay($dt, $start, $rule, $dtInfo); + break; + case Frequency::WEEKLY: + return self::getDaySetOfWeek($dt, $start, $rule, $dtInfo); + case Frequency::MONTHLY: + return self::getDaySetOfMonth($dt, $start, $rule, $dtInfo); + case Frequency::YEARLY: + return self::getDaySetOfYear($dt, $start, $rule, $dtInfo); + } + + throw new \RuntimeException('Invalid freq.'); + } + + /** + * Get an array of DOY (Day of Year) for each day in a particular year. + * + * @param \DateTimeInterface $dt The datetime + * + * @return DaySet + */ + public static function getDaySetOfYear(\DateTimeInterface $dt) + { + $yearLen = self::getYearLength($dt); + $set = range(0, $yearLen - 1); + + return new DaySet($set, 0, $yearLen); + } + + /** + * Get an array of DOY (Day of Year) for each day in a particular month. + * + * @param \DateTimeInterface $dt The datetime + * + * @return DaySet + */ + public static function getDaySetOfMonth(\DateTimeInterface $dt) + { + $dateInfo = self::getDateInfo($dt); + $monthNum = $dt->format('n'); + + $start = $dateInfo->mRanges[$monthNum - 1]; + $end = $dateInfo->mRanges[$monthNum]; + + $days = range(0, $dt->format('t') - 1); + $set = range($start, $end - 1); + $set = array_combine($days, $set); + $obj = new DaySet($set, $start, $end - 1); + + return $obj; + } + + /** + * Get an array of DOY (Day of Year) for each day in a particular month. + * + * @param \DateTimeInterface $dt The datetime + * + * @return DaySet + */ + public static function getDaySetOfDay(\DateTimeInterface $dt) + { + $dayOfYear = $dt->format('z'); + + if (self::isLeapYearDate($dt) && self::hasLeapYearBug() && $dt->format('nj') > 229) { + $dayOfYear -= 1; + } + + $start = $dayOfYear; + $end = $dayOfYear; + + $set = range($start, $end); + $obj = new DaySet($set, $start, $end + 1); + + return $obj; + } + + /** + * @param Rule $rule + * @param \DateTimeInterface $dt + * + * @return array + */ + public static function getTimeSetOfHour(Rule $rule, \DateTimeInterface $dt) + { + $set = array(); + + $hour = $dt->format('G'); + $byMinute = $rule->getByMinute(); + $bySecond = $rule->getBySecond(); + + if (empty($byMinute)) { + $byMinute = array($dt->format('i')); + } + + if (empty($bySecond)) { + $bySecond = array($dt->format('s')); + } + + foreach ($byMinute as $minute) { + foreach ($bySecond as $second) { + $set[] = new Time($hour, $minute, $second); + } + } + + return $set; + } + + /** + * @param Rule $rule + * @param \DateTimeInterface $dt + * + * @return array + */ + public static function getTimeSetOfMinute(Rule $rule, \DateTimeInterface $dt) + { + $set = array(); + + $hour = $dt->format('G'); + $minute = $dt->format('i'); + $bySecond = $rule->getBySecond(); + + if (empty($bySecond)) { + $bySecond = array($dt->format('s')); + } + + foreach ($bySecond as $second) { + $set[] = new Time($hour, $minute, $second); + } + + return $set; + } + + /** + * @param \DateTimeInterface $dt + * + * @return array + */ + public static function getTimeSetOfSecond(\DateTimeInterface $dt) + { + return array(new Time($dt->format('G'), $dt->format('i'), $dt->format('s'))); + } + + /** + * @param Rule $rule + * @param \DateTimeInterface $dt + * + * @return array + */ + public static function getTimeSet(Rule $rule, \DateTimeInterface $dt) + { + $set = array(); + + if (null === $rule || $rule->getFreq() >= Frequency::HOURLY) { + return $set; + } + + $byHour = $rule->getByHour(); + $byMinute = $rule->getByMinute(); + $bySecond = $rule->getBySecond(); + + if (empty($byHour)) { + $byHour = array($dt->format('G')); + } + + if (empty($byMinute)) { + $byMinute = array($dt->format('i')); + } + + if (empty($bySecond)) { + $bySecond = array($dt->format('s')); + } + + foreach ($byHour as $hour) { + foreach ($byMinute as $minute) { + foreach ($bySecond as $second) { + $set[] = new Time($hour, $minute, $second); + } + } + } + + return $set; + } + + /** + * Get a reference array with the day number for each day of each month. + * + * @param \DateTimeInterface $dt The datetime + * @param bool $negative + * + * @return array + */ + public static function getMonthDaysMask(\DateTimeInterface $dt, $negative = false) + { + if ($negative) { + $m29 = range(-29, -1); + $m30 = range(-30, -1); + $m31 = range(-31, -1); + } else { + $m29 = range(1, 29); + $m30 = range(1, 30); + $m31 = range(1, 31); + } + + $mask = array_merge( + $m31, // Jan (31) + $m29, // Feb (28) + $m31, // Mar (31) + $m30, // Apr (30) + $m31, // May (31) + $m30, // Jun (30) + $m31, // Jul (31) + $m31, // Aug (31) + $m30, // Sep (30) + $m31, // Oct (31) + $m30, // Nov (30) + $m31, // Dec (31) + array_slice( + $m31, + 0, + 7 + ) + ); + + if (self::isLeapYearDate($dt)) { + return $mask; + } else { + if ($negative) { + $mask = array_merge(array_slice($mask, 0, 31), array_slice($mask, 32)); + } else { + $mask = array_merge(array_slice($mask, 0, 59), array_slice($mask, 60)); + } + + return $mask; + } + } + + public static function getMonthMask(\DateTimeInterface $dt) + { + if (self::isLeapYearDate($dt)) { + return array_merge( + array_fill(0, 31, 1), // Jan (31) + array_fill(0, 29, 2), // Feb (29) + array_fill(0, 31, 3), // Mar (31) + array_fill(0, 30, 4), // Apr (30) + array_fill(0, 31, 5), // May (31) + array_fill(0, 30, 6), // Jun (30) + array_fill(0, 31, 7), // Jul (31) + array_fill(0, 31, 8), // Aug (31) + array_fill(0, 30, 9), // Sep (30) + array_fill(0, 31, 10), // Oct (31) + array_fill(0, 30, 11), // Nov (30) + array_fill(0, 31, 12), // Dec (31) + array_fill(0, 7, 1) + ); + } else { + return array_merge( + array_fill(0, 31, 1), // Jan (31) + array_fill(0, 28, 2), // Feb (28) + array_fill(0, 31, 3), // Mar (31) + array_fill(0, 30, 4), // Apr (30) + array_fill(0, 31, 5), // May (31) + array_fill(0, 30, 6), // Jun (30) + array_fill(0, 31, 7), // Jul (31) + array_fill(0, 31, 8), // Aug (31) + array_fill(0, 30, 9), // Sep (30) + array_fill(0, 31, 10), // Oct (31) + array_fill(0, 30, 11), // Nov (30) + array_fill(0, 31, 12), // Dec (31) + array_fill(0, 7, 1) + ); + } + } + + public static function getDateTimeByDayOfYear($dayOfYear, $year, \DateTimeZone $timezone) + { + $dtTmp = new \DateTime('now', $timezone); + $dtTmp = $dtTmp->setDate($year, 1, 1); + $dtTmp = $dtTmp->modify("+$dayOfYear day"); + + return $dtTmp; + } + + public static function hasLeapYearBug() + { + $leapBugTest = \DateTime::createFromFormat('Y-m-d', '2016-03-21'); + return $leapBugTest->format('z') != '80'; + } + + /** + * closure/goog/math/math.js:modulo + * Copyright 2006 The Closure Library Authors. + * + * The % operator in PHP returns the remainder of a / b, but differs from + * some other languages in that the result will have the same sign as the + * dividend. For example, -1 % 8 == -1, whereas in some other languages + * (such as Python) the result would be 7. This function emulates the more + * correct modulo behavior, which is useful for certain applications such as + * calculating an offset index in a circular list. + * + * @param int $a The dividend. + * @param int $b The divisor. + * + * @return int $a % $b where the result is between 0 and $b + * (either 0 <= x < $b + * or $b < x <= 0, depending on the sign of $b). + */ + public static function pymod($a, $b) + { + $x = $a % $b; + + // If $x and $b differ in sign, add $b to wrap the result to the correct sign. + return ($x * $b < 0) ? $x + $b : $x; + } + + /** + * Alias method to determine if a date falls within a leap year. + * + * @param \DateTimeInterface $dt + * + * @return bool + */ + public static function isLeapYearDate(\DateTimeInterface $dt) + { + return $dt->format('L') ? true : false; + } + + /** + * Alias method to determine if a year is a leap year. + * + * @param int $year + * + * @return bool + */ + public static function isLeapYear($year) + { + $isDivisBy4 = $year % 4 == 0 ? true : false; + $isDivisBy100 = $year % 100 == 0? true : false; + $isDivisBy400 = $year % 400 == 0 ? true : false; + + // http://en.wikipedia.org/wiki/February_29 + if ($isDivisBy100 && !$isDivisBy400) { + return false; + } + + return $isDivisBy4; + } + + /** + * Method to determine the day of the week from MO-SU. + * + * MO = Monday + * TU = Tuesday + * WE = Wednesday + * TH = Thursday + * FR = Friday + * SA = Saturday + * SU = Sunday + * + * @param \DateTimeInterface $dt + * + * @return string + */ + public static function getDayOfWeekAsText(\DateTimeInterface $dt) + { + $dayOfWeek = $dt->format('w') - 1; + + if ($dayOfWeek < 0) { + $dayOfWeek = 6; + } + + $map = array('MO', 'TU', 'WE', 'TH', 'FR', 'SA', 'SU'); + + return $map[$dayOfWeek]; + } + + /** + * Alias method to determine the day of the week from 0-6. + * + * 0 = Monday + * 1 = Tuesday + * 2 = Wednesday + * 3 = Thursday + * 4 = Friday + * 5 = Saturday + * 6 = Sunday + * + * @param \DateTimeInterface $dt + * + * @return int + */ + public static function getDayOfWeek(\DateTimeInterface $dt) + { + $dayOfWeek = $dt->format('w') - 1; + + if ($dayOfWeek < 0) { + $dayOfWeek = 6; + } + + return $dayOfWeek; + } + + /** + * Get the number of days in a year. + * + * @param \DateTimeInterface $dt + * + * @return int + */ + public static function getYearLength(\DateTimeInterface $dt) + { + return self::isLeapYearDate($dt) ? 366 : 365; + } +} diff --git a/vendor/simshaun/recurr/src/Recurr/DaySet.php b/vendor/simshaun/recurr/src/Recurr/DaySet.php new file mode 100644 index 00000000..6162e414 --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/DaySet.php @@ -0,0 +1,46 @@ + + */ +class DaySet +{ + /** @var array */ + public $set; + + /** @var int Day of year */ + public $start; + + /** @var int Day of year */ + public $end; + + /** + * Constructor + * + * @param array $set Set of days + * @param int $start Day of year of start day + * @param int $end Day of year of end day + */ + public function __construct($set, $start, $end) + { + $this->set = $set; + $this->start = $start; + $this->end = $end; + } +} diff --git a/vendor/simshaun/recurr/src/Recurr/Exception.php b/vendor/simshaun/recurr/src/Recurr/Exception.php new file mode 100644 index 00000000..d0d8c6b4 --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/Exception.php @@ -0,0 +1,17 @@ + + */ +class InvalidArgument extends Exception +{ +} diff --git a/vendor/simshaun/recurr/src/Recurr/Exception/InvalidRRule.php b/vendor/simshaun/recurr/src/Recurr/Exception/InvalidRRule.php new file mode 100644 index 00000000..cbd26922 --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/Exception/InvalidRRule.php @@ -0,0 +1,20 @@ + + */ +class InvalidRRule extends Exception +{ +} diff --git a/vendor/simshaun/recurr/src/Recurr/Exception/InvalidWeekday.php b/vendor/simshaun/recurr/src/Recurr/Exception/InvalidWeekday.php new file mode 100644 index 00000000..041a7738 --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/Exception/InvalidWeekday.php @@ -0,0 +1,20 @@ + + */ +class InvalidWeekday extends Exception +{ +} diff --git a/vendor/simshaun/recurr/src/Recurr/Frequency.php b/vendor/simshaun/recurr/src/Recurr/Frequency.php new file mode 100644 index 00000000..e5d277b4 --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/Frequency.php @@ -0,0 +1,25 @@ + + */ +class Recurrence +{ + /** @var \DateTimeInterface */ + protected $start; + + /** @var \DateTimeInterface */ + protected $end; + + /** @var int */ + protected $index; + + public function __construct(\DateTimeInterface $start = null, \DateTimeInterface $end = null, $index = 0) + { + if ($start instanceof \DateTimeInterface) { + $this->setStart($start); + } + + if ($end instanceof \DateTimeInterface) { + $this->setEnd($end); + } + + $this->index = $index; + } + + /** + * @return \DateTimeInterface + */ + public function getStart() + { + return $this->start; + } + + /** + * @param \DateTime $start + */ + public function setStart($start) + { + $this->start = $start; + } + + /** + * @return \DateTime + */ + public function getEnd() + { + return $this->end; + } + + /** + * @param \DateTime $end + */ + public function setEnd($end) + { + $this->end = $end; + } + + /** + * @return int + */ + public function getIndex() + { + return $this->index; + } + + /** + * @param int $index + */ + public function setIndex($index) + { + $this->index = $index; + } +} diff --git a/vendor/simshaun/recurr/src/Recurr/RecurrenceCollection.php b/vendor/simshaun/recurr/src/Recurr/RecurrenceCollection.php new file mode 100644 index 00000000..e1e676bd --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/RecurrenceCollection.php @@ -0,0 +1,153 @@ + + */ +class RecurrenceCollection extends BaseCollection +{ + /** + * @param \DateTimeInterface $after + * @param \DateTimeInterface $before + * @param bool $inc Include $after or $before if they happen to be a recurrence. + * + * @return RecurrenceCollection + */ + public function startsBetween(\DateTimeInterface $after, \DateTimeInterface $before, $inc = false) + { + return $this->filter( + function ($recurrence) use ($after, $before, $inc) { + /** @var $recurrence Recurrence */ + $start = $recurrence->getStart(); + + if ($inc) { + return $start >= $after && $start <= $before; + } + + return $start > $after && $start < $before; + } + ); + } + + /** + * @param \DateTimeInterface $before + * @param bool $inc Include $before if it is a recurrence. + * + * @return RecurrenceCollection + */ + public function startsBefore(\DateTimeInterface $before, $inc = false) + { + return $this->filter( + function ($recurrence) use ($before, $inc) { + /** @var $recurrence Recurrence */ + $start = $recurrence->getStart(); + + if ($inc) { + return $start <= $before; + } + + return $start < $before; + } + ); + } + + /** + * @param \DateTimeInterface $after + * @param bool $inc Include $after if it a recurrence. + * + * @return RecurrenceCollection + */ + public function startsAfter(\DateTimeInterface $after, $inc = false) + { + return $this->filter( + function ($recurrence) use ($after, $inc) { + /** @var $recurrence Recurrence */ + $start = $recurrence->getStart(); + + if ($inc) { + return $start >= $after; + } + + return $start > $after; + } + ); + } + + /** + * @param \DateTimeInterface $after + * @param \DateTimeInterface $before + * @param bool $inc Include $after or $before if they happen to be a recurrence. + * + * @return RecurrenceCollection + */ + public function endsBetween(\DateTimeInterface $after, \DateTimeInterface $before, $inc = false) + { + return $this->filter( + function ($recurrence) use ($after, $before, $inc) { + /** @var $recurrence Recurrence */ + $end = $recurrence->getEnd(); + + if ($inc) { + return $end >= $after && $end <= $before; + } + + return $end > $after && $end < $before; + } + ); + } + + /** + * @param \DateTimeInterface $before + * @param bool $inc Include $before if it is a recurrence. + * + * @return RecurrenceCollection + */ + public function endsBefore(\DateTimeInterface $before, $inc = false) + { + return $this->filter( + function ($recurrence) use ($before, $inc) { + /** @var $recurrence Recurrence */ + $end = $recurrence->getEnd(); + + if ($inc) { + return $end <= $before; + } + + return $end < $before; + } + ); + } + + /** + * @param \DateTimeInterface $after + * @param bool $inc Include $after if it a recurrence. + * + * @return RecurrenceCollection + */ + public function endsAfter(\DateTimeInterface $after, $inc = false) + { + return $this->filter( + function ($recurrence) use ($after, $inc) { + /** @var $recurrence Recurrence */ + $end = $recurrence->getEnd(); + + if ($inc) { + return $end >= $after; + } + + return $end > $after; + } + ); + } +} diff --git a/vendor/simshaun/recurr/src/Recurr/Rule.php b/vendor/simshaun/recurr/src/Recurr/Rule.php new file mode 100644 index 00000000..dfcf40f0 --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/Rule.php @@ -0,0 +1,1315 @@ + + * Copyright (c) 2012 - Tomi Pieviläinen + */ + +namespace Recurr; + +use Recurr\Exception\InvalidArgument; +use Recurr\Exception\InvalidRRule; +use Recurr\Exception\InvalidWeekday; + +/** + * This class is responsible for providing a programmatic way of building, + * parsing, and handling RRULEs. + * + * http://www.ietf.org/rfc/rfc2445.txt + * + * Information, not contained in the built/parsed RRULE, necessary to determine + * the various recurrence instance start time and dates are derived from the + * DTSTART property (default: \DateTime()). + * + * For example, "FREQ=YEARLY;BYMONTH=1" doesn't specify a specific day within + * the month or a time. This information would be the same as what is specified + * for DTSTART. + * + * + * BYxxx rule parts modify the recurrence in some manner. BYxxx rule parts for + * a period of time which is the same or greater than the frequency generally + * reduce or limit the number of occurrences of the recurrence generated. + * + * For example, "FREQ=DAILY;BYMONTH=1" reduces the number of recurrence + * instances from all days (if BYMONTH tag is not present) to all days in + * January. + * + * BYxxx rule parts for a period of time less than the frequency generally + * increase or expand the number of occurrences of the recurrence. + * + * For example, "FREQ=YEARLY;BYMONTH=1,2" increases the number of days within + * the yearly recurrence set from 1 (if BYMONTH tag is not present) to 2. + * + * If multiple BYxxx rule parts are specified, then after evaluating the + * specified FREQ and INTERVAL rule parts, the BYxxx rule parts are applied to + * the current set of evaluated occurrences in the following order: + * + * BYMONTH, BYWEEKNO, BYYEARDAY, BYMONTHDAY, BYDAY, BYHOUR, + * BYMINUTE, BYSECOND and BYSETPOS; then COUNT and UNTIL are evaluated. + * + * Here is an example of evaluating multiple BYxxx rule parts. + * + * FREQ=YEARLY;INTERVAL=2;BYMONTH=1;BYDAY=SU;BYHOUR=8,9;BYMINUTE=30 + * + * First, the "INTERVAL=2" would be applied to "FREQ=YEARLY" to arrive at + * "every other year". + * Then, "BYMONTH=1" would be applied to arrive at "every January, every + * other year". + * Then, "BYDAY=SU" would be applied to arrive at "every Sunday in January, + * every other year". + * Then, "BYHOUR=8,9" would be applied to arrive at "every Sunday in January + * at 8 AM and 9 AM, every other year". + * Then, "BYMINUTE=30" would be applied to arrive at "every Sunday in January + * at 8:30 AM and 9:30 AM, every other year". + * Then, lacking information from RRULE, the second is derived from DTSTART, to + * end up in "every Sunday in January at 8:30:00 AM and 9:30:00 AM, every + * other year". Similarly, if the BYMINUTE, BYHOUR, BYDAY, BYMONTHDAY or + * BYMONTH rule part were missing, the appropriate minute, hour, day or month + * would have been retrieved from the "DTSTART" property. + * + * Example: The following is a rule which specifies 10 meetings which occur + * every other day: + * + * FREQ=DAILY;COUNT=10;INTERVAL=2 + * + * @package Recurr + * @author Shaun Simmons + */ +class Rule +{ + const TZ_FIXED = 'fixed'; + const TZ_FLOAT = 'floating'; + + public static $freqs = array( + 'YEARLY' => 0, + 'MONTHLY' => 1, + 'WEEKLY' => 2, + 'DAILY' => 3, + 'HOURLY' => 4, + 'MINUTELY' => 5, + 'SECONDLY' => 6, + ); + + /** @var string */ + protected $timezone; + + /** @var \DateTimeInterface|null */ + protected $startDate; + + /** @var \DateTimeInterface|null */ + protected $endDate; + + /** @var bool */ + protected $isStartDateFromDtstart = false; + + /** @var string */ + protected $freq; + + /** @var int */ + protected $interval = 1; + + /** @var bool */ + protected $isExplicitInterval = false; + + /** @var \DateTimeInterface|null */ + protected $until; + + /** @var int|null */ + protected $count; + + /** @var array */ + protected $bySecond; + + /** @var array */ + protected $byMinute; + + /** @var array */ + protected $byHour; + + /** @var array */ + protected $byDay; + + /** @var array */ + protected $byMonthDay; + + /** @var array */ + protected $byYearDay; + + /** @var array */ + protected $byWeekNumber; + + /** @var array */ + protected $byMonth; + + /** @var string */ + protected $weekStart = 'MO'; + protected $weekStartDefined = false; + + /** @var array */ + protected $days = array( + 'MO' => 0, + 'TU' => 1, + 'WE' => 2, + 'TH' => 3, + 'FR' => 4, + 'SA' => 5, + 'SU' => 6 + ); + + /** @var int[] */ + protected $bySetPosition; + + /** @var array */ + protected $rDates = array(); + + /** @var array */ + protected $exDates = array(); + + /** + * Construct a new Rule. + * + * @param string $rrule RRULE string + * @param string|\DateTimeInterface|null $startDate + * @param string|\DateTimeInterface|null $endDate + * @param string $timezone + * + * @throws InvalidRRule + */ + public function __construct($rrule = null, $startDate = null, $endDate = null, $timezone = null) + { + if (empty($timezone)) { + if ($startDate instanceof \DateTimeInterface) { + $timezone = $startDate->getTimezone()->getName(); + } else { + $timezone = date_default_timezone_get(); + } + } + $this->setTimezone($timezone); + + if ($startDate !== null && !$startDate instanceof \DateTimeInterface) { + $startDate = new \DateTime($startDate, new \DateTimeZone($timezone)); + } + + $this->setStartDate($startDate); + + if ($endDate !== null && !$endDate instanceof \DateTimeInterface) { + $endDate = new \DateTime($endDate, new \DateTimeZone($timezone)); + } + + $this->setEndDate($endDate); + + if (is_array($rrule)) { + $this->loadFromArray($rrule); + } else if (!empty($rrule)) { + $this->loadFromString($rrule); + } + } + + /** + * Create a Rule object based on a RRULE string. + * + * @param string $rrule RRULE string + * @param string|\DateTimeInterface $startDate + * @param \DateTimeInterface|null $endDate + * @param string $timezone + * + * @return Rule + * @throws InvalidRRule + */ + public static function createFromString($rrule, $startDate = null, $endDate = null, $timezone = null) + { + $rule = new static($rrule, $startDate, $endDate, $timezone); + + return $rule; + } + + /** + * Create a Rule object based on a RRULE array. + * + * @param array $rrule RRULE array + * @param string|\DateTimeInterface $startDate + * @param \DateTimeInterface|null $endDate + * @param string $timezone + * + * @return Rule + * @throws InvalidRRule + */ + public static function createFromArray($rrule, $startDate = null, $endDate = null, $timezone = null) + { + $rule = new static($rrule, $startDate, $endDate, $timezone); + + return $rule; + } + + /** + * Populate the object based on a RRULE string. + * + * @param string $rrule RRULE string + * + * @return Rule + * @throws InvalidRRule + */ + public function loadFromString($rrule) + { + $rrule = strtoupper($rrule); + $rrule = trim($rrule, ';'); + $rrule = trim($rrule, "\n"); + $rows = explode("\n", $rrule); + + $parts = array(); + + foreach ($rows as $rruleForRow) { + $parts = array_merge($parts, $this->parseString($rruleForRow)); + } + + return $this->loadFromArray($parts); + } + + /** + * Parse string for parts + * + * @param string $rrule + * + * @return array + * + * @throws InvalidRRule + */ + public function parseString($rrule) + { + if (strpos($rrule, 'DTSTART:') === 0) { + $pieces = explode(':', $rrule); + + if (count($pieces) !== 2) { + throw new InvalidRRule('DSTART is not valid'); + } + + return array('DTSTART' => $pieces[1]); + } + + if (strpos($rrule, 'RRULE:') === 0) { + $rrule = str_replace('RRULE:', '', $rrule); + } + + $pieces = explode(';', $rrule); + $parts = array(); + + if (!count($pieces)) { + throw new InvalidRRule('RRULE is empty'); + } + + // Split each piece of the RRULE in to KEY=>VAL + foreach ($pieces as $piece) { + if (false === strpos($piece, '=')) { + continue; + } + + list($key, $val) = explode('=', $piece); + $parts[$key] = $val; + } + + return $parts; + } + + /** + * Populate the object based on a RRULE array. + * + * @param array + * + * @return Rule + * @throws InvalidRRule + */ + public function loadFromArray($parts) + { + // FREQ is required + if (!isset($parts['FREQ'])) { + throw new InvalidRRule('FREQ is required'); + } else { + if (!in_array($parts['FREQ'], array_keys(self::$freqs))) { + throw new InvalidRRule('FREQ is invalid'); + } + + $this->setFreq(self::$freqs[$parts['FREQ']]); + } + + // DTSTART + if (isset($parts['DTSTART'])) { + $this->isStartDateFromDtstart = true; + $date = new \DateTime($parts['DTSTART']); + $date = $date->setTimezone(new \DateTimeZone($this->getTimezone())); + $this->setStartDate($date); + } + + // DTEND + if (isset($parts['DTEND'])) { + $date = new \DateTime($parts['DTEND']); + $date = $date->setTimezone(new \DateTimeZone($this->getTimezone())); + $this->setEndDate($date); + } + + // UNTIL or COUNT + if (isset($parts['UNTIL']) && isset($parts['COUNT'])) { + throw new InvalidRRule('UNTIL and COUNT must not exist together in the same RRULE'); + } elseif (isset($parts['UNTIL'])) { + $date = new \DateTime($parts['UNTIL']); + $date = $date->setTimezone(new \DateTimeZone($this->getTimezone())); + $this->setUntil($date); + } elseif (isset($parts['COUNT'])) { + $this->setCount($parts['COUNT']); + } + + // INTERVAL + if (isset($parts['INTERVAL'])) { + $this->setInterval($parts['INTERVAL']); + } + + // BYSECOND + if (isset($parts['BYSECOND'])) { + $this->setBySecond(explode(',', $parts['BYSECOND'])); + } + + // BYMINUTE + if (isset($parts['BYMINUTE'])) { + $this->setByMinute(explode(',', $parts['BYMINUTE'])); + } + + // BYHOUR + if (isset($parts['BYHOUR'])) { + $this->setByHour(explode(',', $parts['BYHOUR'])); + } + + // BYDAY + if (isset($parts['BYDAY'])) { + $this->setByDay(explode(',', $parts['BYDAY'])); + } + + // BYMONTHDAY + if (isset($parts['BYMONTHDAY'])) { + $this->setByMonthDay(explode(',', $parts['BYMONTHDAY'])); + } + + // BYYEARDAY + if (isset($parts['BYYEARDAY'])) { + $this->setByYearDay(explode(',', $parts['BYYEARDAY'])); + } + + // BYWEEKNO + if (isset($parts['BYWEEKNO'])) { + $this->setByWeekNumber(explode(',', $parts['BYWEEKNO'])); + } + + // BYMONTH + if (isset($parts['BYMONTH'])) { + $this->setByMonth(explode(',', $parts['BYMONTH'])); + } + + // BYSETPOS + if (isset($parts['BYSETPOS'])) { + $this->setBySetPosition(explode(',', $parts['BYSETPOS'])); + } + + // WKST + if (isset($parts['WKST'])) { + $this->setWeekStart($parts['WKST']); + } + + // RDATE + if (isset($parts['RDATE'])) { + $this->setRDates(explode(',', $parts['RDATE'])); + } + + // EXDATE + if (isset($parts['EXDATE'])) { + $this->setExDates(explode(',', $parts['EXDATE'])); + } + + return $this; + } + + /** + * Get the RRULE as a string + * + * @param string $timezoneType + * + * @return string + */ + public function getString($timezoneType=self::TZ_FLOAT) + { + $format = 'Ymd\THis'; + + $parts = array(); + + // FREQ + $parts[] = 'FREQ='.$this->getFreqAsText(); + + // UNTIL or COUNT + $until = $this->getUntil(); + $count = $this->getCount(); + if (!empty($until)) { + if ($timezoneType === self::TZ_FIXED) { + $u = clone $until; + $u = $u->setTimezone(new \DateTimeZone('UTC')); + $parts[] = 'UNTIL='.$u->format($format.'\Z'); + } else { + $parts[] = 'UNTIL='.$until->format($format); + } + } elseif (!empty($count)) { + $parts[] = 'COUNT='.$count; + } + + // DTSTART + if ($this->isStartDateFromDtstart) { + if ($timezoneType === self::TZ_FIXED) { + $d = $this->getStartDate(); + $tzid = $d->getTimezone()->getName(); + $date = $d->format($format); + $parts[] = "DTSTART;TZID=$tzid:$date"; + } else { + $parts[] = 'DTSTART='.$this->getStartDate()->format($format); + } + } + + // DTEND + if ($this->endDate instanceof \DateTime) { + if ($timezoneType === self::TZ_FIXED) { + $d = $this->getEndDate(); + $tzid = $d->getTimezone()->getName(); + $date = $d->format($format); + + $parts[] = "DTEND;TZID=$tzid:$date"; + } else { + $parts[] = 'DTEND='.$this->getEndDate()->format($format); + } + } + + // INTERVAL + $interval = $this->getInterval(); + if ($this->isExplicitInterval && !empty($interval)) { + $parts[] = 'INTERVAL='.$interval; + } + + // BYSECOND + $bySecond = $this->getBySecond(); + if (!empty($bySecond)) { + $parts[] = 'BYSECOND='.implode(',', $bySecond); + } + + // BYMINUTE + $byMinute = $this->getByMinute(); + if (!empty($byMinute)) { + $parts[] = 'BYMINUTE='.implode(',', $byMinute); + } + + // BYHOUR + $byHour = $this->getByHour(); + if (!empty($byHour)) { + $parts[] = 'BYHOUR='.implode(',', $byHour); + } + + // BYDAY + $byDay = $this->getByDay(); + if (!empty($byDay)) { + $parts[] = 'BYDAY='.implode(',', $byDay); + } + + // BYMONTHDAY + $byMonthDay = $this->getByMonthDay(); + if (!empty($byMonthDay)) { + $parts[] = 'BYMONTHDAY='.implode(',', $byMonthDay); + } + + // BYYEARDAY + $byYearDay = $this->getByYearDay(); + if (!empty($byYearDay)) { + $parts[] = 'BYYEARDAY='.implode(',', $byYearDay); + } + + // BYWEEKNO + $byWeekNumber = $this->getByWeekNumber(); + if (!empty($byWeekNumber)) { + $parts[] = 'BYWEEKNO='.implode(',', $byWeekNumber); + } + + // BYMONTH + $byMonth = $this->getByMonth(); + if (!empty($byMonth)) { + $parts[] = 'BYMONTH='.implode(',', $byMonth); + } + + // BYSETPOS + $bySetPosition = $this->getBySetPosition(); + if (!empty($bySetPosition)) { + $parts[] = 'BYSETPOS='.implode(',', $bySetPosition); + } + + // WKST + $weekStart = $this->getWeekStart(); + if ($this->weekStartDefined && !empty($weekStart)) { + $parts[] = 'WKST='.$weekStart; + } + + // RDATE + $rDates = $this->getRDates(); + if (!empty($rDates)) { + foreach ($rDates as $key => $inclusion) { + $format = 'Ymd'; + if ($inclusion->hasTime) { + $format .= '\THis'; + if ($inclusion->isUtcExplicit) { + $format .= '\Z'; + } + } + $rDates[$key] = $inclusion->date->format($format); + } + $parts[] = 'RDATE='.implode(',', $rDates); + } + + // EXDATE + $exDates = $this->getExDates(); + if (!empty($exDates)) { + foreach ($exDates as $key => $exclusion) { + $format = 'Ymd'; + if ($exclusion->hasTime) { + $format .= '\THis'; + if ($exclusion->isUtcExplicit) { + $format .= '\Z'; + } + } + $exDates[$key] = $exclusion->date->format($format); + } + $parts[] = 'EXDATE='.implode(',', $exDates); + } + + return implode(';', $parts); + } + + /** + * @param string $timezone + * + * @see http://www.php.net/manual/en/timezones.php + * @return $this + */ + public function setTimezone($timezone) + { + $this->timezone = $timezone; + + return $this; + } + + /** + * Get timezone to use for \DateTimeInterface objects that are UTC. + * + * @return null|string + */ + public function getTimezone() + { + return $this->timezone; + } + + /** + * This date specifies the first instance in the recurrence set. + * + * @param \DateTimeInterface|null $startDate Date of the first instance in the recurrence + * @param bool|null $includeInString If true, include as DTSTART when calling getString() + * + * @return $this + */ + public function setStartDate($startDate, $includeInString = null) + { + $this->startDate = $startDate; + + if ($includeInString !== null) { + $this->isStartDateFromDtstart = (bool) $includeInString; + } + + return $this; + } + + /** + * @return \DateTimeInterface + */ + public function getStartDate() + { + return $this->startDate; + } + + /** + * This date specifies the last possible instance in the recurrence set. + * + * @param \DateTimeInterface|null $endDate Date of the last possible instance in the recurrence + * + * @return $this + */ + public function setEndDate($endDate) + { + $this->endDate = $endDate; + + return $this; + } + + /** + * @return \DateTimeInterface|null + */ + public function getEndDate() + { + return $this->endDate; + } + + /** + * Identifies the type of recurrence rule. + * + * May be one of: + * - Frequency::SECONDLY to specify repeating events based on an + * interval of a second or more. + * - Frequency::MINUTELY to specify repeating events based on an + * interval of a minute or more. + * - Frequency::HOURLY to specify repeating events based on an + * interval of an hour or more. + * - Frequency::DAILY to specify repeating events based on an + * interval of a day or more. + * - Frequency::WEEKLY to specify repeating events based on an + * interval of a week or more. + * - Frequency::MONTHLY to specify repeating events based on an + * interval of a month or more. + * - Frequency::YEAR to specify repeating events based on an + * interval of a year or more. + * + * @param string|int $freq Frequency of recurrence. + * + * @return $this + * @throws Exception\InvalidArgument + */ + public function setFreq($freq) + { + if (is_string($freq)) { + if (!array_key_exists($freq, self::$freqs)) { + throw new InvalidArgument('Frequency must comply with RFC 2445.'); + } else { + $freq = self::$freqs[$freq]; + } + } + + if (is_int($freq) && ($freq < 0 || $freq > 6)) { + throw new InvalidArgument('Frequency integer must be between 0 and 6 Use the class constants.'); + } + + $this->freq = $freq; + + return $this; + } + + /** + * Get the type of recurrence rule (as integer). + * + * @return int + */ + public function getFreq() + { + return $this->freq; + } + + /** + * Get the type of recurrence rule (as text). + * + * @return string + */ + public function getFreqAsText() + { + return array_search($this->getFreq(), self::$freqs); + } + + /** + * The interval represents how often the recurrence rule repeats. + * + * The default value is "1", meaning every second for a SECONDLY rule, + * or every minute for a MINUTELY rule, every hour for an HOURLY rule, + * every day for a DAILY rule, every week for a WEEKLY rule, every month + * for a MONTHLY rule and every year for a YEARLY rule. + * + * @param int $interval Positive integer that represents how often the + * recurrence rule repeats. + * + * @return $this + * @throws Exception\InvalidArgument + */ + public function setInterval($interval) + { + $interval = (int) $interval; + + if ($interval < 1) { + throw new InvalidArgument('Interval must be a positive integer'); + } + + $this->interval = $interval; + $this->isExplicitInterval = true; + + return $this; + } + + /** + * Get the interval that represents how often the recurrence rule repeats. + * + * @return int + */ + public function getInterval() + { + return $this->interval; + } + + /** + * Define a \DateTimeInterface value which bounds the recurrence rule in an + * inclusive manner. If the value specified is synchronized with the + * specified recurrence, this DateTime becomes the last instance of the + * recurrence. If not present, and a COUNT is also not present, the RRULE + * is considered to repeat forever. + * + * Either UNTIL or COUNT may be specified, but UNTIL and COUNT MUST NOT + * both be specified. + * + * @param \DateTimeInterface $until The upper bound of the recurrence. + * + * @return $this + */ + public function setUntil(\DateTimeInterface $until) + { + $this->until = $until; + $this->count = null; + + return $this; + } + + /** + * Get the \DateTimeInterface that the recurrence lasts until. + * + * @return \DateTimeInterface|null + */ + public function getUntil() + { + $date = $this->until; + + if ($date instanceof \DateTime + && $date->getTimezone()->getName() == 'UTC' + && $this->getTimezone() != 'UTC' + ) { + $timestamp = $date->getTimestamp(); + $date = $date->setTimezone(new \DateTimeZone($this->getTimezone())); + $date = $date->setTimestamp($timestamp); + } + + return $date; + } + + /** + * The count defines the number of occurrences at which to range-bound the + * recurrence. The DTSTART counts as the first occurrence. + * + * Either COUNT or UNTIL may be specified, but COUNT and UNTIL MUST NOT + * both be specified. + * + * @param int $count Number of occurrences + * + * @return $this + */ + public function setCount($count) + { + $this->count = (int) $count; + $this->until = null; + + return $this; + } + + /** + * Get the number of occurrences at which the recurrence is range-bound. + * + * @return int|null + */ + public function getCount() + { + return $this->count; + } + + /** + * This rule specifies an array of seconds within a minute. + * + * Valid values are 0 to 59. + * + * @param array $bySecond Array of seconds within a minute + * + * @return $this + */ + public function setBySecond(array $bySecond) + { + $this->bySecond = $bySecond; + + return $this; + } + + /** + * Get an array of seconds within a minute. + * + * @return array + */ + public function getBySecond() + { + return $this->bySecond; + } + + /** + * This rule specifies an array of minutes within an hour. + * + * Valid values are 0 to 59. + * + * @param array $byMinute Array of minutes within an hour + * + * @return $this + */ + public function setByMinute(array $byMinute) + { + $this->byMinute = $byMinute; + + return $this; + } + + /** + * Get an array of minutes within an hour. + * + * @return array + */ + public function getByMinute() + { + return $this->byMinute; + } + + /** + * This rule specifies an array of hours of the day. + * + * Valid values are 0 to 23. + * + * @param array $byHour Array of hours of the day + * + * @return $this + */ + public function setByHour(array $byHour) + { + $this->byHour = $byHour; + + return $this; + } + + /** + * Get an array of hours of the day. + * + * @return array + */ + public function getByHour() + { + return $this->byHour; + } + + /** + * This rule specifies an array of days of the week; + * + * MO indicates Monday; TU indicates Tuesday; WE indicates Wednesday; + * TH indicates Thursday; FR indicates Friday; SA indicates Saturday; + * SU indicates Sunday. + * + * Each BYDAY value can also be preceded by a positive (+n) or negative + * (-n) integer. If present, this indicates the nth occurrence of the + * specific day within the MONTHLY or YEARLY RRULE. For example, within + * a MONTHLY rule, +1MO (or simply 1MO) represents the first Monday + * within the month, whereas -1MO represents the last Monday of the + * month. If an integer modifier is not present, it means all days of + * this type within the specified frequency. For example, within a + * MONTHLY rule, MO represents all Mondays within the month. + * + * ------------------------------------------- + * DO NOT MIX DAYS AND DAYS WITH MODIFIERS. + * This is not supported. + * ------------------------------------------- + * + * @param array $byDay Array of days of the week + * + * @return $this + * @throws InvalidRRule + */ + public function setByDay(array $byDay) + { + if ($this->getFreq() > static::$freqs['MONTHLY'] && preg_match('/\d/', implode(',', $byDay))) { + throw new InvalidRRule('BYDAY only supports MONTHLY and YEARLY frequencies'); + } + if (count($byDay) === 0 || $byDay === array('')) { + throw new InvalidRRule('BYDAY must be set to at least one day'); + } + + $this->byDay = $byDay; + + return $this; + } + + /** + * Get an array of days of the week (SU, MO, TU, ..) + * + * @return array + */ + public function getByDay() + { + return $this->byDay; + } + + /** + * Get an array of Weekdays + * + * @return array of Weekdays + * @throws InvalidWeekday + */ + public function getByDayTransformedToWeekdays() + { + $byDay = $this->getByDay(); + + if (null === $byDay || !count($byDay)) { + return array(); + } + + foreach ($byDay as $idx => $day) { + if (strlen($day) === 2) { + $byDay[$idx] = new Weekday($day, null); + } else { + preg_match('/^([+-]?[0-9]+)([A-Z]{2})$/', $day, $dayParts); + $byDay[$idx] = new Weekday($dayParts[2], $dayParts[1]); + } + } + + return $byDay; + } + + /** + * This rule specifies an array of days of the month. + * Valid values are 1 to 31 or -31 to -1. + * + * For example, -10 represents the tenth to the last day of the month. + * + * @param array $byMonthDay Array of days of the month from -31 to 31 + * + * @return $this + */ + public function setByMonthDay(array $byMonthDay) + { + $this->byMonthDay = $byMonthDay; + + return $this; + } + + /** + * Get an array of days of the month. + * + * @return array + */ + public function getByMonthDay() + { + return $this->byMonthDay; + } + + /** + * This rule specifies an array of days of the year. + * Valid values are 1 to 366 or -366 to -1. + * + * For example, -1 represents the last day of the year (December 31st) and + * -306 represents the 306th to the last day of the year (March 1st). + * + * @param array $byYearDay Array of days of the year from -1 to 306 + * + * @return $this + */ + public function setByYearDay(array $byYearDay) + { + $this->byYearDay = $byYearDay; + + return $this; + } + + /** + * Get an array of days of the year. + * + * @return array + */ + public function getByYearDay() + { + return $this->byYearDay; + } + + /** + * This rule specifies an array of ordinals specifying weeks of the year. + * Valid values are 1 to 53 or -53 to -1. + * + * This corresponds to weeks according to week numbering as defined in + * [ISO 8601]. A week is defined as a seven day period, starting on the day + * of the week defined to be the week start (see setWeekStart). Week number + * one of the calendar year is the first week which contains at least four + * days in that calendar year. This rule is only valid for YEARLY rules. + * + * For example, 3 represents the third week of the year. + * + * Note: Assuming a Monday week start, week 53 can only occur when + * Thursday is January 1 or if it is a leap year and Wednesday is January 1. + * + * @param array $byWeekNumber Array of ordinals specifying weeks of the year. + * + * @return $this + */ + public function setByWeekNumber(array $byWeekNumber) + { + $this->byWeekNumber = $byWeekNumber; + + return $this; + } + + /** + * Get an array of ordinals specifying weeks of the year. + * + * @return array + */ + public function getByWeekNumber() + { + return $this->byWeekNumber; + } + + /** + * This rule specifies an array of months of the year. + * + * Valid values are 1 to 12. + * + * @param array $byMonth Array of months of the year from 1 to 12 + * + * @return $this + */ + public function setByMonth(array $byMonth) + { + $this->byMonth = $byMonth; + + return $this; + } + + /** + * Get an array of months of the year. + * + * @return array + */ + public function getByMonth() + { + return $this->byMonth; + } + + public function hasByMonth() + { + $val = $this->getByMonth(); + + return ! empty($val); + } + + /** + * This rule specifies the day on which the workweek starts. + * + * Valid values are MO, TU, WE, TH, FR, SA and SU. + * + * This is significant when a WEEKLY RRULE has an interval greater than 1, + * and a BYDAY rule part is specified. + * + * This is also significant when in a YEARLY RRULE when a BYWEEKNO rule + * is specified. The default value is MO. + * + * @param string $weekStart The day on which the workweek starts. + * + * @return $this + * @throws Exception\InvalidArgument + */ + public function setWeekStart($weekStart) + { + $weekStart = strtoupper($weekStart); + + if (!in_array($weekStart, array('MO', 'TU', 'WE', 'TH', 'FR', 'SA', 'SU'))) { + throw new InvalidArgument('Week Start must be one of MO, TU, WE, TH, FR, SA, SU'); + } + + $this->weekStart = $weekStart; + $this->weekStartDefined = true; + + return $this; + } + + /** + * Get the day on which the workweek starts. + * + * @return string + */ + public function getWeekStart() + { + return $this->weekStart; + } + + /** + * Get the day on which the workweek starts, as an integer from 0-6, + * 0 being Monday and 6 being Sunday. + * + * @return int + */ + public function getWeekStartAsNum() + { + $weekStart = $this->getWeekStart(); + + return $this->days[$weekStart]; + } + + /** + * This rule specifies an array of values which corresponds to the nth + * occurrence within the set of events specified by the rule. Valid values + * are 1 to 366 or -366 to -1. It MUST only be used in conjunction with + * another BYxxx rule part. + * + * For example "the last work day of the month" could be represented as: + * RRULE:FREQ=MONTHLY;BYDAY=MO,TU,WE,TH,FR;BYSETPOS=-1 + * + * Each BYSETPOS value can include a positive or negative integer. + * If present, this indicates the nth occurrence of the specific occurrence + * within the set of events specified by the rule. + * + * @param array $bySetPosition Array of values which corresponds to the nth + * occurrence within the set of events specified by the rule. + * + * @return $this + */ + public function setBySetPosition($bySetPosition) + { + $this->bySetPosition = $bySetPosition; + + return $this; + } + + /** + * Get the array of values which corresponds to the nth occurrence within + * the set of events specified by the rule. + * + * @return array + */ + public function getBySetPosition() + { + return $this->bySetPosition; + } + + /** + * This rule specifies an array of dates that will be + * included in a recurrence set. + * + * @param string[]|DateInclusion[] $rDates Array of dates that will be + * included in the recurrence set. + * + * @return $this + */ + public function setRDates(array $rDates) + { + $timezone = new \DateTimeZone($this->getTimezone()); + + foreach ($rDates as $key => $val) { + if ($val instanceof DateInclusion) { + $val->date = $this->convertZtoUtc($val->date); + } else { + $date = new \DateTime($val, $timezone); + $rDates[$key] = new DateInclusion( + $this->convertZtoUtc($date), + strpos($val, 'T') !== false, + strpos($val, 'Z') !== false + ); + } + } + + $this->rDates = $rDates; + + return $this; + } + + /** + * Get the array of dates that will be included in a recurrence set. + * + * @return DateInclusion[] + */ + public function getRDates() + { + return $this->rDates; + } + + /** + * This rule specifies an array of exception dates that will not be + * included in a recurrence set. + * + * @param string[]|DateExclusion[] $exDates Array of dates that will not be + * included in the recurrence set. + * + * @return $this + */ + public function setExDates(array $exDates) + { + $timezone = new \DateTimeZone($this->getTimezone()); + + foreach ($exDates as $key => $val) { + if ($val instanceof DateExclusion) { + $val->date = $this->convertZtoUtc($val->date); + } else { + $date = new \DateTime($val, $timezone); + $exDates[$key] = new DateExclusion( + $this->convertZtoUtc($date), + strpos($val, 'T') !== false, + strpos($val, 'Z') !== false + ); + } + } + + $this->exDates = $exDates; + + return $this; + } + + /** + * DateTime::setTimezone fails if the timezone does not have an ID. + * "Z" is the same as "UTC", but "Z" does not have an ID. + * + * This is necessary for exclusion dates to be handled properly. + * + * @param \DateTimeInterface $date + * + * @return \DateTimeInterface + */ + private function convertZtoUtc(\DateTimeInterface $date) + { + if ($date->getTimezone()->getName() !== 'Z') { + return $date; + } + + return $date->setTimezone(new \DateTimeZone('UTC')); + } + + /** + * Get the array of dates that will not be included in a recurrence set. + * + * @return DateExclusion[] + */ + public function getExDates() + { + return $this->exDates; + } + + /** + * @return bool + */ + public function repeatsIndefinitely() + { + return !$this->getCount() && !$this->getUntil() && !$this->getEndDate(); + } +} diff --git a/vendor/simshaun/recurr/src/Recurr/Time.php b/vendor/simshaun/recurr/src/Recurr/Time.php new file mode 100644 index 00000000..c6360afb --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/Time.php @@ -0,0 +1,39 @@ + + */ +class Time +{ + /** @var int */ + public $hour; + + /** @var int */ + public $minute; + + /** @var int */ + public $second; + + public function __construct($hour, $minute, $second) + { + $this->hour = $hour; + $this->minute = $minute; + $this->second = $second; + } +} diff --git a/vendor/simshaun/recurr/src/Recurr/Transformer/ArrayTransformer.php b/vendor/simshaun/recurr/src/Recurr/Transformer/ArrayTransformer.php new file mode 100644 index 00000000..414a3e6c --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/Transformer/ArrayTransformer.php @@ -0,0 +1,736 @@ + + */ +class ArrayTransformer +{ + /** @var ArrayTransformerConfig */ + protected $config; + + /** + * Some versions of PHP are affected by a bug where + * \DateTimeInterface::createFromFormat('z Y', ...) does not account for leap years. + * + * @var bool + */ + protected $leapBug = false; + + /** + * Construct a new ArrayTransformer + * + * @param ArrayTransformerConfig $config + */ + public function __construct(ArrayTransformerConfig $config = null) + { + if (!$config instanceof ArrayTransformerConfig) { + $config = new ArrayTransformerConfig(); + } + + $this->config = $config; + + $this->leapBug = DateUtil::hasLeapYearBug(); + } + + /** + * @param ArrayTransformerConfig $config + */ + public function setConfig($config) + { + $this->config = $config; + } + + /** + * Transform a Rule in to an array of \DateTimeInterface objects + * + * @param Rule $rule the Rule object + * @param ConstraintInterface|null $constraint Potential recurrences must pass the constraint, else + * they will not be included in the returned collection. + * @param bool $countConstraintFailures Whether recurrences that fail the constraint's test + * should count towards a rule's COUNT limit. + * + * @return RecurrenceCollection|Recurrence[] + * @throws InvalidWeekday + */ + public function transform(Rule $rule, ConstraintInterface $constraint = null, $countConstraintFailures = true) + { + $start = $rule->getStartDate(); + $end = $rule->getEndDate(); + $until = $rule->getUntil(); + + if (null === $start) { + $start = new \DateTime( + 'now', $until instanceof \DateTimeInterface ? $until->getTimezone() : null + ); + } + + if (null === $end) { + $end = $start; + } + + $durationInterval = $start->diff($end); + + $startDay = $start->format('j'); + $startMonthLength = $start->format('t'); + $fixLastDayOfMonth = false; + + $dt = clone $start; + + $maxCount = $rule->getCount(); + $vLimit = $this->config->getVirtualLimit(); + + $freq = $rule->getFreq(); + $weekStart = $rule->getWeekStartAsNum(); + $bySecond = $rule->getBySecond(); + $byMinute = $rule->getByMinute(); + $byHour = $rule->getByHour(); + $byMonth = $rule->getByMonth(); + $byWeekNum = $rule->getByWeekNumber(); + $byYearDay = $rule->getByYearDay(); + $byMonthDay = $rule->getByMonthDay(); + $byMonthDayNeg = array(); + $byWeekDay = $rule->getByDayTransformedToWeekdays(); + $byWeekDayRel = array(); + $bySetPos = $rule->getBySetPosition(); + + $implicitByMonthDay = false; + if (!(!empty($byWeekNum) || !empty($byYearDay) || !empty($byMonthDay) || !empty($byWeekDay))) { + switch ($freq) { + case Frequency::YEARLY: + if (empty($byMonth)) { + $byMonth = array($start->format('n')); + } + + if ($startDay > 28) { + $fixLastDayOfMonth = true; + } + + $implicitByMonthDay = true; + $byMonthDay = array($startDay); + break; + case Frequency::MONTHLY: + if ($startDay > 28) { + $fixLastDayOfMonth = true; + } + + $implicitByMonthDay = true; + $byMonthDay = array($startDay); + break; + case Frequency::WEEKLY: + $byWeekDay = array( + new Weekday( + DateUtil::getDayOfWeek($start), null + ) + ); + break; + } + } + + if (!$this->config->isLastDayOfMonthFixEnabled()) { + $fixLastDayOfMonth = false; + } + + if (is_array($byMonthDay) && count($byMonthDay)) { + foreach ($byMonthDay as $idx => $day) { + if ($day < 0) { + unset($byMonthDay[$idx]); + $byMonthDayNeg[] = $day; + } + } + } + + if (!empty($byWeekDay)) { + foreach ($byWeekDay as $idx => $day) { + /** @var $day Weekday */ + + if (!empty($day->num)) { + $byWeekDayRel[] = $day; + unset($byWeekDay[$idx]); + } else { + $byWeekDay[$idx] = $day->weekday; + } + } + } + + if (empty($byYearDay)) { + $byYearDay = null; + } + + if (empty($byMonthDay)) { + $byMonthDay = null; + } + + if (empty($byMonthDayNeg)) { + $byMonthDayNeg = null; + } + + if (empty($byWeekDay)) { + $byWeekDay = null; + } + + if (!count($byWeekDayRel)) { + $byWeekDayRel = null; + } + + $year = $dt->format('Y'); + $month = $dt->format('n'); + $hour = $dt->format('G'); + $minute = $dt->format('i'); + $second = $dt->format('s'); + + $dates = array(); + $total = 1; + $count = $maxCount; + $continue = true; + $iterations = 0; + while ($continue) { + $dtInfo = DateUtil::getDateInfo($dt); + + $tmp = DateUtil::getDaySet($rule, $dt, $dtInfo, $start); + $daySet = $tmp->set; + $daySetStart = $tmp->start; + $daySetEnd = $tmp->end; + $wNoMask = array(); + $wDayMaskRel = array(); + $timeSet = DateUtil::getTimeSet($rule, $dt); + + if ($freq >= Frequency::HOURLY) { + if ( + ($freq >= Frequency::HOURLY && !empty($byHour) && !in_array($hour, $byHour)) + || ($freq >= Frequency::MINUTELY && !empty($byMinute) && !in_array($minute, $byMinute)) + || ($freq >= Frequency::SECONDLY && !empty($bySecond) && !in_array($second, $bySecond)) + ) { + $timeSet = array(); + } else { + switch ($freq) { + case Frequency::HOURLY: + $timeSet = DateUtil::getTimeSetOfHour($rule, $dt); + break; + case Frequency::MINUTELY: + $timeSet = DateUtil::getTimeSetOfMinute($rule, $dt); + break; + case Frequency::SECONDLY: + $timeSet = DateUtil::getTimeSetOfSecond($dt); + break; + } + } + } + + // Handle byWeekNum + if (!empty($byWeekNum)) { + $no1WeekStart = $firstWeekStart = DateUtil::pymod(7 - $dtInfo->dayOfWeekYearDay1 + $weekStart, 7); + + if ($no1WeekStart >= 4) { + $no1WeekStart = 0; + + $wYearLength = $dtInfo->yearLength + DateUtil::pymod( + $dtInfo->dayOfWeekYearDay1 - $weekStart, + 7 + ); + } else { + $wYearLength = $dtInfo->yearLength - $no1WeekStart; + } + + $div = floor($wYearLength / 7); + $mod = DateUtil::pymod($wYearLength, 7); + $numWeeks = floor($div + ($mod / 4)); + + foreach ($byWeekNum as $weekNum) { + if ($weekNum < 0) { + $weekNum += $numWeeks + 1; + } + + if (!(0 < $weekNum && $weekNum <= $numWeeks)) { + continue; + } + + if ($weekNum > 1) { + $offset = $no1WeekStart + ($weekNum - 1) * 7; + if ($no1WeekStart != $firstWeekStart) { + $offset -= 7 - $firstWeekStart; + } + } else { + $offset = $no1WeekStart; + } + + for ($i = 0; $i < 7; $i++) { + $wNoMask[] = $offset; + $offset++; + if ($dtInfo->wDayMask[$offset] == $weekStart) { + break; + } + } + } + + // Check week number 1 of next year as well + if (in_array(1, $byWeekNum)) { + $offset = $no1WeekStart + $numWeeks * 7; + + if ($no1WeekStart != $firstWeekStart) { + $offset -= 7 - $firstWeekStart; + } + + // If week starts in next year, we don't care about it. + if ($offset < $dtInfo->yearLength) { + for ($k = 0; $k < 7; $k++) { + $wNoMask[] = $offset; + $offset += 1; + if ($dtInfo->wDayMask[$offset] == $weekStart) { + break; + } + } + } + } + + if ($no1WeekStart) { + // Check last week number of last year as well. + // If $no1WeekStart is 0, either the year started on week start, + // or week number 1 got days from last year, so there are no + // days from last year's last week number in this year. + if (!in_array(-1, $byWeekNum)) { + $dtTmp = new \DateTime(); + $dtTmp = $dtTmp->setDate($year - 1, 1, 1); + $lastYearWeekDay = DateUtil::getDayOfWeek($dtTmp); + $lastYearNo1WeekStart = DateUtil::pymod(7 - $lastYearWeekDay + $weekStart, 7); + $lastYearLength = DateUtil::getYearLength($dtTmp); + if ($lastYearNo1WeekStart >= 4) { + $lastYearNo1WeekStart = 0; + $lastYearNumWeeks = floor( + 52 + DateUtil::pymod( + $lastYearLength + DateUtil::pymod( + $lastYearWeekDay - $weekStart, + 7 + ), + 7 + ) / 4 + ); + } else { + $lastYearNumWeeks = floor( + 52 + DateUtil::pymod( + $dtInfo->yearLength - $no1WeekStart, + 7 + ) / 4 + ); + } + } else { + $lastYearNumWeeks = -1; + } + + if (in_array($lastYearNumWeeks, $byWeekNum)) { + for ($i = 0; $i < $no1WeekStart; $i++) { + $wNoMask[] = $i; + } + } + } + } + + // Handle relative weekdays (e.g. 3rd Friday of month) + if (!empty($byWeekDayRel)) { + $ranges = array(); + + if (Frequency::YEARLY == $freq) { + if (!empty($byMonth)) { + foreach ($byMonth as $mo) { + $ranges[] = array_slice($dtInfo->mRanges, $mo - 1, 2); + } + } else { + $ranges[] = array(0, $dtInfo->yearLength); + } + } elseif (Frequency::MONTHLY == $freq) { + $ranges[] = array_slice($dtInfo->mRanges, $month - 1, 2); + } + + if (!empty($ranges)) { + foreach ($ranges as $range) { + $rangeStart = $range[0]; + $rangeEnd = $range[1]; + --$rangeEnd; + + reset($byWeekDayRel); + foreach ($byWeekDayRel as $weekday) { + /** @var Weekday $weekday */ + + if ($weekday->num < 0) { + $i = $rangeEnd + ($weekday->num + 1) * 7; + $i -= DateUtil::pymod( + $dtInfo->wDayMask[$i] - $weekday->weekday, + 7 + ); + } else { + $i = $rangeStart + ($weekday->num - 1) * 7; + $i += DateUtil::pymod( + 7 - $dtInfo->wDayMask[$i] + $weekday->weekday, + 7 + ); + } + + if ($rangeStart <= $i && $i <= $rangeEnd) { + $wDayMaskRel[] = $i; + } + } + } + } + } + + $numMatched = 0; + foreach ($daySet as $i => $dayOfYear) { + $dayOfMonth = $dtInfo->mDayMask[$dayOfYear]; + + $ifByMonth = $byMonth !== null && !in_array($dtInfo->mMask[$dayOfYear], $byMonth); + + $ifByWeekNum = $byWeekNum !== null && !in_array($i, $wNoMask); + + $ifByYearDay = $byYearDay !== null && ( + ( + $i < $dtInfo->yearLength && + !in_array($i + 1, $byYearDay) && + !in_array(-$dtInfo->yearLength + $i, $byYearDay) + ) || + ( + $i >= $dtInfo->yearLength && + !in_array($i + 1 - $dtInfo->yearLength, $byYearDay) && + !in_array(-$dtInfo->nextYearLength + $i - $dtInfo->yearLength, $byYearDay) + ) + ); + + $ifByMonthDay = $byMonthDay !== null && !in_array($dtInfo->mDayMask[$dayOfYear], $byMonthDay); + + // Handle "last day of next month" problem. + if ($fixLastDayOfMonth + && $ifByMonthDay + && $implicitByMonthDay + && $startMonthLength > $dtInfo->monthLength + && $dayOfMonth == $dtInfo->monthLength + && $dayOfMonth < $startMonthLength + && !$numMatched + ) { + $ifByMonthDay = false; + } + + $ifByMonthDayNeg = $byMonthDayNeg !== null + && !in_array($dtInfo->mDayMaskNeg[$dayOfYear], $byMonthDayNeg); + + $ifByDay = $byWeekDay !== null && count($byWeekDay) + && !in_array($dtInfo->wDayMask[$dayOfYear], $byWeekDay); + + $ifWDayMaskRel = $byWeekDayRel !== null && !in_array($dayOfYear, $wDayMaskRel); + + if ($byMonthDay !== null && $byMonthDayNeg !== null) { + if ($ifByMonthDay && $ifByMonthDayNeg) { + unset($daySet[$i]); + } + } elseif ($ifByMonth || $ifByWeekNum || $ifByYearDay || $ifByMonthDay || $ifByMonthDayNeg || $ifByDay || $ifWDayMaskRel) { + unset($daySet[$i]); + } else { + ++$numMatched; + } + } + + if (!empty($bySetPos) && !empty($daySet)) { + $datesAdj = array(); + $tmpDaySet = array_combine($daySet, $daySet); + + foreach ($bySetPos as $setPos) { + if ($setPos < 0) { + $dayPos = floor($setPos / count($timeSet)); + $timePos = DateUtil::pymod($setPos, count($timeSet)); + } else { + $dayPos = floor(($setPos - 1) / count($timeSet)); + $timePos = DateUtil::pymod(($setPos - 1), count($timeSet)); + } + + $tmp = array(); + for ($k = $daySetStart; $k <= $daySetEnd; $k++) { + if (!array_key_exists($k, $tmpDaySet)) { + continue; + } + + $tmp[] = $tmpDaySet[$k]; + } + + if ($dayPos < 0) { + $nextInSet = array_slice($tmp, $dayPos, 1); + if (count($nextInSet) === 0) { + continue; + } + $nextInSet = $nextInSet[0]; + } else { + $nextInSet = isset($tmp[$dayPos]) ? $tmp[$dayPos] : null; + } + + if (null !== $nextInSet) { + /** @var Time $time */ + $time = $timeSet[$timePos]; + + $dtTmp = DateUtil::getDateTimeByDayOfYear($nextInSet, $dt->format('Y'), $start->getTimezone()); + + $dtTmp = $dtTmp->setTime( + $time->hour, + $time->minute, + $time->second + ); + + $datesAdj[] = $dtTmp; + } + } + + foreach ($datesAdj as $dtTmp) { + if (null !== $until && $dtTmp > $until) { + $continue = false; + break; + } + + if ($dtTmp < $start) { + continue; + } + + if ($constraint instanceof ConstraintInterface && !$constraint->test($dtTmp)) { + if (!$countConstraintFailures) { + if ($constraint->stopsTransformer()) { + $continue = false; + break; + } else { + continue; + } + } + } else { + $dates[$total] = $dtTmp; + } + + if (null !== $count) { + --$count; + if ($count <= 0) { + $continue = false; + break; + } + } + + ++$total; + if ($total > $vLimit) { + $continue = false; + break; + } + } + } else { + foreach ($daySet as $dayOfYear) { + $dtTmp = DateUtil::getDateTimeByDayOfYear($dayOfYear, $dt->format('Y'), $start->getTimezone()); + + foreach ($timeSet as $time) { + /** @var Time $time */ + $dtTmp = $dtTmp->setTime( + $time->hour, + $time->minute, + $time->second + ); + + if (null !== $until && $dtTmp > $until) { + $continue = false; + break; + } + + if ($dtTmp < $start) { + continue; + } + + if ($constraint instanceof ConstraintInterface && !$constraint->test($dtTmp)) { + if (!$countConstraintFailures) { + if ($constraint->stopsTransformer()) { + $continue = false; + break; + } else { + continue; + } + } + } else { + $dates[$total] = clone $dtTmp; + } + + if (null !== $count) { + --$count; + if ($count <= 0) { + $continue = false; + break; + } + } + + ++$total; + if ($total > $vLimit) { + $continue = false; + break; + } + } + + if (!$continue) { + break; + } + } + + if ($total > $vLimit) { + $continue = false; + break; + } + } + + switch ($freq) { + case Frequency::YEARLY: + $year += $rule->getInterval(); + $month = $dt->format('n'); + $dt = $dt->setDate($year, $month, 1); + + // Stop an infinite loop w/ a sane limit + ++$iterations; + if ($iterations > 300 && !count($dates)) { + break 2; + } + break; + case Frequency::MONTHLY: + $month += $rule->getInterval(); + if ($month > 12) { + $delta = floor($month / 12); + $mod = DateUtil::pymod($month, 12); + $month = $mod; + $year += $delta; + if ($month == 0) { + $month = 12; + --$year; + } + } + $dt = $dt->setDate($year, $month, 1); + break; + case Frequency::WEEKLY: + if ($weekStart > $dtInfo->dayOfWeek) { + $delta = ($dtInfo->dayOfWeek + 1 + (6 - $weekStart)) * -1 + $rule->getInterval() * 7; + } else { + $delta = ($dtInfo->dayOfWeek - $weekStart) * -1 + $rule->getInterval() * 7; + } + + $dt = $dt->modify("+$delta day"); + $year = $dt->format('Y'); + $month = $dt->format('n'); + break; + case Frequency::DAILY: + $dt = $dt->modify('+'.$rule->getInterval().' day'); + $year = $dt->format('Y'); + $month = $dt->format('n'); + break; + case Frequency::HOURLY: + $dt = $dt->modify('+'.$rule->getInterval().' hours'); + $year = $dt->format('Y'); + $month = $dt->format('n'); + $hour = $dt->format('G'); + break; + case Frequency::MINUTELY: + $dt = $dt->modify('+'.$rule->getInterval().' minutes'); + $year = $dt->format('Y'); + $month = $dt->format('n'); + $hour = $dt->format('G'); + $minute = $dt->format('i'); + break; + case Frequency::SECONDLY: + $dt = $dt->modify('+'.$rule->getInterval().' seconds'); + $year = $dt->format('Y'); + $month = $dt->format('n'); + $hour = $dt->format('G'); + $minute = $dt->format('i'); + $second = $dt->format('s'); + break; + } + } + + /** @var Recurrence[] $recurrences */ + $recurrences = array(); + foreach ($dates as $key => $start) { + /** @var \DateTimeInterface $end */ + $end = clone $start; + + $recurrences[] = new Recurrence($start, $end->add($durationInterval), $key); + } + + $recurrences = $this->handleInclusions($rule->getRDates(), $recurrences); + $recurrences = $this->handleExclusions($rule->getExDates(), $recurrences); + + return new RecurrenceCollection($recurrences); + } + + /** + * @param DateExclusion[] $exclusions + * @param Recurrence[] $recurrences + * + * @return Recurrence[] + */ + protected function handleExclusions(array $exclusions, array $recurrences) + { + foreach ($exclusions as $exclusion) { + $exclusionDate = $exclusion->date->format('Ymd'); + $exclusionTime = $exclusion->date->format('Ymd\THis'); + $exclusionTimezone = $exclusion->date->getTimezone(); + + foreach ($recurrences as $key => $recurrence) { + $recurrenceDate = $recurrence->getStart(); + + if ($recurrenceDate->getTimezone()->getName() !== $exclusionTimezone->getName()) { + $recurrenceDate = clone $recurrenceDate; + $recurrenceDate = $recurrenceDate->setTimezone($exclusionTimezone); + } + + if (!$exclusion->hasTime && $recurrenceDate->format('Ymd') == $exclusionDate) { + unset($recurrences[$key]); + continue; + } + + if ($exclusion->hasTime && $recurrenceDate->format('Ymd\THis') == $exclusionTime) { + unset($recurrences[$key]); + } + } + } + + return array_values($recurrences); + } + + /** + * @param DateInclusion[] $inclusions + * @param Recurrence[] $recurrences + * + * @return Recurrence[] + */ + protected function handleInclusions(array $inclusions, array $recurrences) + { + foreach ($inclusions as $inclusion) { + $recurrence = new Recurrence(clone $inclusion->date, clone $inclusion->date); + $recurrences[] = $recurrence; + } + + return array_values($recurrences); + } +} diff --git a/vendor/simshaun/recurr/src/Recurr/Transformer/ArrayTransformerConfig.php b/vendor/simshaun/recurr/src/Recurr/Transformer/ArrayTransformerConfig.php new file mode 100644 index 00000000..68350b06 --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/Transformer/ArrayTransformerConfig.php @@ -0,0 +1,65 @@ +virtualLimit = (int) $virtualLimit; + + return $this; + } + + /** + * Get the virtual limit imposed upon infinitely recurring events. + * + * @return int + */ + public function getVirtualLimit() + { + return $this->virtualLimit; + } + + /** + * By default, January 30 + 1 month results in March 30 because February doesn't have 30 days. + * + * Enabling this fix tells Recurr that +1 month means "last day of next month". + */ + public function enableLastDayOfMonthFix() + { + $this->lastDayOfMonthFix = true; + } + + public function disableLastDayOfMonthFix() + { + $this->lastDayOfMonthFix = false; + } + + /** + * @return boolean + */ + public function isLastDayOfMonthFixEnabled() + { + return $this->lastDayOfMonthFix; + } +} diff --git a/vendor/simshaun/recurr/src/Recurr/Transformer/Constraint.php b/vendor/simshaun/recurr/src/Recurr/Transformer/Constraint.php new file mode 100644 index 00000000..2a9cf2a5 --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/Transformer/Constraint.php @@ -0,0 +1,21 @@ +stopsTransformer; + } +} \ No newline at end of file diff --git a/vendor/simshaun/recurr/src/Recurr/Transformer/Constraint/AfterConstraint.php b/vendor/simshaun/recurr/src/Recurr/Transformer/Constraint/AfterConstraint.php new file mode 100644 index 00000000..3baf9a0e --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/Transformer/Constraint/AfterConstraint.php @@ -0,0 +1,64 @@ +after = $after; + $this->inc = $inc; + } + + /** + * Passes if $date is after $after + * + * {@inheritdoc} + */ + public function test(\DateTimeInterface $date) + { + if ($this->inc) { + return $date >= $this->after; + } + + return $date > $this->after; + } + + /** + * @return \DateTimeInterface + */ + public function getAfter() + { + return $this->after; + } + + /** + * @return bool + */ + public function isInc() + { + return $this->inc; + } +} diff --git a/vendor/simshaun/recurr/src/Recurr/Transformer/Constraint/BeforeConstraint.php b/vendor/simshaun/recurr/src/Recurr/Transformer/Constraint/BeforeConstraint.php new file mode 100644 index 00000000..aa94525a --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/Transformer/Constraint/BeforeConstraint.php @@ -0,0 +1,64 @@ +before = $before; + $this->inc = $inc; + } + + /** + * Passes if $date is before $before + * + * {@inheritdoc} + */ + public function test(\DateTimeInterface $date) + { + if ($this->inc) { + return $date <= $this->before; + } + + return $date < $this->before; + } + + /** + * @return \DateTimeInterface + */ + public function getBefore() + { + return $this->before; + } + + /** + * @return bool + */ + public function isInc() + { + return $this->inc; + } +} diff --git a/vendor/simshaun/recurr/src/Recurr/Transformer/Constraint/BetweenConstraint.php b/vendor/simshaun/recurr/src/Recurr/Transformer/Constraint/BetweenConstraint.php new file mode 100644 index 00000000..f16d4916 --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/Transformer/Constraint/BetweenConstraint.php @@ -0,0 +1,81 @@ +after = $after; + $this->before = $before; + $this->inc = $inc; + } + + /** + * Passes if $date is between $after and $before + * + * {@inheritdoc} + */ + public function test(\DateTimeInterface $date) + { + if ($date > $this->before) { + $this->stopsTransformer = true; + } + + if ($this->inc) { + return $date >= $this->after && $date <= $this->before; + } + + return $date > $this->after && $date < $this->before; + } + + /** + * @return \DateTimeInterface + */ + public function getBefore() + { + return $this->before; + } + + /** + * @return \DateTimeInterface + */ + public function getAfter() + { + return $this->after; + } + + /** + * @return bool + */ + public function isInc() + { + return $this->inc; + } +} diff --git a/vendor/simshaun/recurr/src/Recurr/Transformer/ConstraintInterface.php b/vendor/simshaun/recurr/src/Recurr/Transformer/ConstraintInterface.php new file mode 100644 index 00000000..6879554d --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/Transformer/ConstraintInterface.php @@ -0,0 +1,25 @@ +translator = $translator ?: new Translator('en'); + } + + public function transform(Rule $rule) + { + $this->fragments = array(); + + switch ($rule->getFreq()) { + case 0: + $this->addYearly($rule); + break; + case 1: + $this->addMonthly($rule); + break; + case 2: + $this->addWeekly($rule); + break; + case 3: + $this->addDaily($rule); + break; + case 4: + $this->addHourly($rule); + break; + case 5: + case 6: + return $this->translator->trans('Unable to fully convert this rrule to text.'); + } + + $until = $rule->getUntil(); + $count = $rule->getCount(); + if ($until instanceof \DateTimeInterface) { + $dateFormatted = $this->translator->trans('day_date', array('date' => $until->format('U'))); + $this->addFragment($this->translator->trans('until %date%', array('date' => $dateFormatted))); + } else if (!empty($count)) { + if ($this->isPlural($count)) { + $this->addFragment($this->translator->trans('for %count% times', array('count' => $count))); + } else { + $this->addFragment($this->translator->trans('for one time')); + } + } + + if (!$this->isFullyConvertible($rule)) { + $this->addFragment($this->translator->trans('(~ approximate)')); + } + + return implode(' ', $this->fragments); + } + + protected function isFullyConvertible(Rule $rule) + { + if ($rule->getFreq() >= 5) { + return false; + } + + $until = $rule->getUntil(); + $count = $rule->getCount(); + if (!empty($until) && !empty($count)) { + return false; + } + + $bySecond = $rule->getBySecond(); + $byMinute = $rule->getByMinute(); + $byHour = $rule->getByHour(); + + if (!empty($bySecond) || !empty($byMinute) || !empty($byHour)) { + return false; + } + + $byWeekNum = $rule->getByWeekNumber(); + $byYearDay = $rule->getByYearDay(); + if ($rule->getFreq() != 0 && (!empty($byWeekNum) || !empty($byYearDay))) { + return false; + } + + return true; + } + + protected function addYearly(Rule $rule) + { + $interval = $rule->getInterval(); + $byMonth = $rule->getByMonth(); + $byMonthDay = $rule->getByMonthDay(); + $byDay = $rule->getByDay(); + $byYearDay = $rule->getByYearDay(); + $byWeekNum = $rule->getByWeekNumber(); + + if (!empty($byMonth) && count($byMonth) > 1 && $interval == 1) { + $this->addFragment($this->translator->trans('every_month_list')); + } else { + $this->addFragment($this->translator->trans($this->isPlural($interval) ? 'every %count% years' : 'every year', array('count' => $interval))); + } + + $hasNoOrOneByMonth = is_null($byMonth) || count($byMonth) <= 1; + if ($hasNoOrOneByMonth && empty($byMonthDay) && empty($byDay) && empty($byYearDay) && empty($byWeekNum)) { + $this->addFragment($this->translator->trans('on')); + $monthNum = (is_array($byMonth) && count($byMonth)) ? $byMonth[0] : $rule->getStartDate()->format('n'); + $this->addFragment( + $this->translator->trans('day_month', array('month' => $monthNum, 'day' => $rule->getStartDate()->format('d'))) + ); + } elseif (!empty($byMonth)) { + if ($interval != 1) { + $this->addFragment($this->translator->trans('in_month')); + } + + $this->addByMonth($rule); + } + + if (!empty($byMonthDay)) { + $this->addByMonthDay($rule); + $this->addFragment($this->translator->trans('of_the_month')); + } else if (!empty($byDay)) { + $this->addByDay($rule); + } + + if (!empty($byYearDay)) { + $this->addFragment($this->translator->trans('on the')); + $this->addFragment($this->getByYearDayAsText($byYearDay)); + $this->addFragment($this->translator->trans('day')); + } + + if (!empty($byWeekNum)) { + $this->addFragment($this->translator->trans('in_week')); + $this->addFragment($this->translator->trans($this->isPlural(count($byWeekNum)) ? 'weeks' : 'week')); + $this->addFragment($this->getByWeekNumberAsText($byWeekNum)); + } + + if (empty($byMonthDay) && empty($byYearDay) && empty($byDay) && !empty($byWeekNum)) { + $this->addDayOfWeek($rule); + } + } + + protected function addMonthly(Rule $rule) + { + $interval = $rule->getInterval(); + $byMonth = $rule->getByMonth(); + + if (!empty($byMonth) && $interval == 1) { + $this->addFragment($this->translator->trans('every_month_list')); + } else { + $this->addFragment($this->translator->trans($this->isPlural($interval) ? 'every %count% months' : 'every month', array('count' => $interval))); + } + + if (!empty($byMonth)) { + if ($interval != 1) { + $this->addFragment($this->translator->trans('in_month')); + } + + $this->addByMonth($rule); + } + + $byMonthDay = $rule->getByMonthDay(); + $byDay = $rule->getByDay(); + if (!empty($byMonthDay)) { + $this->addByMonthDay($rule); + } else if (!empty($byDay)) { + $this->addByDay($rule); + } + } + + protected function addWeekly(Rule $rule) + { + $interval = $rule->getInterval(); + $byMonth = $rule->getByMonth(); + $byMonthDay = $rule->getByMonthDay(); + $byDay = $rule->getByDay(); + + $this->addFragment($this->translator->trans($this->isPlural($interval) ? 'every %count% weeks' : 'every week', array('count' => $interval))); + + if (empty($byMonthDay) && empty($byDay)) { + $this->addDayOfWeek($rule); + } + + if (!empty($byMonth)) { + $this->addFragment($this->translator->trans('in_month')); + $this->addByMonth($rule); + } + + if (!empty($byMonthDay)) { + $this->addByMonthDay($rule); + $this->addFragment($this->translator->trans('of_the_month')); + } else if (!empty($byDay)) { + $this->addByDay($rule); + } + } + + protected function addDaily(Rule $rule) + { + $interval = $rule->getInterval(); + $byMonth = $rule->getByMonth(); + + $this->addFragment($this->translator->trans($this->isPlural($interval) ? 'every %count% days' : 'every day', array('count' => $interval))); + + if (!empty($byMonth)) { + $this->addFragment($this->translator->trans('in_month')); + $this->addByMonth($rule); + } + + $byMonthDay = $rule->getByMonthDay(); + $byDay = $rule->getByDay(); + if (!empty($byMonthDay)) { + $this->addByMonthDay($rule); + $this->addFragment($this->translator->trans('of_the_month')); + } else if (!empty($byDay)) { + $this->addByDay($rule); + } + } + + protected function addHourly(Rule $rule) + { + $interval = $rule->getInterval(); + $byMonth = $rule->getByMonth(); + + $this->addFragment($this->translator->trans($this->isPlural($interval) ? 'every %count% hours' : 'every hour', array('count' => $interval))); + + if (!empty($byMonth)) { + $this->addFragment($this->translator->trans('in_month')); + $this->addByMonth($rule); + } + + $byMonthDay = $rule->getByMonthDay(); + $byDay = $rule->getByDay(); + if (!empty($byMonthDay)) { + $this->addByMonthDay($rule); + $this->addFragment($this->translator->trans('of_the_month')); + } else if (!empty($byDay)) { + $this->addByDay($rule); + } + } + + protected function addByMonth(Rule $rule) + { + $byMonth = $rule->getByMonth(); + + if (empty($byMonth)) { + return; + } + + $this->addFragment($this->getByMonthAsText($byMonth)); + } + + protected function addByMonthDay(Rule $rule) + { + $byMonthDay = $rule->getByMonthDay(); + $byDay = $rule->getByDay(); + + if (!empty($byDay)) { + $this->addFragment($this->translator->trans('on')); + $this->addFragment($this->getByDayAsText($byDay, 'or')); + $this->addFragment($this->translator->trans('the_for_monthday')); + $this->addFragment($this->getByMonthDayAsText($byMonthDay, 'or')); + } else { + $this->addFragment($this->translator->trans('on the')); + $this->addFragment($this->getByMonthDayAsText($byMonthDay, 'and')); + } + } + + protected function addByDay(Rule $rule) + { + $byDay = $rule->getByDay(); + + $this->addFragment($this->translator->trans('on')); + $this->addFragment($this->getByDayAsText($byDay)); + } + + protected function addDayOfWeek(Rule $rule) + { + $this->addFragment($this->translator->trans('on')); + $dayNames = $this->translator->trans('day_names'); + $this->addFragment($dayNames[$rule->getStartDate()->format('w')]); + } + + public function getByMonthAsText($byMonth) + { + if (empty($byMonth)) { + return ''; + } + + if (count($byMonth) > 1) { + sort($byMonth); + } + + $monthNames = $this->translator->trans('month_names'); + $byMonth = array_map( + function ($monthInt) use ($monthNames) { + return $monthNames[$monthInt - 1]; + }, + $byMonth + ); + + return $this->getListStringFromArray($byMonth); + } + + public function getByDayAsText($byDay, $listSeparator = 'and') + { + if (empty($byDay)) { + return ''; + } + + $map = array( + 'SU' => null, + 'MO' => null, + 'TU' => null, + 'WE' => null, + 'TH' => null, + 'FR' => null, + 'SA' => null + ); + + $dayNames = $this->translator->trans('day_names'); + $timestamp = mktime(1, 1, 1, 1, 12, 2014); // A Sunday + foreach (array_keys($map) as $short) { + $long = $dayNames[date('w', $timestamp)]; + $map[$short] = $long; + $timestamp += 86400; + } + + $numOrdinals = 0; + foreach ($byDay as $key => $short) { + $day = strtoupper($short); + $string = ''; + + if (preg_match('/([+-]?)([0-9]*)([A-Z]+)/', $short, $parts)) { + $symbol = $parts[1]; + $nth = $parts[2]; + $day = $parts[3]; + + if (!empty($nth)) { + ++$numOrdinals; + $string .= $this->getOrdinalNumber($symbol == '-' ? -$nth : $nth); + } + } + + if (!isset($map[$day])) { + throw new \RuntimeException("byDay $short could not be transformed"); + } + + if (!empty($string)) { + $string .= ' '; + } + + $byDay[$key] = ltrim($string.$map[$day]); + } + + $output = $numOrdinals ? $this->translator->trans('the_for_weekday') . ' ' : ''; + if ($output == ' ') { + $output = ''; + } + $output .= $this->getListStringFromArray($byDay, $listSeparator); + + return $output; + } + + public function getByMonthDayAsText($byMonthDay, $listSeparator = 'and') + { + if (empty($byMonthDay)) { + return ''; + } + + // sort negative indices in reverse order so we get e.g. 1st, 2nd, 4th, 3rd last, last day + usort($byMonthDay, function ($a, $b) { + if (($a < 0 && $b < 0) || ($a >= 0 && $b >= 0)) { + return $a - $b; + } + + return $b - $a; + }); + + // generate ordinal numbers and insert a "on the" for clarity in the middle if we have both + // positive and negative ordinals. This is to avoid confusing situations like: + // + // monthly on the 1st and 2nd to the last day + // + // which gets clarified to: + // + // monthly on the 1st day and on the 2nd to the last day + $hadPositives = false; + $hadNegatives = false; + foreach ($byMonthDay as $index => $day) { + $prefix = ''; + if ($day >= 0) { + $hadPositives = true; + } + if ($day < 0) { + if ($hadPositives && !$hadNegatives && $listSeparator === 'and') { + $prefix = $this->translator->trans('on the') . ' '; + } + $hadNegatives = true; + } + $byMonthDay[$index] = $prefix . $this->getOrdinalNumber($day, end($byMonthDay) < 0, true); + } + + return $this->getListStringFromArray($byMonthDay, $listSeparator); + } + + public function getByYearDayAsText($byYearDay) + { + if (empty($byYearDay)) { + return ''; + } + + // sort negative indices in reverse order so we get e.g. 1st, 2nd, 4th, 3rd last, last day + usort($byYearDay, function ($a, $b) { + if (($a < 0 && $b < 0) || ($a >= 0 && $b >= 0)) { + return $a - $b; + } + + return $b - $a; + }); + + $byYearDay = array_map( + array($this, 'getOrdinalNumber'), + $byYearDay, + array_fill(0, count($byYearDay), end($byYearDay) < 0) + ); + + return $this->getListStringFromArray($byYearDay); + } + + public function getByWeekNumberAsText($byWeekNum) + { + if (empty($byWeekNum)) { + return ''; + } + + if (count($byWeekNum) > 1) { + sort($byWeekNum); + } + + return $this->getListStringFromArray($byWeekNum); + } + + protected function addFragment($fragment) + { + if ($fragment && $fragment !== ' ') { + $this->fragments[] = $fragment; + } + } + + public function resetFragments() + { + $this->fragments = array(); + } + + protected function isPlural($number) + { + return $number % 100 != 1; + } + + + protected function getOrdinalNumber($number, $hasNegatives = false, $dayInMonth = false) + { + if (!preg_match('{^-?\d+$}D', $number)) { + throw new \RuntimeException('$number must be a whole number'); + } + + return $this->translator->trans('ordinal_number', array('number' => $number, 'has_negatives' => $hasNegatives, 'day_in_month' => $dayInMonth)); + } + + protected function getListStringFromArray($values, $separator = 'and') + { + $separator = $this->translator->trans($separator); + + if (!is_array($values)) { + throw new \RuntimeException('$values must be an array.'); + } + + $numValues = count($values); + + if (!$numValues) { + return ''; + } + + if ($numValues == 1) { + reset($values); + + return current($values); + } + + if ($numValues == 2) { + return implode(" $separator ", $values); + } + + $lastValue = array_pop($values); + $output = implode(', ', $values); + $output .= " $separator ".$lastValue; + + return $output; + } +} diff --git a/vendor/simshaun/recurr/src/Recurr/Transformer/Translator.php b/vendor/simshaun/recurr/src/Recurr/Transformer/Translator.php new file mode 100644 index 00000000..cf3cb2af --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/Transformer/Translator.php @@ -0,0 +1,42 @@ +loadLocale($fallbackLocale); + if ($locale !== $fallbackLocale) { + $this->loadLocale($locale); + } + } + + public function loadLocale($locale, $path = null) + { + if (!$path) { + $path = __DIR__ . '/../../../translations/' . $locale . '.php'; + } + if (!file_exists($path)) { + throw new \InvalidArgumentException('Locale '.$locale.' could not be found in '.$path); + } + + $this->data = array_merge($this->data, include $path); + } + + public function trans($string, array $params = array()) + { + $res = $this->data[$string]; + if (is_object($res) && is_callable($res)) { + $res = $res($string, $params); + } + + foreach ($params as $key => $val) { + $res = str_replace('%' . $key . '%', $val, $res); + } + + return $res; + } +} diff --git a/vendor/simshaun/recurr/src/Recurr/Transformer/TranslatorInterface.php b/vendor/simshaun/recurr/src/Recurr/Transformer/TranslatorInterface.php new file mode 100644 index 00000000..96e77f4b --- /dev/null +++ b/vendor/simshaun/recurr/src/Recurr/Transformer/TranslatorInterface.php @@ -0,0 +1,8 @@ + + */ +class Weekday +{ + /** + * Weekday number. + * + * 0 = Sunday + * 1 = Monday + * 2 = Tuesday + * 3 = Wednesday + * 4 = Thursday + * 5 = Friday + * 6 = Saturday + * + * @var string + */ + public $weekday; + + /** @var int nth occurrence of the weekday */ + public $num; + + protected $days = array('MO', 'TU', 'WE', 'TH', 'FR', 'SA', 'SU'); + + /** + * @param int|string $weekday 0-6 or MO..SU + * @param null|int $num + * + * @throws InvalidWeekday + */ + public function __construct($weekday, $num) + { + if (is_numeric($weekday) && $weekday > 6 || $weekday < 0) { + throw new InvalidWeekday('Day is not a valid weekday (0-6)'); + } elseif (!is_numeric($weekday) && !in_array($weekday, $this->days)) { + throw new InvalidWeekday('Day is not a valid weekday (SU, MO, ...)'); + } + + if (!is_numeric($weekday)) { + $weekday = array_search($weekday, $this->days); + } + + $this->weekday = $weekday; + $this->num = $num; + } + + public function __toString() + { + return $this->num . $this->days[$this->weekday]; + } +} diff --git a/vendor/simshaun/recurr/translations/da.php b/vendor/simshaun/recurr/translations/da.php new file mode 100644 index 00000000..ba4d6b6f --- /dev/null +++ b/vendor/simshaun/recurr/translations/da.php @@ -0,0 +1,100 @@ + 'Kunne ikke konvertere denne regel til tekst.', + 'for %count% times' => '%count% gange', + 'for one time' => 'en gang', + '(~ approximate)' => '(~ cirka)', + 'until %date%' => 't.o.m. %date%', // e.g. every year until July 4, 2014 + 'day_date' => function ($str, $params) use ($days, $months) { // outputs a day date, e.g. July 4, 2014 + return date('j', $params['date']) . '. '. $months[date('n', $params['date']) - 1].date(', Y', $params['date']); + }, + 'day_month' => function ($str, $params) use ($days, $months) { // outputs a day month, e.g. July 4 + return $params['day'].'. '.$months[$params['month'] - 1]; + }, + 'day_names' => $days, + 'month_names' => $months, + 'and' => 'og', + 'or' => 'eller', + 'in_month' => 'i', // e.g. weekly in January, May and August + 'in_week' => 'i', // e.g. yearly in week 3 + 'on' => 'hver', // e.g. every day on Tuesday, Wednesday and Friday + 'the_for_monthday' => 'den', // e.g. monthly on Tuesday the 1st + 'the_for_weekday' => 'den', // e.g. monthly on the 4th Monday + 'on the' => 'på den', // e.g. every year on the 1st and 200th day + 'of_the_month' => 'i måneden', // e.g. every year on the 2nd or 3rd of the month + 'every %count% years' => 'hvert %count% år', + 'every year' => 'årligt', + 'every_month_list' => 'hver', // e.g. every January, May and August + 'every %count% months' => 'hver %count% måned', + 'every month' => 'månedsvis', + 'every %count% weeks' => 'hver %count% uge', + 'every week' => 'ugenligt', + 'every %count% days' => 'hver %count% dag', + 'every day' => 'dagligt', + 'last' => 'sidste', // e.g. 2nd last Friday + 'days' => 'dage', + 'day' => 'dag', + 'weeks' => 'uger', + 'week' => 'uge', + // formats a number with a prefix e.g. every year on the 1st and 200th day + // negative numbers should be handled as in '5th to the last' or 'last' + // + // if has_negatives is true in the params, it is good form to add 'day' after + // each number, as in: 'every month on the 5th day or 2nd to the last day' or + // it may be confusing like 'every month on the 5th or 2nd to the last day' + 'ordinal_number' => function ($str, $params) { + $number = $params['number']; + + $ends = array(':e', ':a', ':a', ':e', ':e', ':e', ':e', ':e', ':e', ':e'); + $suffix = ''; + + $isNegative = $number < 0; + + if ($number == -1) { + $abbreviation = 'last'; + } else { + if ($isNegative) { + $number = abs($number); + $suffix = ' to the last'; + } + + if (($number % 100) >= 11 && ($number % 100) <= 13) { + $abbreviation = $number.'.'; + } else { + $abbreviation = $number.$ends[$number % 10]; + } + } + + if (!empty($params['has_negatives'])) { + $suffix .= ' dag'; + } + + return $abbreviation . $suffix; + }, +); \ No newline at end of file diff --git a/vendor/simshaun/recurr/translations/de.php b/vendor/simshaun/recurr/translations/de.php new file mode 100644 index 00000000..9c836b84 --- /dev/null +++ b/vendor/simshaun/recurr/translations/de.php @@ -0,0 +1,116 @@ + 'RRule kann nicht vollständig zu Text konvertiert werden.', + 'for %count% times' => '%count% Mal', + 'for one time' => 'einmal', + '(~ approximate)' => '(~ ungefähr)', + 'until %date%' => 'bis %date%', // e.g. every year until July 4, 2014 + 'day_date' => function ($str, $params) use ($days, $months) { // outputs a day date, e.g. 4. Juli, 2014 + return date('j. ', $params['date']) . $months[date('n', $params['date']) - 1] . date(', Y', $params['date']); + }, + 'day_month' => function ($str, $params) use ($days, $months) { // outputs a day month, e.g. July 4 + return $params['day'].'. '.$months[$params['month'] - 1]; + }, + 'day_names' => $days, + 'month_names' => $months, + 'and' => 'und', + 'or' => 'oder', + 'in_month' => 'im', // e.g. weekly in January, May and August + 'in_week' => 'in', // e.g. yearly in week 3 + 'on' => 'am', // e.g. every day on Tuesday, Wednesday and Friday + 'the_for_monthday' => 'dem', // e.g. monthly on Tuesday the 1st + 'the_for_weekday' => '', // e.g. monthly on the 4th Monday + 'on the' => 'am', // e.g. every year on the 1st and 200th day + 'of_the_month' => 'des Monats', // e.g. every year on the 2nd or 3rd of the month + 'every %count% years' => 'alle %count% Jahre', + 'every year' => 'jährlich', + 'every_month_list' => 'jeden', // e.g. every January, May and August + 'every %count% months' => 'alle %count% Monate', + 'every month' => 'monatlich', + 'every %count% weeks' => 'alle %count% Wochen', + 'every week' => 'wöchentlich', + 'every %count% days' => 'alle %count% Tage', + 'every day' => 'täglich', + 'every %count% hours' => 'alle %count% Stunden', + 'every hour' => 'stündlich', + 'last' => 'letzte', // e.g. 2nd last Friday + 'days' => 'Tage', + 'day' => 'Tag', + 'weeks' => 'Wochen', + 'week' => 'Woche', + 'hours' => 'Stunden', + 'hour' => 'stündlich', + // formats a number with a prefix e.g. every year on the 1st and 200th day + // negative numbers should be handled as in '5th to the last' or 'last' + // + // if has_negatives is true in the params, it is good form to add 'day' after + // each number, as in: 'every month on the 5th day or 2nd to the last day' or + // it may be confusing like 'every month on the 5th or 2nd to the last day' + 'ordinal_number' => function ($str, $params) { + $number = $params['number']; + + $suffix = ''; + $isNegative = $number < 0; + + if ($number == -1) { + $abbreviation = 'letzten'; + } elseif ($number == -2) { + $abbreviation = 'vorletzten'; + } elseif ($number == -3) { + $abbreviation = 'drittletzten'; + } elseif ($number == -4) { + $abbreviation = 'viertletzten'; + } elseif ($number == -5) { + $abbreviation = 'fünftletzten'; + } elseif ($number == -6) { + $abbreviation = 'sechstletzten'; + } elseif ($number == -7) { + $abbreviation = 'siebtletzten'; + } elseif ($number == -8) { + $abbreviation = 'achtletzten'; + } elseif ($number == -9) { + $abbreviation = 'neuntletzten'; + } elseif ($number == -10) { + $abbreviation = 'zehntletzten'; + } elseif ($number == -11) { + $abbreviation = 'elftletzten'; + } elseif ($isNegative) { + $number = abs($number); + $abbreviation = $number . 't letzten'; + } else { + $abbreviation = $number . '.'; + } + + if (!empty($params['has_negatives']) && $isNegative) { + $suffix .= ' Tag'; + } + + return $abbreviation . $suffix; + }, +); diff --git a/vendor/simshaun/recurr/translations/el.php b/vendor/simshaun/recurr/translations/el.php new file mode 100644 index 00000000..dc8c3449 --- /dev/null +++ b/vendor/simshaun/recurr/translations/el.php @@ -0,0 +1,110 @@ + 'Αδυναμία πλήρους μετατροπής αυτού του κανόνα rrule σε κείμενο.', + 'for %count% times' => 'για %count% φορές', + 'for one time' => 'για μία φορά', + '(~ approximate)' => '(~ κατά προσέγγιση)', + 'until %date%' => 'μέχρι %date%', // e.g. every year until July 4, 2014 + 'day_date' => function ($str, $params) use ($days, $months_genitive) { // outputs a day date, e.g. 4 Ιουλίου 2014 + return date('j', $params['date']) . ' ' . $months_genitive[date('n', $params['date']) - 1] . ' '. date('Y', $params['date']); + }, + 'day_month' => function ($str, $params) use ($days, $months_genitive) { // outputs a day month, e.g. 4 Ιουλίου + return $params['day'] . ' ' . $months_genitive[$params['month'] - 1]; + }, + 'day_names' => $days, + 'month_names' => $months, + 'and' => 'και', + 'or' => 'ή', + 'in_month' => 'τον', // e.g. weekly in January, May and August + 'in_week' => 'την', // e.g. yearly in week 3 + 'on' => 'την', // e.g. every day on Tuesday, Wednesday and Friday + 'the_for_monthday' => 'την', // e.g. monthly on Tuesday the 1st + 'the_for_weekday' => 'την', // e.g. monthly on the 4th Monday + 'on the' => 'την', // e.g. every year on the 1st and 200th day + 'of_the_month' => 'του μήνα', // e.g. every year on the 2nd or 3rd of the month + 'every %count% years' => 'κάθε %count% χρόνια', + 'every year' => 'ετήσια', + 'every_month_list' => 'κάθε', // e.g. every January, May and August + 'every %count% months' => 'κάθε %count% μήνες', + 'every month' => 'μηνιαία', + 'every %count% weeks' => 'κάθε %count% εβδομάδες', + 'every week' => 'εβδομαδιαία', + 'every %count% days' => 'κάθε %count% ημέρες', + 'every day' => 'καθημερινά', + 'last' => 'τελευταία', // e.g. 2nd last Friday + 'days' => 'ημέρες', + 'day' => 'ημέρα', + 'weeks' => 'εβδομάδες', + 'week' => 'εβδομάδα', + // formats a number with a prefix e.g. every year on the 1st and 200th day + // negative numbers should be handled as in '5th to the last' or 'last' + // + // if has_negatives is true in the params, it is good form to add 'day' after + // each number, as in: 'every month on the 5th day or 2nd to the last day' or + // it may be confusing like 'every month on the 5th or 2nd to the last day' + 'ordinal_number' => function ($str, $params) { + $number = $params['number']; + + $ends = 'η'; + $suffix = ''; + + $isNegative = $number < 0; + + if ($number == -1) { + $abbreviation = 'τελευταία'; + } else { + if ($isNegative) { + $number = abs($number); + $suffix = ' μέχρι την τελευταία'; + } + + $abbreviation = $number . $ends; + } + + if (!empty($params['has_negatives'])) { + $suffix .= ' ημέρα'; + } + + return $abbreviation . $suffix; + }, +); diff --git a/vendor/simshaun/recurr/translations/en.php b/vendor/simshaun/recurr/translations/en.php new file mode 100644 index 00000000..a7c1276b --- /dev/null +++ b/vendor/simshaun/recurr/translations/en.php @@ -0,0 +1,104 @@ + 'Unable to fully convert this rrule to text.', + 'for %count% times' => 'for %count% times', + 'for one time' => 'once', + '(~ approximate)' => '(~ approximate)', + 'until %date%' => 'until %date%', // e.g. every year until July 4, 2014 + 'day_date' => function ($str, $params) use ($days, $months) { // outputs a day date, e.g. July 4, 2014 + return $months[date('n', $params['date']) - 1] . ' '. date('j, Y', $params['date']); + }, + 'day_month' => function ($str, $params) use ($days, $months) { // outputs a day month, e.g. July 4 + return $months[$params['month'] - 1] . ' '. $params['day']; + }, + 'day_names' => $days, + 'month_names' => $months, + 'and' => 'and', + 'or' => 'or', + 'in_month' => 'in', // e.g. weekly in January, May and August + 'in_week' => 'in', // e.g. yearly in week 3 + 'on' => 'on', // e.g. every day on Tuesday, Wednesday and Friday + 'the_for_monthday' => 'the', // e.g. monthly on Tuesday the 1st + 'the_for_weekday' => 'the', // e.g. monthly on the 4th Monday + 'on the' => 'on the', // e.g. every year on the 1st and 200th day + 'of_the_month' => 'of the month', // e.g. every year on the 2nd or 3rd of the month + 'every %count% years' => 'every %count% years', + 'every year' => 'yearly', + 'every_month_list' => 'every', // e.g. every January, May and August + 'every %count% months' => 'every %count% months', + 'every month' => 'monthly', + 'every %count% weeks' => 'every %count% weeks', + 'every week' => 'weekly', + 'every %count% days' => 'every %count% days', + 'every day' => 'daily', + 'every %count% hours' => 'every %count% hours', + 'every hour' => 'hourly', + 'last' => 'last', // e.g. 2nd last Friday + 'days' => 'days', + 'day' => 'day', + 'weeks' => 'weeks', + 'week' => 'week', + 'hours' => 'hours', + 'hour' => 'hour', + // formats a number with a prefix e.g. every year on the 1st and 200th day + // negative numbers should be handled as in '5th to the last' or 'last' + // + // if has_negatives is true in the params, it is good form to add 'day' after + // each number, as in: 'every month on the 5th day or 2nd to the last day' or + // it may be confusing like 'every month on the 5th or 2nd to the last day' + 'ordinal_number' => function ($str, $params) { + $number = $params['number']; + + $ends = array('th', 'st', 'nd', 'rd', 'th', 'th', 'th', 'th', 'th', 'th'); + $suffix = ''; + + $isNegative = $number < 0; + + if ($number == -1) { + $abbreviation = 'last'; + } else { + if ($isNegative) { + $number = abs($number); + $suffix = ' to the last'; + } + + if (($number % 100) >= 11 && ($number % 100) <= 13) { + $abbreviation = $number.'th'; + } else { + $abbreviation = $number.$ends[$number % 10]; + } + } + + if (!empty($params['has_negatives'])) { + $suffix .= ' day'; + } + + return $abbreviation . $suffix; + }, +); diff --git a/vendor/simshaun/recurr/translations/es.php b/vendor/simshaun/recurr/translations/es.php new file mode 100644 index 00000000..991ad1d6 --- /dev/null +++ b/vendor/simshaun/recurr/translations/es.php @@ -0,0 +1,100 @@ + 'No se puede convertir completamente este RRULE al texto.', + 'for %count% times' => 'para %count% veces', + 'for one time' => 'por una vez', + '(~ approximate)' => '(~ aproximado)', + 'until %date%' => 'hasta %date%', // e.g. every year until July 4, 2014 + 'day_date' => function ($str, $params) use ($days, $months) { // outputs a day date, e.g. July 4, 2014 + return $months[date('n', $params['date']) - 1] . ' '. date('j, Y', $params['date']); + }, + 'day_month' => function ($str, $params) use ($days, $months) { // outputs a day month, e.g. July 4 + return $months[$params['month'] - 1] . ' '. $params['day']; + }, + 'day_names' => $days, + 'month_names' => $months, + 'and' => 'y', + 'or' => 'o', + 'in_month' => 'en', // e.g. weekly in January, May and August + 'in_week' => 'en', // e.g. yearly in week 3 + 'on' => 'en', // e.g. every day on Tuesday, Wednesday and Friday + 'the_for_monthday' => 'el', // e.g. monthly on Tuesday the 1st + 'the_for_weekday' => 'en el', // e.g. monthly on the 4th Monday + 'on the' => 'en el', // e.g. every year on the 1st and 200th day + 'of_the_month' => 'del mes', // e.g. every year on the 2nd or 3rd of the month + 'every %count% years' => 'cada %count% años', + 'every year' => 'anual', + 'every_month_list' => 'cada', // e.g. every January, May and August + 'every %count% months' => 'cada %count% meses', + 'every month' => 'mensual', + 'every %count% weeks' => 'cada %count% semanas', + 'every week' => 'cada semana', + 'every %count% days' => 'cada %count% días', + 'every day' => 'diariamente', + 'last' => 'pasado', // e.g. 2nd last Friday + 'days' => 'día', + 'day' => 'el día', + 'weeks' => 'semanas', + 'week' => 'semana', + // formats a number with a prefix e.g. every year on the 1st and 200th day + // negative numbers should be handled as in '5th to the last' or 'last' + // + // if has_negatives is true in the params, it is good form to add 'day' after + // each number, as in: 'every month on the 5th day or 2nd to the last day' or + // it may be confusing like 'every month on the 5th or 2nd to the last day' + 'ordinal_number' => function ($str, $params) { + $number = $params['number']; + + $ends = array('a', 'a', 'nd', 'a', 'a', 'a', 'a', 'a', 'a', 'a'); + $suffix = ''; + + $isNegative = $number < 0; + + if ($number == -1) { + $abbreviation = 'último'; + } else { + if ($isNegative) { + $number = abs($number); + $suffix = ' a la última'; + } + + if (($number % 100) >= 11 && ($number % 100) <= 13) { + $abbreviation = $number.'a'; + } else { + $abbreviation = $number.$ends[$number % 10]; + } + } + + if (!empty($params['has_negatives'])) { + $suffix .= ' día'; + } + + return $abbreviation . $suffix; + }, +); diff --git a/vendor/simshaun/recurr/translations/eu.php b/vendor/simshaun/recurr/translations/eu.php new file mode 100644 index 00000000..1c3adba1 --- /dev/null +++ b/vendor/simshaun/recurr/translations/eu.php @@ -0,0 +1,43 @@ + 'Ezin izan da rrule testura osoki bihurtu.', + 'for %count% times' => '%count% aldiz', + 'for %count% time' => '%count% aldia', + '(~ approximate)' => '(~ inguru)', + 'until %date%' => '%date% arte', // e.g. every year until July 4, 2014 + 'day_date' => defined('PHP_WINDOWS_VERSION_BUILD') ? '%B %#d, %Y' : '%B %e, %Y', + 'and' => 'eta', + 'or' => 'edo', + 'in' => 'hilabete hauetan:', // e.g. every week in January, May and August + 'on' => 'egun hauetan:', // e.g. every day on Tuesday, Wednesday and Friday + 'the' => '', + 'on the' => '', // e.g. every year on the 1st and 200th day + 'every %count% years' => '%count% urtero', + 'every year' => 'urtero', + 'every_month_list' => 'hilabete hauetan', // e.g. every January, May and August + 'every %count% months' => '%count% hilabetero', + 'every month' => 'hilabetero', + 'every %count% weeks' => '%count% astero', + 'every week' => 'astero', + 'every %count% days' => '%count% egunero', + 'every day' => 'egunero', + 'last' => 'azken', // e.g. 2nd last Friday + 'days' => 'egun', + 'day' => 'egun', + 'weeks' => 'aste', + 'week' => 'aste', + 'ordinal_number' => function ($str, $params) { // formats a number with a prefix e.g. every year on the 1st and 200th day + $number = $params['number']; + + $ends = array('garren', 'go', 'garren', 'garren', 'garren', 'garren', 'garren', 'garren', 'garren', 'garren'); + + if (($number % 100) >= 11 && ($number % 100) <= 13) { + $abbreviation = $number.'garren'; + } else { + $abbreviation = $number.$ends[$number % 10]; + } + + return $abbreviation; + }, +); diff --git a/vendor/simshaun/recurr/translations/fr.php b/vendor/simshaun/recurr/translations/fr.php new file mode 100644 index 00000000..6bc44a73 --- /dev/null +++ b/vendor/simshaun/recurr/translations/fr.php @@ -0,0 +1,103 @@ + 'Cette règle de récurrence n\'a pas pu être convertie en texte.', + 'for %count% times' => '%count% fois', + 'for one time' => 'une fois', + '(~ approximate)' => '(~ approximation)', + 'until %date%' => 'jusqu\'au %date%', // e.g. every year until July 4, 2014 + 'day_date' => function ($str, $params) use ($days, $months) { // outputs a day date, e.g. 4 juillet, 2014 + return date('j ', $params['date']) . $months[date('n', $params['date']) - 1] . date(', Y', $params['date']); + }, + 'day_month' => function ($str, $params) use ($days, $months) { // outputs a day month, e.g. July 4 + return $params['day'].' '.$months[$params['month'] - 1]; + }, + 'day_names' => $days, + 'month_names' => $months, + 'and' => 'et', + 'or' => 'ou', + 'in_month' => 'en', // e.g. weekly in January, May and August + 'in_week' => 'en', // e.g. yearly in week 3 + 'on' => 'le', // e.g. every day on Tuesday, Wednesday and Friday + 'the_for_monthday' => 'le', // e.g. monthly on Tuesday the 1st + 'the_for_weekday' => '', // e.g. monthly on the 4th Monday + 'on the' => 'le', // e.g. every year on the 1st and 200th day + 'of_the_month' => 'du mois', // e.g. every year on the 2nd or 3rd of the month + 'every %count% years' => 'tous les %count% ans', + 'every year' => 'chaque année', + 'every_month_list' => 'chaque', // e.g. every January, May and August + 'every %count% months' => 'tous les %count% mois', + 'every month' => 'chaque mois', + 'every %count% weeks' => 'toutes les %count% semaines', + 'every week' => 'chaque semaine', + 'every %count% days' => 'tous les %count% jours', + 'every day' => 'chaque jour', + 'every %count% hours' => 'toutes les %count% heures', + 'every hour' => 'chaque heure', + 'last' => 'dernier', // e.g. 2nd last Friday + 'days' => 'jours', + 'day' => 'jour', + 'weeks' => 'semaines', + 'week' => 'semaine', + 'hours' => 'heures', + 'hour' => 'heure', + // formats a number with a prefix e.g. every year on the 1st and 200th day + // negative numbers should be handled as in '5th to the last' or 'last' + // + // if has_negatives is true in the params, it is good form to add 'day' after + // each number, as in: 'every month on the 5th day or 2nd to the last day' or + // it may be confusing like 'every month on the 5th or 2nd to the last day' + 'ordinal_number' => function ($str, $params) { + $number = $params['number']; + + $suffix = ''; + $isNegative = $number < 0; + + if ($number == -1) { + $abbreviation = 'dernier'; + } elseif ($number == -2) { + $abbreviation = 'avant dernier'; + } elseif ($isNegative) { + $number = abs($number); + $abbreviation = $number . 'ème au dernier'; + } elseif ($number == 1 && (!$params['day_in_month'])) { + $abbreviation = $number . 'er'; + } else if (!$params['day_in_month']) { + $abbreviation = $number . 'ème'; + } + else { + $abbreviation = $number; + } + + if (!empty($params['has_negatives'])) { + $suffix .= ' jour'; + } + + return $abbreviation . $suffix; + }, +); diff --git a/vendor/simshaun/recurr/translations/it.php b/vendor/simshaun/recurr/translations/it.php new file mode 100644 index 00000000..9f4d4c01 --- /dev/null +++ b/vendor/simshaun/recurr/translations/it.php @@ -0,0 +1,116 @@ + 'Non è possibile convertire questo rrule in testo.', + 'for %count% times' => 'per %count% volte', + 'for one time' => 'per una volta', + '(~ approximate)' => '(~ approssimato)', + 'until %date%' => 'fino al %date%', // e.g. every year until July 4, 2014 + 'day_date' => function ($str, $params) use ($days, $months) { // outputs a day date, e.g. 4 luglio, 2014 + return date('j ', $params['date']) . $months[date('n', $params['date']) - 1] . date(', Y', $params['date']); + }, + 'day_month' => function ($str, $params) use ($days, $months) { // outputs a day month, e.g. July 4 + return $params['day'].' '.$months[$params['month'] - 1]; + }, + 'day_names' => $days, + 'month_names' => $months, + 'and' => 'e', + 'or' => 'o', + 'in_month' => 'in', // e.g. weekly in January, May and August + 'in_week' => 'in', // e.g. yearly in week 3 + 'on' => 'il', // e.g. every day on Tuesday, Wednesday and Friday + 'the_for_monthday' => 'il', // e.g. monthly on Tuesday the 1st + 'the_for_weekday' => 'il', // e.g. monthly on the 4th Monday + 'on the' => 'il', // e.g. every year on the 1st and 200th day + 'of_the_month' => 'del mese', // e.g. every year on the 2nd or 3rd of the month + 'every %count% years' => 'ogni %count% anni', + 'every year' => 'ogni anno', + 'every_month_list' => 'ogni', // e.g. every January, May and August + 'every %count% months' => 'ogni %count% mesi', + 'every month' => 'ogni mese', + 'every %count% weeks' => 'ogni %count% settimane', + 'every week' => 'ogni settimana', + 'every %count% days' => 'ogni %count% giorni', + 'every day' => 'ogni giorno', + 'every %count% hours' => 'ogni %count% ore', + 'every hour' => 'ogni ora', + 'last' => 'scorso', // e.g. 2nd last Friday + 'days' => 'giorni', + 'day' => 'giorno', + 'weeks' => 'settimane', + 'week' => 'settimana', + 'hours' => 'ore', + 'hour' => 'ora', + // formats a number with a prefix e.g. every year on the 1st and 200th day + // negative numbers should be handled as in '5th to the last' or 'last' + // + // if has_negatives is true in the params, it is good form to add 'day' after + // each number, as in: 'every month on the 5th day or 2nd to the last day' or + // it may be confusing like 'every month on the 5th or 2nd to the last day' + 'ordinal_number' => function ($str, $params) { + $number = $params['number']; + + $suffix = ''; + $isNegative = $number < 0; + + if ($number == -1) { + $abbreviation = 'ultimo'; + } elseif ($number == -2) { + $abbreviation = 'penultimo'; + } elseif ($number == -3) { + $abbreviation = 'terzultimo'; + } elseif ($number == -4) { + $abbreviation = 'quarto ultimo'; + } elseif ($number == -5) { + $abbreviation = 'quinta ultimo'; + } elseif ($number == -6) { + $abbreviation = 'sesto ultimo'; + } elseif ($number == -7) { + $abbreviation = 'settimo ultimo'; + } elseif ($number == -8) { + $abbreviation = 'otto ultimo'; + } elseif ($number == -9) { + $abbreviation = 'nono ultimo'; + } elseif ($number == -10) { + $abbreviation = 'decimo ultimo'; + } elseif ($number == -11) { + $abbreviation = 'undici ultimo'; + } elseif ($isNegative) { + $number = abs($number); + $abbreviation = $number . ' ultimo'; + } else { + $abbreviation = $number; + } + + if (!empty($params['has_negatives'])) { + $suffix .= ' giorno'; + } + + return $abbreviation . $suffix; + }, +); diff --git a/vendor/simshaun/recurr/translations/nl.php b/vendor/simshaun/recurr/translations/nl.php new file mode 100644 index 00000000..77b2718c --- /dev/null +++ b/vendor/simshaun/recurr/translations/nl.php @@ -0,0 +1,100 @@ + 'Unable to fully convert this rrule to text.', + 'for %count% times' => 'voor %count% keer', + 'for one time' => 'eenmalig', + '(~ approximate)' => '(~ ongeveer)', + 'until %date%' => 'tot en met %date%', // e.g. every year until July 4, 2014 + 'day_date' => function ($str, $params) use ($days, $months) { // outputs a day date, e.g. July 4, 2014 + return date('j', $params['date']).' '.$months[date('n', $params['date']) - 1] . ' '. date('Y', $params['date']); + }, + 'day_month' => function ($str, $params) use ($days, $months) { // outputs a day month, e.g. July 4 + return $params['day'].' '.$months[$params['month'] - 1]; + }, + 'day_names' => $days, + 'month_names' => $months, + 'and' => 'en', + 'or' => 'of', + 'in_month' => 'op', // e.g. weekly in January, May and August + 'in_week' => 'op', // e.g. yearly in week 3 + 'on' => 'op', // e.g. every day on Tuesday, Wednesday and Friday + 'the_for_monthday' => 'de', // e.g. monthly on Tuesday the 1st + 'the_for_weekday' => 'de', // e.g. monthly on the 4th Monday + 'on the' => 'op de', // e.g. every year on the 1st and 200th day + 'of_the_month' => 'van de maand', // e.g. every year on the 2nd or 3rd of the month + 'every %count% years' => 'elke %count% jaar', + 'every year' => 'jaarlijks', + 'every_month_list' => 'elke', // e.g. every January, May and August + 'every %count% months' => 'elke %count% maanden', + 'every month' => 'maandelijks', + 'every %count% weeks' => 'elke %count% weken', + 'every week' => 'wekelijks', + 'every %count% days' => 'elke %count% dagen', + 'every day' => 'dagelijks', + 'last' => 'laatste', // e.g. 2nd last Friday + 'days' => 'dagen', + 'day' => 'dag', + 'weeks' => 'weken', + 'week' => 'week', + // formats a number with a prefix e.g. every year on the 1st and 200th day + // negative numbers should be handled as in '5th to the last' or 'last' + // + // if has_negatives is true in the params, it is good form to add 'day' after + // each number, as in: 'every month on the 5th day or 2nd to the last day' or + // it may be confusing like 'every month on the 5th or 2nd to the last day' + 'ordinal_number' => function ($str, $params) { + $number = $params['number']; + + $ends = array('ste', 'de', 'de', 'de', 'de', 'de', 'de', 'de', 'de', 'de'); + $suffix = ''; + + $isNegative = $number < 0; + + if ($number == -1) { + $abbreviation = 'laatste'; + } else { + if ($isNegative) { + $number = abs($number); + $suffix = ' na laatste'; + } + + if (($number % 100) >= 11 && ($number % 100) <= 13) { + $abbreviation = $number.'ste'; + } else { + $abbreviation = $number.$ends[$number % 10]; + } + } + + if (!empty($params['has_negatives'])) { + $suffix .= ' dag'; + } + + return $abbreviation . $suffix; + }, +); diff --git a/vendor/simshaun/recurr/translations/no.php b/vendor/simshaun/recurr/translations/no.php new file mode 100644 index 00000000..e7b5c950 --- /dev/null +++ b/vendor/simshaun/recurr/translations/no.php @@ -0,0 +1,100 @@ + 'Kunne ikke konvertere rrule til tekst.', + 'for %count% times' => '%count% ganger', + 'for one time' => 'en gang', + '(~ approximate)' => '(~ omtrent)', + 'until %date%' => 'frem til %date%', // e.g. every year until July 4, 2014 + 'day_date' => function ($str, $params) use ($days, $months) { // outputs a day date, e.g. July 4, 2014 + return $months[date('n', $params['date']) - 1] . ' '. date('j, Y', $params['date']); + }, + 'day_month' => function ($str, $params) use ($days, $months) { // outputs a day month, e.g. July 4 + return $months[$params['month'] - 1] . ' '. $params['day']; + }, + 'day_names' => $days, + 'month_names' => $months, + 'and' => 'og', + 'or' => 'eller', + 'in_month' => 'i', // e.g. weekly in January, May and August + 'in_week' => 'i', // e.g. yearly in week 3 + 'on' => 'p', // e.g. every day on Tuesday, Wednesday and Friday + 'the_for_monthday' => 'den', // e.g. monthly on Tuesday the 1st + 'the_for_weekday' => 'den', // e.g. monthly on the 4th Monday + 'on the' => 'p den', // e.g. every year on the 1st and 200th day + 'of_the_month' => 'i mneden', // e.g. every year on the 2nd or 3rd of the month + 'every %count% years' => 'hvert %count% r', + 'every year' => 'rlig', + 'every_month_list' => 'hver', // e.g. every January, May and August + 'every %count% months' => 'hver %count% mned', + 'every month' => 'mnedlig', + 'every %count% weeks' => 'hver %count% uke', + 'every week' => 'ukentlig', + 'every %count% days' => 'hver %count% dag', + 'every day' => 'daglig', + 'last' => 'siste', // e.g. 2nd last Friday + 'days' => 'dager', + 'day' => 'dag', + 'weeks' => 'uker', + 'week' => 'uke', + // formats a number with a prefix e.g. every year on the 1st and 200th day + // negative numbers should be handled as in '5th to the last' or 'last' + // + // if has_negatives is true in the params, it is good form to add 'day' after + // each number, as in: 'every month on the 5th day or 2nd to the last day' or + // it may be confusing like 'every month on the 5th or 2nd to the last day' + 'ordinal_number' => function ($str, $params) { + $number = $params['number']; + + $ends = array('th', 'st', 'nd', 'rd', 'th', 'th', 'th', 'th', 'th', 'th'); + $suffix = ''; + + $isNegative = $number < 0; + + if ($number == -1) { + $abbreviation = 'sist'; + } else { + if ($isNegative) { + $number = abs($number); + $suffix = ' til den siste'; + } + + if (($number % 100) >= 11 && ($number % 100) <= 13) { + $abbreviation = $number.'th'; + } else { + $abbreviation = $number.$ends[$number % 10]; + } + } + + if (!empty($params['has_negatives'])) { + $suffix .= ' dag'; + } + + return $abbreviation . $suffix; + }, +); diff --git a/vendor/simshaun/recurr/translations/pt-br.php b/vendor/simshaun/recurr/translations/pt-br.php new file mode 100644 index 00000000..b92b5dc3 --- /dev/null +++ b/vendor/simshaun/recurr/translations/pt-br.php @@ -0,0 +1,87 @@ + 'Não foi possível converter esta regra para texto.', + 'for %count% times' => 'por %count% vezes', + 'for one time' => 'uma vez', + '(~ approximate)' => '(~ approximado)', + 'until %date%' => 'até %date%', // e.g. every year until July 4, 2014 + 'day_date' => function ($str, $params) use ($days, $months) { // outputs a day date, e.g. July 4, 2014 + return date('j', $params['date']) . ' de ' . $months[date('n', $params['date']) - 1] . ' de ' . date('Y', $params['date']); + }, + 'day_month' => function ($str, $params) use ($days, $months) { // outputs a day month, e.g. July 4 + return $params['day'].' de '.$months[$params['month'] - 1]; + }, + 'day_names' => $days, + 'month_names' => $months, + 'and' => 'e', + 'or' => 'ou', + 'in_month' => 'em', // e.g. weekly in January, May and August + 'in_week' => 'na', // e.g. yearly in week 3 + 'on' => 'à', // e.g. every day on Tuesday, Wednesday and Friday + 'the_for_monthday' => 'o', // e.g. monthly on Tuesday the 1st + 'the_for_weekday' => 'o', // e.g. monthly on the 4th Monday + 'on the' => 'no', // e.g. every year on the 1st and 200th day + 'of_the_month' => 'do mês', // e.g. every year on the 2nd or 3rd of the month + 'every %count% years' => 'a cada %count% anos', + 'every year' => 'anualmente', + 'every_month_list' => 'sempre em', // e.g. every January, May and August + 'every %count% months' => 'a cada %count% meses', + 'every month' => 'mensalmente', + 'every %count% weeks' => 'a cada %count% semanas', + 'every week' => 'semanalmente', + 'every %count% days' => 'a cada %count% dias', + 'every day' => 'diariamente', + 'last' => 'último', // e.g. 2nd last Friday + 'days' => 'dias', + 'day' => 'dia', + 'weeks' => 'semanas', + 'week' => 'semana', + // formats a number with a prefix e.g. every year on the 1st and 200th day + // negative numbers should be handled as in '5th to the last' or 'last' + // + // if has_negatives is true in the params, it is good form to add 'day' after + // each number, as in: 'every month on the 5th day or 2nd to the last day' or + // it may be confusing like 'every month on the 5th or 2nd to the last day' + 'ordinal_number' => function ($str, $params) { + $number = $params['number']; + + $abbreviation = $number.'°'; + $isNegative = $number < 0; + if ($isNegative) { + $abbreviation = $abbreviation.' último'; + } + + $suffix = ''; + if (!empty($params['has_negatives'])) { + $suffix .= ' dia'; + } + + return $abbreviation . $suffix; + }, +); diff --git a/vendor/simshaun/recurr/translations/sv.php b/vendor/simshaun/recurr/translations/sv.php new file mode 100644 index 00000000..0dafeaed --- /dev/null +++ b/vendor/simshaun/recurr/translations/sv.php @@ -0,0 +1,100 @@ + 'Kunde inte konvertera denna rrule till text.', + 'for %count% times' => '%count% gånger', + 'for one time' => 'en gång', + '(~ approximate)' => '(~ ungefärlig)', + 'until %date%' => 't.o.m. %date%', // e.g. every year until July 4, 2014 + 'day_date' => function ($str, $params) use ($days, $months) { // outputs a day date, e.g. July 4, 2014 + return $months[date('n', $params['date']) - 1] . ' '. date('j, Y', $params['date']); + }, + 'day_month' => function ($str, $params) use ($days, $months) { // outputs a day month, e.g. July 4 + return $months[$params['month'] - 1].' '.$params['day']; + }, + 'day_names' => $days, + 'month_names' => $months, + 'and' => 'och', + 'or' => 'eller', + 'in_month' => 'i', // e.g. weekly in January, May and August + 'in_week' => 'i', // e.g. yearly in week 3 + 'on' => 'på', // e.g. every day on Tuesday, Wednesday and Friday + 'the_for_monthday' => 'den', // e.g. monthly on Tuesday the 1st + 'the_for_weekday' => 'den', // e.g. monthly on the 4th Monday + 'on the' => 'på den', // e.g. every year on the 1st and 200th day + 'of_the_month' => 'i månaden', // e.g. every year on the 2nd or 3rd of the month + 'every %count% years' => 'varje %count% år', + 'every year' => 'årligen', + 'every_month_list' => 'varje', // e.g. every January, May and August + 'every %count% months' => 'varje %count% månad', + 'every month' => 'månadsvis', + 'every %count% weeks' => 'varje %count% vecka', + 'every week' => 'veckovis', + 'every %count% days' => 'varje %count% dag', + 'every day' => 'dagligen', + 'last' => 'sista', // e.g. 2nd last Friday + 'days' => 'dagar', + 'day' => 'dag', + 'weeks' => 'veckor', + 'week' => 'vecka', + // formats a number with a prefix e.g. every year on the 1st and 200th day + // negative numbers should be handled as in '5th to the last' or 'last' + // + // if has_negatives is true in the params, it is good form to add 'day' after + // each number, as in: 'every month on the 5th day or 2nd to the last day' or + // it may be confusing like 'every month on the 5th or 2nd to the last day' + 'ordinal_number' => function ($str, $params) { + $number = $params['number']; + + $ends = array(':e', ':a', ':a', ':e', ':e', ':e', ':e', ':e', ':e', ':e'); + $suffix = ''; + + $isNegative = $number < 0; + + if ($number == -1) { + $abbreviation = 'last'; + } else { + if ($isNegative) { + $number = abs($number); + $suffix = ' to the last'; + } + + if (($number % 100) >= 11 && ($number % 100) <= 13) { + $abbreviation = $number.'th'; + } else { + $abbreviation = $number.$ends[$number % 10]; + } + } + + if (!empty($params['has_negatives'])) { + $suffix .= ' dag'; + } + + return $abbreviation . $suffix; + }, +); diff --git a/vendor/simshaun/recurr/translations/tr.php b/vendor/simshaun/recurr/translations/tr.php new file mode 100644 index 00000000..33d5295a --- /dev/null +++ b/vendor/simshaun/recurr/translations/tr.php @@ -0,0 +1,100 @@ + 'Bu rrule tam metne dönüştürülemiyor.', + 'for %count% times' => '%count% kez', + 'for one time' => 'bir kere', + '(~ approximate)' => '(~ yaklaşık)', + 'until %date%' => 'kadar %date%', // e.g. 4 Temmuz 2014 e kadar her yıl + 'day_date' => function ($str, $params) use ($days, $months) { // tarih çıktıları, e.g. Temmuz 4, 2014 + return $months[date('n', $params['date']) - 1] . ' '. date('j, Y', $params['date']); + }, + 'day_month' => function ($str, $params) use ($days, $months) { // outputs a day month, e.g. July 4 + return $months[$params['month'] - 1].' '.$params['day']; + }, + 'day_names' => $days, + 'month_names' => $months, + 'and' => 've', + 'or' => 'veya', + 'in_month' => 'içinde', // e.g. Ocak, Mayıs ve Ağustos'ta haftalık + 'in_week' => 'içinde', // e.g. yıllık haftada 3 + 'on' => 'on', // e.g. her Salı, Çarşamba ve Cuma günü + 'the_for_monthday' => 'the', // e.g. monthly on Tuesday the 1st + 'the_for_weekday' => 'the', // e.g. monthly on the 4th Monday + 'on the' => 'üzerinde', // e.g. her yıl 1. ve 200. günde + 'of_the_month' => 'ayın', // e.g. her yıl 2. ve 3. ayın + 'every %count% years' => 'every %count% years', + 'every year' => 'yıllık', + 'every_month_list' => 'her', // e.g. her Ocak, Mayıs ve Ağustos + 'every %count% months' => 'her %count% ay', + 'every month' => 'aylık', + 'every %count% weeks' => 'her %count% hafta', + 'every week' => 'haftalık', + 'every %count% days' => 'her %count% gün', + 'every day' => 'günlük', + 'last' => 'son', // e.g. 2nd last Friday + 'days' => 'günler', + 'day' => 'gün', + 'weeks' => 'haftalar', + 'week' => 'hafta', + // formats a number with a prefix e.g. every year on the 1st and 200th day + // negative numbers should be handled as in '5th to the last' or 'last' + // + // if has_negatives is true in the params, it is good form to add 'day' after + // each number, as in: 'every month on the 5th day or 2nd to the last day' or + // it may be confusing like 'every month on the 5th or 2nd to the last day' + 'ordinal_number' => function ($str, $params) { + $number = $params['number']; + + $ends = array('th', 'st', 'nd', 'rd', 'th', 'th', 'th', 'th', 'th', 'th'); + $suffix = ''; + + $isNegative = $number < 0; + + if ($number == -1) { + $abbreviation = 'son'; + } else { + if ($isNegative) { + $number = abs($number); + $suffix = ' sonuna kadar'; + } + + if (($number % 100) >= 11 && ($number % 100) <= 13) { + $abbreviation = $number.'th'; + } else { + $abbreviation = $number.$ends[$number % 10]; + } + } + + if (!empty($params['has_negatives'])) { + $suffix .= ' gün'; + } + + return $abbreviation . $suffix; + }, +); diff --git a/vendor/symfony/polyfill-ctype/Ctype.php b/vendor/symfony/polyfill-ctype/Ctype.php new file mode 100644 index 00000000..ba75a2c9 --- /dev/null +++ b/vendor/symfony/polyfill-ctype/Ctype.php @@ -0,0 +1,232 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Polyfill\Ctype; + +/** + * Ctype implementation through regex. + * + * @internal + * + * @author Gert de Pagter + */ +final class Ctype +{ + /** + * Returns TRUE if every character in text is either a letter or a digit, FALSE otherwise. + * + * @see https://php.net/ctype-alnum + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_alnum($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z0-9]/', $text); + } + + /** + * Returns TRUE if every character in text is a letter, FALSE otherwise. + * + * @see https://php.net/ctype-alpha + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_alpha($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z]/', $text); + } + + /** + * Returns TRUE if every character in text is a control character from the current locale, FALSE otherwise. + * + * @see https://php.net/ctype-cntrl + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_cntrl($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^\x00-\x1f\x7f]/', $text); + } + + /** + * Returns TRUE if every character in the string text is a decimal digit, FALSE otherwise. + * + * @see https://php.net/ctype-digit + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_digit($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^0-9]/', $text); + } + + /** + * Returns TRUE if every character in text is printable and actually creates visible output (no white space), FALSE otherwise. + * + * @see https://php.net/ctype-graph + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_graph($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^!-~]/', $text); + } + + /** + * Returns TRUE if every character in text is a lowercase letter. + * + * @see https://php.net/ctype-lower + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_lower($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^a-z]/', $text); + } + + /** + * Returns TRUE if every character in text will actually create output (including blanks). Returns FALSE if text contains control characters or characters that do not have any output or control function at all. + * + * @see https://php.net/ctype-print + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_print($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^ -~]/', $text); + } + + /** + * Returns TRUE if every character in text is printable, but neither letter, digit or blank, FALSE otherwise. + * + * @see https://php.net/ctype-punct + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_punct($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^!-\/\:-@\[-`\{-~]/', $text); + } + + /** + * Returns TRUE if every character in text creates some sort of white space, FALSE otherwise. Besides the blank character this also includes tab, vertical tab, line feed, carriage return and form feed characters. + * + * @see https://php.net/ctype-space + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_space($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^\s]/', $text); + } + + /** + * Returns TRUE if every character in text is an uppercase letter. + * + * @see https://php.net/ctype-upper + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_upper($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^A-Z]/', $text); + } + + /** + * Returns TRUE if every character in text is a hexadecimal 'digit', that is a decimal digit or a character from [A-Fa-f] , FALSE otherwise. + * + * @see https://php.net/ctype-xdigit + * + * @param mixed $text + * + * @return bool + */ + public static function ctype_xdigit($text) + { + $text = self::convert_int_to_char_for_ctype($text, __FUNCTION__); + + return \is_string($text) && '' !== $text && !preg_match('/[^A-Fa-f0-9]/', $text); + } + + /** + * Converts integers to their char versions according to normal ctype behaviour, if needed. + * + * If an integer between -128 and 255 inclusive is provided, + * it is interpreted as the ASCII value of a single character + * (negative values have 256 added in order to allow characters in the Extended ASCII range). + * Any other integer is interpreted as a string containing the decimal digits of the integer. + * + * @param mixed $int + * @param string $function + * + * @return mixed + */ + private static function convert_int_to_char_for_ctype($int, $function) + { + if (!\is_int($int)) { + return $int; + } + + if ($int < -128 || $int > 255) { + return (string) $int; + } + + if (\PHP_VERSION_ID >= 80100) { + @trigger_error($function.'(): Argument of type int will be interpreted as string in the future', \E_USER_DEPRECATED); + } + + if ($int < 0) { + $int += 256; + } + + return \chr($int); + } +} diff --git a/vendor/symfony/polyfill-ctype/LICENSE b/vendor/symfony/polyfill-ctype/LICENSE new file mode 100644 index 00000000..3f853aaf --- /dev/null +++ b/vendor/symfony/polyfill-ctype/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2018-2019 Fabien Potencier + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/vendor/symfony/polyfill-ctype/bootstrap.php b/vendor/symfony/polyfill-ctype/bootstrap.php new file mode 100644 index 00000000..d54524b3 --- /dev/null +++ b/vendor/symfony/polyfill-ctype/bootstrap.php @@ -0,0 +1,50 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +use Symfony\Polyfill\Ctype as p; + +if (\PHP_VERSION_ID >= 80000) { + return require __DIR__.'/bootstrap80.php'; +} + +if (!function_exists('ctype_alnum')) { + function ctype_alnum($text) { return p\Ctype::ctype_alnum($text); } +} +if (!function_exists('ctype_alpha')) { + function ctype_alpha($text) { return p\Ctype::ctype_alpha($text); } +} +if (!function_exists('ctype_cntrl')) { + function ctype_cntrl($text) { return p\Ctype::ctype_cntrl($text); } +} +if (!function_exists('ctype_digit')) { + function ctype_digit($text) { return p\Ctype::ctype_digit($text); } +} +if (!function_exists('ctype_graph')) { + function ctype_graph($text) { return p\Ctype::ctype_graph($text); } +} +if (!function_exists('ctype_lower')) { + function ctype_lower($text) { return p\Ctype::ctype_lower($text); } +} +if (!function_exists('ctype_print')) { + function ctype_print($text) { return p\Ctype::ctype_print($text); } +} +if (!function_exists('ctype_punct')) { + function ctype_punct($text) { return p\Ctype::ctype_punct($text); } +} +if (!function_exists('ctype_space')) { + function ctype_space($text) { return p\Ctype::ctype_space($text); } +} +if (!function_exists('ctype_upper')) { + function ctype_upper($text) { return p\Ctype::ctype_upper($text); } +} +if (!function_exists('ctype_xdigit')) { + function ctype_xdigit($text) { return p\Ctype::ctype_xdigit($text); } +} diff --git a/vendor/symfony/polyfill-ctype/bootstrap80.php b/vendor/symfony/polyfill-ctype/bootstrap80.php new file mode 100644 index 00000000..ab2f8611 --- /dev/null +++ b/vendor/symfony/polyfill-ctype/bootstrap80.php @@ -0,0 +1,46 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +use Symfony\Polyfill\Ctype as p; + +if (!function_exists('ctype_alnum')) { + function ctype_alnum(mixed $text): bool { return p\Ctype::ctype_alnum($text); } +} +if (!function_exists('ctype_alpha')) { + function ctype_alpha(mixed $text): bool { return p\Ctype::ctype_alpha($text); } +} +if (!function_exists('ctype_cntrl')) { + function ctype_cntrl(mixed $text): bool { return p\Ctype::ctype_cntrl($text); } +} +if (!function_exists('ctype_digit')) { + function ctype_digit(mixed $text): bool { return p\Ctype::ctype_digit($text); } +} +if (!function_exists('ctype_graph')) { + function ctype_graph(mixed $text): bool { return p\Ctype::ctype_graph($text); } +} +if (!function_exists('ctype_lower')) { + function ctype_lower(mixed $text): bool { return p\Ctype::ctype_lower($text); } +} +if (!function_exists('ctype_print')) { + function ctype_print(mixed $text): bool { return p\Ctype::ctype_print($text); } +} +if (!function_exists('ctype_punct')) { + function ctype_punct(mixed $text): bool { return p\Ctype::ctype_punct($text); } +} +if (!function_exists('ctype_space')) { + function ctype_space(mixed $text): bool { return p\Ctype::ctype_space($text); } +} +if (!function_exists('ctype_upper')) { + function ctype_upper(mixed $text): bool { return p\Ctype::ctype_upper($text); } +} +if (!function_exists('ctype_xdigit')) { + function ctype_xdigit(mixed $text): bool { return p\Ctype::ctype_xdigit($text); } +} diff --git a/vendor/symfony/polyfill-ctype/composer.json b/vendor/symfony/polyfill-ctype/composer.json new file mode 100644 index 00000000..1b3efff5 --- /dev/null +++ b/vendor/symfony/polyfill-ctype/composer.json @@ -0,0 +1,41 @@ +{ + "name": "symfony/polyfill-ctype", + "type": "library", + "description": "Symfony polyfill for ctype functions", + "keywords": ["polyfill", "compatibility", "portable", "ctype"], + "homepage": "https://symfony.com", + "license": "MIT", + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "require": { + "php": ">=7.1" + }, + "provide": { + "ext-ctype": "*" + }, + "autoload": { + "psr-4": { "Symfony\\Polyfill\\Ctype\\": "" }, + "files": [ "bootstrap.php" ] + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-main": "1.27-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + } +} diff --git a/vendor/webmozart/assert/LICENSE b/vendor/webmozart/assert/LICENSE new file mode 100644 index 00000000..9e2e3075 --- /dev/null +++ b/vendor/webmozart/assert/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2014 Bernhard Schussek + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/vendor/webmozart/assert/composer.json b/vendor/webmozart/assert/composer.json new file mode 100644 index 00000000..b340452c --- /dev/null +++ b/vendor/webmozart/assert/composer.json @@ -0,0 +1,43 @@ +{ + "name": "webmozart/assert", + "description": "Assertions to validate method input/output with nice error messages.", + "license": "MIT", + "keywords": [ + "assert", + "check", + "validate" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "require": { + "php": "^7.2 || ^8.0", + "ext-ctype": "*" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "Webmozart\\Assert\\Tests\\": "tests/", + "Webmozart\\Assert\\Bin\\": "bin/src" + } + }, + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + } +} diff --git a/vendor/webmozart/assert/src/Assert.php b/vendor/webmozart/assert/src/Assert.php new file mode 100644 index 00000000..db1f3a51 --- /dev/null +++ b/vendor/webmozart/assert/src/Assert.php @@ -0,0 +1,2080 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Webmozart\Assert; + +use ArrayAccess; +use BadMethodCallException; +use Closure; +use Countable; +use DateTime; +use DateTimeImmutable; +use Exception; +use ResourceBundle; +use SimpleXMLElement; +use Throwable; +use Traversable; + +/** + * Efficient assertions to validate the input/output of your methods. + * + * @since 1.0 + * + * @author Bernhard Schussek + */ +class Assert +{ + use Mixin; + + /** + * @psalm-pure + * @psalm-assert string $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function string($value, $message = '') + { + if (!\is_string($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a string. Got: %s', + static::typeToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert non-empty-string $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function stringNotEmpty($value, $message = '') + { + static::string($value, $message); + static::notEq($value, '', $message); + } + + /** + * @psalm-pure + * @psalm-assert int $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function integer($value, $message = '') + { + if (!\is_int($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected an integer. Got: %s', + static::typeToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert numeric $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function integerish($value, $message = '') + { + if (!\is_numeric($value) || $value != (int) $value) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected an integerish value. Got: %s', + static::typeToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert positive-int $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function positiveInteger($value, $message = '') + { + if (!(\is_int($value) && $value > 0)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a positive integer. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert float $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function float($value, $message = '') + { + if (!\is_float($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a float. Got: %s', + static::typeToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert numeric $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function numeric($value, $message = '') + { + if (!\is_numeric($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a numeric. Got: %s', + static::typeToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert positive-int|0 $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function natural($value, $message = '') + { + if (!\is_int($value) || $value < 0) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a non-negative integer. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert bool $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function boolean($value, $message = '') + { + if (!\is_bool($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a boolean. Got: %s', + static::typeToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert scalar $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function scalar($value, $message = '') + { + if (!\is_scalar($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a scalar. Got: %s', + static::typeToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert object $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function object($value, $message = '') + { + if (!\is_object($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected an object. Got: %s', + static::typeToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert resource $value + * + * @param mixed $value + * @param string|null $type type of resource this should be. @see https://www.php.net/manual/en/function.get-resource-type.php + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function resource($value, $type = null, $message = '') + { + if (!\is_resource($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a resource. Got: %s', + static::typeToString($value) + )); + } + + if ($type && $type !== \get_resource_type($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a resource of type %2$s. Got: %s', + static::typeToString($value), + $type + )); + } + } + + /** + * @psalm-pure + * @psalm-assert callable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function isCallable($value, $message = '') + { + if (!\is_callable($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a callable. Got: %s', + static::typeToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert array $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function isArray($value, $message = '') + { + if (!\is_array($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected an array. Got: %s', + static::typeToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @deprecated use "isIterable" or "isInstanceOf" instead + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function isTraversable($value, $message = '') + { + @\trigger_error( + \sprintf( + 'The "%s" assertion is deprecated. You should stop using it, as it will soon be removed in 2.0 version. Use "isIterable" or "isInstanceOf" instead.', + __METHOD__ + ), + \E_USER_DEPRECATED + ); + + if (!\is_array($value) && !($value instanceof Traversable)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a traversable. Got: %s', + static::typeToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert array|ArrayAccess $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function isArrayAccessible($value, $message = '') + { + if (!\is_array($value) && !($value instanceof ArrayAccess)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected an array accessible. Got: %s', + static::typeToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert countable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function isCountable($value, $message = '') + { + if ( + !\is_array($value) + && !($value instanceof Countable) + && !($value instanceof ResourceBundle) + && !($value instanceof SimpleXMLElement) + ) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a countable. Got: %s', + static::typeToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function isIterable($value, $message = '') + { + if (!\is_array($value) && !($value instanceof Traversable)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected an iterable. Got: %s', + static::typeToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $class + * @psalm-assert ExpectedType $value + * + * @param mixed $value + * @param string|object $class + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function isInstanceOf($value, $class, $message = '') + { + if (!($value instanceof $class)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected an instance of %2$s. Got: %s', + static::typeToString($value), + $class + )); + } + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $class + * @psalm-assert !ExpectedType $value + * + * @param mixed $value + * @param string|object $class + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function notInstanceOf($value, $class, $message = '') + { + if ($value instanceof $class) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected an instance other than %2$s. Got: %s', + static::typeToString($value), + $class + )); + } + } + + /** + * @psalm-pure + * @psalm-param array $classes + * + * @param mixed $value + * @param array $classes + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function isInstanceOfAny($value, array $classes, $message = '') + { + foreach ($classes as $class) { + if ($value instanceof $class) { + return; + } + } + + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected an instance of any of %2$s. Got: %s', + static::typeToString($value), + \implode(', ', \array_map(array(static::class, 'valueToString'), $classes)) + )); + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $class + * @psalm-assert ExpectedType|class-string $value + * + * @param object|string $value + * @param string $class + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function isAOf($value, $class, $message = '') + { + static::string($class, 'Expected class as a string. Got: %s'); + + if (!\is_a($value, $class, \is_string($value))) { + static::reportInvalidArgument(sprintf( + $message ?: 'Expected an instance of this class or to this class among its parents "%2$s". Got: %s', + static::valueToString($value), + $class + )); + } + } + + /** + * @psalm-pure + * @psalm-template UnexpectedType of object + * @psalm-param class-string $class + * @psalm-assert !UnexpectedType $value + * @psalm-assert !class-string $value + * + * @param object|string $value + * @param string $class + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function isNotA($value, $class, $message = '') + { + static::string($class, 'Expected class as a string. Got: %s'); + + if (\is_a($value, $class, \is_string($value))) { + static::reportInvalidArgument(sprintf( + $message ?: 'Expected an instance of this class or to this class among its parents other than "%2$s". Got: %s', + static::valueToString($value), + $class + )); + } + } + + /** + * @psalm-pure + * @psalm-param array $classes + * + * @param object|string $value + * @param string[] $classes + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function isAnyOf($value, array $classes, $message = '') + { + foreach ($classes as $class) { + static::string($class, 'Expected class as a string. Got: %s'); + + if (\is_a($value, $class, \is_string($value))) { + return; + } + } + + static::reportInvalidArgument(sprintf( + $message ?: 'Expected an instance of any of this classes or any of those classes among their parents "%2$s". Got: %s', + static::valueToString($value), + \implode(', ', $classes) + )); + } + + /** + * @psalm-pure + * @psalm-assert empty $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function isEmpty($value, $message = '') + { + if (!empty($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected an empty value. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert !empty $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function notEmpty($value, $message = '') + { + if (empty($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a non-empty value. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function null($value, $message = '') + { + if (null !== $value) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected null. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert !null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function notNull($value, $message = '') + { + if (null === $value) { + static::reportInvalidArgument( + $message ?: 'Expected a value other than null.' + ); + } + } + + /** + * @psalm-pure + * @psalm-assert true $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function true($value, $message = '') + { + if (true !== $value) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to be true. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert false $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function false($value, $message = '') + { + if (false !== $value) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to be false. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert !false $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function notFalse($value, $message = '') + { + if (false === $value) { + static::reportInvalidArgument( + $message ?: 'Expected a value other than false.' + ); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function ip($value, $message = '') + { + if (false === \filter_var($value, \FILTER_VALIDATE_IP)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to be an IP. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function ipv4($value, $message = '') + { + if (false === \filter_var($value, \FILTER_VALIDATE_IP, \FILTER_FLAG_IPV4)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to be an IPv4. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function ipv6($value, $message = '') + { + if (false === \filter_var($value, \FILTER_VALIDATE_IP, \FILTER_FLAG_IPV6)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to be an IPv6. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function email($value, $message = '') + { + if (false === \filter_var($value, FILTER_VALIDATE_EMAIL)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to be a valid e-mail address. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * Does non strict comparisons on the items, so ['3', 3] will not pass the assertion. + * + * @param array $values + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function uniqueValues(array $values, $message = '') + { + $allValues = \count($values); + $uniqueValues = \count(\array_unique($values)); + + if ($allValues !== $uniqueValues) { + $difference = $allValues - $uniqueValues; + + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected an array of unique values, but %s of them %s duplicated', + $difference, + (1 === $difference ? 'is' : 'are') + )); + } + } + + /** + * @param mixed $value + * @param mixed $expect + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function eq($value, $expect, $message = '') + { + if ($expect != $value) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value equal to %2$s. Got: %s', + static::valueToString($value), + static::valueToString($expect) + )); + } + } + + /** + * @param mixed $value + * @param mixed $expect + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function notEq($value, $expect, $message = '') + { + if ($expect == $value) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a different value than %s.', + static::valueToString($expect) + )); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $expect + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function same($value, $expect, $message = '') + { + if ($expect !== $value) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value identical to %2$s. Got: %s', + static::valueToString($value), + static::valueToString($expect) + )); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $expect + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function notSame($value, $expect, $message = '') + { + if ($expect === $value) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value not identical to %s.', + static::valueToString($expect) + )); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $limit + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function greaterThan($value, $limit, $message = '') + { + if ($value <= $limit) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value greater than %2$s. Got: %s', + static::valueToString($value), + static::valueToString($limit) + )); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $limit + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function greaterThanEq($value, $limit, $message = '') + { + if ($value < $limit) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value greater than or equal to %2$s. Got: %s', + static::valueToString($value), + static::valueToString($limit) + )); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $limit + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function lessThan($value, $limit, $message = '') + { + if ($value >= $limit) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value less than %2$s. Got: %s', + static::valueToString($value), + static::valueToString($limit) + )); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $limit + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function lessThanEq($value, $limit, $message = '') + { + if ($value > $limit) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value less than or equal to %2$s. Got: %s', + static::valueToString($value), + static::valueToString($limit) + )); + } + } + + /** + * Inclusive range, so Assert::(3, 3, 5) passes. + * + * @psalm-pure + * + * @param mixed $value + * @param mixed $min + * @param mixed $max + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function range($value, $min, $max, $message = '') + { + if ($value < $min || $value > $max) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value between %2$s and %3$s. Got: %s', + static::valueToString($value), + static::valueToString($min), + static::valueToString($max) + )); + } + } + + /** + * A more human-readable alias of Assert::inArray(). + * + * @psalm-pure + * + * @param mixed $value + * @param array $values + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function oneOf($value, array $values, $message = '') + { + static::inArray($value, $values, $message); + } + + /** + * Does strict comparison, so Assert::inArray(3, ['3']) does not pass the assertion. + * + * @psalm-pure + * + * @param mixed $value + * @param array $values + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function inArray($value, array $values, $message = '') + { + if (!\in_array($value, $values, true)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected one of: %2$s. Got: %s', + static::valueToString($value), + \implode(', ', \array_map(array(static::class, 'valueToString'), $values)) + )); + } + } + + /** + * @psalm-pure + * + * @param string $value + * @param string $subString + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function contains($value, $subString, $message = '') + { + if (false === \strpos($value, $subString)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to contain %2$s. Got: %s', + static::valueToString($value), + static::valueToString($subString) + )); + } + } + + /** + * @psalm-pure + * + * @param string $value + * @param string $subString + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function notContains($value, $subString, $message = '') + { + if (false !== \strpos($value, $subString)) { + static::reportInvalidArgument(\sprintf( + $message ?: '%2$s was not expected to be contained in a value. Got: %s', + static::valueToString($value), + static::valueToString($subString) + )); + } + } + + /** + * @psalm-pure + * + * @param string $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function notWhitespaceOnly($value, $message = '') + { + if (\preg_match('/^\s*$/', $value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a non-whitespace string. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * + * @param string $value + * @param string $prefix + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function startsWith($value, $prefix, $message = '') + { + if (0 !== \strpos($value, $prefix)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to start with %2$s. Got: %s', + static::valueToString($value), + static::valueToString($prefix) + )); + } + } + + /** + * @psalm-pure + * + * @param string $value + * @param string $prefix + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function notStartsWith($value, $prefix, $message = '') + { + if (0 === \strpos($value, $prefix)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value not to start with %2$s. Got: %s', + static::valueToString($value), + static::valueToString($prefix) + )); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function startsWithLetter($value, $message = '') + { + static::string($value); + + $valid = isset($value[0]); + + if ($valid) { + $locale = \setlocale(LC_CTYPE, 0); + \setlocale(LC_CTYPE, 'C'); + $valid = \ctype_alpha($value[0]); + \setlocale(LC_CTYPE, $locale); + } + + if (!$valid) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to start with a letter. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * + * @param string $value + * @param string $suffix + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function endsWith($value, $suffix, $message = '') + { + if ($suffix !== \substr($value, -\strlen($suffix))) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to end with %2$s. Got: %s', + static::valueToString($value), + static::valueToString($suffix) + )); + } + } + + /** + * @psalm-pure + * + * @param string $value + * @param string $suffix + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function notEndsWith($value, $suffix, $message = '') + { + if ($suffix === \substr($value, -\strlen($suffix))) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value not to end with %2$s. Got: %s', + static::valueToString($value), + static::valueToString($suffix) + )); + } + } + + /** + * @psalm-pure + * + * @param string $value + * @param string $pattern + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function regex($value, $pattern, $message = '') + { + if (!\preg_match($pattern, $value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'The value %s does not match the expected pattern.', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * + * @param string $value + * @param string $pattern + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function notRegex($value, $pattern, $message = '') + { + if (\preg_match($pattern, $value, $matches, PREG_OFFSET_CAPTURE)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'The value %s matches the pattern %s (at offset %d).', + static::valueToString($value), + static::valueToString($pattern), + $matches[0][1] + )); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function unicodeLetters($value, $message = '') + { + static::string($value); + + if (!\preg_match('/^\p{L}+$/u', $value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to contain only Unicode letters. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function alpha($value, $message = '') + { + static::string($value); + + $locale = \setlocale(LC_CTYPE, 0); + \setlocale(LC_CTYPE, 'C'); + $valid = !\ctype_alpha($value); + \setlocale(LC_CTYPE, $locale); + + if ($valid) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to contain only letters. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * + * @param string $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function digits($value, $message = '') + { + $locale = \setlocale(LC_CTYPE, 0); + \setlocale(LC_CTYPE, 'C'); + $valid = !\ctype_digit($value); + \setlocale(LC_CTYPE, $locale); + + if ($valid) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to contain digits only. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * + * @param string $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function alnum($value, $message = '') + { + $locale = \setlocale(LC_CTYPE, 0); + \setlocale(LC_CTYPE, 'C'); + $valid = !\ctype_alnum($value); + \setlocale(LC_CTYPE, $locale); + + if ($valid) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to contain letters and digits only. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert lowercase-string $value + * + * @param string $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function lower($value, $message = '') + { + $locale = \setlocale(LC_CTYPE, 0); + \setlocale(LC_CTYPE, 'C'); + $valid = !\ctype_lower($value); + \setlocale(LC_CTYPE, $locale); + + if ($valid) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to contain lowercase characters only. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-assert !lowercase-string $value + * + * @param string $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function upper($value, $message = '') + { + $locale = \setlocale(LC_CTYPE, 0); + \setlocale(LC_CTYPE, 'C'); + $valid = !\ctype_upper($value); + \setlocale(LC_CTYPE, $locale); + + if ($valid) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to contain uppercase characters only. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * + * @param string $value + * @param int $length + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function length($value, $length, $message = '') + { + if ($length !== static::strlen($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to contain %2$s characters. Got: %s', + static::valueToString($value), + $length + )); + } + } + + /** + * Inclusive min. + * + * @psalm-pure + * + * @param string $value + * @param int|float $min + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function minLength($value, $min, $message = '') + { + if (static::strlen($value) < $min) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to contain at least %2$s characters. Got: %s', + static::valueToString($value), + $min + )); + } + } + + /** + * Inclusive max. + * + * @psalm-pure + * + * @param string $value + * @param int|float $max + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function maxLength($value, $max, $message = '') + { + if (static::strlen($value) > $max) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to contain at most %2$s characters. Got: %s', + static::valueToString($value), + $max + )); + } + } + + /** + * Inclusive , so Assert::lengthBetween('asd', 3, 5); passes the assertion. + * + * @psalm-pure + * + * @param string $value + * @param int|float $min + * @param int|float $max + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function lengthBetween($value, $min, $max, $message = '') + { + $length = static::strlen($value); + + if ($length < $min || $length > $max) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a value to contain between %2$s and %3$s characters. Got: %s', + static::valueToString($value), + $min, + $max + )); + } + } + + /** + * Will also pass if $value is a directory, use Assert::file() instead if you need to be sure it is a file. + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function fileExists($value, $message = '') + { + static::string($value); + + if (!\file_exists($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'The file %s does not exist.', + static::valueToString($value) + )); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function file($value, $message = '') + { + static::fileExists($value, $message); + + if (!\is_file($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'The path %s is not a file.', + static::valueToString($value) + )); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function directory($value, $message = '') + { + static::fileExists($value, $message); + + if (!\is_dir($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'The path %s is no directory.', + static::valueToString($value) + )); + } + } + + /** + * @param string $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function readable($value, $message = '') + { + if (!\is_readable($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'The path %s is not readable.', + static::valueToString($value) + )); + } + } + + /** + * @param string $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function writable($value, $message = '') + { + if (!\is_writable($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'The path %s is not writable.', + static::valueToString($value) + )); + } + } + + /** + * @psalm-assert class-string $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function classExists($value, $message = '') + { + if (!\class_exists($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected an existing class name. Got: %s', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $class + * @psalm-assert class-string|ExpectedType $value + * + * @param mixed $value + * @param string|object $class + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function subclassOf($value, $class, $message = '') + { + if (!\is_subclass_of($value, $class)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected a sub-class of %2$s. Got: %s', + static::valueToString($value), + static::valueToString($class) + )); + } + } + + /** + * @psalm-assert class-string $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function interfaceExists($value, $message = '') + { + if (!\interface_exists($value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected an existing interface name. got %s', + static::valueToString($value) + )); + } + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $interface + * @psalm-assert class-string $value + * + * @param mixed $value + * @param mixed $interface + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function implementsInterface($value, $interface, $message = '') + { + if (!\in_array($interface, \class_implements($value))) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected an implementation of %2$s. Got: %s', + static::valueToString($value), + static::valueToString($interface) + )); + } + } + + /** + * @psalm-pure + * @psalm-param class-string|object $classOrObject + * + * @param string|object $classOrObject + * @param mixed $property + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function propertyExists($classOrObject, $property, $message = '') + { + if (!\property_exists($classOrObject, $property)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected the property %s to exist.', + static::valueToString($property) + )); + } + } + + /** + * @psalm-pure + * @psalm-param class-string|object $classOrObject + * + * @param string|object $classOrObject + * @param mixed $property + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function propertyNotExists($classOrObject, $property, $message = '') + { + if (\property_exists($classOrObject, $property)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected the property %s to not exist.', + static::valueToString($property) + )); + } + } + + /** + * @psalm-pure + * @psalm-param class-string|object $classOrObject + * + * @param string|object $classOrObject + * @param mixed $method + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function methodExists($classOrObject, $method, $message = '') + { + if (!(\is_string($classOrObject) || \is_object($classOrObject)) || !\method_exists($classOrObject, $method)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected the method %s to exist.', + static::valueToString($method) + )); + } + } + + /** + * @psalm-pure + * @psalm-param class-string|object $classOrObject + * + * @param string|object $classOrObject + * @param mixed $method + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function methodNotExists($classOrObject, $method, $message = '') + { + if ((\is_string($classOrObject) || \is_object($classOrObject)) && \method_exists($classOrObject, $method)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected the method %s to not exist.', + static::valueToString($method) + )); + } + } + + /** + * @psalm-pure + * + * @param array $array + * @param string|int $key + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function keyExists($array, $key, $message = '') + { + if (!(isset($array[$key]) || \array_key_exists($key, $array))) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected the key %s to exist.', + static::valueToString($key) + )); + } + } + + /** + * @psalm-pure + * + * @param array $array + * @param string|int $key + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function keyNotExists($array, $key, $message = '') + { + if (isset($array[$key]) || \array_key_exists($key, $array)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected the key %s to not exist.', + static::valueToString($key) + )); + } + } + + /** + * Checks if a value is a valid array key (int or string). + * + * @psalm-pure + * @psalm-assert array-key $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function validArrayKey($value, $message = '') + { + if (!(\is_int($value) || \is_string($value))) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected string or integer. Got: %s', + static::typeToString($value) + )); + } + } + + /** + * Does not check if $array is countable, this can generate a warning on php versions after 7.2. + * + * @param Countable|array $array + * @param int $number + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function count($array, $number, $message = '') + { + static::eq( + \count($array), + $number, + \sprintf( + $message ?: 'Expected an array to contain %d elements. Got: %d.', + $number, + \count($array) + ) + ); + } + + /** + * Does not check if $array is countable, this can generate a warning on php versions after 7.2. + * + * @param Countable|array $array + * @param int|float $min + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function minCount($array, $min, $message = '') + { + if (\count($array) < $min) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected an array to contain at least %2$d elements. Got: %d', + \count($array), + $min + )); + } + } + + /** + * Does not check if $array is countable, this can generate a warning on php versions after 7.2. + * + * @param Countable|array $array + * @param int|float $max + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function maxCount($array, $max, $message = '') + { + if (\count($array) > $max) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected an array to contain at most %2$d elements. Got: %d', + \count($array), + $max + )); + } + } + + /** + * Does not check if $array is countable, this can generate a warning on php versions after 7.2. + * + * @param Countable|array $array + * @param int|float $min + * @param int|float $max + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function countBetween($array, $min, $max, $message = '') + { + $count = \count($array); + + if ($count < $min || $count > $max) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Expected an array to contain between %2$d and %3$d elements. Got: %d', + $count, + $min, + $max + )); + } + } + + /** + * @psalm-pure + * @psalm-assert list $array + * + * @param mixed $array + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function isList($array, $message = '') + { + if (!\is_array($array)) { + static::reportInvalidArgument( + $message ?: 'Expected list - non-associative array.' + ); + } + + if ($array === \array_values($array)) { + return; + } + + $nextKey = -1; + foreach ($array as $k => $v) { + if ($k !== ++$nextKey) { + static::reportInvalidArgument( + $message ?: 'Expected list - non-associative array.' + ); + } + } + } + + /** + * @psalm-pure + * @psalm-assert non-empty-list $array + * + * @param mixed $array + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function isNonEmptyList($array, $message = '') + { + static::isList($array, $message); + static::notEmpty($array, $message); + } + + /** + * @psalm-pure + * @psalm-template T + * @psalm-param mixed|array $array + * @psalm-assert array $array + * + * @param mixed $array + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function isMap($array, $message = '') + { + if ( + !\is_array($array) || + \array_keys($array) !== \array_filter(\array_keys($array), '\is_string') + ) { + static::reportInvalidArgument( + $message ?: 'Expected map - associative array with string keys.' + ); + } + } + + /** + * @psalm-pure + * @psalm-template T + * @psalm-param mixed|array $array + * @psalm-assert array $array + * @psalm-assert !empty $array + * + * @param mixed $array + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function isNonEmptyMap($array, $message = '') + { + static::isMap($array, $message); + static::notEmpty($array, $message); + } + + /** + * @psalm-pure + * + * @param string $value + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function uuid($value, $message = '') + { + $value = \str_replace(array('urn:', 'uuid:', '{', '}'), '', $value); + + // The nil UUID is special form of UUID that is specified to have all + // 128 bits set to zero. + if ('00000000-0000-0000-0000-000000000000' === $value) { + return; + } + + if (!\preg_match('/^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{4}-[0-9A-Fa-f]{12}$/', $value)) { + static::reportInvalidArgument(\sprintf( + $message ?: 'Value %s is not a valid UUID.', + static::valueToString($value) + )); + } + } + + /** + * @psalm-param class-string $class + * + * @param Closure $expression + * @param string $class + * @param string $message + * + * @throws InvalidArgumentException + */ + public static function throws(Closure $expression, $class = 'Exception', $message = '') + { + static::string($class); + + $actual = 'none'; + + try { + $expression(); + } catch (Exception $e) { + $actual = \get_class($e); + if ($e instanceof $class) { + return; + } + } catch (Throwable $e) { + $actual = \get_class($e); + if ($e instanceof $class) { + return; + } + } + + static::reportInvalidArgument($message ?: \sprintf( + 'Expected to throw "%s", got "%s"', + $class, + $actual + )); + } + + /** + * @throws BadMethodCallException + */ + public static function __callStatic($name, $arguments) + { + if ('nullOr' === \substr($name, 0, 6)) { + if (null !== $arguments[0]) { + $method = \lcfirst(\substr($name, 6)); + \call_user_func_array(array(static::class, $method), $arguments); + } + + return; + } + + if ('all' === \substr($name, 0, 3)) { + static::isIterable($arguments[0]); + + $method = \lcfirst(\substr($name, 3)); + $args = $arguments; + + foreach ($arguments[0] as $entry) { + $args[0] = $entry; + + \call_user_func_array(array(static::class, $method), $args); + } + + return; + } + + throw new BadMethodCallException('No such method: '.$name); + } + + /** + * @param mixed $value + * + * @return string + */ + protected static function valueToString($value) + { + if (null === $value) { + return 'null'; + } + + if (true === $value) { + return 'true'; + } + + if (false === $value) { + return 'false'; + } + + if (\is_array($value)) { + return 'array'; + } + + if (\is_object($value)) { + if (\method_exists($value, '__toString')) { + return \get_class($value).': '.self::valueToString($value->__toString()); + } + + if ($value instanceof DateTime || $value instanceof DateTimeImmutable) { + return \get_class($value).': '.self::valueToString($value->format('c')); + } + + return \get_class($value); + } + + if (\is_resource($value)) { + return 'resource'; + } + + if (\is_string($value)) { + return '"'.$value.'"'; + } + + return (string) $value; + } + + /** + * @param mixed $value + * + * @return string + */ + protected static function typeToString($value) + { + return \is_object($value) ? \get_class($value) : \gettype($value); + } + + protected static function strlen($value) + { + if (!\function_exists('mb_detect_encoding')) { + return \strlen($value); + } + + if (false === $encoding = \mb_detect_encoding($value)) { + return \strlen($value); + } + + return \mb_strlen($value, $encoding); + } + + /** + * @param string $message + * + * @throws InvalidArgumentException + * + * @psalm-pure this method is not supposed to perform side-effects + * @psalm-return never + */ + protected static function reportInvalidArgument($message) + { + throw new InvalidArgumentException($message); + } + + private function __construct() + { + } +} diff --git a/vendor/webmozart/assert/src/InvalidArgumentException.php b/vendor/webmozart/assert/src/InvalidArgumentException.php new file mode 100644 index 00000000..9d95a58c --- /dev/null +++ b/vendor/webmozart/assert/src/InvalidArgumentException.php @@ -0,0 +1,16 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Webmozart\Assert; + +class InvalidArgumentException extends \InvalidArgumentException +{ +} diff --git a/vendor/webmozart/assert/src/Mixin.php b/vendor/webmozart/assert/src/Mixin.php new file mode 100644 index 00000000..0f0a75e3 --- /dev/null +++ b/vendor/webmozart/assert/src/Mixin.php @@ -0,0 +1,5089 @@ + $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allString($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::string($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrString($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::string($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert non-empty-string|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrStringNotEmpty($value, $message = '') + { + null === $value || static::stringNotEmpty($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allStringNotEmpty($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::stringNotEmpty($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrStringNotEmpty($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::stringNotEmpty($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert int|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrInteger($value, $message = '') + { + null === $value || static::integer($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allInteger($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::integer($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrInteger($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::integer($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert numeric|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIntegerish($value, $message = '') + { + null === $value || static::integerish($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIntegerish($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::integerish($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIntegerish($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::integerish($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert positive-int|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrPositiveInteger($value, $message = '') + { + null === $value || static::positiveInteger($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allPositiveInteger($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::positiveInteger($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrPositiveInteger($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::positiveInteger($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert float|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrFloat($value, $message = '') + { + null === $value || static::float($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allFloat($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::float($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrFloat($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::float($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert numeric|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrNumeric($value, $message = '') + { + null === $value || static::numeric($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNumeric($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::numeric($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrNumeric($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::numeric($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert positive-int|0|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrNatural($value, $message = '') + { + null === $value || static::natural($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNatural($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::natural($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrNatural($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::natural($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert bool|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrBoolean($value, $message = '') + { + null === $value || static::boolean($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allBoolean($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::boolean($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrBoolean($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::boolean($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert scalar|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrScalar($value, $message = '') + { + null === $value || static::scalar($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allScalar($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::scalar($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrScalar($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::scalar($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert object|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrObject($value, $message = '') + { + null === $value || static::object($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allObject($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::object($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrObject($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::object($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert resource|null $value + * + * @param mixed $value + * @param string|null $type type of resource this should be. @see https://www.php.net/manual/en/function.get-resource-type.php + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrResource($value, $type = null, $message = '') + { + null === $value || static::resource($value, $type, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string|null $type type of resource this should be. @see https://www.php.net/manual/en/function.get-resource-type.php + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allResource($value, $type = null, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::resource($entry, $type, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string|null $type type of resource this should be. @see https://www.php.net/manual/en/function.get-resource-type.php + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrResource($value, $type = null, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::resource($entry, $type, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert callable|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIsCallable($value, $message = '') + { + null === $value || static::isCallable($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIsCallable($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::isCallable($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIsCallable($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::isCallable($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert array|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIsArray($value, $message = '') + { + null === $value || static::isArray($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIsArray($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::isArray($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIsArray($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::isArray($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable|null $value + * + * @deprecated use "isIterable" or "isInstanceOf" instead + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIsTraversable($value, $message = '') + { + null === $value || static::isTraversable($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @deprecated use "isIterable" or "isInstanceOf" instead + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIsTraversable($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::isTraversable($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @deprecated use "isIterable" or "isInstanceOf" instead + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIsTraversable($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::isTraversable($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert array|ArrayAccess|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIsArrayAccessible($value, $message = '') + { + null === $value || static::isArrayAccessible($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIsArrayAccessible($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::isArrayAccessible($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIsArrayAccessible($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::isArrayAccessible($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert countable|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIsCountable($value, $message = '') + { + null === $value || static::isCountable($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIsCountable($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::isCountable($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIsCountable($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::isCountable($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIsIterable($value, $message = '') + { + null === $value || static::isIterable($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIsIterable($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::isIterable($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIsIterable($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::isIterable($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $class + * @psalm-assert ExpectedType|null $value + * + * @param mixed $value + * @param string|object $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIsInstanceOf($value, $class, $message = '') + { + null === $value || static::isInstanceOf($value, $class, $message); + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $class + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string|object $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIsInstanceOf($value, $class, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::isInstanceOf($entry, $class, $message); + } + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $class + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string|object $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIsInstanceOf($value, $class, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::isInstanceOf($entry, $class, $message); + } + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $class + * + * @param mixed $value + * @param string|object $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrNotInstanceOf($value, $class, $message = '') + { + null === $value || static::notInstanceOf($value, $class, $message); + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $class + * + * @param mixed $value + * @param string|object $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNotInstanceOf($value, $class, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::notInstanceOf($entry, $class, $message); + } + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $class + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string|object $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrNotInstanceOf($value, $class, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::notInstanceOf($entry, $class, $message); + } + } + + /** + * @psalm-pure + * @psalm-param array $classes + * + * @param mixed $value + * @param array $classes + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIsInstanceOfAny($value, $classes, $message = '') + { + null === $value || static::isInstanceOfAny($value, $classes, $message); + } + + /** + * @psalm-pure + * @psalm-param array $classes + * + * @param mixed $value + * @param array $classes + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIsInstanceOfAny($value, $classes, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::isInstanceOfAny($entry, $classes, $message); + } + } + + /** + * @psalm-pure + * @psalm-param array $classes + * + * @param mixed $value + * @param array $classes + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIsInstanceOfAny($value, $classes, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::isInstanceOfAny($entry, $classes, $message); + } + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $class + * @psalm-assert ExpectedType|class-string|null $value + * + * @param object|string|null $value + * @param string $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIsAOf($value, $class, $message = '') + { + null === $value || static::isAOf($value, $class, $message); + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $class + * @psalm-assert iterable> $value + * + * @param iterable $value + * @param string $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIsAOf($value, $class, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::isAOf($entry, $class, $message); + } + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $class + * @psalm-assert iterable|null> $value + * + * @param iterable $value + * @param string $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIsAOf($value, $class, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::isAOf($entry, $class, $message); + } + } + + /** + * @psalm-pure + * @psalm-template UnexpectedType of object + * @psalm-param class-string $class + * + * @param object|string|null $value + * @param string $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIsNotA($value, $class, $message = '') + { + null === $value || static::isNotA($value, $class, $message); + } + + /** + * @psalm-pure + * @psalm-template UnexpectedType of object + * @psalm-param class-string $class + * + * @param iterable $value + * @param string $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIsNotA($value, $class, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::isNotA($entry, $class, $message); + } + } + + /** + * @psalm-pure + * @psalm-template UnexpectedType of object + * @psalm-param class-string $class + * @psalm-assert iterable $value + * @psalm-assert iterable|null> $value + * + * @param iterable $value + * @param string $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIsNotA($value, $class, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::isNotA($entry, $class, $message); + } + } + + /** + * @psalm-pure + * @psalm-param array $classes + * + * @param object|string|null $value + * @param string[] $classes + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIsAnyOf($value, $classes, $message = '') + { + null === $value || static::isAnyOf($value, $classes, $message); + } + + /** + * @psalm-pure + * @psalm-param array $classes + * + * @param iterable $value + * @param string[] $classes + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIsAnyOf($value, $classes, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::isAnyOf($entry, $classes, $message); + } + } + + /** + * @psalm-pure + * @psalm-param array $classes + * + * @param iterable $value + * @param string[] $classes + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIsAnyOf($value, $classes, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::isAnyOf($entry, $classes, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert empty $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIsEmpty($value, $message = '') + { + null === $value || static::isEmpty($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIsEmpty($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::isEmpty($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIsEmpty($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::isEmpty($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrNotEmpty($value, $message = '') + { + null === $value || static::notEmpty($value, $message); + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNotEmpty($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::notEmpty($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrNotEmpty($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::notEmpty($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNull($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::null($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNotNull($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::notNull($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert true|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrTrue($value, $message = '') + { + null === $value || static::true($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allTrue($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::true($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrTrue($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::true($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert false|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrFalse($value, $message = '') + { + null === $value || static::false($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allFalse($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::false($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrFalse($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::false($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrNotFalse($value, $message = '') + { + null === $value || static::notFalse($value, $message); + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNotFalse($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::notFalse($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrNotFalse($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::notFalse($entry, $message); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIp($value, $message = '') + { + null === $value || static::ip($value, $message); + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIp($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::ip($entry, $message); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIp($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::ip($entry, $message); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIpv4($value, $message = '') + { + null === $value || static::ipv4($value, $message); + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIpv4($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::ipv4($entry, $message); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIpv4($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::ipv4($entry, $message); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIpv6($value, $message = '') + { + null === $value || static::ipv6($value, $message); + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIpv6($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::ipv6($entry, $message); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIpv6($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::ipv6($entry, $message); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrEmail($value, $message = '') + { + null === $value || static::email($value, $message); + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allEmail($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::email($entry, $message); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrEmail($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::email($entry, $message); + } + } + + /** + * @param array|null $values + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrUniqueValues($values, $message = '') + { + null === $values || static::uniqueValues($values, $message); + } + + /** + * @param iterable $values + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allUniqueValues($values, $message = '') + { + static::isIterable($values); + + foreach ($values as $entry) { + static::uniqueValues($entry, $message); + } + } + + /** + * @param iterable $values + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrUniqueValues($values, $message = '') + { + static::isIterable($values); + + foreach ($values as $entry) { + null === $entry || static::uniqueValues($entry, $message); + } + } + + /** + * @param mixed $value + * @param mixed $expect + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrEq($value, $expect, $message = '') + { + null === $value || static::eq($value, $expect, $message); + } + + /** + * @param mixed $value + * @param mixed $expect + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allEq($value, $expect, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::eq($entry, $expect, $message); + } + } + + /** + * @param mixed $value + * @param mixed $expect + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrEq($value, $expect, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::eq($entry, $expect, $message); + } + } + + /** + * @param mixed $value + * @param mixed $expect + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrNotEq($value, $expect, $message = '') + { + null === $value || static::notEq($value, $expect, $message); + } + + /** + * @param mixed $value + * @param mixed $expect + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNotEq($value, $expect, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::notEq($entry, $expect, $message); + } + } + + /** + * @param mixed $value + * @param mixed $expect + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrNotEq($value, $expect, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::notEq($entry, $expect, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $expect + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrSame($value, $expect, $message = '') + { + null === $value || static::same($value, $expect, $message); + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $expect + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allSame($value, $expect, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::same($entry, $expect, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $expect + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrSame($value, $expect, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::same($entry, $expect, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $expect + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrNotSame($value, $expect, $message = '') + { + null === $value || static::notSame($value, $expect, $message); + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $expect + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNotSame($value, $expect, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::notSame($entry, $expect, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $expect + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrNotSame($value, $expect, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::notSame($entry, $expect, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $limit + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrGreaterThan($value, $limit, $message = '') + { + null === $value || static::greaterThan($value, $limit, $message); + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $limit + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allGreaterThan($value, $limit, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::greaterThan($entry, $limit, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $limit + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrGreaterThan($value, $limit, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::greaterThan($entry, $limit, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $limit + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrGreaterThanEq($value, $limit, $message = '') + { + null === $value || static::greaterThanEq($value, $limit, $message); + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $limit + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allGreaterThanEq($value, $limit, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::greaterThanEq($entry, $limit, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $limit + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrGreaterThanEq($value, $limit, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::greaterThanEq($entry, $limit, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $limit + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrLessThan($value, $limit, $message = '') + { + null === $value || static::lessThan($value, $limit, $message); + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $limit + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allLessThan($value, $limit, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::lessThan($entry, $limit, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $limit + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrLessThan($value, $limit, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::lessThan($entry, $limit, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $limit + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrLessThanEq($value, $limit, $message = '') + { + null === $value || static::lessThanEq($value, $limit, $message); + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $limit + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allLessThanEq($value, $limit, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::lessThanEq($entry, $limit, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $limit + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrLessThanEq($value, $limit, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::lessThanEq($entry, $limit, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $min + * @param mixed $max + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrRange($value, $min, $max, $message = '') + { + null === $value || static::range($value, $min, $max, $message); + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $min + * @param mixed $max + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allRange($value, $min, $max, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::range($entry, $min, $max, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param mixed $min + * @param mixed $max + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrRange($value, $min, $max, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::range($entry, $min, $max, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param array $values + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrOneOf($value, $values, $message = '') + { + null === $value || static::oneOf($value, $values, $message); + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param array $values + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allOneOf($value, $values, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::oneOf($entry, $values, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param array $values + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrOneOf($value, $values, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::oneOf($entry, $values, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param array $values + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrInArray($value, $values, $message = '') + { + null === $value || static::inArray($value, $values, $message); + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param array $values + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allInArray($value, $values, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::inArray($entry, $values, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param array $values + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrInArray($value, $values, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::inArray($entry, $values, $message); + } + } + + /** + * @psalm-pure + * + * @param string|null $value + * @param string $subString + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrContains($value, $subString, $message = '') + { + null === $value || static::contains($value, $subString, $message); + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $subString + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allContains($value, $subString, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::contains($entry, $subString, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $subString + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrContains($value, $subString, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::contains($entry, $subString, $message); + } + } + + /** + * @psalm-pure + * + * @param string|null $value + * @param string $subString + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrNotContains($value, $subString, $message = '') + { + null === $value || static::notContains($value, $subString, $message); + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $subString + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNotContains($value, $subString, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::notContains($entry, $subString, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $subString + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrNotContains($value, $subString, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::notContains($entry, $subString, $message); + } + } + + /** + * @psalm-pure + * + * @param string|null $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrNotWhitespaceOnly($value, $message = '') + { + null === $value || static::notWhitespaceOnly($value, $message); + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNotWhitespaceOnly($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::notWhitespaceOnly($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrNotWhitespaceOnly($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::notWhitespaceOnly($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param string|null $value + * @param string $prefix + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrStartsWith($value, $prefix, $message = '') + { + null === $value || static::startsWith($value, $prefix, $message); + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $prefix + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allStartsWith($value, $prefix, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::startsWith($entry, $prefix, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $prefix + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrStartsWith($value, $prefix, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::startsWith($entry, $prefix, $message); + } + } + + /** + * @psalm-pure + * + * @param string|null $value + * @param string $prefix + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrNotStartsWith($value, $prefix, $message = '') + { + null === $value || static::notStartsWith($value, $prefix, $message); + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $prefix + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNotStartsWith($value, $prefix, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::notStartsWith($entry, $prefix, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $prefix + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrNotStartsWith($value, $prefix, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::notStartsWith($entry, $prefix, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrStartsWithLetter($value, $message = '') + { + null === $value || static::startsWithLetter($value, $message); + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allStartsWithLetter($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::startsWithLetter($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrStartsWithLetter($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::startsWithLetter($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param string|null $value + * @param string $suffix + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrEndsWith($value, $suffix, $message = '') + { + null === $value || static::endsWith($value, $suffix, $message); + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $suffix + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allEndsWith($value, $suffix, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::endsWith($entry, $suffix, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $suffix + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrEndsWith($value, $suffix, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::endsWith($entry, $suffix, $message); + } + } + + /** + * @psalm-pure + * + * @param string|null $value + * @param string $suffix + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrNotEndsWith($value, $suffix, $message = '') + { + null === $value || static::notEndsWith($value, $suffix, $message); + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $suffix + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNotEndsWith($value, $suffix, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::notEndsWith($entry, $suffix, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $suffix + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrNotEndsWith($value, $suffix, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::notEndsWith($entry, $suffix, $message); + } + } + + /** + * @psalm-pure + * + * @param string|null $value + * @param string $pattern + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrRegex($value, $pattern, $message = '') + { + null === $value || static::regex($value, $pattern, $message); + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $pattern + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allRegex($value, $pattern, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::regex($entry, $pattern, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $pattern + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrRegex($value, $pattern, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::regex($entry, $pattern, $message); + } + } + + /** + * @psalm-pure + * + * @param string|null $value + * @param string $pattern + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrNotRegex($value, $pattern, $message = '') + { + null === $value || static::notRegex($value, $pattern, $message); + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $pattern + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNotRegex($value, $pattern, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::notRegex($entry, $pattern, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $pattern + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrNotRegex($value, $pattern, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::notRegex($entry, $pattern, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrUnicodeLetters($value, $message = '') + { + null === $value || static::unicodeLetters($value, $message); + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allUnicodeLetters($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::unicodeLetters($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrUnicodeLetters($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::unicodeLetters($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrAlpha($value, $message = '') + { + null === $value || static::alpha($value, $message); + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allAlpha($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::alpha($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrAlpha($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::alpha($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param string|null $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrDigits($value, $message = '') + { + null === $value || static::digits($value, $message); + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allDigits($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::digits($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrDigits($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::digits($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param string|null $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrAlnum($value, $message = '') + { + null === $value || static::alnum($value, $message); + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allAlnum($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::alnum($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrAlnum($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::alnum($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert lowercase-string|null $value + * + * @param string|null $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrLower($value, $message = '') + { + null === $value || static::lower($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param iterable $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allLower($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::lower($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param iterable $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrLower($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::lower($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param string|null $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrUpper($value, $message = '') + { + null === $value || static::upper($value, $message); + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allUpper($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::upper($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param iterable $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrUpper($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::upper($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param string|null $value + * @param int $length + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrLength($value, $length, $message = '') + { + null === $value || static::length($value, $length, $message); + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param int $length + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allLength($value, $length, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::length($entry, $length, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param int $length + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrLength($value, $length, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::length($entry, $length, $message); + } + } + + /** + * @psalm-pure + * + * @param string|null $value + * @param int|float $min + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrMinLength($value, $min, $message = '') + { + null === $value || static::minLength($value, $min, $message); + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param int|float $min + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allMinLength($value, $min, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::minLength($entry, $min, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param int|float $min + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrMinLength($value, $min, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::minLength($entry, $min, $message); + } + } + + /** + * @psalm-pure + * + * @param string|null $value + * @param int|float $max + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrMaxLength($value, $max, $message = '') + { + null === $value || static::maxLength($value, $max, $message); + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param int|float $max + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allMaxLength($value, $max, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::maxLength($entry, $max, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param int|float $max + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrMaxLength($value, $max, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::maxLength($entry, $max, $message); + } + } + + /** + * @psalm-pure + * + * @param string|null $value + * @param int|float $min + * @param int|float $max + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrLengthBetween($value, $min, $max, $message = '') + { + null === $value || static::lengthBetween($value, $min, $max, $message); + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param int|float $min + * @param int|float $max + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allLengthBetween($value, $min, $max, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::lengthBetween($entry, $min, $max, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param int|float $min + * @param int|float $max + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrLengthBetween($value, $min, $max, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::lengthBetween($entry, $min, $max, $message); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrFileExists($value, $message = '') + { + null === $value || static::fileExists($value, $message); + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allFileExists($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::fileExists($entry, $message); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrFileExists($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::fileExists($entry, $message); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrFile($value, $message = '') + { + null === $value || static::file($value, $message); + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allFile($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::file($entry, $message); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrFile($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::file($entry, $message); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrDirectory($value, $message = '') + { + null === $value || static::directory($value, $message); + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allDirectory($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::directory($entry, $message); + } + } + + /** + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrDirectory($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::directory($entry, $message); + } + } + + /** + * @param string|null $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrReadable($value, $message = '') + { + null === $value || static::readable($value, $message); + } + + /** + * @param iterable $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allReadable($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::readable($entry, $message); + } + } + + /** + * @param iterable $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrReadable($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::readable($entry, $message); + } + } + + /** + * @param string|null $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrWritable($value, $message = '') + { + null === $value || static::writable($value, $message); + } + + /** + * @param iterable $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allWritable($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::writable($entry, $message); + } + } + + /** + * @param iterable $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrWritable($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::writable($entry, $message); + } + } + + /** + * @psalm-assert class-string|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrClassExists($value, $message = '') + { + null === $value || static::classExists($value, $message); + } + + /** + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allClassExists($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::classExists($entry, $message); + } + } + + /** + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrClassExists($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::classExists($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $class + * @psalm-assert class-string|ExpectedType|null $value + * + * @param mixed $value + * @param string|object $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrSubclassOf($value, $class, $message = '') + { + null === $value || static::subclassOf($value, $class, $message); + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $class + * @psalm-assert iterable|ExpectedType> $value + * + * @param mixed $value + * @param string|object $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allSubclassOf($value, $class, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::subclassOf($entry, $class, $message); + } + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $class + * @psalm-assert iterable|ExpectedType|null> $value + * + * @param mixed $value + * @param string|object $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrSubclassOf($value, $class, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::subclassOf($entry, $class, $message); + } + } + + /** + * @psalm-assert class-string|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrInterfaceExists($value, $message = '') + { + null === $value || static::interfaceExists($value, $message); + } + + /** + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allInterfaceExists($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::interfaceExists($entry, $message); + } + } + + /** + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrInterfaceExists($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::interfaceExists($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $interface + * @psalm-assert class-string|null $value + * + * @param mixed $value + * @param mixed $interface + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrImplementsInterface($value, $interface, $message = '') + { + null === $value || static::implementsInterface($value, $interface, $message); + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $interface + * @psalm-assert iterable> $value + * + * @param mixed $value + * @param mixed $interface + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allImplementsInterface($value, $interface, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::implementsInterface($entry, $interface, $message); + } + } + + /** + * @psalm-pure + * @psalm-template ExpectedType of object + * @psalm-param class-string $interface + * @psalm-assert iterable|null> $value + * + * @param mixed $value + * @param mixed $interface + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrImplementsInterface($value, $interface, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::implementsInterface($entry, $interface, $message); + } + } + + /** + * @psalm-pure + * @psalm-param class-string|object|null $classOrObject + * + * @param string|object|null $classOrObject + * @param mixed $property + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrPropertyExists($classOrObject, $property, $message = '') + { + null === $classOrObject || static::propertyExists($classOrObject, $property, $message); + } + + /** + * @psalm-pure + * @psalm-param iterable $classOrObject + * + * @param iterable $classOrObject + * @param mixed $property + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allPropertyExists($classOrObject, $property, $message = '') + { + static::isIterable($classOrObject); + + foreach ($classOrObject as $entry) { + static::propertyExists($entry, $property, $message); + } + } + + /** + * @psalm-pure + * @psalm-param iterable $classOrObject + * + * @param iterable $classOrObject + * @param mixed $property + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrPropertyExists($classOrObject, $property, $message = '') + { + static::isIterable($classOrObject); + + foreach ($classOrObject as $entry) { + null === $entry || static::propertyExists($entry, $property, $message); + } + } + + /** + * @psalm-pure + * @psalm-param class-string|object|null $classOrObject + * + * @param string|object|null $classOrObject + * @param mixed $property + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrPropertyNotExists($classOrObject, $property, $message = '') + { + null === $classOrObject || static::propertyNotExists($classOrObject, $property, $message); + } + + /** + * @psalm-pure + * @psalm-param iterable $classOrObject + * + * @param iterable $classOrObject + * @param mixed $property + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allPropertyNotExists($classOrObject, $property, $message = '') + { + static::isIterable($classOrObject); + + foreach ($classOrObject as $entry) { + static::propertyNotExists($entry, $property, $message); + } + } + + /** + * @psalm-pure + * @psalm-param iterable $classOrObject + * + * @param iterable $classOrObject + * @param mixed $property + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrPropertyNotExists($classOrObject, $property, $message = '') + { + static::isIterable($classOrObject); + + foreach ($classOrObject as $entry) { + null === $entry || static::propertyNotExists($entry, $property, $message); + } + } + + /** + * @psalm-pure + * @psalm-param class-string|object|null $classOrObject + * + * @param string|object|null $classOrObject + * @param mixed $method + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrMethodExists($classOrObject, $method, $message = '') + { + null === $classOrObject || static::methodExists($classOrObject, $method, $message); + } + + /** + * @psalm-pure + * @psalm-param iterable $classOrObject + * + * @param iterable $classOrObject + * @param mixed $method + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allMethodExists($classOrObject, $method, $message = '') + { + static::isIterable($classOrObject); + + foreach ($classOrObject as $entry) { + static::methodExists($entry, $method, $message); + } + } + + /** + * @psalm-pure + * @psalm-param iterable $classOrObject + * + * @param iterable $classOrObject + * @param mixed $method + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrMethodExists($classOrObject, $method, $message = '') + { + static::isIterable($classOrObject); + + foreach ($classOrObject as $entry) { + null === $entry || static::methodExists($entry, $method, $message); + } + } + + /** + * @psalm-pure + * @psalm-param class-string|object|null $classOrObject + * + * @param string|object|null $classOrObject + * @param mixed $method + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrMethodNotExists($classOrObject, $method, $message = '') + { + null === $classOrObject || static::methodNotExists($classOrObject, $method, $message); + } + + /** + * @psalm-pure + * @psalm-param iterable $classOrObject + * + * @param iterable $classOrObject + * @param mixed $method + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allMethodNotExists($classOrObject, $method, $message = '') + { + static::isIterable($classOrObject); + + foreach ($classOrObject as $entry) { + static::methodNotExists($entry, $method, $message); + } + } + + /** + * @psalm-pure + * @psalm-param iterable $classOrObject + * + * @param iterable $classOrObject + * @param mixed $method + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrMethodNotExists($classOrObject, $method, $message = '') + { + static::isIterable($classOrObject); + + foreach ($classOrObject as $entry) { + null === $entry || static::methodNotExists($entry, $method, $message); + } + } + + /** + * @psalm-pure + * + * @param array|null $array + * @param string|int $key + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrKeyExists($array, $key, $message = '') + { + null === $array || static::keyExists($array, $key, $message); + } + + /** + * @psalm-pure + * + * @param iterable $array + * @param string|int $key + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allKeyExists($array, $key, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + static::keyExists($entry, $key, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $array + * @param string|int $key + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrKeyExists($array, $key, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + null === $entry || static::keyExists($entry, $key, $message); + } + } + + /** + * @psalm-pure + * + * @param array|null $array + * @param string|int $key + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrKeyNotExists($array, $key, $message = '') + { + null === $array || static::keyNotExists($array, $key, $message); + } + + /** + * @psalm-pure + * + * @param iterable $array + * @param string|int $key + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allKeyNotExists($array, $key, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + static::keyNotExists($entry, $key, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $array + * @param string|int $key + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrKeyNotExists($array, $key, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + null === $entry || static::keyNotExists($entry, $key, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert array-key|null $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrValidArrayKey($value, $message = '') + { + null === $value || static::validArrayKey($value, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allValidArrayKey($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::validArrayKey($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $value + * + * @param mixed $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrValidArrayKey($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::validArrayKey($entry, $message); + } + } + + /** + * @param Countable|array|null $array + * @param int $number + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrCount($array, $number, $message = '') + { + null === $array || static::count($array, $number, $message); + } + + /** + * @param iterable $array + * @param int $number + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allCount($array, $number, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + static::count($entry, $number, $message); + } + } + + /** + * @param iterable $array + * @param int $number + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrCount($array, $number, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + null === $entry || static::count($entry, $number, $message); + } + } + + /** + * @param Countable|array|null $array + * @param int|float $min + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrMinCount($array, $min, $message = '') + { + null === $array || static::minCount($array, $min, $message); + } + + /** + * @param iterable $array + * @param int|float $min + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allMinCount($array, $min, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + static::minCount($entry, $min, $message); + } + } + + /** + * @param iterable $array + * @param int|float $min + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrMinCount($array, $min, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + null === $entry || static::minCount($entry, $min, $message); + } + } + + /** + * @param Countable|array|null $array + * @param int|float $max + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrMaxCount($array, $max, $message = '') + { + null === $array || static::maxCount($array, $max, $message); + } + + /** + * @param iterable $array + * @param int|float $max + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allMaxCount($array, $max, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + static::maxCount($entry, $max, $message); + } + } + + /** + * @param iterable $array + * @param int|float $max + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrMaxCount($array, $max, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + null === $entry || static::maxCount($entry, $max, $message); + } + } + + /** + * @param Countable|array|null $array + * @param int|float $min + * @param int|float $max + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrCountBetween($array, $min, $max, $message = '') + { + null === $array || static::countBetween($array, $min, $max, $message); + } + + /** + * @param iterable $array + * @param int|float $min + * @param int|float $max + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allCountBetween($array, $min, $max, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + static::countBetween($entry, $min, $max, $message); + } + } + + /** + * @param iterable $array + * @param int|float $min + * @param int|float $max + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrCountBetween($array, $min, $max, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + null === $entry || static::countBetween($entry, $min, $max, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert list|null $array + * + * @param mixed $array + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIsList($array, $message = '') + { + null === $array || static::isList($array, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $array + * + * @param mixed $array + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIsList($array, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + static::isList($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $array + * + * @param mixed $array + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIsList($array, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + null === $entry || static::isList($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert non-empty-list|null $array + * + * @param mixed $array + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIsNonEmptyList($array, $message = '') + { + null === $array || static::isNonEmptyList($array, $message); + } + + /** + * @psalm-pure + * @psalm-assert iterable $array + * + * @param mixed $array + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIsNonEmptyList($array, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + static::isNonEmptyList($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-assert iterable $array + * + * @param mixed $array + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIsNonEmptyList($array, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + null === $entry || static::isNonEmptyList($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-template T + * @psalm-param mixed|array|null $array + * @psalm-assert array|null $array + * + * @param mixed $array + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIsMap($array, $message = '') + { + null === $array || static::isMap($array, $message); + } + + /** + * @psalm-pure + * @psalm-template T + * @psalm-param iterable> $array + * @psalm-assert iterable> $array + * + * @param mixed $array + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIsMap($array, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + static::isMap($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-template T + * @psalm-param iterable|null> $array + * @psalm-assert iterable|null> $array + * + * @param mixed $array + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIsMap($array, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + null === $entry || static::isMap($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-template T + * @psalm-param mixed|array|null $array + * + * @param mixed $array + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrIsNonEmptyMap($array, $message = '') + { + null === $array || static::isNonEmptyMap($array, $message); + } + + /** + * @psalm-pure + * @psalm-template T + * @psalm-param iterable> $array + * + * @param mixed $array + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allIsNonEmptyMap($array, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + static::isNonEmptyMap($entry, $message); + } + } + + /** + * @psalm-pure + * @psalm-template T + * @psalm-param iterable|null> $array + * @psalm-assert iterable|null> $array + * @psalm-assert iterable $array + * + * @param mixed $array + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrIsNonEmptyMap($array, $message = '') + { + static::isIterable($array); + + foreach ($array as $entry) { + null === $entry || static::isNonEmptyMap($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param string|null $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrUuid($value, $message = '') + { + null === $value || static::uuid($value, $message); + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allUuid($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + static::uuid($entry, $message); + } + } + + /** + * @psalm-pure + * + * @param iterable $value + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrUuid($value, $message = '') + { + static::isIterable($value); + + foreach ($value as $entry) { + null === $entry || static::uuid($entry, $message); + } + } + + /** + * @psalm-param class-string $class + * + * @param Closure|null $expression + * @param string $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function nullOrThrows($expression, $class = 'Exception', $message = '') + { + null === $expression || static::throws($expression, $class, $message); + } + + /** + * @psalm-param class-string $class + * + * @param iterable $expression + * @param string $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allThrows($expression, $class = 'Exception', $message = '') + { + static::isIterable($expression); + + foreach ($expression as $entry) { + static::throws($entry, $class, $message); + } + } + + /** + * @psalm-param class-string $class + * + * @param iterable $expression + * @param string $class + * @param string $message + * + * @throws InvalidArgumentException + * + * @return void + */ + public static function allNullOrThrows($expression, $class = 'Exception', $message = '') + { + static::isIterable($expression); + + foreach ($expression as $entry) { + null === $entry || static::throws($entry, $class, $message); + } + } +}